mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-22 15:38:14 +00:00
added the game
This commit is contained in:
35
Scripts/Classes/Entities/Objects/BobOmbHeld.gd
Normal file
35
Scripts/Classes/Entities/Objects/BobOmbHeld.gd
Normal file
@@ -0,0 +1,35 @@
|
||||
extends Enemy
|
||||
const EXPLOSION = preload("uid://clbvyne1cr8gp")
|
||||
@export var timer := 5.0
|
||||
|
||||
var can_move := true
|
||||
|
||||
func _ready() -> void:
|
||||
$Movement.auto_call = can_move
|
||||
|
||||
func _physics_process(delta: float) -> void:
|
||||
timer -= delta
|
||||
if timer <= 2.0:
|
||||
%FlashAnimation.play("Flash")
|
||||
if timer <= 0:
|
||||
explode()
|
||||
timer = 99
|
||||
%Sprite.scale.x = direction
|
||||
|
||||
func explode() -> void:
|
||||
$AnimationPlayer.play("Explode")
|
||||
await $AnimationPlayer.animation_finished
|
||||
summon_explosion()
|
||||
queue_free()
|
||||
|
||||
func kick(object: Node2D) -> void:
|
||||
AudioManager.play_sfx("kick", global_position)
|
||||
var kick_dir = sign(global_position.x - object.global_position.x)
|
||||
velocity.x = 150 * kick_dir
|
||||
direction = kick_dir
|
||||
velocity.y = -100
|
||||
|
||||
func summon_explosion() -> void:
|
||||
var node = EXPLOSION.instantiate()
|
||||
node.global_position = global_position + Vector2(0, -8)
|
||||
add_sibling(node)
|
Reference in New Issue
Block a user