blob: 8689b51dfbaef7f069f485253b3c0e5b5780dc13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
extends Monster
onready var cardinal = Vector2.UP
onready var moved = false
onready var wait = -1
func _ready():
._ready()
if randf() < 0.5:
cardinal = Vector2.RIGHT
if randf() < 0.5:
wait = 0
func get_weakness():
return ['2','4','6']
func try_moving(player_pos : Vector2, monster_pos : Vector2) -> MonsterAction:
var action = MonsterAction.new()
if wait != -1:
if wait == 0:
wait = 1
action.type = MonsterActionType.IDLE
return action
else:
wait = 0
var next_movement = cardinal
if moved:
next_movement *= -1
var next_pos = monster_pos + next_movement
if next_pos == player_pos:
action.type = MonsterActionType.ATTACK
else:
action.type = MonsterActionType.MOVE
action.dir = next_movement
moved = !moved
return action
func cor_attack(args : Array):
yield(.cor_attack(args), "completed")
|