Skip to content

Commit

Permalink
Rebalance Arcane Missiles
Browse files Browse the repository at this point in the history
  • Loading branch information
ZsoltMolnarrr committed Mar 30, 2024
1 parent 670b4f0 commit a4932d5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# 1.1.1

- Reduce damage done by Wall of Flames
- Reduce performance impact of Blizzard
- Arcane Missiles spell now shoots 2 projectiles, takes longer to cast
- Increase blast radius of Fireball by 25%
-
- Reduce damage done by Wall of Flames
- Reduce performance impact of Blizzard

# 1.1.0

Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/assets/wizards/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@

"spell.wizards.arcane_bolt.name": "Arcane Bolt",
"spell.wizards.arcane_bolt.description": "Shoots a bolt of energy, causing {damage} arcane spell damage.",
"spell.wizards.arcane_missile.name": "Arcane Missile",
"spell.wizards.arcane_missile.description": "Shoots a bolt of energy piercing thru {pierce} targets, causing {damage} arcane spell damage.",
"spell.wizards.arcane_missile.name": "Arcane Missiles",
"spell.wizards.arcane_missile.description": "Shoots a pair of energy bolts piercing thru {pierce} targets, causing {damage} arcane spell damage.",
"spell.wizards.arcane_blast.name": "Arcane Blast",
"spell.wizards.arcane_blast.description": "Blasts the target, causing {damage} arcane damage. Grants Arcane Charge, stacking up to {effect_amplifier} times.",
"effect.wizards.arcane_charge": "Arcane Charge",
Expand Down
8 changes: 6 additions & 2 deletions src/main/resources/data/wizards/spells/arcane_missile.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"tier": 1
},
"cast": {
"duration": 0.75,
"duration": 1.5,
"animation": "spell_engine:one_handed_projectile_charge",
"sound": {
"id": "spell_engine:generic_arcane_casting",
Expand All @@ -27,6 +27,10 @@
"target": {
"type": "PROJECTILE",
"projectile": {
"launch_properties": {
"extra_launch_count": 1,
"extra_launch_delay": 4
},
"projectile": {
"homing_angle": 1.5,
"perks": {
Expand Down Expand Up @@ -63,7 +67,7 @@
"type": "DAMAGE",
"damage": {
"knockback": 0.6,
"spell_power_coefficient": 0.6
"spell_power_coefficient": 0.5
}
},
"particles": [
Expand Down

0 comments on commit a4932d5

Please sign in to comment.