Move files and folders to new repo format to enable multi-project format

This commit is contained in:
2025-03-06 22:07:25 -08:00
parent 12cbb82ac9
commit a09f6ec5a5
3973 changed files with 1781 additions and 2938 deletions

View File

@@ -0,0 +1,34 @@
using Chickensoft.Introspection;
using Chickensoft.Serialization;
using Godot;
namespace Zennysoft.Game.Ma;
[GlobalClass]
[Meta, Id("armor_stats")]
public partial class ArmorStats : InventoryItemStats
{
[Export]
[Save("armor_defense")]
public int Defense { get; set; } = 0;
[Export]
[Save("armor_telluric_resistance")]
public double TelluricResistance { get; set; } = 0;
[Export]
[Save("armor_aeolic_resistance")]
public double AeolicResistance { get; set; } = 0;
[Export]
[Save("armor_hydric_resistance")]
public double HydricResistance { get; set; } = 0;
[Export]
[Save("armor_igneous_resistance")]
public double IgneousResistance { get; set; } = 0;
[Export]
[Save("armor_ferrum_resistance")]
public double FerrumResistance { get; set; } = 0;
}