mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-11 21:35:54 +00:00
Item Effects system
This commit is contained in:
parent
96acadf34c
commit
dae952af8b
15 changed files with 255 additions and 84 deletions
|
|
@ -1,4 +1,5 @@
|
|||
using Godot;
|
||||
using Cirno.Scripts.Resources.ItemEffects;
|
||||
using Godot;
|
||||
|
||||
namespace Cirno.Scripts.Resources;
|
||||
|
||||
|
|
@ -9,6 +10,7 @@ public partial class LootItem : Resource
|
|||
[Export] public StringName ItemDescription { get; set; }
|
||||
[Export] public StringName ItemKey { get; set; }
|
||||
[Export] public ItemTypes Item;
|
||||
[Export] public ItemEffectResource ItemEffect { get; private set; }
|
||||
[Export] public WeaponResource WeaponData { get; set; }
|
||||
[Export] public int Amount;
|
||||
[Export] public int Max;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue