Small adjustments

Changed Saving Throw names, literacy threshold, uncapped dex and cha, added ACKS world languages.
master
The Happy Anarchist 2020-08-27 22:56:19 -10:00
parent d9772b24aa
commit bf39f33aae
4 changed files with 60 additions and 47 deletions

View File

@ -85,15 +85,15 @@
"ACKS.scores.cha.short": "CHA",
"ACKS.saves.death.short": "D",
"ACKS.saves.death.long": "Death Poison",
"ACKS.saves.death.long": "Poison & Death",
"ACKS.saves.wand.short": "W",
"ACKS.saves.wand.long": "Wands",
"ACKS.saves.wand.long": "Staffs & Wands",
"ACKS.saves.paralysis.short": "P",
"ACKS.saves.paralysis.long": "Paralysis Petrify",
"ACKS.saves.paralysis.long": "Paralysis & Petrify",
"ACKS.saves.breath.short": "B",
"ACKS.saves.breath.long": "Breath Attacks",
"ACKS.saves.breath.long": "Blast & Breath",
"ACKS.saves.spell.short": "S",
"ACKS.saves.spell.long": "Spells Rods Staves",
"ACKS.saves.spell.long": "Spells",
"ACKS.saves.magic.long": "Bonus vs Magic",
"ACKS.Health": "Hit Points",

View File

@ -667,11 +667,11 @@ export class AcksActor extends Actor {
18: 2,
};
data.scores.dex.init = AcksActor._valueFromTable(
capped,
standard,
data.scores.dex.value
);
data.scores.cha.npc = AcksActor._valueFromTable(
capped,
standard,
data.scores.cha.value
);
data.scores.cha.retain = data.scores.cha.mod + 4;
@ -691,9 +691,7 @@ export class AcksActor extends Actor {
);
const literacy = {
0: "",
3: "ACKS.Illiterate",
6: "ACKS.LiteracyBasic",
9: "ACKS.Literate",
};
data.languages.literacy = AcksActor._valueFromTable(

View File

@ -42,30 +42,45 @@ export const ACKS = {
white: "ACKS.colors.white"
},
languages: [
"Common",
"Lawful",
"Chaotic",
"Neutral",
"Bugbear",
"Doppelgänger",
"Dragon",
"Dwarvish",
"Elvish",
"Gargoyle",
"Gnoll",
"Gnomish",
"Goblin",
"Halfling",
"Harpy",
"Hobgoblin",
"Kobold",
"Lizard Man",
"Medusa",
"Minotaur",
"Ogre",
"Orcish",
"Pixie"
],
"Northern",
"Jutlandic",
"Auran",
"Dwarvish",
"Elvish",
"Celedorean",
"Kemeshi",
"Krysean",
"Kushtun",
"Nicean",
"Opelenean",
"Rornish",
"Shebatean",
"Skysos",
"Somirean",
"Ancient Zaharan",
"Archaian",
"Besheradi",
"Bugbear",
"Classical Argollëan",
"Classical Auran",
"Doppelgänger",
"Draconic",
"Gargoyle",
"Gnoll",
"Gnomish",
"Goblin",
"Halfling",
"Harpy",
"Hobgoblin",
"Kobold",
"Lizardman",
"Medusa",
"Minotaur",
"Ogre",
"Orcish",
"Pixie",
"Thrassian"
],
tags: {
melee: "ACKS.items.Melee",
missile: "ACKS.items.Missile",

View File

@ -201,20 +201,6 @@
{{!-- Saving throws --}}
<div class="attribute-group">
<ul class="attributes">
<li class="attribute saving-throw" data-save="death">
<h4 class="attribute-name box-title">
<a>{{ localize "ACKS.saves.death.long" }}</a></h4>
<div class="attribute-value">
<input name="data.saves.death.value" type="text" value="{{data.saves.death.value}}" placeholder="0"
data-dtype="Number" />
</li>
<li class="attribute saving-throw" data-save="wand">
<h4 class="attribute-name box-title">
<a>{{ localize "ACKS.saves.wand.long" }}</a></h4>
<div class="attribute-value">
<input name="data.saves.wand.value" type="text" value="{{data.saves.wand.value}}" placeholder="0"
data-dtype="Number" />
</li>
<li class="attribute saving-throw" data-save="paralysis">
<h4 class="attribute-name box-title">
<a>{{ localize "ACKS.saves.paralysis.long" }}</a></h4>
@ -222,6 +208,13 @@
<input name="data.saves.paralysis.value" type="text" value="{{data.saves.paralysis.value}}"
placeholder="0" data-dtype="Number" />
</li>
<li class="attribute saving-throw" data-save="death">
<h4 class="attribute-name box-title">
<a>{{ localize "ACKS.saves.death.long" }}</a></h4>
<div class="attribute-value">
<input name="data.saves.death.value" type="text" value="{{data.saves.death.value}}" placeholder="0"
data-dtype="Number" />
</li>
<li class="attribute saving-throw" data-save="breath">
<h4 class="attribute-name box-title">
<a>{{ localize "ACKS.saves.breath.long" }}</a></h4>
@ -229,6 +222,13 @@
<input name="data.saves.breath.value" type="text" value="{{data.saves.breath.value}}"
placeholder="0" data-dtype="Number" />
</li>
<li class="attribute saving-throw" data-save="wand">
<h4 class="attribute-name box-title">
<a>{{ localize "ACKS.saves.wand.long" }}</a></h4>
<div class="attribute-value">
<input name="data.saves.wand.value" type="text" value="{{data.saves.wand.value}}" placeholder="0"
data-dtype="Number" />
</li>
<li class="attribute saving-throw" data-save="spell">
<h4 class="attribute-name box-title">
<a>{{ localize "ACKS.saves.spell.long" }}</a></h4>