Skip to content

Commit

Permalink
Improve arcane spell visuals, arcane missile homing change
Browse files Browse the repository at this point in the history
  • Loading branch information
ZsoltMolnarrr committed Jan 20, 2025
1 parent a9973a9 commit fa70ac2
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 2.3.3

- Improve Arcane Beam particles
- Improve Arcane Missile projectile path

# 2.3.2

- Fix Arcane Missiles damage
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fabric_api_version=0.102.0+1.21.1
# Mod
maven_group=net
archives_base_name=wizards
mod_version=2.3.2
mod_version=2.3.3
minecraft_compat_version=1.21

# Dependencies
Expand Down
22 changes: 19 additions & 3 deletions src/main/resources/data/wizards/spell/arcane_beam.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"shape": "CIRCLE",
"rotation": "LOOK",
"origin": "CENTER",
"count": 0.5,
"count": 1,
"min_speed": 0.1,
"max_speed": 0.2
},
Expand All @@ -58,9 +58,17 @@
"shape": "CIRCLE",
"rotation": "LOOK",
"origin": "CENTER",
"count": 0.5,
"count": 1,
"min_speed": 0.1,
"max_speed": 0.2
},
{
"particle_id": "spell_engine:arcane_hit",
"shape": "SPHERE",
"origin": "CENTER",
"count": 3,
"min_speed": 0.3,
"max_speed": 0.4
}
]
}
Expand All @@ -78,11 +86,19 @@
}
},
"particles": [
{
"particle_id": "spell_engine:arcane_hit",
"shape": "SPHERE",
"origin": "CENTER",
"count": 4,
"min_speed": 0.2,
"max_speed": 0.7
},
{
"particle_id": "spell_engine:arcane_spell",
"shape": "SPHERE",
"origin": "CENTER",
"count": 5,
"count": 2,
"min_speed": 0.1,
"max_speed": 0.2
},
Expand Down
8 changes: 5 additions & 3 deletions src/main/resources/data/wizards/spell/arcane_missile.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@
}
],
"launch_properties": {
"velocity": 1.5,
"velocity": 1.25,
"sound": { "id": "wizards:arcane_missile_release" }
},
"projectile": {
"homing_angle": 8,
"homing_angle": 6,
"homing_angles": [60, 30, 15],
"homing_after_absolute_distance": 8,
"homing_after_relative_distance": 0.3,
"perks": {
Expand Down Expand Up @@ -101,6 +102,7 @@
],
"cost": {
"item_id": "runes:arcane_stone",
"cooldown_duration": 2
"cooldown_duration": 2,
"cooldown_proportional": true
}
}

0 comments on commit fa70ac2

Please sign in to comment.