Browse Source

:tada: Add the chicken enemy

Big, slow, and annoying.
DricomDragon 2 years ago
parent
commit
18d0e12f7b

+ 32 - 0
godot/component/entity/chick/Chicken.gd

@@ -0,0 +1,32 @@
+class_name Chicken
+extends KinematicBody2D
+
+
+export var walk_linear_speed = 100
+export var run_boost = 4
+
+var velocity = Vector2.ZERO
+
+
+func attack(from: Vector2, angle: float):
+	position = from
+
+	velocity = Vector2(walk_linear_speed, 0).rotated(angle)
+	$AnimatedSprite.play("walk")
+	$AnimatedSprite.flip_h = velocity.x < 0.0
+
+
+func _physics_process(delta):
+	move_and_collide(velocity * delta)
+
+
+func _on_VisibilityNotifier2D_screen_exited():
+	die()
+
+
+func _on_Spawner_reset():
+	die()
+
+
+func die():
+	queue_free()

+ 22 - 0
godot/component/entity/chick/Chicken.tscn

@@ -0,0 +1,22 @@
+[gd_scene load_steps=4 format=2]
+
+[ext_resource path="res://component/entity/chick/anim/ChickenSpriteFrame.tres" type="SpriteFrames" id=1]
+[ext_resource path="res://component/entity/chick/Chicken.gd" type="Script" id=2]
+
+[sub_resource type="CircleShape2D" id=1]
+radius = 34.9763
+
+[node name="Chicken" type="KinematicBody2D"]
+script = ExtResource( 2 )
+
+[node name="AnimatedSprite" type="AnimatedSprite" parent="."]
+position = Vector2( 0, 9.53674e-07 )
+frames = ExtResource( 1 )
+animation = "walk"
+
+[node name="Shape" type="CollisionShape2D" parent="."]
+shape = SubResource( 1 )
+
+[node name="VisibilityNotifier2D" type="VisibilityNotifier2D" parent="."]
+rect = Rect2( -40, -40, 80, 80 )
+[connection signal="screen_exited" from="VisibilityNotifier2D" to="." method="_on_VisibilityNotifier2D_screen_exited"]

+ 28 - 0
godot/component/entity/chick/anim/ChickenSpriteFrame.tres

@@ -0,0 +1,28 @@
+[gd_resource type="SpriteFrames" load_steps=9 format=2]
+
+[ext_resource path="res://component/entity/chick/anim/run/chicken_run_0.png" type="Texture" id=1]
+[ext_resource path="res://component/entity/chick/anim/get_hit/chicken_hit_0.png" type="Texture" id=2]
+[ext_resource path="res://component/entity/chick/anim/walk/chicken_walk_0.png" type="Texture" id=3]
+[ext_resource path="res://component/entity/chick/anim/walk/chicken_walk_1.png" type="Texture" id=4]
+[ext_resource path="res://component/entity/chick/anim/get_hit/chicken_hit_1.png" type="Texture" id=5]
+[ext_resource path="res://component/entity/chick/anim/run/chicken_run_1.png" type="Texture" id=6]
+[ext_resource path="res://component/entity/chick/anim/run/chicken_run_2.png" type="Texture" id=7]
+[ext_resource path="res://component/entity/chick/anim/walk/chicken_walk_2.png" type="Texture" id=8]
+
+[resource]
+animations = [ {
+"frames": [ ExtResource( 2 ), ExtResource( 5 ) ],
+"loop": true,
+"name": "get_hit",
+"speed": 6.0
+}, {
+"frames": [ ExtResource( 3 ), ExtResource( 4 ), ExtResource( 8 ) ],
+"loop": true,
+"name": "walk",
+"speed": 6.0
+}, {
+"frames": [ ExtResource( 1 ), ExtResource( 6 ), ExtResource( 7 ) ],
+"loop": true,
+"name": "run",
+"speed": 12.0
+} ]

BIN
godot/component/entity/chick/anim/get_hit/chicken_hit_0.png


+ 34 - 0
godot/component/entity/chick/anim/get_hit/chicken_hit_0.png.import

@@ -0,0 +1,34 @@
+[remap]
+
+importer="texture"
+type="StreamTexture"
+path="res://.import/chicken_hit_0.png-acde758ad9b332365cc007ada59ca943.stex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://component/entity/chick/anim/get_hit/chicken_hit_0.png"
+dest_files=[ "res://.import/chicken_hit_0.png-acde758ad9b332365cc007ada59ca943.stex" ]
+
+[params]
+
+compress/mode=0
+compress/lossy_quality=0.7
+compress/hdr_mode=0
+compress/bptc_ldr=0
+compress/normal_map=0
+flags/repeat=0
+flags/filter=true
+flags/mipmaps=false
+flags/anisotropic=false
+flags/srgb=2
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/HDR_as_SRGB=false
+process/invert_color=false
+stream=false
+size_limit=0
+detect_3d=true
+svg/scale=1.0

BIN
godot/component/entity/chick/anim/get_hit/chicken_hit_1.png


+ 34 - 0
godot/component/entity/chick/anim/get_hit/chicken_hit_1.png.import

@@ -0,0 +1,34 @@
+[remap]
+
+importer="texture"
+type="StreamTexture"
+path="res://.import/chicken_hit_1.png-ca9308325539f0b83e5937b541e42912.stex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://component/entity/chick/anim/get_hit/chicken_hit_1.png"
+dest_files=[ "res://.import/chicken_hit_1.png-ca9308325539f0b83e5937b541e42912.stex" ]
+
+[params]
+
+compress/mode=0
+compress/lossy_quality=0.7
+compress/hdr_mode=0
+compress/bptc_ldr=0
+compress/normal_map=0
+flags/repeat=0
+flags/filter=true
+flags/mipmaps=false
+flags/anisotropic=false
+flags/srgb=2
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/HDR_as_SRGB=false
+process/invert_color=false
+stream=false
+size_limit=0
+detect_3d=true
+svg/scale=1.0

BIN
godot/component/entity/chick/anim/run/chicken_run_0.png


+ 34 - 0
godot/component/entity/chick/anim/run/chicken_run_0.png.import

@@ -0,0 +1,34 @@
+[remap]
+
+importer="texture"
+type="StreamTexture"
+path="res://.import/chicken_run_0.png-4dbb1e1a1d63c44365520d024eb87d4c.stex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://component/entity/chick/anim/run/chicken_run_0.png"
+dest_files=[ "res://.import/chicken_run_0.png-4dbb1e1a1d63c44365520d024eb87d4c.stex" ]
+
+[params]
+
+compress/mode=0
+compress/lossy_quality=0.7
+compress/hdr_mode=0
+compress/bptc_ldr=0
+compress/normal_map=0
+flags/repeat=0
+flags/filter=true
+flags/mipmaps=false
+flags/anisotropic=false
+flags/srgb=2
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/HDR_as_SRGB=false
+process/invert_color=false
+stream=false
+size_limit=0
+detect_3d=true
+svg/scale=1.0

BIN
godot/component/entity/chick/anim/run/chicken_run_1.png


+ 34 - 0
godot/component/entity/chick/anim/run/chicken_run_1.png.import

@@ -0,0 +1,34 @@
+[remap]
+
+importer="texture"
+type="StreamTexture"
+path="res://.import/chicken_run_1.png-5ae0ea4903bcca2a691dca58f4ead263.stex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://component/entity/chick/anim/run/chicken_run_1.png"
+dest_files=[ "res://.import/chicken_run_1.png-5ae0ea4903bcca2a691dca58f4ead263.stex" ]
+
+[params]
+
+compress/mode=0
+compress/lossy_quality=0.7
+compress/hdr_mode=0
+compress/bptc_ldr=0
+compress/normal_map=0
+flags/repeat=0
+flags/filter=true
+flags/mipmaps=false
+flags/anisotropic=false
+flags/srgb=2
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/HDR_as_SRGB=false
+process/invert_color=false
+stream=false
+size_limit=0
+detect_3d=true
+svg/scale=1.0

BIN
godot/component/entity/chick/anim/run/chicken_run_2.png


+ 34 - 0
godot/component/entity/chick/anim/run/chicken_run_2.png.import

@@ -0,0 +1,34 @@
+[remap]
+
+importer="texture"
+type="StreamTexture"
+path="res://.import/chicken_run_2.png-5798b4615c8297fb2a9a93dabd67efbc.stex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://component/entity/chick/anim/run/chicken_run_2.png"
+dest_files=[ "res://.import/chicken_run_2.png-5798b4615c8297fb2a9a93dabd67efbc.stex" ]
+
+[params]
+
+compress/mode=0
+compress/lossy_quality=0.7
+compress/hdr_mode=0
+compress/bptc_ldr=0
+compress/normal_map=0
+flags/repeat=0
+flags/filter=true
+flags/mipmaps=false
+flags/anisotropic=false
+flags/srgb=2
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/HDR_as_SRGB=false
+process/invert_color=false
+stream=false
+size_limit=0
+detect_3d=true
+svg/scale=1.0

BIN
godot/component/entity/chick/anim/walk/chicken_walk_0.png


+ 34 - 0
godot/component/entity/chick/anim/walk/chicken_walk_0.png.import

@@ -0,0 +1,34 @@
+[remap]
+
+importer="texture"
+type="StreamTexture"
+path="res://.import/chicken_walk_0.png-fc31487040ef6b5e380686f6a45f246d.stex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://component/entity/chick/anim/walk/chicken_walk_0.png"
+dest_files=[ "res://.import/chicken_walk_0.png-fc31487040ef6b5e380686f6a45f246d.stex" ]
+
+[params]
+
+compress/mode=0
+compress/lossy_quality=0.7
+compress/hdr_mode=0
+compress/bptc_ldr=0
+compress/normal_map=0
+flags/repeat=0
+flags/filter=true
+flags/mipmaps=false
+flags/anisotropic=false
+flags/srgb=2
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/HDR_as_SRGB=false
+process/invert_color=false
+stream=false
+size_limit=0
+detect_3d=true
+svg/scale=1.0

BIN
godot/component/entity/chick/anim/walk/chicken_walk_1.png


+ 34 - 0
godot/component/entity/chick/anim/walk/chicken_walk_1.png.import

@@ -0,0 +1,34 @@
+[remap]
+
+importer="texture"
+type="StreamTexture"
+path="res://.import/chicken_walk_1.png-f27f90260f3257e678a383b56075ec2e.stex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://component/entity/chick/anim/walk/chicken_walk_1.png"
+dest_files=[ "res://.import/chicken_walk_1.png-f27f90260f3257e678a383b56075ec2e.stex" ]
+
+[params]
+
+compress/mode=0
+compress/lossy_quality=0.7
+compress/hdr_mode=0
+compress/bptc_ldr=0
+compress/normal_map=0
+flags/repeat=0
+flags/filter=true
+flags/mipmaps=false
+flags/anisotropic=false
+flags/srgb=2
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/HDR_as_SRGB=false
+process/invert_color=false
+stream=false
+size_limit=0
+detect_3d=true
+svg/scale=1.0

BIN
godot/component/entity/chick/anim/walk/chicken_walk_2.png


+ 34 - 0
godot/component/entity/chick/anim/walk/chicken_walk_2.png.import

@@ -0,0 +1,34 @@
+[remap]
+
+importer="texture"
+type="StreamTexture"
+path="res://.import/chicken_walk_2.png-f2b19b73221d498557949c164de902a2.stex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://component/entity/chick/anim/walk/chicken_walk_2.png"
+dest_files=[ "res://.import/chicken_walk_2.png-f2b19b73221d498557949c164de902a2.stex" ]
+
+[params]
+
+compress/mode=0
+compress/lossy_quality=0.7
+compress/hdr_mode=0
+compress/bptc_ldr=0
+compress/normal_map=0
+flags/repeat=0
+flags/filter=true
+flags/mipmaps=false
+flags/anisotropic=false
+flags/srgb=2
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/HDR_as_SRGB=false
+process/invert_color=false
+stream=false
+size_limit=0
+detect_3d=true
+svg/scale=1.0

+ 1 - 1
godot/component/entity/spawner/MobSpawner.tscn

@@ -1,7 +1,7 @@
 [gd_scene load_steps=4 format=2]
 
 [ext_resource path="res://component/entity/spawner/MobSpawner.gd" type="Script" id=1]
-[ext_resource path="res://component/entity/wheel/Wheel.tscn" type="PackedScene" id=2]
+[ext_resource path="res://component/entity/chick/Chicken.tscn" type="PackedScene" id=2]
 
 [sub_resource type="Curve2D" id=1]
 _data = {

+ 6 - 0
godot/project.godot

@@ -9,6 +9,11 @@
 config_version=4
 
 _global_script_classes=[ {
+"base": "KinematicBody2D",
+"class": "Chicken",
+"language": "GDScript",
+"path": "res://component/entity/chick/Chicken.gd"
+}, {
 "base": "Path2D",
 "class": "MobSpawner",
 "language": "GDScript",
@@ -30,6 +35,7 @@ _global_script_classes=[ {
 "path": "res://component/entity/wheel/Wheel.gd"
 } ]
 _global_script_class_icons={
+"Chicken": "",
 "MobSpawner": "",
 "Octo": "",
 "Player": "",