the-crypt/ai/ogre.gd

35 lines
793 B
GDScript3
Raw Normal View History

2020-07-19 23:45:39 -05:00
extends Enemy
2020-07-20 14:24:15 -05:00
var contact_damage = 0.5
2020-07-19 23:45:39 -05:00
onready var Spr = $Sprite
onready var DamageCD = $DamageCD
2020-07-20 14:24:15 -05:00
onready var Hurtbox = $Area2D
2020-07-19 23:45:39 -05:00
func _ready():
2020-07-20 14:24:15 -05:00
speed = 50
2020-07-19 23:45:39 -05:00
func _physics_process(delta):
var player = Globals.player
var distance = global_position.distance_to(player)
if distance <= 400:
if player.x > global_position.x:
Spr.flip_h = false
velocity.x = speed
elif player.x < global_position.x:
Spr.flip_h = true
velocity.x = -speed
2020-07-20 00:10:29 -05:00
if health <= 0:
queue_free()
2020-07-19 23:45:39 -05:00
if not is_on_floor():
2020-07-20 14:24:15 -05:00
velocity.y = 50
velocity = move_and_slide(velocity)
deal_damage()
func deal_damage():
if DamageCD.is_stopped():
for body in Hurtbox.get_overlapping_bodies():
if body.has_method("get_type") && body.get_type() == "player":
body.health -= contact_damage
DamageCD.start()