22 lines
373 B
GDScript
22 lines
373 B
GDScript
extends CharacterBody2D
|
|
class_name Entity
|
|
|
|
signal death(entity: Entity)
|
|
|
|
var alliance: Buff.colors
|
|
var attack_pow: int = 0
|
|
var color := Color.WHITE
|
|
@export var speed = 80
|
|
var lives: int = 1
|
|
|
|
func received_buff(color: Buff.colors) -> void:
|
|
if alliance == color:
|
|
attack_pow += 6
|
|
else:
|
|
attack_pow -= 3
|
|
|
|
func hit() -> void:
|
|
lives -= 1
|
|
if lives <= 0:
|
|
death.emit(self)
|