foundryvtt / pf2e

A community contributed game system for Pathfinder Second Edition.
https://foundryvtt.com/packages/pf2e
Apache License 2.0
396 stars 334 forks source link

ABP with lore skills proficiency #4620

Open ThingsCouldGetDicey opened 1 year ago

ThingsCouldGetDicey commented 1 year ago

currently as it stands there is no automatic progress with lore skills when it comes to trained expert master and legendary. this is part of the thuamaturge class with their esoteric lore skill. what i would like to see is within the system an automatic progression of these based on character level.

KSops commented 1 year ago

I know it's not a full fix, but in case you haven't found one yet, as a workaround you can try:

    "_id": "wOvNqecmunaC8eQv",
    "img": "systems/pf2e/icons/default-icons/lore.svg",
    "name": "Lore: Esoteric",
    "system": {
        "description": {
            "value": "<p>A special lore skill that can be used to Recall Knowledge regarding haunts, curses, and creatures of any type, but that can’t be used to Recall Knowledge of other topics.</p>"
        },
        "mod": {
            "value": 0
        },
        "proficient": {
            "value": 0
        },
        "rules": [
            {
                "key": "FlatModifier",
                "selector": "lore-esoteric",
                "type": "proficiency",
                "value": {
                    "brackets": [
                        {
                            "end": 2,
                            "start": 1,
                            "value": "@actor.level + 2"
                        },
                        {
                            "end": 6,
                            "start": 3,
                            "value": "@actor.level + 4"
                        },
                        {
                            "end": 14,
                            "start": 7,
                            "value": "@actor.level + 6"
                        },
                        {
                            "start": 15,
                            "value": "@actor.level + 8"
                        }
                    ]
                }
            },
            {
                "ability": "cha",
                "key": "FlatModifier",
                "selector": "lore-esoteric",
                "type": "ability"
            },
            {
                "key": "ActiveEffectLike",
                "mode": "upgrade",
                "path": "system.skills.lore-esoteric.rank",
                "phase": "afterDerived",
                "value": {
                    "brackets": [
                        {
                            "end": 2,
                            "start": 1,
                            "value": 1
                        },
                        {
                            "end": 6,
                            "start": 3,
                            "value": 2
                        },
                        {
                            "end": 14,
                            "start": 7,
                            "value": 3
                        },
                        {
                            "start": 15,
                            "value": 4
                        }
                    ]
                }
            }
        ],
        "source": {
            "value": "Pathfinder Dark Archive"
        },
        "traits": {
            "custom": "",
            "rarity": "common",
            "value": []
        },
        "variants": {}
    },
    "type": "lore"
}