2025-02-12 22:40:32 +00:00
|
|
|
extends "res://Game/InteractionSystem/PawnTypes/Guard.gd"
|
|
|
|
|
|
|
|
func onPawnSpawned(_pawn:CharacterPawn):
|
2025-02-17 23:38:55 +00:00
|
|
|
.onPawnSpawned(_pawn)
|
|
|
|
if RNG.chance(50):
|
|
|
|
_pawn.getChar().npcAttacks.append("PetCommandSit")
|
|
|
|
if RNG.chance(50):
|
|
|
|
_pawn.getChar().npcAttacks.append("PetCommandRoll")
|