This commit is contained in:
2025-08-27 21:21:29 +08:00
parent e1477593a6
commit a0ab68e579
12 changed files with 9691 additions and 556 deletions

View File

@@ -0,0 +1,13 @@
using Verse;
using RimWorld;
namespace WulaFallenEmpire
{
public class VerbProperties_Excalibur : VerbProperties
{
public float pathWidth = 1f; // Default path width
public DamageDef damageDef; // Custom damage type
public float damageAmount = -1f; // Custom damage amount
public float armorPenetration = -1f; // Custom armor penetration
}
}