From 539fd4820f37aa54df8878091db9680d89ee027a Mon Sep 17 00:00:00 2001 From: Matheus Date: Sat, 13 Sep 2025 11:06:46 -0300 Subject: pergaminho --- scripts/Entities/Items/ScrollConsumable.cs | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 scripts/Entities/Items/ScrollConsumable.cs (limited to 'scripts/Entities/Items/ScrollConsumable.cs') diff --git a/scripts/Entities/Items/ScrollConsumable.cs b/scripts/Entities/Items/ScrollConsumable.cs new file mode 100644 index 0000000..d260263 --- /dev/null +++ b/scripts/Entities/Items/ScrollConsumable.cs @@ -0,0 +1,25 @@ +using Godot; +using TheLegendOfGustav.Entities.Actions; +using TheLegendOfGustav.Entities.Actors; +using TheLegendOfGustav.Magic; +using TheLegendOfGustav.Map; +using TheLegendOfGustav.Utils; + +namespace TheLegendOfGustav.Entities.Items; + +public partial class ScrollConsumable(Vector2I initialPosition, MapData map, ScrollConsumableDefinition definition) : ConsumableItem(initialPosition, map, definition) +{ + private ScrollConsumableDefinition definition = definition; + + public SpellResource Spell { get; private set; } = definition.Spell; + + + public override bool Activate(ItemAction action) + { + Player consumer = action.Player; + + MessageLogData.Instance.AddMessage("Foste cuckado"); + ConsumedBy(consumer); + return true; + } +} \ No newline at end of file -- cgit v1.2.3