Skip to content

Commit a9973a9

Browse files
committed
Fix Arcane Missiles damage
1 parent e336def commit a9973a9

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
# 2.3.2
2+
3+
- Fix Arcane Missiles damage
4+
15
# 2.3.1
26

37
- Arcane Blast spells is now tier 1 spell
4-
- Rework Arcane Missile spell (now tier 2 spell), continuously fires missiles for 4 seconds
8+
- Rework Arcane Missile spell (now tier 2 spell), continuously fires missiles for 4 seconds
59

610
# 2.3.0
711

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fabric_api_version=0.102.0+1.21.1
1212
# Mod
1313
maven_group=net
1414
archives_base_name=wizards
15-
mod_version=2.3.1
15+
mod_version=2.3.2
1616
minecraft_compat_version=1.21
1717

1818
# Dependencies

src/main/resources/assets/wizards/lang/en_us.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@
5757

5858
"spell.wizards.arcane_bolt.name": "Arcane Bolt",
5959
"spell.wizards.arcane_bolt.description": "Shoots a bolt of energy, causing {damage} arcane spell damage.",
60-
"spell.wizards.arcane_missile.name": "Arcane Missiles",
61-
"spell.wizards.arcane_missile.description": "Continuously shoots bolts of energy piercing thru {pierce} targets, causing {damage} arcane spell damage.",
6260
"spell.wizards.arcane_blast.name": "Arcane Blast",
6361
"spell.wizards.arcane_blast.description": "Blasts the target, causing {damage} arcane damage. Grants Arcane Charge, stacking up to {effect_amplifier} times.",
6462
"effect.wizards.arcane_charge": "Arcane Charge",
6563
"effect.wizards.arcane_charge.description": "Increases Arcane spell damage done",
64+
"spell.wizards.arcane_missile.name": "Arcane Missiles",
65+
"spell.wizards.arcane_missile.description": "Continuously shoots bolts of energy piercing thru {pierce} targets, causing {damage} arcane damage every second.",
6666
"spell.wizards.arcane_beam.name": "Arcane Beam",
6767
"spell.wizards.arcane_beam.description": "Channels a beam of energy, dealing {damage} arcane damage every second. Consumes all Arcane Charges.",
6868
"spell.wizards.arcane_blink.name": "Blink",

src/main/resources/data/wizards/spell/arcane_blast.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"type": "DAMAGE",
4141
"damage": {
4242
"knockback": 0.5,
43-
"spell_power_coefficient": 0.9
43+
"spell_power_coefficient": 0.8
4444
}
4545
},
4646
"particles": [

src/main/resources/data/wizards/spell/arcane_missile.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"sound": { "id": "wizards:arcane_missile_release" }
4848
},
4949
"projectile": {
50-
"homing_angle": 6,
50+
"homing_angle": 8,
5151
"homing_after_absolute_distance": 8,
5252
"homing_after_relative_distance": 0.3,
5353
"perks": {
@@ -81,7 +81,7 @@
8181
"type": "DAMAGE",
8282
"damage": {
8383
"knockback": 0.5,
84-
"spell_power_coefficient": 0.25
84+
"spell_power_coefficient": 0.8
8585
}
8686
},
8787
"particles": [

0 commit comments

Comments
 (0)