Minor bug fixes, extended functionality, improved translation

- tested compatibility of changes with existing sheets
- bug fix in weapon damage calculation
- bug fix in broken translation (roll templates as button commands)
- changed order of sections for more intuitive navigation
- changed ordering of roll buttons (alphabetically, only for German language)
- added tabindex for more friendly user navigation
- added missing cultural talents to progress points system
- split progress point tables into two logical groups
- removed visual default values that have to be changed often
- added attributes to allow different base values for combat values
- added repeating section for misc. bonuses (e.g. buffs, racial abilities)
- removed default weapon and spell type due to worker script bug
- adjusted order of equipment columns to other sections
- moved last column of spells to new row for better readability
This commit is contained in:
Michael
2017-04-23 16:27:27 +02:00
parent 3c2ee52cda
commit 27dfec00e1
5 changed files with 1006 additions and 706 deletions
+148 -50
View File
@@ -73,6 +73,7 @@
margin: 0;
font-weight: initial;
font-size: initial;
padding: 0;
}
.charsheet .sheet-col1 label input {
display: none;
@@ -98,9 +99,20 @@
text-align: center;
width: 70px;
}
.charsheet .sheet-character .sheet-col2 input.sheet-split,
.charsheet .sheet-character .sheet-col3 input.sheet-split {
width: 28.5px;
.charsheet .sheet-character input.sheet-split:nth-child(2) {
width: 25px;
border-right: none;
display: inline-block;
}
.charsheet .sheet-character input.sheet-split:nth-child(3) {
width: 20px;
border-left: none;
border-right: none;
display: inline-block;
}
.charsheet .sheet-character input.sheet-split:nth-child(4) {
width: 25px;
border-left: none;
display: inline-block;
}
.charsheet .sheet-character .sheet-flex .sheet-col1,
@@ -289,6 +301,9 @@
width: 80px;
flex-grow: 3;
}
.charsheet .sheet-spell .sheet-flex {
flex-wrap: wrap;
}
.charsheet .sheet-spell .sheet-flex > * {
border: 1px solid black;
padding: 2px;
@@ -311,9 +326,21 @@
max-width: 120px;
flex-grow: 1;
}
.charsheet .sheet-spell .sheet-col8 {
width: 80px;
flex-grow: 3;
.charsheet .sheet-spell .sheet-row2 {
display: flex;
border-top: none;
background-color: rgb(230, 230, 230);
}
.charsheet .sheet-spell .sheet-row2 span {
padding-right: 10px;
text-align: right;
display: inline-block;
}
.charsheet .sheet-spell .sheet-row2 textarea {
width: 40px;
height: 40px;
flex-grow: 1;
border: none;
}
.charsheet .sheet-spell .sheet-normal-spell {
background-image: url('https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/Dungeonslayers-4/DS4-SPC.png');
@@ -333,7 +360,7 @@
border: 1px solid black;
}
.charsheet .sheet-talent .sheet-col2 {
width: 60px;
width: 75px;
text-align: center;
border: 1px solid black;
padding: 2px 6px;
@@ -341,7 +368,7 @@
.charsheet .sheet-talent .sheet-col2-1,
.charsheet .sheet-talent .sheet-col2-2,
.charsheet .sheet-talent .sheet-col2-3 {
width: 20px;
width: 25px;
text-align: center;
border-top: 1px solid black;
border-bottom: 1px solid black;
@@ -363,10 +390,12 @@
font-size: 14px;
}
.charsheet .sheet-equipment .sheet-flex > *:nth-child(1) {
width: 40px;
width: 200px;
}
.charsheet .sheet-equipment .sheet-flex > *:nth-child(2) {
width: 75px;
text-align: center;
}
.charsheet .sheet-equipment .sheet-flex > *:nth-child(2),
.charsheet .sheet-equipment .sheet-flex > *:nth-child(3),
.charsheet .sheet-equipment .sheet-flex > *:nth-child(4) {
width: 120px;
@@ -382,63 +411,108 @@
.charsheet .sheet-equipment input[type=checkbox] {
display: none;
}
.charsheet .sheet-progress-points {
min-width: 500px;
}
.charsheet .sheet-progress-points > div {
overflow-x: auto;
}
.charsheet .sheet-progress-points table {
border-collapse: collapse;
width: 100%;
}
.charsheet .sheet-progress-points tr:nth-child(1),
.charsheet .sheet-progress-points tr:nth-child(4),
.charsheet .sheet-progress-points tr:nth-child(10),
.charsheet .sheet-progress-points tr:nth-child(19),
.charsheet .sheet-progress-points tr:nth-child(20) {
border-bottom: 2px solid black;
}
.charsheet .sheet-progress-points th,
.charsheet .sheet-progress-points td {
.charsheet .sheet-miscellaneous .sheet-flex > * {
border: 1px solid black;
padding: 2px;
font-size: 14px;
}
.charsheet .sheet-progress-points td:nth-child(3),
.charsheet .sheet-progress-points td:nth-child(4),
.charsheet .sheet-progress-points td:nth-child(5),
.charsheet .sheet-progress-points td:nth-child(6),
.charsheet .sheet-progress-points td:nth-child(7),
.charsheet .sheet-progress-points td:nth-child(14),
.charsheet .sheet-progress-points td:nth-child(15),
.charsheet .sheet-progress-points td:nth-child(16) {
.charsheet .sheet-miscellaneous .sheet-flex > *:nth-child(1) {
width: 200px;
text-align: center;
}
.charsheet .sheet-miscellaneous .sheet-flex > *:nth-child(2) {
width: 120px;
flex-grow: 1;
}
.charsheet .sheet-progress-points1 {
min-width: 500px;
}
.charsheet .sheet-progress-points1 > div {
overflow-x: auto;
}
.charsheet .sheet-progress-points1 table {
border-collapse: collapse;
width: 100%;
}
.charsheet .sheet-progress-points1 tr:nth-child(1),
.charsheet .sheet-progress-points1 tr:nth-child(4),
.charsheet .sheet-progress-points1 tr:nth-child(10) {
border-bottom: 2px solid black;
}
.charsheet .sheet-progress-points1 th,
.charsheet .sheet-progress-points1 td {
border: 1px solid black;
padding: 2px;
font-size: 14px;
}
.charsheet .sheet-progress-points1 td:nth-child(3),
.charsheet .sheet-progress-points1 td:nth-child(4),
.charsheet .sheet-progress-points1 td:nth-child(5),
.charsheet .sheet-progress-points1 td:nth-child(6),
.charsheet .sheet-progress-points1 td:nth-child(7),
.charsheet .sheet-progress-points1 td:nth-child(13),
.charsheet .sheet-progress-points1 td:nth-child(14),
.charsheet .sheet-progress-points1 td:nth-child(15) {
border-left: none;
border-right: none;
}
.charsheet .sheet-progress-points td:last-child {
.charsheet .sheet-progress-points1 td:last-child {
border-right: 1px solid black;
}
.charsheet .sheet-progress-points td:nth-child(12) {
width: 100%;
}
.charsheet .sheet-progress-points input {
.charsheet .sheet-progress-points1 input {
border: none;
width: 100%;
text-align: center;
}
.charsheet .sheet-progress-points th:nth-child(8),
.charsheet .sheet-progress-points td:nth-child(12) input {
text-align: left;
}
.charsheet .sheet-progress-points th {
.charsheet .sheet-progress-points1 th {
text-align: center;
}
.charsheet .sheet-progress-points td:nth-child(13) input,
.charsheet .sheet-progress-points td:nth-child(14) input,
.charsheet .sheet-progress-points td:nth-child(16) input {
.charsheet .sheet-progress-points1 td:nth-child(13) input,
.charsheet .sheet-progress-points1 td:nth-child(15) input {
width: 30px;
}
.charsheet .sheet-progress-points2 {
min-width: 500px;
}
.charsheet .sheet-progress-points2 > div {
overflow-x: auto;
}
.charsheet .sheet-progress-points2 table {
border-collapse: collapse;
width: 100%;
}
.charsheet .sheet-progress-points2 tr:nth-child(1),
.charsheet .sheet-progress-points2 tr:nth-child(3) {
border-bottom: 2px solid black;
}
.charsheet .sheet-progress-points2 th,
.charsheet .sheet-progress-points2 td {
border: 1px solid black;
padding: 2px;
font-size: 14px;
}
.charsheet .sheet-progress-points2 td:nth-child(2),
.charsheet .sheet-progress-points2 td:nth-child(3),
.charsheet .sheet-progress-points2 td:nth-child(4),
.charsheet .sheet-progress-points2 td:nth-child(5),
.charsheet .sheet-progress-points2 td:nth-child(6) {
border-left: none;
border-right: none;
}
.charsheet .sheet-progress-points2 input {
border: none;
width: 100%;
text-align: center;
}
.charsheet .sheet-progress-points2 th {
text-align: center;
}
.charsheet .sheet-progress-points2 th:nth-child(4),
.charsheet .sheet-progress-points2 td:nth-child(8),
.charsheet .sheet-progress-points2 td:nth-child(8) input {
width: 100%;
text-align: left;
}
.charsheet .sheet-checks > .sheet-flex {
flex-wrap: wrap;
justify-content: space-around;
@@ -462,6 +536,30 @@
width: 55px;
text-align: center;
}
.charsheet.lang-de .sheet-checks > div > div:nth-child(4) {order: 17;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(5) {order: 2;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(6) {order: 21;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(7) {order: 22;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(8) {order: 19;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(9) {order: 7;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(10) {order: 5;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(11) {order: 16;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(12) {order: 10;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(13) {order: 18;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(14) {order: 6;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(15) {order: 24;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(16) {order: 23;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(17) {order: 1;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(18) {order: 15;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(19) {order: 9;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(20) {order: 8;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(21) {order: 14;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(22) {order: 12;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(23) {order: 20;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(24) {order: 13;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(25) {order: 3;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(26) {order: 4;}
.charsheet.lang-de .sheet-checks > div > div:nth-child(27) {order: 11;}
.charsheet .sheet-attack-checks .sheet-flex {
flex-wrap: wrap;
justify-content: space-around;
+627 -432
View File
File diff suppressed because it is too large Load Diff
+173 -171
View File
@@ -1,173 +1,175 @@
{
"active":"Active",
"age":"Age",
"agility":"Agility",
"alphabet":"Alphabet",
"appraise":"Appraise",
"appraise-bonus":"Appraise, ...",
"armor":"Armor",
"armor-material-example":"Wood, Leather, Metal, ...",
"armor-type-example":"Helmet, Body, Vambrace, Greaves, Shield, ...",
"armor-value":"Armor value",
"armor-value-short":"AV",
"attribute+trait":"Attribute + Trait",
"aura":"Aura",
"base":"Base",
"body":"Body",
"body-short+constitution-short":"BOD+CO",
"body-short+strength-short":"BOD+ST",
"bonus":"Bonus",
"both-attack":"Both",
"character":"Character",
"character-name":"Character name",
"check":"Check",
"check-result":"Check result",
"check-value":"Check value",
"class":"Class",
"class-example":"Fighter, Scout, Healer, Wizard, Sorcerer, ...",
"climb":"Climb",
"climb-bonus":"Acrobat, Master Climber, ...",
"communicate":"Communicate",
"communicate-bonus":"Education, ...",
"constitution":"Constitution",
"cooldown":"Cooldown",
"culture":"Culture",
"culture-example":"Barbarians, Mountain Dwarves, Freelander, Kaiban, Wood Elves, Wild Elves, Desert Dwarves, Wyndlanders, Zasarian, ...",
"current-hit-points":"Current hit points",
"current-mana-points":"Current mana points",
"date-of-birth":"Date of birth",
"decipher-script":"Decipher script",
"decipher-script-bonus":"Alertness, Education, ...",
"defense":"Defense",
"defy-poison":"Defy poison",
"defy-poison-bonus":"Endurance, …",
"dexterity":"Dexterity",
"disable-traps":"Disable traps",
"disable-traps-bonus":"Thievery, ...",
"distance":"Distance",
"duration":"Duration",
"edit-bonuses":"Edit bonuses",
"effect":"Effect",
"equipment":"Equipment",
"experience-points":"Experience points",
"experience-points-short":"EP",
"eye-color":"Eye color",
"feat-of-strength":"Feat of strength",
"feat-of-strength-bonus":"Brutal Blow, Devastating Strike, ...",
"flirt":"Flirt",
"flirt-bonus":"Charming, ...",
"gender":"Gender",
"generic":"Generic",
"generic-check":"Generic check",
"haggle":"Haggle",
"haggle-base":"MND+MAX(IN, AU)",
"haggle-bonus":"Charming, Rascal, ...",
"hair-color":"Hair color",
"hands":"Hands",
"hands-example":"1H = one-handed, 2H = two-handed, ...",
"character-height":"Height",
"hero-class":"Hero class",
"hero-class-example":"Berserker, Paladin, Weapon Master, Assassin, Ranger, Rogue, Cleric, Druid, Monk, Archmage, Battle Mage, Elementalist, Blood Mage, Demonologist, Necromancer, ...",
"hide":"Hide",
"hit-points":"Hit points",
"initiative":"Initiative",
"intellect":"Intellect",
"jump":"Jump",
"jump-bonus":"Acrobat, ...",
"knowledge":"Knowledge",
"knowledge-bonus":"Education, Expertise, ...",
"language":"Language",
"level":"Level",
"magic-bonus":"Magic bonus",
"magic-bonus-short":"MB",
"mana":"Mana",
"material":"Material",
"melee-attack":"Melee attack",
"mind":"Mind",
"mind-influencing-spell":"Mind-influencing spell",
"mind-short+aura-short":"MND+AU",
"mind-short+dexterity-short":"MND+DX",
"mind-short+intellect-short":"MND+IN",
"mind-short+intellect-short-or-eight":"MAX(MND+IN, 8)",
"miscellaneous":"Miscellaneous",
"mobility":"Mobility",
"mobility-short+agility-short":"MOB+AG",
"mobility-short+dexterity-short":"MOB+DX",
"mobility-short+strength-short":"MOB+ST",
"movement-rate":"Movement rate",
"normal-spell":"Normal spell",
"normal-spellcasting":"Spellcasting",
"notes":"Notes",
"of":"of",
"open-lock":"Open lock",
"open-lock-bonus":"Thievery, Lockpicking, ...",
"opponent-defense":"Opponent's defense",
"opponent-defense-short":"OD",
"other-abilities":"Other abilities",
"perception":"Perception",
"perception-bonus":"Thievery, Alertness, ...",
"pick-pocket":"Pick pocket",
"pick-pocket-bonus":"Thievery, Stealth, Diversion, Pickpocket, ...",
"place-of-birth":"Place of birth",
"player":"Player",
"player-name":"Player name",
"private-biography":"Private biography",
"progress-points":"Progress points",
"progress-points-short":"PP",
"public-biography":"Public biography",
"quantity":"Quantity",
"quantity-short":"Qty",
"race":"Race",
"race-example":"Elf, Human, Dwarf, ...",
"racial-abilities":"Racial abilities",
"ranged-attack":"Ranged attack",
"read-tracks":"Read tracks",
"read-tracks-bonus":"Hunter, Alertness, ...",
"resist-disease":"Resist disease",
"resist-disease-bonus":"Endurance, …",
"ride":"Ride",
"ride-base":"MOB+MAX(AG, AU)",
"ride-bonus":"Riding, Mounted Archer, Beast Master, ...",
"search":"Search",
"search-bonus":"Thievery, Stealth, Alertness, ...",
"sneak":"Sneak",
"sneak-bonus":"Stealth, ...",
"special":"Special",
"special-behavior":"Special behavior",
"special-characteristics":"Special characteristics",
"spell":"Spell",
"spell-cooldown":"Cooldown",
"spell-distance":"Distance",
"spell-duration":"Duration",
"spell-modifier":"Spell modifier",
"spell-modifier-short":"SM",
"spell-type":"Normal spell, Targeted spell or Mind-influencing spell",
"start":"Start",
"start-fire":"Start fire",
"start-fire-bonus":"Hunter, ...",
"stealth-bonus":"Stealth, ...",
"strength":"Strength",
"swim":"Swim",
"swim-bonus":"Swim, ...",
"talent":"Talent",
"talent-points":"Talent points",
"talent-points-short":"TP",
"targeted-spell":"Targeted spell",
"targeted-spellcasting":"Targeted spellcasting",
"tier":"Tier",
"total":"Total",
"type":"Type",
"typical-checks":"Typical checks",
"unarmed":"Unarmed",
"wake-up":"Wake up",
"wake-up-bonus":"Lightning Reflexes, Alertness, ...",
"weapon":"Weapon",
"weapon-bonus":"Weapon bonus",
"weapon-bonus-short":"WB",
"weapon-type":"Melee attack or Ranged attack",
"weight":"Weight",
"where-carried":"Where carried?",
"work-mechanism":"Work mechanism",
"work-mechanism-base":"MND+MAX(DX, IN)",
"work-mechanism-bonus":"Thievery, Artisan, Lockpicking, ..."
"active":"Active",
"additional":"Additional",
"age":"Age",
"agility":"Agility",
"alphabets":"Alphabets",
"appraise":"Appraise",
"appraise-bonus":"Appraise, ...",
"armor":"Armor",
"armor-material-example":"Wood, Leather, Metal, ...",
"armor-type-example":"Helmet, Body, Vambrace, Greaves, Shield, ...",
"armor-value":"Armor value",
"armor-value-short":"AV",
"attribute+trait":"Attribute + Trait",
"aura":"Aura",
"base":"Base",
"body":"Body",
"body-short+constitution-short":"BOD+CO",
"body-short+strength-short":"BOD+ST",
"bonus":"Bonus",
"both-attack":"Both",
"character":"Character",
"character-name":"Character name",
"check":"Check",
"check-result":"Check result",
"check-value":"Check value",
"class":"Class",
"class-example":"Fighter, Scout, Healer, Wizard, Sorcerer, ...",
"climb":"Climb",
"climb-bonus":"Acrobat, Master Climber, ...",
"communicate":"Communicate",
"communicate-bonus":"Education, ...",
"constitution":"Constitution",
"cooldown":"Cooldown",
"culture":"Culture",
"culture-example":"Barbarians, Mountain Dwarves, Freelander, Kaiban, Wood Elves, Wild Elves, Desert Dwarves, Wyndlanders, Zasarian, ...",
"cultural-talents":"Cultural talents",
"current-hit-points":"Current hit points",
"current-mana-points":"Current mana points",
"date-of-birth":"Date of birth",
"decipher-script":"Decipher script",
"decipher-script-bonus":"Alertness, Education, ...",
"defense":"Defense",
"defy-poison":"Defy poison",
"defy-poison-bonus":"Endurance, …",
"dexterity":"Dexterity",
"disable-traps":"Disable traps",
"disable-traps-bonus":"Thievery, ...",
"distance":"Distance",
"duration":"Duration",
"edit-bonuses":"Edit bonuses",
"effect":"Effect",
"equipment":"Equipment",
"experience-points":"Experience points",
"experience-points-short":"EP",
"eye-color":"Eye color",
"feat-of-strength":"Feat of strength",
"feat-of-strength-bonus":"Brutal Blow, Devastating Strike, ...",
"flirt":"Flirt",
"flirt-bonus":"Charming, ...",
"gender":"Gender",
"generic":"Generic",
"generic-check":"Generic check",
"haggle":"Haggle",
"haggle-base":"MND+MAX(IN, AU)",
"haggle-bonus":"Charming, Rascal, ...",
"hair-color":"Hair color",
"hands":"Hands",
"hands-example":"1H = one-handed, 2H = two-handed, ...",
"character-height":"Height",
"hero-class":"Hero class",
"hero-class-example":"Berserker, Paladin, Weapon Master, Assassin, Ranger, Rogue, Cleric, Druid, Monk, Archmage, Battle Mage, Elementalist, Blood Mage, Demonologist, Necromancer, ...",
"hide":"Hide",
"hit-points":"Hit points",
"initiative":"Initiative",
"intellect":"Intellect",
"jump":"Jump",
"jump-bonus":"Acrobat, ...",
"knowledge":"Knowledge",
"knowledge-bonus":"Education, Expertise, ...",
"languages":"Languages",
"learned":"Learned",
"level":"Level",
"magic-bonus":"Magic bonus",
"magic-bonus-short":"MB",
"mana":"Mana",
"material":"Material",
"melee-attack":"Melee attack",
"mind":"Mind",
"mind-influencing-spell":"Mind-influencing spell",
"mind-short+aura-short":"MND+AU",
"mind-short+dexterity-short":"MND+DX",
"mind-short+intellect-short":"MND+IN",
"mind-short+intellect-short-or-eight":"MAX(MND+IN, 8)",
"miscellaneous":"Miscellaneous",
"mobility":"Mobility",
"mobility-short+agility-short":"MOB+AG",
"mobility-short+dexterity-short":"MOB+DX",
"mobility-short+strength-short":"MOB+ST",
"movement-rate":"Movement rate",
"normal-spell":"Normal spell",
"normal-spellcasting":"Spellcasting",
"notes":"Notes",
"of":"of",
"open-lock":"Open lock",
"open-lock-bonus":"Thievery, Lockpicking, ...",
"opponent-defense":"Opponent's defense",
"opponent-defense-short":"OD",
"other-abilities":"Other abilities",
"perception":"Perception",
"perception-bonus":"Thievery, Alertness, ...",
"pick-pocket":"Pick pocket",
"pick-pocket-bonus":"Thievery, Stealth, Diversion, Pickpocket, ...",
"place-of-birth":"Place of birth",
"player":"Player",
"player-name":"Player name",
"private-biography":"Private biography",
"progress-points":"Progress points",
"progress-points-short":"PP",
"public-biography":"Public biography",
"quantity":"Quantity",
"race":"Race",
"race-example":"Elf, Human, Dwarf, ...",
"racial-abilities":"Racial abilities",
"ranged-attack":"Ranged attack",
"read-tracks":"Read tracks",
"read-tracks-bonus":"Hunter, Alertness, ...",
"resist-disease":"Resist disease",
"resist-disease-bonus":"Endurance, …",
"ride":"Ride",
"ride-base":"MOB+MAX(AG, AU)",
"ride-bonus":"Riding, Mounted Archer, Beast Master, ...",
"search":"Search",
"search-bonus":"Thievery, Stealth, Alertness, ...",
"sneak":"Sneak",
"sneak-bonus":"Stealth, ...",
"special":"Special",
"special-behavior":"Special behavior",
"special-characteristics":"Special characteristics",
"spell":"Spell",
"spell-cooldown":"Cooldown",
"spell-distance":"Distance",
"spell-duration":"Duration",
"spell-modifier":"Spell modifier",
"spell-modifier-short":"SM",
"spell-type":"Normal spell, Targeted spell or Mind-influencing spell",
"start":"Start",
"start-fire":"Start fire",
"start-fire-bonus":"Hunter, ...",
"stealth-bonus":"Stealth, ...",
"strength":"Strength",
"swim":"Swim",
"swim-bonus":"Swim, ...",
"talent":"Talent",
"talent-points":"Talent points",
"talent-points-short":"TP",
"targeted-spell":"Targeted spell",
"targeted-spellcasting":"Targeted spellcasting",
"tier":"Tier",
"total":"Total",
"type":"Type",
"typical-checks":"Typical checks",
"unarmed":"Unarmed",
"wake-up":"Wake up",
"wake-up-bonus":"Lightning Reflexes, Alertness, ...",
"weapon":"Weapon",
"weapon-bonus":"Weapon bonus",
"weapon-bonus-short":"WB",
"weapon-type":"Melee attack or Ranged attack",
"weight":"Weight",
"where-carried":"Where carried?",
"work-mechanism":"Work mechanism",
"work-mechanism-base":"MND+MAX(DX, IN)",
"work-mechanism-bonus":"Thievery, Artisan, Lockpicking, ..."
}
+53 -50
View File
@@ -1,21 +1,22 @@
{
"active":"Aktiv",
"additional":"Zusätzlich",
"age":"Alter",
"agility":"Bewegung",
"alphabet":"Schrift",
"appraise":"Schtzen",
"appraise-bonus":"Beute schtzen, ",
"armor":"Rstung",
"armor-material-example":"Holz, Leder, Metall, ",
"armor-type-example":"Helm, Krper, Armschienen, Beinschienen, Schild, ",
"alphabets":"Schriftzeichen",
"appraise":"Schätzen",
"appraise-bonus":"Beute schätzen, ...",
"armor":"Rüstung",
"armor-material-example":"Holz, Leder, Metall, ...",
"armor-type-example":"Helm, Körper, Armschienen, Beinschienen, Schild, ...",
"armor-value":"Panzerung",
"armor-value-short":"PA",
"attribute+trait":"Attribute + Eigenschaften",
"aura":"Aura",
"base":"Basis",
"body":"Krper",
"body-short+constitution-short":"KR+H",
"body-short+strength-short":"KR+ST",
"body":"Körper",
"body-short+constitution-short":"KÖR+H",
"body-short+strength-short":"KÖR+ST",
"bonus":"Bonus",
"both-attack":"Beides",
"character":"Charakter",
@@ -24,26 +25,27 @@
"check-result":"Probenergebnis",
"check-value":"Probenwert",
"class":"Klasse",
"class-example":"Krieger, Spher, Heiler, Zauberer, Schwarzmagier, ",
"class-example":"Krieger, Späher, Heiler, Zauberer, Schwarzmagier, ...",
"climb":"Klettern",
"climb-bonus":"Akrobat, Kletterass, ",
"communicate":"Verstndigen",
"communicate-bonus":"Bildung, ",
"constitution":"Hrte",
"climb-bonus":"Akrobat, Kletterass, ...",
"communicate":"Verständigen",
"communicate-bonus":"Bildung, ...",
"constitution":"Härte",
"cooldown":"Abklingzeit",
"culture":"Kultur",
"culture-example":"Barbaren, Bergzwerge, Freilnder, Kaitaner, Waldelfen, Wildelfen, Wstenzwerge, Wyndlnder, Zasaren, ",
"culture-example":"Barbaren, Bergzwerge, Freiländer, Kaitaner, Waldelfen, Wildelfen, Wüstenzwerge, Wyndländer, Zasaren, ...",
"cultural-talents":"Kulturtalente",
"current-hit-points":"Aktuelle Lebenskraft",
"current-mana-points":"Aktuelles Mana",
"date-of-birth":"Geburtsdatum",
"decipher-script":"Inschrift entziffern",
"decipher-script-bonus":"Wahrnehmung, Bildung, ",
"decipher-script-bonus":"Wahrnehmung, Bildung, ...",
"defense":"Abwehr",
"defy-poison":"Gift trotzen",
"defy-poison-bonus":"Einstecker, ",
"defy-poison-bonus":"Einstecker, ...",
"dexterity":"Geschick",
"disable-traps":"Fallen entschrfen",
"disable-traps-bonus":"Diebeskunst, ",
"disable-traps":"Fallen entschärfen",
"disable-traps-bonus":"Diebeskunst, ...",
"distance":"Distanz",
"duration":"Dauer",
"edit-bonuses":"Boni bearbeiten",
@@ -53,30 +55,31 @@
"experience-points-short":"EP",
"eye-color":"Augenfarbe",
"feat-of-strength":"Kraftakt",
"feat-of-strength-bonus":"Brutaler Hieb, Vernichtender Schlag, ",
"feat-of-strength-bonus":"Brutaler Hieb, Vernichtender Schlag, ...",
"flirt":"Flirten",
"flirt-bonus":"Charmant, ",
"flirt-bonus":"Charmant, ...",
"gender":"Geschlecht",
"generic":"Generische",
"generic-check":"Generische Probe",
"haggle":"Feilschen",
"haggle-base":"GEI+MAX(VE, AU)",
"haggle-bonus":"Charmant, Schlitzohr, ",
"haggle-bonus":"Charmant, Schlitzohr, ...",
"hair-color":"Haarfarbe",
"hands":"Hnde",
"hands-example":"1H = einhndig, 2H = zweihndig, ",
"character-height":"Grsse",
"hands":"Hände",
"hands-example":"1H = einhändig, 2H = zweihändig, ...",
"character-height":"Grösse",
"hero-class":"Heldenklasse",
"hero-class-example":"Berserker, Paladin, Waffenmeister, Attentter, Meisterdieb, Waldlufer, Druide, Kampfmnch, Kleriker, Elementarist, Erzmagier, Kriegszauberer, Blutmagier, Dmonologe, Nekromant, ",
"hero-class-example":"Berserker, Paladin, Waffenmeister, Attentäter, Meisterdieb, Waldläufer, Druide, Kampfmönch, Kleriker, Elementarist, Erzmagier, Kriegszauberer, Blutmagier, Dämonologe, Nekromant, ...",
"hide":"Verbergen",
"hit-points":"Lebenskraft",
"initiative":"Initiative",
"intellect":"Verstand",
"jump":"Springen",
"jump-bonus":"Akrobat, ",
"jump-bonus":"Akrobat, ...",
"knowledge":"Wissen",
"knowledge-bonus":"Bildung, Wissensgebiet, ",
"language":"Sprache",
"knowledge-bonus":"Bildung, Wissensgebiet, ...",
"languages":"Sprachen",
"learned":"Gelernt",
"level":"Stufe",
"magic-bonus":"Magiebonus",
"magic-bonus-short":"MB",
@@ -90,7 +93,7 @@
"mind-short+intellect-short":"GEI+VE",
"mind-short+intellect-short-or-eight":"MAX(GEI+VE, 8)",
"miscellaneous":"Sonstiges",
"mobility":"Agilitt",
"mobility":"Agilität",
"mobility-short+agility-short":"AGI+BE",
"mobility-short+dexterity-short":"AGI+GE",
"mobility-short+strength-short":"AGI+ST",
@@ -99,39 +102,39 @@
"normal-spellcasting":"Zaubern",
"notes":"Notizen",
"of":"von",
"open-lock":"Schlsser ffnen",
"open-lock-bonus":"Diebeskunst, Schlossknacker, ",
"open-lock":"Schlösser öffnen",
"open-lock-bonus":"Diebeskunst, Schlossknacker, ...",
"opponent-defense":"Gegnerabwehr",
"opponent-defense-short":"GA",
"other-abilities":"Sonstige Fhigkeiten",
"other-abilities":"Sonstige Fähigkeiten",
"perception":"Bemerken",
"perception-bonus":"Diebeskunst, Wahrnehmung, ",
"perception-bonus":"Diebeskunst, Wahrnehmung, ...",
"pick-pocket":"Taschendiebstahl",
"pick-pocket-bonus":"Diebeskunst, Heimlichkeit, Kann ich mal vorbei?, Langfinger, ",
"pick-pocket-bonus":"Diebeskunst, Heimlichkeit, Kann ich mal vorbei?, Langfinger, ...",
"place-of-birth":"Geburtsort",
"player":"Spieler",
"player-name":"Spielername",
"private-biography":"Geheime Biographie",
"progress-points":"Lernpunkte",
"progress-points-short":"LP",
"public-biography":"ffentliche Biographie",
"public-biography":"Öffentliche Biographie",
"quantity":"Menge",
"quantity-short":"Menge",
"race":"Volk",
"race-example":"Elf, Mensch, Zwerg, ",
"racial-abilities":"Volksfhigkeiten",
"race-example":"Elf, Mensch, Zwerg, ...",
"racial-abilities":"Volksfähigkeiten",
"ranged-attack":"Schiessen",
"read-tracks":"Spuren lesen",
"read-tracks-bonus":"Jger, Wahrnehmung, ",
"read-tracks-bonus":"Jäger, Wahrnehmung, ...",
"resist-disease":"Krankheit trotzen",
"resist-disease-bonus":"Einstecker, ",
"resist-disease-bonus":"Einstecker, ...",
"ride":"Reiten",
"ride-base":"AGI+MAX(BE, AU)",
"ride-bonus":"Reiten, Sattelschtze, Tiermeister, ",
"ride-bonus":"Reiten, Sattelschütze, Tiermeister, ...",
"search":"Suchen",
"search-bonus":"Diebeskunst, Heimlichkeit, Wahrnehmung, ",
"search-bonus":"Diebeskunst, Heimlichkeit, Wahrnehmung, ...",
"sneak":"Schleichen",
"sneak-bonus":"Heimlichkeit, ",
"sneak-bonus":"Heimlichkeit, ...",
"special":"Besonderes",
"special-behavior":"Besonderes Verhalten",
"special-characteristics":"Besonderes Aussehen",
@@ -144,11 +147,11 @@
"spell-type":"Zauber, Zielzauber, Geistesbeeinflussender Zauber",
"start":"Start",
"start-fire":"Feuer machen",
"start-fire-bonus":"Jger, ",
"stealth-bonus":"Heimlichkeit, ",
"strength":"Strke",
"start-fire-bonus":"Jäger, ...",
"stealth-bonus":"Heimlichkeit, ...",
"strength":"Stärke",
"swim":"Schwimmen",
"swim-bonus":"Schwimmen, ",
"swim-bonus":"Schwimmen, ...",
"talent":"Talent",
"talent-points":"Talentpunkte",
"talent-points-short":"TP",
@@ -160,14 +163,14 @@
"typical-checks":"Typische Proben",
"unarmed":"Waffenlos",
"wake-up":"Erwachen",
"wake-up-bonus":"Schnelle Reflexe, Wahrnehmung, ",
"wake-up-bonus":"Schnelle Reflexe, Wahrnehmung, ...",
"weapon":"Waffe",
"weapon-bonus":"Waffenbonus",
"weapon-bonus-short":"WB",
"weapon-type":"Schlagen oder Schiessen",
"weight":"Gewicht",
"where-carried":"Wo gelagert?",
"work-mechanism":"Mechanismus ffnen",
"work-mechanism":"Mechanismus öffnen",
"work-mechanism-base":"GEI+MAX(GE, VE)",
"work-mechanism-bonus":"Diebeskunst, Handwerk, Schlossknacker, "
"work-mechanism-bonus":"Diebeskunst, Handwerk, Schlossknacker, ..."
}
+5 -3
View File
@@ -1,8 +1,9 @@
{
"active":"Active",
"additional":"Additional",
"age":"Age",
"agility":"Agility",
"alphabet":"Alphabet",
"alphabets":"Alphabets",
"appraise":"Appraise",
"appraise-bonus":"Appraise, ...",
"armor":"Armor",
@@ -33,6 +34,7 @@
"cooldown":"Cooldown",
"culture":"Culture",
"culture-example":"Barbarians, Mountain Dwarves, Freelander, Kaiban, Wood Elves, Wild Elves, Desert Dwarves, Wyndlanders, Zasarian, ...",
"cultural-talents":"Cultural talents",
"current-hit-points":"Current hit points",
"current-mana-points":"Current mana points",
"date-of-birth":"Date of birth",
@@ -76,7 +78,8 @@
"jump-bonus":"Acrobat, ...",
"knowledge":"Knowledge",
"knowledge-bonus":"Education, Expertise, ...",
"language":"Language",
"languages":"Languages",
"learned":"Learned",
"level":"Level",
"magic-bonus":"Magic bonus",
"magic-bonus-short":"MB",
@@ -116,7 +119,6 @@
"progress-points-short":"PP",
"public-biography":"Public biography",
"quantity":"Quantity",
"quantity-short":"Qty",
"race":"Race",
"race-example":"Elf, Human, Dwarf, ...",
"racial-abilities":"Racial abilities",