diff options
Diffstat (limited to 'game/objects/Shop.gd')
| -rw-r--r-- | game/objects/Shop.gd | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/game/objects/Shop.gd b/game/objects/Shop.gd new file mode 100644 index 0000000..8759749 --- /dev/null +++ b/game/objects/Shop.gd @@ -0,0 +1,21 @@ +extends Node2D + + +# Called when the node enters the scene tree for the first time. +func _ready(): + pass # Replace with function body. + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +func _process(delta): + pass + + +func _on_area_2d_body_entered(body): + if body.name == "Player": + Stats.money += 5 + var popuptween = create_tween() + popuptween.tween_property($"../MoneySpent", "position", position - Vector2(888,0), 0.2) + print("Oh no! Victor spent some money!") + Stats.victorannoyed += 1 + self.queue_free() |
