This commit is contained in:
2025-09-30 16:24:32 +08:00
parent 80cbaff5fa
commit 8aa2550d01
5 changed files with 237 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
using RimWorld;
using Verse;
namespace ArachnaeSwarm
{
public class VerbProperties_FireSpew : VerbProperties
{
public float degrees = 26f; // Default based on original Verb_SpewFire (13 * 2)
public DamageDef damageDef;
public int damageAmount = -1;
public float armorPenetration = -1f;
public ThingDef filthDef;
public EffecterDef effecterDef;
public float propagationSpeed = -1f; // Speed of the explosion spread
public float chanceToStartFire = -1f; // Chance to start a fire
public bool avoidFriendlyFire = true; // Avoids damaging non-hostile targets
public VerbProperties_FireSpew()
{
this.verbClass = typeof(Verb_ShootFireSpew);
}
}
}