Browse Source

:wrench: Rend le javelot un peu moins fort

Reduit de 1 les degats
DricomDragon 10 tháng trước cách đây
mục cha
commit
f8cf255562
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      godot/composants/objets/javelot/javelot.gd

+ 1 - 1
godot/composants/objets/javelot/javelot.gd

@@ -4,7 +4,7 @@ extends Node2D
 
 
 const vitesse_ascendante: float = 1000.0 # px/sec
-const degats: int = 3
+const degats: int = 2
 
 
 func _physics_process(delta: float) -> void: