diff --git a/components/Weapons/Volcano.tscn b/components/Weapons/Volcano.tscn index 87030c0..ab17d03 100644 --- a/components/Weapons/Volcano.tscn +++ b/components/Weapons/Volcano.tscn @@ -13,7 +13,7 @@ quality = 4 typeTopic = 2 costBeachball = 200 store = { -"atk": 10.0, +"atk": 20.0, "count": 1.0, "dmg1": 1.0, "dmg2": 0.5, @@ -39,7 +39,7 @@ cooldown = 1750.0 texture = ExtResource("2_hh01t") [node name="beachball" parent="container/info/infos" index="1"] -count = 300 +count = 200 [node name="soul" parent="container/info/infos" index="2"] count = 1 diff --git a/scripts/Contents/Weapons/Volcano.gd b/scripts/Contents/Weapons/Volcano.gd index fe019a7..2088aa1 100644 --- a/scripts/Contents/Weapons/Volcano.gd +++ b/scripts/Contents/Weapons/Volcano.gd @@ -7,7 +7,7 @@ func update(to: int, origin: Dictionary, _entity: EntityBase): origin["dmg2"] += 0.03 * to * soulLevel origin["dmg3"] += 0.03 * to * soulLevel origin["dmg4"] += 0.03 * to * soulLevel - origin["dmg5"] += 0.03 * to * soulLevel + origin["dmg5"] += 0.025 * to * soulLevel origin["count"] = 1 * soulLevel origin["atk"] += 2 * to * soulLevel return origin