Browse Source

Ajoute un pouvoir pour amorcer le javelot

Reste a le lancer !
DricomDragon 10 months ago
parent
commit
5050f3663d

+ 2 - 0
godot/composants/objets/brique/brique.gd

@@ -54,6 +54,8 @@ func _associe_texture_brique(nouveau_type_pouvoir: Pouvoir.Type) -> void:
 			_texture_brique = preload("res://composants/objets/brique/images/44.png")
 		Pouvoir.Type.RALENTIR:
 			_texture_brique = preload("res://composants/objets/brique/images/08.png")
+		Pouvoir.Type.JAVELOT:
+			_texture_brique = preload("res://composants/objets/brique/images/46.png")
 		_:
 			_texture_brique = preload("res://composants/objets/brique/images/34.png")
 	_montrer_type_pouvoir()

+ 1 - 1
godot/composants/objets/raquette/raquette.tscn

@@ -7,7 +7,7 @@
 [sub_resource type="RectangleShape2D" id="RectangleShape2D_ong6t"]
 size = Vector2(120, 14)
 
-[node name="Raquette" type="StaticBody2D"]
+[node name="Raquette" type="StaticBody2D" groups=["groupe_des_raquettes"]]
 collision_layer = 2
 collision_mask = 9
 physics_material_override = ExtResource("1_cuq4l")

+ 3 - 0
godot/composants/pouvoirs/commun/association_pouvoirs.gd

@@ -6,6 +6,7 @@ enum Type {
 	FEU,
 	VIE,
 	RALENTIR,
+	JAVELOT,
 	BONJOUR # laisser en dernier
 }
 
@@ -20,6 +21,8 @@ static func fabriquer(type: Type): # -> PouvoirBase
 			return VieBonus.new()
 		Type.RALENTIR:
 			return RalentirPouvoir.new()
+		Type.JAVELOT:
+			return JavelotPouvoir.new()
 		Type.AUCUN:
 			return null
 		_:

+ 17 - 0
godot/composants/pouvoirs/pouvoir_javelot.gd

@@ -0,0 +1,17 @@
+class_name JavelotPouvoir
+extends PouvoirBase
+## Pouvoir qui lance un puissant laser
+
+
+const EruptionScene: PackedScene = preload("res://effets/eruption/eruption.tscn")
+
+
+func declencher_pouvoir(arbre_scene: SceneTree) -> void:
+	print("Amorce javelot")
+	for raquette in arbre_scene.get_nodes_in_group("groupe_des_raquettes"):
+		var lancement: Node2D = EruptionScene.instantiate()
+		raquette.add_child(lancement)
+
+
+func couleur_principale() -> Color:
+	return Color.ORANGE

+ 47 - 0
godot/effets/eruption/eruption.tscn

@@ -0,0 +1,47 @@
+[gd_scene load_steps=6 format=3 uid="uid://ben0ks1co8nid"]
+
+[ext_resource type="Texture2D" uid="uid://cyfwafl34k72b" path="res://effets/eruption/fxFlursh.png" id="1_l04ay"]
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_it1br"]
+atlas = ExtResource("1_l04ay")
+region = Rect2(0, 68, 101, 68)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_iw6y5"]
+atlas = ExtResource("1_l04ay")
+region = Rect2(0, 136, 101, 68)
+
+[sub_resource type="AtlasTexture" id="AtlasTexture_j05ac"]
+atlas = ExtResource("1_l04ay")
+region = Rect2(0, 0, 101, 68)
+
+[sub_resource type="SpriteFrames" id="SpriteFrames_l8lhy"]
+animations = [{
+"frames": [{
+"duration": 1.0,
+"texture": SubResource("AtlasTexture_it1br")
+}, {
+"duration": 1.0,
+"texture": SubResource("AtlasTexture_iw6y5")
+}, {
+"duration": 2.0,
+"texture": SubResource("AtlasTexture_j05ac")
+}, {
+"duration": 1.0,
+"texture": SubResource("AtlasTexture_iw6y5")
+}, {
+"duration": 1.0,
+"texture": SubResource("AtlasTexture_it1br")
+}],
+"loop": false,
+"name": &"default",
+"speed": 16.0
+}]
+
+[node name="Eruption" type="Node2D"]
+
+[node name="Animation" type="AnimatedSprite2D" parent="."]
+position = Vector2(0, -35)
+sprite_frames = SubResource("SpriteFrames_l8lhy")
+autoplay = "default"
+
+[connection signal="animation_finished" from="Animation" to="." method="queue_free"]

godot/composants/pouvoirs/javelot/fxFlursh.png → godot/effets/eruption/fxFlursh.png


+ 3 - 3
godot/composants/pouvoirs/javelot/fxFlursh.png.import

@@ -3,15 +3,15 @@
 importer="texture"
 type="CompressedTexture2D"
 uid="uid://cyfwafl34k72b"
-path="res://.godot/imported/fxFlursh.png-06d10ec021e740c9d6ec0f95adf118a1.ctex"
+path="res://.godot/imported/fxFlursh.png-8b205c6a67339a6ca9a9c3261d7024d7.ctex"
 metadata={
 "vram_texture": false
 }
 
 [deps]
 
-source_file="res://composants/pouvoirs/javelot/fxFlursh.png"
-dest_files=["res://.godot/imported/fxFlursh.png-06d10ec021e740c9d6ec0f95adf118a1.ctex"]
+source_file="res://effets/eruption/fxFlursh.png"
+dest_files=["res://.godot/imported/fxFlursh.png-8b205c6a67339a6ca9a9c3261d7024d7.ctex"]
 
 [params]
 

+ 6 - 6
godot/exec/niveaux/jdll2024.tscn

@@ -397,27 +397,27 @@ nombre_de_vies = 2
 
 [node name="Brique124" parent="Briques" instance=ExtResource("4_upd8n")]
 position = Vector2(150, 272)
-pouvoir_type = 1
+pouvoir_type = 4
 
 [node name="Brique125" parent="Briques" instance=ExtResource("4_upd8n")]
 position = Vector2(330, 224)
-pouvoir_type = 1
+pouvoir_type = 4
 
 [node name="Brique126" parent="Briques" instance=ExtResource("4_upd8n")]
 position = Vector2(270, 272)
-pouvoir_type = 1
+pouvoir_type = 4
 
 [node name="Brique128" parent="Briques" instance=ExtResource("4_upd8n")]
 position = Vector2(120, 224)
-pouvoir_type = 1
+pouvoir_type = 4
 
 [node name="Brique129" parent="Briques" instance=ExtResource("4_upd8n")]
 position = Vector2(60, 272)
-pouvoir_type = 1
+pouvoir_type = 4
 
 [node name="Brique127" parent="Briques" instance=ExtResource("4_upd8n")]
 position = Vector2(210, 224)
-pouvoir_type = 1
+pouvoir_type = 4
 
 [node name="Brique113" parent="Briques" instance=ExtResource("4_upd8n")]
 modulate = Color(0.666667, 0.666667, 0.666667, 1)