mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
[Feature] Countdown Actions (#1302)
* Added countdown actions * Added a CountdownAutomation setting to enable/disable countdown automation * Added Looping * Added characterSpotlight automation * Countdown max as formula to enable random countdowns * Updated compendiums with countdowns * . * Fixed lightmode colouration * Raised system version * Added automation for ActionRolls on countdowns * Added automation on fear to countdowns * Corrected attackAction countdown automation * Added initial countdown upon creating a CountdownAction * Improved ActionCountdown initial name to be 'Start Countdown'
This commit is contained in:
parent
0233979a9f
commit
207220ff7b
54 changed files with 1742 additions and 635 deletions
37
lang/en.json
37
lang/en.json
|
|
@ -46,6 +46,10 @@
|
|||
"name": "Beastform",
|
||||
"tooltip": "Shapeshift the user into another form."
|
||||
},
|
||||
"countdown": {
|
||||
"name": "Countdown",
|
||||
"tooltip": "Start a countdown"
|
||||
},
|
||||
"damage": {
|
||||
"name": "Damage",
|
||||
"tooltip": "Direct damage without a roll."
|
||||
|
|
@ -73,6 +77,10 @@
|
|||
"exactHint": "The Character's Tier is used if empty",
|
||||
"label": "Beastform"
|
||||
},
|
||||
"countdown": {
|
||||
"defaultOwnership": "Default Ownership",
|
||||
"startCountdown": "Start Countdown"
|
||||
},
|
||||
"damage": {
|
||||
"multiplier": "Multiplier",
|
||||
"flatMultiplier": "Flat Multiplier"
|
||||
|
|
@ -321,19 +329,26 @@
|
|||
},
|
||||
"Countdown": {
|
||||
"addCountdown": "Add Countdown",
|
||||
"loopingTypes": {
|
||||
"noLooping": "No Looping",
|
||||
"looping": "Looping",
|
||||
"increasing": "Increasing",
|
||||
"decreasing": "Decreasing"
|
||||
},
|
||||
"FIELDS": {
|
||||
"countdowns": {
|
||||
"element": {
|
||||
"name": { "label": "Name" },
|
||||
"progress": {
|
||||
"current": { "label": "Current" },
|
||||
"looping": { "label": "Looping" },
|
||||
"max": { "label": "Max" },
|
||||
"type": {
|
||||
"label": { "label": "Label", "hint": "Used for custom" },
|
||||
"value": { "label": "Value" }
|
||||
}
|
||||
},
|
||||
"type": { "label": "Countdown Type" }
|
||||
"type": { "label": "Progression Type" }
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -360,7 +375,9 @@
|
|||
"currentCountdownValue": "Current: {value}",
|
||||
"currentCountdownMax": "Max: {value}",
|
||||
"category": "Category",
|
||||
"type": "Type",
|
||||
"progressionType": "Progression Type",
|
||||
"decreasing": "Decreasing",
|
||||
"looping": "Looping",
|
||||
"defaultOwnershipTooltip": "The default player ownership of countdowns",
|
||||
"hideNewCountdowns": "Hide New Countdowns"
|
||||
},
|
||||
|
|
@ -915,9 +932,12 @@
|
|||
}
|
||||
},
|
||||
"CountdownType": {
|
||||
"spotlight": "Spotlight",
|
||||
"actionRoll": "Action Roll",
|
||||
"characterAttack": "Character Attack",
|
||||
"characterSpotlight": "Character Spotlight",
|
||||
"custom": "Custom",
|
||||
"characterAttack": "Character Attack"
|
||||
"fear": "Fear",
|
||||
"spotlight": "Spotlight"
|
||||
},
|
||||
"DamageType": {
|
||||
"physical": {
|
||||
|
|
@ -2286,6 +2306,10 @@
|
|||
"gm": { "label": "GM" },
|
||||
"players": { "label": "Players" }
|
||||
},
|
||||
"countdownAutomation": {
|
||||
"label": "Countdown Automation",
|
||||
"hint": "Automatically progress countdowns based on their progression settings"
|
||||
},
|
||||
"levelupAuto": {
|
||||
"label": "Levelup Automation",
|
||||
"hint": "When you've made your choices and finish levelup, the numerical changes are automatically applied to your character."
|
||||
|
|
@ -2545,7 +2569,10 @@
|
|||
"Countdowns": {
|
||||
"title": "Countdowns",
|
||||
"toggleIconMode": "Toggle Icon Only",
|
||||
"noPlayerAccess": "This countdown isn't visible to any players"
|
||||
"noPlayerAccess": "This countdown isn't visible to any players",
|
||||
"loop": "Looping",
|
||||
"decreasingLoop": "Decreasing Looping",
|
||||
"increasingLoop": "Increasing Looping"
|
||||
},
|
||||
"ItemBrowser": {
|
||||
"title": "Daggerheart Compendium Browser",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue