forked from Nekojimi/JackIt
8 lines
211 B
GDScript3
8 lines
211 B
GDScript3
|
extends PickPlayerAction
|
||
|
class_name MurderAction
|
||
|
|
||
|
func execute_with_target(user: WolfPlayer, target: WolfPlayer) -> bool:
|
||
|
if !super.execute_with_target(user, target):
|
||
|
return false
|
||
|
return target.murder(user)
|