|
@@ -34,8 +34,6 @@ export class SpellsService {
|
|
|
.filter((spell) => spell.level === level)
|
|
|
.filter((spell) => spell.classes.includes(characterClass));
|
|
|
result.push(...this.customSpells.filter((spell) => spell.level === level));
|
|
|
- console.log(result);
|
|
|
-
|
|
|
return result;
|
|
|
}
|
|
|
|
|
@@ -66,13 +64,15 @@ export class SpellsService {
|
|
|
id: 0,
|
|
|
isCustom: false,
|
|
|
german: 'Göttliche Führung',
|
|
|
- english: 'guidance',
|
|
|
+ english: 'Guidance',
|
|
|
+ image: 'guidance',
|
|
|
classes: ['Test', 'Cleric', 'Druid'],
|
|
|
level: 0,
|
|
|
cost: 'action',
|
|
|
duration: 10,
|
|
|
timeToCast: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -94,19 +94,21 @@ export class SpellsService {
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 1,
|
|
|
isCustom: false,
|
|
|
german: 'Totenläuten',
|
|
|
- english: 'tollTheDead',
|
|
|
+ english: 'Toll the Dead',
|
|
|
+ image: 'tollTheDead',
|
|
|
classes: ['Test', 'Cleric', 'Warlock', 'Wizard'],
|
|
|
level: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
timeToCast: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -133,19 +135,21 @@ export class SpellsService {
|
|
|
range: 60,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 2,
|
|
|
isCustom: false,
|
|
|
german: 'Thaumaturgie',
|
|
|
- english: 'thaumaturgy',
|
|
|
+ english: 'Thaumaturgy',
|
|
|
+ image: 'thaumaturgy',
|
|
|
classes: ['Test', 'Cleric'],
|
|
|
level: 0,
|
|
|
cost: 'action',
|
|
|
duration: 10,
|
|
|
timeToCast: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: false,
|
|
|
needsMaterial: false,
|
|
@@ -184,19 +188,21 @@ export class SpellsService {
|
|
|
range: 30,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 3,
|
|
|
german: 'Gift versprühen',
|
|
|
- english: 'sprayPoison',
|
|
|
+ english: 'Spray Posion',
|
|
|
+ image: 'sprayPoison',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Druid', 'Artificer', 'Sorcerer', 'Wizard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -217,19 +223,21 @@ export class SpellsService {
|
|
|
range: 10,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 4,
|
|
|
german: 'Ausbessern',
|
|
|
- english: 'mending',
|
|
|
+ english: 'Mending',
|
|
|
+ image: 'mending',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Bard', 'Cleric', 'Druid', 'Wizard', 'Sorcerer'],
|
|
|
timeToCast: 10,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: true,
|
|
@@ -252,19 +260,21 @@ export class SpellsService {
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 5,
|
|
|
german: 'Befall',
|
|
|
- english: 'infestation',
|
|
|
+ english: 'Infestation',
|
|
|
+ image: 'infestation',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Druid', 'Sorcerer', 'Wizard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: true,
|
|
@@ -307,14 +317,16 @@ export class SpellsService {
|
|
|
{
|
|
|
id: 6,
|
|
|
german: 'Blitzköder',
|
|
|
- english: 'lightningLure',
|
|
|
+ english: 'Lightning Lure',
|
|
|
+ image: 'lightningLure',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Sorcerer', 'Wizard', 'Warlock'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: false,
|
|
|
needsMaterial: false,
|
|
@@ -344,14 +356,16 @@ export class SpellsService {
|
|
|
{
|
|
|
id: 7,
|
|
|
german: 'Botschaft',
|
|
|
- english: 'message',
|
|
|
+ english: 'Message',
|
|
|
+ image: 'message',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Bard', 'Wizard', 'Sorcerer'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 1,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: true,
|
|
@@ -374,19 +388,21 @@ export class SpellsService {
|
|
|
range: 120,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 8,
|
|
|
german: 'Donnerschlag',
|
|
|
- english: 'thunderclap',
|
|
|
+ english: 'Thunderclap',
|
|
|
+ image: 'thunderclap',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Bard', 'Druid', 'Sorcerer', 'Warlock', 'Wizard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: false,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -411,19 +427,21 @@ export class SpellsService {
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: true,
|
|
|
areaOfEffectType: 'circle',
|
|
|
- radius: 5,
|
|
|
+ diameter: 5,
|
|
|
},
|
|
|
{
|
|
|
id: 9,
|
|
|
german: 'Dornenpeitsche',
|
|
|
- english: 'thornWhip',
|
|
|
+ english: 'Thorn Whip',
|
|
|
+ image: 'thornWhip',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Druid', 'Artificer'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: true,
|
|
@@ -446,12 +464,13 @@ export class SpellsService {
|
|
|
range: 30,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 10,
|
|
|
german: 'Druidenkunst',
|
|
|
- english: 'druidcraft',
|
|
|
+ english: 'Druidcraft',
|
|
|
+ image: 'druidcraft',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
|
|
@@ -459,7 +478,8 @@ export class SpellsService {
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -493,19 +513,21 @@ export class SpellsService {
|
|
|
range: 30,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 11,
|
|
|
german: 'Dröhnende Klinge',
|
|
|
- english: 'boomingBlade',
|
|
|
+ english: 'Booming Blade',
|
|
|
+ image: 'boomingBlade',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Bard', 'Sorcerer', 'Warlock', 'Wizard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 1,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: false,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: true,
|
|
@@ -529,19 +551,21 @@ export class SpellsService {
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 11,
|
|
|
german: 'Einfache Illusion',
|
|
|
- english: 'minorIllusion',
|
|
|
+ english: 'Minor Illusion',
|
|
|
+ image: 'minorIllusion',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Bard', 'Wizard', 'Warlock', 'Sorcerer'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 1,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: false,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: true,
|
|
@@ -566,19 +590,21 @@ export class SpellsService {
|
|
|
range: 30,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 12,
|
|
|
german: 'Erde Formen',
|
|
|
- english: 'moldEarth',
|
|
|
+ english: 'Mold Earth',
|
|
|
+ image: 'moldEarth',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Druid', 'Artificer'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 600,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: false,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -612,19 +638,21 @@ export class SpellsService {
|
|
|
range: 30,
|
|
|
hasAreaOfEffect: true,
|
|
|
areaOfEffectType: 'cube',
|
|
|
- radius: 5,
|
|
|
+ diameter: 5,
|
|
|
},
|
|
|
{
|
|
|
id: 13,
|
|
|
german: 'Erfrierung',
|
|
|
- english: 'frostbite',
|
|
|
+ english: 'Frostbite',
|
|
|
+ image: 'frostbite',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Druid', 'Warlock', 'Artificer', 'Sorcerer', 'Wizard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -649,19 +677,21 @@ export class SpellsService {
|
|
|
range: 60,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 14,
|
|
|
german: 'Feuerpfeil',
|
|
|
- english: 'fireBolt',
|
|
|
+ english: 'Fire Bolt',
|
|
|
+ image: 'fireBolt',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Sorcerer', 'Wizard', 'Artificer'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -685,19 +715,21 @@ export class SpellsService {
|
|
|
range: 120,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 15,
|
|
|
german: 'Flammen Erzeugen',
|
|
|
- english: 'produceFlames',
|
|
|
+ english: 'Produce Flame',
|
|
|
+ image: 'produceFlames',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Druid'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 100,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -723,19 +755,21 @@ export class SpellsService {
|
|
|
range: 30,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 16,
|
|
|
german: 'Flammen kontrollieren',
|
|
|
- english: 'controlFlames',
|
|
|
+ english: 'Control Flames',
|
|
|
+ image: 'controlFlames',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Druid', 'Artificer', 'Sorcerer', 'Wizard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 600,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: false,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -771,19 +805,21 @@ export class SpellsService {
|
|
|
range: 60,
|
|
|
hasAreaOfEffect: true,
|
|
|
areaOfEffectType: 'cube',
|
|
|
- radius: 5,
|
|
|
+ diameter: 5,
|
|
|
},
|
|
|
{
|
|
|
id: 17,
|
|
|
german: 'Freundschaft',
|
|
|
- english: 'friends',
|
|
|
+ english: 'Friends',
|
|
|
+ image: 'friends',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Bard', 'Sorcerer', 'Warlock', 'Wizard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 10,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: false,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: true,
|
|
@@ -805,19 +841,21 @@ export class SpellsService {
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 18,
|
|
|
german: 'Gedankensplitter',
|
|
|
- english: 'mindSliver',
|
|
|
+ english: 'Mind Sliver',
|
|
|
+ image: 'mindSliver',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Sorcerer', 'Wizard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: false,
|
|
|
needsMaterial: false,
|
|
@@ -834,24 +872,30 @@ export class SpellsService {
|
|
|
<p>Du treibst einen verstörenden Splitter psychischer Energie in den Geist einer Kreatur, die du in Reichweite sehen kannst. Das Ziel muss einen erfolgreichen Rettungswurf auf Intelligenz durchführen, sonst nimmt es 1W6 psychischen Schaden und muss 1W4 von seinem nächsten Rettungswurf vor Ende deines nächsten Zuges abziehen.</p>
|
|
|
<p><b>Auf höheren Stufen:</b> Der Schaden des Zaubers erhöht sich um je 1W6 wenn du Stufe 5 (auf 2W6), Stufe 11 (auf 3W6) und Stufe 17 (auf 4W6) erreichst.</p>
|
|
|
`,
|
|
|
+ description_en: `
|
|
|
+ <p>You drive a disorienting spike of psychic energy into the mind of one creature you can see within range. The target must succeed on an Intelligence saving throw or take 1d6 psychic damage and subtract 1d4 from the next saving throw it makes before the end of your next turn.</p>
|
|
|
+ <p><b>At higher levels:</b> The spell’s damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).</p>
|
|
|
+ `,
|
|
|
school: 'Enchantment',
|
|
|
isRanged: true,
|
|
|
range: 60,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 19,
|
|
|
german: 'Gehässiger Spott',
|
|
|
- english: 'viciousMockery',
|
|
|
+ english: 'Vicious Mockery',
|
|
|
+ image: 'viciousMockery',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Bard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: false,
|
|
|
needsMaterial: false,
|
|
@@ -875,19 +919,21 @@ export class SpellsService {
|
|
|
range: 60,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 20,
|
|
|
german: 'Gift versprühen',
|
|
|
- english: 'poisonSpray',
|
|
|
+ english: 'Poison Spray',
|
|
|
+ image: 'poisonSpray',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Druid', 'Sorcerer', 'Warlock', 'Wizard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -912,19 +958,21 @@ export class SpellsService {
|
|
|
range: 10,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 21,
|
|
|
german: 'Grünfeuerklinge',
|
|
|
- english: 'greenFlameBlade',
|
|
|
+ english: 'Green-Flame Blade',
|
|
|
+ image: 'greenFlameBlade',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Sorcerer', 'Warlock', 'Wizard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: false,
|
|
|
needsMaterial: true,
|
|
@@ -948,19 +996,21 @@ export class SpellsService {
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 22,
|
|
|
german: 'Heilige Flamme',
|
|
|
- english: 'sacredFlame',
|
|
|
+ english: 'Sacred Flame',
|
|
|
+ image: 'sacredFlame',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Cleric'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -985,19 +1035,21 @@ export class SpellsService {
|
|
|
range: 60,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 23,
|
|
|
german: 'Kalte Hand',
|
|
|
- english: 'chillTouch',
|
|
|
+ english: 'Chill Touch',
|
|
|
+ image: 'chillTouch',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Sorcerer', 'Warlock', 'Wizard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1023,19 +1075,21 @@ export class SpellsService {
|
|
|
range: 120,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 24,
|
|
|
german: 'Klingenbann',
|
|
|
- english: 'bladeWard',
|
|
|
+ english: 'Blade Ward',
|
|
|
+ image: 'bladeWard',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Bard', 'Sorcerer', 'Warlock', 'Wizard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 100,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: false,
|
|
|
needsMaterial: false,
|
|
@@ -1057,19 +1111,21 @@ export class SpellsService {
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 25,
|
|
|
german: 'Kältestrahl',
|
|
|
- english: 'rayOfFrost',
|
|
|
+ english: 'Ray of Frost',
|
|
|
+ image: 'rayOfFrost',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Sorcerer', 'Wizard', 'Artificer'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1093,19 +1149,21 @@ export class SpellsService {
|
|
|
range: 60,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 26,
|
|
|
german: 'Lagerfeuer erschaffen',
|
|
|
- english: 'createBonfire',
|
|
|
+ english: 'Create Bonfire',
|
|
|
+ image: 'createBonfire',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Druid', 'Sorcerer', 'Warlock', 'Wizard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 10,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1130,12 +1188,13 @@ export class SpellsService {
|
|
|
range: 60,
|
|
|
hasAreaOfEffect: true,
|
|
|
areaOfEffectType: 'cube',
|
|
|
- radius: 5,
|
|
|
+ diameter: 5,
|
|
|
},
|
|
|
{
|
|
|
id: 27,
|
|
|
german: 'Licht',
|
|
|
- english: 'light',
|
|
|
+ english: 'Light',
|
|
|
+ image: 'light',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: [
|
|
@@ -1150,7 +1209,8 @@ export class SpellsService {
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 600,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: false,
|
|
|
needsMaterial: true,
|
|
@@ -1162,7 +1222,7 @@ export class SpellsService {
|
|
|
doesHeal: false,
|
|
|
heal: { diceNumber: '', diceType: '', additionalHeal: 0 },
|
|
|
description_de: `
|
|
|
- <p>Du berührst einen Gegenstand, der nicht größer als 10 Fuß in einer beliebigen Dimension ist. Bis der Zauber endet, strahlt das Objekt helles Licht in einem Radius von 20 Fußn und schwaches Licht für weitere 20 Fuß aus. Das Licht kann nach Belieben gefärbt werden. Wenn du das Objekt vollständig mit etwas Undurchsichtigem abdeckst, wird das Licht blockiert. Der Zauber endet, wenn du ihn erneut wirkst oder ihn als Aktion abbrichst.</p>
|
|
|
+ <p>Du berührst einen Gegenstand, der nicht größer als 10 Fuß in einer beliebigen Dimension ist. Bis der Zauber endet, strahlt das Objekt helles Licht in einem Radius von 20 Fuß und schwaches Licht für weitere 20 Fuß aus. Das Licht kann nach Belieben gefärbt werden. Wenn du das Objekt vollständig mit etwas Undurchsichtigem abdeckst, wird das Licht blockiert. Der Zauber endet, wenn du ihn erneut wirkst oder ihn als Aktion abbrichst.</p>
|
|
|
<p>Wenn du ein Objekt anvisierst, das von einer feindlichen Kreatur gehalten oder getragen wird, muss diese Kreatur einen Rettungswurf auf Geschicklichkeit bestehen, um den Zauber zu vermeiden.</p>
|
|
|
`,
|
|
|
description_en: `
|
|
@@ -1173,20 +1233,22 @@ export class SpellsService {
|
|
|
isRanged: false,
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: false,
|
|
|
- areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ areaOfEffectType: 'circle',
|
|
|
+ diameter: 40,
|
|
|
},
|
|
|
{
|
|
|
id: 28,
|
|
|
german: 'Magierhand',
|
|
|
- english: 'mageHand',
|
|
|
+ english: 'Mage Hand',
|
|
|
+ image: 'mageHand',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Bard', 'Sorcerer', 'Warlock', 'Wizard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 10,
|
|
|
- canRitual: 'true',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1212,19 +1274,21 @@ export class SpellsService {
|
|
|
range: 30,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 29,
|
|
|
german: 'Magiestein',
|
|
|
- english: 'magicStone',
|
|
|
+ english: 'Magic Stone',
|
|
|
+ image: 'magicStone',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Druid', 'Hexenmeister'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'bonus',
|
|
|
duration: 10,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1248,19 +1312,21 @@ export class SpellsService {
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 30,
|
|
|
german: 'Resistenz',
|
|
|
- english: 'resistance',
|
|
|
+ english: 'Resistance',
|
|
|
+ image: 'resistance',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Cleric', 'Druid', 'Artificer'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 10,
|
|
|
- canRitual: 'true',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: true,
|
|
@@ -1282,19 +1348,21 @@ export class SpellsService {
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 31,
|
|
|
german: 'Schauriger Strahl',
|
|
|
- english: 'eldritchBlast',
|
|
|
+ english: 'Eldritch Blast',
|
|
|
+ image: 'eldritchBlast',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Hexenmeister'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1318,19 +1386,21 @@ export class SpellsService {
|
|
|
range: 120,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 32,
|
|
|
german: 'Schockgriff',
|
|
|
- english: 'shockingGrasp',
|
|
|
+ english: 'Shocking Grasp',
|
|
|
+ image: 'shockingGrasp',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Sorcerer', 'Wizard', 'Artificer'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1354,19 +1424,21 @@ export class SpellsService {
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 33,
|
|
|
german: 'Schwertexplosion',
|
|
|
- english: 'swordBurst',
|
|
|
+ english: 'Sword Burst',
|
|
|
+ image: 'swordBurst',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Sorcerer', 'Warlock', 'Wizard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: false,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1391,19 +1463,21 @@ export class SpellsService {
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: true,
|
|
|
areaOfEffectType: 'circle',
|
|
|
- radius: 5,
|
|
|
+ diameter: 5,
|
|
|
},
|
|
|
{
|
|
|
id: 34,
|
|
|
german: 'Shillelagh',
|
|
|
- english: 'shillelagh',
|
|
|
+ english: 'Shillelagh',
|
|
|
+ image: 'shillelagh',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Druid'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'bonus',
|
|
|
duration: 10,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: true,
|
|
@@ -1425,19 +1499,21 @@ export class SpellsService {
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 35,
|
|
|
german: 'Säurespritzer',
|
|
|
- english: 'acidSplash',
|
|
|
+ english: 'Acid Splash',
|
|
|
+ image: 'acidSplash',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Sorcerer', 'Wizard', 'Artificer'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1462,19 +1538,21 @@ export class SpellsService {
|
|
|
range: 60,
|
|
|
hasAreaOfEffect: true,
|
|
|
areaOfEffectType: 'circle',
|
|
|
- radius: 5,
|
|
|
+ diameter: 5,
|
|
|
},
|
|
|
{
|
|
|
id: 36,
|
|
|
german: 'Tanzende Lichter',
|
|
|
- english: 'dancingLights',
|
|
|
+ english: 'Dancing Lights',
|
|
|
+ image: 'dancingLights',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Bard', 'Sorcerer', 'Wizard', 'Artificer'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 10,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: true,
|
|
@@ -1497,19 +1575,21 @@ export class SpellsService {
|
|
|
range: 30,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 37,
|
|
|
german: 'Taschenspielerei',
|
|
|
- english: 'prestidigitation',
|
|
|
+ english: 'Prestidigitation',
|
|
|
+ image: 'prestidigitation',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Bard', 'Sorcerer', 'Wizard', 'Artificer'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 600,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1549,19 +1629,21 @@ export class SpellsService {
|
|
|
range: 10,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 38,
|
|
|
german: 'Verschonung der Toten',
|
|
|
- english: 'spareTheDying',
|
|
|
+ english: 'Spare the Dying',
|
|
|
+ image: 'spareTheDying',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Cleric'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1583,19 +1665,21 @@ export class SpellsService {
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 39,
|
|
|
german: 'Urtümliche Wildheit',
|
|
|
- english: 'primalSavagery',
|
|
|
+ english: 'Primal Savagery',
|
|
|
+ image: 'primalSavagery',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Druid'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: false,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1619,19 +1703,21 @@ export class SpellsService {
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 40,
|
|
|
german: 'Wasser formen',
|
|
|
- english: 'shapeWater',
|
|
|
+ english: 'Shape Water',
|
|
|
+ image: 'shapeWater',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Druid', 'Sorcerer', 'Wizard', 'Artificer'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 600,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: false,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1667,19 +1753,21 @@ export class SpellsService {
|
|
|
range: 30,
|
|
|
hasAreaOfEffect: true,
|
|
|
areaOfEffectType: 'cube',
|
|
|
- radius: 5,
|
|
|
+ diameter: 5,
|
|
|
},
|
|
|
{
|
|
|
id: 41,
|
|
|
german: 'Windböe',
|
|
|
- english: 'gust',
|
|
|
+ english: 'Gust',
|
|
|
+ image: 'gust',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Druid', 'Sorcerer', 'Wizard', 'Artificer'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1712,19 +1800,21 @@ export class SpellsService {
|
|
|
range: 30,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 42,
|
|
|
german: 'Wort des Strahlens',
|
|
|
- english: 'wordOfRadiance',
|
|
|
+ english: 'Word of Radiance',
|
|
|
+ image: 'wordOfRadiance',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Cleric'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1749,19 +1839,21 @@ export class SpellsService {
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: true,
|
|
|
areaOfEffectType: 'circle',
|
|
|
- radius: 5,
|
|
|
+ diameter: 5,
|
|
|
},
|
|
|
{
|
|
|
id: 43,
|
|
|
german: 'Zielsicherer Schlag',
|
|
|
- english: 'trueStrike',
|
|
|
+ english: 'True Strike',
|
|
|
+ image: 'trueStrike',
|
|
|
level: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Sorcerer', 'Wizard'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: false,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1783,20 +1875,22 @@ export class SpellsService {
|
|
|
range: 30,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
// Level 1
|
|
|
{
|
|
|
id: 1000,
|
|
|
german: 'Wunden verursachen',
|
|
|
- english: 'inflictWounds',
|
|
|
+ english: 'Inflict Wounds',
|
|
|
+ image: 'inflictWounds',
|
|
|
level: 1,
|
|
|
cost: 'action',
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Cleric'],
|
|
|
duration: 0,
|
|
|
timeToCast: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1809,24 +1903,28 @@ export class SpellsService {
|
|
|
heal: { diceNumber: '', diceType: '', additionalHeal: 0 },
|
|
|
description_de:
|
|
|
'Mach einen Nahkampf-Zauberangriff gegen eine Kreatur deiner Wahl. Bei einem Erfolg erleidet das Ziel 3W10 Nekrotischen Schaden. Auf höheren Graden: Wirkst du diesen Zauber, indem du einen Zauberplatz des 2. Grades oder höher nutzt, steigt der Schaden für jeden Grad über dem 1. um 1W10.',
|
|
|
+ description_en:
|
|
|
+ 'Make a melee spell attack against a creature you can reach. On a hit, the target takes 3d10 necrotic damage. At higher levels: When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.',
|
|
|
school: 'Necromancy',
|
|
|
isRanged: false,
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 1001,
|
|
|
german: 'Heilende Berührung',
|
|
|
- english: 'cureWounds',
|
|
|
+ english: 'Cure Wounds',
|
|
|
+ image: 'cureWounds',
|
|
|
level: 1,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Bard', 'Cleric', 'Druid', 'Paladin', 'Ranger'],
|
|
|
timeToCast: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1839,17 +1937,20 @@ export class SpellsService {
|
|
|
heal: { diceNumber: '1', diceType: 'd8', additionalHeal: 4 },
|
|
|
description_de:
|
|
|
'Eine Kreatur, die du berührst, gewinnt Trefferpunkte in Höhe von 1W8 + deinem Attributsmodifikator im Zauberwirken zurück. Dieser Zauber wirkt nicht auf Untote oder Konstrukte. Auf höheren Graden: Wirkst du diesen Zauber, indem du einen Zauberplatz des 2. Grades oder höher nutzt, steigt die Heilung für jeden Grad über dem 1. um 1W8.',
|
|
|
+ description_en:
|
|
|
+ 'A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs. At higher levels: When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.',
|
|
|
school: 'Evocation',
|
|
|
isRanged: false,
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 1002,
|
|
|
german: 'Magie entdecken',
|
|
|
- english: 'detectMagic',
|
|
|
+ english: 'Detact Magic',
|
|
|
+ image: 'detectMagic',
|
|
|
level: 1,
|
|
|
cost: 'action',
|
|
|
duration: 100,
|
|
@@ -1865,7 +1966,8 @@ export class SpellsService {
|
|
|
'Wizard',
|
|
|
],
|
|
|
timeToCast: 0,
|
|
|
- canRitual: 'true',
|
|
|
+ canRitual: true,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1878,24 +1980,28 @@ export class SpellsService {
|
|
|
heal: { diceNumber: '', diceType: '', additionalHeal: 0 },
|
|
|
description_de:
|
|
|
'Während der Wirkungsdauer nimmst du die Gegenwart von Magie im Abstand von bis zu 30 Fuß von dir wahr. Wenn du auf diese Weise Magie wahrnimmst, kannst du deine Aktion verwenden, um schwache Auren um sichtbare magische Kreaturen oder Objekte sowie ihre magische Schule zu erkennen, falls vorhanden. Dieser Zauber durchdringt die meisten Barrieren, wird aber von 30 Zentimeter Stein, 2,5 Zentimetern gewöhnlichem Metall, dünnem Bleiblech sowie von einem Meter Holz oder Erde blockiert.',
|
|
|
+ description_en:
|
|
|
+ 'For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.',
|
|
|
school: 'Divination',
|
|
|
isRanged: true,
|
|
|
range: 30,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 1003,
|
|
|
german: 'Segnen',
|
|
|
- english: 'bless',
|
|
|
+ english: 'Bless',
|
|
|
+ image: 'bless',
|
|
|
level: 1,
|
|
|
cost: 'action',
|
|
|
duration: 10,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Cleric', 'Paladin'],
|
|
|
timeToCast: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: true,
|
|
@@ -1908,24 +2014,28 @@ export class SpellsService {
|
|
|
heal: { diceNumber: '', diceType: '', additionalHeal: 0 },
|
|
|
description_de:
|
|
|
'Du segnest bis zu drei Kreaturen deiner Wahl in Reichweite. Wenn ein Ziel während der Wirkungsdauer einen Angriffs- oder Rettungswurf ausführt, darf es mit einem W4 würfeln und das Würfelergebnis zu seinem Angriffs- oder Rettungswurf addieren. Auf höheren Graden: Wirkst du diesen Zauber, indem du einen Zauberplatz des 2. Grades oder höher nutzt, kannst du für jeden Grad über dem 1. eine zusätzliche Kreatur als Ziel wählen.',
|
|
|
+ description_en:
|
|
|
+ 'You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll a d4 and add the number rolled to the attack roll or saving throw. At higher levels: When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.',
|
|
|
school: 'Enchantment',
|
|
|
isRanged: true,
|
|
|
range: 60,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 1004,
|
|
|
german: 'Heilendes Wort',
|
|
|
- english: 'healingWord',
|
|
|
+ english: 'Healing Word',
|
|
|
+ image: 'healingWord',
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Bard', 'Cleric', 'Druid'],
|
|
|
level: 1,
|
|
|
cost: 'bonus action',
|
|
|
duration: 0,
|
|
|
timeToCast: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: false,
|
|
|
needsMaterial: false,
|
|
@@ -1938,24 +2048,28 @@ export class SpellsService {
|
|
|
heal: { diceNumber: '1', diceType: 'd4', additionalHeal: 4 },
|
|
|
description_de:
|
|
|
'Eine Kreatur deiner Wahl in Reichweite, die du sehen kannst, gewinnt Trefferpunkte in Höhe von 1W4 + deinem Zauberwirken-Attributsmodifikator zurück. Dieser Zauber wirkt nicht auf Untote oder Konstrukte. Auf höheren Graden: Wirkst du diesen Zauber, indem du einen Zauberplatz des 2. Grades oder höher nutzt, steigt die Heilung für jeden Grad über dem 1. um 1W4.',
|
|
|
+ description_en:
|
|
|
+ 'A creature of your choice that you can see within range regains hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs. At higher levels: When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d4 for each slot level above 1st.',
|
|
|
school: 'Evocation',
|
|
|
isRanged: true,
|
|
|
range: 60,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 1005,
|
|
|
german: 'Lenkendes Geschoss',
|
|
|
- english: 'guidingBolt',
|
|
|
+ english: 'Guiding Bolt',
|
|
|
+ image: 'guidingBolt',
|
|
|
level: 1,
|
|
|
cost: 'action',
|
|
|
duration: 0,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Cleric'],
|
|
|
timeToCast: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -1968,24 +2082,28 @@ export class SpellsService {
|
|
|
heal: { diceNumber: '', diceType: '', additionalHeal: 0 },
|
|
|
description_de:
|
|
|
'Ein Lichtblitz schießt auf eine Kreatur deiner Wahl in Reichweite zu. Führe einen Fernkampf-Zauberangriff gegen das Ziel aus. Bei einem Erfolg erleidet das Ziel 4W6 gleißenden Schaden. Dank des mystischen dämmrigen Lichts, das auf dem Ziel glitzert, ist der nächste Angriffswurf gegen das Ziel vor Ende deines nächsten Zugs im Vorteil. Auf höheren Graden: Wirkst du diesen Zauber, indem du einen Zauberplatz des 2. Grades oder höher nutzt, steigt der Schaden für jeden Grad über dem 1. um 1W6.',
|
|
|
+ description_en:
|
|
|
+ 'A flash of light streaks toward a creature of your choice within range. Make a ranged spell attack against the target. On a hit, the target takes 4d6 radiant damage, and the next attack roll made against this target before the end of your next turn has advantage, thanks to the mystical dim light glittering on the target until then. At higher levels: When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.',
|
|
|
school: 'Evocation',
|
|
|
isRanged: true,
|
|
|
range: 120,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 1006,
|
|
|
german: 'Gift und Krankheiten entdecken',
|
|
|
- english: 'detectPoisonAndDisease',
|
|
|
+ english: 'Detect Poison and Disease',
|
|
|
+ image: 'detectPoisonAndDisease',
|
|
|
level: 1,
|
|
|
cost: 'action',
|
|
|
duration: 100,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Cleric', 'Druid', 'Paladin', 'Ranger'],
|
|
|
timeToCast: 0,
|
|
|
- canRitual: 'true',
|
|
|
+ canRitual: true,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: true,
|
|
@@ -1998,24 +2116,28 @@ export class SpellsService {
|
|
|
heal: { diceNumber: '', diceType: '', additionalHeal: 0 },
|
|
|
description_de:
|
|
|
'Während der Wirkungsdauer nimmst du die Gegenwart und die Position von Giften, giftigen Kreaturen und Krankheiten im Abstand von bis zu neun Metern von dir wahr. Du kannst auch die Art des Gifts, der giftigen Kreatur oder der Krankheit bestimmen. Dieser Zauber durchdringt die meisten Barrieren, wird aber von 1 Fußn Stein, 2,5 Zentimetern gewöhnlichem Metall, dünnem Bleiblech sowie von einem Meter Holz oder Erde blockiert.',
|
|
|
+ description_en:
|
|
|
+ 'For the duration, you can sense the presence and location of poisons, poisonous creatures, and diseases within 30 feet of you. You also identify the kind of poison, poisonous creature, or disease in each case. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.',
|
|
|
school: 'Divination',
|
|
|
isRanged: true,
|
|
|
range: 30,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 1007,
|
|
|
german: 'Heldenmut',
|
|
|
- english: 'heroism',
|
|
|
+ english: 'Heroism',
|
|
|
+ image: 'heroism',
|
|
|
level: 1,
|
|
|
cost: 'action',
|
|
|
duration: 10,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Bard', 'Paladin'],
|
|
|
timeToCast: 0,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: false,
|
|
@@ -2028,24 +2150,28 @@ export class SpellsService {
|
|
|
heal: { diceNumber: '', diceType: '', additionalHeal: 0 },
|
|
|
description_de:
|
|
|
'Du berührst eine bereitwillige Kreatur und erfüllst sie mit Tapferkeit. Bis der Zauber endet, kann die Kreatur nicht verängstigt werden, und sie erhält zu Beginn jedes ihrer Züge temporäre Trefferpunkte in Höhe deines Zauberwirken-Attributsmodifikators. Wenn der Zauber endet, verliert das Ziel alle verbleibenden temporären Trefferpunkte dieses Zaubers. Auf höheren Graden: Wirkst du diesen Zauber, indem du einen Zauberplatz des 2. Grades oder höher nutzt, kannst du für jeden Grad über dem 1. eine zusätzliche Kreatur als Ziel wählen.',
|
|
|
+ description_en:
|
|
|
+ 'A willing creature you touch is imbued with bravery. Until the spell ends, the creature is immune to being frightened and gains temporary hit points equal to your spellcasting ability modifier at the start of each of its turns. When the spell ends, the target loses any remaining temporary hit points from this spell. At higher levels: When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.',
|
|
|
school: 'Enchantment',
|
|
|
isRanged: false,
|
|
|
range: 5,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
{
|
|
|
id: 1008,
|
|
|
german: 'Heiligtum',
|
|
|
- english: 'sanctuary',
|
|
|
+ english: 'Sanctuary',
|
|
|
+ image: 'sanctuary',
|
|
|
level: 1,
|
|
|
isCustom: false,
|
|
|
classes: ['Test', 'Cleric'],
|
|
|
timeToCast: 0,
|
|
|
cost: 'bonus action',
|
|
|
duration: 10,
|
|
|
- canRitual: 'false',
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: true,
|
|
@@ -2058,44 +2184,94 @@ export class SpellsService {
|
|
|
heal: { diceNumber: '', diceType: '', additionalHeal: 0 },
|
|
|
description_de:
|
|
|
'Du schützt eine Kreatur in Reichweite vor Angriffen. Während der Wirkungsdauer muss jede Kreatur, die bei einem Angriff oder schädlichen Zauber die geschützte Kreatur als Ziel hat, zuerst einen Weisheitsrettungswurf bestehen. Scheitert der Wurf, muss die Kreatur ein neues Ziel wählen, oder sie verliert den Angriff oder Zauber. Dieser Zauber schützt die entsprechende Kreatur nicht vor Flächeneffekten wie der Explosion eines Feuerballs. Greift die geschützte Kreatur an oder wirkt sie einen Zauber auf eine feindliche Kreatur, endet der Effekt dieses Zaubers.',
|
|
|
+ description_en:
|
|
|
+ 'You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a Wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn’t protect the warded creature from area effects, such as the explosion of a fireball. If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.',
|
|
|
school: 'Abjuration',
|
|
|
isRanged: true,
|
|
|
range: 30,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
+
|
|
|
+ // Level 2
|
|
|
{
|
|
|
- id: 1009,
|
|
|
- german: 'Illusion',
|
|
|
- english: 'illusion',
|
|
|
- level: 1,
|
|
|
+ id: 2000,
|
|
|
+ german: 'Beistand',
|
|
|
+ english: 'Aid',
|
|
|
+ image: 'aid',
|
|
|
+ level: 2,
|
|
|
isCustom: false,
|
|
|
- classes: ['Test', 'Cleric'],
|
|
|
+ classes: ['Test', 'Cleric', 'Paladin'],
|
|
|
timeToCast: 0,
|
|
|
- cost: 'bonus action',
|
|
|
- duration: 10,
|
|
|
- canRitual: 'false',
|
|
|
+ cost: 'action',
|
|
|
+ duration: 4800,
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
needsVerbal: true,
|
|
|
needsSomatic: true,
|
|
|
needsMaterial: true,
|
|
|
- needsConcentration: true,
|
|
|
+ needsConcentration: false,
|
|
|
needsAttackRoll: false,
|
|
|
needsSavingThrow: false,
|
|
|
doesDamage: false,
|
|
|
damage: [{ diceNumber: '', diceType: '', damageType: '' }],
|
|
|
+ doesHeal: true,
|
|
|
+ heal: { diceNumber: '', diceType: '', additionalHeal: 5 },
|
|
|
+ description_de: `
|
|
|
+ <p>Dein Zauber unterstützt deine Verbündeten. Wähle bis zu 3 Kreaturen in Reichweite. Das Trefferpunkte-Maximum, sowie die momentanen trefferpunkte werden um 5 erhöht.</p>
|
|
|
+ <p><b>Auf höheren Graden:</b> Wirkst du diesen Zauber mit einem Zauberplatz des 3. Grades oder höher, erhöht sich das Trefferpunkte-Maximum um zusätzliche 5 Trefferpunkte für jeden Grad über dem 2.</p>
|
|
|
+ `,
|
|
|
+ description_en: `
|
|
|
+ <p>Your spell bolsters your allies with toughness and resolve. Choose up to three creatures within range. Each target’s hit point maximum and current hit points increase by 5 for the duration.</p>
|
|
|
+ <p><b>At higher levels:</b> When you cast this spell using a spell slot of 3rd level or higher, a target’s hit points increase by an additional 5 for each slot level above 2nd.</p>
|
|
|
+ `,
|
|
|
+ school: 'Abjuration',
|
|
|
+ isRanged: true,
|
|
|
+ range: 30,
|
|
|
+ hasAreaOfEffect: false,
|
|
|
+ areaOfEffectType: '',
|
|
|
+ diameter: 0,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 2001,
|
|
|
+ german: 'Waffe des Glaubens',
|
|
|
+ english: 'Spiritual Weapon',
|
|
|
+ image: 'spiritualWeapon',
|
|
|
+ level: 2,
|
|
|
+ isCustom: false,
|
|
|
+ classes: ['Test', 'Cleric'],
|
|
|
+ timeToCast: 0,
|
|
|
+ cost: 'bonus action',
|
|
|
+ duration: 10,
|
|
|
+ canRitual: false,
|
|
|
+ isRitual: false,
|
|
|
+ needsVerbal: true,
|
|
|
+ needsSomatic: true,
|
|
|
+ needsMaterial: false,
|
|
|
+ needsConcentration: false,
|
|
|
+ needsAttackRoll: true,
|
|
|
+ needsSavingThrow: false,
|
|
|
+ doesDamage: true,
|
|
|
+ damage: [{ diceNumber: '1', diceType: 'd8', damageType: 'force' }],
|
|
|
doesHeal: false,
|
|
|
heal: { diceNumber: '', diceType: '', additionalHeal: 0 },
|
|
|
- description_de:
|
|
|
- 'Du schützt eine Kreatur in Reichweite vor Angriffen. Während der Wirkungsdauer muss jede Kreatur, die bei einem Angriff oder schädlichen Zauber die geschützte Kreatur als Ziel hat, zuerst einen Weisheitsrettungswurf bestehen. Scheitert der Wurf, muss die Kreatur ein neues Ziel wählen, oder sie verliert den Angriff oder Zauber. Dieser Zauber schützt die entsprechende Kreatur nicht vor Flächeneffekten wie der Explosion eines Feuerballs. Greift die geschützte Kreatur an oder wirkt sie einen Zauber auf eine feindliche Kreatur, endet der Effekt dieses Zaubers.',
|
|
|
- school: 'Illusion',
|
|
|
+ description_de: `
|
|
|
+ <p>Du erschaffst eine Schwebende, gespenstische Waffe in Reichweite, die für die Wirkungsdauer anhält oder bis du den Zauber erneut wirkst. Wenn du den Zauber wirkst, kannst du einen Nahkampfangriff gegen eine Kreatur innerhalb von 5 Fuß zur Waffe durchführen. Bei einem Treffer erleidet das Ziel 1W8 + deinen Zaubermodifikator als Energieschaden.</p>
|
|
|
+ <p>Als Bonusaktion in deinem Zug kannst du die Waffe bis zu 20 Fuß weit bewegen und den Angriff gegen eine Kreatur innerhalb von 5 Fuß um sie wiederholen.</p>
|
|
|
+ <p>Die Waffe kann jede Form annehmen, die du wählst. Kleriker von Gottheiten, die mit einer bestimmten Waffe assoziiert sind (wie St. Cuthbert für seine Keule und Thor für seinen Hammer), lassen den Effekt dieses Zaubers wie diese Waffe aussehen.</p>
|
|
|
+ <p><b>Auf höheren Graden:</b> Wirkst du diesen Zauber mit einem Zauberplatz des 3. Grades oder höher, erhöht sich der Schaden um 1W8 für jeden zweiten Grad über dem 2.</p>
|
|
|
+ `,
|
|
|
+ description_en: `
|
|
|
+ <p>You create a floating, spectral weapon within range that lasts for the duration or until you cast this spell again. When you cast the spell, you can make a melee spell attack against a creature within 5 feet of the weapon. On a hit, the target takes force damage equal to 1d8 + your spellcasting ability modifier. As a bonus action on your turn, you can move the weapon up to 20 feet and repeat the attack against a creature within 5 feet of it. The weapon can take whatever form you choose. Clerics of deities who are associated with a particular weapon (as St. Cuthbert is known for his mace and Thor for his hammer) make this spell’s effect resemble that weapon.</p>
|
|
|
+ <p><b>At higher levels:</b> When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for every two slot levels above 2nd.</p>
|
|
|
+ `,
|
|
|
+ school: 'Evocation',
|
|
|
isRanged: true,
|
|
|
- range: 30,
|
|
|
+ range: 60,
|
|
|
hasAreaOfEffect: false,
|
|
|
areaOfEffectType: '',
|
|
|
- radius: 0,
|
|
|
+ diameter: 0,
|
|
|
},
|
|
|
-
|
|
|
- // Level 2
|
|
|
];
|
|
|
}
|