12 lines
244 B
C#
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;
|
|
} |