From 9bea9c63cdff0a1b4f3449d7fab8f452d1125e51 Mon Sep 17 00:00:00 2001 From: Siegfried Krug Date: Sun, 10 Jan 2021 21:04:18 +0100 Subject: [PATCH 1/3] add spell category none --- src/lang/de.json | 1 + src/lang/en.json | 1 + src/module/config.ts | 1 + 3 files changed, 3 insertions(+) diff --git a/src/lang/de.json b/src/lang/de.json index 2b719286..6639e01a 100644 --- a/src/lang/de.json +++ b/src/lang/de.json @@ -91,6 +91,7 @@ "DS4.SpellCategoryDarkness": "Schatten", "DS4.SpellCategoryMindAffecting": "Geistensbeeinflussend", "DS4.SpellCategoryElectricity": "Elektrizität", + "DS4.SpellCategoryNone": "Keine", "DS4.SpellBonus": "Zauberbonus", "DS4.SpellBonusAbbr": "ZB", "DS4.SpellMaxDistance": "Reichweite", diff --git a/src/lang/en.json b/src/lang/en.json index e6136a0f..a7044a3a 100644 --- a/src/lang/en.json +++ b/src/lang/en.json @@ -91,6 +91,7 @@ "DS4.SpellCategoryDarkness": "Darkness", "DS4.SpellCategoryMindAffecting": "Mind Affecting", "DS4.SpellCategoryElectricity": "Electricity", + "DS4.SpellCategoryNone": "None", "DS4.SpellBonus": "Spell Bonus", "DS4.SpellBonusAbbr": "SB", "DS4.SpellMaxDistance": "Range", diff --git a/src/module/config.ts b/src/module/config.ts index d8f9b851..f567183b 100644 --- a/src/module/config.ts +++ b/src/module/config.ts @@ -118,6 +118,7 @@ export const DS4 = { darkness: "DS4.SpellCategoryDarkness", mindAffecting: "DS4.SpellCategoryMindAffecting", electricity: "DS4.SpellCategoryElectricity", + none: "DS4.SpellCategoryNone", }, /** From 61098b31d64ab3ecdab537c0b99c1b1d79359e23 Mon Sep 17 00:00:00 2001 From: Siegfried Krug Date: Sun, 10 Jan 2021 21:18:33 +0100 Subject: [PATCH 2/3] spell add default category --- src/lang/de.json | 1 + src/lang/en.json | 1 + src/module/config.ts | 1 + 3 files changed, 3 insertions(+) diff --git a/src/lang/de.json b/src/lang/de.json index 6639e01a..5c675015 100644 --- a/src/lang/de.json +++ b/src/lang/de.json @@ -92,6 +92,7 @@ "DS4.SpellCategoryMindAffecting": "Geistensbeeinflussend", "DS4.SpellCategoryElectricity": "Elektrizität", "DS4.SpellCategoryNone": "Keine", + "DS4.SpellCategoryUnset": "Nicht gesetzt", "DS4.SpellBonus": "Zauberbonus", "DS4.SpellBonusAbbr": "ZB", "DS4.SpellMaxDistance": "Reichweite", diff --git a/src/lang/en.json b/src/lang/en.json index a7044a3a..8ae1f6f8 100644 --- a/src/lang/en.json +++ b/src/lang/en.json @@ -92,6 +92,7 @@ "DS4.SpellCategoryMindAffecting": "Mind Affecting", "DS4.SpellCategoryElectricity": "Electricity", "DS4.SpellCategoryNone": "None", + "DS4.SpellCategoryUnset": "Unset", "DS4.SpellBonus": "Spell Bonus", "DS4.SpellBonusAbbr": "SB", "DS4.SpellMaxDistance": "Range", diff --git a/src/module/config.ts b/src/module/config.ts index f567183b..2c9514ef 100644 --- a/src/module/config.ts +++ b/src/module/config.ts @@ -119,6 +119,7 @@ export const DS4 = { mindAffecting: "DS4.SpellCategoryMindAffecting", electricity: "DS4.SpellCategoryElectricity", none: "DS4.SpellCategoryNone", + unset: "DS4.SpellCategoryUnset", }, /** From 4196257fd5ce131ac4831d7286dd27bef1e45ae9 Mon Sep 17 00:00:00 2001 From: Siegfried Krug Date: Sun, 10 Jan 2021 21:51:47 +0100 Subject: [PATCH 3/3] add author siggi --- LICENSE | 2 +- package.json | 4 ++++ src/system.json | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index 4ea46065..5c296ab7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2020 Johannes Loher, Gesina Schwalbe, Oliver Rümpelein +Copyright 2020 Johannes Loher, Gesina Schwalbe, Oliver Rümpelein, Siegfried Krug Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/package.json b/package.json index 055a58db..06841a62 100644 --- a/package.json +++ b/package.json @@ -24,6 +24,10 @@ { "name": "Oliver Rümpelein", "email": "foundryvtt@pheerai.de" + }, + { + "name": "Siegfried Krug", + "email": "foundryvtt@asdil1991.de" } ], "scripts": { diff --git a/src/system.json b/src/system.json index 6584e451..6c742c7a 100644 --- a/src/system.json +++ b/src/system.json @@ -6,7 +6,7 @@ "minimumCoreVersion": "0.7.9", "compatibleCoreVersion": "0.7.9", "templateVersion": 2, - "author": "Johannes Loher, Gesina Schwalbe, Oliver Rümpelein", + "author": "Johannes Loher, Gesina Schwalbe, Oliver Rümpelein, Siegfried Krug", "esmodules": ["module/ds4.js"], "styles": ["ds4.css"], "scripts": [],