Skip to content

Commit

Permalink
fix(creatures): fix creatures specials
Browse files Browse the repository at this point in the history
  • Loading branch information
rudnovd committed Aug 10, 2022
1 parent f1ee188 commit 4c191cc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/assets/database/creatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2567,7 +2567,7 @@ export const creatures: Array<Creature> = [
special: {
nonLiving: true,
vulnerablesToSpells: [Spells.Armageddon, Spells.Fireball, Spells.Inferno],
immunityToSpellElement: ['water'],
immunity: [Spells.IceBolt, Spells.FrostRing],
},
description:
'Elemental, Ice immunity, Vulnerable to Fireball, Inferno and Armageddon, +100% to basic damage to Fire and Energy Elementals',
Expand All @@ -2592,7 +2592,7 @@ export const creatures: Array<Creature> = [
special: {
nonLiving: true,
vulnerablesToSpells: [Spells.Armageddon, Spells.Fireball, Spells.Inferno],
immunityToSpellElement: ['water'],
immunity: [Spells.IceBolt, Spells.FrostRing],
},
description:
'Ranged (24 shots), Elemental, Ice immunity, Vulnerable to Fireball, Inferno and Armageddon, +100% to basic damage to Fire and Energy Elementals, Casts Protection from Water',
Expand Down Expand Up @@ -2693,6 +2693,7 @@ export const creatures: Array<Creature> = [
special: {
nonLiving: true,
vulnerablesToSpells: [Spells.MeteorShower],
immunity: [Spells.LightningBolt, Spells.ChainLightning, Spells.Armageddon],
},
description:
'Elemental, Meteor Shower vulnerability, Lightning and Armageddon immunity, +100% to basic damage to Air and Storm Elementals, Casts Protection from Earth',
Expand Down Expand Up @@ -3135,6 +3136,7 @@ export const creatures: Array<Creature> = [
growth: 16,
special: {
flying: true,
immunity: [Spells.IceBolt, Spells.FrostRing],
},
description: 'Teleporting, Immune to ice',
},
Expand All @@ -3157,6 +3159,7 @@ export const creatures: Array<Creature> = [
growth: 16,
special: {
flying: true,
immunity: [Spells.IceBolt, Spells.FrostRing],
},
description: 'Teleporting, Immune to ice',
},
Expand Down

0 comments on commit 4c191cc

Please sign in to comment.