Elite Shot - SmArtKar/AthenaFramework GitHub Wiki
Verb_EliteShot
makes it so that every X
shot uses a different projectile. To use it, equipment or hediff with the verb must have an EliteShotExtension
public class EliteShotExtension : DefModExtension
{
// How many shots must be taken before the elite shot procs
public int shotsToElite = 5;
// Projectile that replaces the default one when casting the elite shot
public ThingDef eliteShotProjectile;
}