From c6bbb834f7758027c0df338f1520f34fad3befea Mon Sep 17 00:00:00 2001 From: Matheus Date: Tue, 9 Sep 2025 19:09:34 -0300 Subject: Organização MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/entities/actions/PickUpAction.cs | 34 -------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 scripts/entities/actions/PickUpAction.cs (limited to 'scripts/entities/actions/PickUpAction.cs') diff --git a/scripts/entities/actions/PickUpAction.cs b/scripts/entities/actions/PickUpAction.cs deleted file mode 100644 index b772bb7..0000000 --- a/scripts/entities/actions/PickUpAction.cs +++ /dev/null @@ -1,34 +0,0 @@ -using Godot; - -public partial class PickupAction : DirectionalAction -{ - protected Player player; - - public PickupAction(Player player, Vector2I offset) : base(player, offset) - { - this.player = player; - // Pegar itens requer um tempo menor. - cost = 2; - } - - public override bool Perform() - { - ConsumableItem item = Map_Data.GetFirstItemAtPosition(Destination); - - if (item == null) { - MessageLogData.Instance.AddMessage("Não tem item aqui."); - return false; - } - - if (player.inventory.Items.Count >= player.inventory.Capacity) { - MessageLogData.Instance.AddMessage("Seu inventário está cheio"); - return false; - } - - Map_Data.RemoveEntity(item); - player.inventory.Add(item); - - player.Energy -= cost; - return true; - } -} \ No newline at end of file -- cgit v1.2.3