Files
GameJamDungeon/Zennysoft.Game.Ma/src/items/accessory/BoxItemStats.cs
2026-02-04 01:49:17 -08:00

12 lines
244 B
C#

using Chickensoft.Introspection;
using Godot;
namespace Zennysoft.Game.Ma;
[GlobalClass]
[Meta, Id("box_item_stat_type")]
public partial class BoxItemStats : InventoryItemStats
{
[Export]
public int DamageToPlayer { get; set; } = 10;
}