41 lines
781 B
GDScript
41 lines
781 B
GDScript
extends KinematicBody2D
|
|
|
|
onready var age = 0
|
|
|
|
onready var tilesmap = $"/root/World/tilemap"
|
|
|
|
const MOVEMENT_VECTORS = [
|
|
Vector2.UP,
|
|
Vector2.RIGHT,
|
|
Vector2.DOWN,
|
|
Vector2.LEFT
|
|
]
|
|
|
|
func _physics_process(_delta):
|
|
if position != null:
|
|
if tilesmap.get_cellv(tilesmap.world_to_map(position)) != 0:
|
|
queue_free()
|
|
if age > 2500:
|
|
$"Romance".add_to_group("malegoblin")
|
|
if age > 5000:
|
|
queue_free()
|
|
else:
|
|
age = age + 1
|
|
|
|
var movement = MOVEMENT_VECTORS[randi() % 4]
|
|
move_and_collide(movement * 2)
|
|
|
|
func _on_Hurtbox_area_entered(_area):
|
|
$Hurtbox/death.play()
|
|
|
|
func _on_death_finished():
|
|
queue_free()
|
|
|
|
func _on_Romance_area_entered(area):
|
|
if area.is_in_group("malegoblin"):
|
|
if randi() % 100 < 20:
|
|
$Romance/fight.play()
|
|
|
|
func _on_fight_finished():
|
|
queue_free()
|