mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-18 07:59:03 +01:00
Pushing in updated files before shifting
This commit is contained in:
parent
0bdcb07690
commit
b4957f9cf3
2 changed files with 27 additions and 25 deletions
24
lang/en.json
24
lang/en.json
|
|
@ -505,36 +505,38 @@
|
||||||
"viciousRange": "Range"
|
"viciousRange": "Range"
|
||||||
},
|
},
|
||||||
"summary": {
|
"summary": {
|
||||||
|
"chat":{
|
||||||
|
"levelAchievements":"Achievements",
|
||||||
|
"levelAdvancements":"Advancememts",
|
||||||
|
"proficiencyIncrease": "Proficiency Increased",
|
||||||
|
"hpIncrease": "Hit Points Increased",
|
||||||
|
"stressIncrease": "Stress Increased",
|
||||||
|
"evasionIncrease": "Evasion Increased",
|
||||||
|
"domainCards": "New Domain Cards",
|
||||||
|
"subclass": "Subclass Advanced",
|
||||||
|
"damageThresholds": "Thresholds Increased",
|
||||||
|
"simpleFeature": "Feature Added"
|
||||||
|
},
|
||||||
"levelAchievements": "Level Achievements",
|
"levelAchievements": "Level Achievements",
|
||||||
"levelAchievementsChat":"Achievements",
|
|
||||||
"levelAdvancements": "Level Advancements",
|
"levelAdvancements": "Level Advancements",
|
||||||
"levelAdvancementsChat":"Advancememts",
|
|
||||||
"proficiencyIncrease": "Proficiency Increased: {proficiency}",
|
"proficiencyIncrease": "Proficiency Increased: {proficiency}",
|
||||||
"proficiencyIncreaseChat": "Proficiency Increased",
|
|
||||||
"hpIncrease": "Hit Points Increased: {hitPoints}",
|
"hpIncrease": "Hit Points Increased: {hitPoints}",
|
||||||
"hpIncreaseChat": "Hit Points Increased",
|
|
||||||
"stressIncrease": "Stress Increased: {stress}",
|
"stressIncrease": "Stress Increased: {stress}",
|
||||||
"stressIncreaseChat": "Stress Increased",
|
|
||||||
"evasionIncrease": "Evasion Increased: {evasion}",
|
"evasionIncrease": "Evasion Increased: {evasion}",
|
||||||
"evasionIncreaseChat": "Evasion Increased",
|
|
||||||
"damageThresholdMajorIncrease": "Major: {threshold}",
|
"damageThresholdMajorIncrease": "Major: {threshold}",
|
||||||
"damageThresholdSevereIncrease": "Severe: {threshold}",
|
"damageThresholdSevereIncrease": "Severe: {threshold}",
|
||||||
"newExperiences": "New Experiences",
|
"newExperiences": "New Experiences",
|
||||||
"experiencePlaceholder": "A new experience..",
|
"experiencePlaceholder": "A new experience..",
|
||||||
"domainCards": "Domain Cards",
|
"domainCards": "Domain Cards",
|
||||||
"domainCardsChat": "New Domain Cards",
|
|
||||||
"subclass": "Subclass",
|
"subclass": "Subclass",
|
||||||
"subclassChat": "Subclass Advanced",
|
|
||||||
"multiclass": "Multiclass",
|
"multiclass": "Multiclass",
|
||||||
"traits": "Increased Traits",
|
"traits": "Increased Traits",
|
||||||
"experienceIncreases": "Experience Increases",
|
"experienceIncreases": "Experience Increases",
|
||||||
"damageThresholds": "Damage Thresholds",
|
"damageThresholds": "Damage Thresholds",
|
||||||
"damageThresholdsChat": "Thresholds Increased",
|
|
||||||
"vicious": "Vicious",
|
"vicious": "Vicious",
|
||||||
"damageIncreased": "Damage Increased: {damage}",
|
"damageIncreased": "Damage Increased: {damage}",
|
||||||
"rangeIncreased": "Range Increased: {range}",
|
"rangeIncreased": "Range Increased: {range}",
|
||||||
"simpleFeature": "Feature: {feature}",
|
"simpleFeature": "Feature: {feature}"
|
||||||
"simpleFeatureChat": "Feature Added"
|
|
||||||
},
|
},
|
||||||
"takeLevelUp": "Finish Level Up",
|
"takeLevelUp": "Finish Level Up",
|
||||||
"tier2": {
|
"tier2": {
|
||||||
|
|
|
||||||
|
|
@ -3,25 +3,25 @@
|
||||||
{{#if this.achievements}}
|
{{#if this.achievements}}
|
||||||
<div class="achievements">
|
<div class="achievements">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<span>{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.levelAchievementsChat"}}</span>
|
<span>{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.chat.levelAchievements"}}</span>
|
||||||
</div>
|
</div>
|
||||||
<ul class="achievements-container">
|
<ul class="achievements-container">
|
||||||
{{!--Achievements Profieciency--}}
|
{{!--Achievements Profieciency--}}
|
||||||
{{#if this.achievements.proficiency.shown}}
|
{{#if this.achievements.proficiency.shown}}
|
||||||
<span><li class="item-list">
|
<span><li class="item-list">
|
||||||
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.proficiencyIncreaseChat"}}
|
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.chat.proficiencyIncrease"}}
|
||||||
</li></span>
|
</li></span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{!--Achievements Damage Thresholds--}}
|
{{!--Achievements Damage Thresholds--}}
|
||||||
{{#if this.achievements.damageThresholds}}
|
{{#if this.achievements.damageThresholds}}
|
||||||
<span><li class="item-list">
|
<span><li class="item-list">
|
||||||
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.damageThresholdsChat"}}
|
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.chat.damageThresholds"}}
|
||||||
</li></span>
|
</li></span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{!--Achievements Domain Cards--}}
|
{{!--Achievements Domain Cards--}}
|
||||||
{{#if this.achievements.domainCards.shown}}
|
{{#if this.achievements.domainCards.shown}}
|
||||||
<span><li class="item-list">
|
<span><li class="item-list">
|
||||||
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.domainCardsChat"}}
|
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.chat.domainCards"}}
|
||||||
</li></span>
|
</li></span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{!--Achievements Experiences--}}
|
{{!--Achievements Experiences--}}
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
{{!--Advancements--}}
|
{{!--Advancements--}}
|
||||||
<div class="advancements">
|
<div class="advancements">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<span>{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.levelAdvancementsChat"}}</span>
|
<span>{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.chat.levelAdvancements"}}</span>
|
||||||
</div>
|
</div>
|
||||||
<ul class="advancements-container">
|
<ul class="advancements-container">
|
||||||
{{!--Advancements Statistics--}}
|
{{!--Advancements Statistics--}}
|
||||||
|
|
@ -44,25 +44,25 @@
|
||||||
{{!--Advancements Statistics Proficiency--}}
|
{{!--Advancements Statistics Proficiency--}}
|
||||||
{{#if this.advancements.statistics.proficiency.shown}}
|
{{#if this.advancements.statistics.proficiency.shown}}
|
||||||
<span><li class="item-list">
|
<span><li class="item-list">
|
||||||
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.proficiencyIncreaseChat"}}
|
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.chat.proficiencyIncrease"}}
|
||||||
</li></span>
|
</li></span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{!--Advancements Statistics Hitpoints--}}
|
{{!--Advancements Statistics Hitpoints--}}
|
||||||
{{#if this.advancements.statistics.hitPoints.shown}}
|
{{#if this.advancements.statistics.hitPoints.shown}}
|
||||||
<span><li class="item-list">
|
<span><li class="item-list">
|
||||||
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.hpIncreaseChat"}}
|
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.chat.hpIncrease"}}
|
||||||
</li></span>
|
</li></span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{!--Advancements Statistics Stress--}}
|
{{!--Advancements Statistics Stress--}}
|
||||||
{{#if this.advancements.statistics.stress.shown}}
|
{{#if this.advancements.statistics.stress.shown}}
|
||||||
<span><li class="item-list">
|
<span><li class="item-list">
|
||||||
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.stressIncreaseChat"}}
|
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.chat.stressIncrease"}}
|
||||||
</li></span>
|
</li></span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{!--Advancements Statistics Evasion--}}
|
{{!--Advancements Statistics Evasion--}}
|
||||||
{{#if this.advancements.statistics.evasion.shown}}
|
{{#if this.advancements.statistics.evasion.shown}}
|
||||||
<span><li class="item-list">
|
<span><li class="item-list">
|
||||||
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.evasionIncreaseChat"}}
|
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.chat.evasionIncrease"}}
|
||||||
</li></span>
|
</li></span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
@ -75,7 +75,7 @@
|
||||||
{{!--Advancements Domain Cards--}}
|
{{!--Advancements Domain Cards--}}
|
||||||
{{#if this.advancements.domainCards}}
|
{{#if this.advancements.domainCards}}
|
||||||
<span><li class="item-list">
|
<span><li class="item-list">
|
||||||
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.domainCardsChat"}}
|
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.chat.domainCards"}}
|
||||||
</li></span>
|
</li></span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{!--Advancements Experiences--}}
|
{{!--Advancements Experiences--}}
|
||||||
|
|
@ -87,7 +87,7 @@
|
||||||
{{!--Advancements Subclass--}}
|
{{!--Advancements Subclass--}}
|
||||||
{{#if this.advancements.subclass}}
|
{{#if this.advancements.subclass}}
|
||||||
<span><li class="item-list">
|
<span><li class="item-list">
|
||||||
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.subclassChat"}}
|
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.chat.subclass"}}
|
||||||
</li></span>
|
</li></span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{!--Advancements Multiclass (Added or Advanced tag to be figured out later)--}}
|
{{!--Advancements Multiclass (Added or Advanced tag to be figured out later)--}}
|
||||||
|
|
@ -107,7 +107,7 @@
|
||||||
{{!--Advancements Features--}}
|
{{!--Advancements Features--}}
|
||||||
{{#if this.advancements.simple}}
|
{{#if this.advancements.simple}}
|
||||||
<span><li class="item-list">
|
<span><li class="item-list">
|
||||||
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.simpleFeatureChat"}}
|
{{localize "DAGGERHEART.APPLICATIONS.Levelup.summary.chat.simpleFeature"}}
|
||||||
</li></span>
|
</li></span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue