├── .editorconfig ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── discussion-template.md │ └── patch-request.md ├── pull_request_template.md └── workflows │ ├── backports.yml │ ├── code-style.yml │ ├── duplicates.yml │ ├── main.yml │ ├── pullrequest.yml │ └── release.yml ├── .gitignore ├── About ├── About.xml ├── Preview.png └── PublishedFileId.txt ├── Anomaly ├── Defs │ ├── Ammo │ │ ├── Flamethrower_Burst.xml │ │ └── NerveSpikerBolt.xml │ ├── DamageDefs │ │ └── DamageDefs_Anomaly.xml │ ├── HediffDefs │ │ └── Hediffs_Anomaly.xml │ └── ToolCapacityDefs │ │ └── ToolCapacity.xml └── Patches │ ├── AbilityDefs │ └── Abilities_Anomaly.xml │ ├── Bodies │ ├── Devourer.xml │ ├── Dreadmeld.xml │ ├── Fingerspike.xml │ ├── Fleshbulb.xml │ ├── FleshmassNucleus.xml │ ├── Gorehulk.xml │ ├── Metalhorror.xml │ ├── Nociosphere.xml │ ├── Noctol.xml │ ├── Toughspike.xml │ └── Trispike.xml │ ├── CreepjoinderDefs │ └── Forms.xml │ ├── DamageDefs │ └── Anomaly_Damages_Misc.xml │ ├── Hediffs │ ├── Hediffs_BodyParts_Prosthetic.xml │ ├── Hediffs_Misc.xml │ └── Hediffs_Mutants.xml │ ├── Misc │ └── Mutants.xml │ ├── PawnKinds │ └── PawnKinds_Horaxian.xml │ ├── Scenarios │ └── Scenarios.xml │ ├── ThingDefs_Buildings │ ├── Buildings_Fleshmass.xml │ ├── Buildings_Misc.xml │ └── Buildings_Obelisks.xml │ ├── ThingDefs_Items │ ├── Items_Resources_Manufactured.xml │ ├── Items_Resources_Stuff.xml │ └── Items_Various.xml │ ├── ThingDefs_Misc │ ├── Apparel_Anomaly.xml │ ├── Apparel_Packs.xml │ ├── Weapons_Guns.xml │ ├── Weapons_Ranged.xml │ └── Weapons_RangedHoraxian.xml │ ├── ThingDefs_Races │ ├── Races_Entities_Misc.xml │ └── Races_Fleshbeasts.xml │ └── ThingTreeDefs │ └── ThinkTreeDefs_Anomaly.xml ├── Assemblies └── CombatExtendedLoader.dll ├── Biotech └── Patches │ ├── AbilityDefs │ └── Abilities_Biotech.xml │ ├── Bodies │ ├── Bodies_Mechanoid_Heavy.xml │ ├── Bodies_Mechanoid_Light.xml │ ├── Bodies_Mechanoid_Medium.xml │ ├── BodyParts_Mechanoid.xml │ ├── Mech_Centurion.xml │ ├── Mech_Diabolus.xml │ └── Mech_Warqueen.xml │ ├── DamageDefs │ └── Damages_Misc.xml │ ├── FactionDefs │ └── Factions_Misc.xml │ ├── GeneDefs │ └── GeneDefs_Misc.xml │ ├── HediffDefs │ └── Hediffs_Mechanitor.xml │ ├── PawnKindDefs_Humanlike │ ├── PawnKinds_Impid.xml │ ├── PawnKinds_Special.xml │ └── PawnKinds_Waster.xml │ ├── ThingDefs_Items │ └── Items_BiotechGeneral.xml │ ├── ThingDefs_Misc │ ├── Apparel_BiotechChild.xml │ ├── Apparel_BiotechHeadgear.xml │ ├── Apparel_BiotechMech.xml │ ├── Apparel_BiotechPacks.xml │ ├── Apparel_BiotechVarious.xml │ └── Weapons │ │ ├── RangedIndustrial_Biotech.xml │ │ ├── RangedMechanoid_Heavy.xml │ │ ├── RangedMechanoid_Light.xml │ │ ├── RangedMechanoid_Medium.xml │ │ └── RangedMechanoid_Turret.xml │ └── ThingDefs_Races │ ├── Races_Animal_Pollution.xml │ ├── Races_Mechanoids_Heavy.xml │ ├── Races_Mechanoids_Light.xml │ ├── Races_Mechanoids_Medium.xml │ └── Races_Mechanoids_SuperHeavy.xml ├── BuildCompat.py ├── Building.md ├── Defs ├── Ammo │ ├── Advanced │ │ ├── 10x18mmCharged.xml │ │ ├── 12GaugeCharged.xml │ │ ├── 12mmRailgun.xml │ │ ├── 12x64mmCharged.xml │ │ ├── 12x72mmCharged.xml │ │ ├── 15x65mmDiffusingCharged.xml │ │ ├── 164x284mmDemoShell.xml │ │ ├── 20x105mmCharged.xml │ │ ├── 30x64mmFuelCell.xml │ │ ├── 5x16mmCharged.xml │ │ ├── 5x35mmCharged.xml │ │ ├── 5x50mmCaseless.xml │ │ ├── 60x225mmGammaShell.xml │ │ ├── 66mmThermalBolt.xml │ │ ├── 6mmRailgun.xml │ │ ├── 6x18mmCharged.xml │ │ ├── 6x22mmCharged.xml │ │ ├── 6x24mmCharged.xml │ │ ├── 70mmMechanoidGrenade.xml │ │ ├── 80x256mmFuelCell.xml │ │ ├── 8mmRailgun.xml │ │ ├── 8x35mmCharged.xml │ │ ├── 8x40mmCharged.xml │ │ ├── 8x50mmCharged.xml │ │ ├── LaserChargePack.xml │ │ ├── PlasmaCellHeavy.xml │ │ ├── PlasmaCellPistol.xml │ │ └── PlasmaCellRifle.xml │ ├── AmmoBases.xml │ ├── AmmoCategoryDefs │ │ ├── AmmoCategories_Advanced.xml │ │ ├── AmmoCategories_General.xml │ │ ├── AmmoCategories_Grenades.xml │ │ ├── AmmoCategories_Medieval.xml │ │ ├── AmmoCategories_Missiles.xml │ │ ├── AmmoCategories_Neolithic.xml │ │ ├── AmmoCategories_Rockets.xml │ │ └── AmmoCategories_Shotgun.xml │ ├── Generic │ │ ├── AntiMateriel.xml │ │ ├── Autocannon.xml │ │ ├── Charged.xml │ │ ├── Generics_Misc.xml │ │ ├── LauncherGrenade.xml │ │ ├── Mech.xml │ │ ├── Pistol.xml │ │ ├── PistolMagnum.xml │ │ ├── Rifle.xml │ │ ├── RifleIntermediate.xml │ │ ├── RifleMagnum.xml │ │ ├── Shell_Artillery.xml │ │ ├── Shell_Cannon.xml │ │ └── ShotgunShell.xml │ ├── Grenade │ │ ├── 20x42mmGrenade.xml │ │ ├── 25x40mmGrenade.xml │ │ ├── 25x59mmGrenade.xml │ │ ├── 30x29mmGrenade.xml │ │ ├── 35x32mmSRGrenade.xml │ │ ├── 40x46mmGrenade.xml │ │ ├── 40x47mmGrenade.xml │ │ ├── 40x53mmGrenade.xml │ │ ├── 40x53mmVOG25Grenade.xml │ │ ├── 50mmGS50Grenade.xml │ │ └── 83mmPIATGrenade.xml │ ├── HighCaliber │ │ ├── 12.7x108mmSoviet.xml │ │ ├── 13.2x92mmSRTuF.xml │ │ ├── 14.5x114mmSoviet.xml │ │ ├── 15.2x169mm.xml │ │ ├── 2-Bore.xml │ │ ├── 20x102mmNATO.xml │ │ ├── 20x110mmHispano.xml │ │ ├── 20x128mmOerlikon.xml │ │ ├── 20x138mmB.xml │ │ ├── 20x139mm.xml │ │ ├── 20x82mmMauser.xml │ │ ├── 20x99mmShVAK.xml │ │ ├── 23x115mm.xml │ │ ├── 23x152mmB.xml │ │ ├── 25x137mmNATO.xml │ │ ├── 27x145mmMauser.xml │ │ ├── 300WinchesterMagnum.xml │ │ ├── 30x113mmB.xml │ │ ├── 30x165mm.xml │ │ ├── 30x170mm.xml │ │ ├── 30x173mmNATO.xml │ │ ├── 338LapuaMagnum.xml │ │ ├── 338NormaMagnum.xml │ │ ├── 35x228mmNATO.xml │ │ ├── 408CheyenneTactical.xml │ │ ├── 40x311mmR.xml │ │ ├── 470NitroExpress.xml │ │ ├── 50BMG.xml │ │ ├── 55Boys.xml │ │ ├── 600NitroExpress.xml │ │ ├── 7.92x94mm Patronen.xml │ │ └── 950JDJ.xml │ ├── Lasers │ │ └── BaseLaserProjectiles.xml │ ├── Medieval │ │ ├── BlunderbussShot.xml │ │ ├── CannonBall.xml │ │ ├── Catapult.xml │ │ ├── CrossbowBolts.xml │ │ ├── MiniCannonBall.xml │ │ ├── MortarGrenade.xml │ │ └── MusketBall.xml │ ├── Modded │ │ ├── Halo │ │ │ ├── 102mmM41Rockets.xml │ │ │ ├── 12.7x40mm.xml │ │ │ ├── 12.7x99mm.xml │ │ │ ├── 14.5x114mmUNSC.xml │ │ │ ├── 16x65mm.xml │ │ │ ├── 40x46mmGrenadesUNSC.xml │ │ │ ├── 5x23mmCaseless.xml │ │ │ ├── 7.62x51mmUNSC.xml │ │ │ ├── 8 Gauge.xml │ │ │ ├── 9.5x40mm.xml │ │ │ ├── Ammo_SpartanLaser.xml │ │ │ └── Ammo_UNSC_Misc.xml │ │ └── Warhammer 40k │ │ │ ├── Autoguns.xml │ │ │ ├── Bolter.xml │ │ │ ├── Bolter_Small.xml │ │ │ ├── HeavyBolter.xml │ │ │ ├── LasGun.xml │ │ │ ├── MeltaGun.xml │ │ │ └── PlasmaCannon.xml │ ├── Neolithic │ │ ├── Arrows.xml │ │ ├── BlowDarts.xml │ │ ├── GreatArrows.xml │ │ ├── Javelins.xml │ │ └── SlingBullet.xml │ ├── Other │ │ ├── Ammo_Nail.xml │ │ ├── Flamethrower.xml │ │ └── Flare.xml │ ├── Pistols │ │ ├── 10mmAuto.xml │ │ ├── 13mmGyrojet.xml │ │ ├── 22LR.xml │ │ ├── 22Short.xml │ │ ├── 25ACP.xml │ │ ├── 32ACP.xml │ │ ├── 357Magnum.xml │ │ ├── 357SIG.xml │ │ ├── 380ACP.xml │ │ ├── 38ACP.xml │ │ ├── 38SW.xml │ │ ├── 38Special.xml │ │ ├── 38Super.xml │ │ ├── 40SW.xml │ │ ├── 41Rimfire.xml │ │ ├── 44Magnum.xml │ │ ├── 44SWSpecial.xml │ │ ├── 454Casull.xml │ │ ├── 455Webley.xml │ │ ├── 45ACP.xml │ │ ├── 45Colt.xml │ │ ├── 45Schofield.xml │ │ ├── 460SWMagnum.xml │ │ ├── 46x30mm.xml │ │ ├── 500SWMagnum.xml │ │ ├── 50AE.xml │ │ ├── 58x21mmDAP92.xml │ │ ├── 7.5FK.xml │ │ ├── 762x25mmTokarev.xml │ │ ├── 762x38mmR.xml │ │ ├── 763x25mmMauser.xml │ │ ├── 765x20mmLongue.xml │ │ ├── 8x22mmNambu.xml │ │ ├── 9x18mmMakarov.xml │ │ ├── 9x19mmPara.xml │ │ ├── 9x21mmGyurza.xml │ │ └── FN57x28mm.xml │ ├── Projectiles_Fragments.xml │ ├── Recipes_HandGrenades.xml │ ├── Rifle │ │ ├── 127x55mm.xml │ │ ├── 17HMR.xml │ │ ├── 22Hornet.xml │ │ ├── 22WMR.xml │ │ ├── 243Winchester.xml │ │ ├── 277Fury.xml │ │ ├── 280British.xml │ │ ├── 30-30Winchester.xml │ │ ├── 3006Springfield.xml │ │ ├── 300AACBlackout.xml │ │ ├── 303British.xml │ │ ├── 30Carbine.xml │ │ ├── 38-55Winchester.xml │ │ ├── 44-40Winchester.xml │ │ ├── 4570Gov.xml │ │ ├── 458SOCOM.xml │ │ ├── 473x33mmCaseless.xml │ │ ├── 485x49mm.xml │ │ ├── 50Beowulf.xml │ │ ├── 545x39mmSoviet.xml │ │ ├── 556x45mmNATO.xml │ │ ├── 56-56Spencer.xml │ │ ├── 58x42mmDBP10.xml │ │ ├── 6.5Creedmoor.xml │ │ ├── 6.5x52mm Carcano.xml │ │ ├── 65x50mmSRArisaka.xml │ │ ├── 7.92x57mmMauser.xml │ │ ├── 75x54mmFrench.xml │ │ ├── 762x39mmSoviet.xml │ │ ├── 762x51mmNATO.xml │ │ ├── 762x54mmR.xml │ │ ├── 77x58mmArisaka.xml │ │ ├── 792x33mmKurz.xml │ │ ├── 8.6mmBlackout.xml │ │ ├── 8x50mmRLebel.xml │ │ ├── 8x50mmRMannlicher.xml │ │ └── 9x39mmSoviet.xml │ ├── Rocket │ │ ├── 127mmJavelinMissile.xml │ │ ├── 130mmType63.xml │ │ ├── 132mmM13.xml │ │ ├── 150mmMBTLAWMissile.xml │ │ ├── 20mmFliegerfaust.xml │ │ ├── 50mmRocket.xml │ │ ├── 57mmS5Rocket.xml │ │ ├── 70mmAPKWS.xml │ │ ├── 80mmS8Rocket.xml │ │ ├── 83mmSMAW.xml │ │ ├── 84mmAT4.xml │ │ ├── 84x246mmR.xml │ │ ├── 88mmRPzB.xml │ │ ├── 90mmMATADOR.xml │ │ ├── 90mmRecoilless.xml │ │ ├── M6.xml │ │ ├── M6A1.xml │ │ ├── M6A3.xml │ │ ├── M72LAW.xml │ │ ├── M74.xml │ │ ├── RPG28.xml │ │ ├── RPG32.xml │ │ ├── RPG7.xml │ │ ├── RPO.xml │ │ ├── SPG9.xml │ │ └── TomahawkLAM.xml │ ├── Shell │ │ ├── 100x695mmR.xml │ │ ├── 105mmHowitzer.xml │ │ ├── 105x607mmR.xml │ │ ├── 105x617mmR.xml │ │ ├── 120mmCannon.xml │ │ ├── 120mmMortar.xml │ │ ├── 152mmHowitzer.xml │ │ ├── 155mmHowitzer.xml │ │ ├── 15cmNebelwerfer.xml │ │ ├── 28cmSpgr.xml │ │ ├── 37x223mmR.xml │ │ ├── 40x365mmBofors.xml │ │ ├── 50mmType89Mortar.xml │ │ ├── 57x307mmR.xml │ │ ├── 57x348mmSR.xml │ │ ├── 57x438mmBofors.xml │ │ ├── 60mmMortar.xml │ │ ├── 75x350mmR.xml │ │ ├── 762x385mmRCannon.xml │ │ ├── 762x539mmR.xml │ │ ├── 81mmMortar.xml │ │ └── 90mmCannon.xml │ ├── Shotgun │ │ ├── 10Gauge.xml │ │ ├── 12Gauge.xml │ │ ├── 16Gauge.xml │ │ ├── 20Gauge.xml │ │ ├── 23x75mmR.xml │ │ └── 410Bore.xml │ └── ThingCategories.xml ├── ApparelAutoPatcherPresets │ ├── ApparelModBlacklist.xml │ ├── Helmets.xml │ ├── TorsoSets.xml │ └── Vests.xml ├── ApparelLayerDefs │ └── ApparelLayerDefs.xml ├── BipodCategoryDefs │ └── BipodCategories.xml ├── Bodies │ ├── BodyPartGroups.xml │ ├── BodyShapes.xml │ └── Body_Animal_ArmoredInsect.xml ├── DamageDefs │ └── Damages_LocalInjury.xml ├── Drugs │ └── Psychite_Psycho.xml ├── Effects │ ├── Flecks.xml │ ├── Motes.xml │ ├── ProjectileFX_Flecks.xml │ └── ProjectileFX_Flecks_Landed.xml ├── GameSetupSteps │ └── ExplosiveCurveSetup.xml ├── GunPatcherDefs │ ├── AssaultRifle.xml │ ├── MachineGun.xml │ ├── Pistol.xml │ ├── Revolver.xml │ ├── SMG.xml │ └── SniperRifle.xml ├── HediffDefs │ └── Hediffs_CE.xml ├── JobDefs │ ├── Jobs_CE.xml │ ├── MechTakeAmmo.xml │ └── Set_Up_Bipod.xml ├── LetterDefs │ └── Letters.xml ├── Maneuvers │ └── Maneuvers.xml ├── MapGeneration │ └── GenSteps.xml ├── MentalStateDefs │ └── MentalStates.xml ├── Misc │ ├── BodyPartTagDefs │ │ └── BodyPartTagDefs.xml │ ├── DamageArmorCategoryDefs │ │ └── DamageArmorCategoryDefs.xml │ ├── DesignatorDropdownGroupDef │ │ └── DesignatorDropdownGroupDef.xml │ ├── PawnColumnDefs │ │ └── PawnColumns_CE.xml │ ├── ShellingResponseDefs │ │ ├── Advanced.xml │ │ └── Primitive.xml │ └── TipSetDefs │ │ └── Tips.xml ├── PawnKindDefs │ └── PawnKinds_CE.xml ├── RecipeDefs │ └── Recipes_Production.xml ├── ResearchProjectDefs │ ├── ResearchProjects.xml │ └── ResearchProjects_Turrets.xml ├── RulePackDefs │ ├── RulePacks_DamageEvent.xml │ └── RulePacks_Swearing.xml ├── SoundDefs │ ├── AmmoSounds.xml │ ├── AutoLoader_Sustainer.xml │ ├── BipodSounds.xml │ ├── CasingSounds.xml │ ├── Shot_Weapons.xml │ └── World_Sustainers_RPG.xml ├── Stats │ ├── Stats_Apparel.xml │ ├── Stats_Basics_Inventory.xml │ ├── Stats_NightVision.xml │ ├── Stats_Pawns_Combat.xml │ ├── Stats_Pawns_General.xml │ ├── Stats_Pawns_Inventory.xml │ ├── Stats_Stuff.xml │ ├── Stats_Weapons_Melee.xml │ └── Stats_Weapons_Ranged.xml ├── StuffCategoryDefs │ └── StuffCategories.xml ├── ThingCategoryDefs │ └── ThingCategories.xml ├── ThingDefs_Buildings │ ├── AutoLoaderExample.xml │ ├── Buildings_Defenses.xml │ ├── Buildings_Production.xml │ ├── Buildings_Turrets.xml │ └── CIWSExample.xml ├── ThingDefs_Items │ ├── Items_Resource_Ammo.xml │ ├── Items_Turrets.xml │ └── Items_Unfinished.xml ├── ThingDefs_Misc │ ├── Abstracts_Lasers.xml │ ├── Apparel_Carrying.xml │ ├── Apparel_Headgear.xml │ ├── Apparel_Shield.xml │ ├── Apparel_Various.xml │ ├── Ethereal_Various.xml │ ├── Filth_Casings.xml │ ├── Filth_Various.xml │ ├── Gas_Various.xml │ ├── Laser_Effecter.xml │ ├── Things_Special.xml │ ├── Weapons_Grenades.xml │ ├── Weapons_Ranged.xml │ ├── Weapons_RangedNeolithic.xml │ ├── Weapons_Spotting.xml │ └── Weapons_Turrets.xml ├── ThingDefs_Plants │ └── Plants_Cultivated_Farm.xml ├── ThingDefs_Races │ ├── Races_Animal_Base.xml │ └── Tytan.xml ├── ThoughtDefs │ └── Thoughts_CR.xml ├── ToolCapacityDefs │ └── CE_ToolCapacity.xml ├── TraitDefs │ └── Traits_Spectrum.xml ├── Tutor │ ├── Concepts_NotedOpportunistic.xml │ ├── Concepts_NotedSelfshow.xml │ └── Concepts_TriggeredModal.xml ├── WorkGiverDefs │ └── WorkGivers.xml └── WorldObjectDefs │ └── WorldObjects.xml ├── DupeFinder.py ├── Ideology └── Patches │ ├── AbilityDefs │ └── Abilities_Ideology.xml │ ├── Misc │ ├── Hediffs_Casts.xml │ └── Precepts_Role.xml │ ├── PawnKindDefs_Ideology │ └── IdeologyPawnKinds.xml │ ├── ThingDefs_Buildings │ └── Buildings_Ancient_Outdoors.xml │ └── ThingDefs_Misc │ ├── Apparel_Ideology.xml │ ├── Apparel_IdeologyHeadgear.xml │ └── Race_Animal_Dryads.xml ├── Languages ├── ChineseSimplified │ ├── DefInjected │ │ ├── ApparelLayerDef │ │ │ └── ApparelLayerDefs.xml │ │ ├── BodyDef │ │ │ └── Body_Animal_ArmoredInsect.xml │ │ ├── BodyPartGroupDef │ │ │ └── BodyPartGroups.xml │ │ ├── CombatExtended.AmmoCategoryDef │ │ │ ├── AmmoCategories_Advanced.xml │ │ │ ├── AmmoCategories_General.xml │ │ │ ├── AmmoCategories_Grenades.xml │ │ │ ├── AmmoCategories_Medieval.xml │ │ │ ├── AmmoCategories_Missiles.xml │ │ │ ├── AmmoCategories_Neolithic.xml │ │ │ ├── AmmoCategories_Rockets.xml │ │ │ ├── AmmoCategories_Shotgun.xml │ │ │ └── Catapult.xml │ │ ├── CombatExtended.AmmoSetDef │ │ │ ├── 100x695mmR.xml │ │ │ ├── 105mmHowitzer.xml │ │ │ ├── 105x607mmR.xml │ │ │ ├── 105x617mmR.xml │ │ │ ├── 10Gauge.xml │ │ │ ├── 10mmAuto.xml │ │ │ ├── 10x18mmCharged.xml │ │ │ ├── 12.7x108mmSoviet.xml │ │ │ ├── 120mmCannon.xml │ │ │ ├── 127x55mm.xml │ │ │ ├── 12Gauge.xml │ │ │ ├── 12GaugeCharged.xml │ │ │ ├── 12mmRailgun.xml │ │ │ ├── 12x64mmCharged.xml │ │ │ ├── 12x72mmCharged.xml │ │ │ ├── 13.2x92mmSRTuF.xml │ │ │ ├── 130mmType63.xml │ │ │ ├── 132mmM13.xml │ │ │ ├── 13mmGyrojet.xml │ │ │ ├── 14.5x114mmSoviet.xml │ │ │ ├── 15.2x169mm.xml │ │ │ ├── 155mmHowitzer.xml │ │ │ ├── 15cmNebelwerfer.xml │ │ │ ├── 15x65mmDiffusingCharged.xml │ │ │ ├── 164x284mmDemoShell.xml │ │ │ ├── 16Gauge.xml │ │ │ ├── 17HMR.xml │ │ │ ├── 2-Bore.xml │ │ │ ├── 20Gauge.xml │ │ │ ├── 20mmFliegerfaust.xml │ │ │ ├── 20x102mmNATO.xml │ │ │ ├── 20x105mmCharged.xml │ │ │ ├── 20x110mmHispano.xml │ │ │ ├── 20x128mmOerlikon.xml │ │ │ ├── 20x138mmB.xml │ │ │ ├── 20x139mm.xml │ │ │ ├── 20x42mmGrenade.xml │ │ │ ├── 20x82mmMauser.xml │ │ │ ├── 20x99mmShVAK.xml │ │ │ ├── 22Hornet.xml │ │ │ ├── 22LR.xml │ │ │ ├── 22Short.xml │ │ │ ├── 22WMR.xml │ │ │ ├── 23x152mmB.xml │ │ │ ├── 23x75mmR.xml │ │ │ ├── 243Winchester.xml │ │ │ ├── 25ACP.xml │ │ │ ├── 25x137mmNATO.xml │ │ │ ├── 25x40mmGrenade.xml │ │ │ ├── 25x59mmGrenade.xml │ │ │ ├── 277Fury.xml │ │ │ ├── 280British.xml │ │ │ ├── 28cmSpgr.xml │ │ │ ├── 30-30Winchester.xml │ │ │ ├── 3006Springfield.xml │ │ │ ├── 300AACBlackout.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 303British.xml │ │ │ ├── 30Carbine.xml │ │ │ ├── 30x113mmB.xml │ │ │ ├── 30x165mm.xml │ │ │ ├── 30x173mmNATO.xml │ │ │ ├── 30x29mmGrenade.xml │ │ │ ├── 30x64mmFuelCell.xml │ │ │ ├── 32ACP.xml │ │ │ ├── 338LapuaMagnum.xml │ │ │ ├── 338NormaMagnum.xml │ │ │ ├── 357Magnum.xml │ │ │ ├── 357SIG.xml │ │ │ ├── 35x32mmSRGrenade.xml │ │ │ ├── 37x223mmR.xml │ │ │ ├── 38-55Winchester.xml │ │ │ ├── 380ACP.xml │ │ │ ├── 38ACP.xml │ │ │ ├── 38SW.xml │ │ │ ├── 38Special.xml │ │ │ ├── 38Super.xml │ │ │ ├── 408CheyenneTactical.xml │ │ │ ├── 40SW.xml │ │ │ ├── 40x311mmR.xml │ │ │ ├── 40x365mmBofors.xml │ │ │ ├── 40x46mmGrenade.xml │ │ │ ├── 40x47mmGrenade.xml │ │ │ ├── 40x53mmGrenade.xml │ │ │ ├── 40x53mmVOG25Grenade.xml │ │ │ ├── 410Bore.xml │ │ │ ├── 41Rimfire.xml │ │ │ ├── 44-40Winchester.xml │ │ │ ├── 44Magnum.xml │ │ │ ├── 44SWSpecial.xml │ │ │ ├── 454Casull.xml │ │ │ ├── 455Webley.xml │ │ │ ├── 4570Gov.xml │ │ │ ├── 458SOCOM.xml │ │ │ ├── 45ACP.xml │ │ │ ├── 45Colt.xml │ │ │ ├── 45Schofield.xml │ │ │ ├── 460SWMagnum.xml │ │ │ ├── 46x30mm.xml │ │ │ ├── 470NitroExpress.xml │ │ │ ├── 473x33mmCaseless.xml │ │ │ ├── 485x49mm.xml │ │ │ ├── 500SWMagnum.xml │ │ │ ├── 50AE.xml │ │ │ ├── 50BMG.xml │ │ │ ├── 50Beowulf.xml │ │ │ ├── 50mmGS50Grenade.xml │ │ │ ├── 50mmRocket.xml │ │ │ ├── 50mmType89Mortar.xml │ │ │ ├── 545x39mmSoviet.xml │ │ │ ├── 556x45mmNATO.xml │ │ │ ├── 55Boys.xml │ │ │ ├── 56-56Spencer.xml │ │ │ ├── 57mmS5Rocket.xml │ │ │ ├── 57x307mmR.xml │ │ │ ├── 57x438mmBofors.xml │ │ │ ├── 58x21mmDAP92.xml │ │ │ ├── 58x42mmDBP10.xml │ │ │ ├── 5x16mmCharged.xml │ │ │ ├── 5x35mmCharged.xml │ │ │ ├── 5x50mmCaseless.xml │ │ │ ├── 6.5Creedmoor.xml │ │ │ ├── 6.5x52mm Carcano.xml │ │ │ ├── 600NitroExpress.xml │ │ │ ├── 60mmMortar.xml │ │ │ ├── 60x225mmGammaShell.xml │ │ │ ├── 65x50mmSRArisaka.xml │ │ │ ├── 66mmThermalBolt.xml │ │ │ ├── 6mmRailgun.xml │ │ │ ├── 6x18mmCharged.xml │ │ │ ├── 6x22mmCharged.xml │ │ │ ├── 6x24mmCharged.xml │ │ │ ├── 7.5FK.xml │ │ │ ├── 7.92x57mmMauser.xml │ │ │ ├── 7.92x94mm Patronen.xml │ │ │ ├── 70mmAPKWS.xml │ │ │ ├── 70mmMechanoidGrenade.xml │ │ │ ├── 75x350mmR.xml │ │ │ ├── 75x54mmFrench.xml │ │ │ ├── 762x25mmTokarev.xml │ │ │ ├── 762x385mmRCannon.xml │ │ │ ├── 762x38mmR.xml │ │ │ ├── 762x39mmSoviet.xml │ │ │ ├── 762x51mmNATO.xml │ │ │ ├── 762x539mmR.xml │ │ │ ├── 762x54mmR.xml │ │ │ ├── 763x25mmMauser.xml │ │ │ ├── 765x20mmLongue.xml │ │ │ ├── 77x58mmArisaka.xml │ │ │ ├── 792x33mmKurz.xml │ │ │ ├── 8.6mmBlackout.xml │ │ │ ├── 80x256mmFuelCell.xml │ │ │ ├── 81mmMortar.xml │ │ │ ├── 83mmPIATGrenade.xml │ │ │ ├── 83mmSMAW.xml │ │ │ ├── 84x246mmR.xml │ │ │ ├── 88mmRPzB.xml │ │ │ ├── 8mmRailgun.xml │ │ │ ├── 8x22mmNambu.xml │ │ │ ├── 8x35mmCharged.xml │ │ │ ├── 8x40mmCharged.xml │ │ │ ├── 8x50mmCharged.xml │ │ │ ├── 8x50mmRLebel.xml │ │ │ ├── 8x50mmRMannlicher.xml │ │ │ ├── 90mmCannon.xml │ │ │ ├── 90mmRecoilless.xml │ │ │ ├── 950JDJ.xml │ │ │ ├── 9x18mmMakarov.xml │ │ │ ├── 9x19mmPara.xml │ │ │ ├── 9x21mmGyurza.xml │ │ │ ├── 9x39mmSoviet.xml │ │ │ ├── Ammo_Nail.xml │ │ │ ├── AntiMateriel.xml │ │ │ ├── Arrows.xml │ │ │ ├── Autocannon.xml │ │ │ ├── Autoguns.xml │ │ │ ├── BlowDarts.xml │ │ │ ├── BlunderbussShot.xml │ │ │ ├── Bolter.xml │ │ │ ├── Bolter_Small.xml │ │ │ ├── CannonBall.xml │ │ │ ├── Catapult.xml │ │ │ ├── Charged.xml │ │ │ ├── CrossbowBolts.xml │ │ │ ├── FN57x28mm.xml │ │ │ ├── Flamethrower.xml │ │ │ ├── Flamethrower_Burst.xml │ │ │ ├── Flare.xml │ │ │ ├── Generics_Misc.xml │ │ │ ├── GreatArrows.xml │ │ │ ├── HeavyBolter.xml │ │ │ ├── Javelins.xml │ │ │ ├── LasGun.xml │ │ │ ├── LauncherGrenade.xml │ │ │ ├── M6.xml │ │ │ ├── M74.xml │ │ │ ├── Mech.xml │ │ │ ├── MeltaGun.xml │ │ │ ├── MiniCannonBall.xml │ │ │ ├── MortarGrenade.xml │ │ │ ├── MusketBall.xml │ │ │ ├── NerveSpikerBolt.xml │ │ │ ├── Pistol.xml │ │ │ ├── PistolMagnum.xml │ │ │ ├── PlasmaCannon.xml │ │ │ ├── PlasmaCellHeavy.xml │ │ │ ├── PlasmaCellPistol.xml │ │ │ ├── PlasmaCellRifle.xml │ │ │ ├── RPG32.xml │ │ │ ├── RPG7.xml │ │ │ ├── Rifle.xml │ │ │ ├── RifleIntermediate.xml │ │ │ ├── RifleMagnum.xml │ │ │ ├── SPG9.xml │ │ │ ├── Shell_Cannon.xml │ │ │ ├── Shell_Mortar.xml │ │ │ ├── ShotgunShell.xml │ │ │ ├── SlingBullet.xml │ │ │ └── TomahawkLAM.xml │ │ ├── CombatExtended.ApparelPatcherPresetDef │ │ │ ├── Helmets.xml │ │ │ ├── TorsoSets.xml │ │ │ └── Vests.xml │ │ ├── CombatExtended.BipodCategoryDef │ │ │ ├── BipodCategories.xml │ │ │ └── BodyPartGroups.xml │ │ ├── CombatExtended.GunPatcherPresetDef │ │ │ └── MachineGun.xml │ │ ├── ConceptDef │ │ │ ├── Concepts_NotedOpportunistic.xml │ │ │ ├── Concepts_NotedSelfshow.xml │ │ │ └── Concepts_TriggeredModal.xml │ │ ├── DamageDef │ │ │ ├── DamageDefs_Anomaly.xml │ │ │ └── Damages_LocalInjury.xml │ │ ├── DesignatorDropdownGroupDef │ │ │ └── DesignatorDropdownGroupDef.xml │ │ ├── HediffDef │ │ │ ├── Hediffs_Anomaly.xml │ │ │ ├── Hediffs_CE.xml │ │ │ └── Psychite_Psycho.xml │ │ ├── JobDef │ │ │ ├── Jobs_CE.xml │ │ │ ├── MechTakeAmmo.xml │ │ │ └── Set_Up_Bipod.xml │ │ ├── MentalStateDef │ │ │ └── MentalStates.xml │ │ ├── PawnColumnDef │ │ │ └── PawnColumns_CE.xml │ │ ├── PawnKindDef │ │ │ └── PawnKinds_CE.xml │ │ ├── RecipeDef │ │ │ ├── 100x695mmR.xml │ │ │ ├── 105mmHowitzer.xml │ │ │ ├── 105x607mmR.xml │ │ │ ├── 105x617mmR.xml │ │ │ ├── 10Gauge.xml │ │ │ ├── 10mmAuto.xml │ │ │ ├── 10x18mmCharged.xml │ │ │ ├── 12.7x108mmSoviet.xml │ │ │ ├── 120mmCannon.xml │ │ │ ├── 127x55mm.xml │ │ │ ├── 12Gauge.xml │ │ │ ├── 12GaugeCharged.xml │ │ │ ├── 12mmRailgun.xml │ │ │ ├── 12x64mmCharged.xml │ │ │ ├── 12x72mmCharged.xml │ │ │ ├── 13.2x92mmSRTuF.xml │ │ │ ├── 130mmType63.xml │ │ │ ├── 132mmM13.xml │ │ │ ├── 13mmGyrojet.xml │ │ │ ├── 14.5x114mmSoviet.xml │ │ │ ├── 15.2x169mm.xml │ │ │ ├── 155mmHowitzer.xml │ │ │ ├── 15cmNebelwerfer.xml │ │ │ ├── 15x65mmDiffusingCharged.xml │ │ │ ├── 164x284mmDemoShell.xml │ │ │ ├── 16Gauge.xml │ │ │ ├── 17HMR.xml │ │ │ ├── 2-Bore.xml │ │ │ ├── 20Gauge.xml │ │ │ ├── 20mmFliegerfaust.xml │ │ │ ├── 20x102mmNATO.xml │ │ │ ├── 20x105mmCharged.xml │ │ │ ├── 20x110mmHispano.xml │ │ │ ├── 20x128mmOerlikon.xml │ │ │ ├── 20x138mmB.xml │ │ │ ├── 20x139mm.xml │ │ │ ├── 20x42mmGrenade.xml │ │ │ ├── 20x82mmMauser.xml │ │ │ ├── 20x99mmShVAK.xml │ │ │ ├── 22Hornet.xml │ │ │ ├── 22LR.xml │ │ │ ├── 22Short.xml │ │ │ ├── 22WMR.xml │ │ │ ├── 23x152mmB.xml │ │ │ ├── 23x75mmR.xml │ │ │ ├── 243Winchester.xml │ │ │ ├── 25ACP.xml │ │ │ ├── 25x137mmNATO.xml │ │ │ ├── 25x40mmGrenade.xml │ │ │ ├── 25x59mmGrenade.xml │ │ │ ├── 277Fury.xml │ │ │ ├── 280British.xml │ │ │ ├── 28cmSpgr.xml │ │ │ ├── 30-30Winchester.xml │ │ │ ├── 3006Springfield.xml │ │ │ ├── 300AACBlackout.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 303British.xml │ │ │ ├── 30Carbine.xml │ │ │ ├── 30x113mmB.xml │ │ │ ├── 30x165mm.xml │ │ │ ├── 30x173mmNATO.xml │ │ │ ├── 30x29mmGrenade.xml │ │ │ ├── 30x64mmFuelCell.xml │ │ │ ├── 32ACP.xml │ │ │ ├── 338LapuaMagnum.xml │ │ │ ├── 338NormaMagnum.xml │ │ │ ├── 357Magnum.xml │ │ │ ├── 357SIG.xml │ │ │ ├── 35x32mmSRGrenade.xml │ │ │ ├── 37x223mmR.xml │ │ │ ├── 38-55Winchester.xml │ │ │ ├── 380ACP.xml │ │ │ ├── 38ACP.xml │ │ │ ├── 38SW.xml │ │ │ ├── 38Special.xml │ │ │ ├── 38Super.xml │ │ │ ├── 408CheyenneTactical.xml │ │ │ ├── 40SW.xml │ │ │ ├── 40x311mmR.xml │ │ │ ├── 40x365mmBofors.xml │ │ │ ├── 40x46mmGrenade.xml │ │ │ ├── 40x47mmGrenade.xml │ │ │ ├── 40x53mmGrenade.xml │ │ │ ├── 40x53mmVOG25Grenade.xml │ │ │ ├── 410Bore.xml │ │ │ ├── 41Rimfire.xml │ │ │ ├── 44-40Winchester.xml │ │ │ ├── 44Magnum.xml │ │ │ ├── 44SWSpecial.xml │ │ │ ├── 454Casull.xml │ │ │ ├── 455Webley.xml │ │ │ ├── 4570Gov.xml │ │ │ ├── 458SOCOM.xml │ │ │ ├── 45ACP.xml │ │ │ ├── 45Colt.xml │ │ │ ├── 45Schofield.xml │ │ │ ├── 460SWMagnum.xml │ │ │ ├── 46x30mm.xml │ │ │ ├── 470NitroExpress.xml │ │ │ ├── 473x33mmCaseless.xml │ │ │ ├── 485x49mm.xml │ │ │ ├── 500SWMagnum.xml │ │ │ ├── 50AE.xml │ │ │ ├── 50BMG.xml │ │ │ ├── 50Beowulf.xml │ │ │ ├── 50mmGS50Grenade.xml │ │ │ ├── 50mmRocket.xml │ │ │ ├── 50mmType89Mortar.xml │ │ │ ├── 545x39mmSoviet.xml │ │ │ ├── 556x45mmNATO.xml │ │ │ ├── 55Boys.xml │ │ │ ├── 56-56Spencer.xml │ │ │ ├── 57mmS5Rocket.xml │ │ │ ├── 57x307mmR.xml │ │ │ ├── 57x438mmBofors.xml │ │ │ ├── 58x21mmDAP92.xml │ │ │ ├── 58x42mmDBP10.xml │ │ │ ├── 5x16mmCharged.xml │ │ │ ├── 5x35mmCharged.xml │ │ │ ├── 5x50mmCaseless.xml │ │ │ ├── 6.5Creedmoor.xml │ │ │ ├── 6.5x52mm Carcano.xml │ │ │ ├── 600NitroExpress.xml │ │ │ ├── 60mmMortar.xml │ │ │ ├── 65x50mmSRArisaka.xml │ │ │ ├── 66mmThermalBolt.xml │ │ │ ├── 6mmRailgun.xml │ │ │ ├── 6x18mmCharged.xml │ │ │ ├── 6x22mmCharged.xml │ │ │ ├── 6x24mmCharged.xml │ │ │ ├── 7.5FK.xml │ │ │ ├── 7.92x57mmMauser.xml │ │ │ ├── 7.92x94mm Patronen.xml │ │ │ ├── 70mmAPKWS.xml │ │ │ ├── 70mmMechanoidGrenade.xml │ │ │ ├── 75x350mmR.xml │ │ │ ├── 75x54mmFrench.xml │ │ │ ├── 762x25mmTokarev.xml │ │ │ ├── 762x385mmRCannon.xml │ │ │ ├── 762x38mmR.xml │ │ │ ├── 762x39mmSoviet.xml │ │ │ ├── 762x51mmNATO.xml │ │ │ ├── 762x539mmR.xml │ │ │ ├── 762x54mmR.xml │ │ │ ├── 763x25mmMauser.xml │ │ │ ├── 765x20mmLongue.xml │ │ │ ├── 77x58mmArisaka.xml │ │ │ ├── 792x33mmKurz.xml │ │ │ ├── 8.6mmBlackout.xml │ │ │ ├── 80x256mmFuelCell.xml │ │ │ ├── 81mmMortar.xml │ │ │ ├── 83mmPIATGrenade.xml │ │ │ ├── 83mmSMAW.xml │ │ │ ├── 84x246mmR.xml │ │ │ ├── 88mmRPzB.xml │ │ │ ├── 8mmRailgun.xml │ │ │ ├── 8x22mmNambu.xml │ │ │ ├── 8x35mmCharged.xml │ │ │ ├── 8x40mmCharged.xml │ │ │ ├── 8x50mmCharged.xml │ │ │ ├── 8x50mmRLebel.xml │ │ │ ├── 8x50mmRMannlicher.xml │ │ │ ├── 90mmCannon.xml │ │ │ ├── 90mmRecoilless.xml │ │ │ ├── 950JDJ.xml │ │ │ ├── 9x18mmMakarov.xml │ │ │ ├── 9x19mmPara.xml │ │ │ ├── 9x21mmGyurza.xml │ │ │ ├── 9x39mmSoviet.xml │ │ │ ├── Ammo_Nail.xml │ │ │ ├── AntiMateriel.xml │ │ │ ├── Arrows.xml │ │ │ ├── Autocannon.xml │ │ │ ├── Autoguns.xml │ │ │ ├── BlowDarts.xml │ │ │ ├── BlunderbussShot.xml │ │ │ ├── Bolter.xml │ │ │ ├── Bolter_Small.xml │ │ │ ├── CannonBall.xml │ │ │ ├── Catapult.xml │ │ │ ├── Charged.xml │ │ │ ├── CrossbowBolts.xml │ │ │ ├── FN57x28mm.xml │ │ │ ├── Flamethrower.xml │ │ │ ├── Flare.xml │ │ │ ├── GreatArrows.xml │ │ │ ├── HeavyBolter.xml │ │ │ ├── ImpliedDefs.xml │ │ │ ├── Javelins.xml │ │ │ ├── LasGun.xml │ │ │ ├── LaserChargePack.xml │ │ │ ├── LauncherGrenade.xml │ │ │ ├── M6.xml │ │ │ ├── M6A1.xml │ │ │ ├── M6A3.xml │ │ │ ├── M74.xml │ │ │ ├── Mech.xml │ │ │ ├── MeltaGun.xml │ │ │ ├── MiniCannonBall.xml │ │ │ ├── MortarGrenade.xml │ │ │ ├── MusketBall.xml │ │ │ ├── NerveSpikerBolt.xml │ │ │ ├── Pistol.xml │ │ │ ├── PistolMagnum.xml │ │ │ ├── PlasmaCannon.xml │ │ │ ├── PlasmaCellHeavy.xml │ │ │ ├── PlasmaCellPistol.xml │ │ │ ├── PlasmaCellRifle.xml │ │ │ ├── RPG32.xml │ │ │ ├── RPG7.xml │ │ │ ├── Recipes_HandGrenades.xml │ │ │ ├── Recipes_Production.xml │ │ │ ├── Rifle.xml │ │ │ ├── RifleIntermediate.xml │ │ │ ├── RifleMagnum.xml │ │ │ ├── SPG9.xml │ │ │ ├── Shell_Cannon.xml │ │ │ ├── Shell_Mortar.xml │ │ │ ├── ShotgunShell.xml │ │ │ ├── SlingBullet.xml │ │ │ ├── TomahawkLAM.xml │ │ │ └── Weapons_Ranged.xml │ │ ├── ResearchProjectDef │ │ │ ├── ResearchProjects.xml │ │ │ └── ResearchProjects_Turrets.xml │ │ ├── RulePackDef │ │ │ ├── RulePacks_DamageEvent.xml │ │ │ └── RulePacks_Swearing.xml │ │ ├── StatDef │ │ │ ├── Stats_Apparel.xml │ │ │ ├── Stats_Basics_Inventory.xml │ │ │ ├── Stats_CE_Core.xml │ │ │ ├── Stats_NightVision.xml │ │ │ ├── Stats_Pawns_Combat.xml │ │ │ ├── Stats_Pawns_General.xml │ │ │ ├── Stats_Pawns_Inventory.xml │ │ │ ├── Stats_Stuff.xml │ │ │ ├── Stats_Weapons_Melee.xml │ │ │ └── Stats_Weapons_Ranged.xml │ │ ├── StuffCategoryDef │ │ │ └── StuffCategories.xml │ │ ├── ThingCategoryDef │ │ │ ├── 100x695mmR.xml │ │ │ ├── 105mmHowitzer.xml │ │ │ ├── 105x607mmR.xml │ │ │ ├── 105x617mmR.xml │ │ │ ├── 10Gauge.xml │ │ │ ├── 10mmAuto.xml │ │ │ ├── 10x18mmCharged.xml │ │ │ ├── 12.7x108mmSoviet.xml │ │ │ ├── 120mmCannon.xml │ │ │ ├── 127x55mm.xml │ │ │ ├── 12Gauge.xml │ │ │ ├── 12GaugeCharged.xml │ │ │ ├── 12mmRailgun.xml │ │ │ ├── 12x64mmCharged.xml │ │ │ ├── 12x72mmCharged.xml │ │ │ ├── 13.2x92mmSRTuF.xml │ │ │ ├── 130mmType63.xml │ │ │ ├── 132mmM13.xml │ │ │ ├── 13mmGyrojet.xml │ │ │ ├── 14.5x114mmSoviet.xml │ │ │ ├── 15.2x169mm.xml │ │ │ ├── 155mmHowitzer.xml │ │ │ ├── 15cmNebelwerfer.xml │ │ │ ├── 15x65mmDiffusingCharged.xml │ │ │ ├── 164x284mmDemoShell.xml │ │ │ ├── 16Gauge.xml │ │ │ ├── 17HMR.xml │ │ │ ├── 2-Bore.xml │ │ │ ├── 20Gauge.xml │ │ │ ├── 20mmFliegerfaust.xml │ │ │ ├── 20x102mmNATO.xml │ │ │ ├── 20x105mmCharged.xml │ │ │ ├── 20x110mmHispano.xml │ │ │ ├── 20x128mmOerlikon.xml │ │ │ ├── 20x138mmB.xml │ │ │ ├── 20x139mm.xml │ │ │ ├── 20x42mmGrenade.xml │ │ │ ├── 20x82mmMauser.xml │ │ │ ├── 20x99mmShVAK.xml │ │ │ ├── 22Hornet.xml │ │ │ ├── 22LR.xml │ │ │ ├── 22Short.xml │ │ │ ├── 22WMR.xml │ │ │ ├── 23x152mmB.xml │ │ │ ├── 23x75mmR.xml │ │ │ ├── 243Winchester.xml │ │ │ ├── 25ACP.xml │ │ │ ├── 25x137mmNATO.xml │ │ │ ├── 25x40mmGrenade.xml │ │ │ ├── 25x59mmGrenade.xml │ │ │ ├── 277Fury.xml │ │ │ ├── 280British.xml │ │ │ ├── 28cmSpgr.xml │ │ │ ├── 30-30Winchester.xml │ │ │ ├── 3006Springfield.xml │ │ │ ├── 300AACBlackout.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 303British.xml │ │ │ ├── 30Carbine.xml │ │ │ ├── 30x113mmB.xml │ │ │ ├── 30x165mm.xml │ │ │ ├── 30x173mmNATO.xml │ │ │ ├── 30x29mmGrenade.xml │ │ │ ├── 30x64mmFuelCell.xml │ │ │ ├── 32ACP.xml │ │ │ ├── 338LapuaMagnum.xml │ │ │ ├── 338NormaMagnum.xml │ │ │ ├── 357Magnum.xml │ │ │ ├── 357SIG.xml │ │ │ ├── 35x32mmSRGrenade.xml │ │ │ ├── 37x223mmR.xml │ │ │ ├── 38-55Winchester.xml │ │ │ ├── 380ACP.xml │ │ │ ├── 38ACP.xml │ │ │ ├── 38SW.xml │ │ │ ├── 38Special.xml │ │ │ ├── 38Super.xml │ │ │ ├── 408CheyenneTactical.xml │ │ │ ├── 40SW.xml │ │ │ ├── 40x311mmR.xml │ │ │ ├── 40x365mmBofors.xml │ │ │ ├── 40x46mmGrenade.xml │ │ │ ├── 40x47mmGrenade.xml │ │ │ ├── 40x53mmGrenade.xml │ │ │ ├── 40x53mmVOG25Grenade.xml │ │ │ ├── 410Bore.xml │ │ │ ├── 41Rimfire.xml │ │ │ ├── 44-40Winchester.xml │ │ │ ├── 44Magnum.xml │ │ │ ├── 44SWSpecial.xml │ │ │ ├── 454Casull.xml │ │ │ ├── 455Webley.xml │ │ │ ├── 4570Gov.xml │ │ │ ├── 458SOCOM.xml │ │ │ ├── 45ACP.xml │ │ │ ├── 45Colt.xml │ │ │ ├── 45Schofield.xml │ │ │ ├── 460SWMagnum.xml │ │ │ ├── 46x30mm.xml │ │ │ ├── 470NitroExpress.xml │ │ │ ├── 473x33mmCaseless.xml │ │ │ ├── 485x49mm.xml │ │ │ ├── 500SWMagnum.xml │ │ │ ├── 50AE.xml │ │ │ ├── 50BMG.xml │ │ │ ├── 50Beowulf.xml │ │ │ ├── 50mmGS50Grenade.xml │ │ │ ├── 50mmRocket.xml │ │ │ ├── 50mmType89Mortar.xml │ │ │ ├── 545x39mmSoviet.xml │ │ │ ├── 556x45mmNATO.xml │ │ │ ├── 55Boys.xml │ │ │ ├── 56-56Spencer.xml │ │ │ ├── 57mmS5Rocket.xml │ │ │ ├── 57x307mmR.xml │ │ │ ├── 57x438mmBofors.xml │ │ │ ├── 57x483mmBofors.xml │ │ │ ├── 58x21mmDAP92.xml │ │ │ ├── 58x42mmDBP10.xml │ │ │ ├── 5x16mmCharged.xml │ │ │ ├── 5x35mmCharged.xml │ │ │ ├── 5x50mmCaseless.xml │ │ │ ├── 6.5Creedmoor.xml │ │ │ ├── 6.5x52mm Carcano.xml │ │ │ ├── 600NitroExpress.xml │ │ │ ├── 60mmMortar.xml │ │ │ ├── 60x225mmGammaShell.xml │ │ │ ├── 65x50mmSRArisaka.xml │ │ │ ├── 66mmThermalBolt.xml │ │ │ ├── 6mmRailgun.xml │ │ │ ├── 6x18mmCharged.xml │ │ │ ├── 6x22mmCharged.xml │ │ │ ├── 6x24mmCharged.xml │ │ │ ├── 7.5FK.xml │ │ │ ├── 7.92x57mmMauser.xml │ │ │ ├── 7.92x94mm Patronen.xml │ │ │ ├── 70mmAPKWS.xml │ │ │ ├── 70mmMechanoidGrenade.xml │ │ │ ├── 75x350mmR.xml │ │ │ ├── 75x54mmFrench.xml │ │ │ ├── 762x25mmTokarev.xml │ │ │ ├── 762x385mmRCannon.xml │ │ │ ├── 762x38mmR.xml │ │ │ ├── 762x39mmSoviet.xml │ │ │ ├── 762x51mmNATO.xml │ │ │ ├── 762x539mmR.xml │ │ │ ├── 762x54mmR.xml │ │ │ ├── 763x25mmMauser.xml │ │ │ ├── 765x20mmLongue.xml │ │ │ ├── 77x58mmArisaka.xml │ │ │ ├── 792x33mmKurz.xml │ │ │ ├── 8.6mmBlackout.xml │ │ │ ├── 80x256mmFuelCell.xml │ │ │ ├── 81mmMortar.xml │ │ │ ├── 83mmPIATGrenade.xml │ │ │ ├── 83mmSMAW.xml │ │ │ ├── 84x246mmR.xml │ │ │ ├── 88mmRPzB.xml │ │ │ ├── 8mmRailgun.xml │ │ │ ├── 8x22mmNambu.xml │ │ │ ├── 8x35mmCharged.xml │ │ │ ├── 8x40mmCharged.xml │ │ │ ├── 8x50mmCharged.xml │ │ │ ├── 8x50mmRLebel.xml │ │ │ ├── 8x50mmRMannlicher.xml │ │ │ ├── 90mmCannon.xml │ │ │ ├── 90mmRecoilless.xml │ │ │ ├── 950JDJ.xml │ │ │ ├── 9x18mmMakarov.xml │ │ │ ├── 9x19mmPara.xml │ │ │ ├── 9x21mmGyurza.xml │ │ │ ├── 9x39mmSoviet.xml │ │ │ ├── Ammo_Nail.xml │ │ │ ├── AntiMateriel.xml │ │ │ ├── Arrows.xml │ │ │ ├── Autocannon.xml │ │ │ ├── Autoguns.xml │ │ │ ├── BlowDarts.xml │ │ │ ├── BlunderbussShot.xml │ │ │ ├── Bolter.xml │ │ │ ├── Bolter_Small.xml │ │ │ ├── CannonBall.xml │ │ │ ├── Catapult.xml │ │ │ ├── Charged.xml │ │ │ ├── CrossbowBolts.xml │ │ │ ├── FN57x28mm.xml │ │ │ ├── Flamethrower.xml │ │ │ ├── Flare.xml │ │ │ ├── GreatArrows.xml │ │ │ ├── HeavyBolter.xml │ │ │ ├── LasGun.xml │ │ │ ├── LaserChargePack.xml │ │ │ ├── LauncherGrenade.xml │ │ │ ├── M6.xml │ │ │ ├── M6A1.xml │ │ │ ├── M6A3.xml │ │ │ ├── M74.xml │ │ │ ├── Mech.xml │ │ │ ├── MeltaGun.xml │ │ │ ├── MiniCannonBall.xml │ │ │ ├── MortarGrenade.xml │ │ │ ├── MusketBall.xml │ │ │ ├── NerveSpikerBolt.xml │ │ │ ├── Pistol.xml │ │ │ ├── PistolMagnum.xml │ │ │ ├── PlasmaCannon.xml │ │ │ ├── PlasmaCellHeavy.xml │ │ │ ├── PlasmaCellPistol.xml │ │ │ ├── PlasmaCellRifle.xml │ │ │ ├── RPG32.xml │ │ │ ├── RPG7.xml │ │ │ ├── RPO.xml │ │ │ ├── Rifle.xml │ │ │ ├── RifleIntermediate.xml │ │ │ ├── RifleMagnum.xml │ │ │ ├── SPG9.xml │ │ │ ├── Shell_Cannon.xml │ │ │ ├── Shell_Mortar.xml │ │ │ ├── ShotgunShell.xml │ │ │ ├── SlingBullet.xml │ │ │ └── ThingCategories.xml │ │ ├── ThingDef │ │ │ ├── 100x695mmR.xml │ │ │ ├── 105mmHowitzer.xml │ │ │ ├── 105x607mmR.xml │ │ │ ├── 105x617mmR.xml │ │ │ ├── 10Gauge.xml │ │ │ ├── 10mmAuto.xml │ │ │ ├── 10x18mmCharged.xml │ │ │ ├── 12.7x108mmSoviet.xml │ │ │ ├── 120mmCannon.xml │ │ │ ├── 127mmJavelinMissile.xml │ │ │ ├── 127x55mm.xml │ │ │ ├── 12Gauge.xml │ │ │ ├── 12GaugeCharged.xml │ │ │ ├── 12mmRailgun.xml │ │ │ ├── 12x64mmCharged.xml │ │ │ ├── 12x72mmCharged.xml │ │ │ ├── 13.2x92mmSRTuF.xml │ │ │ ├── 130mmType63.xml │ │ │ ├── 132mmM13.xml │ │ │ ├── 13mmGyrojet.xml │ │ │ ├── 14.5x114mmSoviet.xml │ │ │ ├── 15.2x169mm.xml │ │ │ ├── 150mmMBTLAWMissile.xml │ │ │ ├── 155mmHowitzer.xml │ │ │ ├── 15cmNebelwerfer.xml │ │ │ ├── 15x65mmDiffusingCharged.xml │ │ │ ├── 164x284mmDemoShell.xml │ │ │ ├── 16Gauge.xml │ │ │ ├── 17HMR.xml │ │ │ ├── 2-Bore.xml │ │ │ ├── 20Gauge.xml │ │ │ ├── 20mmFliegerfaust.xml │ │ │ ├── 20x102mmNATO.xml │ │ │ ├── 20x105mmCharged.xml │ │ │ ├── 20x110mmHispano.xml │ │ │ ├── 20x128mmOerlikon.xml │ │ │ ├── 20x138mmB.xml │ │ │ ├── 20x139mm.xml │ │ │ ├── 20x42mmGrenade.xml │ │ │ ├── 20x82mmMauser.xml │ │ │ ├── 20x99mmShVAK.xml │ │ │ ├── 22Hornet.xml │ │ │ ├── 22LR.xml │ │ │ ├── 22Short.xml │ │ │ ├── 22WMR.xml │ │ │ ├── 23x152mmB.xml │ │ │ ├── 23x75mmR.xml │ │ │ ├── 243Winchester.xml │ │ │ ├── 25ACP.xml │ │ │ ├── 25x137mmNATO.xml │ │ │ ├── 25x40mmGrenade.xml │ │ │ ├── 25x59mmGrenade.xml │ │ │ ├── 277Fury.xml │ │ │ ├── 280British.xml │ │ │ ├── 28cmSpgr.xml │ │ │ ├── 30-30Winchester.xml │ │ │ ├── 3006Springfield.xml │ │ │ ├── 300AACBlackout.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 303British.xml │ │ │ ├── 30Carbine.xml │ │ │ ├── 30x113mmB.xml │ │ │ ├── 30x165mm.xml │ │ │ ├── 30x173mmNATO.xml │ │ │ ├── 30x29mmGrenade.xml │ │ │ ├── 30x64mmFuelCell.xml │ │ │ ├── 32ACP.xml │ │ │ ├── 338LapuaMagnum.xml │ │ │ ├── 338NormaMagnum.xml │ │ │ ├── 357Magnum.xml │ │ │ ├── 357SIG.xml │ │ │ ├── 35x32mmSRGrenade.xml │ │ │ ├── 37x223mmR.xml │ │ │ ├── 38-55Winchester.xml │ │ │ ├── 380ACP.xml │ │ │ ├── 38ACP.xml │ │ │ ├── 38SW.xml │ │ │ ├── 38Special.xml │ │ │ ├── 38Super.xml │ │ │ ├── 408CheyenneTactical.xml │ │ │ ├── 40SW.xml │ │ │ ├── 40x311mmR.xml │ │ │ ├── 40x365mmBofors.xml │ │ │ ├── 40x46mmGrenade.xml │ │ │ ├── 40x47mmGrenade.xml │ │ │ ├── 40x53mmGrenade.xml │ │ │ ├── 40x53mmVOG25Grenade.xml │ │ │ ├── 410Bore.xml │ │ │ ├── 41Rimfire.xml │ │ │ ├── 44-40Winchester.xml │ │ │ ├── 44Magnum.xml │ │ │ ├── 44SWSpecial.xml │ │ │ ├── 454Casull.xml │ │ │ ├── 455Webley.xml │ │ │ ├── 4570Gov.xml │ │ │ ├── 458SOCOM.xml │ │ │ ├── 45ACP.xml │ │ │ ├── 45Colt.xml │ │ │ ├── 45Schofield.xml │ │ │ ├── 460SWMagnum.xml │ │ │ ├── 46x30mm.xml │ │ │ ├── 470NitroExpress.xml │ │ │ ├── 473x33mmCaseless.xml │ │ │ ├── 485x49mm.xml │ │ │ ├── 500SWMagnum.xml │ │ │ ├── 50AE.xml │ │ │ ├── 50BMG.xml │ │ │ ├── 50Beowulf.xml │ │ │ ├── 50mmGS50Grenade.xml │ │ │ ├── 50mmRocket.xml │ │ │ ├── 50mmType89Mortar.xml │ │ │ ├── 545x39mmSoviet.xml │ │ │ ├── 556x45mmNATO.xml │ │ │ ├── 55Boys.xml │ │ │ ├── 56-56Spencer.xml │ │ │ ├── 57mmS5Rocket.xml │ │ │ ├── 57x307mmR.xml │ │ │ ├── 57x438mmBofors.xml │ │ │ ├── 58x21mmDAP92.xml │ │ │ ├── 58x42mmDBP10.xml │ │ │ ├── 5x16mmCharged.xml │ │ │ ├── 5x35mmCharged.xml │ │ │ ├── 5x50mmCaseless.xml │ │ │ ├── 6.5Creedmoor.xml │ │ │ ├── 6.5x52mm Carcano.xml │ │ │ ├── 600NitroExpress.xml │ │ │ ├── 60mmMortar.xml │ │ │ ├── 60x225mmGammaShell.xml │ │ │ ├── 65x50mmSRArisaka.xml │ │ │ ├── 66mmThermalBolt.xml │ │ │ ├── 6mmRailgun.xml │ │ │ ├── 6x18mmCharged.xml │ │ │ ├── 6x22mmCharged.xml │ │ │ ├── 6x24mmCharged.xml │ │ │ ├── 7.5FK.xml │ │ │ ├── 7.92x57mmMauser.xml │ │ │ ├── 7.92x94mm Patronen.xml │ │ │ ├── 70mmAPKWS.xml │ │ │ ├── 70mmMechanoidGrenade.xml │ │ │ ├── 75x350mmR.xml │ │ │ ├── 75x54mmFrench.xml │ │ │ ├── 762x25mmTokarev.xml │ │ │ ├── 762x385mmRCannon.xml │ │ │ ├── 762x38mmR.xml │ │ │ ├── 762x39mmSoviet.xml │ │ │ ├── 762x51mmNATO.xml │ │ │ ├── 762x539mmR.xml │ │ │ ├── 762x54mmR.xml │ │ │ ├── 763x25mmMauser.xml │ │ │ ├── 765x20mmLongue.xml │ │ │ ├── 77x58mmArisaka.xml │ │ │ ├── 792x33mmKurz.xml │ │ │ ├── 8.6mmBlackout.xml │ │ │ ├── 80x256mmFuelCell.xml │ │ │ ├── 81mmMortar.xml │ │ │ ├── 83mmPIATGrenade.xml │ │ │ ├── 83mmSMAW.xml │ │ │ ├── 84mmAT4.xml │ │ │ ├── 84x246mmR.xml │ │ │ ├── 88mmRPzB.xml │ │ │ ├── 8mmRailgun.xml │ │ │ ├── 8x22mmNambu.xml │ │ │ ├── 8x35mmCharged.xml │ │ │ ├── 8x40mmCharged.xml │ │ │ ├── 8x50mmCharged.xml │ │ │ ├── 8x50mmRLebel.xml │ │ │ ├── 8x50mmRMannlicher.xml │ │ │ ├── 90mmCannon.xml │ │ │ ├── 90mmMATADOR.xml │ │ │ ├── 90mmRecoilless.xml │ │ │ ├── 950JDJ.xml │ │ │ ├── 9x18mmMakarov.xml │ │ │ ├── 9x19mmPara.xml │ │ │ ├── 9x21mmGyurza.xml │ │ │ ├── 9x39mmSoviet.xml │ │ │ ├── Abstracts_Lasers.xml │ │ │ ├── Ammo_Nail.xml │ │ │ ├── AntiMateriel.xml │ │ │ ├── Apparel_Carrying.xml │ │ │ ├── Apparel_Headgear.xml │ │ │ ├── Apparel_Shield.xml │ │ │ ├── Apparel_Various.xml │ │ │ ├── Arrows.xml │ │ │ ├── Autocannon.xml │ │ │ ├── Autoguns.xml │ │ │ ├── BlowDarts.xml │ │ │ ├── BlunderbussShot.xml │ │ │ ├── Bolter.xml │ │ │ ├── Bolter_Small.xml │ │ │ ├── Buildings_Defenses.xml │ │ │ ├── Buildings_Mech_Spawners.xml │ │ │ ├── Buildings_Production.xml │ │ │ ├── Buildings_Turrets.xml │ │ │ ├── CE_Royalty.xml │ │ │ ├── CannonBall.xml │ │ │ ├── Catapult.xml │ │ │ ├── Charged.xml │ │ │ ├── CrossbowBolts.xml │ │ │ ├── Ethereal_Various.xml │ │ │ ├── FN57x28mm.xml │ │ │ ├── Filth_Casings.xml │ │ │ ├── Filth_Various.xml │ │ │ ├── Flamethrower.xml │ │ │ ├── Flamethrower_Burst.xml │ │ │ ├── Flare.xml │ │ │ ├── Flecks.xml │ │ │ ├── Gas_Various.xml │ │ │ ├── GreatArrows.xml │ │ │ ├── HeavyBolter.xml │ │ │ ├── ImpliedDefs.xml │ │ │ ├── Items_Resource_Ammo.xml │ │ │ ├── Items_Turrets.xml │ │ │ ├── Items_Unfinished.xml │ │ │ ├── Javelins.xml │ │ │ ├── LasGun.xml │ │ │ ├── LaserChargePack.xml │ │ │ ├── LauncherGrenade.xml │ │ │ ├── M6.xml │ │ │ ├── M6A1.xml │ │ │ ├── M6A3.xml │ │ │ ├── M72LAW.xml │ │ │ ├── M74.xml │ │ │ ├── Mech.xml │ │ │ ├── MeltaGun.xml │ │ │ ├── MiniCannonBall.xml │ │ │ ├── MortarGrenade.xml │ │ │ ├── Motes.xml │ │ │ ├── MusketBall.xml │ │ │ ├── NerveSpikerBolt.xml │ │ │ ├── Pistol.xml │ │ │ ├── PistolMagnum.xml │ │ │ ├── Plants_Cultivated_Farm.xml │ │ │ ├── PlasmaCannon.xml │ │ │ ├── PlasmaCellHeavy.xml │ │ │ ├── PlasmaCellPistol.xml │ │ │ ├── PlasmaCellRifle.xml │ │ │ ├── Projectiles_Fragments.xml │ │ │ ├── Psychite_Psycho.xml │ │ │ ├── RPG28.xml │ │ │ ├── RPG32.xml │ │ │ ├── RPG7.xml │ │ │ ├── RPO.xml │ │ │ ├── RangedNeolithic.xml │ │ │ ├── Rifle.xml │ │ │ ├── RifleIntermediate.xml │ │ │ ├── RifleMagnum.xml │ │ │ ├── SPG9.xml │ │ │ ├── Shell_Cannon.xml │ │ │ ├── Shell_Mortar.xml │ │ │ ├── ShotgunShell.xml │ │ │ ├── SlingBullet.xml │ │ │ ├── Things_Special.xml │ │ │ ├── TomahawkLAM.xml │ │ │ ├── Weapons_Grenades.xml │ │ │ ├── Weapons_Ranged.xml │ │ │ ├── Weapons_RangedNeolithic.xml │ │ │ ├── Weapons_Spotting.xml │ │ │ └── Weapons_Turrets.xml │ │ ├── ThoughtDef │ │ │ ├── Psychite_Psycho.xml │ │ │ └── Thoughts_CR.xml │ │ ├── TipSetDef │ │ │ └── Tips.xml │ │ ├── ToolCapacityDef │ │ │ └── ToolCapacity.xml │ │ ├── TraitDef │ │ │ └── Traits_Spectrum.xml │ │ ├── WorkGiverDef │ │ │ └── WorkGivers.xml │ │ └── WorldObjectDef │ │ │ └── WorldObjects.xml │ ├── Keyed │ │ ├── AmmoContainerKeyed.xml │ │ ├── ArmorDurability.xml │ │ ├── Attachments.xml │ │ ├── BipodStatWorker.xml │ │ ├── BulkAndWeight.xml │ │ ├── Descriptions.xml │ │ ├── FireArcKeyed.xml │ │ ├── FloatMenu.xml │ │ ├── Keys.xml │ │ ├── LoadoutGeneric.xml │ │ ├── LongEventHandler.xml │ │ ├── MechTakeAmmoKeyed.xml │ │ ├── Messages.xml │ │ ├── Misc_Gameplay.xml │ │ ├── ModMenu.xml │ │ ├── Stats.xml │ │ ├── TextMotes.xml │ │ └── Wind.xml │ └── Strings │ │ └── NameBanks │ │ ├── SwearLibrary.txt │ │ └── SwearLibrarySuppressed.txt ├── ChineseTraditional │ ├── DefInjected │ │ ├── AmmoCategoryDef │ │ │ ├── AmmoCategories_Advanced.xml │ │ │ ├── AmmoCategories_General.xml │ │ │ ├── AmmoCategories_Grenades.xml │ │ │ ├── AmmoCategories_Neolithic.xml │ │ │ ├── AmmoCategories_Rockets.xml │ │ │ └── AmmoCategories_Shotgun.xml │ │ ├── AmmoSetDef │ │ │ └── AmmoSets_All.xml │ │ ├── ApparelLayerDef │ │ │ └── ApparelLayerDefs.xml │ │ ├── BodyPartGroupDef │ │ │ └── BodyPartGroups.xml │ │ ├── ConceptDef │ │ │ └── ConceptDef_CE.xml │ │ ├── DamageDef │ │ │ └── Damages_LocalInjury.xml │ │ ├── HediffDef │ │ │ └── Hediffs_All.xml │ │ ├── JobDef │ │ │ └── Jobs_CE.xml │ │ ├── MainTabDef │ │ │ └── OutfitsAndLoadouts.xml │ │ ├── MentalStateDef │ │ │ └── MentalStates.xml │ │ ├── PawnColumnDef │ │ │ └── PawnColumns_CE.xml │ │ ├── PawnKindDef │ │ │ └── PawnKinds_CE.xml │ │ ├── RecipeDef │ │ │ ├── Recipes_Add.xml │ │ │ ├── Recipes_AmmoAdvanced.xml │ │ │ ├── Recipes_AmmoHighCaliber.xml │ │ │ ├── Recipes_AmmoNeolithic.xml │ │ │ ├── Recipes_AmmoPistols.xml │ │ │ ├── Recipes_AmmoRifles.xml │ │ │ ├── Recipes_AmmoShotgun.xml │ │ │ ├── Recipes_Grenades.xml │ │ │ ├── Recipes_HandGrenades.xml │ │ │ ├── Recipes_Rockets.xml │ │ │ ├── Recipes_Shells.xml │ │ │ └── Recipes_Turrets.xml │ │ ├── ResearchProjectDef │ │ │ └── ResearchProjects_All.xml │ │ ├── ResearchTabDef │ │ │ └── ResearchProjects_Turrets.xml │ │ ├── StatDef │ │ │ ├── Stats_Apparel.xml │ │ │ ├── Stats_Basics_Inventory.xml │ │ │ ├── Stats_Pawns_Combat.xml │ │ │ ├── Stats_Pawns_General.xml │ │ │ ├── Stats_Pawns_Inventory.xml │ │ │ ├── Stats_Weapons_Melee.xml │ │ │ └── Stats_Weapons_Ranged.xml │ │ ├── StuffCategoryDef │ │ │ └── StuffCategories.xml │ │ ├── TaleDef │ │ │ └── Tales_SinglePawn.xml │ │ ├── ThingCategoryDef │ │ │ ├── ThingCategories.xml │ │ │ └── ThingCategories_Ammos.xml │ │ ├── ThingDef │ │ │ ├── Ammo_All.xml │ │ │ ├── Apparel_Carrying.xml │ │ │ ├── Apparel_Headgear.xml │ │ │ ├── Apparel_Shield.xml │ │ │ ├── Apparel_Various.xml │ │ │ ├── Buildings_Defenses.xml │ │ │ ├── Buildings_Production.xml │ │ │ ├── Buildings_Turrets.xml │ │ │ ├── Filth_Various.xml │ │ │ ├── Gas_Various.xml │ │ │ ├── Items_Resource_Ammo.xml │ │ │ ├── Items_Turrets.xml │ │ │ ├── Items_Unfinished.xml │ │ │ ├── LoadoutGen_Mechanoid.xml │ │ │ ├── LoadoutGen_Mercenary.xml │ │ │ ├── LoadoutGen_Outlander.xml │ │ │ ├── LoadoutGen_Pirate.xml │ │ │ ├── LoadoutGen_Tribal.xml │ │ │ ├── Plants_Cultivated.xml │ │ │ ├── Projectiles_Fragments.xml │ │ │ ├── Things_Special.xml │ │ │ ├── Weapons_Artillery.xml │ │ │ ├── Weapons_Grenades.xml │ │ │ ├── Weapons_Spotting.xml │ │ │ └── Weapons_Turrets.xml │ │ ├── ThoughtDef │ │ │ └── Thoughts_CR.xml │ │ ├── TraitDef │ │ │ └── Traits_Spectrum.xml │ │ └── WorkGiverDef │ │ │ └── WorkGivers.xml │ ├── Keyed │ │ ├── BulkAndWeight.xml │ │ ├── Descriptions.xml │ │ ├── Keys.xml │ │ ├── LoadoutGeneric.xml │ │ ├── LongEventHandler.xml │ │ ├── ModMenu.xml │ │ ├── TextMotes.xml │ │ └── Wind.xml │ └── Strings │ │ └── NameBanks │ │ ├── SwearLibrary.txt │ │ └── SwearLibrarySuppressed.txt ├── English │ ├── Keyed │ │ ├── AmmoContainerKeyed.xml │ │ ├── ArmorDurability.xml │ │ ├── Attachments.xml │ │ ├── BipodStatWorker.xml │ │ ├── BulkAndWeight.xml │ │ ├── Descriptions.xml │ │ ├── FireArcKeyed.xml │ │ ├── FloatMenu.xml │ │ ├── Keys.xml │ │ ├── LoadoutGeneric.xml │ │ ├── LongEventHandler.xml │ │ ├── MechTakeAmmoKeyed.xml │ │ ├── Messages.xml │ │ ├── Misc_Gameplay.xml │ │ ├── ModMenu.xml │ │ ├── Stats.xml │ │ ├── TextMotes.xml │ │ └── Wind.xml │ └── Strings │ │ └── NameBanks │ │ ├── SwearLibrary.txt │ │ └── SwearLibrarySuppressed.txt ├── French │ ├── Keyed │ │ ├── BulkAndWeight.xml │ │ ├── Descriptions.xml │ │ ├── Keys.xml │ │ ├── LoadoutGeneric.xml │ │ ├── ModMenu.xml │ │ └── TextMotes.xml │ └── Strings │ │ └── NameBanks │ │ ├── SwearLibrary.txt │ │ └── SwearLibrarySuppressed.txt ├── German │ └── Keyed │ │ └── Text.xml ├── Korean │ ├── Keyed │ │ ├── BulkAndWeight.xml │ │ ├── Descriptions.xml │ │ ├── Keys.xml │ │ ├── LoadoutGeneric.xml │ │ ├── ModMenu.xml │ │ └── TextMotes.xml │ ├── Strings │ │ └── NameBanks │ │ │ ├── SwearLibrary.txt │ │ │ └── SwearLibrarySuppressed.txt │ └── defInjected │ │ ├── BodyPartGroupDefs │ │ └── BodyPartGroups.xml │ │ ├── CombatExtended.AmmoCategoryDefs │ │ ├── AmmoCategories_Advanced.xml │ │ ├── AmmoCategories_General.xml │ │ ├── AmmoCategories_Grenades.xml │ │ ├── AmmoCategories_Neolithic.xml │ │ ├── AmmoCategories_Rockets.xml │ │ └── AmmoCategories_Shotgun.xml │ │ ├── CombatExtended.AmmoSetDefs │ │ ├── 12.7x108mmSoviet.xml │ │ ├── 12Gauge.xml │ │ ├── 12x64mmCharged.xml │ │ ├── 14.5x114mmSoviet.xml │ │ ├── 15x65mmDiffusingCharged.xml │ │ ├── 22LR.xml │ │ ├── 25x40mmGrenade.xml │ │ ├── 303British.xml │ │ ├── 30x29mmGrenade.xml │ │ ├── 30x64mmFuelCell.xml │ │ ├── 32ACP.xml │ │ ├── 338LapuaMagnum.xml │ │ ├── 38Special.xml │ │ ├── 40Rimfire.xml │ │ ├── 40x46mmGrenade.xml │ │ ├── 44-40Winchester.xml │ │ ├── 44Magnum.xml │ │ ├── 45ACP.xml │ │ ├── 45Colt.xml │ │ ├── 500SWMagnum.xml │ │ ├── 50AE.xml │ │ ├── 50BMG.xml │ │ ├── 545x39mmSoviet.xml │ │ ├── 556x45mmNATO.xml │ │ ├── 56-56Spencer.xml │ │ ├── 5x35mmCharged.xml │ │ ├── 60x225mmGammaShell.xml │ │ ├── 6x18mmCharged.xml │ │ ├── 6x24mmCharged.xml │ │ ├── 7.92x57mmMauser.xml │ │ ├── 762x25mmTokarev.xml │ │ ├── 762x39mmSoviet.xml │ │ ├── 762x51mmNATO.xml │ │ ├── 762x54mmR.xml │ │ ├── 80x256mmFuelCell.xml │ │ ├── 81mmMortar.xml │ │ ├── 84x246mmR.xml │ │ ├── 8x35mmCharged.xml │ │ ├── 90mmCannon.xml │ │ ├── 9x19mmPara.xml │ │ ├── 9x39mmSoviet.xml │ │ ├── Arrows.xml │ │ ├── FN57x28mm.xml │ │ ├── GreatArrows.xml │ │ ├── Javelins.xml │ │ ├── RPG7.xml │ │ ├── SPG9.xml │ │ └── SlingBullet.xml │ │ ├── ConceptDefs │ │ ├── Concepts_NotedOpportunistic.xml │ │ ├── Concepts_NotedSelfshow.xml │ │ └── Concepts_TriggeredModal.xml │ │ ├── DamageDefs │ │ ├── Damages_CR.xml │ │ └── Damages_LocalInjury.xml │ │ ├── HediffDefs │ │ ├── Hediffs_CE.xml │ │ └── Hediffs_Global_Misc.xml │ │ ├── JobDefs │ │ ├── Jobs_CE.xml │ │ └── Jobs_Misc.xml │ │ ├── PawnColumnDefs │ │ └── PawnColumns_CE.xml │ │ ├── PawnKindDefs │ │ └── PawnKinds_Mercenary.xml │ │ ├── RecipeDefs │ │ ├── 12.7x108mmSoviet.xml │ │ ├── 12Gauge.xml │ │ ├── 14.5x114mmSoviet.xml │ │ ├── 22LR.xml │ │ ├── 25x40mmGrenade.xml │ │ ├── 303British.xml │ │ ├── 30x29mmGrenade.xml │ │ ├── 30x64mmFuelCell.xml │ │ ├── 32ACP.xml │ │ ├── 338LapuaMagnum.xml │ │ ├── 38Special.xml │ │ ├── 40Rimfire.xml │ │ ├── 40x46mmGrenade.xml │ │ ├── 410Bore.xml │ │ ├── 44-40Winchester.xml │ │ ├── 44Magnum.xml │ │ ├── 45ACP.xml │ │ ├── 45Colt.xml │ │ ├── 500SWMagnum.xml │ │ ├── 50AE.xml │ │ ├── 50BMG.xml │ │ ├── 545x39mmSoviet.xml │ │ ├── 556x45mmNATO.xml │ │ ├── 56-56Spencer.xml │ │ ├── 6x18mmCharged.xml │ │ ├── 6x24mmCharged.xml │ │ ├── 7.92x57mmMauser.xml │ │ ├── 762x25mmTokarev.xml │ │ ├── 762x39mmSoviet.xml │ │ ├── 762x51mmNATO.xml │ │ ├── 762x54mmR.xml │ │ ├── 81mmMortar.xml │ │ ├── 84x246mmR.xml │ │ ├── 8x35mmCharged.xml │ │ ├── 90mmCannon.xml │ │ ├── 9x19mmPara.xml │ │ ├── 9x39mmSoviet.xml │ │ ├── Arrows.xml │ │ ├── FN57x28mm.xml │ │ ├── GreatArrows.xml │ │ ├── RPG7.xml │ │ ├── Recipes_Add.xml │ │ ├── Recipes_Apparel_Carrying.xml │ │ ├── Recipes_Apparel_Shield.xml │ │ ├── Recipes_Apparel_Various.xml │ │ ├── Recipes_HandGrenades.xml │ │ ├── Recipes_Turret.xml │ │ ├── SPG9.xml │ │ └── SlingBullet.xml │ │ ├── ResearchProjectDefs │ │ ├── ResearchProjects_Tier4_Misc.xml │ │ └── ResearchProjects_Turrets.xml │ │ ├── ResearchTabDefs │ │ └── ResearchProjects_Turrets.xml │ │ ├── RulePackDefs │ │ └── RulePacks_Swearing.xml │ │ ├── StatDefs │ │ ├── Stats_Apparel.xml │ │ ├── Stats_Basics_Inventory.xml │ │ ├── Stats_Pawns_Combat.xml │ │ ├── Stats_Pawns_Inventory.xml │ │ ├── Stats_Weapons_Melee.xml │ │ └── Stats_Weapons_Ranged.xml │ │ ├── StuffCategoryDefs │ │ └── StuffCategories.xml │ │ ├── ThingCategoryDefs │ │ ├── 12.7x108mmSoviet.xml │ │ ├── 12Gauge.xml │ │ ├── 12x64mmCharged.xml │ │ ├── 14.5x114mmSoviet.xml │ │ ├── 15x65mmDiffusingCharged.xml │ │ ├── 22LR.xml │ │ ├── 25x40mmGrenade.xml │ │ ├── 303British.xml │ │ ├── 30x29mmGrenade.xml │ │ ├── 30x64mmFuelCell.xml │ │ ├── 32ACP.xml │ │ ├── 338LapuaMagnum.xml │ │ ├── 38Special.xml │ │ ├── 40Rimfire.xml │ │ ├── 40x46mmGrenade.xml │ │ ├── 410Bore.xml │ │ ├── 44-40Winchester.xml │ │ ├── 44Magnum.xml │ │ ├── 45ACP.xml │ │ ├── 45Colt.xml │ │ ├── 500SWMagnum.xml │ │ ├── 50AE.xml │ │ ├── 50BMG.xml │ │ ├── 545x39mmSoviet.xml │ │ ├── 556x45mmNATO.xml │ │ ├── 56-56Spencer.xml │ │ ├── 5x35mmCharged.xml │ │ ├── 60x225mmGammaShell.xml │ │ ├── 6x18mmCharged.xml │ │ ├── 6x24mmCharged.xml │ │ ├── 7.92x57mmMauser.xml │ │ ├── 762x25mmTokarev.xml │ │ ├── 762x39mmSoviet.xml │ │ ├── 762x51mmNATO.xml │ │ ├── 762x54mmR.xml │ │ ├── 80x256mmFuelCell.xml │ │ ├── 81mmMortar.xml │ │ ├── 84x246mmR.xml │ │ ├── 8x35mmCharged.xml │ │ ├── 90mmCannon.xml │ │ ├── 9x19mmPara.xml │ │ ├── 9x39mmSoviet.xml │ │ ├── Arrows.xml │ │ ├── FN57x28mm.xml │ │ ├── GreatArrows.xml │ │ ├── RPG7.xml │ │ ├── RPO.xml │ │ ├── SPG9.xml │ │ ├── SlingBullet.xml │ │ └── ThingCategories.xml │ │ ├── ThingDefs │ │ ├── 12.7x108mmSoviet.xml │ │ ├── 12Gauge.xml │ │ ├── 12x64mmCharged.xml │ │ ├── 14.5x114mmSoviet.xml │ │ ├── 15x65mmDiffusingCharged.xml │ │ ├── 22LR.xml │ │ ├── 25x40mmGrenade.xml │ │ ├── 303British.xml │ │ ├── 30x29mmGrenade.xml │ │ ├── 30x64mmFuelCell.xml │ │ ├── 32ACP.xml │ │ ├── 338LapuaMagnum.xml │ │ ├── 38Special.xml │ │ ├── 40Rimfire.xml │ │ ├── 40x46mmGrenade.xml │ │ ├── 410Bore.xml │ │ ├── 44-40Winchester.xml │ │ ├── 44Magnum.xml │ │ ├── 45ACP.xml │ │ ├── 45Colt.xml │ │ ├── 500SWMagnum.xml │ │ ├── 50AE.xml │ │ ├── 50BMG.xml │ │ ├── 545x39mmSoviet.xml │ │ ├── 556x45mmNATO.xml │ │ ├── 56-56Spencer.xml │ │ ├── 5x35mmCharged.xml │ │ ├── 60x225mmGammaShell.xml │ │ ├── 6x18mmCharged.xml │ │ ├── 6x24mmCharged.xml │ │ ├── 7.92x57mmMauser.xml │ │ ├── 762x25mmTokarev.xml │ │ ├── 762x39mmSoviet.xml │ │ ├── 762x51mmNATO.xml │ │ ├── 762x54mmR.xml │ │ ├── 80x256mmFuelCell.xml │ │ ├── 81mmMortar.xml │ │ ├── 84x246mmR.xml │ │ ├── 8x35mmCharged.xml │ │ ├── 90mmCannon.xml │ │ ├── 9x19mmPara.xml │ │ ├── 9x39mmSoviet.xml │ │ ├── Apparel_Carrying.xml │ │ ├── Apparel_Shield.xml │ │ ├── Apparel_Various.xml │ │ ├── Arrows.xml │ │ ├── Buildings_Defenses.xml │ │ ├── Buildings_Production.xml │ │ ├── Buildings_Turrets.xml │ │ ├── FN57x28mm.xml │ │ ├── Filth_Various.xml │ │ ├── GreatArrows.xml │ │ ├── Items_Resource_Ammo.xml │ │ ├── Items_Turrets.xml │ │ ├── Items_Unfinished.xml │ │ ├── Javelins.xml │ │ ├── Kits_Turrets.xml │ │ ├── LoadoutGen_Mechanoid.xml │ │ ├── LoadoutGen_Mercenary.xml │ │ ├── LoadoutGen_Outlander.xml │ │ ├── LoadoutGen_Pirate.xml │ │ ├── LoadoutGen_Tribal.xml │ │ ├── M72LAW.xml │ │ ├── Motes_CR.xml │ │ ├── Plants_Cultivated_Farm.xml │ │ ├── Projectiles_Fragments.xml │ │ ├── RPG7.xml │ │ ├── RPO.xml │ │ ├── SPG9.xml │ │ ├── SlingBullet.xml │ │ ├── Things_Special.xml │ │ ├── Weapons_Grenades.xml │ │ ├── Weapons_RangedNeolithic.xml │ │ ├── Weapons_Spotting.xml │ │ └── Weapons_Turrets.xml │ │ ├── ThoughtDefs │ │ └── Thoughts_CR.xml │ │ ├── TraitDefs │ │ └── Traits_Spectrum.xml │ │ └── WorkGiverDefs │ │ └── WorkGivers.xml ├── PortugueseBrazilian │ ├── Keyed │ │ ├── AmmoContainerKeyed.xml │ │ ├── ArmorDurability.xml │ │ ├── Attachments.xml │ │ ├── BipodStatWorker.xml │ │ ├── BulkAndWeight.xml │ │ ├── Descriptions.xml │ │ ├── FloatMenu.xml │ │ ├── Keys.xml │ │ ├── LoadoutGeneric.xml │ │ ├── LongEventHandler.xml │ │ ├── MechTakeAmmoKeyed.xml │ │ ├── Messages.xml │ │ ├── Misc_Gameplay.xml │ │ ├── ModMenu.xml │ │ ├── Stats.xml │ │ ├── TextMotes.xml │ │ └── Wind.xml │ └── Strings │ │ └── NameBanks │ │ ├── SwearLibrary.txt │ │ └── SwearLibrarySuppressed.txt ├── Russian │ ├── DefInjected │ │ ├── ApparelLayerDef │ │ │ └── ApparelLayerDefs.xml │ │ ├── BodyDef │ │ │ └── Body_Animal_ArmoredInsect.xml │ │ ├── BodyPartGroupDef │ │ │ └── BodyPartGroups.xml │ │ ├── CombatExtended.AmmoCategoryDef │ │ │ ├── AmmoCategories_Advanced.xml │ │ │ ├── AmmoCategories_General.xml │ │ │ ├── AmmoCategories_Grenades.xml │ │ │ ├── AmmoCategories_Medieval.xml │ │ │ ├── AmmoCategories_Missiles.xml │ │ │ ├── AmmoCategories_Neolithic.xml │ │ │ ├── AmmoCategories_Rockets.xml │ │ │ └── AmmoCategories_Shotgun.xml │ │ ├── CombatExtended.AmmoSetDef │ │ │ ├── 100x695mmR.xml │ │ │ ├── 10mmAuto.xml │ │ │ ├── 12.7x108mmSoviet.xml │ │ │ ├── 120mmCannon.xml │ │ │ ├── 127x55mm.xml │ │ │ ├── 12Gauge.xml │ │ │ ├── 12GaugeCharged.xml │ │ │ ├── 12mmRailgun.xml │ │ │ ├── 12x64mmCharged.xml │ │ │ ├── 13.2x92mmSRTuF.xml │ │ │ ├── 130mmType63.xml │ │ │ ├── 13mmGyrojet.xml │ │ │ ├── 14.5x114mmSoviet.xml │ │ │ ├── 15.2x169mm.xml │ │ │ ├── 155mmHowitzer.xml │ │ │ ├── 15x65mmDiffusingCharged.xml │ │ │ ├── 2-Bore.xml │ │ │ ├── 20Gauge.xml │ │ │ ├── 20mmFliegerfaust.xml │ │ │ ├── 20x102mmNATO.xml │ │ │ ├── 20x110mmHispano.xml │ │ │ ├── 20x128mmOerlikon.xml │ │ │ ├── 20x138mmB.xml │ │ │ ├── 20x42mmGrenade.xml │ │ │ ├── 20x82mmMauser.xml │ │ │ ├── 20x99mmShVAK.xml │ │ │ ├── 22LR.xml │ │ │ ├── 22Short.xml │ │ │ ├── 23x75mmR.xml │ │ │ ├── 25ACP.xml │ │ │ ├── 25x137mmNATO.xml │ │ │ ├── 25x40mmGrenade.xml │ │ │ ├── 25x59mmGrenade.xml │ │ │ ├── 28cmSpgr.xml │ │ │ ├── 3006Springfield.xml │ │ │ ├── 300AACBlackout.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 303British.xml │ │ │ ├── 30Carbine.xml │ │ │ ├── 30x173mmNATO.xml │ │ │ ├── 30x29mmGrenade.xml │ │ │ ├── 30x64mmFuelCell.xml │ │ │ ├── 32ACP.xml │ │ │ ├── 338LapuaMagnum.xml │ │ │ ├── 338NormaMagnum.xml │ │ │ ├── 357Magnum.xml │ │ │ ├── 357SIG.xml │ │ │ ├── 35x32mmSRGrenade.xml │ │ │ ├── 380ACP.xml │ │ │ ├── 38ACP.xml │ │ │ ├── 38Special.xml │ │ │ ├── 408CheyenneTactical.xml │ │ │ ├── 40Rimfire.xml │ │ │ ├── 40SW.xml │ │ │ ├── 40x365mmBofors.xml │ │ │ ├── 40x46mmGrenade.xml │ │ │ ├── 40x47mmGrenade.xml │ │ │ ├── 40x53mmGrenade.xml │ │ │ ├── 40x53mmVOG25Grenade.xml │ │ │ ├── 41Rimfire.xml │ │ │ ├── 44-40Winchester.xml │ │ │ ├── 44Magnum.xml │ │ │ ├── 454Casull.xml │ │ │ ├── 455Webley.xml │ │ │ ├── 4570Gov.xml │ │ │ ├── 45ACP.xml │ │ │ ├── 45Colt.xml │ │ │ ├── 46x30mm.xml │ │ │ ├── 470NitroExpress.xml │ │ │ ├── 473x33mmCaseless.xml │ │ │ ├── 500SWMagnum.xml │ │ │ ├── 50AE.xml │ │ │ ├── 50BMG.xml │ │ │ ├── 50mmGS50Grenade.xml │ │ │ ├── 50mmType89Mortar.xml │ │ │ ├── 545x39mmSoviet.xml │ │ │ ├── 556x45mmNATO.xml │ │ │ ├── 55Boys.xml │ │ │ ├── 56-56Spencer.xml │ │ │ ├── 57x483mmBofors.xml │ │ │ ├── 58x21mmDAP92.xml │ │ │ ├── 58x42mmDBP10.xml │ │ │ ├── 5x35mmCharged.xml │ │ │ ├── 600NitroExpress.xml │ │ │ ├── 60mmMortar.xml │ │ │ ├── 60x225mmGammaShell.xml │ │ │ ├── 65x50mmSRArisaka.xml │ │ │ ├── 6mmRailgun.xml │ │ │ ├── 6x18mmCharged.xml │ │ │ ├── 6x24mmCharged.xml │ │ │ ├── 7.92x57mmMauser.xml │ │ │ ├── 7.92x94mm Patronen.xml │ │ │ ├── 70mmAPKWS.xml │ │ │ ├── 70mmMechanoidGrenade.xml │ │ │ ├── 75x54mmFrench.xml │ │ │ ├── 762x25mmTokarev.xml │ │ │ ├── 762x385mmRCannon.xml │ │ │ ├── 762x38mmR.xml │ │ │ ├── 762x39mmSoviet.xml │ │ │ ├── 762x51mmNATO.xml │ │ │ ├── 762x54mmR.xml │ │ │ ├── 763x25mmMauser.xml │ │ │ ├── 765x20mmLongue.xml │ │ │ ├── 77x58mmArisaka.xml │ │ │ ├── 792x33mmKurz.xml │ │ │ ├── 80x256mmFuelCell.xml │ │ │ ├── 81mmMortar.xml │ │ │ ├── 83mmPIATGrenade.xml │ │ │ ├── 83mmSMAW.xml │ │ │ ├── 84x246mmR.xml │ │ │ ├── 88mmRPzB.xml │ │ │ ├── 8mmRailgun.xml │ │ │ ├── 8x22mmNambu.xml │ │ │ ├── 8x35mmCharged.xml │ │ │ ├── 8x50mmRLebel.xml │ │ │ ├── 90mmCannon.xml │ │ │ ├── 950JDJ.xml │ │ │ ├── 9x18mmMakarov.xml │ │ │ ├── 9x19mmPara.xml │ │ │ ├── 9x21mmGyurza.xml │ │ │ ├── 9x39mmSoviet.xml │ │ │ ├── Arrows.xml │ │ │ ├── CrossbowBolts.xml │ │ │ ├── FN57x28mm.xml │ │ │ ├── Flamethrower.xml │ │ │ ├── GreatArrows.xml │ │ │ ├── Javelins.xml │ │ │ ├── M6.xml │ │ │ ├── M74.xml │ │ │ ├── MusketBall.xml │ │ │ ├── PlasmaCellHeavy.xml │ │ │ ├── PlasmaCellPistol.xml │ │ │ ├── PlasmaCellRifle.xml │ │ │ ├── RPG32.xml │ │ │ ├── RPG7.xml │ │ │ ├── SPG9.xml │ │ │ ├── SlingBullet.xml │ │ │ ├── StreamlinedArrows.xml │ │ │ └── TomahawkLAM.xml │ │ ├── ConceptDef │ │ │ ├── Concepts_NotedOpportunistic.xml │ │ │ ├── Concepts_NotedSelfshow.xml │ │ │ └── Concepts_TriggeredModal.xml │ │ ├── DamageDef │ │ │ └── Damages_LocalInjury.xml │ │ ├── HediffDef │ │ │ └── Hediffs_CE.xml │ │ ├── JobDef │ │ │ └── Jobs_CE.xml │ │ ├── MentalStateDef │ │ │ └── MentalStates.xml │ │ ├── PawnColumnDef │ │ │ └── PawnColumns_CE.xml │ │ ├── PawnKindDef │ │ │ └── PawnKinds_CE.xml │ │ ├── RecipeDef │ │ │ ├── 100x695mmR.xml │ │ │ ├── 10mmAuto.xml │ │ │ ├── 12.7x108mmSoviet.xml │ │ │ ├── 120mmCannon.xml │ │ │ ├── 127x55mm.xml │ │ │ ├── 12Gauge.xml │ │ │ ├── 12GaugeCharged.xml │ │ │ ├── 12mmRailgun.xml │ │ │ ├── 13.2x92mmSRTuF.xml │ │ │ ├── 130mmType63.xml │ │ │ ├── 13mmGyrojet.xml │ │ │ ├── 14.5x114mmSoviet.xml │ │ │ ├── 15.2x169mm.xml │ │ │ ├── 155mmHowitzer.xml │ │ │ ├── 2-Bore.xml │ │ │ ├── 20Gauge.xml │ │ │ ├── 20mmFliegerfaust.xml │ │ │ ├── 20x102mmNATO.xml │ │ │ ├── 20x110mmHispano.xml │ │ │ ├── 20x128mmOerlikon.xml │ │ │ ├── 20x138mmB.xml │ │ │ ├── 20x42mmGrenade.xml │ │ │ ├── 20x82mmMauser.xml │ │ │ ├── 20x99mmShVAK.xml │ │ │ ├── 22LR.xml │ │ │ ├── 22Short.xml │ │ │ ├── 23x75mmR.xml │ │ │ ├── 25ACP.xml │ │ │ ├── 25x137mmNATO.xml │ │ │ ├── 25x40mmGrenade.xml │ │ │ ├── 25x59mmGrenade.xml │ │ │ ├── 28cmSpgr.xml │ │ │ ├── 3006Springfield.xml │ │ │ ├── 300AACBlackout.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 303British.xml │ │ │ ├── 30Carbine.xml │ │ │ ├── 30x173mmNATO.xml │ │ │ ├── 30x29mmGrenade.xml │ │ │ ├── 30x64mmFuelCell.xml │ │ │ ├── 32ACP.xml │ │ │ ├── 338LapuaMagnum.xml │ │ │ ├── 338NormaMagnum.xml │ │ │ ├── 357Magnum.xml │ │ │ ├── 357SIG.xml │ │ │ ├── 35x32mmSRGrenade.xml │ │ │ ├── 380ACP.xml │ │ │ ├── 38ACP.xml │ │ │ ├── 38Special.xml │ │ │ ├── 408CheyenneTactical.xml │ │ │ ├── 40Rimfire.xml │ │ │ ├── 40SW.xml │ │ │ ├── 40x365mmBofors.xml │ │ │ ├── 40x46mmGrenade.xml │ │ │ ├── 40x47mmGrenade.xml │ │ │ ├── 40x53mmGrenade.xml │ │ │ ├── 40x53mmVOG25Grenade.xml │ │ │ ├── 410Bore.xml │ │ │ ├── 41Rimfire.xml │ │ │ ├── 44-40Winchester.xml │ │ │ ├── 44Magnum.xml │ │ │ ├── 454Casull.xml │ │ │ ├── 455Webley.xml │ │ │ ├── 4570Gov.xml │ │ │ ├── 45ACP.xml │ │ │ ├── 45Colt.xml │ │ │ ├── 46x30mm.xml │ │ │ ├── 470NitroExpress.xml │ │ │ ├── 473x33mmCaseless.xml │ │ │ ├── 500SWMagnum.xml │ │ │ ├── 50AE.xml │ │ │ ├── 50BMG.xml │ │ │ ├── 50mmGS50Grenade.xml │ │ │ ├── 50mmType89Mortar.xml │ │ │ ├── 545x39mmSoviet.xml │ │ │ ├── 556x45mmNATO.xml │ │ │ ├── 55Boys.xml │ │ │ ├── 56-56Spencer.xml │ │ │ ├── 57x483mmBofors.xml │ │ │ ├── 58x21mmDAP92.xml │ │ │ ├── 58x42mmDBP10.xml │ │ │ ├── 600NitroExpress.xml │ │ │ ├── 60mmMortar.xml │ │ │ ├── 65x50mmSRArisaka.xml │ │ │ ├── 6mmRailgun.xml │ │ │ ├── 6x18mmCharged.xml │ │ │ ├── 6x24mmCharged.xml │ │ │ ├── 7.92x57mmMauser.xml │ │ │ ├── 7.92x94mm Patronen.xml │ │ │ ├── 70mmAPKWS.xml │ │ │ ├── 75x54mmFrench.xml │ │ │ ├── 762x25mmTokarev.xml │ │ │ ├── 762x385mmRCannon.xml │ │ │ ├── 762x38mmR.xml │ │ │ ├── 762x39mmSoviet.xml │ │ │ ├── 762x51mmNATO.xml │ │ │ ├── 762x54mmR.xml │ │ │ ├── 763x25mmMauser.xml │ │ │ ├── 765x20mmLongue.xml │ │ │ ├── 77x58mmArisaka.xml │ │ │ ├── 792x33mmKurz.xml │ │ │ ├── 81mmMortar.xml │ │ │ ├── 83mmPIATGrenade.xml │ │ │ ├── 83mmSMAW.xml │ │ │ ├── 84x246mmR.xml │ │ │ ├── 88mmRPzB.xml │ │ │ ├── 8mmRailgun.xml │ │ │ ├── 8x22mmNambu.xml │ │ │ ├── 8x35mmCharged.xml │ │ │ ├── 8x50mmRLebel.xml │ │ │ ├── 90mmCannon.xml │ │ │ ├── 950JDJ.xml │ │ │ ├── 9x18mmMakarov.xml │ │ │ ├── 9x19mmPara.xml │ │ │ ├── 9x21mmGyurza.xml │ │ │ ├── 9x39mmSoviet.xml │ │ │ ├── Arrows.xml │ │ │ ├── CrossbowBolts.xml │ │ │ ├── FN57x28mm.xml │ │ │ ├── Flamethrower.xml │ │ │ ├── GreatArrows.xml │ │ │ ├── Javelins.xml │ │ │ ├── M6.xml │ │ │ ├── M6A1.xml │ │ │ ├── M6A3.xml │ │ │ ├── M74.xml │ │ │ ├── MusketBall.xml │ │ │ ├── PlasmaCellHeavy.xml │ │ │ ├── PlasmaCellPistol.xml │ │ │ ├── PlasmaCellRifle.xml │ │ │ ├── RPG32.xml │ │ │ ├── RPG7.xml │ │ │ ├── Recipes_Add_Make.xml │ │ │ ├── Recipes_HandGrenades.xml │ │ │ ├── SPG9.xml │ │ │ ├── SlingBullet.xml │ │ │ ├── StreamlinedArrows.xml │ │ │ └── TomahawkLAM.xml │ │ ├── ResearchProjectDef │ │ │ ├── ResearchProjects_Tier4_Misc.xml │ │ │ └── ResearchProjects_Turrets.xml │ │ ├── ResearchTabDef │ │ │ └── ResearchProjects_Turrets.xml │ │ ├── RulePackDef │ │ │ ├── RulePacks_DamageEvent.xml │ │ │ └── RulePacks_Swearing.xml │ │ ├── StatDef │ │ │ ├── Stats_Apparel.xml │ │ │ ├── Stats_Basics_Inventory.xml │ │ │ ├── Stats_Pawns_Combat.xml │ │ │ ├── Stats_Pawns_General.xml │ │ │ ├── Stats_Pawns_Inventory.xml │ │ │ ├── Stats_Stuff.xml │ │ │ ├── Stats_Weapons_Melee.xml │ │ │ └── Stats_Weapons_Ranged.xml │ │ ├── StuffCategoryDef │ │ │ └── StuffCategories.xml │ │ ├── ThingCategoryDef │ │ │ ├── 100x695mmR.xml │ │ │ ├── 10mmAuto.xml │ │ │ ├── 12.7x108mmSoviet.xml │ │ │ ├── 120mmCannon.xml │ │ │ ├── 127x55mmAR.xml │ │ │ ├── 12Gauge.xml │ │ │ ├── 12GaugeCharged.xml │ │ │ ├── 12mmRailgun.xml │ │ │ ├── 12x64mmCharged.xml │ │ │ ├── 13.2x92mmSRTuF.xml │ │ │ ├── 130mmType63.xml │ │ │ ├── 13mmGyrojet.xml │ │ │ ├── 14.5x114mmSoviet.xml │ │ │ ├── 15.2x169mm.xml │ │ │ ├── 155mmHowitzer.xml │ │ │ ├── 15x65mmDiffusingCharged.xml │ │ │ ├── 2-Bore.xml │ │ │ ├── 20Gauge.xml │ │ │ ├── 20mmFliegerfaust.xml │ │ │ ├── 20x102mmNATO.xml │ │ │ ├── 20x110mmHispano.xml │ │ │ ├── 20x128mmOerlikon.xml │ │ │ ├── 20x138mmB.xml │ │ │ ├── 20x42mmGrenade.xml │ │ │ ├── 20x82mmMauser.xml │ │ │ ├── 20x99mmShVAK.xml │ │ │ ├── 22LR.xml │ │ │ ├── 22Short.xml │ │ │ ├── 23x75mmR.xml │ │ │ ├── 25ACP.xml │ │ │ ├── 25x137mmNATO.xml │ │ │ ├── 25x40mmGrenade.xml │ │ │ ├── 25x59mmGrenade.xml │ │ │ ├── 28cmSpgr.xml │ │ │ ├── 3006Springfield.xml │ │ │ ├── 300AACBlackout.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 303British.xml │ │ │ ├── 30Carbine.xml │ │ │ ├── 30x173mmNATO.xml │ │ │ ├── 30x29mmGrenade.xml │ │ │ ├── 30x64mmFuelCell.xml │ │ │ ├── 32ACP.xml │ │ │ ├── 338LapuaMagnum.xml │ │ │ ├── 338NormaMagnum.xml │ │ │ ├── 357Magnum.xml │ │ │ ├── 357SIG.xml │ │ │ ├── 35x32mmSRGrenade.xml │ │ │ ├── 380ACP.xml │ │ │ ├── 38ACP.xml │ │ │ ├── 38Special.xml │ │ │ ├── 408CheyenneTactical.xml │ │ │ ├── 40Rimfire.xml │ │ │ ├── 40SW.xml │ │ │ ├── 40x365mmBofors.xml │ │ │ ├── 40x46mmGrenade.xml │ │ │ ├── 40x47mmGrenade.xml │ │ │ ├── 40x53mmGrenade.xml │ │ │ ├── 40x53mmVOG25Grenade.xml │ │ │ ├── 410Bore.xml │ │ │ ├── 41Rimfire.xml │ │ │ ├── 44-40Winchester.xml │ │ │ ├── 44Magnum.xml │ │ │ ├── 454Casull.xml │ │ │ ├── 455Webley.xml │ │ │ ├── 4570Gov.xml │ │ │ ├── 45ACP.xml │ │ │ ├── 45Colt.xml │ │ │ ├── 46x30mm.xml │ │ │ ├── 470NitroExpress.xml │ │ │ ├── 473x33mmCaseless.xml │ │ │ ├── 500SWMagnum.xml │ │ │ ├── 50AE.xml │ │ │ ├── 50BMG.xml │ │ │ ├── 50mmGS50Grenade.xml │ │ │ ├── 50mmType89Mortar.xml │ │ │ ├── 545x39mmSoviet.xml │ │ │ ├── 556x45mmNATO.xml │ │ │ ├── 55Boys.xml │ │ │ ├── 56-56Spencer.xml │ │ │ ├── 57x483mmBofors.xml │ │ │ ├── 58x21mmDAP92.xml │ │ │ ├── 58x42mmDBP10.xml │ │ │ ├── 5x35mmCharged.xml │ │ │ ├── 600NitroExpress.xml │ │ │ ├── 60mmMortar.xml │ │ │ ├── 60x225mmGammaShell.xml │ │ │ ├── 65x50mmSRArisaka.xml │ │ │ ├── 6mmRailgun.xml │ │ │ ├── 6x18mmCharged.xml │ │ │ ├── 6x24mmCharged.xml │ │ │ ├── 7.92x57mmMauser.xml │ │ │ ├── 7.92x94mm Patronen.xml │ │ │ ├── 70mmAPKWS.xml │ │ │ ├── 70mmMechanoidGrenade.xml │ │ │ ├── 75x54mmFrench.xml │ │ │ ├── 762x25mmTokarev.xml │ │ │ ├── 762x385mmRCannon.xml │ │ │ ├── 762x38mmR.xml │ │ │ ├── 762x39mmSoviet.xml │ │ │ ├── 762x51mmNATO.xml │ │ │ ├── 762x54mmR.xml │ │ │ ├── 763x25mmMauser.xml │ │ │ ├── 765x20mmLongue.xml │ │ │ ├── 77x58mmArisaka.xml │ │ │ ├── 792x33mmKurz.xml │ │ │ ├── 80x256mmFuelCell.xml │ │ │ ├── 81mmMortar.xml │ │ │ ├── 83mmPIATGrenade.xml │ │ │ ├── 83mmSMAW.xml │ │ │ ├── 84x246mmR.xml │ │ │ ├── 88mmRPzB.xml │ │ │ ├── 8mmRailgun.xml │ │ │ ├── 8x22mmNambu.xml │ │ │ ├── 8x35mmCharged.xml │ │ │ ├── 8x50mmRLebel.xml │ │ │ ├── 90mmCannon.xml │ │ │ ├── 950JDJ.xml │ │ │ ├── 9x18mmMakarov.xml │ │ │ ├── 9x19mmPara.xml │ │ │ ├── 9x21mmGyurza.xml │ │ │ ├── 9x39mmSoviet.xml │ │ │ ├── Arrows.xml │ │ │ ├── CrossbowBolts.xml │ │ │ ├── FN57x28mm.xml │ │ │ ├── Flamethrower.xml │ │ │ ├── GreatArrows.xml │ │ │ ├── M6.xml │ │ │ ├── M6A1.xml │ │ │ ├── M6A3.xml │ │ │ ├── M74.xml │ │ │ ├── MusketBall.xml │ │ │ ├── PlasmaCellHeavy.xml │ │ │ ├── PlasmaCellPistol.xml │ │ │ ├── PlasmaCellRifle.xml │ │ │ ├── RPG32.xml │ │ │ ├── RPG7.xml │ │ │ ├── RPO.xml │ │ │ ├── SPG9.xml │ │ │ ├── SlingBullet.xml │ │ │ ├── StreamlinedArrows.xml │ │ │ └── ThingCategories.xml │ │ ├── ThingDef │ │ │ ├── 100x695mmR.xml │ │ │ ├── 10mmAuto.xml │ │ │ ├── 12.7x108mmSoviet.xml │ │ │ ├── 120mmCannon.xml │ │ │ ├── 127mmJavelinMissile.xml │ │ │ ├── 127x55mm.xml │ │ │ ├── 12Gauge.xml │ │ │ ├── 12GaugeCharged.xml │ │ │ ├── 12mmRailgun.xml │ │ │ ├── 12x64mmCharged.xml │ │ │ ├── 13.2x92mmSRTuF.xml │ │ │ ├── 130mmType63.xml │ │ │ ├── 13mmGyrojet.xml │ │ │ ├── 14.5x114mmSoviet.xml │ │ │ ├── 15.2x169mm.xml │ │ │ ├── 150mmMBTLAWMissile.xml │ │ │ ├── 155mmHowitzer.xml │ │ │ ├── 15x65mmDiffusingCharged.xml │ │ │ ├── 2-Bore.xml │ │ │ ├── 20Gauge.xml │ │ │ ├── 20mmFliegerfaust.xml │ │ │ ├── 20x102mmNATO.xml │ │ │ ├── 20x110mmHispano.xml │ │ │ ├── 20x128mmOerlikon.xml │ │ │ ├── 20x138mmB.xml │ │ │ ├── 20x42mmGrenade.xml │ │ │ ├── 20x82mmMauser.xml │ │ │ ├── 20x99mmShVAK.xml │ │ │ ├── 22LR.xml │ │ │ ├── 22Short.xml │ │ │ ├── 23x75mmR.xml │ │ │ ├── 25ACP.xml │ │ │ ├── 25x137mmNATO.xml │ │ │ ├── 25x40mmGrenade.xml │ │ │ ├── 25x59mmGrenade.xml │ │ │ ├── 28cmSpgr.xml │ │ │ ├── 3006Springfield.xml │ │ │ ├── 300AACBlackout.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 303British.xml │ │ │ ├── 30Carbine.xml │ │ │ ├── 30x173mmNATO.xml │ │ │ ├── 30x29mmGrenade.xml │ │ │ ├── 30x64mmFuelCell.xml │ │ │ ├── 32ACP.xml │ │ │ ├── 338LapuaMagnum.xml │ │ │ ├── 338NormaMagnum.xml │ │ │ ├── 357Magnum.xml │ │ │ ├── 357SIG.xml │ │ │ ├── 35x32mmSRGrenade.xml │ │ │ ├── 380ACP.xml │ │ │ ├── 38ACP.xml │ │ │ ├── 38Special.xml │ │ │ ├── 408CheyenneTactical.xml │ │ │ ├── 40Rimfire.xml │ │ │ ├── 40SW.xml │ │ │ ├── 40x365mmBofors.xml │ │ │ ├── 40x46mmGrenade.xml │ │ │ ├── 40x47mmGrenade.xml │ │ │ ├── 40x53mmGrenade.xml │ │ │ ├── 40x53mmVOG25Grenade.xml │ │ │ ├── 410Bore.xml │ │ │ ├── 41Rimfire.xml │ │ │ ├── 44-40Winchester.xml │ │ │ ├── 44Magnum.xml │ │ │ ├── 454Casull.xml │ │ │ ├── 455Webley.xml │ │ │ ├── 4570Gov.xml │ │ │ ├── 45ACP.xml │ │ │ ├── 45Colt.xml │ │ │ ├── 46x30mm.xml │ │ │ ├── 470NitroExpress.xml │ │ │ ├── 473x33mmCaseless.xml │ │ │ ├── 500SWMagnum.xml │ │ │ ├── 50AE.xml │ │ │ ├── 50BMG.xml │ │ │ ├── 50mmGS50Grenade.xml │ │ │ ├── 50mmType89Mortar.xml │ │ │ ├── 545x39mmSoviet.xml │ │ │ ├── 556x45mmNATO.xml │ │ │ ├── 55Boys.xml │ │ │ ├── 56-56Spencer.xml │ │ │ ├── 57x483mmBofors.xml │ │ │ ├── 58x21mmDAP92.xml │ │ │ ├── 58x42mmDBP10.xml │ │ │ ├── 5x35mmCharged.xml │ │ │ ├── 600NitroExpress.xml │ │ │ ├── 60mmMortar.xml │ │ │ ├── 60x225mmGammaShell.xml │ │ │ ├── 65x50mmSRArisaka.xml │ │ │ ├── 6mmRailgun.xml │ │ │ ├── 6x18mmCharged.xml │ │ │ ├── 6x24mmCharged.xml │ │ │ ├── 7.92x57mmMauser.xml │ │ │ ├── 7.92x94mm Patronen.xml │ │ │ ├── 70mmAPKWS.xml │ │ │ ├── 70mmMechanoidGrenade.xml │ │ │ ├── 75x54mmFrench.xml │ │ │ ├── 762x25mmTokarev.xml │ │ │ ├── 762x385mmRCannon.xml │ │ │ ├── 762x38mmR.xml │ │ │ ├── 762x39mmSoviet.xml │ │ │ ├── 762x51mmNATO.xml │ │ │ ├── 762x54mmR.xml │ │ │ ├── 763x25mmMauser.xml │ │ │ ├── 765x20mmLongue.xml │ │ │ ├── 77x58mmArisaka.xml │ │ │ ├── 792x33mmKurz.xml │ │ │ ├── 80x256mmFuelCell.xml │ │ │ ├── 81mmMortar.xml │ │ │ ├── 83mmPIATGrenade.xml │ │ │ ├── 83mmSMAW.xml │ │ │ ├── 84mmAT4.xml │ │ │ ├── 84x246mmR.xml │ │ │ ├── 88mmRPzB.xml │ │ │ ├── 8mmRailgun.xml │ │ │ ├── 8x22mmNambu.xml │ │ │ ├── 8x35mmCharged.xml │ │ │ ├── 8x50mmRLebel.xml │ │ │ ├── 90mmCannon.xml │ │ │ ├── 90mmMATADOR.xml │ │ │ ├── 950JDJ.xml │ │ │ ├── 9x18mmMakarov.xml │ │ │ ├── 9x19mmPara.xml │ │ │ ├── 9x21mmGyurza.xml │ │ │ ├── 9x39mmSoviet.xml │ │ │ ├── Apparel_Carrying.xml │ │ │ ├── Apparel_Headgear.xml │ │ │ ├── Apparel_Shield.xml │ │ │ ├── Apparel_Various.xml │ │ │ ├── Arrows.xml │ │ │ ├── Buildings_Defenses.xml │ │ │ ├── Buildings_Production.xml │ │ │ ├── Buildings_Turrets.xml │ │ │ ├── CrossbowBolts.xml │ │ │ ├── Ethereal_Various.xml │ │ │ ├── FN57x28mm.xml │ │ │ ├── Filth_Various.xml │ │ │ ├── Flamethrower.xml │ │ │ ├── Gas_Various.xml │ │ │ ├── GreatArrows.xml │ │ │ ├── Items_Resource_Ammo.xml │ │ │ ├── Items_Turrets.xml │ │ │ ├── Items_Unfinished.xml │ │ │ ├── Javelins.xml │ │ │ ├── M6.xml │ │ │ ├── M6A1.xml │ │ │ ├── M6A3.xml │ │ │ ├── M72LAW.xml │ │ │ ├── M74.xml │ │ │ ├── MusketBall.xml │ │ │ ├── Plants_Cultivated_Farm.xml │ │ │ ├── PlasmaCellHeavy.xml │ │ │ ├── PlasmaCellPistol.xml │ │ │ ├── PlasmaCellRifle.xml │ │ │ ├── Projectiles_Fragments.xml │ │ │ ├── RPG28.xml │ │ │ ├── RPG32.xml │ │ │ ├── RPG7.xml │ │ │ ├── RPO.xml │ │ │ ├── SPG9.xml │ │ │ ├── SlingBullet.xml │ │ │ ├── StreamlinedArrows.xml │ │ │ ├── Things_Special.xml │ │ │ ├── TomahawkLAM.xml │ │ │ ├── Weapons_Grenades.xml │ │ │ ├── Weapons_Ranged.xml │ │ │ ├── Weapons_RangedNeolithic.xml │ │ │ ├── Weapons_Spotting.xml │ │ │ ├── Weapons_Turrets.xml │ │ │ └── _Things_Mote.xml │ │ ├── ThoughtDef │ │ │ └── Thoughts_CR.xml │ │ ├── TraitDef │ │ │ └── Traits_Spectrum.xml │ │ └── WorkGiverDef │ │ │ └── WorkGivers.xml │ ├── Keyed │ │ ├── BulkAndWeight.xml │ │ ├── Descriptions.xml │ │ ├── FloatMenu.xml │ │ ├── Keys.xml │ │ ├── LoadoutGeneric.xml │ │ ├── LongEventHandler.xml │ │ ├── Misc_Gameplay.xml │ │ ├── ModMenu.xml │ │ ├── Stats.xml │ │ ├── TextMotes.xml │ │ └── Wind.xml │ └── Strings │ │ └── NameBanks │ │ ├── SwearLibrary.txt │ │ └── SwearLibrarySuppressed.txt ├── Spanish │ ├── DefInjected │ │ ├── BodyPartGroupDef │ │ │ └── BodyPartGroups.xml │ │ ├── CombatExtended.AmmoCategoryDef │ │ │ ├── AmmoCategories_Advanced.xml │ │ │ ├── AmmoCategories_General.xml │ │ │ ├── AmmoCategories_Grenades.xml │ │ │ ├── AmmoCategories_Neolithic.xml │ │ │ ├── AmmoCategories_Rockets.xml │ │ │ └── AmmoCategories_Shotgun.xml │ │ ├── CombatExtended.AmmoSetDef │ │ │ ├── 10mmAuto.xml │ │ │ ├── 12.7x108mmSoviet.xml │ │ │ ├── 127x55mmAR.xml │ │ │ ├── 12Gauge.xml │ │ │ ├── 12GaugeCharged.xml │ │ │ ├── 12x64mmCharged.xml │ │ │ ├── 14.5x114mmSoviet.xml │ │ │ ├── 15x65mmDiffusingCharged.xml │ │ │ ├── 22LR.xml │ │ │ ├── 23x75mmR.xml │ │ │ ├── 25x40mmGrenade.xml │ │ │ ├── 3006Springfield.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 303British.xml │ │ │ ├── 30Carbine.xml │ │ │ ├── 30x29mmGrenade.xml │ │ │ ├── 30x64mmFuelCell.xml │ │ │ ├── 32ACP.xml │ │ │ ├── 338LapuaMagnum.xml │ │ │ ├── 357Magnum.xml │ │ │ ├── 357SIG.xml │ │ │ ├── 380ACP.xml │ │ │ ├── 38Special.xml │ │ │ ├── 40Rimfire.xml │ │ │ ├── 40SW.xml │ │ │ ├── 40x46mmGrenade.xml │ │ │ ├── 44-40Winchester.xml │ │ │ ├── 44Magnum.xml │ │ │ ├── 454Casull.xml │ │ │ ├── 4570Gov.xml │ │ │ ├── 45ACP.xml │ │ │ ├── 45Colt.xml │ │ │ ├── 46x30mm.xml │ │ │ ├── 473x33mmCaseless.xml │ │ │ ├── 500SWMagnum.xml │ │ │ ├── 50AE.xml │ │ │ ├── 50BMG.xml │ │ │ ├── 545x39mmSoviet.xml │ │ │ ├── 556x45mmNATO.xml │ │ │ ├── 56-56Spencer.xml │ │ │ ├── 5x35mmCharged.xml │ │ │ ├── 60x225mmGammaShell.xml │ │ │ ├── 65x50mmSRArisaka.xml │ │ │ ├── 6x18mmCharged.xml │ │ │ ├── 6x24mmCharged.xml │ │ │ ├── 7.92x57mmMauser.xml │ │ │ ├── 70mmMechanoidGrenade.xml │ │ │ ├── 75x54mmFrench.xml │ │ │ ├── 762x25mmTokarev.xml │ │ │ ├── 762x38mmR.xml │ │ │ ├── 762x39mmSoviet.xml │ │ │ ├── 762x51mmNATO.xml │ │ │ ├── 762x54mmR.xml │ │ │ ├── 763x25mmMauser.xml │ │ │ ├── 77x58mmArisaka.xml │ │ │ ├── 792x33mmKurz.xml │ │ │ ├── 80x256mmFuelCell.xml │ │ │ ├── 81mmMortar.xml │ │ │ ├── 84x246mmR.xml │ │ │ ├── 8x22mmNambu.xml │ │ │ ├── 8x35mmCharged.xml │ │ │ ├── 8x50mmRLebel.xml │ │ │ ├── 90mmCannon.xml │ │ │ ├── 9x18mmMakarov.xml │ │ │ ├── 9x19mmPara.xml │ │ │ ├── 9x39mmSoviet.xml │ │ │ ├── Arrows.xml │ │ │ ├── CrossbowBolts.xml │ │ │ ├── FN57x28mm.xml │ │ │ ├── GreatArrows.xml │ │ │ ├── Javelins.xml │ │ │ ├── RPG7.xml │ │ │ ├── SPG9.xml │ │ │ ├── SlingBullet.xml │ │ │ └── StreamlinedArrows.xml │ │ ├── ConceptDef │ │ │ ├── Concepts_NotedOpportunistic.xml │ │ │ ├── Concepts_NotedSelfshow.xml │ │ │ └── Concepts_TriggeredModal.xml │ │ ├── DamageDef │ │ │ └── Damages_LocalInjury.xml │ │ ├── HediffDef │ │ │ └── Hediffs_CE.xml │ │ ├── JobDef │ │ │ └── Jobs_CE.xml │ │ ├── PawnColumnDef │ │ │ └── PawnColumns_CE.xml │ │ ├── PawnKindDef │ │ │ └── PawnKinds_CE.xml │ │ ├── RecipeDef │ │ │ ├── 10mmAuto.xml │ │ │ ├── 12.7x108mmSoviet.xml │ │ │ ├── 127x55mm.xml │ │ │ ├── 12Gauge.xml │ │ │ ├── 12GaugeCharged.xml │ │ │ ├── 14.5x114mmSoviet.xml │ │ │ ├── 22LR.xml │ │ │ ├── 23x75mmR.xml │ │ │ ├── 25x40mmGrenade.xml │ │ │ ├── 3006Springfield.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 303British.xml │ │ │ ├── 30Carbine.xml │ │ │ ├── 30x29mmGrenade.xml │ │ │ ├── 30x64mmFuelCell.xml │ │ │ ├── 32ACP.xml │ │ │ ├── 338LapuaMagnum.xml │ │ │ ├── 357Magnum.xml │ │ │ ├── 357SIG.xml │ │ │ ├── 380ACP.xml │ │ │ ├── 38Special.xml │ │ │ ├── 40Rimfire.xml │ │ │ ├── 40SW.xml │ │ │ ├── 40x46mmGrenade.xml │ │ │ ├── 410Bore.xml │ │ │ ├── 44-40Winchester.xml │ │ │ ├── 44Magnum.xml │ │ │ ├── 454Casull.xml │ │ │ ├── 4570Gov.xml │ │ │ ├── 45ACP.xml │ │ │ ├── 45Colt.xml │ │ │ ├── 46x30mm.xml │ │ │ ├── 473x33mmCaseless.xml │ │ │ ├── 500SWMagnum.xml │ │ │ ├── 50AE.xml │ │ │ ├── 50BMG.xml │ │ │ ├── 545x39mmSoviet.xml │ │ │ ├── 556x45mmNATO.xml │ │ │ ├── 56-56Spencer.xml │ │ │ ├── 65x50mmSRArisaka.xml │ │ │ ├── 6x18mmCharged.xml │ │ │ ├── 6x24mmCharged.xml │ │ │ ├── 7.92x57mmMauser.xml │ │ │ ├── 75x54mmFrench.xml │ │ │ ├── 762x25mmTokarev.xml │ │ │ ├── 762x38mmR.xml │ │ │ ├── 762x39mmSoviet.xml │ │ │ ├── 762x51mmNATO.xml │ │ │ ├── 762x54mmR.xml │ │ │ ├── 763x25mmMauser.xml │ │ │ ├── 77x58mmArisaka.xml │ │ │ ├── 792x33mmKurz.xml │ │ │ ├── 81mmMortar.xml │ │ │ ├── 84x246mmR.xml │ │ │ ├── 8x22mmNambu.xml │ │ │ ├── 8x35mmCharged.xml │ │ │ ├── 8x50mmRLebel.xml │ │ │ ├── 90mmCannon.xml │ │ │ ├── 9x18mmMakarov.xml │ │ │ ├── 9x19mmPara.xml │ │ │ ├── 9x39mmSoviet.xml │ │ │ ├── Arrows.xml │ │ │ ├── CrossbowBolts.xml │ │ │ ├── FN57x28mm.xml │ │ │ ├── GreatArrows.xml │ │ │ ├── RPG7.xml │ │ │ ├── Recipes_Add_Make.xml │ │ │ ├── Recipes_HandGrenades.xml │ │ │ ├── SPG9.xml │ │ │ ├── SlingBullet.xml │ │ │ └── StreamlinedArrows.xml │ │ ├── ResearchProjectDef │ │ │ ├── ResearchProjects_Tier4_Misc.xml │ │ │ └── ResearchProjects_Turrets.xml │ │ ├── ResearchTabDef │ │ │ └── ResearchProjects_Turrets.xml │ │ ├── RulePackDef │ │ │ └── RulePacks_Swearing.xml │ │ ├── StatDef │ │ │ ├── Stats_Apparel.xml │ │ │ ├── Stats_Basics_Inventory.xml │ │ │ ├── Stats_Pawns_Combat.xml │ │ │ ├── Stats_Pawns_Inventory.xml │ │ │ ├── Stats_Weapons_Melee.xml │ │ │ └── Stats_Weapons_Ranged.xml │ │ ├── StuffCategoryDef │ │ │ └── StuffCategories.xml │ │ ├── ThingCategoryDef │ │ │ ├── 10mmAuto.xml │ │ │ ├── 12.7x108mmSoviet.xml │ │ │ ├── 127x55mmAR.xml │ │ │ ├── 12Gauge.xml │ │ │ ├── 12GaugeCharged.xml │ │ │ ├── 12x64mmCharged.xml │ │ │ ├── 14.5x114mmSoviet.xml │ │ │ ├── 15x65mmDiffusingCharged.xml │ │ │ ├── 22LR.xml │ │ │ ├── 23x75mmR.xml │ │ │ ├── 25x40mmGrenade.xml │ │ │ ├── 3006Springfield.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 303British.xml │ │ │ ├── 30Carbine.xml │ │ │ ├── 30x29mmGrenade.xml │ │ │ ├── 30x64mmFuelCell.xml │ │ │ ├── 32ACP.xml │ │ │ ├── 338LapuaMagnum.xml │ │ │ ├── 357Magnum.xml │ │ │ ├── 357SIG.xml │ │ │ ├── 380ACP.xml │ │ │ ├── 38Special.xml │ │ │ ├── 40Rimfire.xml │ │ │ ├── 40SW.xml │ │ │ ├── 40x46mmGrenade.xml │ │ │ ├── 410Bore.xml │ │ │ ├── 44-40Winchester.xml │ │ │ ├── 44Magnum.xml │ │ │ ├── 454Casull.xml │ │ │ ├── 4570Gov.xml │ │ │ ├── 45ACP.xml │ │ │ ├── 45Colt.xml │ │ │ ├── 46x30mm.xml │ │ │ ├── 473x33mmCaseless.xml │ │ │ ├── 500SWMagnum.xml │ │ │ ├── 50AE.xml │ │ │ ├── 50BMG.xml │ │ │ ├── 545x39mmSoviet.xml │ │ │ ├── 556x45mmNATO.xml │ │ │ ├── 56-56Spencer.xml │ │ │ ├── 5x35mmCharged.xml │ │ │ ├── 60x225mmGammaShell.xml │ │ │ ├── 65x50mmSRArisaka.xml │ │ │ ├── 6x18mmCharged.xml │ │ │ ├── 6x24mmCharged.xml │ │ │ ├── 7.92x57mmMauser.xml │ │ │ ├── 70mmMechanoidGrenade.xml │ │ │ ├── 75x54mmFrench.xml │ │ │ ├── 762x25mmTokarev.xml │ │ │ ├── 762x38mmR.xml │ │ │ ├── 762x39mmSoviet.xml │ │ │ ├── 762x51mmNATO.xml │ │ │ ├── 762x54mmR.xml │ │ │ ├── 763x25mmMauser.xml │ │ │ ├── 77x58mmArisaka.xml │ │ │ ├── 792x33mmKurz.xml │ │ │ ├── 80x256mmFuelCell.xml │ │ │ ├── 81mmMortar.xml │ │ │ ├── 84x246mmR.xml │ │ │ ├── 8x22mmNambu.xml │ │ │ ├── 8x35mmCharged.xml │ │ │ ├── 8x50mmRLebel.xml │ │ │ ├── 90mmCannon.xml │ │ │ ├── 9x18mmMakarov.xml │ │ │ ├── 9x19mmPara.xml │ │ │ ├── 9x39mmSoviet.xml │ │ │ ├── Arrows.xml │ │ │ ├── CrossbowBolts.xml │ │ │ ├── FN57x28mm.xml │ │ │ ├── GreatArrows.xml │ │ │ ├── RPG7.xml │ │ │ ├── RPO.xml │ │ │ ├── SPG9.xml │ │ │ ├── SlingBullet.xml │ │ │ ├── StreamlinedArrows.xml │ │ │ ├── ThingCategories.xml │ │ │ ├── ThingCategories_Advanced.xml │ │ │ ├── ThingCategories_Grenades.xml │ │ │ ├── ThingCategories_HighCaliber.xml │ │ │ ├── ThingCategories_Neolithic.xml │ │ │ ├── ThingCategories_Pistols.xml │ │ │ ├── ThingCategories_Rifles.xml │ │ │ ├── ThingCategories_Rockets.xml │ │ │ └── ThingCategories_Shells.xml │ │ ├── ThingDef │ │ │ ├── 10mmAuto.xml │ │ │ ├── 12.7x108mmSoviet.xml │ │ │ ├── 127x55mm.xml │ │ │ ├── 12Gauge.xml │ │ │ ├── 12GaugeCharged.xml │ │ │ ├── 12x64mmCharged.xml │ │ │ ├── 14.5x114mmSoviet.xml │ │ │ ├── 15x65mmDiffusingCharged.xml │ │ │ ├── 22LR.xml │ │ │ ├── 23x75mmR.xml │ │ │ ├── 25x40mmGrenade.xml │ │ │ ├── 3006Springfield.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 303British.xml │ │ │ ├── 30Carbine.xml │ │ │ ├── 30x29mmGrenade.xml │ │ │ ├── 30x64mmFuelCell.xml │ │ │ ├── 32ACP.xml │ │ │ ├── 338LapuaMagnum.xml │ │ │ ├── 357Magnum.xml │ │ │ ├── 357SIG.xml │ │ │ ├── 380ACP.xml │ │ │ ├── 38Special.xml │ │ │ ├── 40Rimfire.xml │ │ │ ├── 40SW.xml │ │ │ ├── 40x46mmGrenade.xml │ │ │ ├── 410Bore.xml │ │ │ ├── 44-40Winchester.xml │ │ │ ├── 44Magnum.xml │ │ │ ├── 454Casull.xml │ │ │ ├── 4570Gov.xml │ │ │ ├── 45ACP.xml │ │ │ ├── 45Colt.xml │ │ │ ├── 46x30mm.xml │ │ │ ├── 473x33mmCaseless.xml │ │ │ ├── 500SWMagnum.xml │ │ │ ├── 50AE.xml │ │ │ ├── 50BMG.xml │ │ │ ├── 545x39mmSoviet.xml │ │ │ ├── 556x45mmNATO.xml │ │ │ ├── 56-56Spencer.xml │ │ │ ├── 5x35mmCharged.xml │ │ │ ├── 60x225mmGammaShell.xml │ │ │ ├── 65x50mmSRArisaka.xml │ │ │ ├── 6x18mmCharged.xml │ │ │ ├── 6x24mmCharged.xml │ │ │ ├── 7.92x57mmMauser.xml │ │ │ ├── 70mmMechanoidGrenade.xml │ │ │ ├── 75x54mmFrench.xml │ │ │ ├── 762x25mmTokarev.xml │ │ │ ├── 762x38mmR.xml │ │ │ ├── 762x39mmSoviet.xml │ │ │ ├── 762x51mmNATO.xml │ │ │ ├── 762x54mmR.xml │ │ │ ├── 763x25mmMauser.xml │ │ │ ├── 77x58mmArisaka.xml │ │ │ ├── 792x33mmKurz.xml │ │ │ ├── 80x256mmFuelCell.xml │ │ │ ├── 81mmMortar.xml │ │ │ ├── 84x246mmR.xml │ │ │ ├── 8x22mmNambu.xml │ │ │ ├── 8x35mmCharged.xml │ │ │ ├── 8x50mmRLebel.xml │ │ │ ├── 90mmCannon.xml │ │ │ ├── 9x18mmMakarov.xml │ │ │ ├── 9x19mmPara.xml │ │ │ ├── 9x39mmSoviet.xml │ │ │ ├── Ammo_Advanced.xml │ │ │ ├── Ammo_Grenades.xml │ │ │ ├── Ammo_HighCaliber.xml │ │ │ ├── Ammo_Neolithic.xml │ │ │ ├── Ammo_Pistols.xml │ │ │ ├── Ammo_Rifles.xml │ │ │ ├── Ammo_Rockets.xml │ │ │ ├── Ammo_Shells.xml │ │ │ ├── Ammo_Shotgun.xml │ │ │ ├── Apparel_Carrying.xml │ │ │ ├── Apparel_Shield.xml │ │ │ ├── Apparel_Various.xml │ │ │ ├── Arrows.xml │ │ │ ├── Buildings_Defenses.xml │ │ │ ├── Buildings_Production.xml │ │ │ ├── Buildings_Turrets.xml │ │ │ ├── CrossbowBolts.xml │ │ │ ├── FN57x28mm.xml │ │ │ ├── Filth_Various.xml │ │ │ ├── GreatArrows.xml │ │ │ ├── Items_Resource_Ammo.xml │ │ │ ├── Items_Turrets.xml │ │ │ ├── Items_Unfinished.xml │ │ │ ├── Javelins.xml │ │ │ ├── M72LAW.xml │ │ │ ├── Plants_Cultivated_Farm.xml │ │ │ ├── Projectiles_Fragments.xml │ │ │ ├── RPG7.xml │ │ │ ├── RPO.xml │ │ │ ├── SPG9.xml │ │ │ ├── SlingBullet.xml │ │ │ ├── StreamlinedArrows.xml │ │ │ ├── Things_Special.xml │ │ │ ├── Weapons_Grenades.xml │ │ │ ├── Weapons_RangedNeolithic.xml │ │ │ ├── Weapons_Spotting.xml │ │ │ ├── Weapons_Turrets.xml │ │ │ └── _Things_Mote.xml │ │ ├── ThoughtDef │ │ │ └── Thoughts_CR.xml │ │ ├── ToolCapacityDef │ │ │ └── ToolCapacity.xml │ │ ├── TraitDef │ │ │ └── Traits_Spectrum.xml │ │ └── WorkGiverDef │ │ │ └── WorkGivers.xml │ ├── Keyed │ │ ├── BulkAndWeight.xml │ │ ├── Descriptions.xml │ │ ├── FloatMenu.xml │ │ ├── Keys.xml │ │ ├── LoadoutGeneric.xml │ │ ├── LongEventHandler.xml │ │ ├── Misc_Gameplay.xml │ │ ├── ModMenu.xml │ │ ├── TextMotes.xml │ │ └── Wind.xml │ ├── LanguageInfo.xml │ └── Strings │ │ └── NameBanks │ │ ├── SwearLibrary.txt │ │ └── SwearLibrarySuppressed.txt ├── SpanishLatin │ ├── DefInjected │ │ ├── BodyPartGroupDef │ │ │ └── BodyPartGroups.xml │ │ ├── CombatExtended.AmmoCategoryDef │ │ │ ├── AmmoCategories_Advanced.xml │ │ │ ├── AmmoCategories_General.xml │ │ │ ├── AmmoCategories_Grenades.xml │ │ │ ├── AmmoCategories_Neolithic.xml │ │ │ ├── AmmoCategories_Rockets.xml │ │ │ └── AmmoCategories_Shotgun.xml │ │ ├── CombatExtended.AmmoSetDef │ │ │ ├── 10mmAuto.xml │ │ │ ├── 12.7x108mmSoviet.xml │ │ │ ├── 127x55mmAR.xml │ │ │ ├── 12Gauge.xml │ │ │ ├── 12GaugeCharged.xml │ │ │ ├── 12x64mmCharged.xml │ │ │ ├── 14.5x114mmSoviet.xml │ │ │ ├── 15x65mmDiffusingCharged.xml │ │ │ ├── 22LR.xml │ │ │ ├── 23x75mmR.xml │ │ │ ├── 25x40mmGrenade.xml │ │ │ ├── 3006Springfield.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 303British.xml │ │ │ ├── 30Carbine.xml │ │ │ ├── 30x29mmGrenade.xml │ │ │ ├── 30x64mmFuelCell.xml │ │ │ ├── 32ACP.xml │ │ │ ├── 338LapuaMagnum.xml │ │ │ ├── 357Magnum.xml │ │ │ ├── 357SIG.xml │ │ │ ├── 380ACP.xml │ │ │ ├── 38Special.xml │ │ │ ├── 40Rimfire.xml │ │ │ ├── 40SW.xml │ │ │ ├── 40x46mmGrenade.xml │ │ │ ├── 44-40Winchester.xml │ │ │ ├── 44Magnum.xml │ │ │ ├── 454Casull.xml │ │ │ ├── 4570Gov.xml │ │ │ ├── 45ACP.xml │ │ │ ├── 45Colt.xml │ │ │ ├── 46x30mm.xml │ │ │ ├── 473x33mmCaseless.xml │ │ │ ├── 500SWMagnum.xml │ │ │ ├── 50AE.xml │ │ │ ├── 50BMG.xml │ │ │ ├── 545x39mmSoviet.xml │ │ │ ├── 556x45mmNATO.xml │ │ │ ├── 56-56Spencer.xml │ │ │ ├── 5x35mmCharged.xml │ │ │ ├── 60x225mmGammaShell.xml │ │ │ ├── 65x50mmSRArisaka.xml │ │ │ ├── 6x18mmCharged.xml │ │ │ ├── 6x24mmCharged.xml │ │ │ ├── 7.92x57mmMauser.xml │ │ │ ├── 70mmMechanoidGrenade.xml │ │ │ ├── 75x54mmFrench.xml │ │ │ ├── 762x25mmTokarev.xml │ │ │ ├── 762x38mmR.xml │ │ │ ├── 762x39mmSoviet.xml │ │ │ ├── 762x51mmNATO.xml │ │ │ ├── 762x54mmR.xml │ │ │ ├── 763x25mmMauser.xml │ │ │ ├── 77x58mmArisaka.xml │ │ │ ├── 792x33mmKurz.xml │ │ │ ├── 80x256mmFuelCell.xml │ │ │ ├── 81mmMortar.xml │ │ │ ├── 84x246mmR.xml │ │ │ ├── 8x22mmNambu.xml │ │ │ ├── 8x35mmCharged.xml │ │ │ ├── 8x50mmRLebel.xml │ │ │ ├── 90mmCannon.xml │ │ │ ├── 9x18mmMakarov.xml │ │ │ ├── 9x19mmPara.xml │ │ │ ├── 9x39mmSoviet.xml │ │ │ ├── Arrows.xml │ │ │ ├── CrossbowBolts.xml │ │ │ ├── FN57x28mm.xml │ │ │ ├── GreatArrows.xml │ │ │ ├── Javelins.xml │ │ │ ├── RPG7.xml │ │ │ ├── SPG9.xml │ │ │ ├── SlingBullet.xml │ │ │ └── StreamlinedArrows.xml │ │ ├── ConceptDef │ │ │ ├── Concepts_NotedOpportunistic.xml │ │ │ ├── Concepts_NotedSelfshow.xml │ │ │ └── Concepts_TriggeredModal.xml │ │ ├── DamageDef │ │ │ └── Damages_LocalInjury.xml │ │ ├── HediffDef │ │ │ └── Hediffs_CE.xml │ │ ├── JobDef │ │ │ └── Jobs_CE.xml │ │ ├── PawnColumnDef │ │ │ └── PawnColumns_CE.xml │ │ ├── PawnKindDef │ │ │ └── PawnKinds_CE.xml │ │ ├── RecipeDef │ │ │ ├── 10mmAuto.xml │ │ │ ├── 12.7x108mmSoviet.xml │ │ │ ├── 127x55mm.xml │ │ │ ├── 12Gauge.xml │ │ │ ├── 12GaugeCharged.xml │ │ │ ├── 14.5x114mmSoviet.xml │ │ │ ├── 22LR.xml │ │ │ ├── 23x75mmR.xml │ │ │ ├── 25x40mmGrenade.xml │ │ │ ├── 3006Springfield.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 303British.xml │ │ │ ├── 30Carbine.xml │ │ │ ├── 30x29mmGrenade.xml │ │ │ ├── 30x64mmFuelCell.xml │ │ │ ├── 32ACP.xml │ │ │ ├── 338LapuaMagnum.xml │ │ │ ├── 357Magnum.xml │ │ │ ├── 357SIG.xml │ │ │ ├── 380ACP.xml │ │ │ ├── 38Special.xml │ │ │ ├── 40Rimfire.xml │ │ │ ├── 40SW.xml │ │ │ ├── 40x46mmGrenade.xml │ │ │ ├── 410Bore.xml │ │ │ ├── 44-40Winchester.xml │ │ │ ├── 44Magnum.xml │ │ │ ├── 454Casull.xml │ │ │ ├── 4570Gov.xml │ │ │ ├── 45ACP.xml │ │ │ ├── 45Colt.xml │ │ │ ├── 46x30mm.xml │ │ │ ├── 473x33mmCaseless.xml │ │ │ ├── 500SWMagnum.xml │ │ │ ├── 50AE.xml │ │ │ ├── 50BMG.xml │ │ │ ├── 545x39mmSoviet.xml │ │ │ ├── 556x45mmNATO.xml │ │ │ ├── 56-56Spencer.xml │ │ │ ├── 65x50mmSRArisaka.xml │ │ │ ├── 6x18mmCharged.xml │ │ │ ├── 6x24mmCharged.xml │ │ │ ├── 7.92x57mmMauser.xml │ │ │ ├── 75x54mmFrench.xml │ │ │ ├── 762x25mmTokarev.xml │ │ │ ├── 762x38mmR.xml │ │ │ ├── 762x39mmSoviet.xml │ │ │ ├── 762x51mmNATO.xml │ │ │ ├── 762x54mmR.xml │ │ │ ├── 763x25mmMauser.xml │ │ │ ├── 77x58mmArisaka.xml │ │ │ ├── 792x33mmKurz.xml │ │ │ ├── 81mmMortar.xml │ │ │ ├── 84x246mmR.xml │ │ │ ├── 8x22mmNambu.xml │ │ │ ├── 8x35mmCharged.xml │ │ │ ├── 8x50mmRLebel.xml │ │ │ ├── 90mmCannon.xml │ │ │ ├── 9x18mmMakarov.xml │ │ │ ├── 9x19mmPara.xml │ │ │ ├── 9x39mmSoviet.xml │ │ │ ├── Arrows.xml │ │ │ ├── CrossbowBolts.xml │ │ │ ├── FN57x28mm.xml │ │ │ ├── GreatArrows.xml │ │ │ ├── RPG7.xml │ │ │ ├── Recipes_Add_Make.xml │ │ │ ├── Recipes_HandGrenades.xml │ │ │ ├── SPG9.xml │ │ │ ├── SlingBullet.xml │ │ │ └── StreamlinedArrows.xml │ │ ├── ResearchProjectDef │ │ │ ├── ResearchProjects_Tier4_Misc.xml │ │ │ └── ResearchProjects_Turrets.xml │ │ ├── ResearchTabDef │ │ │ └── ResearchProjects_Turrets.xml │ │ ├── RulePackDef │ │ │ └── RulePacks_Swearing.xml │ │ ├── StatDef │ │ │ ├── Stats_Apparel.xml │ │ │ ├── Stats_Basics_Inventory.xml │ │ │ ├── Stats_Pawns_Combat.xml │ │ │ ├── Stats_Pawns_Inventory.xml │ │ │ ├── Stats_Weapons_Melee.xml │ │ │ └── Stats_Weapons_Ranged.xml │ │ ├── StuffCategoryDef │ │ │ └── StuffCategories.xml │ │ ├── ThingCategoryDef │ │ │ ├── 10mmAuto.xml │ │ │ ├── 12.7x108mmSoviet.xml │ │ │ ├── 127x55mmAR.xml │ │ │ ├── 12Gauge.xml │ │ │ ├── 12GaugeCharged.xml │ │ │ ├── 12x64mmCharged.xml │ │ │ ├── 14.5x114mmSoviet.xml │ │ │ ├── 15x65mmDiffusingCharged.xml │ │ │ ├── 22LR.xml │ │ │ ├── 23x75mmR.xml │ │ │ ├── 25x40mmGrenade.xml │ │ │ ├── 3006Springfield.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 303British.xml │ │ │ ├── 30Carbine.xml │ │ │ ├── 30x29mmGrenade.xml │ │ │ ├── 30x64mmFuelCell.xml │ │ │ ├── 32ACP.xml │ │ │ ├── 338LapuaMagnum.xml │ │ │ ├── 357Magnum.xml │ │ │ ├── 357SIG.xml │ │ │ ├── 380ACP.xml │ │ │ ├── 38Special.xml │ │ │ ├── 40Rimfire.xml │ │ │ ├── 40SW.xml │ │ │ ├── 40x46mmGrenade.xml │ │ │ ├── 410Bore.xml │ │ │ ├── 44-40Winchester.xml │ │ │ ├── 44Magnum.xml │ │ │ ├── 454Casull.xml │ │ │ ├── 4570Gov.xml │ │ │ ├── 45ACP.xml │ │ │ ├── 45Colt.xml │ │ │ ├── 46x30mm.xml │ │ │ ├── 473x33mmCaseless.xml │ │ │ ├── 500SWMagnum.xml │ │ │ ├── 50AE.xml │ │ │ ├── 50BMG.xml │ │ │ ├── 545x39mmSoviet.xml │ │ │ ├── 556x45mmNATO.xml │ │ │ ├── 56-56Spencer.xml │ │ │ ├── 5x35mmCharged.xml │ │ │ ├── 60x225mmGammaShell.xml │ │ │ ├── 65x50mmSRArisaka.xml │ │ │ ├── 6x18mmCharged.xml │ │ │ ├── 6x24mmCharged.xml │ │ │ ├── 7.92x57mmMauser.xml │ │ │ ├── 70mmMechanoidGrenade.xml │ │ │ ├── 75x54mmFrench.xml │ │ │ ├── 762x25mmTokarev.xml │ │ │ ├── 762x38mmR.xml │ │ │ ├── 762x39mmSoviet.xml │ │ │ ├── 762x51mmNATO.xml │ │ │ ├── 762x54mmR.xml │ │ │ ├── 763x25mmMauser.xml │ │ │ ├── 77x58mmArisaka.xml │ │ │ ├── 792x33mmKurz.xml │ │ │ ├── 80x256mmFuelCell.xml │ │ │ ├── 81mmMortar.xml │ │ │ ├── 84x246mmR.xml │ │ │ ├── 8x22mmNambu.xml │ │ │ ├── 8x35mmCharged.xml │ │ │ ├── 8x50mmRLebel.xml │ │ │ ├── 90mmCannon.xml │ │ │ ├── 9x18mmMakarov.xml │ │ │ ├── 9x19mmPara.xml │ │ │ ├── 9x39mmSoviet.xml │ │ │ ├── Arrows.xml │ │ │ ├── CrossbowBolts.xml │ │ │ ├── FN57x28mm.xml │ │ │ ├── GreatArrows.xml │ │ │ ├── RPG7.xml │ │ │ ├── RPO.xml │ │ │ ├── SPG9.xml │ │ │ ├── SlingBullet.xml │ │ │ ├── StreamlinedArrows.xml │ │ │ ├── ThingCategories.xml │ │ │ ├── ThingCategories_Advanced.xml │ │ │ ├── ThingCategories_Grenades.xml │ │ │ ├── ThingCategories_HighCaliber.xml │ │ │ ├── ThingCategories_Neolithic.xml │ │ │ ├── ThingCategories_Pistols.xml │ │ │ ├── ThingCategories_Rifles.xml │ │ │ ├── ThingCategories_Rockets.xml │ │ │ └── ThingCategories_Shells.xml │ │ ├── ThingDef │ │ │ ├── 10mmAuto.xml │ │ │ ├── 12.7x108mmSoviet.xml │ │ │ ├── 127x55mm.xml │ │ │ ├── 12Gauge.xml │ │ │ ├── 12GaugeCharged.xml │ │ │ ├── 12x64mmCharged.xml │ │ │ ├── 14.5x114mmSoviet.xml │ │ │ ├── 15x65mmDiffusingCharged.xml │ │ │ ├── 22LR.xml │ │ │ ├── 23x75mmR.xml │ │ │ ├── 25x40mmGrenade.xml │ │ │ ├── 3006Springfield.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 303British.xml │ │ │ ├── 30Carbine.xml │ │ │ ├── 30x29mmGrenade.xml │ │ │ ├── 30x64mmFuelCell.xml │ │ │ ├── 32ACP.xml │ │ │ ├── 338LapuaMagnum.xml │ │ │ ├── 357Magnum.xml │ │ │ ├── 357SIG.xml │ │ │ ├── 380ACP.xml │ │ │ ├── 38Special.xml │ │ │ ├── 40Rimfire.xml │ │ │ ├── 40SW.xml │ │ │ ├── 40x46mmGrenade.xml │ │ │ ├── 410Bore.xml │ │ │ ├── 44-40Winchester.xml │ │ │ ├── 44Magnum.xml │ │ │ ├── 454Casull.xml │ │ │ ├── 4570Gov.xml │ │ │ ├── 45ACP.xml │ │ │ ├── 45Colt.xml │ │ │ ├── 46x30mm.xml │ │ │ ├── 473x33mmCaseless.xml │ │ │ ├── 500SWMagnum.xml │ │ │ ├── 50AE.xml │ │ │ ├── 50BMG.xml │ │ │ ├── 545x39mmSoviet.xml │ │ │ ├── 556x45mmNATO.xml │ │ │ ├── 56-56Spencer.xml │ │ │ ├── 5x35mmCharged.xml │ │ │ ├── 60x225mmGammaShell.xml │ │ │ ├── 65x50mmSRArisaka.xml │ │ │ ├── 6x18mmCharged.xml │ │ │ ├── 6x24mmCharged.xml │ │ │ ├── 7.92x57mmMauser.xml │ │ │ ├── 70mmMechanoidGrenade.xml │ │ │ ├── 75x54mmFrench.xml │ │ │ ├── 762x25mmTokarev.xml │ │ │ ├── 762x38mmR.xml │ │ │ ├── 762x39mmSoviet.xml │ │ │ ├── 762x51mmNATO.xml │ │ │ ├── 762x54mmR.xml │ │ │ ├── 763x25mmMauser.xml │ │ │ ├── 77x58mmArisaka.xml │ │ │ ├── 792x33mmKurz.xml │ │ │ ├── 80x256mmFuelCell.xml │ │ │ ├── 81mmMortar.xml │ │ │ ├── 84x246mmR.xml │ │ │ ├── 8x22mmNambu.xml │ │ │ ├── 8x35mmCharged.xml │ │ │ ├── 8x50mmRLebel.xml │ │ │ ├── 90mmCannon.xml │ │ │ ├── 9x18mmMakarov.xml │ │ │ ├── 9x19mmPara.xml │ │ │ ├── 9x39mmSoviet.xml │ │ │ ├── Ammo_Advanced.xml │ │ │ ├── Ammo_Grenades.xml │ │ │ ├── Ammo_HighCaliber.xml │ │ │ ├── Ammo_Neolithic.xml │ │ │ ├── Ammo_Pistols.xml │ │ │ ├── Ammo_Rifles.xml │ │ │ ├── Ammo_Rockets.xml │ │ │ ├── Ammo_Shells.xml │ │ │ ├── Ammo_Shotgun.xml │ │ │ ├── Apparel_Carrying.xml │ │ │ ├── Apparel_Shield.xml │ │ │ ├── Apparel_Various.xml │ │ │ ├── Arrows.xml │ │ │ ├── Buildings_Defenses.xml │ │ │ ├── Buildings_Production.xml │ │ │ ├── Buildings_Turrets.xml │ │ │ ├── CrossbowBolts.xml │ │ │ ├── FN57x28mm.xml │ │ │ ├── Filth_Various.xml │ │ │ ├── GreatArrows.xml │ │ │ ├── Items_Resource_Ammo.xml │ │ │ ├── Items_Turrets.xml │ │ │ ├── Items_Unfinished.xml │ │ │ ├── Javelins.xml │ │ │ ├── M72LAW.xml │ │ │ ├── Plants_Cultivated_Farm.xml │ │ │ ├── Projectiles_Fragments.xml │ │ │ ├── RPG7.xml │ │ │ ├── RPO.xml │ │ │ ├── SPG9.xml │ │ │ ├── SlingBullet.xml │ │ │ ├── StreamlinedArrows.xml │ │ │ ├── Things_Special.xml │ │ │ ├── Weapons_Grenades.xml │ │ │ ├── Weapons_RangedNeolithic.xml │ │ │ ├── Weapons_Spotting.xml │ │ │ ├── Weapons_Turrets.xml │ │ │ └── _Things_Mote.xml │ │ ├── ThoughtDef │ │ │ └── Thoughts_CR.xml │ │ ├── ToolCapacityDef │ │ │ └── ToolCapacity.xml │ │ ├── TraitDef │ │ │ └── Traits_Spectrum.xml │ │ └── WorkGiverDef │ │ │ └── WorkGivers.xml │ ├── Keyed │ │ ├── BulkAndWeight.xml │ │ ├── Descriptions.xml │ │ ├── FloatMenu.xml │ │ ├── Keys.xml │ │ ├── LoadoutGeneric.xml │ │ ├── LongEventHandler.xml │ │ ├── Misc_Gameplay.xml │ │ ├── ModMenu.xml │ │ ├── TextMotes.xml │ │ └── Wind.xml │ ├── LanguageInfo.xml │ └── Strings │ │ └── NameBanks │ │ ├── SwearLibrary.txt │ │ └── SwearLibrarySuppressed.txt └── Swedish │ └── Keyed │ └── Text.xml ├── LoadFolders.xml ├── Make.py ├── Makefile ├── Media ├── Art Source Files │ ├── BiologicalWarfare │ │ ├── BioGrenade_a.svg │ │ ├── BioGrenade_a_m.svg │ │ ├── BioGrenade_b.svg │ │ ├── BioGrenade_b_m.svg │ │ ├── BioGrenade_c.svg │ │ ├── BioGrenade_c_m.svg │ │ ├── BioRocket_a.svg │ │ ├── BioRocket_a_m.svg │ │ ├── BioRocket_b.svg │ │ ├── BioRocket_b_m.svg │ │ ├── BioRocket_c.svg │ │ └── BioRocket_c_m.svg │ ├── CE_762x385mmR_ammo_projectiles.svg │ ├── CE_Android_Tiers_ammo.svg │ ├── CE_ArtilleryWorldObjects.ai │ ├── CE_ChargeAndHeavyTurret_Top.ai │ ├── CE_GizmoTextures.ai │ ├── CE_Glitter_Tech_ammo.svg │ ├── CE_Glitter_Tech_projectiles.svg │ ├── CE_MechRearmIcons.ai │ ├── CE_MechTurretBase_Large.png │ ├── CE_MechTurretBase_Small.png │ ├── CE_New_Munitions__Clean.ai │ ├── CE_Shields_Source.ai │ ├── CE_charged_ammo.svg │ ├── CE_doom_ammo.svg │ ├── CE_gs50_grenade_ammo_projectiles.svg │ ├── CE_rocket_ammo.svg │ ├── CE_rocket_projectiles.svg │ ├── CE_turret_collection_ammo_projectiles.svg │ ├── Embrasure_Atlas_Bricks_source.psd │ ├── Embrasure_Blueprint_Atlas_source.psd │ └── Embrasure_MenuIcon_source.psd ├── Badge_CE_compatible.png ├── Badge_CE_compatible.svg ├── Badge_CE_official.png ├── Badge_CE_official.svg ├── CE_ModIcon_JustHat.png ├── CE_ModIcon_JustHat.svg ├── Discord_Banner.png ├── Icon_CE_large.png ├── Icon_CE_large.svg ├── MediaFolder_README.md ├── Preview_CE_armory.png ├── Preview_CE_armory.svg ├── Preview_CE_attachments.svg ├── Preview_CE_core.png ├── Preview_CE_core.svg ├── Preview_CE_dev.xcf ├── Preview_CE_guns.png ├── Preview_CE_guns.svg ├── Preview_CE_melee.png ├── Preview_CE_melee.svg ├── SubHeading_CE_acknowledgements.png ├── SubHeading_CE_attribution.png ├── SubHeading_CE_compatibility.png ├── SubHeading_CE_features.png ├── SubHeading_CE_resources.png └── SubHeadings_CE_mod_description.svg ├── ModPatches ├── A Rimworld of Magic │ ├── Defs │ │ └── A Rimworld of Magic │ │ │ └── Defs_Projectiles.xml │ └── Patches │ │ └── A Rimworld of Magic │ │ ├── Patch_Apparel.xml │ │ ├── Patch_Demon.xml │ │ ├── Patch_Direwolf.xml │ │ ├── Patch_Elemental.xml │ │ ├── Patch_Hediff.xml │ │ ├── Patch_Loadouts.xml │ │ ├── Patch_Melee.xml │ │ ├── Patch_Minion.xml │ │ ├── Patch_Ranged.xml │ │ ├── Patch_Sentinel.xml │ │ ├── Patch_Skeleton.xml │ │ ├── Patch_SpiritAnimal.xml │ │ ├── Patch_Stuff.xml │ │ ├── Patch_Traits.xml │ │ └── Patch_Turrets.xml ├── ABF Civil Synstructs │ └── Patches │ │ └── ABF Civil Synstructs │ │ ├── AlienRace_Synstructs.xml │ │ ├── Bodies_Civil.xml │ │ └── Scenarios_Crashlanded.xml ├── ABF Martial Synstructs │ ├── Defs │ │ └── ABF Martial Synstructs │ │ │ └── Ammo │ │ │ └── RotaryShrapnelcannonShell.xml │ └── Patches │ │ └── ABF Martial Synstructs │ │ ├── Bodies │ │ ├── Bodies_Bishop.xml │ │ ├── Bodies_Jellyman.xml │ │ ├── Bodies_Paladin.xml │ │ └── Bodies_Warrior.xml │ │ ├── ThingDef_Misc │ │ └── Weapons_Mech.xml │ │ └── ThingDef_Races │ │ └── AlienRace_Synstruct_HumanlikeBase.xml ├── ABF Synstruct Biomimetics │ ├── Defs │ │ └── ABF Synstruct Biomimetics │ │ │ └── Ammo_SwarmShell.xml │ └── Patches │ │ └── ABF Synstruct Biomimetics │ │ ├── Ammo │ │ └── 81mmMortar_SwarmShell.xml │ │ ├── Bodies │ │ ├── Bodies_Animal_Airborne.xml │ │ ├── Bodies_Animal_Bipedal.xml │ │ └── Bodies_Animal_Quadrupedal.xml │ │ └── ThingDef_Races │ │ └── Races_Animals.xml ├── ABF Synstructs Core │ └── Patches │ │ └── ABF Synstructs Core │ │ └── Hediffs │ │ ├── BodyParts_ABFExternals.xml │ │ └── Hediffs_ABF.xml ├── ABF Utility Synstructs │ └── Patches │ │ └── ABF Utility Synstructs │ │ ├── Bodies_Envoy.xml │ │ ├── Bodies_Grunt.xml │ │ ├── Bodies_Overseer.xml │ │ └── Races_Synstructs.xml ├── ADE Advanced Turrets │ └── Patches │ │ └── ADE Advanced Turrets │ │ ├── Buildings_Security.xml │ │ └── Remove_Mod_Ammo.xml ├── ADE Advanced turrets PLUS │ └── Patches │ │ └── ADE Advanced turrets PLUS │ │ ├── Buildings_Security.xml │ │ └── Remove_Mod_Ammo.xml ├── ADE Pulse Turrets PLUS │ └── Patches │ │ └── ADE Pulse Turrets PLUS │ │ ├── Buildings_Security.xml │ │ └── Remove_Mod_Ammo.xml ├── ADogSaid │ └── Patches │ │ └── ADogSaid │ │ └── Bionics.xml ├── ADogSaid2 │ └── Patches │ │ └── ADogSaid2 │ │ └── Bionics.xml ├── AOC The Cleanup Devil │ ├── Defs │ │ └── AOC The Cleanup Devil │ │ │ ├── Ammo_PowerCell.xml │ │ │ └── Projectiles_Devil.xml │ └── Patches │ │ └── AOC The Cleanup Devil │ │ ├── Animals.xml │ │ ├── Apparel │ │ ├── Apparel - Armor.xml │ │ ├── Apparel - Biotech.xml │ │ ├── Apparel - Flex.xml │ │ ├── Apparel - Kellion.xml │ │ ├── Apparel - Space.xml │ │ ├── Apparel.xml │ │ └── Backpacks.xml │ │ ├── BodyDef.xml │ │ ├── Grenades.xml │ │ ├── MeleeWeapons.xml │ │ ├── PawnKinds_AOC.xml │ │ ├── RangedWeapons.xml │ │ ├── Scenario - Biotech.xml │ │ ├── Scenario.xml │ │ └── Traders_AOC.xml ├── AV Mechtech │ └── Patches │ │ └── AV Mechtech │ │ ├── CompanionSphere.xml │ │ ├── Fluoid.xml │ │ ├── RoyalLancer.xml │ │ ├── RoyalLancerWeapons.xml │ │ └── Scrapper.xml ├── AV Work Queen │ └── Patches │ │ └── AV Work Queen │ │ ├── WorkQueen.xml │ │ └── WorkUrchins.xml ├── Advanced Mechanoid Warfare │ ├── Defs │ │ └── Advanced Mechanoid Warfare │ │ │ ├── Defs_Ammo.xml │ │ │ └── Defs_Turrets.xml │ └── Patches │ │ └── Advanced Mechanoid Warfare │ │ └── Patches │ │ ├── Patch_Ammo.xml │ │ ├── Patch_Armor.xml │ │ ├── Patch_DamageDef.xml │ │ ├── Patch_Loadouts.xml │ │ ├── Patch_Melee.xml │ │ ├── Patch_Races.xml │ │ ├── Patch_Ranged.xml │ │ └── Patch_Turret.xml ├── Advanced Mortar │ └── Patches │ │ └── Advanced Mortar │ │ └── AdvancedMortar_Compatbility.xml ├── All-Tech Melee │ └── Patches │ │ └── All-Tech Melee │ │ ├── Weapons_ATM_Industrial.xml │ │ ├── Weapons_ATM_Spacer.xml │ │ ├── Weapons_ATM_Tribal.xml │ │ └── Weapons_ATM_Ultratech.xml ├── Alpha Animals │ ├── Defs │ │ └── Alpha Animals │ │ │ ├── Defs_Ammo.xml │ │ │ ├── Defs_DamageDef.xml │ │ │ └── Defs_Hediffs.xml │ └── Patches │ │ └── Alpha Animals │ │ ├── AA_VFEI2 │ │ ├── AbilityDefs │ │ │ └── AbilityDefs_Patch.xml │ │ ├── HediffDefs │ │ │ └── Hediffs_Patch.xml │ │ ├── ThingDefs_Buildings │ │ │ └── Buildings_Insectoid_AlphaAnimals.xml │ │ └── ThingDefs_Races │ │ │ ├── Races_BlackEmpress.xml │ │ │ ├── Races_BlackQueen.xml │ │ │ └── Races_BlackSwarmling.xml │ │ ├── AA_VPE │ │ ├── AbilityDefs │ │ │ └── AbilityDefs_Patch.xml │ │ ├── HediffDefs │ │ │ └── Hediffs_Patch.xml │ │ └── ThingDefs_Races │ │ │ ├── Races_BlackHive_Psycasts.xml │ │ │ ├── Races_BlackLarva.xml │ │ │ ├── Races_BlackQueen.xml │ │ │ ├── Races_OcularOriginator.xml │ │ │ └── Races_Summoned_Eyeling.xml │ │ ├── AbilityDef │ │ └── AlphaAnimals_CE_Patch_Abilities.xml │ │ ├── BodyDefs │ │ ├── Bodies_CE_Patch_Arachnid.xml │ │ ├── Bodies_CE_Patch_ArmouredSlug.xml │ │ ├── Bodies_CE_Patch_Atispec.xml │ │ ├── Bodies_CE_Patch_Boats.xml │ │ ├── Bodies_CE_Patch_Butterfly.xml │ │ ├── Bodies_CE_Patch_ClawedSlug.xml │ │ ├── Bodies_CE_Patch_Crocodile.xml │ │ ├── Bodies_CE_Patch_DualJawedQuadruped.xml │ │ ├── Bodies_CE_Patch_DualTentacledQuadrupedWithJowl.xml │ │ ├── Bodies_CE_Patch_ExtraClawedQuadruped.xml │ │ ├── Bodies_CE_Patch_Eye.xml │ │ ├── Bodies_CE_Patch_EyelessQuadruped.xml │ │ ├── Bodies_CE_Patch_Hexapod.xml │ │ ├── Bodies_CE_Patch_Jellyfish.xml │ │ ├── Bodies_CE_Patch_NightCaller.xml │ │ ├── Bodies_CE_Patch_NightMule.xml │ │ ├── Bodies_CE_Patch_NightRam.xml │ │ ├── Bodies_CE_Patch_Plants.xml │ │ ├── Bodies_CE_Patch_Raptor.xml │ │ ├── Bodies_CE_Patch_ScorpionLike.xml │ │ ├── Bodies_CE_Patch_ShadowCharger.xml │ │ ├── Bodies_CE_Patch_SixEyedGoat.xml │ │ ├── Bodies_CE_Patch_Slug.xml │ │ ├── Bodies_CE_Patch_Slurrypede.xml │ │ ├── Bodies_CE_Patch_Snail.xml │ │ ├── Bodies_CE_Patch_SnakeWithTwoLimbs.xml │ │ ├── Bodies_CE_Patch_Squid.xml │ │ ├── Bodies_CE_Patch_TentacledEyelessQuadruped.xml │ │ ├── Bodies_CE_Patch_TentacledSlug.xml │ │ ├── Bodies_CE_Patch_Wasp.xml │ │ ├── Bodies_CE_Patch_WingedQuadrupedAnimalWithPawsAndTail.xml │ │ ├── Bodies_CE_Patch_WormWithArmor.xml │ │ ├── Bodies_CE_Patch_WormWithArmorAndTusks.xml │ │ └── Bodyparts_Animal.xml │ │ ├── DamageDef │ │ └── AlphaAnimals_CE_Patch_DamageDef.xml │ │ ├── ThingDefs_Misc │ │ ├── AA_Resource_CEStuff.xml │ │ ├── AlphaAnimals_CE_Gas.xml │ │ ├── AlphaAnimals_CE_Patch_Projectiles.xml │ │ ├── AlphaAnimals_CE_Patch_Resources_Leathers.xml │ │ └── Alpha_Hediffs.xml │ │ ├── ThingDefs_Races │ │ ├── AlphaAnimals_CE_Patch_Race_Aerofleet.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Agaripawn.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Agaripod.xml │ │ ├── AlphaAnimals_CE_Patch_Race_AmoebaHuge.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Amoebachungus.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Amoebasmol.xml │ │ ├── AlphaAnimals_CE_Patch_Race_AngelaMorthal.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Animalisk.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Animus_Vox.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Arctic_Lion.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Atispec.xml │ │ ├── AlphaAnimals_CE_Patch_Race_AuroraSylph.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Barb_Slinger.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Base.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Bed_Bug.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Behemoth.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Black_Hive.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Blizzarisk.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Bloodshrimp.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Bobeene.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Boulder_Mit.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Bumbledrone.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Cactipine.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Chameleon Yak.xml │ │ ├── AlphaAnimals_CE_Patch_Race_ChemfuelMyrmidon.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Cinderlisk.xml │ │ ├── AlphaAnimals_CE_Patch_Race_CrepuscularBeetle.xml │ │ ├── AlphaAnimals_CE_Patch_Race_CrescendoAnole.xml │ │ ├── AlphaAnimals_CE_Patch_Race_CrystalMit.xml │ │ ├── AlphaAnimals_CE_Patch_Race_CrystallineCaracal.xml │ │ ├── AlphaAnimals_CE_Patch_Race_DarkBeast.xml │ │ ├── AlphaAnimals_CE_Patch_Race_DarkVandal.xml │ │ ├── AlphaAnimals_CE_Patch_Race_DecayDrake.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Desert Aves.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Devil_Sheep.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Drainer.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Dunealisk.xml │ │ ├── AlphaAnimals_CE_Patch_Race_DuskProwler.xml │ │ ├── AlphaAnimals_CE_Patch_Race_DuskRat.xml │ │ ├── AlphaAnimals_CE_Patch_Race_EmpressButterfly.xml │ │ ├── AlphaAnimals_CE_Patch_Race_EngorgedTentacularAberration.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Erin.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Eyeling.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Fangsquid.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Feralisk.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Firewasp.xml │ │ ├── AlphaAnimals_CE_Patch_Race_FissionMouse.xml │ │ ├── AlphaAnimals_CE_Patch_Race_FlamigoPheonix.xml │ │ ├── AlphaAnimals_CE_Patch_Race_FrostLynx.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Frost_Ave.xml │ │ ├── AlphaAnimals_CE_Patch_Race_FrostboundBehemoth.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Frostling.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Frostmite.xml │ │ ├── AlphaAnimals_CE_Patch_Race_FungalHusk.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Gallatross.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Genix.xml │ │ ├── AlphaAnimals_CE_Patch_Race_GiantCrownedSilkie.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Gigantelope.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Great_Devourer.xml │ │ ├── AlphaAnimals_CE_Patch_Race_GreenGoo.xml │ │ ├── AlphaAnimals_CE_Patch_Race_GreyCoatedMouflon.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Groundrunner.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Helixien.xml │ │ ├── AlphaAnimals_CE_Patch_Race_InfectedAerofleet.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Ironhusk_Beetle.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Junglelisk.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Lockjaw.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Luciferbug.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Mammoth_Worm.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Mantrap.xml │ │ ├── AlphaAnimals_CE_Patch_Race_MatureFleshbeast.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Meadow_Ave.xml │ │ ├── AlphaAnimals_CE_Patch_Race_MegaLouse.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Metallovore.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Mimes.xml │ │ ├── AlphaAnimals_CE_Patch_Race_MoribundGallatross.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Murkling.xml │ │ ├── AlphaAnimals_CE_Patch_Race_MycoidColossus.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Needlepost.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Needleroll.xml │ │ ├── AlphaAnimals_CE_Patch_Race_NightMule.xml │ │ ├── AlphaAnimals_CE_Patch_Race_NightRam.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Night_Aves.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Nightling.xml │ │ ├── AlphaAnimals_CE_Patch_Race_OcularJelly.xml │ │ ├── AlphaAnimals_CE_Patch_Race_OcularNightling.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Overgrown_Colossus.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Pebble_Mit.xml │ │ ├── AlphaAnimals_CE_Patch_Race_PedigreedRaptor.xml │ │ ├── AlphaAnimals_CE_Patch_Race_PheonixOwlcat.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Plasmorph.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Radyak.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Raptor_Shrimp.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Ravager.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Rayhound.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Razorjack.xml │ │ ├── AlphaAnimals_CE_Patch_Race_RedGoo.xml │ │ ├── AlphaAnimals_CE_Patch_Race_RedSpore.xml │ │ ├── AlphaAnimals_CE_Patch_Race_RipperHound.xml │ │ ├── AlphaAnimals_CE_Patch_Race_RoughPlatedMonitor.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Royal_Aves.xml │ │ ├── AlphaAnimals_CE_Patch_Race_SandLion.xml │ │ ├── AlphaAnimals_CE_Patch_Race_SandProwler.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Sand_Squid.xml │ │ ├── AlphaAnimals_CE_Patch_Race_ShadowCharger.xml │ │ ├── AlphaAnimals_CE_Patch_Race_ShockGoat.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Skiphound.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Skyeel.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Slurrypede.xml │ │ ├── AlphaAnimals_CE_Patch_Race_SpinedGow.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Swarmling.xml │ │ ├── AlphaAnimals_CE_Patch_Race_TarGuzzler.xml │ │ ├── AlphaAnimals_CE_Patch_Race_TeratogenicOriginator.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Terramorph.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Tetra_Slug.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Thermadon.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Thunderbeast.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Thunderox.xml │ │ ├── AlphaAnimals_CE_Patch_Race_UnblinkingEye.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Wildpawn.xml │ │ ├── AlphaAnimals_CE_Patch_Race_Wildpod.xml │ │ └── AlphaAnimals_CE_Patch_Race_Windbeast.xml │ │ └── VFE_Mechs │ │ └── VFESlurrymaster.xml ├── Alpha Biomes │ ├── Defs │ │ └── Alpha Biomes │ │ │ └── Defs_Ammo.xml │ └── Patches │ │ └── Alpha Biomes │ │ ├── Items_Resource_Stuff.xml │ │ ├── RangedIndustrialGrenades.xml │ │ ├── TarShell.xml │ │ └── Tar_IED.xml ├── Alpha Books │ └── Patches │ │ └── Alpha Books │ │ ├── ABooks_Abilities_Patch.xml │ │ └── ABooks_Items_Resource_Stuff_Patch.xml ├── Alpha Genes │ ├── Defs │ │ └── Alpha Genes │ │ │ └── Ammo │ │ │ └── Forsakens_Ammo_ProjReskin.xml │ └── Patches │ │ └── Alpha Genes │ │ ├── AG_Anomaly │ │ └── HediffDefs │ │ │ └── HediffDefs_Patch.xml │ │ ├── AG_Royalty │ │ └── HediffDefs │ │ │ └── HediffDefs_Patch.xml │ │ ├── AbilityDefs │ │ └── AbilityDefs_Patch.xml │ │ ├── DamageDefs │ │ └── DamageDefs_Patch.xml │ │ ├── GeneDefs │ │ ├── GeneDefs_Archite.xml │ │ ├── GeneDefs_Armour.xml │ │ ├── GeneDefs_BodySize.xml │ │ └── GeneDefs_Health.xml │ │ ├── HediffDefs │ │ ├── Hediffs_Ability.xml │ │ ├── Hediffs_Armour.xml │ │ ├── Hediffs_Attacks.xml │ │ ├── Hediffs_Mechanitor.xml │ │ └── Hediffs_MetalResource.xml │ │ ├── ScenarioDefs │ │ └── Scenarios_Forsaken.xml │ │ ├── ThingDefs_Items │ │ └── Items_Resource_Stuff.xml │ │ ├── ThingDefs_Misc │ │ ├── AG_ApparelDefs.xml │ │ ├── Projectiles_Patch.xml │ │ ├── WeaponsMelee_Forsaken.xml │ │ └── WeaponsRanged_Forsaken.xml │ │ └── ThingDefs_Races │ │ └── Races_OcularSlinger.xml ├── Alpha Implants │ ├── Defs │ │ └── Alpha Implants │ │ │ └── AlphaImplants_Ammo.xml │ └── Patches │ │ └── Alpha Implants │ │ ├── Abilities.xml │ │ ├── Alpha Mythology │ │ └── Hediffs_RangedImplants.xml │ │ ├── AlphaImplants_CE_Patch_Projectiles.xml │ │ ├── Anomaly │ │ ├── Abilities.xml │ │ └── Hediffs_Implants.xml │ │ ├── Biotech │ │ └── Abilities.xml │ │ ├── DamageDefs.xml │ │ ├── Hediffs_Implants.xml │ │ └── Royalty │ │ ├── Abilities.xml │ │ └── Hediffs_Implants.xml ├── Alpha Mechs │ ├── Defs │ │ └── Alpha Mechs │ │ │ ├── Ammo_Alpha.xml │ │ │ └── Defs_Projectiles.xml │ └── Patches │ │ └── Alpha Mechs │ │ ├── BodyDefs │ │ ├── Bodies_Apiarist.xml │ │ ├── Bodies_Apocriton.xml │ │ ├── Bodies_Aura.xml │ │ ├── Bodies_Daggersnout.xml │ │ ├── Bodies_Demolisher.xml │ │ └── Bodies_Siegebreaker.xml │ │ ├── DamageDef │ │ └── DamageDefs.xml │ │ ├── Mods │ │ ├── AlphaBees │ │ │ └── Apiarist.xml │ │ ├── Biotech │ │ │ ├── AbilityDefs │ │ │ │ └── Abilities_Biotech.xml │ │ │ ├── Bodies │ │ │ │ ├── Bodies_Assembler.xml │ │ │ │ ├── Bodies_Guttersnipe.xml │ │ │ │ ├── Bodies_Slurrypede.xml │ │ │ │ └── Bodies_WarEmpress.xml │ │ │ ├── HediffDefs │ │ │ │ └── Hediffs.xml │ │ │ ├── ThingDef_Misc │ │ │ │ ├── Apparel.xml │ │ │ │ └── Weapons.xml │ │ │ └── ThingDef_Races │ │ │ │ ├── Base.xml │ │ │ │ ├── Races_Apoptosis.xml │ │ │ │ ├── Races_Bellicor.xml │ │ │ │ ├── Races_Bellicor_Mortar.xml │ │ │ │ ├── Races_Blitzkrieg.xml │ │ │ │ ├── Races_Guttersnipe.xml │ │ │ │ ├── Races_Infernus.xml │ │ │ │ ├── Races_Legate.xml │ │ │ │ ├── Races_Lux.xml │ │ │ │ ├── Races_MasterChef.xml │ │ │ │ ├── Races_Munifex.xml │ │ │ │ ├── Races_Optio.xml │ │ │ │ ├── Races_Polychoron.xml │ │ │ │ ├── Races_PristineAssembler.xml │ │ │ │ ├── Races_PristineSlurrypede.xml │ │ │ │ ├── Races_PristineStrider.xml │ │ │ │ ├── Races_Sagittarius.xml │ │ │ │ ├── Races_Siegemelter.xml │ │ │ │ ├── Races_Starfire.xml │ │ │ │ ├── Races_TurboCleaner.xml │ │ │ │ └── Races_WarEmpress.xml │ │ ├── Rimatomics │ │ │ └── Nucleotron.xml │ │ ├── VE_Books │ │ │ └── Librarian.xml │ │ ├── VE_Fishing │ │ │ └── Angler.xml │ │ ├── VE_Genetics │ │ │ └── Geneticor.xml │ │ ├── VE_Psycasts │ │ │ └── Projectile_Tweaks.xml │ │ ├── VFE_Mechs │ │ │ ├── Advanced │ │ │ │ ├── AdvAura.xml │ │ │ │ ├── AdvDaggersnout.xml │ │ │ │ ├── AdvFireworm.xml │ │ │ │ ├── AdvGoliath.xml │ │ │ │ ├── AdvPhalanx.xml │ │ │ │ └── AdvSiegebreaker.xml │ │ │ ├── Clean │ │ │ │ ├── VFEAura.xml │ │ │ │ ├── VFEDaggersnout.xml │ │ │ │ ├── VFEFireworm.xml │ │ │ │ ├── VFEGoliath.xml │ │ │ │ ├── VFEPhalanx.xml │ │ │ │ └── VFESiegebreaker.xml │ │ │ ├── PlayerControlled │ │ │ │ ├── PC_Aura.xml │ │ │ │ ├── PC_Daggersnout.xml │ │ │ │ ├── PC_Fireworm.xml │ │ │ │ ├── PC_Goliath.xml │ │ │ │ ├── PC_Phalanx.xml │ │ │ │ ├── PC_Siegebreaker.xml │ │ │ │ └── PC_Slurrymaster.xml │ │ │ └── VFE_Pawnkinds.xml │ │ ├── VFE_Pirates │ │ │ └── Mech_Warcasket.xml │ │ └── VRE_Sanguophage │ │ │ └── Sanguinarius.xml │ │ ├── PawnKindDefs_Mechanoids │ │ └── AlphaMechs_PawnKinds.xml │ │ ├── ThingDefs_Misc │ │ └── AlphaMechs_RangedMechanoid.xml │ │ └── ThingDefs_Races │ │ ├── AlphaMechs_Race_Aura.xml │ │ ├── AlphaMechs_Race_Daggersnout.xml │ │ ├── AlphaMechs_Race_Demolisher.xml │ │ ├── AlphaMechs_Race_Fireworm.xml │ │ ├── AlphaMechs_Race_Goliath.xml │ │ ├── AlphaMechs_Race_Phalanx.xml │ │ └── AlphaMechs_Race_Siegebreaker.xml ├── Alpha Memes │ └── Patches │ │ └── Alpha Memes │ │ ├── HediffDefs │ │ └── Hediffs_Global_Misc.xml │ │ ├── StyleCategoryDefs │ │ └── StyleCategoryDefs.xml │ │ └── ThingDefs_Races │ │ ├── Races_Animal_Special_Ideology.xml │ │ └── Races_UnshackledDryad.xml ├── Alpha Mythology │ ├── Defs │ │ └── Alpha Mythology │ │ │ └── Defs_Projectiles.xml │ └── Patches │ │ └── Alpha Mythology │ │ ├── AM_CE_Patch_Bodies.xml │ │ ├── AM_CE_Patch_Hediffs.xml │ │ ├── AM_CE_Patch_Projectiles.xml │ │ ├── AM_CE_Patch_Races.xml │ │ └── AM_CE_Patch_Resources.xml ├── Alpha Ships │ └── Patches │ │ └── Alpha Ships │ │ └── Patch_AlphaShips_DamageDefs.xml ├── Alpha Vehicles │ ├── Age of Sail │ │ └── Patches │ │ │ └── Age of Sail │ │ │ ├── Alpha_FrigateShip_Turret.xml │ │ │ ├── Alpha_PirateShip_Turret.xml │ │ │ └── Alpha_Vehicle_Ships.xml │ └── Neolithic │ │ ├── Defs │ │ └── Neolithic │ │ │ └── Ammo_Hwacha.xml │ │ └── Patches │ │ └── Neolithic │ │ ├── Alpha_Vehicle.xml │ │ ├── Alpha_Vehicle_Hwacha.xml │ │ └── Alpha_Vehicle_WarChariot.xml ├── Altered Carbon Ultratech Unleashed │ └── Patches │ │ └── Altered Carbon Ultratech Unleashed │ │ ├── AC_Apparel.xml │ │ ├── AC_Hediff.xml │ │ └── AC_Weapons.xml ├── Ancient Arsenal Warcaskets │ └── Patches │ │ └── Ancient Arsenal Warcaskets │ │ ├── AncientWarcaskets.xml │ │ ├── MeleeAncientWC.xml │ │ └── RangedWeapons.xml ├── Ancient Blade Cyborg │ └── Patches │ │ └── Ancient Blade Cyborg │ │ ├── CE_Cyborg_Race.xml │ │ ├── CE_Scenario.xml │ │ ├── CE_Weapons_Guns.xml │ │ ├── Cyborg_CoveredByNaturalArmor.xml │ │ └── Pawn_CE.xml ├── Ancient Eastern Armory │ └── Patches │ │ └── Ancient Eastern Armory │ │ ├── AsianArmory_Apparel.xml │ │ ├── AsianArmory_Armour.xml │ │ └── AsianArmory_Weapons.xml ├── Ancient Fallout Armory │ └── Patches │ │ └── Ancient Fallout Armory │ │ ├── Apparel_Armor.xml │ │ └── Headgears_Fallout.xml ├── Ancient Human │ └── Patches │ │ └── Ancient Human │ │ ├── Pawnkinds_AncientHuman.xml │ │ ├── Race_AncientHuman.xml │ │ └── Scenario_AncientHuman.xml ├── Android Tiers Reforged │ ├── Defs │ │ └── Android Tiers Reforged │ │ │ └── 81mmMortar_SwarmShell.xml │ └── Patches │ │ └── Android Tiers Reforged │ │ ├── Ammo │ │ └── 81mmMortar_SwarmShell.xml │ │ ├── Bodies │ │ ├── Bodies_Android.xml │ │ ├── Bodies_Animal_Airborne.xml │ │ ├── Bodies_Animal_Bipedal.xml │ │ ├── Bodies_Animal_Quadrupedal.xml │ │ └── BodyParts │ │ │ └── BodyParts_AndroidExternals.xml │ │ ├── Hediffs │ │ └── Hediffs_Android.xml │ │ ├── PawnkindDefs │ │ └── PawnKinds_Android.xml │ │ ├── ScenarioDefs │ │ └── Scenarios_Androids.xml │ │ ├── ThingDef_Misc │ │ └── Apparel_Packs.xml │ │ ├── ThingDef_Races │ │ ├── AlienRace_Androids.xml │ │ └── Races_Animals.xml │ │ └── TraderKindDefs │ │ └── Android_TraderKinds.xml ├── Androids Expanded │ └── Patches │ │ └── Androids Expanded │ │ ├── AlienRace │ │ ├── AlienRace_Droids.xml │ │ └── AlienRace_Drones.xml │ │ └── Bodies │ │ └── Bodies_DroidsExpanded.xml ├── Androids │ └── Patches │ │ └── Androids │ │ ├── AlienRace │ │ └── AlienRace_Chj.xml │ │ ├── Bodies │ │ └── Mod_Bodies_Droid.xml │ │ ├── HediffDefs │ │ └── Hediffs_Upgrades.xml │ │ ├── PawnkindDefs │ │ └── PawnKinds.xml │ │ ├── ScenarioDefs │ │ └── ScenarioDefs.xml │ │ └── ThingDefs_Misc │ │ ├── Apparel.xml │ │ └── Weapons_Guns.xml ├── Anima Animals - Community Temp │ └── Patches │ │ └── Anima Animals - Community Temp │ │ ├── AnimaAnimalsResources_Leathers.xml │ │ ├── AnimaWeapons.xml │ │ └── ThingDefs_AnimaCreatures.xml ├── Anima Bionics │ └── Patches │ │ └── Anima Bionics │ │ └── Hediffs_Anima_Bionics.xml ├── Anima Gear │ └── Patches │ │ └── Anima Gear │ │ ├── AnimaGear_Apparel.xml │ │ ├── AnimaGear_Resources.xml │ │ └── PsychicWeapons.xml ├── Animal Armor - Vanilla │ └── Patches │ │ └── Animal Armor - Vanilla │ │ └── ThingDefs_Apparel.xml ├── Animal Equipment │ └── Patches │ │ └── Animal Equipment │ │ ├── Apparel_Accessories.xml │ │ ├── Apparel_Clothing.xml │ │ ├── Apparel_Flak.xml │ │ ├── Apparel_Plate.xml │ │ ├── Apparel_Riding.xml │ │ ├── Apparel_Spacer.xml │ │ └── Apparel_VEF.xml ├── AnimalCollabProj │ └── Patches │ │ └── AnimalCollabProj │ │ ├── AnimalCollabProj_CE_Patch_AddClass.xml │ │ ├── AnimalCollabProj_CE_Patch_Damages.xml │ │ ├── AnimalCollabProj_CE_Patch_Hediffs.xml │ │ ├── AnimalCollabProj_CE_Patch_Misc.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Angora.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_BRhino.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Blackbear.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Cats.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Chipmunk.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_DomesticCats.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_DomesticRabbit.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_DuckBilledPlatypus.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Ferret.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Flamingo.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Giraffe.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Goat.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_GreatBustard.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Hedgehog.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Hippo.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_HoneyBadger.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Horse.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Insects.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Jackalope.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Kiwi.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Komodo.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Lizard.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Llama.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Martens.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_MegaBadger.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_MegaFerret.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Otter.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Panda.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Peccary.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Penguin.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Porcupine.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Ptarmigan.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Quail.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_RedPanda.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Scorpions.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Seal.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Silkie.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Tapir.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_ThornyDevil.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Walrus.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_WildDog.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Wolves.xml │ │ ├── AnimalCollabProj_CE_Patch_Races_Animal_Woolyrhino.xml │ │ └── AnimalCollabProj_CE_Patch_StuffRebalance.xml ├── Anthro Race │ └── Patches │ │ └── Anthro Race │ │ ├── Anthro_Bodytype.xml │ │ ├── PawnKinds_Anthro.xml │ │ ├── Race_Anthro.xml │ │ └── Scenarios_Anthro.xml ├── Antinium │ └── Patches │ │ └── Antinium │ │ ├── Bodies │ │ └── Ant_Bodies.xml │ │ ├── PawnKindDefs_Ants │ │ └── Ant_PawnKindsRaider.xml │ │ ├── Scenarios │ │ └── Ant_Scenario.xml │ │ ├── ThingDefs_Misc │ │ ├── Ant_DrugDefs.xml │ │ └── Ant_ThingDefs.xml │ │ ├── ThingDefs_Races │ │ └── Ant_AntiniumRace.xml │ │ ├── TraderKindDefs │ │ └── Ant_TraderKinds.xml │ │ └── TraitDefs │ │ └── Ant_Traits_Special.xml ├── Anty the war Ant │ ├── Defs │ │ └── Anty the war Ant │ │ │ └── Ammo_Anty.xml │ └── Patches │ │ └── Anty the war Ant │ │ ├── Ammo │ │ └── Ammo_Anty.xml │ │ ├── Bodies │ │ └── Anty_Bodytype.xml │ │ ├── Drugs │ │ └── Jelly.xml │ │ ├── PawnKindDefs │ │ └── Anty_PawnKind.xml │ │ ├── Scenario │ │ └── Anty_Scenario.xml │ │ ├── ThingDefs_Buildings │ │ └── Buildings_Turrets.xml │ │ ├── ThingDefs_Items │ │ └── Items_Resources.xml │ │ ├── ThingDefs_Misc │ │ ├── Anty_Apparel.xml │ │ ├── Weapons.xml │ │ └── WeaponsP.xml │ │ └── ThingDefs_Races │ │ ├── AlienRace_Anty.xml │ │ └── Race_Proty.xml ├── Apex - Rimworld Legends │ ├── Defs │ │ └── Apex - Rimworld Legends │ │ │ └── ApexRimworldLegends_AmmoPatch.xml │ └── Patches │ │ └── Apex - Rimworld Legends │ │ ├── ApexRimworldLegends_Weapons_AssaultRifles.xml │ │ ├── ApexRimworldLegends_Weapons_Grenades.xml │ │ ├── ApexRimworldLegends_Weapons_Launchers.xml │ │ ├── ApexRimworldLegends_Weapons_MachineGuns.xml │ │ ├── ApexRimworldLegends_Weapons_Pistols.xml │ │ ├── ApexRimworldLegends_Weapons_SMG.xml │ │ ├── ApexRimworldLegends_Weapons_Shotguns.xml │ │ └── ApexRimworldLegends_Weapons_SniperRifles.xml ├── Apparello │ └── Patches │ │ └── Apparello │ │ └── ThingDefs │ │ ├── ApparelHats_Famous.xml │ │ ├── ApparelHats_FurEyes.xml │ │ ├── ApparelHats_Various.xml │ │ ├── ApparelLayers.xml │ │ ├── Apparel_Pantaloons.xml │ │ ├── Apparel_RareTheHippogryff.xml │ │ ├── Apparel_Stuffed.xml │ │ ├── Apparel_Stuffless_And_Bases.xml │ │ └── StuffPowers.xml ├── Appliances Expanded │ └── Patches │ │ └── Appliances Expanded │ │ └── CA_ChemfuelSmithy.xml ├── Arachne │ └── Patches │ │ └── Arachne │ │ ├── AlienRace_Arachne.xml │ │ ├── ApparelNew_Arachne.xml │ │ ├── Apparel_Arachne.xml │ │ ├── Leather_Arachne.xml │ │ ├── MeleeWeapons_Arachne.xml │ │ ├── PawnKind_Arachne.xml │ │ └── Weapons_Arachne.xml ├── Arasaka Corporation │ ├── Defs │ │ └── Arasaka Corporation │ │ │ ├── 7mmMiniRailgun.xml │ │ │ └── BigBrainGyrojet.xml │ └── Patches │ │ └── Arasaka Corporation │ │ ├── Cyberweeb_Apparel.xml │ │ ├── Cyberweeb_Guns.xml │ │ ├── Cyberweeb_Headgear.xml │ │ ├── Cyberweeb_Melee.xml │ │ └── Cyberweeb_Turrets_Cyberware.xml ├── Archotech Expanded Prosthetics │ └── Patches │ │ └── Archotech Expanded Prosthetics │ │ └── AE_Hediffs_BodyParts_Prosthetics copy.xml ├── Archotech Expanded │ └── Patches │ │ └── Archotech Expanded │ │ ├── AE_Hediffs_BodyParts_Prosthetics.xml │ │ └── AE_Items_Resource_Stuff.xml ├── Archotech PowerArmor │ └── Patches │ │ └── Archotech PowerArmor │ │ └── Apparel_JDS.xml ├── Archotech Weaponry │ ├── Defs │ │ └── Archotech Weaponry │ │ │ ├── ArchoDamageDefs.xml │ │ │ └── ArchoNotAmmo.xml │ └── Patches │ │ └── Archotech Weaponry │ │ ├── MeleeArchotech.xml │ │ └── RangedArchotech.xml ├── Archotech+ │ └── Patches │ │ └── Archotech+ │ │ └── ArchotechPlus_Hediffs_BodyParts_Archotech.xml ├── Argonians of Blackmarsh │ └── Patches │ │ └── Argonians of Blackmarsh │ │ ├── Argonian_Bodytype.xml │ │ ├── PawnKinds_Argonian.xml │ │ └── Race_XArgonian.xml ├── Arrow Please │ ├── Defs │ │ └── Arrow Please │ │ │ └── Recipes_Throwable.xml │ └── Patches │ │ └── Arrow Please │ │ ├── ArrowPlease_Ranged.xml │ │ ├── ArrowPlease_Throwable.xml │ │ └── ArrowPlease_Turret.xml ├── Asimov │ └── Patches │ │ └── Asimov │ │ └── Race_AsimovBase.xml ├── Aspero Race │ └── Patches │ │ └── Aspero Race │ │ ├── CE_Patch_Animal_Meatdrake.xml │ │ ├── CE_Patch_Bodies.xml │ │ ├── CE_Patch_HediffParts.xml │ │ ├── CE_Patch_Leather.xml │ │ ├── CE_Patch_Pawnkinds.xml │ │ ├── CE_Patch_Race_Aspero.xml │ │ └── CE_Patch_Scenario.xml ├── Astoriel Legacy │ └── Patches │ │ └── Astoriel Legacy │ │ ├── Astoriel_Bodytype.xml │ │ ├── PawnKinds_Astoriel.xml │ │ ├── Race_Astoriel.xml │ │ ├── Scenarios_Astoriel.xml │ │ └── Traders_Astoriel.xml ├── Astra Militarum Regimentum - Cadia │ └── Patches │ │ └── Astra Militarum Regimentum - Cadia │ │ ├── Armor_Industrial.xml │ │ └── Headgear_Industrial.xml ├── Astra Militarum Regimentum - Krieg Officer Helmet │ └── Patches │ │ └── Astra Militarum Regimentum - Krieg Officer Helmet │ │ └── Headgear_Industrial.xml ├── Astra Militarum Regimentum - Krieg │ └── Patches │ │ └── Astra Militarum Regimentum - Krieg │ │ ├── Armor_Industrial.xml │ │ └── Headgear_Industrial.xml ├── Auto-Mortars │ └── Patches │ │ └── Auto-Mortars │ │ └── Buildings_Security.xml ├── Autocleaner │ └── Patches │ │ └── Autocleaner │ │ └── Autocleaner.xml ├── Beast Man Tribes │ ├── Defs │ │ └── Beast Man Tribes │ │ │ └── Pawnkinds_Beasts.xml │ └── Patches │ │ └── Beast Man Tribes │ │ ├── CE_Beast_Race.xml │ │ ├── New_Beasts.xml │ │ └── Patch_PawnKinds_Beasts.xml ├── Beeralope Squad │ └── Patches │ │ └── Beeralope Squad │ │ ├── Drugs │ │ └── Natural_Beer.xml │ │ └── ThingDefs_Races │ │ └── Races_Beerhybrids.xml ├── Beliar Xenotype │ └── Patches │ │ └── Beliar Xenotype │ │ └── Weapons.xml ├── Better Wool Production │ └── Patches │ │ └── Better Wool Production │ │ └── Blended_Wool_Patch.xml ├── Big and Small - Heaven and Hell │ └── Patches │ │ └── Big and Small - Heaven and Hell │ │ └── BS_Genes_Pawnkind.xml ├── Big and Small - MO │ └── Patches │ │ └── Big and Small - MO │ │ └── BS_MO_Pawnkind.xml ├── Big and Small - Medieval Factions │ └── Patches │ │ └── Big and Small - Medieval Factions │ │ └── BS_Medieval_Pawnkind.xml ├── Big and Small - Vampires and Undead │ └── Patches │ │ └── Big and Small - Vampires and Undead │ │ ├── BS_VU_Hediff.xml │ │ └── BS_VU_Pawnkind.xml ├── Big and Small Genes │ ├── Defs │ │ └── Big and Small Genes │ │ │ └── Weapons │ │ │ ├── ThingDef_Ammo.xml │ │ │ └── ThingDef_Ammo_Arrows.xml │ └── Patches │ │ └── Big and Small Genes │ │ ├── Big and Small - Enable All Optional Content │ │ └── Weapons │ │ │ ├── Ammo_Mods.xml │ │ │ ├── ThingDef_Building_Security.xml │ │ │ ├── ThingDef_MeleeWeapons.xml │ │ │ ├── ThingDef_Ranged.xml │ │ │ ├── ThingDef_RangedNeolithic.xml │ │ │ ├── ThingDef_Royalty_Weapons.xml │ │ │ └── ThingDef_Shrink.xml │ │ ├── Genes │ │ ├── GeneDefs_Armor.xml │ │ ├── GeneDefs_Small.xml │ │ └── GeneDefs_Temperature.xml │ │ ├── HediffDefs │ │ ├── Hediffs_Armor.xml │ │ ├── Hediffs_Transformations.xml │ │ └── Hediffs_Weapons.xml │ │ └── Pawnkind │ │ └── BS_Genes_Pawnkind.xml ├── Big and Small Races │ ├── Defs │ │ └── Big and Small Races │ │ │ └── VFEM2_Ammo_Medieval.xml │ └── Patches │ │ └── Big and Small Races │ │ ├── ThingDef_Armor.xml │ │ └── ThingDef_Weapon.xml ├── Big and Small Weapons │ └── Patches │ │ └── Big and Small Weapons │ │ ├── BS_Medieval_Weapons.xml │ │ ├── BS_Modern.xml │ │ ├── BS_Neolithic.xml │ │ ├── BS_Royalty_Weapons.xml │ │ └── BS_Ultratech.xml ├── BiologicalWarfare │ ├── Defs │ │ └── Ammo.xml │ └── Patches │ │ ├── Patches_Ammo.xml │ │ ├── Patches_Apparel.xml │ │ ├── Patches_CombatDiseases.xml │ │ └── Patches_Necroa.xml ├── Biomes Caverns │ └── Patches │ │ └── Biomes Caverns │ │ ├── BodyDefs │ │ ├── BiomesCore_CE_Bodies_BatBird.xml │ │ ├── BiomesCore_CE_Bodies_BeetleLikeWithHorn.xml │ │ └── BiomesCore_CE_Bodies_BipedalTail.xml │ │ ├── DamageDef │ │ └── CE_DamageDef.xml │ │ ├── Mods │ │ └── Royalty │ │ │ └── ThingDefs_Misc │ │ │ └── CE_Chitin_armor.xml │ │ ├── Plants │ │ └── CE_ExplodingAngel.xml │ │ ├── ThingDefs_Items │ │ ├── BiomesCore_CE_Items_General.xml │ │ ├── Biomes_Cavern_CE_Patch_Resources_Leathers.xml │ │ └── Items_Resource_Stuff.xml │ │ ├── ThingDefs_Misc │ │ ├── CE_Chitin_armor.xml │ │ └── Weapons │ │ │ ├── BiomesCavern_CE_Weapon_Melee.xml │ │ │ ├── CE_Boomshroom.xml │ │ │ ├── CE_MushroomWine.xml │ │ │ └── CE_Thrumbungushroom.xml │ │ └── ThingDefs_Races │ │ ├── CE_AaroxisDendoria.xml │ │ ├── CE_AcidSlug.xml │ │ ├── CE_Basilisk.xml │ │ ├── CE_BlooddropMoth.xml │ │ ├── CE_Boommoth.xml │ │ ├── CE_BovineBeetle.xml │ │ ├── CE_BushAntleredElk.xml │ │ ├── CE_CactusCrab.xml │ │ ├── CE_CaveCricket.xml │ │ ├── CE_CaveSpider.xml │ │ ├── CE_ChemSnail.xml │ │ ├── CE_CrestedLizard.xml │ │ ├── CE_CryoMammoth.xml │ │ ├── CE_CrystalCrab.xml │ │ ├── CE_CrystalFairyMole.xml │ │ ├── CE_CrystalMantis.xml │ │ ├── CE_CrystalbackBeetle.xml │ │ ├── CE_Crystalope.xml │ │ ├── CE_DarkAxolotl.xml │ │ ├── CE_DepthPenguin.xml │ │ ├── CE_Diggerpede.xml │ │ ├── CE_FacetMoth.xml │ │ ├── CE_FireSalamander.xml │ │ ├── CE_FleeceSpider.xml │ │ ├── CE_FoundryBeetle.xml │ │ ├── CE_FungalFerret.xml │ │ ├── CE_FungalMantis.xml │ │ ├── CE_FungalWeevil.xml │ │ ├── CE_GiantSlug.xml │ │ ├── CE_GiantSnail.xml │ │ ├── CE_GlowSlug.xml │ │ ├── CE_GlowSnail.xml │ │ ├── CE_GoetoToad.xml │ │ ├── CE_HungryHydra.xml │ │ ├── CE_Jellypot.xml │ │ ├── CE_JewelBeetle.xml │ │ ├── CE_Jewelbug.xml │ │ ├── CE_MaceDrake.xml │ │ ├── CE_MagmaLizard.xml │ │ ├── CE_Megabat.xml │ │ ├── CE_Megapleura.xml │ │ ├── CE_MetalloSnail.xml │ │ ├── CE_Mole.xml │ │ ├── CE_MossBeetle.xml │ │ ├── CE_MossFenec.xml │ │ ├── CE_Owlbear.xml │ │ ├── CE_Pillbug.xml │ │ ├── CE_Podworm.xml │ │ ├── CE_Rimebeak.xml │ │ ├── CE_RoyalRhino.xml │ │ ├── CE_SandLeaper.xml │ │ ├── CE_Sandpillar.xml │ │ ├── CE_SandyToad.xml │ │ ├── CE_ShatterjawBeetle.xml │ │ ├── CE_SilverSheep.xml │ │ ├── CE_SonarRabbit.xml │ │ ├── CE_Stoneback.xml │ │ ├── CE_Thrumbungus.xml │ │ ├── CE_TruffleMole.xml │ │ ├── CE_WoollySpider.xml │ │ ├── CE_WoolyBat.xml │ │ ├── CE_Xyrion.xml │ │ └── CE_Yooka.xml ├── Biomes Core │ └── Patches │ │ └── Biomes Core │ │ ├── Bodies │ │ ├── BiomesCore_CE_Bodies_Beetlelike.xml │ │ ├── BiomesCore_CE_Bodies_BeetlelikeWithStringer.xml │ │ ├── BiomesCore_CE_Bodies_GiantSpider.xml │ │ ├── BiomesCore_CE_Bodies_Larvalike.xml │ │ ├── BiomesCore_CE_Bodies_Mantislike.xml │ │ ├── BiomesCore_CE_Bodies_Mothlike.xml │ │ ├── BiomesCore_CE_Bodies_Octolike.xml │ │ ├── BiomesCore_CE_Bodies_QuadrupedWithWingsBeakTail.xml │ │ ├── BiomesCore_CE_Bodies_Scorpion.xml │ │ ├── BiomesCore_CE_Bodies_Slug.xml │ │ ├── BiomesCore_CE_Bodies_Snail.xml │ │ ├── BiomesCore_CE_Bodies_ThreeHeadQuadruped.xml │ │ └── SnailBodyPartGroups.xml │ │ ├── ThingDefs_Items │ │ ├── CE_Biomes_Core_Leathers.xml │ │ └── CE_Biomes_Core_Meat.xml │ │ └── ThingDefs_Races │ │ ├── BiomesCore_CE_Patch_Flamingo.xml │ │ ├── BiomesCore_CE_Patch_LandOctopus.xml │ │ └── BiomesCore_CE_Patch_Maxolotl.xml ├── Biomes Polluted Lands │ └── Patches │ │ └── Biomes Polluted Lands │ │ ├── BMPL_Body.xml │ │ ├── BMPL_Damages.xml │ │ ├── BMPL_Drugs.xml │ │ ├── BMPL_Hediff.xml │ │ ├── BMPL_Items.xml │ │ └── ThingDefs_Races │ │ ├── BMPL_CE_Patch_BarbedPangolin.xml │ │ ├── BMPL_CE_Patch_BiliousVarog.xml │ │ ├── BMPL_CE_Patch_BloodletterPetrel.xml │ │ ├── BMPL_CE_Patch_BunkerBug.xml │ │ ├── BMPL_CE_Patch_CarrionVulture.xml │ │ ├── BMPL_CE_Patch_FamineLocust.xml │ │ ├── BMPL_CE_Patch_FenridStoat.xml │ │ ├── BMPL_CE_Patch_GastroToad.xml │ │ ├── BMPL_CE_Patch_Glowtail.xml │ │ ├── BMPL_CE_Patch_LyncusSeal.xml │ │ ├── BMPL_CE_Patch_Maligoat.xml │ │ ├── BMPL_CE_Patch_Mantrap.xml │ │ ├── BMPL_CE_Patch_Megakrill.xml │ │ ├── BMPL_CE_Patch_Megaphorid.xml │ │ ├── BMPL_CE_Patch_Megaroach.xml │ │ ├── BMPL_CE_Patch_MucklurkerCatfish.xml │ │ ├── BMPL_CE_Patch_MutagenicNorphea.xml │ │ ├── BMPL_CE_Patch_MutatingTumorfish.xml │ │ ├── BMPL_CE_Patch_PustuleHornet.xml │ │ ├── BMPL_CE_Patch_Sacapillar.xml │ │ ├── BMPL_CE_Patch_Screecher.xml │ │ ├── BMPL_CE_Patch_SludgeCrawler.xml │ │ ├── BMPL_CE_Patch_SmogMoth.xml │ │ ├── BMPL_CE_Patch_Swarmcaller.xml │ │ ├── BMPL_CE_Patch_TaintedTurtle.xml │ │ ├── BMPL_CE_Patch_ToxSheep.xml │ │ ├── BMPL_CE_Patch_TripleSnapper.xml │ │ ├── BMPL_CE_Patch_Varmot.xml │ │ └── BMPL_CE_Patch_WasteHound.xml ├── Biotech Expansion - Insectoid │ └── Patches │ │ └── Biotech Expansion - Insectoid │ │ ├── BEI_AbilityDefs_Patch.xml │ │ └── BEI_Hediffs_BodyParts.xml ├── Biotech Expansion - Mammalia │ └── Patches │ │ └── Biotech Expansion - Mammalia │ │ └── BEMam_Hediffs_BodyParts.xml ├── Biotech Expansion - Mythic │ └── Patches │ │ └── Biotech Expansion - Mythic │ │ ├── BEM_AbilityDefs_Patch.xml │ │ └── BEM_Hediffs_BodyParts.xml ├── Biotech Mech Stuff Elongated V2 │ └── Patches │ │ └── Biotech Mech Stuff Elongated V2 │ │ ├── LightMedium │ │ ├── LightMedium_ArmorBlunt.xml │ │ ├── LightMedium_ArmorSharp.xml │ │ ├── LightMedium_CombatMelee.xml │ │ ├── LightMedium_CombatRanged.xml │ │ ├── LightMedium_Default.xml │ │ ├── LightMedium_Defense.xml │ │ └── LightMedium_EMPResistance.xml │ │ └── UltraHeavy │ │ ├── UltraHeavy_ArmorBlunt.xml │ │ ├── UltraHeavy_ArmorSharp.xml │ │ ├── UltraHeavy_CombatMelee.xml │ │ ├── UltraHeavy_CombatRanged.xml │ │ ├── UltraHeavy_Default.xml │ │ ├── UltraHeavy_Defense.xml │ │ └── UltraHeavy_EMPResistance.xml ├── Biotech Prestige Mechlord Armor 1.4 │ └── Patches │ │ └── Biotech Prestige Mechlord Armor 1.4 │ │ └── Apparel_Mech.xml ├── Birds Beyond - Temperate Forest │ └── Patches │ │ └── Birds Beyond - Temperate Forest │ │ └── Races_Animal_Birds.xml ├── Black Widows │ └── Patches │ │ └── Black Widows │ │ ├── BodyDefs │ │ └── Patch_BlackWidow_Body.xml │ │ ├── BodyPartDefs │ │ └── Patch_BlackWidows_Bodyparts.xml │ │ ├── PawnKindDefs │ │ └── Patch_PawnKinds_BlackWidow.xml │ │ ├── ThingDefs_Buildings │ │ └── Patch_Buildings_Widows.xml │ │ ├── ThingDefs_Items │ │ └── Patch_Items_Resources.xml │ │ ├── ThingDefs_Misc │ │ └── Patch_Apparel_Various.xml │ │ ├── ThingDefs_Races │ │ ├── Patch_Races_BlackWidow.xml │ │ └── Patch_Races_BlackWidow_Animal.xml │ │ └── ThingDefs_Weapons │ │ └── Patch_Weapons.xml ├── Bori Race │ ├── Defs │ │ └── Bori Race │ │ │ └── Recipes_Bori.xml │ └── Patches │ │ └── Bori Race │ │ ├── PawnKindDefs │ │ └── Bori_PawnKind.xml │ │ ├── Scenario │ │ └── Bori_Scenario.xml │ │ ├── ThingDefs_Items │ │ └── Items_Resources.xml │ │ ├── ThingDefs_Misc │ │ ├── Bori_Apparel.xml │ │ ├── Bori_Explosives.xml │ │ └── Weapons.xml │ │ └── ThingDefs_Races │ │ ├── AlienRace_Bori.xml │ │ └── Race_Realyangdang.xml ├── British Weapons Set │ └── Patches │ │ └── British Weapons Set │ │ └── British_weapon_set.xml ├── Bulgarian Imperial Uniforms │ └── Patches │ │ └── Bulgarian Imperial Uniforms │ │ ├── Apparel_Industrial.xml │ │ └── RangedIndustrial.xml ├── CP British Military Kit │ └── Patches │ │ └── CP British Military Kit │ │ ├── CP_BMK_CE_Patch_Apparel_Armor.xml │ │ ├── CP_BMK_CE_Patch_Apparel_Armor_Headgear.xml │ │ ├── CP_BMK_CE_Patch_Apparel_Backpacks.xml │ │ ├── CP_BMK_CE_Patch_Apparel_Belts.xml │ │ ├── CP_BMK_CE_Patch_Apparel_Headgear.xml │ │ ├── CP_BMK_CE_Patch_Apparel_OnSkin.xml │ │ └── CP_BMK_CE_Patch_Apparel_Shell.xml ├── CP DOOM │ ├── Defs │ │ └── CP DOOM │ │ │ ├── CP_DOOM_CE_Patch_Ammo_12Gauge_Dual.xml │ │ │ ├── CP_DOOM_CE_Patch_Ammo_BfgCell.xml │ │ │ ├── CP_DOOM_CE_Patch_Ammo_EmgMkVPistol.xml │ │ │ ├── CP_DOOM_CE_Patch_Ammo_EmgPistol.xml │ │ │ ├── CP_DOOM_CE_Patch_Ammo_GaussCannonFlechette.xml │ │ │ ├── CP_DOOM_CE_Patch_Ammo_PlasmaCell.xml │ │ │ └── CP_DOOM_CE_Patch_Ammo_Rocket.xml │ └── Patches │ │ └── CP DOOM │ │ ├── CP_DOOM_CE_Patch_Apparel_Armor.xml │ │ ├── CP_DOOM_CE_Patch_Apparel_Armor_Headgear.xml │ │ ├── CP_DOOM_CE_Patch_LauncherDOOM_Weapons.xml │ │ ├── CP_DOOM_CE_Patch_MeleeDOOM_Weapons.xml │ │ └── CP_DOOM_CE_Patch_RangedDOOM_Weapons.xml ├── CP Spec Ops The Line │ └── Patches │ │ └── CP Spec Ops The Line │ │ ├── CP_SOTL_CE_Patch_Apparel_Armor.xml │ │ ├── CP_SOTL_CE_Patch_Apparel_Armor_Headgear.xml │ │ ├── CP_SOTL_CE_Patch_Apparel_Backpacks.xml │ │ ├── CP_SOTL_CE_Patch_Apparel_Headgear.xml │ │ ├── CP_SOTL_CE_Patch_Apparel_OnSkin.xml │ │ ├── CP_SOTL_CE_Patch_PawnKindDefs.xml │ │ ├── CP_SOTL_CE_Patch_RangedIndustrial_LMG.xml │ │ ├── CP_SOTL_CE_Patch_RangedIndustrial_M_BoltAction.xml │ │ ├── CP_SOTL_CE_Patch_RangedIndustrial_R_AR_Style.xml │ │ ├── CP_SOTL_CE_Patch_RangedIndustrial_SF_Pack.xml │ │ ├── CP_SOTL_CE_Patch_RangedSpecial_AirSupport.xml │ │ └── CP_SOTL_CE_Patch_Scenario.xml ├── CP The DOOM Kit - Classic │ ├── Defs │ │ └── CP The DOOM Kit - Classic │ │ │ ├── CP_DOOM_CE_Patch_Ammo_12Gauge_Dual_Classic.xml │ │ │ ├── CP_DOOM_KitClassic_CE_Patch_Ammo_ClassicEnergyCell.xml │ │ │ └── CP_DOOM_KitClassic_CE_Patch_Ammo_ClassicRocket.xml │ └── Patches │ │ └── CP The DOOM Kit - Classic │ │ ├── CP_DOOM_KitClassic_CE_Patch_Apparel_Armor.xml │ │ ├── CP_DOOM_KitClassic_CE_Patch_Apparel_Armor_Headgear.xml │ │ ├── CP_DOOM_KitClassic_CE_Patch_LauncherDOOM_Weapons.xml │ │ ├── CP_DOOM_KitClassic_CE_Patch_MeleeDOOM_Weapons.xml │ │ └── CP_DOOM_KitClassic_CE_Patch_RangedDOOM_Weapons.xml ├── Call of Cthulhu - Cosmic Horrors │ ├── Defs │ │ └── Call of Cthulhu - Cosmic Horrors │ │ │ └── Ammo.xml │ └── Patches │ │ └── Call of Cthulhu - Cosmic Horrors │ │ ├── BodyDefs_CosmicHorrors │ │ ├── Bodies_BlackTree.xml │ │ ├── Bodies_Fishboy.xml │ │ ├── Bodies_Migo.xml │ │ ├── Bodies_Shoggoth.xml │ │ ├── Bodies_Squidward.xml │ │ └── Bodies_Wormy.xml │ │ ├── Leather │ │ └── ROM_CosmicHorrors_Resources_Leathers.xml │ │ ├── MiGo_Weapons.xml │ │ └── PawnKindDefs_CosmicHorrors │ │ ├── CH_KindsChthonian.xml │ │ ├── CH_KindsCthulhids.xml │ │ ├── CH_KindsDarkYoung.xml │ │ ├── CH_KindsDeepOne.xml │ │ ├── CH_KindsMiGo.xml │ │ ├── CH_KindsShoggoths.xml │ │ └── CH_KindsStarVampire.xml ├── Call of Duty - Zombies Pack │ ├── Defs │ │ └── Call of Duty - Zombies Pack │ │ │ ├── Ammo │ │ │ ├── Blunders │ │ │ │ ├── Acidgat.xml │ │ │ │ ├── Acidgat_Punched.xml │ │ │ │ ├── Blundergat.xml │ │ │ │ ├── Blundergat_Punched.xml │ │ │ │ ├── Magmagat.xml │ │ │ │ └── Magmagat_Punched.xml │ │ │ ├── Hells │ │ │ │ ├── Hells Retriever.xml │ │ │ │ └── Hells Retriever_Punched.xml │ │ │ ├── Rayguns │ │ │ │ ├── Raygun.xml │ │ │ │ ├── Raygun2.xml │ │ │ │ ├── Raygun2V.xml │ │ │ │ ├── Raygun2V_Punched.xml │ │ │ │ ├── Raygun2X.xml │ │ │ │ ├── Raygun2X_Punched.xml │ │ │ │ ├── Raygun2Y.xml │ │ │ │ ├── Raygun2Y_Punched.xml │ │ │ │ ├── Raygun2Z.xml │ │ │ │ ├── Raygun2Z_Punched.xml │ │ │ │ ├── Raygun2_Punched.xml │ │ │ │ ├── Raygun3.xml │ │ │ │ ├── Raygun3GKZ.xml │ │ │ │ ├── Raygun3GKZ_Punched.xml │ │ │ │ ├── Raygun3_Punched.xml │ │ │ │ └── Raygun_Punched.xml │ │ │ ├── Recipe │ │ │ │ ├── 12Gauge-Punched.xml │ │ │ │ ├── 303British-Punched.xml │ │ │ │ ├── 30x64mmFuelCell-Punched.xml │ │ │ │ ├── 44Magnum-Punched.xml │ │ │ │ ├── 45ACP-Punched.xml │ │ │ │ ├── 556x45mmNATO-Punched.xml │ │ │ │ ├── 6x24mmCharged-Punched.xml │ │ │ │ ├── 762x51mmNATO-Punched.xml │ │ │ │ └── 762x54mmR-Punched.xml │ │ │ ├── Staffs │ │ │ │ ├── Staff of Fire.xml │ │ │ │ ├── Staff of Fire_Punched.xml │ │ │ │ ├── Staff of Ice.xml │ │ │ │ ├── Staff of Ice_Punched.xml │ │ │ │ ├── Staff of Lightning.xml │ │ │ │ ├── Staff of Lightning_Punched.xml │ │ │ │ ├── Staff of Wind.xml │ │ │ │ └── Staff of Wind_Punched.xml │ │ │ ├── Thunders │ │ │ │ ├── Thunders.xml │ │ │ │ ├── Thunders_Punched.xml │ │ │ │ ├── Tundra.xml │ │ │ │ └── Tundra_Punched.xml │ │ │ ├── Winters │ │ │ │ ├── WintersHowl.xml │ │ │ │ └── WintersHowl_Punched.xml │ │ │ ├── Wunders │ │ │ │ ├── Wunders.xml │ │ │ │ ├── WundersS.xml │ │ │ │ ├── WundersS_Punched.xml │ │ │ │ └── Wunders_Punched.xml │ │ │ └── Zaps │ │ │ │ ├── Waveguns.xml │ │ │ │ ├── Waveguns_Punched.xml │ │ │ │ ├── Zapgun Blue.xml │ │ │ │ ├── Zapgun Red.xml │ │ │ │ └── Zapguns Punched.xml │ │ │ ├── Punched Wonders.xml │ │ │ ├── Punched.xml │ │ │ └── Wonders.xml │ └── Patches │ │ └── Call of Duty - Zombies Pack │ │ ├── MysteryBox.xml │ │ └── Weapons │ │ ├── Base-Persona.xml │ │ ├── Base.xml │ │ ├── Melee-Persona.xml │ │ ├── Melee.xml │ │ ├── Melee_Punched.xml │ │ ├── Melee_Royalty.xml │ │ ├── Wonder-Persona.xml │ │ ├── Wonder.xml │ │ └── Wonder_Punched.xml ├── Carbon │ └── Patches │ │ └── Carbon │ │ └── Items_Resource_Stuff.xml ├── Censored Armory │ ├── Defs │ │ └── Censored Armory │ │ │ ├── 30mm Rifle Grenade.xml │ │ │ ├── 37x249mmR.xml │ │ │ ├── 75cm leIG18.xml │ │ │ ├── 75x714mmR.xml │ │ │ ├── 80mm Panzerfaust.xml │ │ │ └── Recipes_Grenades.xml │ └── Patches │ │ └── Censored Armory │ │ ├── Weapons_Guns.xml │ │ ├── Weapons_Melee.xml │ │ └── Weapons_Turrets.xml ├── Charge-Loading Lee-Enfield │ └── Patches │ │ └── Charge-Loading Lee-Enfield │ │ └── ThingDefs_Weapons.xml ├── Chougou Mechs │ ├── Defs │ │ └── Chougou Mechs │ │ │ └── 5x35mmCharged_CGM.xml │ └── Patches │ │ └── Chougou Mechs │ │ ├── PawnKinds │ │ └── PawnKinds.xml │ │ ├── Scenarios │ │ └── Scenarios.xml │ │ ├── ThingDefs_Misc │ │ └── Weapons_Mechanoid.xml │ │ └── ThingDefs_Races │ │ └── Races_Mechanoid.xml ├── Civilization Beyond Earth Armor Sets │ ├── Defs │ │ └── Civilization Beyond Earth Armor Sets │ │ │ └── Ammo.xml │ └── Patches │ │ └── Civilization Beyond Earth Armor Sets │ │ ├── Apparels.xml │ │ └── Weapons.xml ├── Clay Soldier Race │ └── Patches │ │ └── Clay Soldier Race │ │ ├── Bodies │ │ ├── BodyParts_General.xml │ │ └── Golem_Bodytype.xml │ │ └── ThingDefs_Races │ │ └── AlienRace_Claygolem.xml ├── Colonial Shuttle │ └── Patches │ │ └── Colonial Shuttle │ │ ├── Shuttle.xml │ │ └── ShuttleUpgrades.xml ├── Colony Leadership │ └── Patches │ │ └── Colony Leadership │ │ └── WarriorLeadership.xml ├── Combat Enthusiast's Collection │ └── Patches │ │ └── Combat Enthusiast's Collection │ │ └── ThingDefs_Weapons.xml ├── Comigo's Fancy Floating Turrets │ └── Patches │ │ └── Comigo's Fancy Floating Turrets │ │ └── ThingDefs_Turrets.xml ├── Communitable Diseases │ └── Patches │ │ └── Communitable Diseases │ │ └── Communitable_Disease_Apparel.xml ├── Cossacks of the Rim │ └── Patches │ │ └── Cossacks of the Rim │ │ ├── Cossack_Apparel.xml │ │ ├── Cossack_MeleeMedieval.xml │ │ └── Cossack_Pawnkinds.xml ├── Crossbows │ ├── Defs │ │ └── Crossbows │ │ │ └── Ammo.xml │ └── Patches │ │ └── Crossbows │ │ └── Weapons_Ranged.xml ├── Crowns and Regalia │ └── Patches │ │ └── Crowns and Regalia │ │ └── ThingDefs_Crowns.xml ├── Crypto Arsenal │ ├── Defs │ │ └── Crypto Arsenal │ │ │ └── Ammo_CryoHarpoon.xml │ └── Patches │ │ └── Crypto Arsenal │ │ ├── Apparel_Shield.xml │ │ ├── Weapons_Crypto.xml │ │ ├── Weapons_Persona.xml │ │ └── Weapons_ranged.xml ├── Crypto Weapon Restored │ ├── Defs │ │ └── Crypto Weapon Restored │ │ │ ├── Ammo_CryptoWeapons.xml │ │ │ ├── Ammo_CryptoWeapons_Warcasket.xml │ │ │ └── DamageDefs.xml │ └── Patches │ │ └── Crypto Weapon Restored │ │ ├── Shield_Crypto.xml │ │ ├── Weapon_CryptoWeapons_Warcasket.xml │ │ └── Weapons_CryptoWeapons.xml ├── CuprosAlloys │ └── Patches │ │ └── CuprosAlloys │ │ └── ThingDefs │ │ ├── Patch_Materials_Alloy_Advanced.xml │ │ ├── Patch_Materials_Alloy_Decorative.xml │ │ ├── Patch_Materials_Alloy_Utility.xml │ │ └── Patch_Materials_BaseMetal.xml ├── Cursed Guns │ ├── Defs │ │ └── Cursed Guns │ │ │ ├── Ammo_Cursed.xml │ │ │ └── Recipes_Cursed.xml │ └── Patches │ │ └── Cursed Guns │ │ ├── CursedGuns.xml │ │ └── Fedora.xml ├── Cybernet │ └── Patches │ │ └── Cybernet │ │ └── HediffDefs │ │ ├── Hediffs_CyberNet_BodyParts.xml │ │ └── Hediffs_CyberNet_Brain.xml ├── Cybernetic Organism and Neural Network │ └── Patches │ │ └── Cybernetic Organism and Neural Network │ │ └── Hediffs │ │ ├── CONN_CombatAdvancedBionics.xml │ │ ├── CONN_CombatBionics.xml │ │ ├── CONN_MindAlteringBionics.xml │ │ └── CONN_ProductiveBionics.xml ├── Cybernetic Warfare and Special Weapons │ └── Patches │ │ └── Cybernetic Warfare and Special Weapons │ │ ├── CyberneticWarfare_Melee.xml │ │ ├── CyberneticWarfare_Ranged_Industrial.xml │ │ └── CyberneticWarfare_Ranged_Spacer.xml ├── DD Elves │ └── Patches │ │ └── DD Elves │ │ ├── AnimalDefs.xml │ │ ├── PawnKindDefs.xml │ │ ├── ThingDefs_Apparel.xml │ │ ├── ThingDefs_Headgear.xml │ │ ├── ThingDefs_MeleeWeapon.xml │ │ ├── ThingDefs_Misc.xml │ │ ├── ThingDefs_RangedWeapon.xml │ │ └── ThingDefs_Shields.xml ├── DD House Sanguin │ └── Patches │ │ └── DD House Sanguin │ │ ├── Mods │ │ ├── Medieval Overhaul │ │ │ ├── Bloodwine_MO.xml │ │ │ └── PawnKinds_MO.xml │ │ ├── RimFantasy - Medieval Overhaul │ │ │ └── Blood_Weapons.xml │ │ └── Vanilla Faction Expanded Medieval │ │ │ └── BloodWine_VFEM.xml │ │ ├── ThingDefs_Apparel.xml │ │ ├── ThingDefs_Headgear.xml │ │ ├── ThingDefs_HorseApparel.xml │ │ ├── ThingDefs_MeleeWeapons.xml │ │ ├── ThingDefs_Misc.xml │ │ └── ThingDefs_Shields.xml ├── DMWands │ ├── Defs │ │ └── DMWands │ │ │ └── Projectiles_Wands.xml │ └── Patches │ │ └── DMWands │ │ └── Patch_Weapons.xml ├── Dark Ages - Beasts and Monsters │ └── Patches │ │ └── Dark Ages - Beasts and Monsters │ │ ├── AbilityDef │ │ └── DABeasts_CE_Patch_Abilities.xml │ │ ├── BodyDefs │ │ ├── DABeasts_CE_Patch_Body_BipedalClawTail.xml │ │ ├── DABeasts_CE_Patch_Body_BipedalTail.xml │ │ └── DABeasts_CE_Patch_Body_Scorpionlike.xml │ │ ├── Projectiles │ │ └── DABeasts_CE_Patch_Projectiles.xml │ │ ├── ThingDef_Races │ │ ├── DABeasts_CE_Patch_Race_Barog.xml │ │ ├── DABeasts_CE_Patch_Race_BeardedTroll.xml │ │ ├── DABeasts_CE_Patch_Race_BlackScribe.xml │ │ ├── DABeasts_CE_Patch_Race_Crestel.xml │ │ ├── DABeasts_CE_Patch_Race_Goldilox.xml │ │ ├── DABeasts_CE_Patch_Race_ImperialRedhound.xml │ │ ├── DABeasts_CE_Patch_Race_Muffton.xml │ │ ├── DABeasts_CE_Patch_Race_NorthernDrog.xml │ │ ├── DABeasts_CE_Patch_Race_Phrak.xml │ │ ├── DABeasts_CE_Patch_Race_Pilgrim.xml │ │ └── DABeasts_CE_Patch_Race_Taraal.xml │ │ └── ThingDefs_Items │ │ ├── DABeasts_CE_Patch_Items_Exotic.xml │ │ ├── DABeasts_CE_Patch_Items_Meat.xml │ │ └── DABeasts_CE_Patch_Items_Stuff.xml ├── Dark Ages - Medieval Tools │ └── Patches │ │ └── Dark Ages - Medieval Tools │ │ └── MeleeMedieval.xml ├── Darkest Night SK Steam │ └── Patches │ │ └── Darkest Night SK Steam │ │ └── Darkest_Void_CE.xml ├── Darkest Rim Core │ └── Patches │ │ └── Darkest Rim Core │ │ └── Apparel_DarkestCE.xml ├── Deployable Turret │ └── Patches │ │ └── Deployable Turret │ │ └── Patch_MicroTurret.xml ├── Det's Energy Weapons │ ├── Defs │ │ └── Det's Energy Weapons │ │ │ └── EnergyBoltAmmoSet.XML │ └── Patches │ │ └── Det's Energy Weapons │ │ └── Guns_Defs.XML ├── Det's Xenotypes - Boglegs │ └── Patches │ │ └── Det's Xenotypes - Boglegs │ │ ├── Abilities_Boglegs.xml │ │ └── Hediff_Boglegs.xml ├── Det's Xenotypes - Half-foot │ └── Patches │ │ └── Det's Xenotypes - Half-foot │ │ ├── Apparel_Headgear.xml │ │ └── Weapon_Melee_Spacer.xml ├── Det's Xenotypes - Keshig │ └── Patches │ │ └── Det's Xenotypes - Keshig │ │ ├── Drugs_Keshig.xml │ │ ├── GeneDef_Keshig.xml │ │ ├── Hediffs_Keshig.xml │ │ ├── Pawnkinds_Keshig.xml │ │ └── Weapon_Melee_Keshig.xml ├── Det's Xenotypes - Venators │ └── Patches │ │ └── Det's Xenotypes - Venators │ │ ├── Apparel_Venators.xml │ │ ├── GeneDef_Venators.xml │ │ └── Weapon_Ranged_Venators.xml ├── Devilstrand Animals │ └── Patches │ │ └── Devilstrand Animals │ │ └── Devilstrand_Animals.xml ├── Devilstrand Colour Bundle │ └── Patches │ │ └── Devilstrand Colour Bundle │ │ └── Items_Resources_Stuff.xml ├── Dinosauria │ └── Patches │ │ └── Dinosauria │ │ ├── Dino_Bodies.xml │ │ ├── Items_Resource_Dinosauria_Items.xml │ │ ├── Items_Resource_Dinosauria_Stuff_Leather.xml │ │ └── Races_Animal_Dinosauria.xml ├── Diverse Mechanoid War Procedure │ ├── Defs │ │ └── Diverse Mechanoid War Procedure │ │ │ └── Ammo.xml │ └── Patches │ │ └── Diverse Mechanoid War Procedure │ │ ├── Ammo │ │ └── 70mmToxAmmo.xml │ │ ├── BodyDefs │ │ └── Knight.xml │ │ ├── HediffDefs │ │ └── MechanoidHediffs.xml │ │ ├── ThingDefs_Misc │ │ └── RangedMechanoid.xml │ │ └── ThingDefs_Races │ │ ├── PawnKinds_Mechanoids.xml │ │ ├── Races_Mechanoids_Light.xml │ │ └── Races_Mechanoids_Medium.xml ├── Divine Order │ └── Patches │ │ └── Divine Order │ │ ├── PawnKindDefs │ │ └── Divine_Order_CE_Pawnkinds.xml │ │ ├── Scenario │ │ └── DivineOrder_CE_Scenario_Patch.xml │ │ ├── ThingDef_Misc │ │ ├── Divine_Order_CE_Apparel.xml │ │ ├── Divine_Order_CE_Armor.xml │ │ ├── Divine_Order_CE_Headgear.xml │ │ ├── Divine_Order_CE_Shield.xml │ │ └── Weapons │ │ │ ├── Divine_Order_CE_Grenades.xml │ │ │ ├── Divine_Order_CE_Melee.xml │ │ │ └── Divine_Order_CE_Ranged.xml │ │ ├── ThingDef_Races │ │ └── Divine_Order_CE_Horse.xml │ │ └── TraderDefs │ │ └── Divine_Order_CE_Traders.xml ├── Doom Factions │ ├── Defs │ │ └── Doom Factions │ │ │ └── Ammo_Doom.xml │ └── Patches │ │ └── Doom Factions │ │ ├── DoomFactions_Ammo.xml │ │ ├── DoomFactions_Apperal.xml │ │ ├── DoomFactions_Hediff.xml │ │ ├── DoomFactions_PawnKinds.xml │ │ ├── DoomFactions_Traders.xml │ │ └── DoomFactions_Weapons.xml ├── Dragons Descent │ ├── Defs │ │ └── Dragons Descent │ │ │ └── Projectile_Dragon.xml │ └── Patches │ │ └── Dragons Descent │ │ ├── BodyDefs │ │ └── Bodies_Animal_Dragon.xml │ │ ├── DamageDefs │ │ ├── DamageDef_DraconicFlame.xml │ │ └── DamageDef_DragonMelee.xml │ │ ├── Drugs │ │ ├── Draconic_Ambrosia.xml │ │ ├── Dragon_Blood_Potion.xml │ │ └── Moon_Stone.xml │ │ ├── HediffDefs │ │ └── Hediff_Attacks.xml │ │ ├── Projectiles │ │ └── Projectile_Dragon.xml │ │ ├── Scenarios │ │ └── Scenarios_DragonsDescent.xml │ │ ├── ThingDefs_Items │ │ ├── Items_Exotic.xml │ │ ├── Items_Resource_Leather.xml │ │ └── Items_Resource_Scale.xml │ │ ├── ThingDefs_Misc │ │ ├── Apparel_Headgear.xml │ │ ├── Apparel_Various.xml │ │ └── Weapons │ │ │ ├── MeleeDD.xml │ │ │ └── RangedDD.xml │ │ └── ThingDefs_Races │ │ ├── Races_Animal_Common_Dragon.xml │ │ ├── Races_Animal_Dragon_Base.xml │ │ └── Races_Animal_Rare_Dragon.xml ├── Dubs Rimatomics │ └── Patches │ │ └── Dubs Rimatomics │ │ ├── Apparel_Atomic.xml │ │ ├── Atomics_Trader.xml │ │ ├── Damages_LocalInjury.xml │ │ └── Turrets_Rimatomics.xml ├── Dumbs' Dachshunds │ └── Patches │ │ └── Dumbs' Dachshunds │ │ └── ThingDefs_Dachshund.xml ├── Dusk Armory │ └── Patches │ │ └── Dusk Armory │ │ ├── Apparel_Dusk_Armor.xml │ │ ├── Apparel_Dusk_Cloak.xml │ │ ├── Apparel_Dusk_Helmet.xml │ │ ├── Apparel_Dusk_Hood.xml │ │ ├── Apparel_Dusk_Hooded_Helmet.xml │ │ ├── Weapons_Dusk_Melee.xml │ │ └── Weapons_Dusk_Ranged.xml ├── Dust Bunnies │ └── Patches │ │ └── Dust Bunnies │ │ └── Races_DustBunny.xml ├── EPOE Forked Royalty DLC expansion │ └── Patches │ │ └── EPOE Forked Royalty DLC expansion │ │ └── Bionics_Patch.xml ├── EPOE Forked │ └── Patches │ │ └── EPOE Forked │ │ └── Bionics_Patch.xml ├── EPOE │ └── Patches │ │ └── EPOE │ │ └── Bionics.xml ├── ESCP - Spriggans │ └── Patches │ │ └── ESCP - Spriggans │ │ ├── ESCP_BodyDefs_Spriggan.xml │ │ ├── ESCP_Projectiles_Spriggan.xml │ │ ├── ESCP_Spriggan_Scenario.xml │ │ └── ESCP_ThingDef_Spriggan.xml ├── ESCP - Trolls │ └── Patches │ │ └── ESCP - Trolls │ │ ├── ESCP_BodyDefs_Trolls.xml │ │ ├── ESCP_Hediff_TrollAffliction.xml │ │ ├── ESCP_Item_TrollLeather.xml │ │ ├── ESCP_Item_TrollTusk.xml │ │ ├── ESCP_ThingDef_Trolls.xml │ │ └── Mods │ │ └── ESCP_BioTechTrolls.xml ├── Eccentric Militor │ ├── Defs │ │ └── Eccentric Militor │ │ │ └── Eccentric_Militor_Ammo.xml │ └── Patches │ │ └── Eccentric Militor │ │ ├── Eccentric_Militor_Ability.xml │ │ ├── Eccentric_Militor_Building.xml │ │ ├── Eccentric_Militor_Races.xml │ │ └── Eccentric_Militor_Weapons.xml ├── Edge of Descension - Hovercraft │ └── Patches │ │ └── Edge of Descension - Hovercraft │ │ └── VehicleDefs │ │ ├── ArmoredHovertruck.xml │ │ ├── Hovercar.xml │ │ ├── Hovertank.xml │ │ ├── Hovertruck.xml │ │ └── Vehicles_Explosions_Fix.xml ├── Edge of Descension - Monoblades │ └── Patches │ │ └── Edge of Descension - Monoblades │ │ ├── EoD_BladelinksWeaponsDefs.xml │ │ └── EoD_WeaponsDefs.xml ├── Edge of Descension - Vanguard │ ├── Defs │ │ └── Edge of Descension - Vanguard │ │ │ └── EoD_AmmoDefs.xml │ └── Patches │ │ └── Edge of Descension - Vanguard │ │ ├── EoD_ApparelDefs.xml │ │ └── EoD_WeaponsDefs.xml ├── EdoThemedExpansion │ ├── Defs │ │ └── Recipes_EdoThemed.xml │ └── Patches │ │ └── EdoThemedExpansion │ │ ├── EdoTheme_Apparel.xml │ │ ├── EdoTheme_Armour.xml │ │ ├── EdoTheme_Misc.xml │ │ ├── EdoTheme_Pawnkinds.xml │ │ ├── EdoTheme_Scenarios.xml │ │ ├── EdoTheme_Weapons_Melee.xml │ │ ├── EdoTheme_Weapons_MeleeClanforged.xml │ │ ├── EdoTheme_Weapons_MeleeLegendary.xml │ │ └── EdoTheme_Weapons_Ranged.xml ├── Eisenhans Power Armor │ └── Patches │ │ └── Eisenhans Power Armor │ │ └── ThingDefs_Various.xml ├── Eltex Bodysuit │ └── Patches │ │ └── Eltex Bodysuit │ │ └── Apparel_Various.xml ├── Eltex Weaponry │ ├── Defs │ │ └── Eltex Weaponry │ │ │ └── EW_Ammo_CE.xml │ └── Patches │ │ └── Eltex Weaponry │ │ ├── EW_PersonaWeapons.xml │ │ ├── EW_Weapons.xml │ │ └── EW_WeaponsWarcasket.xml ├── Enchanted Sword │ └── Patches │ │ └── Enchanted Sword │ │ ├── ES_AbilityDefs_Patch.xml │ │ ├── ES_DamageDefs_Patch.xml │ │ └── ES_WeaponDefs_Patch.xml ├── Epochs - Pyrinth │ └── Patches │ │ └── Epochs- Pyrinth │ │ └── Patch_Pyrinth.xml ├── Epona Race │ ├── Defs │ │ └── Epona Race │ │ │ └── Ammo │ │ │ └── Ammo_Epona.xml │ └── Patches │ │ └── Epona Race │ │ ├── Bodies │ │ ├── Epona_Bodytype.xml │ │ └── Epona_Hediff.xml │ │ ├── PawnKindDefs │ │ └── Epona_PawnKind.xml │ │ ├── Scenario │ │ └── Epona_Scenario.xml │ │ ├── ThingDefs_Items │ │ └── Items_Resources.xml │ │ ├── ThingDefs_Misc │ │ ├── Epona_Apparel.xml │ │ ├── Weapons.xml │ │ └── Weapons_Spacer.xml │ │ └── ThingDefs_Races │ │ ├── AlienRace_Epona.xml │ │ └── Race_Sheep.xml ├── Equium │ └── Patches │ │ └── Equium │ │ ├── Equium_Race.xml │ │ ├── PawnKinds_Equium.xml │ │ ├── PawnKinds_Equium_Gangs.xml │ │ ├── PawnKinds_Equium_Military.xml │ │ └── PawnKinds_Equium_Tribal.xml ├── Erin's Au Ra │ └── Patches │ │ └── Erin's Au Ra │ │ ├── Patch_Bodies.xml │ │ ├── PawnKinds.xml │ │ └── Race_AuRa.xml ├── Erin's Auronya Biotech │ └── Patches │ │ └── Erin's Auronya Biotech │ │ └── Auronya_Hediffs_BodyParts.xml ├── Erin's Auronya │ └── Patches │ │ └── Erin's Auronya │ │ ├── PawnKinds_Auronya.xml │ │ └── Race_Auronya.xml ├── Erin's Azaphrae │ └── Patches │ │ └── Erin's Azaphrae │ │ ├── Animal_Nuzox.xml │ │ ├── Hediff_Racial_Azaphrae.xml │ │ ├── PawnKinds.xml │ │ ├── Race_Azaphrae.xml │ │ └── Scenarios_Azaphrae.xml ├── Erin's Chocobos │ └── Patches │ │ └── Erin's Chocobos │ │ └── Erin_Chocobos.xml ├── Erin's Final Fantasy Races │ └── Patches │ │ └── Erin's Final Fantasy Races │ │ ├── PatchBodies_AuRa.xml │ │ ├── PatchBodies_MQ.xml │ │ ├── PawnKinds_AuRa.xml │ │ ├── PawnKinds_MQ.xml │ │ ├── PawnKinds_Viera.xml │ │ ├── Race_AuRa.xml │ │ ├── Race_MQ.xml │ │ └── Race_Viera.xml ├── Erin's Fluffy Fauna │ └── Patches │ │ └── Erin's Fluffy Fauna │ │ ├── EFF_Races_patch.xml │ │ └── EFF_Resources_patch.xml ├── Erin's Fox Squirrel │ └── Patches │ │ └── Erin's Fox Squirrel │ │ └── ThingDefs_Races.xml ├── Erin's Friendly Ferrets │ └── Patches │ │ └── Erin's Friendly Ferrets │ │ └── ThingDefs_Races.xml ├── Erin's Lizard Doggo │ └── Patches │ │ └── Erin's Lizard Doggo │ │ └── ThingDefs_Races.xml ├── Erin's Miqo'te │ └── Patches │ │ └── Erin's Miqo'te │ │ ├── Patch_Bodies.xml │ │ ├── PawnKinds.xml │ │ └── Race_MQ.xml ├── Erin's Mountain Animals │ └── Patches │ │ └── Erin's Mountain Animals │ │ └── ThingDefs_Races.xml ├── Erin's Sephyr │ └── Patches │ │ └── Erin's Sephyr │ │ ├── Hediff_Racial_Sephyr.xml │ │ ├── PawnKinds_Sephyr.xml │ │ ├── Race_Sephyr.xml │ │ └── Scenarios_Sephyr.xml ├── Erin's Shisune │ └── Patches │ │ └── Erin's Shisune │ │ └── Shisune_Hediffs_BodyParts.xml ├── Erin's Valheim Creatures │ └── Patches │ │ └── Erin's Valheim Creatures │ │ ├── Races_Animal_Frostwolf.xml │ │ ├── Races_Animal_Lox.xml │ │ ├── Races_Animal_Misthare.xml │ │ ├── Races_Animal_Neck.xml │ │ └── Races_Animal_Valboar.xml ├── Erin's Viera │ └── Patches │ │ └── Erin's Viera │ │ ├── PawnKinds.xml │ │ └── Race_Viera.xml ├── Erin's Wildlife │ └── Patches │ │ └── Erin's Wildlife │ │ └── ThingDefs_Races.xml ├── EvolvedOrgansRedux │ └── Patches │ │ └── EvolvedOrgansRedux │ │ ├── Brain_Evo_CE.xml │ │ ├── Ideological_organs.xml │ │ ├── Limbs_Evo_CE.xml │ │ ├── Organ_Evo_CE.xml │ │ ├── Protec_Evo_CE.xml │ │ ├── Royal_organs.xml │ │ └── Torso_Evo_CE.xml ├── Exotic Arsenal │ ├── Defs │ │ └── Exotic Arsenal │ │ │ ├── DamageDefs_Exotic.xml │ │ │ ├── Exotic_Ammo_Energy.xml │ │ │ └── Exotic_Ammo_Others.xml │ └── Patches │ │ └── Exotic Arsenal │ │ ├── Exotic_Damage_CE.xml │ │ └── Exotic_Weapons_CE.xml ├── Expanded Materials - Metals │ ├── Defs │ │ └── Expanded Materials - Metals │ │ │ └── Arrows_Iron.xml │ └── Patches │ │ └── Expanded Materials - Metals │ │ ├── Ammo │ │ ├── Arrows_ExpandedMetals.xml │ │ ├── HighCaliber │ │ │ ├── 127x108mm.xml │ │ │ ├── 145x114mm.xml │ │ │ ├── 20x102mmNATO.xml │ │ │ ├── 20x110mmHispano.xml │ │ │ ├── 25x137mmNATO.xml │ │ │ ├── 300WinchesterMagnum.xml │ │ │ ├── 30x173mmNATO.xml │ │ │ ├── 338Lapua.xml │ │ │ ├── 338Norma.xml │ │ │ ├── 408CheyenneTactical.xml │ │ │ ├── 40x311mmR.xml │ │ │ └── 50BMG.xml │ │ ├── Pistol │ │ │ ├── Patch_10mmAuto.xml │ │ │ ├── Patch_22LR.xml │ │ │ ├── Patch_32ACP.xml │ │ │ ├── Patch_357Magnum.xml │ │ │ ├── Patch_357SIG.xml │ │ │ ├── Patch_40SW.xml │ │ │ ├── Patch_44Magnum.xml │ │ │ ├── Patch_454Casull.xml │ │ │ ├── Patch_455Webley.xml │ │ │ ├── Patch_45ACP.xml │ │ │ ├── Patch_45Colt.xml │ │ │ ├── Patch_46x30mm.xml │ │ │ ├── Patch_500SWMagnum.xml │ │ │ ├── Patch_50AE.xml │ │ │ ├── Patch_58x21mmDAP92.xml │ │ │ ├── Patch_762x25mmTokarev.xml │ │ │ ├── Patch_762x38mmR.xml │ │ │ ├── Patch_763x25mmMauser.xml │ │ │ ├── Patch_765x20mmLongue.xml │ │ │ ├── Patch_9x18mmMakarov.xml │ │ │ ├── Patch_9x19mmPara.xml │ │ │ ├── Patch_9x21mmGyurza.xml │ │ │ └── Patch_FN57x28mm.xml │ │ ├── Rifle │ │ │ ├── Patch_127x55mmAR.xml │ │ │ ├── Patch_277Fury.xml │ │ │ ├── Patch_3006Springfield.xml │ │ │ ├── Patch_300AACBlackout.xml │ │ │ ├── Patch_303British.xml │ │ │ ├── Patch_30Carbine.xml │ │ │ ├── Patch_545x39mmSoviet.xml │ │ │ ├── Patch_556x45mmNATO.xml │ │ │ ├── Patch_58x42mmDBP10.xml │ │ │ ├── Patch_65x52mmCarcano.xml │ │ │ ├── Patch_75x54mmFrench.xml │ │ │ ├── Patch_762x39mmSoviet.xml │ │ │ ├── Patch_762x51mmNATO.xml │ │ │ ├── Patch_762x54mmR.xml │ │ │ ├── Patch_77x58mmArisaka.xml │ │ │ ├── Patch_792x33mmKurz.xml │ │ │ ├── Patch_792x57mmMauser.xml │ │ │ ├── Patch_8x50mmRLebel.xml │ │ │ └── Patch_9x39mmSoviet.xml │ │ ├── Sabot.xml │ │ └── Shotgun │ │ │ ├── 12Gauge.xml │ │ │ ├── 20Gauge.xml │ │ │ ├── 23x75mmR.xml │ │ │ └── 410Bore.xml │ │ └── Items_Resource_Stuff.xml ├── Expanded Materials - Plastics │ └── Patches │ │ └── Expanded Materials - Plastics │ │ ├── Items_Resource_Addon.xml │ │ └── Items_Resource_Stuff.xml ├── Expanded Woodworking │ └── Patches │ │ └── Expanded Woodworking │ │ └── Items_Resources.xml ├── Extended Storage │ └── Patches │ │ └── Extended Storage │ │ └── Storage.xml ├── FF Bushi! │ └── Patches │ │ └── FF Bushi! │ │ ├── Headgear_Bushi.xml │ │ └── Melee_Bushi.xml ├── FFGermanSheperd │ └── Patches │ │ └── FFGermanSheperd │ │ └── Races_Animal_FFGermanShepherd.xml ├── FROG Suit Set │ └── Patches │ │ └── FROG Suit Set │ │ ├── Armor_Spacer.xml │ │ └── Industrial_Ranged.xml ├── FSF Advanced Bionics Expansion │ └── Patches │ │ └── FSF Advanced Bionics Expansion │ │ └── HediffDefs │ │ └── FSFAdvancedBionics_AddedParts.xml ├── FSF More Psycasts Powers │ └── Patches │ │ └── FSF More Psycasts Powers │ │ └── AbilitiesPatch.xml ├── FSF Vanilla Bionics Expansion │ └── Patches │ │ └── FSF Vanilla Bionics Expansion │ │ └── HediffDefs │ │ └── FSFBionics_AddedParts.xml ├── Faction - Mafia │ └── Patches │ │ └── Faction - Mafia │ │ ├── Apparel_Industrial.xml │ │ ├── Industrial_Melee.xml │ │ ├── PawnKinds_Mafia.xml │ │ └── Traders_Mafia.xml ├── Fallout New Vegas - Elite Riot Gear │ └── Patches │ │ └── Fallout New Vegas - Elite Riot Gear │ │ └── Apparel_RiotGear.xml ├── Fallout Vault 111 Starter Pack │ └── Patches │ │ └── Vault-111_CE.xml ├── Fantasy Metals Reforged Forked │ └── Patches │ │ └── Fantasy Metals Reforged Forked │ │ └── CE_Patch_FantasyMetalsReforged.xml ├── Fantasy Metals Reforged │ └── Patches │ │ └── Fantasy Metals Reforged │ │ └── Fantasy Metals Reforged.xml ├── Farming Expansion │ └── Patches │ │ └── Farming Expansion │ │ └── Race_CropEaterInsect.xml ├── FashionRIMsta │ └── Patches │ │ └── FashionRIMsta │ │ └── ThingsDefs_Misc │ │ └── FashionRIMsta_Apparel.xml ├── Fate Grand Order Styles Pack │ └── Patches │ │ └── Fate Grand Order Styles Pack │ │ └── ThingDefs_Misc │ │ ├── Apparel_FGO.xml │ │ └── FGO_Clarent.xml ├── Feles - Felines of the Rim [1.3] │ └── Patches │ │ └── Feles - Felines of the Rim [1.3] │ │ ├── Bodies_Feles.xml │ │ ├── Feles_Leather.xml │ │ ├── Races_Feles.xml │ │ └── Scenarios_Feles.xml ├── Fell Tribes │ └── Patches │ │ └── Fell Tribes │ │ ├── PawnkindDefs │ │ └── PawnKinds_Fell.xml │ │ └── ThingDefs_Races │ │ ├── Bear.xml │ │ ├── Fox.xml │ │ ├── Lynx.xml │ │ ├── Serval.xml │ │ └── Wolf.xml ├── Ferrex │ └── Patches │ │ └── Ferrex │ │ ├── Ferrex_Weapons.xml │ │ ├── PawnKinds_Ferrex.xml │ │ └── Race_Ferrex.xml ├── Filthy Orc Invasion │ ├── Defs │ │ └── Filthy Orc Invasion │ │ │ └── FilthyOrcInvasion_AmmoPatch.xml │ └── Patches │ │ └── Filthy Orc Invasion │ │ ├── FilthyOrcInvasion_Orc_Race.xml │ │ ├── FilthyOrcInvasion_Orc_Weapons.xml │ │ ├── FilthyOrcInvasion_PawnKind_Player_Orc.xml │ │ └── FilthyOrcInvasion_PawnKinds_Orc.xml ├── Flak Dusters │ └── Patches │ │ └── Flak Dusters │ │ └── ThingDefs_Misc │ │ └── Apparel_FD.xml ├── Forgelings race │ └── Patches │ │ └── Forgelings race │ │ ├── Apparel_Forge.xml │ │ ├── Forgling_Melee.xml │ │ └── Races_Forgeling.xml ├── Forgotten Realms - Lizardfolk │ ├── Defs │ │ └── Forgotten Realms - Lizardfolk │ │ │ ├── PawnKinds_Crocodillian.xml │ │ │ └── PawnKinds_Squadmata.xml │ └── Patches │ │ └── Forgotten Realms - Lizardfolk │ │ ├── Patch_Lizardfolk_Race.xml │ │ ├── Patch_Lizardfolk_Skin.xml │ │ ├── Patch_PawnKinds_Lizardfolk.xml │ │ ├── Patch_Scenarios_Squamata.xml │ │ ├── PawnKinds_Crocodillian.xml │ │ └── PawnKinds_Squadmata.xml ├── Forgotten Realms - Minotaur │ ├── Defs │ │ └── Forgotten Realms - Minotaur │ │ │ └── PawnKinds_Minos.xml │ └── Patches │ │ └── Forgotten Realms - Minotaur │ │ ├── Patch_Mino_Leather.xml │ │ ├── Patch_Mino_Race.xml │ │ ├── Patch_PawnKinds_Mino.xml │ │ ├── PawnKinds_Minos.xml │ │ └── Scenarios_Mino.xml ├── Fort's Firefighter Gadget │ └── Patches │ │ └── Fort's Firefighter Gadget │ │ ├── Apparel_Industrial.xml │ │ └── Industrial_Melee.xml ├── Frontline - Additional Guns For Bunkers │ └── Patches │ │ └── Frontline - Additional Guns For Bunkers │ │ ├── FrontlineAdditionalGunsForBunkers_GA_TRLMGII.xml │ │ ├── FrontlineAdditionalGunsForBunkers_HA_TRMMGII.xml │ │ └── FrontlineAdditionalGunsForBunkers_IA_TRHMGII.xml ├── Frontline - Additional Guns For Trenches │ └── Patches │ │ └── Frontline - Additional Guns For Trenches │ │ ├── FrontlineAdditionalGunsForTrenches_GA_TRLMGII.xml │ │ ├── FrontlineAdditionalGunsForTrenches_HA_TRMMGII.xml │ │ └── FrontlineAdditionalGunsForTrenches_IA_TRHMGII.xml ├── Frontline - Bunkers │ └── Patches │ │ └── Frontline - Bunkers │ │ ├── FrontlineBunkers_G_TRLMG.xml │ │ ├── FrontlineBunkers_H_TRMMG.xml │ │ └── FrontlineBunkers_I_TRHMG.xml ├── Frontline - Trenches │ ├── Defs │ │ └── Frontline - Trenches │ │ │ └── FrontlineTrenches_AmmoPatch.xml │ └── Patches │ │ └── Frontline - Trenches │ │ ├── FrontlineTrenches_G_TRLMG.xml │ │ ├── FrontlineTrenches_H_TRMMG.xml │ │ ├── FrontlineTrenches_I_TRHMG.xml │ │ ├── FrontlineTrenches_J_TRHowitzer.xml │ │ ├── FrontlineTrenches_K_TRMortar.xml │ │ ├── FrontlineTrenches_L_TRPak5cm.xml │ │ └── FrontlineTrenches_TRWizz_Patch.xml ├── Fuck it Unboomas your Lope │ └── Patches │ │ └── Fuck it Unboomas your Lope │ │ └── Noboom.xml ├── GREG │ └── Patches │ │ └── GREG │ │ └── ThingDefs_Races.xml ├── Gas Traps and Shells │ ├── Defs │ │ └── Gas Traps and Shells │ │ │ ├── Ammo_60mm.xml │ │ │ ├── Patch_AmmoCategories_Grenades.xml │ │ │ ├── Patch_Ammo_Gas.xml │ │ │ ├── Patch_PawnKinds_CE.xml │ │ │ ├── Recipes_81mm.xml │ │ │ ├── Recipes_HandGrenades.xml │ │ │ └── Weapons_Grenades.xml │ └── Patches │ │ └── Gas Traps and Shells │ │ ├── Patch_AmmoCategories_Gas.xml │ │ ├── Patch_Buildings_GasTrap.xml │ │ ├── Patch_Hediff_Gas.xml │ │ └── Patch_Mortars.xml ├── Gestalt Engine │ └── Patches │ │ └── Gestalt Engine │ │ └── ThingDefs_Races │ │ └── Matriach.xml ├── Giddy-Up 2 │ └── Patches │ │ └── Giddy-Up 2 │ │ └── Job_Patch.xml ├── Girls Frontline Apparel Pack │ └── Patches │ │ └── Girls Frontline Apparel Pack │ │ └── ThingDefs_Misc │ │ └── ThingDef_Apparel.xml ├── Girls Frontline Styles 404 Team │ └── Patches │ │ └── Girls Frontline Styles 404 Team │ │ └── ThingDefs_Misc │ │ └── Apparel_404Team.xml ├── Girls Frontline Styles AR Team │ └── Patches │ │ └── Girls Frontline Styles AR Team │ │ └── ThingDefs_Misc │ │ └── Apparel_ARTeam.xml ├── Girls Frontline Weapon Pack │ └── Patches │ │ └── Girls Frontline Weapon Pack │ │ └── ThingsDef_Misc │ │ └── GFWeapons.xml ├── Glitter Tech Xavior │ ├── Defs │ │ └── Glitter Tech │ │ │ └── GlitterTech_CE_Patch_Ammo_Shells.xml │ └── Patches │ │ └── Glitter Tech │ │ ├── GlitterTech_CE_Patch_Apparel_AdvancedShield.xml │ │ ├── GlitterTech_CE_Patch_Apparel_NanoSuitArmour.xml │ │ ├── GlitterTech_CE_Patch_Apparel_OrionCo.xml │ │ ├── GlitterTech_CE_Patch_HeDiffs_AddedParts.xml │ │ ├── GlitterTech_CE_Patch_HeDiffs_OCAddedParts.xml │ │ ├── GlitterTech_CE_Patch_PawnKindDefs.xml │ │ ├── GlitterTech_CE_Patch_TraderKinds.xml │ │ ├── GlitterTech_CE_Patch_Turrets.xml │ │ ├── GlitterTech_CE_Patch_Weapons_APB-1Group.xml │ │ ├── GlitterTech_CE_Patch_Weapons_EMRG-1.xml │ │ ├── GlitterTech_CE_Patch_Weapons_MRG-5Group.xml │ │ ├── GlitterTech_CE_Patch_Weapons_OCGroup.xml │ │ └── GlitterTech_CE_Patch_Weapons_OCTurrets.xml ├── Glitter Tech │ ├── Defs │ │ └── Glitter Tech │ │ │ └── GlitterTech_CE_Patch_Ammo_Shells.xml │ └── Patches │ │ └── Glitter Tech │ │ ├── GlitterTech_CE_Patch_Apparel_AdvancedShield.xml │ │ ├── GlitterTech_CE_Patch_Apparel_NanoSuitArmour.xml │ │ ├── GlitterTech_CE_Patch_Apparel_OrionCo.xml │ │ ├── GlitterTech_CE_Patch_HeDiffs_AddedParts.xml │ │ ├── GlitterTech_CE_Patch_HeDiffs_OCAddedParts.xml │ │ ├── GlitterTech_CE_Patch_PawnKindDefs.xml │ │ ├── GlitterTech_CE_Patch_TraderKinds.xml │ │ ├── GlitterTech_CE_Patch_Turrets.xml │ │ ├── GlitterTech_CE_Patch_Weapons_APB-1Group.xml │ │ ├── GlitterTech_CE_Patch_Weapons_EMRG-1.xml │ │ ├── GlitterTech_CE_Patch_Weapons_MRG-5Group.xml │ │ ├── GlitterTech_CE_Patch_Weapons_OCGroup.xml │ │ └── GlitterTech_CE_Patch_Weapons_OCTurrets.xml ├── Glitter Weaponry │ ├── Defs │ │ └── Glitter Weaponry │ │ │ └── Ammo.xml │ └── Patches │ │ └── Glitter Weaponry │ │ ├── RangedSpacer.xml │ │ └── RangedSpacer_Heavy.xml ├── Gloomy Dragonian Race │ └── Patches │ │ └── Gloomy Dragonian Race │ │ ├── ThingDefs_Bodies │ │ └── Dragonian_Bodytype.xml │ │ ├── ThingDefs_Items │ │ └── Items_Resource_Stuff.xml │ │ ├── ThingDefs_Misc │ │ ├── DR_Apparel.xml │ │ ├── DR_Weapon.xml │ │ └── DR_Weapon_Royalty.xml │ │ └── ThingDefs_Races │ │ └── Race_Dragonian.xml ├── GouRIMet │ └── Patches │ │ └── GouRIMet │ │ └── Items_GouRIMet.xml ├── Gravship Captain Set │ └── Patches │ │ └── Gravship Captain Set │ │ └── Patches_Apparel.xml ├── GrimWorld Scattered Sons │ └── Patches │ │ └── GrimWorld Scattered Sons │ │ ├── CE_Patch_Armors.xml │ │ ├── CE_Patch_Armors_Helmets.xml │ │ ├── CE_Patch_Hediffs.xml │ │ ├── CE_Patch_Melee_Weapons.xml │ │ └── CE_Patch_Shield.xml ├── GrimWorld Talons of the Emperor │ └── Patches │ │ └── GrimWorld Talons of the Emperor │ │ ├── CE_Patch_Armors.xml │ │ ├── CE_Patch_Armors_Helmets.xml │ │ ├── CE_Patch_Flamers.xml │ │ ├── CE_Patch_Guns.xml │ │ ├── CE_Patch_Melee_Weapons.xml │ │ ├── CE_Patch_Switchable.xml │ │ └── CE_Patch_Traders.xml ├── Grimstone Beasts │ └── Patches │ │ └── Grimstone Beasts │ │ ├── Bodies │ │ ├── Bodies_Animal_Griffar.xml │ │ └── Bodies_Animal_Grimshadow.xml │ │ ├── ThingDefs_Items │ │ ├── Items_Resource_Stuff.xml │ │ └── Items_Resource_Stuff_Leather.xml │ │ └── ThingDefs_Races │ │ ├── Races_Animals_Belloceros.xml │ │ ├── Races_Animals_EmperorVulture.xml │ │ ├── Races_Animals_Griffar.xml │ │ ├── Races_Animals_Grimshadow.xml │ │ ├── Races_Animals_Sheepdog.xml │ │ └── Races_Animals_Tetras.xml ├── Grimworld Angels of Death │ └── Patches │ │ └── Grimworld Angels of Death │ │ ├── CE_Patch_Apparel.xml │ │ ├── CE_Patch_Armors.xml │ │ ├── CE_Patch_Armors_Backpacks.xml │ │ ├── CE_Patch_Armors_Champion.xml │ │ ├── CE_Patch_Armors_Helmets.xml │ │ ├── CE_Patch_Armors_ShoulderPads.xml │ │ ├── CE_Patch_Flamers.xml │ │ ├── CE_Patch_Guns.xml │ │ ├── CE_Patch_Melee_Weapons.xml │ │ ├── CE_Patch_Shields.xml │ │ ├── CE_Patch_Traders.xml │ │ ├── CE_Patch_Turrets.xml │ │ └── Vehicles │ │ ├── 40K_Vehicles_AstartesBike.xml │ │ ├── 40K_Vehicles_DropPod.xml │ │ ├── 40K_Vehicles_LandRaider.xml │ │ ├── 40K_Vehicles_LandRaider_Upgrades.xml │ │ ├── 40K_Vehicles_OverlordGunship.xml │ │ ├── 40K_Vehicles_Predator.xml │ │ ├── 40K_Vehicles_Predator_Upgrades.xml │ │ ├── 40K_Vehicles_PrimarisTank.xml │ │ ├── 40K_Vehicles_Rhino.xml │ │ ├── 40K_Vehicles_Stormhawk.xml │ │ └── 40K_Vehicles_Stormtalon.xml ├── Grimworld Autoguns │ └── Patches │ │ └── Grimworld Autoguns │ │ └── Autoguns.xml ├── Grimworld Core Imperialis │ ├── Defs │ │ └── Grimworld Core Imperialis │ │ │ ├── Ammo │ │ │ ├── CE_Patch_GravGunAmmo.xml │ │ │ └── CE_Patch_VolkiteAmmo.xml │ │ │ └── CE_Patch_Ammo_Production.xml │ └── Patches │ │ ├── CE_Patch_Drugs.xml │ │ ├── CE_Patch_MeleeWeapons.xml │ │ ├── CE_Patch_RangedWeapons.xml │ │ ├── CE_Patch_Resources.xml │ │ ├── CE_Patch_Traders.xml │ │ └── Remove_NonCE_Ammo_Patch_SM.xml ├── Grimworld Hammer of the Imperium │ └── Patches │ │ └── Grimworld Hammer of the Imperium │ │ ├── CE_Patch_Armors.xml │ │ ├── CE_Patch_Guns.xml │ │ ├── CE_Patch_Launchers.xml │ │ ├── CE_Patch_Melee_Weapons.xml │ │ ├── CE_Patch_Pistols.xml │ │ ├── CE_Patch_Shields.xml │ │ ├── CE_Patch_Traders.xml │ │ ├── CE_Patch_Turrets.xml │ │ └── Vehicles │ │ ├── 40K_IG_Vehicle_Weapons.xml │ │ ├── 40K_Vehicles_AstraMilBike.xml │ │ ├── 40K_Vehicles_Baneblade.xml │ │ ├── 40K_Vehicles_Chimera.xml │ │ ├── 40K_Vehicles_LemanRuss.xml │ │ ├── 40K_Vehicles_LemanRuss_Upgrades.xml │ │ ├── 40K_Vehicles_Marauder.xml │ │ ├── 40K_Vehicles_Stormhammer.xml │ │ ├── 40K_Vehicles_Taurox.xml │ │ └── 40K_Vehicles_Valkyrie.xml ├── Grimworld Heresy Addon │ └── Patches │ │ └── Grimworld Heresy Addon │ │ ├── CE_Patch_Armors.xml │ │ ├── CE_Patch_Armors_Backpacks.xml │ │ └── CE_Patch_Armors_Helmets.xml ├── Grimworld Lasguns │ └── Patches │ │ └── Grimworld Lasguns │ │ └── lasguns.xml ├── Grimworld Melee │ └── Patches │ │ └── Grimworld Melee │ │ ├── IndustrialMelee.xml │ │ └── SpacerMelee.xml ├── Grimworld Sabbats Blight │ └── Patches │ │ └── Grimworld Sabbats Blight │ │ ├── BP_Armor.xml │ │ ├── BP_Carrying.xml │ │ ├── BP_Guns.xml │ │ ├── BP_Headgear.xml │ │ ├── BP_Melee.xml │ │ ├── BP_Pawnkinds.xml │ │ ├── BP_Scenario.xml │ │ └── Vehicles │ │ ├── 40K_Vehicles_ChaosLemanRuss.xml │ │ ├── 40K_Vehicles_ChaosLemanRuss_Upgrades.xml │ │ ├── 40K_Vehicles_ChaosTaurox.xml │ │ └── 40K_Vehicles_ChaosTaurox_Upgrades.xml ├── Gulden Mod │ └── Patches │ │ └── Gulden Mod │ │ ├── GuldenSheep.xml │ │ ├── Gulden_Forest_Resources_Leather.xml │ │ ├── Horse_Named_Norman.xml │ │ ├── Rabitgaroo.xml │ │ └── RuneBear.xml ├── HALO Rimworld Psychic Pulse Armory │ ├── Defs │ │ └── HALO Rimworld Psychic Pulse Armory │ │ │ └── Ammo │ │ │ └── ArchotechAmmo.xml │ └── Patches │ │ └── HALO Rimworld Psychic Pulse Armory │ │ ├── Crafting_MAG.xml │ │ ├── MeleeArchotech.xml │ │ └── RangedArchotech.xml ├── Half Dragons │ └── Patches │ │ └── Half Dragons │ │ ├── Apparel_Various.xml │ │ ├── HalfDragons_Body.xml │ │ ├── HalfDragons_Scenario.xml │ │ ├── Patch_Weapons.xml │ │ └── Race_HalfDragons.xml ├── Halo - UNSC Armoury │ └── Patches │ │ └── Halo - UNSC Armoury │ │ ├── Apparel_Headgear.xml │ │ ├── Weapons_Laser.xml │ │ └── Weapons_Ranged.xml ├── Halo UNSC Weapon Pack │ └── Patches │ │ └── Halo UNSC Weapon Pack │ │ └── UNSC_CE.xml ├── Heavy Melee Weapons │ └── Patches │ │ └── Heavy Melee Weapons │ │ └── ThingDefs_Misc │ │ └── Weapons.xml ├── Heyra the Horned │ └── Patches │ │ └── Heyra the Horned │ │ └── Bodydef │ │ └── Heyra_Bodytype.xml ├── High Caliber │ └── Patches │ │ └── High Caliber │ │ └── HighCaliber_CE_Patch_Weapons.xml ├── High Tech Laboratory Facilities │ └── Patches │ │ └── High Tech Laboratory Facilities │ │ └── ThingDef_Apparel.xml ├── Hive Armory │ └── Patches │ │ └── Hive Armory │ │ ├── HiveArmory_Armor.xml │ │ └── HiveArmory_Weapons.xml ├── Hunter Mechanoid │ └── Patches │ │ └── Hunter Mechanoid │ │ ├── Bodies_Hunter.xml │ │ ├── Hunter_PawnKinds.xml │ │ ├── Hunter_Races_Mechanoids.xml │ │ └── Hunter_RangedMechanoid.xml ├── Huscarl - Power Armor │ └── Patches │ │ └── Huscarl - Power Armor │ │ └── Huscarl_Armor.xml ├── Hyena (Continued) │ └── Patches │ │ └── Hyena (Continued) │ │ └── ThingDefs_Races.xml ├── Idhale Race │ └── Patches │ │ └── Idhale Race │ │ ├── Bodies │ │ └── Idhale_Bodytype.xml │ │ ├── PawnKindDefs │ │ └── Idhale_PawnKind.xml │ │ ├── ThingDefs_Misc │ │ └── Idhale_Apparel.xml │ │ └── ThingDefs_Races │ │ └── AlienRace_Idhale.xml ├── Impact Weaponry │ ├── Defs │ │ └── Impact Weaponry │ │ │ └── ImpactAmmo.xml │ └── Patches │ │ └── Impact Weaponry │ │ ├── Addon Weapons │ │ ├── AthenaRanged.xml │ │ ├── ImpactMelee.xml │ │ └── PiratesRanged.xml │ │ ├── ImpactMelee.xml │ │ └── ImpactRanged.xml ├── Imperial Arsenal Royal Warcasket │ ├── Defs │ │ └── Imperial Arsenal Royal Warcasket │ │ │ └── Ammo │ │ │ ├── AmmoCategories_Bolts.xml │ │ │ └── Xonus.xml │ └── Patches │ │ └── Imperial Arsenal Royal Warcasket │ │ ├── Apparel_Royal_Warcaskets.xml │ │ └── RangedWeapons.xml ├── Imperial Attires │ └── Patches │ │ └── Imperial Attires │ │ └── Apparel_CE.xml ├── Individuality │ └── Patches │ │ └── Individuality │ │ └── Traits_Patch_CE.xml ├── Industrial Melee Weaponry │ └── Patches │ │ └── Industrial Melee Weaponry │ │ └── Weapons_Melee.xml ├── Infinity Rim Ariadna │ ├── Defs │ │ └── Infinity Rim Ariadna │ │ │ └── Ammo │ │ │ ├── AmmoClass.xml │ │ │ ├── Arrow.xml │ │ │ ├── Autocannon.xml │ │ │ ├── MicroMissile.xml │ │ │ ├── Pistol.xml │ │ │ ├── Rifle.xml │ │ │ └── Shotgun.xml │ └── Patches │ │ └── Infinity Rim Ariadna │ │ ├── Antipode.xml │ │ ├── Apparel.xml │ │ └── Weapons │ │ ├── AntipodeWeapon.xml │ │ ├── Heavy.xml │ │ ├── Machinegun.xml │ │ ├── Melee.xml │ │ ├── Pistols.xml │ │ ├── Rifles.xml │ │ └── Shotguns.xml ├── Infused 2 Expansion │ └── Patches │ │ └── Infused 2 Expansion │ │ └── Infused2_anyTier.xml ├── Infusion 2 │ └── Patches │ │ └── Infusion 2 │ │ ├── Common_tier.xml │ │ ├── Legendary_tier.xml │ │ ├── Rare_tier.xml │ │ └── Uncommon_tier.xml ├── Insects have chitin │ └── Patches │ │ └── Insects have chitin │ │ └── ThingDefs_Items │ │ └── Chitin.xml ├── Inspiration Tweaks │ └── Patches │ │ └── Inspiration Tweaks │ │ └── InspirationTweaks.xml ├── Integrated Implants │ ├── Defs │ │ └── Integrated Implants │ │ │ └── ThingDefs_ImplantedShells.xml │ └── Patches │ │ └── Integrated Implants │ │ ├── Hediffs_Anomaly.xml │ │ ├── Hediffs_Biotech.xml │ │ ├── Hediffs_Bodyparts.xml │ │ ├── Hediffs_ExtraArms.xml │ │ ├── Hediffs_ImplantedExplosives.xml │ │ ├── Hediffs_Modules.xml │ │ ├── Hediffs_PawnFitters.xml │ │ ├── Hediffs_ShoulderWeaponry.xml │ │ └── Hediffs_Tails.xml ├── Ion Weaponry │ ├── Defs │ │ └── Ion Weaponry │ │ │ └── Ammo.xml │ └── Patches │ │ └── Ion Weaponry │ │ ├── Damages.xml │ │ └── RangedSpacer.xml ├── JDS Castle Walls │ └── Patches │ │ └── JDS Castle Walls │ │ └── ThingDefs_Tower.xml ├── JDS EFT Apparel │ └── Patches │ │ └── JDS EFT Apparel │ │ ├── Apparel_Armor.xml │ │ ├── Apparel_Backpacks.xml │ │ ├── Apparel_ChestRigs.xml │ │ ├── Apparel_Headgear.xml │ │ └── Apparel_HeadgearArmor.xml ├── JDS Exiled Dawn │ ├── Defs │ │ └── JDS Exiled Dawn │ │ │ └── Ammo │ │ │ └── Ammo_ExilePlasma.xml │ └── Patches │ │ └── JDS Exiled Dawn │ │ ├── PawnKindDefs │ │ └── PawnKinds_Exile.xml │ │ └── Thingdefs_Misc │ │ ├── Apparel.xml │ │ ├── Weapons_Melee.xml │ │ └── Weapons_Ranged.xml ├── JDS Star Wars - Armory │ ├── Defs │ │ └── JDS Star Wars - Armory │ │ │ └── Ammo_Blastech.xml │ └── Patches │ │ └── JDS Star Wars - Armory │ │ ├── CE_Patch.xml │ │ ├── Patch_Weapons.xml │ │ └── ProjectileFix.xml ├── JDS The Forge - NCR Armory │ └── Patches │ │ └── JDS The Forge - NCR Armory │ │ ├── Defs_Apparel.xml │ │ ├── Defs_Headgear.xml │ │ └── Defs_Weapons.xml ├── JPT Open The Windows │ └── Patches │ │ └── JPT Open The Windows │ │ └── Openvindows.xml ├── Japanese Dogs │ └── Patches │ │ └── Japanese Dogs │ │ └── Dogs.xml ├── Jernalk's Skeletal Legion │ └── Patches │ │ └── Jernalk's Skeletal Legion │ │ ├── Bodies │ │ └── Bodies_Skeleton.xml │ │ ├── PawnKindDefs │ │ └── Skeleton_PawnKind.xml │ │ └── ThingDefs_Races │ │ └── Skeletons.xml ├── Jin-Roh Kerberos Panzer Cop Armor │ └── Patches │ │ └── JinRohKerberosPanzerCopArmor │ │ └── JinRohKerberosPanzerCopArmor_Patches.xml ├── K4G Empires of Old - Core │ └── Patches │ │ └── K4G Empires of Old - Core │ │ ├── Apparel.xml │ │ ├── Apparel_Royalty.xml │ │ ├── WeaponsMelee_NonStuffable.xml │ │ ├── WeaponsMelee_Stuffable.xml │ │ └── WeaponsRanged.xml ├── K4G Empires of Old - Engineers Institute │ └── Patches │ │ └── K4G Empires of Old - Engineers Institute │ │ └── PawnKinds_Guild.xml ├── K4G Empires of Old - The Alekeepers │ └── Patches │ │ └── K4G Empires of Old - The Alekeepers │ │ └── Pawnkinds_Alekeepers.xml ├── K4G Empires of Old - The Faceless Sultainate │ └── Patches │ │ └── K4G Empires of Old - The Faceless Sultainate │ │ ├── PawnKinds_Sultanate.xml │ │ └── TraderKinds_Sultanate.xml ├── K4G Empires of Old - The Polluted Legion │ └── Patches │ │ └── K4G Empires of Old - The Polluted Legion │ │ └── PawnKinds_Legion.xml ├── K4G Empires of Old - The Rising Sun │ └── Patches │ │ └── K4G Empires of Old - The Rising Sun │ │ └── PawnKinds_Dynasty.xml ├── K4G Equipment of the Weimar Republic │ └── Patches │ │ └── K4G Equipment of the Weimar Republic │ │ ├── Apparel_Various.xml │ │ └── WeaponRanged.xml ├── K4G Rimworld War 2 │ ├── Defs │ │ └── K4G Rimworld War 2 │ │ │ ├── AmmoDefs │ │ │ └── WW2_RocketAmmo.xml │ │ │ └── RecipeDefs │ │ │ └── WW2_GrenadeRecipes.xml │ └── Patches │ │ └── K4G Rimworld War 2 │ │ ├── PawnKinds_Defs │ │ ├── PawnKinds_FinlandCoBelligerentAllies.xml │ │ ├── PawnKinds_FinlandCoBelligerentGermany.xml │ │ ├── PawnKinds_FinlandIndependent.xml │ │ ├── PawnKinds_FranceAllies.xml │ │ ├── PawnKinds_FranceAxis.xml │ │ ├── PawnKinds_FranceExile.xml │ │ ├── PawnKinds_Germany.xml │ │ ├── PawnKinds_ItalyAxis.xml │ │ ├── PawnKinds_ItalyAxisB.xml │ │ ├── PawnKinds_ItalyCoBelligerentAllies.xml │ │ ├── PawnKinds_Japan.xml │ │ ├── PawnKinds_RussiaAllies.xml │ │ ├── PawnKinds_RussiaCoBelligerentGermany.xml │ │ ├── PawnKinds_UnitedKingdom.xml │ │ ├── PawnKinds_UnitedStates.xml │ │ └── PawnKinds_WW2Base.xml │ │ ├── ResearchProjectDefs │ │ └── ResearchProjects.xml │ │ ├── Scenarios │ │ └── Scenarios_Classic.xml │ │ ├── ThingDefs_Misc │ │ ├── BaseWeapons.xml │ │ ├── BritishWeapons_Ranged.xml │ │ ├── FinnishWeapons_Ranged.xml │ │ ├── FrenchWeapons_Ranged.xml │ │ ├── GermanWeapons_Ranged.xml │ │ ├── ItalianWeapons_Ranged.xml │ │ ├── JapaneseWeapons_Ranged.xml │ │ ├── RussianWeapons_Ranged.xml │ │ ├── UnitedStatesWeapons_Ranged.xml │ │ ├── WW2_Apparel.xml │ │ ├── WW2_Grenades.xml │ │ └── WW2_Melee.xml │ │ └── TraderKinds_Defs │ │ └── TraderKinds_Defs.xml ├── KV Hand n Footwear │ └── Patches │ │ └── KV Hand n Footwear │ │ ├── HnF_Apparel_Footwear.xml │ │ └── HnF_Apparel_Handwear.xml ├── Kaiser Armory │ ├── Defs │ │ └── Kaiser Armory │ │ │ ├── 105x155mmR.xml │ │ │ ├── 77x230mmR.xml │ │ │ └── KaiserArmory_GrenadeRecipe.xml │ └── Patches │ │ └── Kaiser Armory │ │ ├── KaiserArmory_Guns.xml │ │ ├── KaiserArmory_Melee.xml │ │ └── KaiserArmory_Turrets.xml ├── Kemomimihouse │ └── Patches │ │ └── Kemomimihouse │ │ ├── ThingDefs_Misc │ │ └── Weapons_kemomimiMelee.xml │ │ ├── ThingDefs_Races │ │ └── Race_Animals.xml │ │ └── ThingDes_Items │ │ └── Items_Resource_Stuff.xml ├── Kenshi Armory │ └── Patches │ │ └── Kenshi Armory │ │ ├── KenshiArmory_Apparel.xml │ │ ├── KenshiArmory_Armour.xml │ │ └── KenshiArmory_Weapons.xml ├── Kerberos Protect Gears and Firearms │ └── Patches │ │ └── Kerberos Protect Gears and Firearms │ │ ├── Weapons │ │ ├── Kerb_CE_Heavy.xml │ │ └── Kerb_CE_Standard.xml │ │ └── Wearables │ │ ├── Armor_Patches.xml │ │ ├── Packs_Patches.xml │ │ └── Shields_Patches.xml ├── Kijin 3.0 │ ├── Defs │ │ └── Kijin 3.0 │ │ │ └── Ammo │ │ │ ├── Arrows_Kijin.xml │ │ │ └── Projectiles_Kijin.xml │ └── Patches │ │ └── Kijin 3.0 │ │ ├── HediffDefs │ │ └── Kijin_Hediffs.xml │ │ ├── PawnKindDefs │ │ └── PawnKind_Kijin.xml │ │ ├── Scenario │ │ └── Kijin_Scenario.xml │ │ └── ThingDef_Misc │ │ ├── Kijin_Apparel.xml │ │ ├── Kijin_Weapons_Melee.xml │ │ └── Kijin_Weapons_Ranged.xml ├── Kill la Kill Styles Pack │ └── Patches │ │ └── Kill la Kill Styles Pack │ │ └── ThingDefs_Misc │ │ ├── Apparel_KLK.xml │ │ └── ScissorBlade.xml ├── Killzone Concept Armor Set │ └── Patches │ │ └── Killzone Concept Armor Set │ │ ├── Apparel_Armor.xml │ │ └── Ranged_Industrial.xml ├── Kit's Gunpowder Weapons │ ├── Defs │ │ └── Kit's Gunpowder Weapons │ │ │ └── Ammo_KitsGunpowder.xml │ └── Patches │ │ └── Kit's Gunpowder Weapons │ │ ├── KitsGunpowder_Guns.xml │ │ └── KitsGunpowder_Security.xml ├── Kit's Industrial Weapons │ └── Patches │ │ └── Kit's Industrial Weapons │ │ ├── KitsIndustrial_Guns.xml │ │ └── KitsIndustrial_Melee.xml ├── Kit's Roman Weapons │ └── Patches │ │ └── Kit's Roman Weapons │ │ ├── Roman_Security.xml │ │ ├── Roman_Shields.xml │ │ └── Roman_Weapons.xml ├── Kit's VFE Weapons │ ├── Defs │ │ └── Kit's VFE Weapons │ │ │ ├── Ammo │ │ │ └── Ammo_KitPlasma.xml │ │ │ └── DamageDefs │ │ │ └── DamageDefs_Vikings.xml │ └── Patches │ │ └── Kit's VFE Weapons │ │ └── ThingDefs_Misc │ │ ├── Crypto_Weapons.xml │ │ └── Plasma_Weapons.xml ├── Kobold Factions │ ├── Defs │ │ └── Kobold Factions │ │ │ └── Pawnkinds_Kobold.xml │ └── Patches │ │ └── Kobold Factions │ │ ├── Kobold_Kamikaze_Pawnkind.xml │ │ └── Medieval_Kobold_Pawnkind.xml ├── Kobolds of the Rim │ └── Patches │ │ └── Kobolds of the Rim │ │ ├── Apparel_Kobold.xml │ │ ├── Melee_Kobold.xml │ │ ├── Patch_Body_Kobold.xml │ │ ├── PawnKinds_Kobold.xml │ │ └── Race_Kobold.xml ├── Kurin │ └── Patches │ │ └── Kurin │ │ ├── Bodies │ │ └── Mod_Bodies_Kurin.xml │ │ ├── PawnKindDefs │ │ └── DRNTF_PawnKind.xml │ │ ├── Scenario │ │ └── DRNTF_Scenario.xml │ │ ├── ThingDef_Misc │ │ ├── DRNTF_Apparel.xml │ │ └── DRNTF_Weapon.xml │ │ └── ThingDefs_Races │ │ └── Race_DRNTF.xml ├── LF Command And Conquer NOD Combat Armor │ └── Patches │ │ └── LF Command And Conquer NOD Combat Armor │ │ └── CE_Nod.xml ├── LF Red Dawn │ ├── Defs │ │ └── LF Red Dawn │ │ │ ├── 135mm9M113Konkur.xml │ │ │ ├── 82mmMortar.xml │ │ │ ├── RPG123456789_Projectiles.xml │ │ │ ├── RPG16.xml │ │ │ ├── RPG29.xml │ │ │ └── Recipes_Grenades.xml │ └── Patches │ │ └── LF Red Dawn │ │ ├── Armors_RD.xml │ │ ├── Jacket_Pants_Boots.xml │ │ ├── RD_CE_Fixed_Weapons.xml │ │ ├── RD_CE_mortars.xml │ │ ├── RD_Grenade.xml │ │ ├── RD_LMG.xml │ │ ├── RD_Launchers.xml │ │ ├── RD_Pistols.xml │ │ ├── RD_RifleS.xml │ │ ├── RespiratorsHelmets_RD.xml │ │ ├── Shirt_RD.xml │ │ └── Softhead.xml ├── LTS Military │ ├── Defs │ │ └── LTS Military │ │ │ └── Recipes_Grenades.xml │ └── Patches │ │ └── LTS Military │ │ ├── Apparel.xml │ │ └── Weapons.xml ├── Leeani │ └── Patches │ │ └── Leeani │ │ ├── Apparel_Various.xml │ │ ├── PawnKindDefs_Humanlikes │ │ └── PawnKinds_Leeani.xml │ │ ├── Race_Leeani.xml │ │ └── Weapons_Leeani.xml ├── Lemolim Race │ ├── Defs │ │ └── Lemolim Race │ │ │ └── Pawnkinds_Lemonim.xml │ └── Patches │ │ └── Lemolim Race │ │ ├── Lemolim_Leather.xml │ │ ├── Lemolim_Race.xml │ │ ├── Lemonim_Body.xml │ │ ├── Lemonim_Pawnkind.xml │ │ ├── Pawnkind_LemolimGrenadier.xml │ │ └── Scenarios_Patch.xml ├── Let's Have a Cat! │ └── Patches │ │ └── Let's Have a Cat! │ │ └── LHaC_CE_Patch_Races_Animal_NEKO.xml ├── Life Support Pack │ └── Patches │ │ └── Life Support Pack │ │ └── Patches_Apparel.xml ├── Littluna Race │ └── Patches │ │ └── Littluna Race │ │ ├── Bodies │ │ ├── Bodies_Summon.xml │ │ └── Littluna_Bodytype.xml │ │ ├── PawnKindDefs │ │ └── Littluna_PawnKind.xml │ │ ├── ThingDefs_Misc │ │ └── Littluna_Apparel.xml │ │ └── ThingDefs_Races │ │ ├── AlienRace_Littluna.xml │ │ └── Race_Summons.xml ├── Logann │ └── Patches │ │ └── Logann │ │ ├── PawnKinds_Wolv.xml │ │ ├── Race_Wolvx.xml │ │ └── Wolv_Weapons.xml ├── Logistics_Mechanoid │ └── Patches │ │ └── Logistics_Mechanoid │ │ ├── Bodies_Mechanoid_Heavy.xml │ │ ├── MeleeMechanoid.xml │ │ └── Races_Mechanoids_Heavy.xml ├── MH Android Tiers Core │ └── Patches │ │ └── MH Android Tiers Core │ │ └── Hediffs │ │ ├── BodyParts_AndroidExternals.xml │ │ └── Hediffs_Android.xml ├── MH Android Tiers │ └── Patches │ │ └── MH Android Tiers │ │ ├── PawnkindDefs │ │ └── PawnKinds_Android.xml │ │ ├── ScenarioDefs │ │ └── Scenarios_Androids.xml │ │ ├── ThingDef_Misc │ │ └── Apparel_Packs.xml │ │ ├── ThingDef_Races │ │ └── AlienRace_Androids.xml │ │ └── TraderKindDefs │ │ └── Android_TraderKinds.xml ├── MH Mechanical Biomimetics │ ├── Defs │ │ └── MH Mechanical Biomimetics │ │ │ └── Ammo_SwarmShell.xml │ └── Patches │ │ └── MH Mechanical Biomimetics │ │ ├── Ammo │ │ └── 81mmMortar_SwarmShell.xml │ │ ├── Bodies │ │ ├── Bodies_Animal_Airborne.xml │ │ ├── Bodies_Animal_Bipedal.xml │ │ └── Bodies_Animal_Quadrupedal.xml │ │ └── ThingDef_Races │ │ └── Races_Animals.xml ├── MH Military Tiers │ ├── Defs │ │ └── MH Military Tiers │ │ │ └── Ammo │ │ │ └── RotaryShrapnelcannonShell.xml │ └── Patches │ │ └── MH Military Tiers │ │ ├── Bodies │ │ ├── Bodies_MK1.xml │ │ ├── Bodies_MK2.xml │ │ ├── Bodies_MK3.xml │ │ └── Bodies_MK4.xml │ │ ├── PawnkindDefs │ │ └── PawnKinds_Android.xml │ │ ├── ThingDef_Misc │ │ └── Weapons_Mech.xml │ │ └── ThingDef_Races │ │ └── AlienRace_Androids.xml ├── Machines of War │ └── Patches │ │ └── Machines of War │ │ ├── BodyDefs │ │ ├── CicadaBody.xml │ │ ├── DemolisherBody.xml │ │ └── EnforcerBody.xml │ │ ├── ThingDefs_Misc │ │ ├── BreachCharger.xml │ │ ├── CricketCannon.xml │ │ ├── Demolisherweapon.xml │ │ └── StormCharger.xml │ │ └── ThingDefs_Races │ │ ├── CicadaRaces.xml │ │ ├── DemolisherRaces.xml │ │ ├── EnforcerBreachRaces .xml │ │ └── EnforcerRaces.xml ├── Makeshift Melee Weapons │ └── Patches │ │ └── Makeshift Melee Weapons │ │ └── DetVisor_MakeshiftMelee.xml ├── Mantis Race │ └── Patches │ │ └── Mantis Race │ │ ├── Bodies_Mantis.xml │ │ ├── Hediff_Mantis.xml │ │ ├── PawnKind_Mantis.xml │ │ ├── Race_Mantis.xml │ │ ├── Scenarios.xml │ │ └── ThingDefs_Items_Claws.xml ├── Mantodean Insectoid Race │ ├── Defs │ │ └── Mantodean Insectoid Race │ │ │ └── Ammo_Manto.xml │ └── Patches │ │ └── Mantodean Insectoid Race │ │ ├── Ammo │ │ └── Projectiles.xml │ │ ├── Bodies │ │ └── Bodies_Mantodean.xml │ │ ├── Hediffs │ │ └── Hediffs.xml │ │ ├── PawnKindDefs │ │ └── Manto_PawnKind.xml │ │ ├── Scenario │ │ └── Mantodean_Scenario.xml │ │ ├── ThingDefs_Misc │ │ ├── Turrets.xml │ │ └── Weapons.xml │ │ └── ThingDefs_Races │ │ └── AlienRace_Mantodean.xml ├── Marilyn the Mincho Worshipper Witch │ └── Patches │ │ └── Marilyn the Mincho Worshipper Witch │ │ ├── Hediffs │ │ └── Hediffs_Biofilm.xml │ │ ├── Scenario │ │ └── Minchowitch_Scenario.xml │ │ ├── ThingDefs_Bodies │ │ ├── MinchoWitch_Bodytype.xml │ │ └── Mincho_Golem.xml │ │ ├── ThingDefs_Misc │ │ └── Mincho_Apparel.xml │ │ └── ThingDefs_Races │ │ ├── Race_Golem.xml │ │ └── Race_Witch.xml ├── Martens - Nature's Most Adorable Assassins │ └── Patches │ │ └── Martens - Nature's Most Adorable Assassins │ │ ├── Marty_Extended.xml │ │ └── Marty_Resources.xml ├── Maru Race │ ├── Defs │ │ └── Maru Race │ │ │ ├── Ammo_Arrow_AO.xml │ │ │ ├── Ammo_Arrow_AT.xml │ │ │ ├── Ammo_Arrow_BO.xml │ │ │ ├── Ammo_Arrow_BT.xml │ │ │ ├── Ammo_Arrow_O.xml │ │ │ └── Recipes_Thrown.xml │ └── Patches │ │ └── Maru Race │ │ ├── AlienRace_Maru.xml │ │ ├── Maru_Apparel.xml │ │ ├── Maru_Apparel_Spacesuit.xml │ │ ├── Maru_Bodytype.xml │ │ ├── Maru_Genes.xml │ │ ├── Maru_Hediff.xml │ │ ├── Maru_PawnKind.xml │ │ ├── Maru_Traits.xml │ │ ├── Weapons_Bow.xml │ │ ├── Weapons_Cleaver.xml │ │ └── Weapons_Thrown.xml ├── Mass Effect - Playable Geth │ ├── Defs │ │ └── Mass Effect - Playable Geth │ │ │ └── Ammo_ME.xml │ └── Patches │ │ └── Mass Effect - Playable Geth │ │ ├── Firestorm_M77_CE.xml │ │ ├── Geth_Bodies_CE.xml │ │ ├── Geth_Traits.xml │ │ ├── Geth_Weapons_CE.xml │ │ ├── PawnKinds_Geth_CE.xml │ │ └── Races_Geth_CE_.xml ├── Matter Manipulator │ └── Patches │ │ └── Matter Manipulator │ │ └── MatterManipulator.xml ├── Mechadroids │ └── Patches │ │ └── Mechadroids │ │ ├── Bodies_Mechadroids.xml │ │ ├── PawnKinds_Misc.xml │ │ ├── Race_Mechadroids.xml │ │ └── ThingDefs_Items.xml ├── Mechanized Armor Set │ └── Patches │ │ └── Mechanized Armor Set │ │ └── Ammo_&_Apparel_Defs.xml ├── Mechanoid Bench 2 JGH │ └── Patches │ │ └── Mechanoid Bench 2 JGH │ │ ├── Apparel_MB2.xml │ │ ├── Hediff_MB2.xml │ │ └── Weapons_MB2.xml ├── Mechanoid Bench 3 JGH │ └── Patches │ │ └── Mechanoid Bench 3 JGH │ │ ├── Apparel_MB3.xml │ │ ├── Hediff_MB3.xml │ │ ├── Reverse_Patch_MB3.xml │ │ └── Weapons_MB3.xml ├── Mechanoid Master Blaster │ └── Patches │ │ └── Mechanoid Master Blaster │ │ └── MechanoidMasterBlaster_CE_MPC_TE_Patch.xml ├── MechanoidsExtraordinaire │ └── Patches │ │ └── MechanoidsExtraordinaire │ │ ├── BodyDefs │ │ ├── Bodies_Mechanoid_Chimera.xml │ │ ├── Bodies_Mechanoid_Goliath.xml │ │ ├── Bodies_Mechanoid_Hound.xml │ │ ├── Bodies_Mechanoid_Kraken.xml │ │ └── Bodies_Mechanoid_Vespa.xml │ │ ├── HediffDefs │ │ └── Hediffs_Local_AddedParts_MechanoidsExtraordinaire.xml │ │ ├── PawnKindDefs │ │ └── PawnKinds_MechanoidsExtraordinaire.xml │ │ ├── ThingDefs_Misc │ │ ├── Weapons_Grenades_MechanoidsExtraordinaire.xml │ │ └── Weapons_Guns_MechanoidsExtraordinaire.xml │ │ └── ThingDefs_Races │ │ └── Races_Mechanoid_MechanoidsExtraordinaire.xml ├── Medical System Expansion - Revived │ └── Patches │ │ └── Medical System Expansion - Revived │ │ └── HediffDefs │ │ ├── Hediffs_AddedModules │ │ ├── AddedModules_Archotech.xml │ │ ├── AddedModules_ArchotechSpecial.xml │ │ ├── AddedModules_Bionic.xml │ │ └── AddedModules_BionicSpecial.xml │ │ └── Hediffs_AddedParts │ │ ├── Hediffs_AddedParts.xml │ │ ├── Hediffs_AddedParts_Archotech.xml │ │ ├── Hediffs_AddedParts_ArchotechSpecial.xml │ │ ├── Hediffs_AddedParts_Bionic.xml │ │ ├── Hediffs_AddedParts_BionicSpecial.xml │ │ ├── Hediffs_AddedParts_Simple.xml │ │ ├── Hediffs_AddedParts_VanillaArchotech.xml │ │ ├── Hediffs_AddedParts_VanillaBionic.xml │ │ └── Hediffs_AddedParts_VanillaSimple.xml ├── Medical System Expansion 2 │ └── Patches │ │ └── Medical System Expansion 2 │ │ └── Defs │ │ └── HediffDefs │ │ └── Modules │ │ └── Hediffs_Modules_Bionics.xml ├── Medicine Supplements (Continued) │ └── Patches │ │ └── Medicine Supplements (Continued) │ │ └── Items_Bandages.xml ├── Medieval Bowyer │ ├── Defs │ │ └── Medieval Bowyer │ │ │ └── Ammo.xml │ └── Patches │ │ └── Medieval Bowyer │ │ └── Weapons_Ranged.xml ├── Medieval Coastal Outfits │ └── Patches │ │ └── Medieval Coastal Outfits │ │ └── CE_MedievalCoastalOutfits.xml ├── Medieval Medicines 1.4 Medieval Overhaul Edition │ └── Patches │ │ └── Medieval Medicines 1.4 Medieval Overhaul Edition │ │ └── Hediff_MM.xml ├── Medieval Overhaul Arcane Archaeologists │ └── Patches │ │ └── Medieval Overhaul Arcane Archaeologists │ │ ├── MOAA_Patch_Apparel_Armor.xml │ │ ├── MOAA_Patch_Apparel_Headgear.xml │ │ ├── MOAA_Patch_Materials.xml │ │ ├── MOAA_Patch_Pawns_Arcane.xml │ │ ├── MOAA_Patch_Projectiles.xml │ │ └── MOAA_Patch_WeaponRanged_Arcane.xml ├── Medieval Overhaul Barbarians │ ├── Defs │ │ └── Projectiles │ │ │ └── Barbarian_Projectiles.xml │ └── Patches │ │ ├── PawnKinds │ │ └── PawnKinds_Barbarians.xml │ │ ├── ThingDefs_Misc │ │ ├── Apparel │ │ │ ├── BarbArmors.xml │ │ │ ├── BarbClothes.xml │ │ │ └── BarbHeadgear.xml │ │ ├── Shields │ │ │ ├── BarbarianBannerShields.xml │ │ │ ├── BarbarianMetalShields.xml │ │ │ ├── BarbarianRoundShields.xml │ │ │ └── BarbarianTallShields.xml │ │ └── Weapons │ │ │ ├── MeleeMedievalBarbarians.xml │ │ │ └── ThrownWeapons.xml │ │ └── ThingDefs_Races │ │ └── Races_Animal_CowGroup.xml ├── Medieval Overhaul House Roxmont │ └── Patches │ │ └── Medieval Overhaul House Roxmont │ │ ├── MOHR_Apparel.xml │ │ ├── MOHR_PawnKindDefs.xml │ │ └── MOHR_Weapons.xml ├── Medieval Overhaul Royalty │ └── Patches │ │ └── Medieval Overhaul Royalty │ │ ├── MOR_PawnKinds_Empire.xml │ │ ├── MOR_PawnKinds_MedievalRoyalty.xml │ │ ├── MOR_PawnKinds_MedievalRoyalty_Settlement.xml │ │ ├── MOR_RoyalPermits_Empire.xml │ │ └── VFEE │ │ ├── MOR_RangedMedieval.xml │ │ └── MOR_VFEE_PawnKinds.xml ├── Medieval Overhaul │ ├── Defs │ │ └── Medieval Overhaul │ │ │ └── Ammo │ │ │ ├── MO_Ammo_Arrows.xml │ │ │ ├── MO_Ammo_Ballista.xml │ │ │ ├── MO_Ammo_Bolts.xml │ │ │ ├── MO_Ammo_Catapult.xml │ │ │ ├── MO_Ammo_Medieval.xml │ │ │ ├── MO_Ammo_Scorpio.xml │ │ │ └── MO_Recipes_Grenades.xml │ └── Patches │ │ └── Medieval Overhaul │ │ ├── BodyDefs │ │ ├── MO_CE_Patch_Body_Golem.xml │ │ ├── MO_CE_Patch_Body_Griffon.xml │ │ ├── MO_CE_Patch_Body_Humanlike.xml │ │ ├── MO_CE_Patch_Body_Lindwurm.xml │ │ └── MO_CE_Patch_Body_Schrat.xml │ │ ├── CE_Apparel_Headgear.xml │ │ ├── MO_Insert_AmmoSets.xml │ │ ├── MO_Scenarios.xml │ │ ├── MO_Traits.xml │ │ ├── PawnKindDefs_Humanlikes │ │ ├── MO_Pawns_Cultists.xml │ │ ├── MO_Pawns_Medieval.xml │ │ ├── MO_Pawns_Settlement.xml │ │ └── MO_Pawns_Ulrik.xml │ │ ├── ThingDefs_Buildings │ │ ├── MO_Buildings_Structures.xml │ │ ├── MO_Siege_Ballistas.xml │ │ ├── MO_Siege_Misc.xml │ │ ├── MO_Siege_Scorpio.xml │ │ └── MO_Siege_Trebuchet.xml │ │ ├── ThingDefs_Items │ │ ├── MO_Drugs.xml │ │ ├── MO_Resource.xml │ │ └── MO_Resource_Stuff.xml │ │ ├── ThingDefs_Misc │ │ ├── MO_Animal_Projectiles.xml │ │ ├── MO_Apparel_Armor.xml │ │ ├── MO_Apparel_Helmets.xml │ │ ├── MO_Apparel_Misc.xml │ │ ├── MO_Apparel_Packs.xml │ │ ├── Shields │ │ │ └── MO_Shields.xml │ │ └── Weapons │ │ │ ├── MO_Weapons_Grenades.xml │ │ │ ├── MO_Weapons_Melee_Axes.xml │ │ │ ├── MO_Weapons_Melee_Hammers.xml │ │ │ ├── MO_Weapons_Melee_Maces.xml │ │ │ ├── MO_Weapons_Melee_Named.xml │ │ │ ├── MO_Weapons_Melee_Spears.xml │ │ │ ├── MO_Weapons_Melee_Swords.xml │ │ │ └── MO_Weapons_Ranged.xml │ │ ├── ThingDefs_Races │ │ ├── MO_CE_Patch_Alp.xml │ │ ├── MO_CE_Patch_Cobra.xml │ │ ├── MO_CE_Patch_Constrictor.xml │ │ ├── MO_CE_Patch_Daer.xml │ │ ├── MO_CE_Patch_Deathstinger.xml │ │ ├── MO_CE_Patch_Direboar.xml │ │ ├── MO_CE_Patch_Direwolf.xml │ │ ├── MO_CE_Patch_FarmGroup.xml │ │ ├── MO_CE_Patch_Ghoul.xml │ │ ├── MO_CE_Patch_Golem.xml │ │ ├── MO_CE_Patch_Gryphon.xml │ │ ├── MO_CE_Patch_Hyena.xml │ │ ├── MO_CE_Patch_Lindwurm.xml │ │ ├── MO_CE_Patch_Mimic.xml │ │ ├── MO_CE_Patch_Northern_Boar.xml │ │ ├── MO_CE_Patch_Rox.xml │ │ ├── MO_CE_Patch_Schrat.xml │ │ ├── MO_CE_Patch_Schrat_Sapling.xml │ │ ├── MO_CE_Patch_Troll.xml │ │ ├── MO_CE_Patch_Unhold.xml │ │ └── MO_CE_Patch_Webknecht.xml │ │ └── TraderKindDefs │ │ └── MO_TraderKinds.xml ├── Medieval Tailor │ └── Patches │ │ └── Medieval Tailor │ │ ├── MO_Tailor_Armor.xml │ │ ├── MO_Tailor_Clothes.xml │ │ └── MO_Tailor_Outwear.xml ├── Megafauna │ └── Patches │ │ └── Megafauna │ │ ├── Items_Resource_Megafauna_Items.xml │ │ ├── Items_Resource_Megafauna_Stuff.xml │ │ ├── Mega_Bodies.xml │ │ └── Races_Animal_Megafauna.xml ├── Melee Animation │ └── Patches │ │ └── Melee Animation │ │ └── AM_Weebstick.xml ├── Metal Gear Rimworld-Gekko │ └── Patches │ │ └── Metal Gear Rimworld-Gekko │ │ ├── BodyDefs │ │ └── GekkoBody.xml │ │ ├── ThingDefs_Misc │ │ └── Gekko50call.xml │ │ └── ThingDefs_Races │ │ └── Races_Mechanoid.xml ├── Midworld Expanded Flak Armor │ └── Patches │ │ └── Midworld Expanded Flak Armor │ │ └── ThingDefs_Misc │ │ └── ThingDef_Apparel.xml ├── Midworld Weaponry Expanded │ └── Patches │ │ └── Midworld Weaponry Expanded │ │ └── Industrial_Ranged.xml ├── Miho Race │ ├── Defs │ │ └── Miho Race │ │ │ └── Ammo │ │ │ ├── 47x398mmR.xml │ │ │ ├── 57x280mmR.xml │ │ │ ├── Ammo_Miho_Advanced.xml │ │ │ └── Ammo_Miho_Industrial.xml │ └── Patches │ │ └── Miho Race │ │ ├── DamageDefs │ │ └── AbilityDamage.xml │ │ ├── PawnKindDefs │ │ └── Miho_PawnKind.xml │ │ ├── Scenario │ │ └── Miho_Scenario.xml │ │ ├── ThingDefs_Items │ │ └── Items_Resources.xml │ │ ├── ThingDefs_Misc │ │ ├── Miho_Ammo.xml │ │ ├── Miho_Apparel.xml │ │ ├── Miho_Apparel_Space.xml │ │ ├── Miho_Apparel_Special.xml │ │ ├── Weapons_Mechanoid.xml │ │ ├── Weapons_Melee.xml │ │ ├── Weapons_Other.xml │ │ ├── Weapons_Other_Ship.xml │ │ ├── Weapons_Ranged.xml │ │ └── Weapons_Ranged_Unique.xml │ │ └── ThingDefs_Races │ │ ├── AlienRace_Miho.xml │ │ ├── Race_MihoHediff.xml │ │ ├── Race_MihoMech.xml │ │ └── Race_MihoSummon.xml ├── Mincho, The Mint Choco Slime │ └── Patches │ │ └── Mincho, The Mint Choco Slime │ │ ├── Scenario │ │ └── Mincho_Scenario.xml │ │ ├── ThingDefs_Bodies │ │ └── Mincho_Bodytype.xml │ │ ├── ThingDefs_Items │ │ └── Items_Resource_Stuff.xml │ │ ├── ThingDefs_Misc │ │ ├── Mincho_Apparel.xml │ │ └── Mincho_Weapon.xml │ │ └── ThingDefs_Races │ │ ├── Race_Mincho.xml │ │ └── Race_Pets.xml ├── MiningCo. MiningHelmet │ └── Patches │ │ └── MiningCo. MiningHelmet │ │ └── MiningCoApparel_HelmetAndVest.xml ├── MiningCo. Spaceship │ ├── Defs │ │ └── MiningCo. Spaceship │ │ │ └── Defs_Airstrikes.xml │ └── Patches │ │ └── MiningCo. Spaceship │ │ ├── Airstrike_Damage.xml │ │ ├── Helmet.xml │ │ ├── Mining_Trader.xml │ │ └── ShipTurrets.xml ├── Misc Core │ └── Patches │ │ └── Misc Core │ │ └── ThingDefs_Misc │ │ └── Weapons.xml ├── Misc MAI │ └── Patches │ │ └── Misc MAI │ │ ├── Bodies │ │ └── Bodies_AIPawn.xml │ │ ├── PawnKindDefs │ │ └── AI_PawnKind.xml │ │ ├── ThingDefs_Misc │ │ └── Apparel.xml │ │ └── ThingDefs_Races │ │ └── Race_AIPawn.xml ├── MiscRobots │ └── Patches │ │ └── MiscRobots │ │ └── AIRobot_RacesCE.xml ├── MiscTurrets │ ├── Defs │ │ └── MiscTurrets │ │ │ └── Patch_Ammo.xml │ └── Patches │ │ └── MiscTurrets │ │ ├── ThingDefs_Guns.xml │ │ └── ThingDefs_Turrets.xml ├── Misstall's Armor and Uniforms │ └── Patches │ │ └── Misstall's Armor and Uniforms │ │ ├── Misstall_Apparel.xml │ │ ├── Misstall_Armor.xml │ │ ├── Misstall_Head.xml │ │ ├── Misstall_HeavyTurretpack.xml │ │ ├── Misstall_Loadbearing.xml │ │ └── Misstall_Turretpack.xml ├── Moa │ └── Patches │ │ └── Moa │ │ └── Ce_Moa.xml ├── Mono Weapons Pack │ ├── Defs │ │ └── Mono Weapons Pack │ │ │ └── MonoWhipClawCharged.xml │ └── Patches │ │ └── Mono Weapons Pack │ │ ├── Weapons_Mono.xml │ │ └── Weapons_Mono_Bladelink.xml ├── Moonjelly Race │ └── Patches │ │ └── Moonjelly Race │ │ ├── BodyArmor_Patch.xml │ │ ├── Moonjelly_Patch.xml │ │ └── PawnKinds_MoonJelly.xml ├── More Archotech Garbage Continued │ └── Patches │ │ └── More Archotech Garbage Continued │ │ ├── MAGC_Hediff.xml │ │ └── MAGC_Resource_Stuff.xml ├── More Armory! Midworld Arms Pack │ └── Patches │ │ └── More Armory! Midworld Arms Pack │ │ ├── ThingDefs_Apparel.xml │ │ ├── Weapons_Melee.xml │ │ └── Weapons_Ranged.xml ├── More Consumables And Mutagens │ └── Patches │ │ └── More Consumables And Mutagens │ │ ├── Bodies_Slime.xml │ │ ├── Hediffs_Mutations.xml │ │ └── Races_Slime.xml ├── More Medieval Helms and Armor │ └── Patches │ │ └── More Medieval Helms and Armor │ │ ├── Apparel.xml │ │ ├── Armor.xml │ │ ├── Footwear.xml │ │ ├── Handwear.xml │ │ ├── Headgear.xml │ │ └── Leggings.xml ├── More Persona Traits │ └── Patches │ │ └── More Persona Traits │ │ └── MorePersonaTraits_Patches.xml ├── More Practical Traits │ └── Patches │ │ └── More Practical Traits │ │ └── TraitDefs │ │ └── Traits_MPT.xml ├── More Psycasts │ └── Patches │ │ └── More Psycasts │ │ └── AbilitiesPatch.xml ├── More Utility Packs │ └── Patches │ │ └── More Utility Packs │ │ ├── Apparel_Mechanoids.xml │ │ ├── Apparel_Packs.xml │ │ └── Apparel_Royalty.xml ├── More Vanilla Turrets │ ├── Defs │ │ └── More Vanilla Turrets │ │ │ └── MVT_CE_Patch_Ammo_Shells.xml │ └── Patches │ │ └── More Vanilla Turrets │ │ └── MVT_CE_Patch_Buildings_Security.xml ├── MoreMechanoids │ └── Patches │ │ └── MoreMechanoids │ │ ├── BodyDefs │ │ └── Armor.xml │ │ ├── PawnKinds │ │ └── PawnKinds.xml │ │ ├── ThingDefs_Misc │ │ └── Weapons_Mechanoid.xml │ │ └── ThingDefs_Races │ │ └── Races_Mechanoid.xml ├── Morgante Mafia Weapons Pack │ └── Patches │ │ └── Morgante Mafia Weapons Pack │ │ └── Weapons_Guns.xml ├── Morgante WW2 Italian Weapons │ ├── Defs │ │ └── Morgante WW2 Italian Weapons │ │ │ └── Patch_Ammo.xml │ └── Patches │ │ └── Morgante WW2 Italian Weapons │ │ └── Weapons_Guns.xml ├── MorrowRim - Ashlands Swamp │ └── Patches │ │ └── MorrowRim - Ashlands Swamp │ │ ├── MorrowRim_Lizard.xml │ │ ├── MySwampBodyisReady.xml │ │ ├── SwampInsec.xml │ │ └── SwampJello.xml ├── MorrowRim - Bloodmoon │ ├── Defs │ │ └── MorrowRim - Bloodmoon │ │ │ ├── Hunter_Ammo.xml │ │ │ └── Hunter_Grenades.xml │ └── Patches │ │ └── MorrowRim - Bloodmoon │ │ ├── Bloodmoon_Deer.xml │ │ ├── BodyDef_Patches.xml │ │ ├── HediffDef_Disease.xml │ │ ├── Hunter_Grenades.xml │ │ ├── Hunter_Weapons.xml │ │ ├── MorrowRim_Werewolf.xml │ │ └── MorrowRim_WerewolfLord.xml ├── MorrowRim - Colovian Fur Helm │ └── Patches │ │ └── MorrowRim - Colovian Fur Helm │ │ └── Furr_Helm.xml ├── MorrowRim │ ├── Defs │ │ └── MorrowRim │ │ │ └── RetchingShell.xml │ └── Patches │ │ └── MorrowRim │ │ ├── MorrowRim_CnidarianCE.xml │ │ ├── MorrowRim_CorpusCE.xml │ │ ├── MorrowRim_DaedraCE.xml │ │ ├── MorrowRim_InsectCE.xml │ │ ├── MorrowRim_KwamaCE.xml │ │ ├── MorrowRim_Reptile_PantherCE.xml │ │ ├── MorrowRim_VvarkCE.xml │ │ ├── MorrowRim_XMaterials.xml │ │ ├── MyBodiesAreReady.xml │ │ └── Patch_Gasmasks.xml ├── Moyo Cartel │ ├── Defs │ │ └── Moyo Cartel │ │ │ └── Ammo │ │ │ └── Ammo_Moyo.xml │ └── Patches │ │ └── Moyo Cartel │ │ ├── PawnKindDefs │ │ └── Moyo_PawnKind.xml │ │ └── ThingDefs_Misc │ │ ├── Moyo_Apparel.xml │ │ ├── Moyo_Royal_Apparel.xml │ │ └── Weapons.xml ├── Moyo from the depth │ ├── Defs │ │ └── Moyo from the depth │ │ │ └── Ammo_Moyo.xml │ └── Patches │ │ └── Moyo from the depth │ │ ├── Bodies │ │ ├── Bodies_Moyo_Mech.xml │ │ └── Moyo_Bodytype.xml │ │ ├── Drugs │ │ ├── Belial-V_Effect.xml │ │ └── Deepblue_splicing.xml │ │ ├── PawnKindDefs │ │ └── Moyo_PawnKind.xml │ │ ├── Scenario │ │ └── Moyo_Scenario.xml │ │ ├── ThingDefs_Items │ │ └── Items_Resources.xml │ │ ├── ThingDefs_Misc │ │ ├── Moyo_Apparel.xml │ │ ├── Moyo_Dragonian_Apparel.xml │ │ ├── Moyo_Royal_Apparel.xml │ │ ├── Weapons.xml │ │ └── Weapons_Mechanoid.xml │ │ └── ThingDefs_Races │ │ ├── AlienRace_Moyo.xml │ │ └── Race_MoyoMech.xml ├── Moyo light in the abyss │ ├── Defs │ │ └── Moyo light in the abyss │ │ │ └── Ammo │ │ │ └── Ammo_Moyo.xml │ └── Patches │ │ └── Moyo light in the abyss │ │ ├── PawnKindDefs │ │ └── Moyo_PawnKind.xml │ │ ├── ThingDefs_Misc │ │ ├── Moyo_Apparel.xml │ │ └── Weapons.xml │ │ └── ThingDefs_Races │ │ └── AlienRace_Moyo.xml ├── Nakin Race │ └── Patches │ │ └── Nakin Race │ │ ├── Nakin_Bionics.xml │ │ ├── Nakin_Body.xml │ │ ├── Nakin_Items.xml │ │ ├── Nakin_Pawnkind.xml │ │ ├── Nakin_Race.xml │ │ └── Nakin_Scenario.xml ├── Nanosuit │ └── Patches │ │ └── Nanosuit │ │ └── Armor_Crysis.xml ├── Nearmare Race │ └── Patches │ │ └── Nearmare Race │ │ ├── Ammo │ │ └── Projectiles.xml │ │ ├── Bodies │ │ ├── Bodies_Summon.xml │ │ └── Nearmare_Bodytype.xml │ │ ├── PawnKindDefs │ │ └── Nearmare_PawnKind.xml │ │ ├── Scenario │ │ └── Nearmare_Scenario.xml │ │ ├── ThingDefs_Misc │ │ ├── Nearmare_Apparel.xml │ │ └── Weapons.xml │ │ └── ThingDefs_Races │ │ ├── AlienRace_Nearmare.xml │ │ └── Race_Summons.xml ├── Neclose Race │ └── Patches │ │ └── Neclose Race │ │ ├── Bodies │ │ └── Neclose_Bodytype.xml │ │ ├── Hediffs │ │ └── Neclose_Hediffs.xml │ │ ├── PawnKindDefs │ │ └── Neclose_PawnKind.xml │ │ ├── Scenario │ │ └── Neclose_Scenario.xml │ │ ├── ThingDefs_Misc │ │ └── Neclose_Apparel.xml │ │ └── ThingDefs_Races │ │ ├── AlienRace_Neclose.xml │ │ └── Race_Summons.xml ├── Nephilim Xenotype Reborn │ └── Patches │ │ └── Nephilim Xenotype Reborn │ │ └── Melee_Weapon.xml ├── New Mech - Mini-Miner │ └── Patches │ │ └── New Mech - Mini-Miner │ │ └── Race_MiniMiner.xml ├── Nihal │ └── Patches │ │ └── Nihal │ │ ├── PawnKinds_NiHal.xml │ │ ├── Scenarios.xml │ │ ├── ThingDefs_Misc │ │ ├── Apparel_Hats.xml │ │ └── Apparel_Various.xml │ │ ├── ThingDefs_Races │ │ ├── Drake.xml │ │ └── Nihal_Race.xml │ │ └── ThingDefs_Weapons │ │ └── Weapons.xml ├── Nomad Scavenger │ └── Patches │ │ └── Nomad Scavenger │ │ ├── Nomad Scavenger CE Patch Apparels.xml │ │ └── Nomad Scavenger CE Patch Weapon.xml ├── Not Only Just A Cannon │ ├── Defs │ │ └── Not Only Just A Cannon │ │ │ └── Ammo_Cannon.xml │ └── Patches │ │ └── Not Only Just A Cannon │ │ └── Patch_Cannon_Turret.xml ├── Nukes │ ├── Defs │ │ └── Nukes │ │ │ └── Ammo_Nuclear.xml │ └── Patches │ │ └── Nukes │ │ ├── IEDs_Nuclear.xml │ │ └── Projectiles_Nuclear.xml ├── Nyaron │ ├── Defs │ │ └── Nyaron │ │ │ └── Ammo │ │ │ └── Ammo_Nyaron.xml │ └── Patches │ │ └── Nyaron │ │ ├── Bodies │ │ └── Nyaron_Bodytype.xml │ │ ├── PawnKindDefs │ │ └── Nyaron_PawnKind.xml │ │ ├── Scenario │ │ └── Nyaron_Scenario.xml │ │ ├── ThingDefs_Items │ │ └── Items_Resources.xml │ │ ├── ThingDefs_Misc │ │ ├── Nyaron_Apparel.xml │ │ └── Weapons.xml │ │ └── ThingDefs_Races │ │ └── AlienRace_Nyaron.xml ├── O21 Dragons Not Included │ ├── Defs │ │ └── O21 Dragons Not Included │ │ │ └── Ammo_Boomerang.xml │ └── Patches │ │ └── O21 Dragons Not Included │ │ ├── Apparel_Dragon.xml │ │ ├── Melee_Dragon.xml │ │ └── Ranged_Dragon.xml ├── O21 Forgotten Realms │ └── Patches │ │ └── O21 Forgotten Realms │ │ └── ThingDefs_Races │ │ ├── Patch_Bodies.xml │ │ ├── PawnKinds_Misc.xml │ │ ├── Race_Chitine.xml │ │ ├── Race_Dwarf.xml │ │ ├── Race_ElfBase.xml │ │ ├── Race_Firbolg.xml │ │ ├── Race_Gith.xml │ │ ├── Race_Goblin.xml │ │ ├── Race_HalfOrcs.xml │ │ ├── Race_Halfing.xml │ │ ├── Race_Hobgoblins.xml │ │ ├── Race_Illlithids.xml │ │ ├── Race_Killoren.xml │ │ ├── Race_Kobold.xml │ │ ├── Race_Orcs.xml │ │ ├── Race_Tabaxi.xml │ │ ├── Race_Tieflings.xml │ │ └── Race_Warforged.xml ├── O21 Mechadroids │ └── Patches │ │ └── O21 Mechadroids │ │ ├── Bodies_Mechadroids.xml │ │ ├── PawnKinds_Misc.xml │ │ ├── Race_Mechadroids.xml │ │ └── ThingDefs_Items.xml ├── ODZ Stalingrad - Uniforms │ └── Patches │ │ └── ODZ Stalingrad - Uniforms │ │ └── ThingDefs_Apparel.xml ├── ODZ Suits │ └── Patches │ │ └── ODZ Suits │ │ └── ThingDefs_Apparel.xml ├── Obsidia Expansion │ └── Patches │ │ └── Obsidia Expansion │ │ └── ThingDefs_Misc │ │ └── Obsidia_Expansion_CE_Ability.xml ├── Odysseus Vacsuit Set │ └── Patches │ │ └── Odysseus Vacsuit Set │ │ └── Patches_Apparel.xml ├── Opossum Friends │ └── Patches │ │ └── Opossum Friends │ │ └── OpossumFriend.xml ├── Orassans │ ├── Defs │ │ └── Orassans │ │ │ └── Ammo │ │ │ ├── 10mmRailgunOE.xml │ │ │ ├── 12mm-autoRailgunOE.xml │ │ │ ├── 12mm-longRailgunOE.xml │ │ │ ├── 12mm-subsonicRailgunOE.xml │ │ │ ├── 40x90mmGrenadeOE.xml │ │ │ ├── 6mmRailgunOE.xml │ │ │ ├── 8mmRailgunOE.xml │ │ │ ├── AmmoCategories_ChemicalCompoundOE.xml │ │ │ ├── AmmoCategories_GrenadesOE.xml │ │ │ ├── ChemicalCompoundOE.xml │ │ │ ├── CryoBolt.xml │ │ │ ├── Damages_LocalInjury_OE.xml │ │ │ ├── Hediffs_CE_OE.xml │ │ │ ├── MissileAmmo.xml │ │ │ └── RailShotgunAmmo.xml │ └── Patches │ │ └── Orassans │ │ ├── PawnKinds_Orassans.xml │ │ ├── ThingDefs_Misc │ │ ├── Apparel_Hats.xml │ │ └── Apparel_Various.xml │ │ ├── ThingDefs_Races │ │ ├── Desiri.xml │ │ ├── Gryphon.xml │ │ ├── Hybrid_Race.xml │ │ ├── Orassan_Race.xml │ │ └── Ori.xml │ │ └── ThingDefs_Weapons │ │ └── Weapons.xml ├── Ordo Tempestus - Tempestus Scions │ └── Patches │ │ └── Ordo Tempestus - Tempestus Scions │ │ ├── Armor_Industrial.xml │ │ └── Headgear_Industrial.xml ├── Outer Rim - Chiss Ascendancy │ └── Patches │ │ └── Outer Rim - Chiss Ascendancy │ │ └── Outer_Rim_Chiss_Ascendancy_Ranged_Weapons.xml ├── Outer Rim - Core │ ├── Defs │ │ └── Outer Rim - Core │ │ │ ├── Outer_Rim_Core_Ammo.xml │ │ │ ├── Outer_Rim_Core_GrenadeRecipes.xml │ │ │ └── Outer_Rim_Core_TurretAmmo.xml │ └── Patches │ │ └── Outer Rim - Core │ │ ├── Outer_Rim_Core_Apparel.xml │ │ ├── Outer_Rim_Core_Armour.xml │ │ ├── Outer_Rim_Core_Grenades.xml │ │ ├── Outer_Rim_Core_Jetpacks.xml │ │ ├── Outer_Rim_Core_Materials.xml │ │ ├── Outer_Rim_Core_Melee_Weapons.xml │ │ ├── Outer_Rim_Core_Mines.xml │ │ ├── Outer_Rim_Core_Pawnkinds.xml │ │ ├── Outer_Rim_Core_Ranged_Weapons.xml │ │ ├── Outer_Rim_Core_Turrets.xml │ │ └── Outer_Rim_Core_Vambraces.xml ├── Outer Rim - Droid Depot │ └── Patches │ │ └── Outer Rim - Droid Depot │ │ ├── Outer_Rim_Droid_Armour.xml │ │ ├── Outer_Rim_Droid_Droids.xml │ │ ├── Outer_Rim_Droid_Jetpacks.xml │ │ └── Outer_Rim_Droid_MountedWeapons.xml ├── Outer Rim - Faction - Tatooine │ └── Patches │ │ └── Outer Rim - Faction - Tatooine │ │ └── Patch_OuterRim_Factions.xml ├── Outer Rim - Galactic Empire │ └── Patches │ │ └── Outer Rim - Galactic Empire │ │ ├── Outer_Rim_Galactic_Empire_Apparel.xml │ │ ├── Outer_Rim_Galactic_Empire_Pawnkinds.xml │ │ ├── Outer_Rim_Galactic_Empire_Ranged_Weapons.xml │ │ └── Outer_Rim_Galactic_Empire_Scenario.xml ├── Outer Rim - Galactic Republic │ └── Patches │ │ └── Outer Rim - Galactic Republic │ │ ├── Outer_Rim_Galactic_Republic_Apparel.xml │ │ ├── Outer_Rim_Galactic_Republic_Pawnkinds.xml │ │ └── Outer_Rim_Galactic_Republic_Ranged_Weapons.xml ├── Outer Rim - Mandalore │ └── Patches │ │ └── Outer Rim - Mandalore │ │ ├── Outer_Rim_Mandalorian_Apparel.xml │ │ ├── Outer_Rim_Mandalorian_Melee_Weapons.xml │ │ ├── Outer_Rim_Mandalorian_Pawnkinds.xml │ │ └── Outer_Rim_Mandalorian_Ranged_Weapons.xml ├── Outer Rim - Old Republic │ └── Patches │ │ └── Outer Rim - Old Republic │ │ ├── Outer_Rim_Old_Republic_Apparel.xml │ │ ├── Outer_Rim_Old_Republic_Pawnkinds.xml │ │ └── Outer_Rim_Old_Republic_Ranged_Weapons.xml ├── Outer Rim - Rebel Alliance │ └── Patches │ │ └── Outer Rim - Rebel Alliance │ │ ├── Outer_Rim_Rebel_Apparel.xml │ │ ├── Outer_Rim_Rebel_Pawnkinds.xml │ │ └── Outer_Rim_Rebel_Ranged_Weapons.xml ├── Outer Rim - Seperatists │ └── Patches │ │ └── Outer Rim - Seperatists │ │ ├── Outer_Rim_Seperatist_Melee_Weapons.xml │ │ └── Outer_Rim_Seperatist_Ranged_Weapons.xml ├── Outer Rim - Tatooine Sandcrawler │ ├── Defs │ │ └── Outer Rim - Tatooine Sandcrawler │ │ │ └── BodyShapeDefs.xml │ └── Patches │ │ └── Outer Rim - Tatooine Sandcrawler │ │ └── Patch_OuterRim_SandCrawler.xml ├── Outer Rim - Tatooine │ ├── Defs │ │ └── Outer Rim - Tatooine │ │ │ └── Ammo_OuterRim.xml │ └── Patches │ │ └── Outer Rim - Tatooine │ │ ├── Patch_OuterRim_Apparel.xml │ │ ├── Patch_OuterRim_Races.xml │ │ └── Patch_OuterRim_Weapons.xml ├── Outland - Core │ └── Patches │ │ └── Outland - Core │ │ ├── Apparel_Outland.xml │ │ ├── Buildings_Security.xml │ │ ├── Items_Resources.xml │ │ └── Weapons_Ranged.xml ├── Outland - Eastborn │ └── Patches │ │ └── Outland - Eastborn │ │ ├── Apparel_Eastborn.xml │ │ ├── Eastborn_WeaponsMelee.xml │ │ └── Eastborn_WeaponsRanged.xml ├── Outland - Genetics │ └── Patches │ │ └── Outland - Genetics │ │ ├── Eastborn Empire │ │ ├── PawnKinds_Eastborn.xml │ │ └── Scenarios_Eastborn.xml │ │ ├── Motz Coalition │ │ ├── Motz_PawnkindPatch.xml │ │ └── ScenarioPatch.xml │ │ └── Redburn Pact │ │ ├── PawnKinds_Redburn.xml │ │ └── Scenarios_Redburn.xml ├── Outland - Motz Coalition │ └── Patches │ │ └── Outland - Motz Coalition │ │ ├── Apparel_MotzPatch.xml │ │ ├── MotzWeapons_Patch.xml │ │ └── Oxcet_BodyPatch.xml ├── Outland - Redburn Pact │ └── Patches │ │ └── Outland - Redburn Pact │ │ ├── Apparel_Redburn.xml │ │ ├── Buildings_Security.xml │ │ ├── Redburn_WeaponsMelee.xml │ │ └── Redburn_WeaponsRanged.xml ├── Palm Cats │ └── Patches │ │ └── Palm Cats │ │ └── ThingDefs_Races.xml ├── Paniel the Automata │ ├── Defs │ │ └── Paniel the Automata │ │ │ ├── Ammo_Paniel.xml │ │ │ └── DamageDef_Paniel.xml │ └── Patches │ │ └── Paniel the Automata │ │ ├── Bodies │ │ └── Paniel_Bodytype.xml │ │ ├── HediffDef │ │ └── Hediff.xml │ │ ├── PawnKindsDef_Paniel │ │ └── PawnKinds_Misc.xml │ │ ├── ThingDefs_Buildings │ │ └── Buildings_Turrets.xml │ │ ├── ThingDefs_Items │ │ └── Items_Resources.xml │ │ ├── ThingDefs_Misc │ │ ├── Paniel_Apparel.xml │ │ └── Weapons.xml │ │ └── ThingDefs_Races │ │ └── AlienRace_Paniel.xml ├── Pawnbold Race │ └── Patches │ │ └── Pawnbold Race │ │ ├── Body_Pawnbold.xml │ │ ├── PawnKinds_Misc.xml │ │ ├── Race_Pawnbold.xml │ │ └── Scenarios_Misc.xml ├── Penguin │ └── Patches │ │ └── Penguin │ │ └── Races_Penguin.xml ├── Persona Warcasket Weapons │ └── Patches │ │ └── Persona Warcasket Weapons │ │ └── Weapons_Warcaskets.xml ├── Plasma Weapons Pack │ ├── Defs │ │ └── Plasma Weapons Pack │ │ │ └── PlasmaSaw.xml │ └── Patches │ │ └── Plasma Weapons Pack │ │ ├── Weapon_Plasma.xml │ │ └── Weapon_Plasma_Bladelink.xml ├── Polarisbloc Core Lab │ └── Patches │ │ └── Polarisbloc Core Lab │ │ └── HediffDefs │ │ └── Hediffs_CombatChip.xml ├── Polarisbloc Security Force │ ├── Defs │ │ └── Polarisbloc Security Force │ │ │ └── Ammo │ │ │ └── Ammo_Polaris.xml │ └── Patches │ │ └── Polarisbloc Security Force │ │ ├── PawnKindDefs │ │ └── PawnKinds_SecuirityForce.xml │ │ └── Thingdefs_Misc │ │ ├── Apparel.xml │ │ └── Weapons.xml ├── Poleepkwa Race │ ├── Defs │ │ └── Poleepkwa Race │ │ │ └── Pawnkinds_Prawns.xml │ └── Patches │ │ └── Poleepkwa Race │ │ ├── New_Prawns.xml │ │ ├── Patch_Bodies_Prawny.xml │ │ ├── Patch_PawnKinds_Prawn.xml │ │ └── Patch_Race_Prawns.xml ├── Possessed Weapons │ ├── Defs │ │ ├── PossessedWeapons_Ammo.xml │ │ └── Projectiles_Possesed.xml │ └── Patches │ │ ├── PossessedWeapons_MeleePatch.xml │ │ └── PossessedWeapons_RangedPatch.xml ├── PowerArmour T-45b │ └── Patches │ │ └── PowerArmour T-45b │ │ └── T45b_CE_Patch.xml ├── Pratt WWII Weapons Pack │ ├── Defs │ │ └── Pratt WWII Weapons Pack │ │ │ └── Recipes_Grenades.xml │ └── Patches │ │ └── Pratt WWII Weapons Pack │ │ ├── PWW2_CE_Patch_Turrets.xml │ │ ├── PWW2_CE_Patch_Weapons_Grenades.xml │ │ ├── PWW2_CE_Patch_Weapons_Melee_JPN.xml │ │ ├── PWW2_CE_Patch_Weapons_Ranged_FR.xml │ │ ├── PWW2_CE_Patch_Weapons_Ranged_GER.xml │ │ ├── PWW2_CE_Patch_Weapons_Ranged_JPN.xml │ │ ├── PWW2_CE_Patch_Weapons_Ranged_UK.xml │ │ ├── PWW2_CE_Patch_Weapons_Ranged_US.xml │ │ └── PWW2_CE_Patch_Weapons_Ranged_USSR.xml ├── Prestige Specialist Armor │ └── Patches │ │ └── Prestige Specialist Armor │ │ └── Apparel_Armor.xml ├── Prestige Vacsuit Set │ └── Patches │ │ └── Prestige Vacsuit Set │ │ └── Patches_Apparel.xml ├── Primitive Core │ └── Patches │ │ └── Primitive Core │ │ └── ThingDefs_Resources.xml ├── Primitive Workbenches │ ├── Defs │ │ └── Primitive Workbenches │ │ │ └── ThingDefs_Projectiles.xml │ └── Patches │ │ └── Primitive Workbenches │ │ ├── ThingDefs_Resources.xml │ │ ├── ThingDefs_WeaponsMelee.xml │ │ └── ThingDefs_WeaponsRanged.xml ├── Profaned │ ├── Defs │ │ └── Profaned │ │ │ ├── PossessedWeapons_Ammo.xml │ │ │ ├── Profaned_CE_Projectiles.xml │ │ │ ├── Profaned_DamageDef.xml │ │ │ ├── Profaned_ManueverDef.xml │ │ │ └── Profaned_ToolCapacityDef.xml │ └── Patches │ │ └── Profaned │ │ ├── AnimalGear │ │ └── Profaned_AnimalGear_Patch.xml │ │ ├── DamageDef │ │ └── Profaned_DamagedDef.xml │ │ ├── GeneDefs │ │ └── Profaned_GeneDef_Patch.xml │ │ ├── PawnKindDef │ │ └── Profaned_PawnkindDef_Patch.xml │ │ ├── Scenarios │ │ └── Profaned_Scenario_Patch.xml │ │ ├── ThingDefs_Items │ │ └── Profaned_Items_Resources.xml │ │ ├── ThingDefs_Misc │ │ ├── Profaned_Apparel_Armor.xml │ │ ├── Profaned_Apparel_Helmets.xml │ │ ├── Profaned_Apparel_Shields.xml │ │ ├── Profaned_CE_Patch_Projectiles.xml │ │ ├── Profaned_CE_Patch_VerbShoot.xml │ │ └── Weapons │ │ │ ├── Profaned_Weapons_Melee.xml │ │ │ └── Profaned_Weapons_Ranged.xml │ │ └── ThingDefs_Races │ │ ├── Profaned_Race_Colossus.xml │ │ ├── Profaned_Race_Ghoul.xml │ │ ├── Profaned_Race_Skeleton.xml │ │ ├── Profaned_Race_UndeadCat.xml │ │ ├── Profaned_Race_UndeadDragon.xml │ │ ├── Profaned_Race_UndeadHorse.xml │ │ ├── Profaned_Race_UndeadWarg.xml │ │ └── Profaned_Race_Wraith.xml ├── Project RimFactory - Materials │ ├── Defs │ │ └── Project RimFactory - Materials │ │ │ └── Ammo_IronArrows.xml │ └── Patches │ │ └── Project RimFactory - Materials │ │ ├── Ammo_PRFM.xml │ │ ├── Items_Fossil.xml │ │ ├── Items_Resource_Carbon.xml │ │ ├── Items_Resource_Coal.xml │ │ ├── Items_Resource_Coke.xml │ │ ├── Items_Resource_Glasswork.xml │ │ ├── Items_Resource_Masonry.xml │ │ ├── Items_Resource_Metal.xml │ │ ├── Items_Resource_Plastics.xml │ │ ├── Items_Resource_Quartz.xml │ │ └── Items_Resource_Raw.xml ├── Prostheses+ │ └── Patches │ │ └── Prostheses+ │ │ ├── Patch_Implants.xml │ │ ├── Patch_Prostheses.xml │ │ └── Patch_Utility.xml ├── Protoswords │ └── Patches │ │ └── Protoswords │ │ └── Proto_CE.xml ├── PsiTech │ └── Patches │ │ └── PsiTech │ │ ├── AutocastProfileDefs │ │ └── PsiTechAutocastProfileDefs.xml │ │ ├── EquipmentEnhancementDef │ │ └── EquipmentEnhancementDef.xml │ │ ├── HediffDefs │ │ └── PsiTechBuffs.xml │ │ ├── PawnKindDefs │ │ └── PawnKinds_PsiTech.xml │ │ ├── PsiTechAbilityDefs │ │ ├── PsiTechAbilitiyDefs_Tier1.xml │ │ ├── PsiTechAbilitiyDefs_Tier2.xml │ │ └── PsiTechAbilityDefs_Tier3.xml │ │ └── ThingDefs │ │ ├── Equipment │ │ ├── PsiTechAdvancedApparel.xml │ │ └── PsiTechBasicApparel.xml │ │ └── Items │ │ └── PsiTechResources.xml ├── PsyBlasters │ ├── Defs │ │ └── PsyBlasters │ │ │ ├── Categories.xml │ │ │ ├── PistolAmmo.xml │ │ │ ├── PsyExplosive.xml │ │ │ ├── RifleAmmo.xml │ │ │ ├── ShotgunAmmo.xml │ │ │ └── SniperAmmo.xml │ └── Patches │ │ └── PsyBlasters │ │ └── Weapons_Guns.xml ├── Pulse Weaponry │ ├── Defs │ │ └── Pulse Weaponry │ │ │ ├── Ammo.xml │ │ │ └── Damage.xml │ └── Patches │ │ └── Pulse Weaponry │ │ ├── Apparel_Hats.xml │ │ ├── RangedSpacer.xml │ │ └── ThingDefs_Sentry.xml ├── Pulsefire Turret │ └── Patches │ │ └── Pulsefire Turret │ │ └── PulsefireTurret_CombatExtendedPatch.xml ├── RBSE │ ├── Defs │ │ └── RBSE │ │ │ └── Cure CE Scars.xml │ └── Patches │ │ └── RBSE │ │ └── Bionics.xml ├── RH2 DOOM │ ├── Defs │ │ └── RH2 DOOM │ │ │ ├── RH2_DOOM_CE_Patch_Ammo_12Gauge_Dual.xml │ │ │ ├── RH2_DOOM_CE_Patch_Ammo_BfgCell.xml │ │ │ ├── RH2_DOOM_CE_Patch_Ammo_EmgPistol.xml │ │ │ ├── RH2_DOOM_CE_Patch_Ammo_GaussCannonFlechette.xml │ │ │ ├── RH2_DOOM_CE_Patch_Ammo_PlasmaCell.xml │ │ │ └── RH2_DOOM_CE_Patch_Ammo_Rocket.xml │ └── Patches │ │ └── RH2 DOOM │ │ ├── RH2_DOOM_CE_Patch_Apparel_Armor.xml │ │ ├── RH2_DOOM_CE_Patch_Apparel_Armor_Headgear.xml │ │ ├── RH2_DOOM_CE_Patch_LauncherDOOM_Weapons.xml │ │ ├── RH2_DOOM_CE_Patch_MeleeDOOM_Weapons.xml │ │ └── RH2_DOOM_CE_Patch_RangedDOOM_Weapons.xml ├── RH2 Faction - Bounty Hunters │ └── Patches │ │ └── RH2 Faction - Bounty Hunters │ │ ├── BountyHunters_Apparel.xml │ │ ├── BountyHunters_Drink.xml │ │ ├── BountyHunters_Gun.xml │ │ └── BountyHunters_Pawnkinds.xml ├── RH2 Faction - Gruppa Krovi │ ├── Defs │ │ └── Ammo_Gruppa_Krovi.xml │ └── Patches │ │ ├── Apparel_Gruppa_Krovi.xml │ │ ├── Bodies_Gruppa_Krovi.xml │ │ ├── Faction_Gruppa_Krovi.xml │ │ ├── Mech_Weapons_Gruppa_Krovi.xml │ │ ├── Mechs_Gruppa_Krovi.xml │ │ ├── PawnKinds_Gruppa_Krovi.xml │ │ ├── TraderKinds_Gruppa_Krovi.xml │ │ └── Weapons_Gruppa_Krovi.xml ├── RH2 Faction - Task Force 141 │ └── Patches │ │ └── RH2 Faction - Task Force 141 │ │ ├── TaskForce141_Apparel.xml │ │ ├── TaskForce141_Guns.xml │ │ └── TaskForce141_Pawnkinds.xml ├── RH2 Faction - The Rangers │ └── Patches │ │ └── RH2 Faction - The Rangers │ │ ├── Rangers_CE_Patch_Apparel.xml │ │ ├── Rangers_CE_Patch_Handgun.xml │ │ ├── Rangers_CE_Patch_Melee.xml │ │ ├── Rangers_CE_Patch_Pawns.xml │ │ ├── Rangers_CE_Patch_Rifle.xml │ │ ├── Rangers_CE_Patch_Sharpshooter.xml │ │ ├── Rangers_CE_Patch_Shotgun.xml │ │ └── Rangers_CE_Patch_Spacer.xml ├── RH2 Faction - Utilitarian │ └── Patches │ │ └── RH2 Faction - Utilitarian │ │ ├── Utilitarian_Apparel.xml │ │ ├── Utilitarian_Drink.xml │ │ ├── Utilitarian_Gun.xml │ │ └── Utilitarian_Pawnkinds.xml ├── RH2 Faction - VOID │ ├── Defs │ │ └── RH2 Faction - VOID │ │ │ └── ShellingResponse_VOID.xml │ └── Patches │ │ └── RH2 Faction - VOID │ │ ├── FactionDefs │ │ └── Factions_VOID.xml │ │ ├── FoodDefs │ │ └── Caviar_Food.xml │ │ ├── HediffDefs │ │ └── Hediffs_BodyParts_VOIDArchotech.xml │ │ ├── Items_Drugs │ │ ├── Alcohol_RedWine.xml │ │ └── Items_Exotic.xml │ │ ├── Monsters │ │ ├── Bodies.xml │ │ ├── Races.xml │ │ └── Races_Evolved.xml │ │ ├── PawnKindDefs_Humanlike │ │ └── PawnKinds.xml │ │ ├── ThingDefs_Apparel │ │ └── Apparel_Various.xml │ │ ├── ThingDefs_Buildings │ │ └── CE_VOID_PowerCell.xml │ │ └── ThingDefs_Weapons │ │ ├── MeleeWeapons.xml │ │ └── RangedWeapons.xml ├── RH2 Helldivers Super Apparel │ └── Patches │ │ └── RH2 Helldivers Super Apparel │ │ └── HD2_Armors.xml ├── RH2 Helldivers Super Firearms │ ├── Defs │ │ └── RH2 Helldivers Super Firearms │ │ │ └── Ammo │ │ │ ├── 10ga_HALT_ALT.xml │ │ │ ├── 125x100_Justice.xml │ │ │ ├── 12x25_Judgement.xml │ │ │ ├── 13x40_Presidential.xml │ │ │ ├── 20mmPhoenix.xml │ │ │ ├── 55x50_Liberty.xml │ │ │ ├── 80mm_Ultimatum.xml │ │ │ ├── 8x60_Constitution.xml │ │ │ ├── 9x20_Redemption.xml │ │ │ ├── 9x70_Diligent.xml │ │ │ ├── Energy_Projectiles.xml │ │ │ └── RailgunSpike.xml │ └── Patches │ │ └── RH2 Helldivers Super Firearms │ │ ├── HD2_Autocannon.xml │ │ ├── HD2_Backpacks.xml │ │ ├── HD2_EnergyWeapons.xml │ │ ├── HD2_Eruptor.xml │ │ ├── HD2_GrenadeLauncher.xml │ │ ├── HD2_Liberators.xml │ │ ├── HD2_MachineGuns.xml │ │ ├── HD2_Melee.xml │ │ ├── HD2_Pistols.xml │ │ ├── HD2_Railgun.xml │ │ ├── HD2_Recoilless.xml │ │ ├── HD2_Shotguns.xml │ │ ├── HD2_SniperRifles.xml │ │ └── HD2_SubMachineGuns.xml ├── RH2 Metal Gear Solid │ ├── Defs │ │ └── RH2 Metal Gear Solid │ │ │ └── RH2_MGS_CE_Patch_Ammo_NonLethal.xml │ └── Patches │ │ └── RH2 Metal Gear Solid │ │ ├── RH2_MGS_CE_Patch_Apparel_Armor.xml │ │ ├── RH2_MGS_CE_Patch_Apparel_Armor_Headgear.xml │ │ ├── RH2_MGS_CE_Patch_Apparel_Headgear.xml │ │ ├── RH2_MGS_CE_Patch_Apparel_OnSkin.xml │ │ ├── RH2_MGS_CE_Patch_MeleeWeapon.xml │ │ ├── RH2_MGS_CE_Patch_PawnKindDefs.xml │ │ ├── RH2_MGS_CE_Patch_RangedIndustrial_Pistols.xml │ │ └── RH2_MGS_CE_Patch_Scenario.xml ├── RH2 Rimmu-Nation² - Clothing │ └── Patches │ │ └── RH2 Rimmu-Nation² - Clothing │ │ ├── Armors_CE.xml │ │ ├── Backpacks_CE.xml │ │ ├── Bandana_Balaclava_Scarf.xml │ │ ├── Jacket_Rimmu.xml │ │ ├── Pantsu_Rimmu.xml │ │ ├── Respirators_Rimmu.xml │ │ ├── Shirt_Rimmu.xml │ │ └── Vests_CE.xml ├── RH2 Rimmu-Nation² - Security │ ├── Defs │ │ └── RH2 Rimmu-Nation² - Security │ │ │ └── 152mmBGM71.xml │ └── Patches │ │ └── RH2 Rimmu-Nation² - Security │ │ ├── Rimmu2_CE_Security_MG.xml │ │ ├── Rimmu2_CE_mortars.xml │ │ └── ThingDefs_CE_IED.xml ├── RH2 Rimmu-Nation² - Weapons │ └── Patches │ │ └── RH2 Rimmu-Nation² - Weapons │ │ ├── RM2_Axes_CE.xml │ │ ├── RM2_CE_BoltAction.xml │ │ ├── RM2_CE_BullpupAR.xml │ │ ├── RM2_CE_DMR.xml │ │ ├── RM2_CE_GrenadeDeletus.xml │ │ ├── RM2_CE_LMG.xml │ │ ├── RM2_CE_Launchers.xml │ │ ├── RM2_CE_Pistols.xml │ │ ├── RM2_CE_Revolvers.xml │ │ ├── RM2_CE_Rifle1_Style.xml │ │ ├── RM2_CE_Rifle2_Style.xml │ │ ├── RM2_CE_SMG.xml │ │ ├── RM2_CE_Shotguns.xml │ │ ├── RM2_CE_Spacers.xml │ │ ├── RM2_Industrial.xml │ │ ├── RM2_Machete_CE.xml │ │ ├── RM2_Research.xml │ │ ├── RM2_SmolKnifes_CE.xml │ │ ├── RM2_Swords_CE.xml │ │ └── Rm2_CE_AirSupport.xml ├── RPG Adventure Flavour Pack │ └── Patches │ │ └── RPG Adventure Flavour Pack │ │ ├── RPGAFP_Apparel_Carry.xml │ │ └── RPGAFP_ThingDefs_Races.xml ├── RW Pilas and Bows │ ├── Defs │ │ └── RW Pilas and Bows │ │ │ ├── Arrows.xml │ │ │ └── Javelin.xml │ └── Patches │ │ └── RW Pilas and Bows │ │ └── Arrows.xml ├── RWY Dragon's Descent Void Dwellers │ ├── Defs │ │ └── RWY Dragon's Descent Void Dwellers │ │ │ └── DamageDefs │ │ │ └── Void_DamageDefs.xml │ └── Patches │ │ └── RWY Dragon's Descent Void Dwellers │ │ ├── Ability Defs │ │ └── Shoot_Breath_SpaceDragons.xml │ │ ├── Bodies │ │ └── Bodies_SpaceDragons.xml │ │ ├── Projectiles │ │ └── Projectile_SpaceDragon.xml │ │ ├── ThingDefs_Items │ │ └── Items_Resource_SpaceDragon.xml │ │ └── ThingDefs_Races │ │ ├── Races_Animal_SpaceDragon_Base.xml │ │ └── Races_SpaceDragon_Attacks.xml ├── Rabbie The Moonrabbit │ └── Patches │ │ └── Rabbie The Moonrabbit │ │ ├── Bodies │ │ └── Rabbie_Bodytype.xml │ │ ├── PawnKindDefs │ │ └── RB_PawnKind.xml │ │ ├── Scenario │ │ └── RB_Scenario.xml │ │ ├── ThingDefs_Items │ │ └── Items_Resource_Stuff.xml │ │ ├── ThingDefs_Misc │ │ ├── RB_Apparel.xml │ │ └── Weapons_Guns.xml │ │ └── ThingDefs_Races │ │ └── AlienRace_Rabbielike.xml ├── Racc │ └── Patches │ │ └── Racc │ │ ├── PawnKinds_Racc.xml │ │ ├── Racc_Weapons.xml │ │ └── Race_Racc.xml ├── Race to the Rim │ ├── Defs │ │ └── Race to the Rim │ │ │ └── Patch_AnimalProjectiles.xml │ └── Patches │ │ └── Race to the Rim │ │ ├── Patch_AnimalProjectiles.xml │ │ ├── Patch_Leathers.xml │ │ ├── Patch_Resources.xml │ │ ├── Races_Flightmare.xml │ │ ├── Races_Fury.xml │ │ ├── Races_Gronckle.xml │ │ ├── Races_Hotburple.xml │ │ ├── Races_Nadder.xml │ │ ├── Races_Nightmare.xml │ │ ├── Races_Razorwhip.xml │ │ ├── Races_Rumblehorn.xml │ │ ├── Races_Scauldron.xml │ │ ├── Races_Stormcutter.xml │ │ ├── Races_TerribleTerror.xml │ │ ├── Races_TripleStryke.xml │ │ └── Races_Zippleback.xml ├── RadWorld │ └── Patches │ │ └── RadWorld │ │ ├── PawnKinds_RadWorld.xml │ │ ├── ThingDefs_Apparel.xml │ │ ├── ThingDefs_Misc.xml │ │ └── ThingDefs_Races.xml ├── Rah's Vanilla Turrets Expansion │ ├── Defs │ │ └── Rah's Vanilla Turrets Expansion │ │ │ └── Ammo_Shells.xml │ └── Patches │ │ └── Rah's Vanilla Turrets Expansion │ │ ├── Patch_Ammo_Shells.xml │ │ └── Patch_Buildings_Security.xml ├── Rakkle the Rattlesnake │ └── Patches │ │ └── Rakkle the Rattlesnake │ │ ├── Bodies │ │ └── Rakkle_Bodyparts.xml │ │ ├── PawnKindDefs │ │ └── Rakkle_PawnKind.xml │ │ ├── Scenario │ │ └── Rakkle_Scenario.xml │ │ ├── ThingDefs_Misc │ │ └── Rakkle_Apparel.xml │ │ └── ThingDefs_Races │ │ └── AlienRace_Rakklelike.xml ├── Rambo Weapons Pack │ ├── Defs │ │ └── Rambo Weapons Pack │ │ │ └── Ammo_Rambo.xml │ └── Patches │ │ └── Rambo Weapons Pack │ │ ├── RamboWeaponsPack_amrifles.xml │ │ ├── RamboWeaponsPack_assaultrifles.xml │ │ ├── RamboWeaponsPack_base.xml │ │ ├── RamboWeaponsPack_battlerifles.xml │ │ ├── RamboWeaponsPack_heavy.xml │ │ ├── RamboWeaponsPack_machineguns.xml │ │ ├── RamboWeaponsPack_pistols.xml │ │ ├── RamboWeaponsPack_rifles.xml │ │ ├── RamboWeaponsPack_shotguns.xml │ │ ├── RamboWeaponsPack_sniperrifles.xml │ │ └── RamboWeaponsPack_submachineguns.xml ├── Ratkin Apparel+ │ └── Patches │ │ └── Ratkin Apparel+ │ │ └── Apparel_Ratkin.xml ├── Ratkin Xenotype │ └── Patches │ │ └── Ratkin Xenotype │ │ └── GeneDefs_Ratkin.xml ├── Ratnik-3 Prototype Armor │ └── Patches │ │ └── Ratnik-3 Prototype Armor │ │ ├── Bits_N_Bobs_CE.xml │ │ └── Ratnik_CE.xml ├── ReBuild - Doors and Corners │ └── Patches │ │ └── ReBuild - Doors and Corners │ │ └── Buildings_Structure.xml ├── ReGrowth - Core │ └── Patches │ │ └── ReGrowth - Core │ │ ├── Animals_Biotech.xml │ │ └── Animals_Core.xml ├── ReGrowth - Extinct Animals │ └── Patches │ │ └── ReGrowth - Extinct Animals │ │ ├── Extinct_Birdlike.xml │ │ ├── Extinct_Bodies.xml │ │ ├── Extinct_Mammals.xml │ │ ├── Extinct_Resources.xml │ │ └── Extinct_Rodentlikes.xml ├── ReGrowth - Wastelands │ └── Patches │ │ └── ReGrowth - Wastelands │ │ ├── Bodies.xml │ │ ├── Mutant_Beaver.xml │ │ ├── Mutant_Rat.xml │ │ └── Rimclaw.xml ├── Recon Mechanoid │ └── Patches │ │ └── Recon Mechanoid │ │ ├── Mech_PawnKinds.xml │ │ ├── Races_Mechanoid.xml │ │ └── RangedRecon.xml ├── Red Army │ └── Patches │ │ └── Red Army │ │ ├── RedArmy_PM_M1910.xml │ │ ├── RedArmy_PawnKinds.xml │ │ ├── RedArmy_Weapons.xml │ │ └── RedArmy_ZIS2_Cannon.xml ├── Redcoat Apparel │ └── Patches │ │ └── Redcoat Apparel │ │ └── Apparel_Redcoat.xml ├── Reinforced Mechanoid 2 │ ├── Defs │ │ └── Reinforced Mechanoid 2 │ │ │ ├── RM_Ammo.xml │ │ │ └── RM_Grenade.xml │ └── Patches │ │ └── Reinforced Mechanoid 2 │ │ ├── Bodies │ │ └── RM_Bodies_Mechanoid.xml │ │ ├── PawnKindDefs │ │ └── RM_PawnKinds_Mech.xml │ │ ├── ThingDefs_Misc │ │ ├── RM_ARCWeaponry.xml │ │ ├── RM_Apparel.xml │ │ ├── RM_Buildings_Mech.xml │ │ ├── RM_Buildings_Security_Turrets.xml │ │ ├── RM_ChargeWeaponry.xml │ │ ├── RM_MechWeaponry.xml │ │ ├── RM_PlasmaWeaponry.xml │ │ ├── RM_Royalty.xml │ │ └── RM_ShardWeaponry.xml │ │ └── ThingDefs_Races │ │ ├── RM_Races_Machines.xml │ │ └── RM_Races_Mechanoids.xml ├── Remote Detonator │ └── Patches │ │ └── Remote Detonator │ │ └── Remote_Detonator_CEpatch.xml ├── Remove Industrial Stuff │ └── Patches │ │ └── RemoveIndustrial_AmmoInjector.xml ├── Revia Race — biotech │ ├── Defs │ │ └── Revia Race — biotech │ │ │ └── Recipes_Revia.xml │ └── Patches │ │ └── Revia Race — biotech │ │ ├── PawnKindDefs │ │ └── ReviaPawnKindDefs.xml │ │ ├── Scenario │ │ └── Revia_Scenario.xml │ │ ├── ThingDefs_Misc │ │ └── Weapons_Guns.xml │ │ └── ThingDefs_Races │ │ └── Race_Revia.xml ├── Revia Race │ ├── Defs │ │ └── Revia Race │ │ │ └── Recipes_Revia.xml │ └── Patches │ │ └── Revia Race │ │ ├── PawnKindDefs │ │ └── ReviaPawnKindDefs.xml │ │ ├── Scenario │ │ └── Revia_Scenario.xml │ │ ├── ThingDefs_Bodies │ │ └── Revia_Bodytype.xml │ │ ├── ThingDefs_Misc │ │ └── Weapons_Guns.xml │ │ └── ThingDefs_Races │ │ └── Race_Revia.xml ├── Rim Contractors Arsenal │ └── Patches │ │ └── Rim Contractors Arsenal │ │ ├── PawnKindDefs │ │ └── PawnKinds_Contractor.xml │ │ └── ThingDefs_Misc │ │ ├── ApparelBodyArmour.xml │ │ ├── ApparelHeadgear.xml │ │ ├── MeleeContractors.xml │ │ └── RangedContractors.xml ├── Rim Flood │ ├── Defs │ │ └── Rim Flood │ │ │ └── Projectiles_RimFlood.xml │ └── Patches │ │ └── Rim Flood │ │ ├── CE_FloodForms.xml │ │ ├── CE_Flood_Bodies.xml │ │ ├── CE_Flood_Bodyparts.xml │ │ ├── CE_Forerunnermetal.xml │ │ ├── CE_Forerunners.xml │ │ ├── Flood_Turrets.xml │ │ ├── Melee_Flood_CE.xml │ │ ├── Pawnkind_Ammo_CE.xml │ │ └── Sentinel_Laser_CE.xml ├── Rim Gnoblins │ ├── Defs │ │ └── Rim Gnoblins │ │ │ └── Recipe_Toxpot.xml │ └── Patches │ │ └── Rim Gnoblins │ │ ├── Gnoblins_Drugs.xml │ │ ├── Gnoblins_Grenade.xml │ │ ├── Gnoblins_Melee.xml │ │ ├── Gnoblins_Pawnkind.xml │ │ └── Gnoblins_Scenario.xml ├── Rim of Madness - Bones │ └── Patches │ │ └── Rim of Madness - Bones │ │ └── ThingDefs_Items │ │ ├── Patch_Items_Apparel_BoneMasks.xml │ │ └── Patch_Items_Resources_Bones.xml ├── Rim of Madness - Vampires │ └── Patches │ │ └── Rim of Madness - Vampires │ │ ├── Patch_ROMV_Animals.xml │ │ └── Patch_ROMV_Human.xml ├── Rim of Madness - Werewolves │ └── Patches │ │ └── Rim of Madness - Werewolves │ │ └── Patch_ROM_Werewolves.xml ├── Rim-Effect Asari and Reapers │ ├── Defs │ │ └── Rim-Effect Asari and Reapers │ │ │ ├── Ammo_Projectile_Asari.xml │ │ │ ├── Ammo_Projectile_Reapers.xml │ │ │ └── ShellingResponse_Reapers.xml │ └── Patches │ │ └── Rim-Effect Asari and Reapers │ │ ├── Asari_Abilities.xml │ │ ├── Asari_Trader.xml │ │ ├── Bodies │ │ ├── Bodies_Asari.xml │ │ └── Bodies_Reapers.xml │ │ ├── Buildings_Reapers.xml │ │ ├── PawnKindDefs │ │ ├── Asari_Pawns.xml │ │ └── Reaper_Pawns.xml │ │ ├── Reaper_Hediff.xml │ │ ├── Scenarios_Asari.xml │ │ ├── ShellingResponse_Reapers.xml │ │ ├── ThingDefs_Misc │ │ ├── Apparel_Asari.xml │ │ ├── Armor_Asari.xml │ │ ├── Weapons_Asari.xml │ │ └── Weapons_Reapers.xml │ │ └── ThingDefs_Races │ │ ├── Race_Asari.xml │ │ └── Races_Reapers.xml ├── Rim-Effect Core │ ├── Defs │ │ └── Rim-Effect Core │ │ │ ├── ME_Ammo_Recipe.xml │ │ │ ├── ME_Mech_Weapons.xml │ │ │ └── ME_Projectile_Damage_Ammoclass.xml │ └── Patches │ │ └── Rim-Effect Core │ │ ├── Alliance_Pawns.xml │ │ ├── Apparel_ME.xml │ │ ├── Armor_ME.xml │ │ ├── ME_Abilities.xml │ │ ├── ME_Animals.xml │ │ ├── ME_Machine.xml │ │ ├── ME_Trader.xml │ │ ├── Mech_Weapons.xml │ │ ├── Mechpawn_ME.xml │ │ ├── Scenarios_ME.xml │ │ ├── Turrets_and_Misc_ME.xml │ │ └── Weapons_MEcore.xml ├── Rim-Effect Drell │ ├── Defs │ │ └── Rim-Effect Drell │ │ │ └── Projectiles_Drell.xml │ └── Patches │ │ └── Rim-Effect Drell │ │ ├── Apparel_Drell.xml │ │ ├── Drell_Race.xml │ │ ├── PawnKinds_Drell.xml │ │ ├── Scenarios_Drell.xml │ │ └── Weapons_Drell.xml ├── Rim-Effect Extended Cut │ ├── Defs │ │ └── Rim-Effect Extended Cut │ │ │ ├── ME_Plasma_Recipe_ExtendedCut.xml │ │ │ └── ME_Projectile_ExtendedCut.xml │ └── Patches │ │ └── Rim-Effect Extended Cut │ │ ├── Headgear_ExtendedCut.xml │ │ └── Weapons_ME_ExtendedCut.xml ├── Rim-Effect N7 │ ├── Defs │ │ └── Rim-Effect N7 │ │ │ ├── ME_DamageDef.xml │ │ │ └── ME_Projectile_N7.xml │ └── Patches │ │ └── Rim-Effect N7 │ │ ├── Abilities_N7.xml │ │ ├── Armor_N7.xml │ │ ├── ME_SpecialsExplosives.xml │ │ ├── Pawns_N7.xml │ │ └── Weapons_N7.xml ├── Rim-Effect Renegade Asari and Reapers │ ├── Defs │ │ └── Rim-Effect Renegade Asari and Reapers │ │ │ ├── Ammo_Projectile_Asari.xml │ │ │ ├── Ammo_Projectile_Reapers.xml │ │ │ └── ShellingResponse_Reapers.xml │ └── Patches │ │ └── Rim-Effect Renegade Asari and Reapers │ │ ├── Asari_Abilities.xml │ │ ├── Asari_Trader.xml │ │ ├── Bodies │ │ └── Bodies_Reapers.xml │ │ ├── Buildings_Reapers.xml │ │ ├── PawnKindDefs │ │ ├── Asari_Pawns.xml │ │ └── Reaper_Pawns.xml │ │ ├── Reaper_Hediff.xml │ │ ├── Scenarios_Asari.xml │ │ ├── ShellingResponse_Reapers.xml │ │ ├── ThingDefs_Misc │ │ ├── Apparel_Asari.xml │ │ ├── Armor_Asari.xml │ │ ├── Weapons_Asari.xml │ │ └── Weapons_Reapers.xml │ │ └── ThingDefs_Races │ │ └── Races_Reapers.xml ├── Rim-Effect Renegade Core │ ├── Defs │ │ └── Rim-Effect Renegade Core │ │ │ ├── ME_Ammo_Recipe.xml │ │ │ ├── ME_Mech_Weapons.xml │ │ │ ├── ME_Projectile_DamageDefs.xml │ │ │ ├── ME_Projectile_Damage_Ammoclass.xml │ │ │ └── ME_Projectile_Hediffs.xml │ └── Patches │ │ └── Rim-Effect Renegade Core │ │ ├── Alliance_Pawns.xml │ │ ├── Apparel_ME.xml │ │ ├── Armor_ME.xml │ │ ├── ME_Abilities.xml │ │ ├── ME_Animals.xml │ │ ├── ME_Trader.xml │ │ ├── Mechpawn_ME.xml │ │ ├── Mechs_Pawns.xml │ │ ├── Scenarios_ME.xml │ │ ├── Turrets_and_Misc_ME.xml │ │ └── Weapons_MEcore.xml ├── Rim-Effect Renegade Drell │ ├── Defs │ │ └── Rim-Effect Renegade Drell │ │ │ └── Projectiles_Drell.xml │ └── Patches │ │ └── Rim-Effect Renegade Drell │ │ ├── Apparel_Drell.xml │ │ ├── PawnKinds_Drell.xml │ │ ├── Scenarios_Drell.xml │ │ └── Weapons_Drell.xml ├── Rim-Effect Renegade Extended Cut │ ├── Defs │ │ └── Rim-Effect Renegade Extended Cut │ │ │ ├── ME_Plasma_Recipe_ExtendedCut.xml │ │ │ └── ME_Projectile_ExtendedCut.xml │ └── Patches │ │ └── Rim-Effect Renegade Extended Cut │ │ ├── Headgear_ExtendedCut.xml │ │ └── Weapons_ME_ExtendedCut.xml ├── Rim-Effect Renegade N7 │ ├── Defs │ │ └── Rim-Effect Renegade N7 │ │ │ ├── ME_DamageDef.xml │ │ │ └── ME_Projectile_N7.xml │ └── Patches │ │ └── Rim-Effect Renegade N7 │ │ ├── Abilities_N7.xml │ │ ├── Armor_N7.xml │ │ ├── ME_SpecialsExplosives.xml │ │ ├── Pawns_N7.xml │ │ └── Weapons_N7.xml ├── Rim-Elves │ ├── Defs │ │ └── Rim-Elves │ │ │ └── Ammo_Elves.xml │ └── Patches │ │ └── Rim-Elves │ │ ├── GeneDefs_Elves.xml │ │ ├── PawnKinds_Elves.xml │ │ └── Weapons_Elves.xml ├── Rim-Hivers! - Biotech │ └── Patches │ │ └── Rim-Hivers! - Biotech │ │ ├── GeneDefs │ │ └── GeneDefs.xml │ │ └── HediffDefs │ │ └── Hediffs.xml ├── Rim-Hivers! │ ├── Defs │ │ └── Rim-Hivers! │ │ │ └── Pawnkinds_Hivers.xml │ └── Patches │ │ └── Rim-Hivers! │ │ ├── New_Hivers.xml │ │ ├── Patch_Bodies_Hivers.xml │ │ ├── Patch_PawnKinds_Hivers.xml │ │ └── Patch_Race_Hivers.xml ├── Rim-Robots! │ └── Patches │ │ └── Rim-Robots! │ │ ├── Implants_Patch.xml │ │ ├── Mechanent_Body.xml │ │ ├── Pawnkind_Patch.xml │ │ ├── Personae_Body.xml │ │ └── Race_Patch.xml ├── Rim-Sheks! │ └── Patches │ │ └── Rim-Sheks! │ │ ├── Patch_Bodies_Sheks.xml │ │ ├── Patch_PawnKinds_Sheks.xml │ │ └── Patch_Race_Shek.xml ├── Rim-Skeletons │ └── Patches │ │ └── Rim-Skeletons │ │ ├── Patch_Bodies_Skellingtons.xml │ │ ├── Patch_BodyParts_Skele.xml │ │ └── Patch_PawnKinds_Skellingtons.xml ├── RimCities │ └── Patches │ │ └── RimCities │ │ └── Scenarios │ │ └── Scenarios.xml ├── RimFantasy - House Doyle │ └── Patches │ │ └── RimFantasy - House Doyle │ │ ├── Patch_RFDoyle_ArcaneWeapon.xml │ │ ├── Patch_RFDoyle_Armor.xml │ │ ├── Patch_RFDoyle_Jewelry.xml │ │ ├── Patch_RFDoyle_Melee.xml │ │ ├── Patch_RFDoyle_Projectiles.xml │ │ ├── Patch_RFDoyle_Ranged.xml │ │ └── Patch_RFDoyle_Shield.xml ├── RimFantasy - Medieval Overhaul Edition │ └── Patches │ │ └── RimFantasy - Medieval Overhaul Edition │ │ ├── Patch_RF_Arcane_Bows.xml │ │ ├── Patch_RF_Arcane_Melee.xml │ │ ├── Patch_RF_Arcane_Ring.xml │ │ ├── Patch_RF_Arcane_Staff.xml │ │ ├── Patch_RF_Arcane_Wand.xml │ │ ├── Patch_RF_Projectiles.xml │ │ └── Patch_RF_Turrets.xml ├── RimHammer40k -Dreadnought │ └── Patches │ │ └── RimHammer40k -Dreadnought │ │ └── Apparel_Dreadnought.xml ├── RimNauts 2 │ └── Patches │ │ └── RimNauts 2 │ │ └── ThingDefs_Items │ │ └── SpaceSuit_CEpatch.xml ├── RimSec-Security │ ├── Defs │ │ └── RimSec-Security │ │ │ └── Ammo │ │ │ └── SRS Ammo.xml │ └── Patches │ │ └── RimSec-Security │ │ ├── AlienBase.xml │ │ ├── Bodies.xml │ │ ├── Buildings.xml │ │ ├── PawnKinds.xml │ │ ├── Traits.xml │ │ └── WeaponDefs.xml ├── RimTraits - General Traits │ └── Patches │ │ └── RimTraits - General Traits │ │ └── RT_General_Traits.xml ├── RimTraits - Medieval Talents │ └── Patches │ │ └── RimTraits - Medieval Talents │ │ └── RT_Traits.xml ├── RimWorld - Witcher Monster Hunt │ └── Patches │ │ └── RimWorld - Witcher Monster Hunt │ │ ├── Bodies_WMH-CE.xml │ │ ├── Projectile_WH.xml │ │ ├── Races_BasiliskCE.xml │ │ ├── Races_BearofleetCE.xml │ │ ├── Races_ChortCE.xml │ │ ├── Races_CyclopsCE.xml │ │ ├── Races_DjinCE.xml │ │ ├── Races_EkimmaraCE.xml │ │ ├── Races_FiendCE.xml │ │ ├── Races_FlederCE.xml │ │ ├── Races_FoglerCE.xml │ │ ├── Races_GhoulCE.xml │ │ ├── Races_GolemCE.xml │ │ ├── Races_HymCE.xml │ │ ├── Races_KikimoreCE.xml │ │ ├── Races_LeshyCE.xml │ │ ├── Races_NekkerCE.xml │ │ ├── Races_WerewolfCE.xml │ │ ├── Races_WraithCE.xml │ │ ├── Races_WyvernCE.xml │ │ └── WH_ProjectileShoot.xml ├── Rimcraft Allied Races │ └── Patches │ │ └── Rimcraft Allied Races │ │ ├── AlienRace_AllHumanoids.xml │ │ └── RimCraft_AlliedHumanoidLeather_CE.xml ├── Rimcraft Animals │ └── Patches │ │ └── Rimcraft Animals │ │ ├── Animal_base_CE.xml │ │ ├── CE_BigBirb.xml │ │ ├── CE_Gargantuan.xml │ │ ├── CE_Horses.xml │ │ ├── CE_Hound.xml │ │ ├── CE_Murloc.xml │ │ ├── CE_Ram.xml │ │ ├── CE_Raptor.xml │ │ ├── CE_Sabercat.xml │ │ ├── CE_Wolves.xml │ │ ├── CE_wowDragons.xml │ │ └── RimCraft_Leather_CE.xml ├── Rimcraft Factions │ └── Patches │ │ └── Rimcraft Factions │ │ └── Patch_PawnKinds_Wow.xml ├── Rimcraft Metals │ └── Patches │ │ └── Rimcraft Metals │ │ └── WOW_Metals_CE.xml ├── Rimcraft Scenario │ └── Patches │ │ └── Rimcraft Scenario │ │ ├── Scenarios_Patch_Wow _Allies.xml │ │ └── Scenarios_Patch_Wow.xml ├── Rimcraft Weaponry │ ├── Defs │ │ └── Rimcraft Weaponry │ │ │ └── Ammo_WOW.xml │ └── Patches │ │ └── Rimcraft Weaponry │ │ ├── Patch_WOW_Ranged.xml │ │ ├── WOW_AAWeaponsBase_CE.xml │ │ ├── WOW_Alliance_CE.xml │ │ ├── WOW_BluddElves_CE.xml │ │ ├── WOW_Draenei_CE - Copy.xml │ │ ├── WOW_Forsaken_CE.xml │ │ ├── WOW_HiElves_CE.xml │ │ ├── WOW_Horde_CE.xml │ │ └── WOW_NightElves_CE.xml ├── Rimcraft │ └── Patches │ │ └── Rimcraft │ │ ├── AlienRace_AllHumanoids.xml │ │ ├── Base_Race_CE.xml │ │ ├── Patch_Bodies_WOW.xml │ │ └── RimCraft_HumanoidLeather_CE.xml ├── Rimedieval - Medieval Royalty │ ├── Defs │ │ └── Rimedieval - Medieval Royalty │ │ │ └── Ammo_FirepotBomb.xml │ └── Patches │ │ └── Rimedieval - Medieval Royalty │ │ ├── Apparel_MedievalRoyalty.xml │ │ ├── Ranged_Medieval.xml │ │ └── Weapons_Medieval.xml ├── Rimefeller │ └── Patches │ │ └── Rimefeller │ │ ├── Items_Resource_Stuff.xml │ │ └── Napalm_Tweaks.xml ├── Rimmu-Nation - Clothing │ └── Patches │ │ └── Rimmu-Nation - Clothing │ │ ├── RNC_CE_Patch_Apparel_Armor.xml │ │ ├── RNC_CE_Patch_Apparel_Armor_Headgear.xml │ │ ├── RNC_CE_Patch_Apparel_Armor_Headgear_Crafting_Rimfeller.xml │ │ ├── RNC_CE_Patch_Apparel_Backpacks.xml │ │ ├── RNC_CE_Patch_Apparel_Belts.xml │ │ ├── RNC_CE_Patch_Apparel_Headgear.xml │ │ ├── RNC_CE_Patch_Apparel_OnSkin.xml │ │ └── RNC_CE_Patch_Apparel_Shell.xml ├── Rimmu-Nation - Security │ ├── Defs │ │ └── Rimmu-Nation - Security │ │ │ └── Ammo_SSM.xml │ └── Patches │ │ └── Rimmu-Nation - Security │ │ ├── ThingDefs_Security.xml │ │ └── ThingDefs_Turrets.xml ├── Rimmu-Nation - Weapons │ ├── Defs │ │ └── Rimmu-Nation - Weapons │ │ │ └── RNW_CE_Patch_Proj_BallisticKnifeBlade.xml │ └── Patches │ │ └── Rimmu-Nation - Weapons │ │ ├── RNW_CE_Patch_RangedIndustrial_BigGuns.xml │ │ ├── RNW_CE_Patch_RangedIndustrial_Grenades.xml │ │ ├── RNW_CE_Patch_RangedIndustrial_HRT_Pack.xml │ │ ├── RNW_CE_Patch_RangedIndustrial_LMG.xml │ │ ├── RNW_CE_Patch_RangedIndustrial_M_BoltAction.xml │ │ ├── RNW_CE_Patch_RangedIndustrial_M_DMR.xml │ │ ├── RNW_CE_Patch_RangedIndustrial_Pistols.xml │ │ ├── RNW_CE_Patch_RangedIndustrial_R_AK_Style.xml │ │ ├── RNW_CE_Patch_RangedIndustrial_R_AR_Style.xml │ │ ├── RNW_CE_Patch_RangedIndustrial_R_Bullpup_Style.xml │ │ ├── RNW_CE_Patch_RangedIndustrial_R_Colt_Canada.xml │ │ ├── RNW_CE_Patch_RangedIndustrial_R_Others.xml │ │ ├── RNW_CE_Patch_RangedIndustrial_Revolvers.xml │ │ ├── RNW_CE_Patch_RangedIndustrial_SMG.xml │ │ ├── RNW_CE_Patch_RangedIndustrial_Shotguns.xml │ │ ├── RNW_CE_Patch_RangedIndustrial_Spacer.xml │ │ ├── RNW_CE_Patch_RangedSpecial_AirSupport.xml │ │ └── RNW_CE_Patch_Ranged_Misc.xml ├── Rimrats │ └── Patches │ │ └── Rimrats │ │ └── ThingDefs_Races.xml ├── Rimsenal - Spacer Faction Pack │ ├── Defs │ │ └── Rimsenal - Spacer Faction Pack │ │ │ └── Recipes_Grenades.xml │ └── Patches │ │ └── Rimsenal - Spacer Faction Pack │ │ ├── Apparel_Spacer_CE.xml │ │ ├── Explosives_Smart_CE.xml │ │ ├── Mechs_Body_CE.xml │ │ ├── Mechs_Smart_CE.xml │ │ ├── PawnKinds_CE.xml │ │ ├── Weapons_EVSmart_CE.xml │ │ └── Weapons_Smart_CE.xml ├── Rimsenal Core │ ├── Defs │ │ └── Rimsenal Core │ │ │ ├── Ammo_GD.xml │ │ │ ├── Ammo_GDGrenades.xml │ │ │ ├── Ammo_GD_Mauler.xml │ │ │ ├── Ammo_JI.xml │ │ │ ├── Ammo_JI_Defense.xml │ │ │ ├── Ammo_TE.xml │ │ │ ├── Ammo_YP.xml │ │ │ ├── Rimsenal_AmmoCategories.xml │ │ │ ├── Rimsenal_ExplosivesRecipeBase.xml │ │ │ └── Rimsenal_GrenadeRecipes.xml │ └── Patches │ │ └── Rimsenal Core │ │ ├── Ammo_GDGrenades.xml │ │ ├── Ammo_TE.xml │ │ ├── Apparel_RS_CE.xml │ │ ├── Rimsenal_DamageDefs.xml │ │ ├── Rimsenal_Melee.xml │ │ ├── Weapons_Explosives.xml │ │ ├── Weapons_GD_CE.xml │ │ ├── Weapons_JI_CE.xml │ │ ├── Weapons_TE_CE.xml │ │ └── Weapons_YP_CE.xml ├── Rimsenal Enhanced Vanilla │ ├── Defs │ │ └── Rimsenal Enhanced Vanilla │ │ │ ├── Ammo_EnhancedVanilla.xml │ │ │ └── Ammo_EnhancedVanilla_Lasers.xml │ └── Patches │ │ └── Rimsenal Enhanced Vanilla │ │ ├── Apparel_RS_CE.xml │ │ ├── Weapons_Beam_CE.xml │ │ ├── Weapons_Charge_CE.xml │ │ ├── Weapons_Dumbfire_CE.xml │ │ ├── Weapons_RSGuns_CE.xml │ │ ├── Weapons_RSUnique_CE.xml │ │ └── Weapons_Ranged_CE.xml ├── Rimsenal Factions │ └── Patches │ │ └── Rimsenal Factions │ │ └── PawnKinds.xml ├── Rimsenal Federation │ ├── Defs │ │ └── Rimsenal Federation │ │ │ ├── FederationShellingResponse.xml │ │ │ └── ThingDefs_Misc │ │ │ └── Ammo_Fed.xml │ └── Patches │ │ └── Rimsenal Federation │ │ ├── Bodies │ │ ├── Bodies_FederatorMech.xml │ │ └── Bodies_SeekerMech.xml │ │ ├── Factions_Federation.xml │ │ ├── PawnKindDefs │ │ └── PawnKinds_Federation.xml │ │ ├── ThingDefs_Misc │ │ ├── Fed_Apparel.xml │ │ ├── Fed_DamageDefs.xml │ │ ├── Fed_Explosives.xml │ │ ├── Fed_MechWeapons.xml │ │ ├── Fed_MeleeWeapons.xml │ │ ├── Fed_RangedWeapons.xml │ │ └── Fed_Security.xml │ │ └── ThingDefs_Races │ │ ├── Race_Bion.xml │ │ ├── Race_FederatorMech.xml │ │ ├── Race_Hulk.xml │ │ └── Race_SeekerMech.xml ├── Rimsenal Feral │ ├── Defs │ │ └── Rimsenal Feral │ │ │ └── ThingDefs_Misc │ │ │ └── Ammo_Feral.xml │ └── Patches │ │ └── Rimsenal Feral │ │ ├── PawnKindDefs │ │ └── PawnKinds_Feral.xml │ │ ├── ThingDefs_Misc │ │ ├── Feral_Apparel.xml │ │ ├── Feral_Explosives.xml │ │ ├── Feral_MeleeWeapons.xml │ │ ├── Feral_MutantWeapons.xml │ │ └── Feral_RangedWeapons.xml │ │ └── ThingDefs_Races │ │ ├── Race_Ogrons.xml │ │ ├── Race_Razortooth.xml │ │ ├── Race_Shadark.xml │ │ └── Race_Twisted.xml ├── Rimsenal Security │ ├── Defs │ │ └── Rimsenal Security │ │ │ └── Ammo_Security.xml │ └── Patches │ │ └── Rimsenal Security │ │ ├── Patch_Security.xml │ │ ├── Patch_Security_Anomaly.xml │ │ ├── Patch_Security_Beam.xml │ │ └── Patch_Security_Rimsenal.xml ├── Rimsenal Xenotype Pack - Askbarn │ ├── Defs │ │ └── Rimsenal Xenotype Pack - Askbarn │ │ │ └── Ammo_Askbarn.xml │ └── Patches │ │ └── Rimsenal Xenotype Pack - Askbarn │ │ ├── Apparel_Askbarn_CE.xml │ │ ├── Gene_Askbarn_CE.xml │ │ └── Weapons_Askbarn_CE.xml ├── Rimsenal Xenotype Pack - Harana │ └── Patches │ │ └── Rimsenal Xenotype Pack - Harana │ │ ├── Apparel_Harana_CE.xml │ │ ├── Drugs_Harana_CE.xml │ │ ├── Genes_Harana_CE.xml │ │ └── Weapons_Harana_CE.xml ├── Rimsenal Xenotype Pack - Zohar │ └── Patches │ │ └── Rimsenal Xenotype Pack - Zohar │ │ └── Weapons_Zohar_CE.xml ├── Rimworld - The Dark Descent │ └── Patches │ │ └── Rimworld - The Dark Descent │ │ ├── Patch_Items.xml │ │ ├── Patch_Races.xml │ │ └── Patch_Scenarios.xml ├── Risk of Rain UES Contact Light Armory │ └── Patches │ │ └── Risk of Rain UES Contact Light Armory │ │ └── Risk_Of_Rain_Armor_Patches.xml ├── Robotic Servitude │ └── Patches │ │ ├── Bodies │ │ └── Bodies_Mechanoid_Laborer.xml │ │ ├── ThingDefs_Misc │ │ └── Melee_Assassin.xml │ │ └── ThingDefs_Races │ │ └── Races_Mechanoid.xml ├── Rockmen Race │ └── Patches │ │ └── Rockmen Race │ │ ├── PawnKinds_Rockmen.xml │ │ ├── Rockmen_Race.xml │ │ └── Rockmen_Scenario.xml ├── Roo Faun │ └── Patches │ │ └── Roo Faun │ │ ├── Faun_Genes.xml │ │ └── Faun_PawnKindDefs.xml ├── Roo Satyr and Faun Xenotype Expanded │ ├── Defs │ │ └── Roo Satyr and Faun Xenotype Expanded │ │ │ └── SatyrFaun_Ammo.xml │ └── Patches │ │ └── Roo Satyr and Faun Xenotype Expanded │ │ ├── SatyrFaun_Apparel_Armor.xml │ │ ├── SatyrFaun_PawnKindDefs.xml │ │ ├── SatyrFaun_Projectiles.xml │ │ ├── SatyrFaun_Races.xml │ │ ├── SatyrFaun_Scenario.xml │ │ ├── SatyrFaun_Weapons.xml │ │ └── SatyrFaun_Weapons_Ranged.xml ├── Roo Satyr │ └── Patches │ │ └── Roo Satyr │ │ ├── Satyr_Hediffs.xml │ │ ├── Satyr_Sheets.xml │ │ └── Satyr_Weapons.xml ├── Roren Race │ ├── Defs │ │ └── Roren Race │ │ │ ├── 203_Roren.xml │ │ │ └── Grenades_Roren.xml │ └── Patches │ │ └── Roren Race │ │ ├── Apparel_Roren_Armor.xml │ │ ├── Apparel_Roren_Baby.xml │ │ ├── Apparel_Roren_Royal.xml │ │ ├── Apparel_Roren_Various.xml │ │ ├── Bodytype_Roren.xml │ │ ├── PawnKind_Roren.xml │ │ ├── Race_Roren.xml │ │ ├── Roren_TraderKinds.xml │ │ ├── Scenarios_Roren.xml │ │ ├── Weapons_Roren.xml │ │ ├── Weapons_Roren_Consercrated.xml │ │ ├── Weapons_Roren_Melee.xml │ │ ├── Weapons_Roren_Old.xml │ │ ├── Weapons_Roren_Old_Consercrated.xml │ │ └── Weapons_Roren_Turrets.xml ├── Royal Arsenal - Speciality Weapons │ ├── Defs │ │ └── Royal Arsenal - Speciality Weapons │ │ │ ├── Ammo_6x28Spark.xml │ │ │ └── Ammo_ThunderJavelins.xml │ └── Patches │ │ └── Royal Arsenal - Speciality Weapons │ │ └── RangedWeapons.xml ├── Royal Arsenal │ ├── Defs │ │ └── Royal Arsenal │ │ │ └── Ammo │ │ │ ├── Ammo_5x35RoyalCharged.xml │ │ │ ├── Ammo_6x24RoyalCharged.xml │ │ │ └── Ammo_MonoArrow.xml │ └── Patches │ │ └── Royal Arsenal │ │ └── Things │ │ ├── RoyalArsenal_Armors.xml │ │ ├── RoyalArsenal_Melee.xml │ │ ├── RoyalArsenal_PrestigeArmors.xml │ │ └── RoyalArsenal_Ranged.xml ├── Royal Warcaskets │ └── Patches │ │ └── Royal Warcaskets │ │ └── Apparel_Royal_Warcaskets.xml ├── SCP │ └── Patches │ │ └── SCP │ │ ├── Apparel_SCP.xml │ │ └── Headgear_SCP.xml ├── SS Maid Project │ └── Patches │ │ └── SS Maid Project │ │ └── ThingDefs_Misc │ │ └── Apparel.xml ├── SYR Harpy │ └── Patches │ │ └── SYR Harpy │ │ ├── Patch_Bodies_Harpy.xml │ │ ├── Patch_Prosthetics_Harpy.xml │ │ └── Patch_Race_Harpy.xml ├── SYR Naga │ ├── Defs │ │ └── SYR Naga │ │ │ ├── Patch_Ammo_44Magnum_Naga.xml │ │ │ └── Patch_Ammo_Naga.xml │ └── Patches │ │ └── SYR Naga │ │ ├── Patch_Bodies_Naga.xml │ │ ├── Patch_PawnKinds_Naga.xml │ │ ├── Patch_Race_Naga.xml │ │ ├── Patch_Scenarios_Naga.xml │ │ ├── Patch_ThingsMachining_Naga.xml │ │ ├── Patch_ThingsMisc_Naga.xml │ │ └── Patch_ThingsWeapons_Naga.xml ├── Saclean Race │ └── Patches │ │ └── Saclean Race │ │ ├── Bodies │ │ └── Saclean_Bodytype.xml │ │ ├── PawnKindDefs │ │ └── Saclean_PawnKind.xml │ │ ├── ThingDefs_Misc │ │ └── Saclean_Apparel.xml │ │ ├── ThingDefs_Races │ │ └── AlienRace_Saclean.xml │ │ └── ThingDes_Items │ │ └── WoolDef.xml ├── Salted Meat 2.0 │ └── Patches │ │ └── Salted Meat 2.0 │ │ └── Items_Meat.xml ├── Save Our Ship 2 │ ├── Defs │ │ └── Save Our Ship 2 │ │ │ └── Projectiles.xml │ └── Patches │ │ └── Save Our Ship 2 │ │ ├── Apparel_SOS2.xml │ │ ├── ArchoCreatures_SOS2.xml │ │ ├── Creatures_SOS2.xml │ │ ├── Hediffs_SOS2.xml │ │ ├── Patch_DamageDefs_SOS2.xml │ │ ├── PawnKindsDefs_SOS2.xml │ │ ├── Scenarios_SOS2.xml │ │ ├── Turrets_SOS2.xml │ │ ├── UpgradeTree.xml │ │ └── Weapons_Grenades.xml ├── Seren from Stardust │ └── Patches │ │ └── Seren from Stardust │ │ ├── Bodies_Seren.xml │ │ ├── PawnKinds_Seren.xml │ │ ├── Scenarios.xml │ │ └── Seren_Race.xml ├── Sergal │ ├── Defs │ │ └── Sergal │ │ │ └── Ammo_Sergal_LeadBall.xml │ └── Patches │ │ └── Sergal │ │ ├── Drugs.xml │ │ ├── Gnoll_Weps.xml │ │ ├── Lion_Weps_Ranged.xml │ │ ├── PawnKinds_Frog.xml │ │ ├── PawnKinds_Gnoll.xml │ │ ├── PawnKinds_GnollTribe.xml │ │ ├── PawnKinds_Lions.xml │ │ ├── PawnKinds_Sergal.xml │ │ ├── PawnKinds_SergalNME.xml │ │ ├── PawnKinds_SergalTribe.xml │ │ ├── PawnKinds_StripedGnoll.xml │ │ ├── PawnKinds_StripedGnollTribe.xml │ │ ├── Race_Frog.xml │ │ ├── Race_Gnoll.xml │ │ ├── Race_Lion.xml │ │ ├── Race_Sergal.xml │ │ ├── Race_StripedGnoll.xml │ │ ├── Scenarios.xml │ │ ├── Sergal_Apparel.xml │ │ └── Sergal_Weps.xml ├── Seventh Seraph │ └── Patches │ │ └── Seventh Seraph │ │ └── 7S_Weapon.xml ├── Silkiera Race │ ├── Defs │ │ └── Silkiera Race │ │ │ └── Ammo │ │ │ └── Ammo_Silkiera.xml │ └── Patches │ │ └── Silkiera Race │ │ ├── Bodies │ │ ├── Bodies_Mech.xml │ │ └── Silkiera_Bodytype.xml │ │ ├── PawnKindDefs │ │ └── Silkiera_PawnKind.xml │ │ ├── Scenario │ │ └── Silkiera_Scenario.xml │ │ ├── ThingDefs_Misc │ │ ├── Silkiera_Apparel.xml │ │ └── Weapons.xml │ │ └── ThingDefs_Races │ │ ├── AlienRace_Silkiera.xml │ │ └── Race_Mech.xml ├── Simple Ogre Race │ ├── Defs │ │ └── Simple Ogre Race │ │ │ └── Ammo_Ogre.xml │ └── Patches │ │ └── Simple Ogre Race │ │ ├── CE_OgreSkin.xml │ │ ├── CE_Ogre_Race.xml │ │ ├── CE_Ogre_Race_Pawn.xml │ │ ├── CE_Ogre_Race_Wep.xml │ │ └── Ogre_Resources.xml ├── Simply More Melee │ └── Patches │ │ └── Simply More Melee │ │ └── SMM_MeleeWeapons_CE.xml ├── Slime Rancher │ ├── Defs │ │ └── Slime Rancher │ │ │ └── Recipes_Slime.xml │ └── Patches │ │ └── Slime Rancher │ │ ├── Slime_Recipe.xml │ │ └── SlimeyBois.xml ├── Solark Race │ ├── Defs │ │ └── Solark Race │ │ │ └── Damage_Solark.xml │ └── Patches │ │ └── Solark Race │ │ ├── Bodies │ │ └── Solark_Bodytype.xml │ │ ├── Hediffs │ │ └── Hediffs.xml │ │ ├── PawnKindDefs │ │ └── Solark_PawnKind.xml │ │ ├── ThingDefs_Misc │ │ └── Solark_Apparel.xml │ │ └── ThingDefs_Races │ │ └── AlienRace_Solark.xml ├── Spacer Arsenal │ ├── Defs │ │ └── Spacer Arsenal │ │ │ ├── Ammo.xml │ │ │ └── Damages_LocalInjury.xml │ ├── Patches │ │ └── Spacer Arsenal │ │ │ ├── Apparel_Helmet.xml │ │ │ ├── Apparel_Various.xml │ │ │ ├── Weapons_Grenades.xml │ │ │ ├── Weapons_Melee.xml │ │ │ └── Weapons_Ranged.xml │ └── Textures │ │ └── Spacer Arsenal │ │ ├── PhotonCell │ │ ├── PhotonCell_a.png │ │ ├── PhotonCell_b.png │ │ └── PhotonCell_c.png │ │ └── PlasmaCell │ │ ├── HotPlasmaCell_a.png │ │ ├── HotPlasmaCell_b.png │ │ └── HotPlasmaCell_c.png ├── Spacer Pack │ ├── Defs │ │ └── Spacer Pack │ │ │ └── Defs_Projectiles.xml │ └── Patches │ │ └── Spacer Pack │ │ ├── Backpacks.xml │ │ ├── Damage.xml │ │ └── Hediff.xml ├── Spacer Shields │ └── Patches │ │ └── Spacer Shields │ │ └── Armor_PowerShields.xml ├── Spaceworm │ └── Patches │ │ └── Spaceworm │ │ └── Spaceworm.xml ├── Spartan Foundry │ └── Patches │ │ └── Spartan Foundry │ │ ├── Apparel_Armors.xml │ │ └── Apparel_Headgear.xml ├── Spidercamp's Horses │ └── Patches │ │ └── Spidercamp's Horses │ │ └── SpidercampsHorses_Races_Animal_Horse.xml ├── Star Crafter's Armory │ └── Patches │ │ └── Star Crafter's Armory │ │ ├── Apparel.xml │ │ ├── CMC300.xml │ │ ├── CMC405.xml │ │ └── Weapons.xml ├── Star Wars - Factions │ ├── Defs │ │ └── Star Wars - Factions │ │ │ ├── Patch_DamageDefs.xml │ │ │ └── PlasmaGasCartridge.xml │ └── Patches │ │ └── Star Wars - Factions │ │ ├── Patch_Apparel.xml │ │ ├── Patch_Melee.xml │ │ ├── Patch_Ranged.xml │ │ └── PawnKinds.xml ├── Starship Troopers Arachnids │ ├── Defs │ │ └── Starship Troopers Arachnids │ │ │ └── Projectiles_Bugs.xml │ └── Patches │ │ └── Starship Troopers Arachnids │ │ ├── Bodies_Bugs.xml │ │ ├── Races.xml │ │ ├── Resources.xml │ │ └── Weapons_Bugs.xml ├── Steamworld Uniforms │ └── Patches │ │ └── Steamworld Uniforms │ │ └── Apparel_Various.xml ├── Stellic Arsenal │ ├── Defs │ │ └── Stellic Arsenal │ │ │ └── Ammo_6x24_Stellic.xml │ └── Patches │ │ └── Stellic Arsenal │ │ └── RangedSpacer.xml ├── Steves Animals │ └── Patches │ │ └── Steves Animals │ │ ├── Bast_Resources.xml │ │ ├── Basty_Bodies.xml │ │ ├── BetaAnimals_CE_Patch_Projectiles.xml │ │ ├── BetaAnimals_CE_Patch_VerbShootCE.xml │ │ ├── CE_Patch_BastRace_All.xml │ │ ├── CE_Patch_BastRace_All2.xml │ │ └── CE_Patch_BastRace_All3.xml ├── Stoneborn - Delights │ └── Patches │ │ └── Stoneborn - Delights │ │ ├── Stoneborn_Animal.xml │ │ └── Stoneborn_Drugs.xml ├── Supernatural Weapons │ ├── Defs │ │ └── Supernatural Weapons │ │ │ └── Ammo.xml │ └── Patches │ │ └── Supernatural Weapons │ │ └── Patches.xml ├── Swords │ └── Patches │ │ └── Swords │ │ └── Swords_CE_Compatbility.xml ├── T's Conversion Staff │ └── Patches │ │ └── T's Conversion Staff │ │ └── Patch_TCS_Staff.xml ├── T's Samurai Faction │ ├── Defs │ │ └── Recipes_Samurai.xml │ └── Patches │ │ └── T's Samurai Faction │ │ ├── Biotech │ │ └── T_Samurai_Biotech_Apparel.xml │ │ ├── T_Samurai_Apparel.xml │ │ ├── T_Samurai_Legendary_Melee.xml │ │ ├── T_Samurai_Pawnkinds.xml │ │ ├── T_Samurai_Spacer_Weapons.xml │ │ ├── T_Samurai_Weapons_Melee.xml │ │ └── T_Samurai_Weapons_Ranged.xml ├── T's Wild Child Rags │ └── Patches │ │ └── T's Wild Child Rags │ │ └── TWCApparel_Child.xml ├── Tactical Extremity Protection [BAL] │ └── Patches │ │ └── Tactical Extremity Protection [BAL] │ │ └── Armor_Industrial.xml ├── Textiles+ │ └── Patches │ │ └── Textiles+ │ │ └── Items_Resource_Stuff.xml ├── The Corporation - Mort's Factions │ └── Patches │ │ └── The Corporation - Mort's Factions │ │ ├── Corporation_TraderKinds.xml │ │ └── Pawnkinds_Corporation.xml ├── The GiantRace │ ├── Defs │ │ └── Ammo_Giant.xml │ └── Patches │ │ └── The GiantRace │ │ ├── PawnKindDefs │ │ └── Giant_PawnKind.xml │ │ ├── Scenario │ │ └── Giant_Scenario.xml │ │ ├── ThingDefs_Misc │ │ ├── GiantApparel.xml │ │ ├── GiantWeapons_Melee.xml │ │ └── GiantWeapons_Ranged.xml │ │ └── ThingDefs_Races │ │ ├── AlienRace_Giantlike.xml │ │ └── Giant_Mammoth.xml ├── The Joris Experience │ ├── Defs │ │ └── HediffDefs.xml │ └── Patches │ │ └── The Joris Experience │ │ ├── Bear_Bodies.xml │ │ ├── Bear_Resources.xml │ │ ├── JorisShootCE.xml │ │ ├── Joris_Extended.xml │ │ ├── Joris_Hediffs.xml │ │ ├── Projectiles_Joris.xml │ │ ├── Unique_Joris_Extended.xml │ │ └── Unique_Joris_Extended2.xml ├── The REAL flamberg │ └── Patches │ │ └── The REAL flamberg │ │ ├── MeleeUltratechFlamberge.xml │ │ └── MeleeUltratechFlambergeBladelink.xml ├── The Sims Traits │ └── Patches │ │ └── The Sims Traits │ │ └── Traits_TheSims.xml ├── The Tuffalo │ └── Patches │ │ └── The Tuffalo │ │ └── Animal_Tuffalo.xml ├── The Vanity Project - Shiba Inu │ └── Patches │ │ └── The Vanity Project - Shiba Inu │ │ └── Vanity_Project_Shiba_Inu_Patch.xml ├── The Wild Fields │ └── Patches │ │ └── The Wild Fields │ │ ├── ThingDefs_Apparel.xml │ │ └── ThingDefs_Weapons.xml ├── Thog's Armor │ └── Patches │ │ └── Thog's Armor │ │ ├── Armor_Thogs.xml │ │ └── Armor_ThogsChild.xml ├── Thog's Guns - More Brukka Pack │ └── Patches │ │ └── Thog's Guns - More Brukka Pack │ │ └── Ranged_Industrial.xml ├── Thrumbo Plushie │ └── Patches │ │ └── Thrumbo Plushie │ │ └── ThrumboPlushie.xml ├── Thrumkin │ └── Patches │ │ └── Thrumkin │ │ ├── Patch_Bodies_Thrumkin.xml │ │ ├── Patch_ImplantsProsthetics_Thrumkin.xml │ │ ├── Patch_PawnKinds_Thrumkin.xml │ │ ├── Patch_Race_Thrumkin.xml │ │ └── Patch_Things_Thrumkin.xml ├── Titan Vehicles │ └── Patches │ │ └── Titan Vehicles │ │ ├── Avenger.xml │ │ ├── Conquistador.xml │ │ └── Warchief.xml ├── Toolmetrics Redux │ └── Patches │ │ └── Toolmetrics Redux │ │ └── ToolmetricsRedux_ToolsDef.xml ├── Tools O'Plenty │ └── Patches │ │ └── Tools O'Plenty │ │ ├── ToolsOPLentyElectricCE.xml │ │ ├── ToolsOPLentyPrimitveCE.xml │ │ ├── ToolsOPLentySimpleCE.xml │ │ └── ToolsOPLentySpacerCE.xml ├── TouhouStyle │ └── Patches │ │ └── TouhouStyle │ │ └── ThingDefs_Misc │ │ ├── Apparel_TouHou.xml │ │ └── Headgear_TouHou.xml ├── Tox Weapons Pack │ ├── Defs │ │ └── Tox Weapons Pack │ │ │ └── Tox_ammo.xml │ └── Patches │ │ └── Tox Weapons Pack │ │ ├── Weapon_Tox.xml │ │ └── Weapon_Tox_Bladelink.xml ├── Tribal Warrior Set │ └── Patches │ │ └── Tribal Warrior Set │ │ └── TribalWarrior_Apparel.xml ├── Tsar Armory │ └── Patches │ │ └── Tsar Armory │ │ ├── TsarArmory_Guns.xml │ │ ├── TsarArmory_Recipes.xml │ │ └── TsarArmory_Turrets.xml ├── Turret Collection │ ├── Defs │ │ └── Turret Collection │ │ │ └── Ammo_M74.xml │ └── Patches │ │ └── Turret Collection │ │ └── TurretCollection_CE_Patch_Turrets.xml ├── Twi'lek Race │ └── Patches │ │ └── Twi'lek Race │ │ ├── Patch_Bodies.xml │ │ ├── PawnKinds_Twilek.xml │ │ ├── Race_Twilek.xml │ │ └── ScenarioDefs.xml ├── UEM More Mechanitor Mechs │ └── Patches │ │ └── UEM More Mechanitor Mechs │ │ └── Defs │ │ └── ThingDefs_Races │ │ └── Races_Mechanoid_Light.xml ├── Useless Clothes │ └── Patches │ │ └── Useless Clothes │ │ └── ThingDefs_Apparel.xml ├── Ushankas Glittertech Expansion │ ├── Defs │ │ └── Ushankas Glittertech Expansion │ │ │ └── Defs_GlitterAmmo.xml │ └── Patches │ │ └── Ushankas Glittertech Expansion │ │ ├── ADP_Glitter.xml │ │ ├── ADP_Security_Turrets.xml │ │ ├── Hediff_Glitter.xml │ │ └── UpgradeLenses_Glitter.xml ├── VFAS │ └── Patches │ │ └── VFAS │ │ └── HediffDefs │ │ ├── BionicArm.xml │ │ ├── BionicLeg.xml │ │ ├── Denture.xml │ │ ├── SimpleProstheticArm.xml │ │ └── SimpleProstheticLeg.xml ├── VFE - Mechanoids Drones │ └── Patches │ │ └── VFE - Mechanoids Drones │ │ └── Race_Machines.xml ├── VFE Insectoids Equipment │ ├── Defs │ │ └── VFE Insectoids Equipment │ │ │ ├── Ammo │ │ │ ├── AmmoCategories.xml │ │ │ └── PlasmaCells.xml │ │ │ └── Hediffs │ │ │ └── Hediffs_Berserk.xml │ └── Patches │ │ └── VFE Insectoids Equipment │ │ ├── Ammo │ │ └── MadnessShell.xml │ │ └── ThingDefs_Misc │ │ ├── Apparel_Various.xml │ │ └── Weapons_Spacer.xml ├── VFE Pirates unofficial add-on - Warcasket Melee Armory Continued │ └── Patches │ │ └── VFE Pirates unofficial add-on - Warcasket Melee Armory Continued │ │ └── Weapons.xml ├── VGP Drinks │ └── Patches │ │ └── VGP Drinks │ │ └── VGP_Drinks_CE_Patch.xml ├── VGP Garden Fabrics │ └── Patches │ │ └── VGP Garden Fabrics │ │ └── VGP Garden Fabrics.xml ├── VRE Android Factions │ └── Patches │ │ └── VRE Android Factions │ │ └── Factions_Misc.xml ├── VacSlipsuit │ └── Patches │ │ └── VacSlipsuit │ │ └── Patches_Apparel.xml ├── Valorant Weapon Pack │ └── Patches │ │ └── Valorant Weapon Pack │ │ └── ValorantWeaponPack_Ranged.xml ├── Vampire, Demons, and the Undead │ └── Patches │ │ └── Vampire, Demons, and the Undead │ │ └── HediffDefs │ │ └── VU_Hediff_Patch.xml ├── Vanilla Animals Expanded - Endangered │ ├── NotOdyssey │ │ └── Patches │ │ │ └── Endangered_Animals_NoOdyssey.xml │ └── Patches │ │ └── Vanilla Animals Expanded - Endangered │ │ ├── Bodies │ │ └── Patch_Bodies_Animals.xml │ │ └── ThingDefs_Races │ │ ├── Endangered_AddClass.xml │ │ └── Endangered_Animals.xml ├── Vanilla Animals Expanded - Royal Animals │ ├── NotOdyssey │ │ └── Patches │ │ │ └── Royal_Animals.xml │ └── Patches │ │ └── Vanilla Animals Expanded - Royal Animals │ │ └── ThingDefs_Races │ │ └── Royal_Animals.xml ├── Vanilla Animals Expanded - Waste Animals │ └── Patches │ │ └── Vanilla Animals Expanded - Waste Animals │ │ ├── Bodies │ │ ├── Bodyparts.xml │ │ └── Patch_Bodies_Animals.xml │ │ ├── ThingDefs_Items │ │ └── WasteAnimals_Items.xml │ │ ├── ThingDefs_Misc │ │ └── WasteAnimals_Projectiles.xml │ │ └── ThingDefs_Races │ │ ├── WasteAnimals_Base.xml │ │ ├── WasteAnimals_Hydra.xml │ │ ├── WasteAnimals_Megatardi.xml │ │ ├── WasteAnimals_Pestigator.xml │ │ ├── WasteAnimals_Toxafox.xml │ │ ├── WasteAnimals_Toxbear.xml │ │ ├── WasteAnimals_Toxiguana.xml │ │ ├── WasteAnimals_Toxlion.xml │ │ ├── WasteAnimals_Toxscorpion.xml │ │ ├── WasteAnimals_Wasteboar.xml │ │ ├── WasteAnimals_Wastedeer.xml │ │ └── WasteAnimals_Wasteffalo.xml ├── Vanilla Animals Expanded │ ├── NotOdyssey │ │ └── Patches │ │ │ ├── AridShrubland_Animals.xml │ │ │ ├── AridShrubland_Resources.xml │ │ │ ├── BorealForest_Animals.xml │ │ │ ├── IceSheet_AddClass.xml │ │ │ ├── IceSheet_Animals.xml │ │ │ ├── IceSheet_Resources.xml │ │ │ ├── TemperateForest_Animals.xml │ │ │ ├── TropicalRainforest_AddClass.xml │ │ │ ├── TropicalRainforest_Animals.xml │ │ │ ├── TropicalRainforest_Resources.xml │ │ │ ├── TropicalSwamp_Animals.xml │ │ │ ├── Tundra_AddClass.xml │ │ │ ├── Tundra_Animals.xml │ │ │ └── Tundra_Resources.xml │ └── Patches │ │ └── Vanilla Animals Expanded │ │ ├── AridShrubland_AddClass.xml │ │ ├── AridShrubland_Animals.xml │ │ ├── AridShrubland_Resources.xml │ │ ├── Australia_AddClass.xml │ │ ├── Australia_Animals.xml │ │ ├── Australia_Resources.xml │ │ ├── BorealForest_AddClass.xml │ │ ├── BorealForest_Animals.xml │ │ ├── CatsAndDogs_AddClass.xml │ │ ├── CatsAndDogs_Cats.xml │ │ ├── CatsAndDogs_Dogs.xml │ │ ├── Desert_AddClass.xml │ │ ├── Desert_Animals.xml │ │ ├── Desert_Resources.xml │ │ ├── ExtremeDesert_AddClass.xml │ │ ├── ExtremeDesert_Animals.xml │ │ ├── TemperateForest_AddClass.xml │ │ ├── TemperateForest_Animals.xml │ │ ├── TropicalRainforest_AddClass.xml │ │ ├── TropicalRainforest_Animals.xml │ │ ├── TropicalSwamp_AddClass.xml │ │ ├── TropicalSwamp_Animals.xml │ │ ├── Tundra_AddClass.xml │ │ └── Tundra_Animals.xml ├── Vanilla Apparel Expanded - Accessories │ └── Patches │ │ └── Vanilla Apparel Expanded - Accessories │ │ └── Apparel_Utility.xml ├── Vanilla Apparel Expanded │ └── Patches │ │ └── Vanilla Apparel Expanded │ │ └── ThingDefs_Misc │ │ ├── Apparel_Footwear.xml │ │ ├── Apparel_Handwear.xml │ │ ├── Apparel_Industrial.xml │ │ ├── Apparel_Medieval.xml │ │ ├── Apparel_Neolithic.xml │ │ └── Headgear_Industrial.xml ├── Vanilla Armour Expanded │ └── Patches │ │ └── Vanilla Armour Expanded │ │ └── ThingDefs_Misc │ │ ├── Armor_Footwear.xml │ │ ├── Armor_Handwear.xml │ │ ├── Armor_Industrial.xml │ │ ├── Armor_Medieval.xml │ │ ├── Armor_Neolithic.xml │ │ ├── Armor_Riot.xml │ │ ├── Armor_Spacer.xml │ │ └── Headgear_Industrial.xml ├── Vanilla Arsenal │ ├── Defs │ │ └── Vanilla Arsenal │ │ │ └── Ammo.xml │ └── Patches │ │ └── RangedIndustrial.xml ├── Vanilla Base Generation Expanded │ ├── Defs │ │ └── SymbolDefs.xml │ └── Patches │ │ └── Vanilla Base Generation Expanded │ │ └── SettlementDefs.xml ├── Vanilla Brewing Expanded │ └── Patches │ │ └── Vanilla Brewing Expanded │ │ ├── Alcohol.xml │ │ └── ThingDefs_Items.xml ├── Vanilla Chemfuel Expanded │ └── Patches │ │ └── Vanilla Chemfuel Expanded │ │ └── Items_Chemfuel.xml ├── Vanilla Factions Expanded - Ancients │ ├── Defs │ │ └── Vanilla Factions Expanded - Ancients │ │ │ └── SymbolDefs.xml │ └── Patches │ │ └── Vanilla Factions Expanded - Ancients │ │ ├── CustomGenDefs_Vaults.xml │ │ ├── Hediffs_Powers.xml │ │ ├── Patch_Abilities.xml │ │ ├── PawnKinds_Spacer.xml │ │ └── ThingDefs_Sentry.xml ├── Vanilla Factions Expanded - Classical │ ├── Defs │ │ └── Vanilla Factions Expanded - Classical │ │ │ ├── Ammo_Javelin.xml │ │ │ ├── Ammo_Scorpion.xml │ │ │ └── ThingDefs_Shields.xml │ └── Patches │ │ └── Vanilla Factions Expanded - Classical │ │ ├── Apparel_Classical.xml │ │ ├── Apparel_Headgear.xml │ │ ├── Items_Resource_Stuff.xml │ │ ├── PawnKinds_Misc.xml │ │ ├── ThingDefs_Manned.xml │ │ ├── ThingDefs_WeaponsMelee.xml │ │ └── ThingDefs_WeaponsRanged.xml ├── Vanilla Factions Expanded - Deserters │ ├── Defs │ │ └── Vanilla Factions Expanded - Deserters │ │ │ └── Ammo_Fletchling.xml │ └── Patches │ │ └── Vanilla Factions Expanded - Deserters │ │ ├── Apparel_Belts.xml │ │ ├── Buildings_Security_Turrets.xml │ │ ├── Buildings_Special.xml │ │ ├── Contraband.xml │ │ ├── Damages_Empire.xml │ │ ├── RangedSpacer.xml │ │ ├── Scenario_Deserters.xml │ │ └── Things_Security.xml ├── Vanilla Factions Expanded - Empire │ ├── Defs │ │ └── Vanilla Factions Expanded - Empire │ │ │ └── Ammo │ │ │ ├── ChargeThumperRound.xml │ │ │ ├── FletcherRifleRound.xml │ │ │ └── ThingDefs_ShuttleTurret.xml │ └── Patches │ │ └── Vanilla Factions Expanded - Empire │ │ ├── Apparel_Headgear.xml │ │ ├── Apparel_Royal.xml │ │ ├── Apparel_Various.xml │ │ ├── Buildings_Security_Turrets.xml │ │ ├── Damages_Empire.xml │ │ ├── MeleeUltratech.xml │ │ ├── PawnKinds.xml │ │ ├── RangedSpacer.xml │ │ └── Scenario_Empire.xml ├── Vanilla Factions Expanded - Insectoids 2 │ └── Patches │ │ ├── AbilityDefs │ │ └── Abilities.xml │ │ ├── Bodies │ │ ├── Bodies_ClawedInsectoid.xml │ │ └── Bodies_Swarmling.xml │ │ ├── DamageDef │ │ └── DamageMisc.xml │ │ ├── PawnKindDefs_Humanlikes │ │ └── PawnKinds_Player.xml │ │ ├── ThingDefs_Buildings │ │ └── Buildings_Insectoid.xml │ │ ├── ThingDefs_Items │ │ └── Items_Resource_Leathers.xml │ │ └── ThingDefs_Races │ │ ├── Races_AcidSpitter.xml │ │ ├── Races_Bases.xml │ │ ├── Races_Boomtick.xml │ │ ├── Races_Durapod.xml │ │ ├── Races_Empress.xml │ │ ├── Races_Fuelmite.xml │ │ ├── Races_Gigalocust.xml │ │ ├── Races_Gigamite.xml │ │ ├── Races_Hellbeetle.xml │ │ ├── Races_Ironclad.xml │ │ ├── Races_Macrofly.xml │ │ ├── Races_Megapede.xml │ │ ├── Races_Megathrips.xml │ │ ├── Races_Megawasp.xml │ │ ├── Races_Patriarch.xml │ │ ├── Races_Queen.xml │ │ ├── Races_RoyalMegascarab.xml │ │ ├── Races_RoyalMegaspider.xml │ │ ├── Races_RoyalSpelopede.xml │ │ ├── Races_Silverfish.xml │ │ ├── Races_Swarmling.xml │ │ ├── Races_Tankroach.xml │ │ ├── Races_Teramantis.xml │ │ ├── Races_Titantick.xml │ │ └── Races_Venomite.xml ├── Vanilla Factions Expanded - Mechanoids │ ├── Defs │ │ └── Vanilla Factions Expanded - Mechanoids │ │ │ └── ThingDefs_Misc │ │ │ ├── Ammo_Mechanoid.xml │ │ │ ├── CombinationDefs.xml │ │ │ ├── CombinationDefs_Mods.xml │ │ │ └── ThingDefs_MechWeapons.xml │ └── Patches │ │ └── Vanilla Factions Expanded - Mechanoids │ │ ├── CombinationDefs │ │ └── CombinationDefs.xml │ │ ├── PawnKindDefs │ │ └── Pawnkinds_Mech.xml │ │ ├── Scenario │ │ └── Scenario.xml │ │ ├── ThingDefs_Misc │ │ ├── Apparel_Mechanite.xml │ │ ├── Buildings_Mech.xml │ │ ├── Buildings_Security_Turrets.xml │ │ ├── Items_Resource.xml │ │ └── Weapons_Mech.xml │ │ ├── ThingDefs_Races │ │ ├── Races_AdvancedMechanoid.xml │ │ ├── Races_AdvancedMechanoid_PlayerControlled.xml │ │ ├── Races_Machines.xml │ │ ├── Races_Mechanoid.xml │ │ └── Races_Mechanoid_PlayerControlled.xml │ │ └── WorldObjects │ │ └── WorldObjects.xml ├── Vanilla Factions Expanded - Medieval 2 │ ├── Defs │ │ └── Vanilla Factions Expanded - Medieval 2 │ │ │ ├── Ammo │ │ │ └── VFEM2_Ammo_Medieval.xml │ │ │ └── DamageDefs │ │ │ └── VFEM2_Arrow_Damage.xml │ └── Patches │ │ └── Vanilla Factions Expanded - Medieval 2 │ │ ├── HediffDefs │ │ └── VFEM2_HediffDefs_Draughts.xml │ │ ├── PawnKindDefs_Humanlikes │ │ ├── VFEM2_PawnsKinds_Clan.xml │ │ └── VFEM2_PawnsKinds_Kingdom.xml │ │ ├── ResearchDefs │ │ └── VFEM2_ResearchProjects_Various.xml │ │ ├── ThingDefs_Buildings │ │ └── VFEM2_ThingDefs_Buldings_Security.xml │ │ ├── ThingDefs_Items │ │ ├── VFEM2_Items_Draughts.xml │ │ └── VFEM2_Resources_Stuffs.xml │ │ ├── ThingDefs_Misc │ │ ├── VFEM2_Apparel_Headgear.xml │ │ ├── VFEM2_Apparel_Packs.xml │ │ ├── VFEM2_Apparel_Various.xml │ │ ├── VFEM2_Shields.xml │ │ └── Weapons │ │ │ ├── VFEM2_Weapons_Melee.xml │ │ │ └── VFEM2_Weapons_Ranged.xml │ │ └── TraderKindDefs │ │ └── VFEM2_TraderKinds.xml ├── Vanilla Factions Expanded - Pirates │ ├── Defs │ │ └── Vanilla Factions Expanded - Pirates │ │ │ └── Ammo │ │ │ ├── Ammo_Bioferrite.xml │ │ │ ├── Ammo_Mods.xml │ │ │ ├── Ammo_Vikings.xml │ │ │ ├── SlugthrowerShell.xml │ │ │ └── ThingDefs_GauntletTurret.xml │ └── Patches │ │ └── Vanilla Factions Expanded - Pirates │ │ ├── AbilityDefs │ │ └── Abilities.xml │ │ ├── Drugs │ │ └── Drug_Bases.xml │ │ ├── Misc │ │ └── Patch_Ideology.xml │ │ ├── PawnKindDefs │ │ ├── PawnKinds_Junkers.xml │ │ └── PawnKinds_Mercenaries.xml │ │ ├── Scenario │ │ └── Scenario.xml │ │ ├── ThingDefs_Misc │ │ ├── Addon Weapons │ │ │ ├── VFEVRangedWarcasket.xml │ │ │ ├── VWEBFRangedWarcasket.xml │ │ │ ├── VWECRangedWarcasket.xml │ │ │ ├── VWELRangedWarcasket.xml │ │ │ ├── VWENLRangedWarcasket.xml │ │ │ └── VWEQRangedWarcasket.xml │ │ ├── Apparel_Various.xml │ │ ├── Apparel_Warcaskets.xml │ │ ├── Apparel_Warcaskets_Spacer.xml │ │ ├── Melee_Warcaskets.xml │ │ ├── Ranged_Warcaskets.xml │ │ ├── ThingDefs_Artillery.xml │ │ ├── ThingDefs_Turrets.xml │ │ └── Weapons_Mech.xml │ │ └── ThingDefs_Races │ │ └── Races_Mechanoid.xml ├── Vanilla Factions Expanded - Settlers │ ├── Defs │ │ └── Vanilla Factions Expanded - Settlers │ │ │ └── Recipes_Settlers.xml │ └── Patches │ │ └── Vanilla Factions Expanded - Settlers │ │ ├── Drugs │ │ └── Alcohol_Chemshine.xml │ │ ├── PawnKindDefs │ │ ├── PawnKinds_Bandits.xml │ │ └── PawnKinds_Settlers.xml │ │ ├── Scenarios │ │ └── Scenarios_Classic.xml │ │ ├── ThingDefs_Buildings │ │ └── TurretGatlingGun.xml │ │ └── ThingDefs_Misc │ │ ├── Apparel_Headgear.xml │ │ ├── Apparel_Various.xml │ │ └── Weapons │ │ ├── RangedIndustrial.xml │ │ ├── RangedIndustrialGrenades.xml │ │ └── RangedMedieval.xml ├── Vanilla Factions Expanded - Tribals │ ├── Defs │ │ └── Vanilla Factions Expanded - Tribals │ │ │ └── Recipes_Tribals.xml │ └── Patches │ │ └── Vanilla Factions Expanded - Tribals │ │ ├── Apparel_Tribals.xml │ │ ├── ThingDefs_WeaponsMelee.xml │ │ └── ThingDefs_WeaponsRanged.xml ├── Vanilla Furniture Expanded - Security │ ├── Defs │ │ └── Vanilla Furniture Expanded - Security │ │ │ └── Ammo_Security.xml │ └── Patches │ │ └── Vanilla Furniture Expanded - Security │ │ ├── ThingDefs_Manned.xml │ │ └── ThingDefs_Sentry.xml ├── Vanilla Genetics Expanded │ ├── Defs │ │ └── Vanilla Genetics Expanded │ │ │ └── Projectiles.xml │ └── Patches │ │ └── Vanilla Genetics Expanded │ │ ├── AbilityDefs │ │ └── VGE_CE_Patch_Abilities.xml │ │ ├── Bodies │ │ └── Patch_Bodies_Animals.xml │ │ ├── CE_Patch_DamageDef.xml │ │ ├── HediffDefs │ │ ├── Hediffs_Local_Implants_Animals.xml │ │ └── Hediffs_Local_Implants_Humanoid.xml │ │ ├── Items_Resources.xml │ │ ├── Mods │ │ ├── AlphaAnimals_Items_Resource_Stuff.xml.xml │ │ ├── AlphaAnimals_Patch_AbilityDefs.xml │ │ ├── AlphaAnimals_Patch_Projectiles.xml │ │ ├── CosmicHorror_Items_Resource_Stuff.xml │ │ ├── Dinosauria_Items_Resource_Stuff.xml │ │ ├── Races_Animal_AlphaHybridCE.xml │ │ ├── Races_Animal_Dino_HybridCE.xml │ │ ├── Races_Animal_HorrorHybrid.xml │ │ └── Races_Animal_MegaHybrid.xml │ │ ├── Patch_Items_Drugs.xml │ │ ├── Patch_Projectiles.xml │ │ ├── ThingDefs_Races │ │ ├── Races_Animal_ArchoCentipede.xml │ │ ├── Races_Animal_AvianHybrids.xml │ │ ├── Races_Animal_BoomHybrids.xml │ │ ├── Races_Animal_CanineHybrids.xml │ │ ├── Races_Animal_ColossalHybrids.xml │ │ ├── Races_Animal_EquineHybrids.xml │ │ ├── Races_Animal_Failures.xml │ │ ├── Races_Animal_FelineHybrids.xml │ │ ├── Races_Animal_HumanoidHybrids.xml │ │ ├── Races_Animal_InsectoidHybrids.xml │ │ ├── Races_Animal_MechanoidHybrids.xml │ │ ├── Races_Animal_MuffaloHybrids.xml │ │ ├── Races_Animal_Paragons.xml │ │ ├── Races_Animal_ReptileHybrids.xml │ │ ├── Races_Animal_RodentHybrids.xml │ │ └── Races_Animal_UrsineHybrids.xml │ │ └── TraderKinds_MadScientists.xml ├── Vanilla Ideology Expanded - Dryads │ └── Patches │ │ └── Vanilla Ideology Expanded - Dryads │ │ ├── DamageDefs │ │ ├── Animal_Projectile_Shoot.xml │ │ └── Animal_Projectiles.xml │ │ ├── ThingDefs_Items │ │ └── Items_Resource_Stuff.xml │ │ └── ThingDefs_Races │ │ ├── Races_Animal_AwakenedDryads.xml │ │ └── Races_Spitter_RangedAttack.xml ├── Vanilla Ideology Expanded - Hats and Rags │ └── Patches │ │ └── Vanilla Ideology Expanded - Hats and Rags │ │ ├── Apparel_Headgear.xml │ │ └── Apparel_Various.xml ├── Vanilla Ideology Expanded - Memes and Structures │ └── Patches │ │ └── Vanilla Ideology Expanded - Memes and Structures │ │ └── Hediffs_BodyParts.xml ├── Vanilla Persona Weapons Expanded │ └── Patches │ │ └── Vanilla Persona Weapons Expanded │ │ └── MeleeBladelink.xml ├── Vanilla Plants Expanded - Mushrooms │ └── Patches │ │ └── Vanilla Plants Expanded - Mushrooms │ │ └── ThingDefs_Items │ │ └── Items_Resource_Stuff.xml ├── Vanilla Prestige Specialist Armours Reworked │ └── Patches │ │ └── Vanilla Prestige Specialist Armours Reworked │ │ └── Apparel_Armor.xml ├── Vanilla Psycasts Expanded - Hemosage │ └── Patches │ │ └── Vanilla Psycasts Expanded - Hemosage │ │ ├── AbilityDefs │ │ └── AbilityDefs_Patch.xml │ │ └── ThingDefs │ │ └── Projectile_Tweaks.xml ├── Vanilla Psycasts Expanded - Runesmith │ ├── Defs │ │ └── Vanilla Psycasts Expanded - Runesmith │ │ │ └── Projectiles.xml │ └── Patches │ │ └── Vanilla Psycasts Expanded - Runesmith │ │ ├── Buildings_Turrets.xml │ │ ├── Race_Spirit.xml │ │ ├── Turret_Gun.xml │ │ └── Weapons_Melee.xml ├── Vanilla Psycasts Expanded │ └── Patches │ │ └── Vanilla Psycasts Expanded │ │ ├── AbilityDefs │ │ └── AbilityDefs_Patch.xml │ │ ├── Bodies │ │ └── Bodies_Patch.xml │ │ ├── HediffDefs │ │ └── Hediffs_Patch.xml │ │ ├── PawnKinds │ │ └── EmpirePawnKinds_Patch.xml │ │ ├── ThingDefs │ │ └── Projectile_Tweaks.xml │ │ ├── ThingDefs_Misc │ │ ├── Apparel_Patch.xml │ │ └── Weapons_Patch.xml │ │ └── ThingDefs_Races │ │ └── Races_Patch.xml ├── Vanilla Quests Expanded - Cryptoforge │ ├── Defs │ │ └── Vanilla Quests Expanded - Cryptoforge │ │ │ └── VQEC_Ammo_Cryptoforge.xml │ └── Patches │ │ └── Vanilla Quests Expanded - Cryptoforge │ │ ├── VQEC_Apparel_Various.xml │ │ ├── VQEC_Hediffs_Global_Misc.xml │ │ ├── VQEC_Races_Animal_Insect.xml │ │ ├── VQEC_Things_Sentry.xml │ │ └── VQEC_Things_Weapons.xml ├── Vanilla Races Expanded - Android │ └── Patches │ │ └── Vanilla Races Expanded - Android │ │ └── Scenario_Android.xml ├── Vanilla Races Expanded - Archon │ └── Patches │ │ └── Vanilla Races Expanded - Archon │ │ ├── Abilities_Transcendent.xml │ │ ├── Apparel_Various.xml │ │ ├── Archon_Misc.xml │ │ └── Melee_Archon.xml ├── Vanilla Races Expanded - Fungoid │ └── Patches │ │ └── Vanilla Races Expanded - Fungoid │ │ ├── Apparel_Various.xml │ │ └── Fungoid_Hediffs_BodyParts.xml ├── Vanilla Races Expanded - Highmate │ └── Patches │ │ └── Vanilla Races Expanded - Highmate │ │ └── HighmateBondEffectHediffs │ │ └── HighmateBondEffectHediffs.xml ├── Vanilla Races Expanded - Hussar │ └── Patches │ │ └── Vanilla Races Expanded - Hussar │ │ └── GeneDefs │ │ └── GeneDefs_Misc.xml ├── Vanilla Races Expanded - Insector │ └── Patches │ │ └── Vanilla Races Expanded - Insector │ │ ├── AbilityDefs │ │ └── AbilityDefs.xml │ │ ├── GeneDefs │ │ └── GeneDefs.xml │ │ ├── HediffDefs │ │ └── Hediffs.xml │ │ └── VFE-I2 │ │ ├── AbilityDefs │ │ └── AbilityDefs.xml │ │ ├── GeneDefs │ │ └── GeneDefs.xml │ │ └── HediffDefs │ │ └── Hediffs.xml ├── Vanilla Races Expanded - Lycanthrope │ └── Patches │ │ └── Vanilla Races Expanded - Lycanthrope │ │ ├── GeneDefs_Health.xml │ │ ├── Hediffs_Health.xml │ │ └── Pawnkinds_Special.xml ├── Vanilla Races Expanded - Phytokin │ └── Patches │ │ └── Vanilla Races Expanded - Phytokin │ │ └── GeneDefs │ │ ├── GeneDefs_BarkSkin.xml │ │ └── Races_Animal_Ideology.xml ├── Vanilla Races Expanded - Sanguophage │ └── Patches │ │ └── Vanilla Races Expanded - Sanguophage │ │ ├── AbilityDefs │ │ └── Abilities_SingleUse.xml │ │ ├── HediffDefs │ │ ├── HediffDef_Deathrest.xml │ │ └── HediffDef_SharpTalons.xml │ │ └── ThingDefs_Items │ │ └── HemogenPacks.xml ├── Vanilla Races Expanded - Saurid │ └── Patches │ │ └── Vanilla Races Expanded - Saurid │ │ ├── GeneDefs │ │ └── GeneDefs_ScaleSkin.xml │ │ └── HediffDefs │ │ └── HediffDef_SauridClaws.xml ├── Vanilla Races Expanded - Waster │ └── Patches │ │ └── Vanilla Races Expanded - Waster │ │ └── HediffDefs │ │ └── Hediffs.xml ├── Vanilla Skills Expanded │ └── Patches │ │ └── Vanilla Skills Expanded │ │ └── Expertise.xml ├── Vanilla Storytellers Expanded - Perry Persistent │ └── Patches │ │ └── Vanilla Storytellers Expanded - Perry Persistent │ │ └── PawnKinds_ManInCoat.xml ├── Vanilla Storytellers Expanded - Winston Waves │ └── Patches │ │ └── Vanilla Storytellers Expanded - Winston Waves │ │ ├── Modifiers │ │ └── Modifiers.xml │ │ └── Rewards │ │ └── Rewards.xml ├── Vanilla Vehicles Expanded - Tier 3 │ └── Patches │ │ └── Vanilla Vehicles Expanded - Tier 3 │ │ └── VehicleDefs │ │ ├── Badger.xml │ │ ├── Burya.xml │ │ ├── Goliath.xml │ │ ├── Marshal.xml │ │ ├── Paladin.xml │ │ ├── Udar.xml │ │ ├── Vehicles_ExplosionsHotfixTier3.xml │ │ └── Vehicles_Unarmed.xml ├── Vanilla Vehicles Expanded - Upgrades │ └── Patches │ │ └── Vanilla Vehicles Expanded - Upgrades │ │ └── Tier1 │ │ ├── Bangbus_Upgrades.xml │ │ ├── Bunsen_Upgrades.xml │ │ ├── Highwayman_Upgrades.xml │ │ ├── Mule_Upgrades.xml │ │ ├── Prowler_Upgrades.xml │ │ ├── Roadkill_Upgrades.xml │ │ └── Traveller_Upgrades.xml ├── Vanilla Vehicles Expanded │ └── Patches │ │ └── Vanilla Vehicles Expanded │ │ ├── Resources_CarParts.xml │ │ ├── VehicleDefs │ │ ├── Tier1 │ │ │ ├── Bunsen.xml │ │ │ ├── Highwayman.xml │ │ │ ├── Roadkill.xml │ │ │ ├── Scytheman.xml │ │ │ ├── Toad.xml │ │ │ └── Vehicles_T1_Unarmed.xml │ │ └── Tier2 │ │ │ ├── Bulldog.xml │ │ │ ├── Tango.xml │ │ │ └── Vehicles_T2_Unarmed.xml │ │ └── Vehicles_Explosions_Fix.xml ├── Vanilla Weapons Expanded - Bioferrite │ ├── Defs │ │ └── BioferriteFlare.xml │ └── Patches │ │ ├── VWE-HW_Ranged.xml │ │ └── VWE_BioferriteRanged.xml ├── Vanilla Weapons Expanded - Coilguns │ ├── Defs │ │ └── Vanilla Weapons Expanded - Coilguns │ │ │ └── Ammo.xml │ └── Patches │ │ └── Vanilla Weapons Expanded - Coilguns │ │ └── RangedSpacer.xml ├── Vanilla Weapons Expanded - Frontier │ ├── Defs │ │ └── Vanilla Weapons Expanded - Frontier │ │ │ ├── HighRoller_AddonAmmo.xml │ │ │ └── HighRoller_Ammo.xml │ └── Patches │ │ └── Vanilla Weapons Expanded - Frontier │ │ ├── Weapons_Frontier-Coilguns.xml │ │ ├── Weapons_Frontier-HeavyWeapons.xml │ │ ├── Weapons_Frontier-Laser.xml │ │ ├── Weapons_Frontier-Quickdraw.xml │ │ └── Weapons_Frontier.xml ├── Vanilla Weapons Expanded - Grenades │ └── Patches │ │ └── Vanilla Weapons Expanded - Grenades │ │ ├── Apparel_Packs-Biotech.xml │ │ ├── Apparel_Packs-NonLethal.xml │ │ ├── Apparel_Packs-Settlers.xml │ │ ├── Apparel_Packs-Weapons.xml │ │ └── Apparel_Packs.xml ├── Vanilla Weapons Expanded - Heavy Weapons │ ├── Defs │ │ └── Vanilla Weapons Expanded - Heavy Weapons │ │ │ └── Ammo │ │ │ └── M73.xml │ └── Patches │ │ └── Vanilla Weapons Expanded - Heavy Weapons │ │ ├── Apparel_Packs.xml │ │ └── RangedIndustrialHeavy.xml ├── Vanilla Weapons Expanded - Laser │ ├── Defs │ │ └── Vanilla Weapons Expanded - Laser │ │ │ └── Ammo.xml │ └── Patches │ │ └── Vanilla Weapons Expanded - Laser │ │ ├── MeleeSpacer.xml │ │ ├── PawnKinds.xml │ │ └── RangedSpacer.xml ├── Vanilla Weapons Expanded - Makeshift │ └── Patches │ │ └── Vanilla Weapons Expanded - Makeshift │ │ └── RangedIndustrial.xml ├── Vanilla Weapons Expanded - Non-Lethal │ ├── Defs │ │ └── Vanilla Weapons Expanded - Non-Lethal │ │ │ ├── 40mmLessLethal.xml │ │ │ ├── Recipe_TearGas.xml │ │ │ ├── RubberBullet.xml │ │ │ ├── TaserCartridge.xml │ │ │ └── TranquilizerDart.xml │ └── Patches │ │ └── Vanilla Weapons Expanded - Non-Lethal │ │ ├── NonLethal_Grenades.xml │ │ ├── NonLethal_Melee.xml │ │ └── NonLethal_Ranged.xml ├── Vanilla Weapons Expanded - Quickdraw │ └── Patches │ │ └── Vanilla Weapons Expanded - Quickdraw │ │ └── Weapons_Quickdraw.xml ├── Vanilla Weapons Expanded - Tribal │ ├── Defs │ │ └── Vanilla Weapons Expanded - Tribal │ │ │ └── Recipes_Ranged.xml │ └── Patches │ │ └── Vanilla Weapons Expanded - Tribal │ │ ├── Melee_Neolithic.xml │ │ └── Ranged_Neolithic.xml ├── Vanilla Weapons Expanded │ ├── Defs │ │ └── Vanilla Weapons Expanded │ │ │ ├── Ammo │ │ │ ├── AntiGrainRocket.xml │ │ │ ├── ChargeTriplet.xml │ │ │ ├── FireExtinguisher.xml │ │ │ ├── Recipes.xml │ │ │ └── Whip.xml │ │ │ └── DamageDefs │ │ │ └── Damage_RangedCut.xml │ └── Patches │ │ └── Vanilla Weapons Expanded │ │ ├── Industrial_Grenades.xml │ │ ├── Industrial_Melee.xml │ │ ├── Industrial_Ranged.xml │ │ ├── Medieval_Melee.xml │ │ ├── Medieval_Ranged.xml │ │ ├── Neolithic_Melee.xml │ │ ├── Neolithic_Ranged.xml │ │ ├── ResearchProjects.xml │ │ └── Spacer_Ranged.xml ├── Vanilla XCOM Laser Weapons │ ├── Defs │ │ └── Vanilla XCOM Laser Weapons │ │ │ └── Ammo.xml │ └── Patches │ │ └── Vanilla XCOM Laser Weapons │ │ └── Weapon_Ranged.xml ├── Vanilla XCOM Magnetic Weapons │ ├── Defs │ │ └── Vanilla XCOM Magnetic Weapons │ │ │ ├── Ammo.xml │ │ │ └── AmmoClass.xml │ └── Patches │ │ └── Vanilla XCOM Magnetic Weapons │ │ └── Weapon_Ranged.xml ├── Vanilla XCOM Patches │ └── Patches │ │ └── Vanilla XCOM Patches │ │ └── Weapon_RangedWC.xml ├── Vanilla XCOM Plasma Weapons │ ├── Defs │ │ └── Vanilla XCOM Plasma Weapons │ │ │ └── Ammo.xml │ └── Patches │ │ └── Vanilla XCOM Plasma Weapons │ │ └── Weapon_Ranged.xml ├── Vanilla XCOM Weapons │ ├── Defs │ │ └── Vanilla XCOM Weapons │ │ │ ├── ArcThrowerProjectile.xml │ │ │ └── BoltCasterAmmo.xml │ └── Patches │ │ └── Vanilla XCOM Weapons │ │ └── Weapon_Ranged.xml ├── Vehicle Framework Expanded - Classic Mechs │ └── Patches │ │ └── Vehicle Framework Expanded - Classic Mechs │ │ ├── Mech_BattleCannon.xml │ │ ├── Mech_GatlingCannon.xml │ │ ├── Mech_MachineGun.xml │ │ ├── Mech_MissileLauncher.xml │ │ └── Mech_VehiclePawn.xml ├── Victorian Era Apparels │ └── Patches │ │ └── Victorian Era Apparels │ │ └── GnmVictorianEra_Apparel.xml ├── Volt Weaponry │ ├── Defs │ │ └── Volt Weaponry │ │ │ └── Ammo_volt.xml │ └── Patches │ │ └── Volt Weaponry │ │ ├── Volt_Damages.xml │ │ ├── Volt_Headgear.xml │ │ └── Volt_RangedSpacer.xml ├── Vulpine Pack │ └── Patches │ │ └── Vulpine Pack │ │ ├── PawnKinds_FenX.xml │ │ ├── PawnKinds_Frij.xml │ │ ├── Race_Fenx.xml │ │ └── Race_Frij.xml ├── W1NG VacSuit Set │ └── Patches │ │ └── W1NG VacSuit Set │ │ └── Patches_Apparel.xml ├── WWII German Uniforms │ └── Patches │ │ └── WWII German Uniforms │ │ └── Apparel_GermanUniforms.xml ├── WWII Soviet Faction │ └── Patches │ │ └── WWII Soviet Faction │ │ ├── WWIISovietFaction_CE_Patch_Clothing.xml │ │ ├── WWIISovietFaction_CE_Patch_Headgear.xml │ │ ├── WWIISovietFaction_CE_Patch_PawnKindDefs.xml │ │ ├── WWIISovietFaction_CE_Patch_RangedIndustrial.xml │ │ └── WWIISovietFaction_CE_Patch_Turret.xml ├── Wall Mounted Turrets │ └── Patches │ │ └── Wall Mounted Turrets │ │ ├── WallMountedTurrets_CE_AllTurrets.xml │ │ ├── WallMountedTurrets_CE_FlameTurret.xml │ │ ├── WallMountedTurrets_CE_MiniGunTurret.xml │ │ ├── WallMountedTurrets_CE_RocketTurret.xml │ │ └── WallMountedTurrets_CE_WallTurret.xml ├── WarCasket Barbatos Gundam Addon │ └── Patches │ │ └── WarCasket Barbatos Gundam Addon │ │ ├── Apparel_Warcaskets.xml │ │ ├── Melee_Warcaskets.xml │ │ └── Ranged_Warcaskets.xml ├── WarCasket Expanded │ └── Patches │ │ └── WarCasket Expanded │ │ └── Apparel_Warcaskets.xml ├── Warcaskets - Adeptus Astartes │ └── Patches │ │ └── Warcaskets - Adeptus Astartes │ │ ├── Apparel_Warcaskets_Astartes.xml │ │ ├── Melee_Astartes.xml │ │ └── Ranged_Astartes.xml ├── Warhammer - Dryad │ ├── Defs │ │ └── Warhammer - Dryad │ │ │ └── Projectiles_Dryad.xml │ └── Patches │ │ └── Warhammer - Dryad │ │ ├── Apparel_Dryad.xml │ │ ├── PawnKinds_Dryad.xml │ │ ├── Race_Dryad.xml │ │ ├── Race_Revenant.xml │ │ ├── ThingDefs_Turrets.xml │ │ └── Weapons_Dryad.xml ├── Warhammer 40.000 - Imperium Materials │ └── Patches │ │ └── Warhammer 40.000 - Imperium Materials │ │ └── GrimForge_CE_Resources.xml ├── Warhammer 40.000 - Imperium Weaponry │ ├── Defs │ │ └── Warhammer 40.000 - Imperium Weaponry │ │ │ ├── GF40K_Ammo_Braizer.xml │ │ │ ├── GF40K_Ammo_Galvanic.xml │ │ │ └── GF40K_Ammo_Radium.xml │ └── Patches │ │ └── Warhammer 40.000 - Imperium Weaponry │ │ ├── GF40K_Damages_LocalInjury.xml │ │ ├── Weapons_Melee │ │ ├── GF40K_ForceWeapons.xml │ │ ├── GF40K_MechanicusWeapons.xml │ │ ├── GF40K_MechanicusWeaponsRelic.xml │ │ ├── GF40K_RegularWeapons.xml │ │ └── GF40K_RegularWeaponsRelic.xml │ │ └── Weapons_Ranged │ │ ├── GF40K_ArkWeapons.xml │ │ ├── GF40K_BolterWeapons.xml │ │ ├── GF40K_Braizer.xml │ │ ├── GF40K_FlamerWeapon.xml │ │ ├── GF40K_GalvanicRifleWeapon.xml │ │ ├── GF40K_GrenadeLauncherWeapon.xml │ │ ├── GF40K_LasWeapons.xml │ │ ├── GF40K_Meltagun.xml │ │ ├── GF40K_PlasmaWeapons.xml │ │ ├── GF40K_StubberWeapons.xml │ │ ├── GF40K_StubberWeapons_Relic.xml │ │ └── GF40K_Tox_Relic.xml ├── Warhammer 40k Factions │ └── Patches │ │ └── Warhammer 40k Factions │ │ ├── PawnKinds.xml │ │ └── TraderKinds.xml ├── Warhammer 40k Genes │ └── Patches │ │ └── Warhammer 40k Genes │ │ ├── Abilities_SpaceMarine.xml │ │ ├── GeneDefs.xml │ │ └── Hediffs_Attacks.xml ├── Waster Toxic Breather │ └── Patches │ │ └── Waster Toxic Breather │ │ └── WasterBreather.xml ├── Weapon Proficiency │ └── Patches │ │ └── Weapon Proficiency │ │ └── WP_stats.xml ├── Weapons+ │ └── Patches │ │ └── Weapons+ │ │ ├── WeaponsPlus_MeleeWeapons.xml │ │ ├── WeaponsPlus_Projectiles.xml │ │ └── WeaponsPlus_RangedWeapons.xml ├── Windows │ └── Patches │ │ └── Windows │ │ └── Openvindows.xml ├── Xen's Spirit Wolf │ └── Patches │ │ └── Xen's Spirit Wolf │ │ └── ThingDefs_Races.xml ├── Xenn │ ├── Defs │ │ └── Xenn │ │ │ └── ThingDefs_Misc │ │ │ └── Xenn_Ammo.xml │ └── Patches │ │ └── Xenn │ │ ├── PawnKindDefs_Humanlikes │ │ └── PawnKinds_Xenn.xml │ │ ├── ThingDefs_Misc │ │ ├── Apparel_Various.xml │ │ └── Xenn_Weps.xml │ │ └── ThingDefs_Races │ │ └── Race_Xenn.xml ├── Xenohumans - Anthromorphs │ └── Patches │ │ └── Xenohumans - Anthromorphs │ │ ├── Races_Avianmorph.xml │ │ ├── Races_Bovinemorph.xml │ │ ├── Races_Caninemorph.xml │ │ ├── Races_Cervinemorph.xml │ │ ├── Races_Dragomorph.xml │ │ ├── Races_Felinemorph.xml │ │ ├── Races_Gnollmorph.xml │ │ ├── Races_Lagomorph.xml │ │ └── Races_Vulpinemorph.xml ├── Xenohumans Expanded │ └── Patches │ │ └── Xenohumans Expanded │ │ ├── Races_Glitter_XH.xml │ │ ├── Races_Gravi_XH.xml │ │ ├── Races_LowGravi_XH.xml │ │ ├── Races_Radman_XH.xml │ │ ├── Races_Vatgrown_XH.xml │ │ └── Xenos_Pawns.xml ├── Xenohumans │ └── Patches │ │ └── Xenohumans │ │ ├── Races_Designermate_XH.xml │ │ ├── Races_Scaleman_XH.xml │ │ ├── Races_Soldiermorph_XH.xml │ │ └── Races_Wolfman_XH.xml ├── Xenoorca Race │ └── Patches │ │ └── Xenoorca Race │ │ ├── Ammo │ │ └── Projectiles.xml │ │ ├── Bodies │ │ └── Xenoorca_Bodytype.xml │ │ ├── Hediffs │ │ └── XO_Hediffs.xml │ │ ├── PawnKindDefs │ │ └── Xenoorca_PawnKind.xml │ │ ├── Scenario │ │ └── Xenoorca_Scenario.xml │ │ ├── ThingDefs_Misc │ │ ├── Weapons.xml │ │ └── Xenoorca_Apparel.xml │ │ └── ThingDefs_Races │ │ └── AlienRace_Xenoorca.xml ├── YetAnotherProsthetics - Core │ └── Patches │ │ └── YetAnotherProsthetics - Core │ │ └── Patches │ │ └── Bionics_Patch.xml ├── Zeus Weapons Pack │ ├── Defs │ │ └── Zeus Weapons Pack │ │ │ └── Ammo_Zeus.xml │ └── Patches │ │ └── Zeus Weapons Pack │ │ ├── Weapon_Zeus.xml │ │ └── Weapon_Zeus_Bladelink.xml ├── Zombieland │ └── Patches │ │ └── Zombieland │ │ └── Zombieland_Patches.xml ├── kemomimihouse Kz │ └── Patches │ │ └── kemomimihouse Kz │ │ └── Misc │ │ ├── HediffGiverSets.xml │ │ └── Projectile.xml ├── pphhyy Demigryph │ └── Patches │ │ └── pphhyy Demigryph │ │ ├── Demigryph_Animals.xml │ │ ├── Demigryph_Banners.xml │ │ ├── Demigryph_Bodies.xml │ │ ├── Demigryph_GryphArmor.xml │ │ ├── Demigryph_Helmets.xml │ │ ├── Demigryph_Materials.xml │ │ └── Demigryph_Shields.xml ├── pphhyy Expanded Scythers │ └── Patches │ │ └── pphhyy Expanded Scythers │ │ ├── MechBodies_CE.xml │ │ └── MechKind_CE.xml ├── pphhyy Sanguinary Animals │ └── Patches │ │ └── pphhyy Sanguinary Animals │ │ ├── SanguineAnimals_Animals.xml │ │ ├── SanguineAnimals_Bodies.xml │ │ ├── SanguineAnimals_Insects.xml │ │ └── SanguineAnimals_Materials.xml └── pphhyy's Lightless Empyrean │ └── Patches │ └── pphhyy's Lightless Empyrean │ ├── Bodies_Jellyfish.xml │ ├── Race_Animals.xml │ └── ThingDefs_Resources.xml ├── Odyssey ├── Defs │ ├── Ammo_BeamRepeater.xml │ └── WeaponTraitDefs.xml └── Patches │ ├── Abilities │ ├── Abilities_Odyssey.xml │ └── WeaponTraitAbilities.xml │ ├── Bodies │ ├── Crab.xml │ ├── Cyclops.xml │ ├── Drones │ │ ├── BodyParts_Drone.xml │ │ ├── Drone.xml │ │ ├── DroneWithThreads.xml │ │ └── DroneWithThreeLegs.xml │ ├── Larva.xml │ ├── Pinniped │ │ ├── Pinniped.xml │ │ └── PinnipedWithTusks.xml │ └── Snail.xml │ ├── DamageDefs │ └── DamageDefs.xml │ ├── Drugs │ └── Drugs.xml │ ├── GeneDefs │ └── GeneDefs_Odyssey.xml │ ├── PawnkindDefs │ └── PawnKinds_Odyssey.xml │ ├── Scenarios │ └── Scenarios.xml │ ├── ThingDefs_Buildings │ └── Buildings_Security.xml │ ├── ThingDefs_Items │ ├── Items_Resource_Stuff_Leather.xml │ ├── Items_Resources_Exotic.xml │ ├── Items_Resources_Fish.xml │ ├── Items_Resources_Misc.xml │ └── Items_Resources_Stuff.xml │ ├── ThingDefs_Misc │ ├── Apparel_Odyssey.xml │ ├── Ranged_Spacer.xml │ └── Weapons_UniqueGuns.xml │ ├── ThingDefs_Races │ ├── Races_Animals.xml │ ├── Races_Animals_Bird.xml │ ├── Races_Animals_Coastal.xml │ ├── Races_Animals_Insects.xml │ ├── Races_Drones.xml │ └── Races_Mechanoids.xml │ └── WeaponTraitDefs │ └── WeaponTraitDefs.xml ├── Patches └── Core │ ├── BackstoryDefs │ └── Patch_Backstories.xml │ ├── Bodies │ ├── Bodies_Animal_Bird │ │ └── Bird.xml │ ├── Bodies_Animal_Insect │ │ └── Beetlelike.xml │ ├── Bodies_Animal_Quadruped │ │ ├── Monkey.xml │ │ ├── QuadrupedAnimalWithClawsTailAndJowl.xml │ │ ├── QuadrupedAnimalWithHooves.xml │ │ ├── QuadrupedAnimalWithHoovesAndHorn.xml │ │ ├── QuadrupedAnimalWithHoovesAndHump.xml │ │ ├── QuadrupedAnimalWithHoovesAndTusks.xml │ │ ├── QuadrupedAnimalWithHoovesTusksAndTrunk.xml │ │ ├── QuadrupedAnimalWithPaws.xml │ │ ├── QuadrupedAnimalWithPawsAndTail.xml │ │ └── TurtleLike.xml │ ├── Bodies_Animal_Snake │ │ └── Snake.xml │ ├── Bodies_Humanlike │ │ └── Human.xml │ ├── Bodies_Mechanoid │ │ ├── Lancer.xml │ │ ├── MechanicalCentipede.xml │ │ ├── MechanicalTermite.xml │ │ ├── Pikeman.xml │ │ └── Scyther.xml │ ├── BodyPartGroupDummies.xml │ ├── BodyParts_Animal.xml │ ├── BodyParts_General.xml │ ├── BodyParts_Humanoid.xml │ ├── BodyParts_Mechanoid.xml │ └── BodyParts_Organs.xml │ ├── DamageDefs │ ├── Damages_BuildingModifiers.xml │ └── Damages_LocalInjury.xml │ ├── Drugs │ └── Drugs.xml │ ├── DutyDefs │ └── Duties_Misc.xml │ ├── FactionDefs │ ├── Factions_Hidden.xml │ ├── Factions_Misc.xml │ └── Factions_Player.xml │ ├── HediffDefs │ ├── BloodLoss.xml │ ├── Hediffs_Local_AddedParts.xml │ ├── Hediffs_Local_Injuries.xml │ └── Hediffs_Local_Misc.xml │ ├── InspirationDefs │ └── Inspirations.xml │ ├── JobDefs │ └── Jobs.xml │ ├── Maneuvers │ └── Maneuvers.xml │ ├── MapGeneration │ └── GenSteps.xml │ ├── Misc │ ├── ApparelLayerDefs │ │ └── ApparelLayerDefs.xml │ └── PawnTables │ │ └── PawnTables.xml │ ├── PawnKindDefs_Humanlike │ └── PawnKinds.xml │ ├── RecipeDefs │ └── Recipes_Production.xml │ ├── ResearchProjectDefs │ └── ResearchProjects.xml │ ├── Scenarios │ └── Scenarios.xml │ ├── SiteParts │ └── Outpost.xml │ ├── Skyfallers │ └── SkyfallerBase.xml │ ├── Stats │ └── Stats.xml │ ├── Storyteller │ └── Incidents_Map_Threats.xml │ ├── ThingDefs_Buildings │ ├── Buildings_Base.xml │ ├── Buildings_Security.xml │ └── Buildings_Structure.xml │ ├── ThingDefs_Items │ ├── Items_Books.xml │ ├── Items_General.xml │ ├── Items_Resource_Manufactured.xml │ ├── Items_Resource_Stuff.xml │ └── Items_Resource_Stuff_Leather.xml │ ├── ThingDefs_Misc │ ├── Apparel_Belts.xml │ ├── Apparel_Hats.xml │ ├── Apparel_Various.xml │ ├── Filth_Various.xml │ ├── Things_Special.xml │ ├── Various_Stone.xml │ ├── Weapons_Grenades.xml │ ├── Weapons_Guns.xml │ ├── Weapons_Melee.xml │ └── Weapons_RangedNeolithic.xml │ ├── ThingDefs_Races │ ├── Races_Animal_Arid.xml │ ├── Races_Animal_Base.xml │ ├── Races_Animal_Bears.xml │ ├── Races_Animal_BigCat.xml │ ├── Races_Animal_Birds.xml │ ├── Races_Animal_Farm.xml │ ├── Races_Animal_Giant.xml │ ├── Races_Animal_Hares.xml │ ├── Races_Animal_Insect.xml │ ├── Races_Animal_Pet.xml │ ├── Races_Animal_Rodentlike.xml │ ├── Races_Animal_Temperate.xml │ ├── Races_Animal_Tropical.xml │ ├── Races_Animal_WildCanines.xml │ ├── Races_Humanlike.xml │ └── Races_Mechanoid.xml │ ├── ThingSetMakerDefs │ └── ThingSetMakers_Reward.xml │ ├── ThinkTreeDefs │ ├── Humanlike.xml │ └── SubTrees_Misc.xml │ ├── ToolCapacityDefs │ └── ToolCapacityDefs.xml │ ├── TraderKindDefs │ └── TraderKinds.xml │ ├── TraitDefs │ ├── Traits_Singular.xml │ └── Traits_Spectrum.xml │ ├── WorkGiverDefs │ └── WorkGivers.xml │ └── WorldObjects │ └── WorldObjects.xml ├── README.md ├── Reference.py ├── Royalty ├── Defs │ ├── ThingDefs_Buildings │ │ ├── Buildings_Mech_Spawners.xml │ │ └── Weapons_Turrets.xml │ └── TipSetDefs │ │ └── Tips.xml └── Patches │ ├── AbilityDefs │ └── Abilities_Royalty.xml │ ├── BackstoryDefs │ └── Patch_Backstories.xml │ ├── FactionDefs │ └── Factions_Empire.xml │ ├── HeDiffDefs │ └── Hediffs_Implants.xml │ ├── IncidentDefs │ └── Incidents_Map_Misc.xml │ ├── PawnKindDefs_Royalty │ └── PawnKinds_Royalty.xml │ ├── ThingDefs_Buildings │ └── Buildings_Mechanoid.xml │ ├── ThingDefs_Misc │ ├── Apparel_Royalty.xml │ ├── Apparel_RoyaltyArmor.xml │ ├── Apparel_RoyaltyHeadgear.xml │ ├── Apparel_RoyaltyPacks.xml │ ├── Weapons_RoyaltyBladelinkMelee.xml │ └── Weapons_RoyaltyMelee.xml │ └── TraderKindDefs │ └── TraderKinds_Royalty.xml ├── Sounds ├── AmmoContainer │ └── AmmoContainerAmbient.ogg ├── Bipods │ └── Bipods_deploy.wav ├── Impact │ ├── Brass │ │ ├── brassimpact_1a.wav │ │ ├── brassimpact_1b.wav │ │ ├── brassimpact_1c.wav │ │ ├── brassimpact_1d.wav │ │ └── brassimpact_1e.wav │ └── ShotgunShell │ │ └── shellimpact.wav ├── RocketLauncher │ └── RL_PreImpact.wav ├── Rocketloops │ ├── rcktlpDoomsday.wav │ └── rcktlpNormalTiny.wav ├── Shot │ ├── Shot_AssaultRifleSlow.ogg │ ├── Shot_BattleRifle.ogg │ ├── Shot_Crossbow.ogg │ └── Shot_Musket.ogg └── Turrets │ ├── 120mm.ogg │ ├── AGS.ogg │ ├── Explosion.ogg │ ├── KPVT.ogg │ ├── M240.ogg │ ├── M2Browning_Shot.ogg │ └── dshk.ogg ├── Source ├── BetterTurretsCompat │ ├── BetterTurretsCompat.csproj │ └── BetterTurretsCompat │ │ ├── BetterTurretsCompat.cs │ │ └── BetterTurrets_CE_TurretWeaponBase.cs ├── CombatExtended.sln ├── CombatExtended │ ├── AI │ │ ├── CombatRole.cs │ │ ├── CombatRoleUtility.cs │ │ ├── Defs │ │ │ └── RaidGoalDef.cs │ │ ├── FactionBrain │ │ │ ├── FactionBrain.cs │ │ │ └── FactionBrainManager.cs │ │ ├── Objectives │ │ │ ├── RaidGoalFinder.cs │ │ │ ├── RaidGoalFinder_Targets.cs │ │ │ └── SquadObjective.cs │ │ ├── PathFinding │ │ │ ├── SquadPath.cs │ │ │ ├── SquadPathBrainPlus.cs │ │ │ ├── SquadPathBrainPlus.cs~ │ │ │ ├── SquadPathKMBetterPQueue.cs │ │ │ ├── SquadPathMover.cs │ │ │ ├── SquadPathMover.cs~ │ │ │ ├── SquadPathRegionAStar.cs │ │ │ ├── SquadPathRegionAStar.cs~ │ │ │ └── SquadPather.cs │ │ └── SquadBrain │ │ │ ├── SquadBrain.cs │ │ │ ├── SquadBrain.cs~ │ │ │ ├── SquadBrainManager.cs │ │ │ ├── SquadUtils.cs │ │ │ └── SquadUtils.cs~ │ ├── CombatExtended.csproj │ ├── CombatExtended.csproj.DotSettings │ ├── CombatExtended │ │ ├── AI │ │ │ ├── AI_Utility.cs │ │ │ ├── Comps │ │ │ │ ├── Base │ │ │ │ │ └── ICompTactics.cs │ │ │ │ ├── CompFireSelection.cs │ │ │ │ ├── CompGasMask.cs │ │ │ │ ├── CompOpportunisticSwitch.cs │ │ │ │ ├── CompReload.cs │ │ │ │ ├── CompTend.cs │ │ │ │ └── CompUrgentWeaponPickup.cs │ │ │ ├── Jobs │ │ │ │ ├── Base │ │ │ │ │ └── IJobDriver_Tactical.cs │ │ │ │ └── JobDriver_AttackOpportunistic.cs │ │ │ ├── TacticalRequest.cs │ │ │ ├── TacticalRequestType.cs │ │ │ └── Toils │ │ │ │ └── Toils_CombatCE.cs │ │ ├── Alerts │ │ │ ├── Alert_ColonistHasShieldAndTwoHandedWeapon.cs │ │ │ └── Alert_FactionInfluenced.cs │ │ ├── AmmoGeneralizer.cs │ │ ├── AmmoInjector.cs │ │ ├── AmmoUtility.cs │ │ ├── ApparelAutopatcherUtil.cs │ │ ├── ArmorUtilityCE.cs │ │ ├── BoundsInjector.cs │ │ ├── Building_AmmoContainerCE │ │ │ ├── AutoLoaderTracker.cs │ │ │ ├── Building_AutoloaderCE.cs │ │ │ ├── JobDriver_ReloadAutoLoader.cs │ │ │ ├── ModExtension_AutoLoaderGraphics.cs │ │ │ └── WorkGiver_ReloadAutoLoader.cs │ │ ├── CE_DebugTooltip.cs │ │ ├── CE_DebugTooltipHelper.cs │ │ ├── CE_DebugTooltipType.cs │ │ ├── CE_DebugUtility.cs │ │ ├── CE_MeshMaker.cs │ │ ├── CE_Scriber.cs │ │ ├── CE_ThingSetMakerUtility.cs │ │ ├── CE_Utility.cs │ │ ├── CacheClearComponent.cs │ │ ├── CollisionVertical.cs │ │ ├── Comps │ │ │ ├── AbilityComps │ │ │ │ ├── CompAbilityEffect_ExplosionCE.cs │ │ │ │ └── CompProperties_AbilityExplosionCE.cs │ │ │ ├── BipodComp.cs │ │ │ ├── CompAmmoExploder.cs │ │ │ ├── CompAmmoGiver.cs │ │ │ ├── CompAmmoResupplyOnWakeup.cs │ │ │ ├── CompAmmoUser.cs │ │ │ ├── CompAmmosetSwitcher.cs │ │ │ ├── CompArmorDurability.cs │ │ │ ├── CompCIWSImpactHandler.cs │ │ │ ├── CompCIWSImpactHandler_Projectile.cs │ │ │ ├── CompCIWSImpactHandler_Skyfaller.cs │ │ │ ├── CompCIWSTarget.cs │ │ │ ├── CompCIWSTarget_Skyfaller.cs │ │ │ ├── CompCharges.cs │ │ │ ├── CompExplosiveCE.cs │ │ │ ├── CompFireArc.cs │ │ │ ├── CompFireModes.cs │ │ │ ├── CompFragments.cs │ │ │ ├── CompInventory.cs │ │ │ ├── CompMeleeTargettingGizmo.cs │ │ │ ├── CompProperties_AmmoResupplyOnWakeup.cs │ │ │ ├── CompProperties_AmmoUser.cs │ │ │ ├── CompProperties_BipodComp.cs │ │ │ ├── CompProperties_Charges.cs │ │ │ ├── CompProperties_ExplosiveCE.cs │ │ │ ├── CompProperties_FireModes.cs │ │ │ ├── CompProperties_Fragments.cs │ │ │ ├── CompProperties_Inventory.cs │ │ │ ├── CompProperties_SquadBrain.cs │ │ │ ├── CompProperties_Suppressable.cs │ │ │ ├── CompProperties_TacticalManager.cs │ │ │ ├── CompSquadBrain.cs │ │ │ ├── CompSuppressable.cs │ │ │ ├── CompTacticalManager.cs │ │ │ ├── CompThrownFleckEmitterSmooth.cs │ │ │ ├── CompVerbDisabler.cs │ │ │ ├── Comp_BurnDamageCalc.cs │ │ │ ├── HediffCompProperties_Beanbag.cs │ │ │ ├── HediffCompProperties_FleshOnly.cs │ │ │ ├── HediffCompProperties_InfecterCE.cs │ │ │ ├── HediffCompProperties_Prometheum.cs │ │ │ ├── HediffCompProperties_Stabilize.cs │ │ │ ├── HediffCompProperties_Venom.cs │ │ │ ├── HediffComp_Beanbag.cs │ │ │ ├── HediffComp_FleshOnly.cs │ │ │ ├── HediffComp_InfecterCE.cs │ │ │ ├── HediffComp_Prometheum.cs │ │ │ ├── HediffComp_Stabilize.cs │ │ │ └── HediffComp_Venom.cs │ │ ├── Comps_CCL │ │ │ ├── CompMilkableRenameable.cs │ │ │ ├── CompPawnGizmo.cs │ │ │ ├── CompProperties_MilkableRenameable.cs │ │ │ ├── CompProperties_ShearableRenameable.cs │ │ │ ├── CompRangedGizmoGiver.cs │ │ │ ├── CompShearableRenameable.cs │ │ │ └── Def_Extensions.cs │ │ ├── DangerTracker.cs │ │ ├── DefOfs │ │ │ ├── CE_AmmoCategoryDefOf.cs │ │ │ ├── CE_AmmoSetDefOf.cs │ │ │ ├── CE_ApparelLayerDefOf.cs │ │ │ ├── CE_BodyPartDefOf.cs │ │ │ ├── CE_BodyPartGroupDefOf.cs │ │ │ ├── CE_BodyPartTagDefOf.cs │ │ │ ├── CE_BodyShapeDefOf.cs │ │ │ ├── CE_ConceptDefOf.cs │ │ │ ├── CE_DamageArmorCategoryDefOf.cs │ │ │ ├── CE_DamageDefOf.cs │ │ │ ├── CE_FleckDefOf.cs │ │ │ ├── CE_HediffDefOf.cs │ │ │ ├── CE_JobDefOf.cs │ │ │ ├── CE_LetterDefOf.cs │ │ │ ├── CE_MentalStateDefOf.cs │ │ │ ├── CE_RulePackDefOf.cs │ │ │ ├── CE_ShellingResponseDefOf.cs │ │ │ ├── CE_SoundDefOf.cs │ │ │ ├── CE_StatDefOf.cs │ │ │ ├── CE_ThingDefOf.cs │ │ │ ├── CE_TraitDefOf.cs │ │ │ └── CE_WorldObjectDefOf.cs │ │ ├── DefUtility.cs │ │ ├── Defs │ │ │ ├── AmmoCategoryDef.cs │ │ │ ├── AmmoDef.cs │ │ │ ├── AmmoLink.cs │ │ │ ├── AmmoSetDef.cs │ │ │ ├── ApparelDefExtension.cs │ │ │ ├── ApparelHediffExtension.cs │ │ │ ├── ApparelLayerExtension.cs │ │ │ ├── ApparelModBlacklist.cs │ │ │ ├── ApparelPartialStat.cs │ │ │ ├── ApparelPatcherPresetDef.cs │ │ │ ├── ApperalRenderingExtension.cs │ │ │ ├── AttachmentDef.cs │ │ │ ├── AttachmentLink.cs │ │ │ ├── AttachmentOption.cs │ │ │ ├── BipodCategoryDef.cs │ │ │ ├── BodyPartExploderExt.cs │ │ │ ├── BodyShapeDef.cs │ │ │ ├── CustomWeaponTraitDef.cs │ │ │ ├── DamageDefExtensionCE.cs │ │ │ ├── FactionDefExtensionCE.cs │ │ │ ├── FireSpreadExtension.cs │ │ │ ├── GasPropertiesCE.cs │ │ │ ├── GenericLabelExtension.cs │ │ │ ├── GunDrawExtension.cs │ │ │ ├── GunPatcherPreset │ │ │ │ ├── CaliberFloatRange.cs │ │ │ │ ├── GunPatcherPresetDef.cs │ │ │ │ └── LabelGun.cs │ │ │ ├── JobDefBipodCancelExtension.cs │ │ │ ├── JobDefExtensionCE.cs │ │ │ ├── LoadoutGenericDef.cs │ │ │ ├── LoadoutPropertiesExtension.cs │ │ │ ├── MedicineFilthExtension.cs │ │ │ ├── ModExtensionMeleeToolPenetration.cs │ │ │ ├── MultiBarrelExtension.cs │ │ │ ├── NonSnapTurretExtension.cs │ │ │ ├── PartialArmorExt.cs │ │ │ ├── QualityConditionalModExt.cs │ │ │ ├── RacePropertiesExtensionCE.cs │ │ │ ├── ShellingResponseDef.cs │ │ │ ├── ShieldDefExtension.cs │ │ │ ├── SidearmOption.cs │ │ │ ├── StuffToughnessMultiplierExtensionCE.cs │ │ │ ├── ThingDefExtensionCE.cs │ │ │ ├── VisibleAccessoryDefExtension.cs │ │ │ ├── WeaponPlatformDef.cs │ │ │ ├── WeightedAmmoCategory.cs │ │ │ └── WorldObjectHealthExtension.cs │ │ ├── Dialog_ManageCIWSTargets.cs │ │ ├── Enums │ │ │ ├── AimMode.cs │ │ │ ├── FireMode.cs │ │ │ ├── LoadoutCountType.cs │ │ │ ├── RecoilPattern.cs │ │ │ └── TargettingMode.cs │ │ ├── EquipmentStatKeys.cs │ │ ├── ExplosionCE.cs │ │ ├── FactionHosilityUtility.cs │ │ ├── FactionStrengthTracker.cs │ │ ├── FleckMakerCE.cs │ │ ├── FloatMenus │ │ │ ├── FloatMenuOptionProvider_PickUp.cs │ │ │ └── FloatMenuOptionProvider_Stabilize.cs │ │ ├── GUI │ │ │ ├── Fragments │ │ │ │ └── Fragment_AttachmentEditor.cs │ │ │ ├── Tabs │ │ │ │ └── ITab_AttachmentView.cs │ │ │ └── Windows │ │ │ │ ├── Window_AttachmentsDebugger.cs │ │ │ │ ├── Window_AttachmentsEditor.cs │ │ │ │ └── Window_GiveAmmoAmountSlider.cs │ │ ├── GameSetupSteps │ │ │ └── GameSetupStep_ExplosionCurve.cs │ │ ├── GenExplosionCE.cs │ │ ├── GenSightCE.cs │ │ ├── GenStep │ │ │ └── GenStep_Attrition.cs │ │ ├── Gizmos │ │ │ ├── Command_ArtilleryTarget.cs │ │ │ ├── Command_Reload.cs │ │ │ ├── Command_ReloadArmor.cs │ │ │ └── GizmoAmmoStatus.cs │ │ ├── Graphic_Smoke.cs │ │ ├── Graphic_StackCountRanged.cs │ │ ├── GunPatcherUtil.cs │ │ ├── ITargetSearcher.cs │ │ ├── IVerbDisableable.cs │ │ ├── Jobs │ │ │ ├── ExternalPawnDrafter.cs │ │ │ ├── JobCE.cs │ │ │ ├── JobDriver_EquipFromInventory.cs │ │ │ ├── JobDriver_GiveAmmo.cs │ │ │ ├── JobDriver_HunkerDown.cs │ │ │ ├── JobDriver_Hunt.cs │ │ │ ├── JobDriver_ModifyWeapon.cs │ │ │ ├── JobDriver_Reload.cs │ │ │ ├── JobDriver_ReloadTurret.cs │ │ │ ├── JobDriver_SetUpBipod.cs │ │ │ ├── JobDriver_Stabilize.cs │ │ │ ├── JobDriver_TakeFromOther.cs │ │ │ ├── JobDriver_UnloadYourInventory.cs │ │ │ ├── JobDriver_WaitKnockdown.cs │ │ │ ├── JobGiver_CheckReload.cs │ │ │ ├── JobGiver_DefenderReloadTurret.cs │ │ │ ├── JobGiver_HunkerDown.cs │ │ │ ├── JobGiver_ManTurretsNearPointCE.cs │ │ │ ├── JobGiver_ManTurretsNearSelfCE.cs │ │ │ ├── JobGiver_ModifyCarriedWeapon.cs │ │ │ ├── JobGiver_ReactToSuppression.cs │ │ │ ├── JobGiver_SquadDuty.cs │ │ │ ├── JobGiver_TakeAndEquip.cs │ │ │ ├── JobGiver_UpdateLoadout.cs │ │ │ ├── Utils │ │ │ │ └── JobGiverUtils_Reload.cs │ │ │ ├── WorkGiver_HunterHuntCE.cs │ │ │ ├── WorkGiver_ModifyWeapon.cs │ │ │ └── WorkGiver_ReloadTurret.cs │ │ ├── Lasers │ │ │ ├── Building_LaserGunCE.cs │ │ │ ├── IBeamColorThing.cs │ │ │ ├── IDrawnWeaponWithRotation.cs │ │ │ ├── LaserBeamCE.cs │ │ │ ├── LaserBeamDecoration.cs │ │ │ ├── LaserBeamDefCE.cs │ │ │ ├── LaserBeamGraphicCE.cs │ │ │ ├── LaserColor.cs │ │ │ ├── LaserGun.cs │ │ │ ├── LaserGunDef.cs │ │ │ ├── LightningLaserBoltMeshMaker.cs │ │ │ ├── LightningLaserBoltMeshPool.cs │ │ │ ├── MeshMakerLaser.cs │ │ │ ├── MoteLaserDectorationCE.cs │ │ │ ├── SpinningLaserGun.cs │ │ │ ├── SpinningLaserGunBase.cs │ │ │ ├── SpinningLaserGunDef.cs │ │ │ ├── SpinningLaserGunTurret.cs │ │ │ └── ThingExtensions.cs │ │ ├── LetterTracker.cs │ │ ├── LightingTracker.cs │ │ ├── Loadouts │ │ │ ├── Dialog_ManageLoadouts.cs │ │ │ ├── FileListDialog.cs │ │ │ ├── GameComp_LoadoutManager.cs │ │ │ ├── HoldRecord.cs │ │ │ ├── HoldTrackerAssignment.cs │ │ │ ├── ITabInjector.cs │ │ │ ├── ITab_Inventory.cs │ │ │ ├── LoadLoadoutDialog.cs │ │ │ ├── Loadout.cs │ │ │ ├── LoadoutAssignment.cs │ │ │ ├── LoadoutConfig.cs │ │ │ ├── LoadoutSlot.cs │ │ │ ├── MainTabWindow_OutfitsAndLoadouts.cs │ │ │ ├── PawnColumnWorker_Loadout.cs │ │ │ ├── PawnColumnWorker_MassBulkBars.cs │ │ │ ├── SaveLoadoutDialog.cs │ │ │ ├── Tracker.cs │ │ │ ├── Utility_HoldTracker.cs │ │ │ └── Utility_Loadouts.cs │ │ ├── LoggerUtils │ │ │ └── CELogger.cs │ │ ├── MassBulkUtility.cs │ │ ├── MentalState_CombatFrenzy.cs │ │ ├── MentalState_ShellShock.cs │ │ ├── ModSettings │ │ │ ├── Controller.cs │ │ │ └── Settings.cs │ │ ├── MoteMakerCE.cs │ │ ├── MoteThrownCE.cs │ │ ├── ParryTracker.cs │ │ ├── PatchOperationFindMod.cs │ │ ├── PatchOperationMakeGunCECompatible.cs │ │ ├── PatchOperation_ConditionalGeneric.cs │ │ ├── Pickup_Utility.cs │ │ ├── Projectiles │ │ │ ├── ArtilleryMarker.cs │ │ │ ├── BulletCE.cs │ │ │ ├── ProjectileCE.cs │ │ │ ├── ProjectileCE_BunkerBuster.cs │ │ │ ├── ProjectileCE_Bursting.cs │ │ │ ├── ProjectileCE_CIWS.cs │ │ │ ├── ProjectileCE_Explosive.cs │ │ │ ├── ProjectileCE_Explosive_RL.cs │ │ │ ├── ProjectileCE_Flare.cs │ │ │ ├── ProjectileCE_HeightFuse.cs │ │ │ ├── ProjectileCE_SpawnsThing.cs │ │ │ ├── ProjectilePropertiesCE.cs │ │ │ ├── Projectile_FireTrail.cs │ │ │ └── TrajectoryWorkers │ │ │ │ ├── BallisticsTrajectoryWorker.cs │ │ │ │ ├── BaseTrajectoryWorker.cs │ │ │ │ ├── LegacyTrajectoryWorker.cs │ │ │ │ ├── LerpedTrajectoryWorker.cs │ │ │ │ ├── LerpedTrajectoryWorker_ExactPosDrawing.cs │ │ │ │ └── SmartRocketTrajectoryWorker.cs │ │ ├── Render │ │ │ ├── PawnRenderNodeWorker_Backpack.cs │ │ │ ├── PawnRenderNodeWorker_Drafted.cs │ │ │ ├── PawnRenderNodeWorker_Webbing.cs │ │ │ └── PawnRenderNode_Apparel.cs │ │ ├── SecondaryDamage.cs │ │ ├── ShadowCastingUtility.Extras.cs │ │ ├── ShadowCastingUtility.cs │ │ ├── ShadowGrid.cs │ │ ├── ShellingUtility.cs │ │ ├── ShiftVecReport.cs │ │ ├── SiegeUtility.cs │ │ ├── Skyfaller_Utility.cs │ │ ├── Stabilization_Utility.cs │ │ ├── StatParts │ │ │ ├── Base │ │ │ │ └── StatPart_StatSelect.cs │ │ │ ├── StatPart_Attachments.cs │ │ │ ├── StatPart_Bipod.cs │ │ │ ├── StatPart_Bulk.cs │ │ │ ├── StatPart_ExtendedMagazine.cs │ │ │ ├── StatPart_LoadedAmmo.cs │ │ │ ├── StatPart_NaturalArmorDurability.cs │ │ │ ├── StatPart_NonHumanParry.cs │ │ │ ├── StatPart_QualityConditional.cs │ │ │ ├── StatPart_StatMaxima.cs │ │ │ └── StatPart_StatMinima.cs │ │ ├── StatWorkers │ │ │ ├── StatWorker_AmmoCaliber.cs │ │ │ ├── StatWorker_AmmoConsumedPerShotCount.cs │ │ │ ├── StatWorker_ArmorCoverage.cs │ │ │ ├── StatWorker_ArmorPartial.cs │ │ │ ├── StatWorker_BipodDisplay.cs │ │ │ ├── StatWorker_BodyPartDensity.cs │ │ │ ├── StatWorker_BodyPartKPA.cs │ │ │ ├── StatWorker_BodyPartRHA.cs │ │ │ ├── StatWorker_Caliber.cs │ │ │ ├── StatWorker_Flammability.cs │ │ │ ├── StatWorker_LongRange.cs │ │ │ ├── StatWorker_Magazine.cs │ │ │ ├── StatWorker_MeleeArmorPenetration.cs │ │ │ ├── StatWorker_MeleeDamage.cs │ │ │ ├── StatWorker_MeleeDamageAverage.cs │ │ │ ├── StatWorker_MeleeDamageBase.cs │ │ │ ├── StatWorker_MeleeStats.cs │ │ │ ├── StatWorker_MoveSpeed.cs │ │ │ ├── StatWorker_MuzzleFlash.cs │ │ │ ├── StatWorker_OneHandedness.cs │ │ │ ├── StatWorker_TicksBetweenBurstShots.cs │ │ │ ├── StatWorker_UBGLStats.cs │ │ │ ├── StatWorker_WeaponToughness.cs │ │ │ └── StatWorker_WorkSpeedGlobal.cs │ │ ├── SuppressionUtility.cs │ │ ├── TauntThrower.cs │ │ ├── ThingSetMaker_CountEnabledAmmoOnly.cs │ │ ├── Things │ │ │ ├── AmmoThing.cs │ │ │ ├── Apparel_Shield.cs │ │ │ ├── Apparel_VisibleAccessory.cs │ │ │ ├── Building_CIWS_CE.cs │ │ │ ├── Building_TurretGunCE.cs │ │ │ ├── Building_Turret_MultiVerbs.cs │ │ │ ├── Flare.cs │ │ │ ├── Fleck_Casing.cs │ │ │ ├── IncendiaryFuel.cs │ │ │ ├── Plant_Blazebulb.cs │ │ │ ├── Smoke.cs │ │ │ └── WeaponPlatform.cs │ │ ├── ThinkNodes │ │ │ ├── ThinkNode_ConditionalHasLoadout.cs │ │ │ ├── ThinkNode_ConditionalHasSquad.cs │ │ │ ├── ThinkNode_ConditionalHunkering.cs │ │ │ ├── ThinkNode_ConditionalNoJob.cs │ │ │ └── ThinkNode_ConditionalSuppressed.cs │ │ ├── ThoughtWorkers │ │ │ └── ThoughtWorker_Suppressed.cs │ │ ├── ToolCE.cs │ │ ├── TurretTracker.cs │ │ ├── Verbs │ │ │ ├── VerbCIWS.cs │ │ │ ├── VerbCIWSProjectile.cs │ │ │ ├── VerbCIWSSkyfaller.cs │ │ │ ├── VerbCIWS_CompSkyfaller.cs │ │ │ ├── VerbPropertiesCE.cs │ │ │ ├── VerbShootCE_AdvancedUBGL │ │ │ ├── Verb_AbilityShootCE.cs │ │ │ ├── Verb_LaunchProjectileCE.cs │ │ │ ├── Verb_LaunchProjectileChangeAble.cs │ │ │ ├── Verb_LaunchProjectileStaticCE.cs │ │ │ ├── Verb_MarkForArtilleryCE.cs │ │ │ ├── Verb_MeleeAttackCE.cs │ │ │ ├── Verb_ShootCE.cs │ │ │ ├── Verb_ShootCEOneUse.cs │ │ │ ├── Verb_ShootCEOneUseStatic.cs │ │ │ ├── Verb_ShootFlareCE.cs │ │ │ ├── Verb_ShootMortarCE.cs │ │ │ └── Verb_ThrowGrenade.cs │ │ ├── WeatherTracker.cs │ │ ├── WorldObjects │ │ │ ├── HealthComp.cs │ │ │ ├── HostilityComp.cs │ │ │ ├── HostilityRaider.cs │ │ │ ├── HostilitySheller.cs │ │ │ ├── IWorldCompCE.cs │ │ │ ├── TravelingShell.cs │ │ │ ├── TravelingShellProperties.cs │ │ │ ├── TravelingThing.cs │ │ │ ├── WorldCompUtility.cs │ │ │ ├── WorldHealthGUIUtility.cs │ │ │ ├── WorldObjectCompProperties_Health.cs │ │ │ ├── WorldObjectCompProperties_Hostility.cs │ │ │ ├── WorldObjectDamageWorker.cs │ │ │ ├── WorldObjectHostilityExtension.cs │ │ │ └── WorldObjectTrackerCE.cs │ │ └── WorldStrengthTracker.cs │ ├── Compatibility │ │ ├── ApparelAutoPatcher.cs │ │ ├── BetterTurrets.cs │ │ ├── Bipod_Injector.cs │ │ ├── BlockerRegistry.cs │ │ ├── EDShields.cs │ │ ├── GunAutoPatcher.cs │ │ ├── IPatch.cs │ │ ├── MiscTurrets.cs │ │ ├── Multiplayer.cs │ │ ├── Patches.cs │ │ ├── PawnKindAutoPatcher.cs │ │ ├── ProjectRimFactory.cs │ │ ├── RaceAutoPatchers │ │ │ ├── RaceAutoPatcher.cs │ │ │ └── RaceUtils.cs │ │ ├── Rimatomics.cs │ │ ├── SOS2.cs │ │ ├── SRTS.cs │ │ ├── Trenches.cs │ │ ├── TurretRegistry.cs │ │ ├── VanillaExpandedFramework.cs │ │ ├── VanillaFurnitureExpandedSecurity.cs │ │ ├── VanillaPsycastExpanded.cs │ │ ├── Vehicles.cs │ │ └── WeaponToughnessAutoPatcher.cs │ ├── Contrib │ │ ├── Collections │ │ │ └── FlagArray.cs │ │ ├── MechTakeAmmoCE │ │ │ ├── AI │ │ │ │ ├── JobDefOf.cs │ │ │ │ ├── JobDriver_TakeAmmo.cs │ │ │ │ ├── JobDriver_UnloadAmmo.cs │ │ │ │ └── Toils_Ammo.cs │ │ │ ├── Core │ │ │ │ ├── AmmoUtility.cs │ │ │ │ ├── CompMechAmmo.cs │ │ │ │ ├── CompProperties_MechAmmo.cs │ │ │ │ └── GameComponent_MechLoadoutDialogManger.cs │ │ │ └── UI │ │ │ │ ├── Dialog_SetMagCount.cs │ │ │ │ ├── Dialog_SetMagCountBatched.cs │ │ │ │ └── Dialog_SetValue.cs │ │ ├── ProjectileImpactFX │ │ │ ├── BarrelOffsetExtension.cs │ │ │ ├── EffectProjectileExtension.cs │ │ │ ├── Harmony │ │ │ │ └── Verb_TryCastNextBurstShot_MuzzlePosition_Transpiler.cs │ │ │ ├── ImpactFleckThrower.cs │ │ │ ├── TrailThrower.cs │ │ │ └── TrailerProjectileExtension.cs │ │ └── RocketGUI │ │ │ ├── GUIUtility.Text.cs │ │ │ ├── GUIUtility.UIState.cs │ │ │ ├── GUIUtility.cs │ │ │ ├── Listings │ │ │ ├── IListing_Custom.cs │ │ │ └── Listing_Collapsible.cs │ │ │ └── RectUtility.cs │ ├── Harmony │ │ ├── Compatibility │ │ │ ├── Harmony_AlienRace.cs │ │ │ ├── Harmony_AlphaGenes.cs │ │ │ ├── Harmony_AlphaMechs.cs │ │ │ ├── Harmony_BBBodySupport.cs │ │ │ ├── Harmony_GraphicApparelDetour.cs │ │ │ ├── Harmony_RunAndGun.cs │ │ │ ├── Harmony_VOID.cs │ │ │ ├── Harmony_VanillaEventExpanded.cs │ │ │ ├── Harmony_VanillaExpandedFramework.cs │ │ │ └── Harmony_WeaponProficiency.cs │ │ ├── Harmony-HediffComp_GetsOld.cs │ │ ├── Harmony-RaidStrategyWorker_ImmediateAttackSappers.cs │ │ ├── HarmonyBase.cs │ │ ├── Harmony_ApparelGraphicRecordGetter.cs │ │ ├── Harmony_ApparelLayerDef.cs │ │ ├── Harmony_ApparelTracker.cs │ │ ├── Harmony_AttackTargetFinder.cs │ │ ├── Harmony_AvoidGrid.cs │ │ ├── Harmony_BackCompatibility_1_5.cs │ │ ├── Harmony_Bombardment.cs │ │ ├── Harmony_Building_OutfitStand.cs │ │ ├── Harmony_Command.cs │ │ ├── Harmony_CompAbilityEffect_LaunchProjectile.cs │ │ ├── Harmony_CompDHunterDrone.cs │ │ ├── Harmony_CompExplosive.cs │ │ ├── Harmony_CompProjectileInterceptor_PostPreApplyDamage.cs │ │ ├── Harmony_CompReloadable.cs │ │ ├── Harmony_CompShield.cs │ │ ├── Harmony_CompUniqueWeapon.cs │ │ ├── Harmony_CompressibilityDecider.cs │ │ ├── Harmony_DamageWorker.cs │ │ ├── Harmony_DamageWorker_AddInjury.cs │ │ ├── Harmony_DangerWatcher.cs │ │ ├── Harmony_Designator_Dropdown.cs │ │ ├── Harmony_ExpandableWorldObjectsUtility.cs │ │ ├── Harmony_ExplosionCE.cs │ │ ├── Harmony_Faction.cs │ │ ├── Harmony_Fire.cs │ │ ├── Harmony_FireUtility.cs │ │ ├── Harmony_FireWatcher.cs │ │ ├── Harmony_FloatMenuMakerMap.cs │ │ ├── Harmony_Game.cs │ │ ├── Harmony_GameCondition_ToxicFallout.cs │ │ ├── Harmony_GasUtility_PawnGasEffectsTickInterval.cs │ │ ├── Harmony_GenRadial.cs │ │ ├── Harmony_GlobalControls.cs │ │ ├── Harmony_HediffComp_TendDuration.cs │ │ ├── Harmony_HediffTendPriority.cs │ │ ├── Harmony_HediffWithComps.cs │ │ ├── Harmony_Hediff_Injury.cs │ │ ├── Harmony_Hediff_MissingPart.cs │ │ ├── Harmony_IncidentWorker_RaidEnemy.cs │ │ ├── Harmony_Job.cs │ │ ├── Harmony_JobGiver_AIBreaching.cs │ │ ├── Harmony_JobGiver_ConfigurableHostilityResponse.cs │ │ ├── Harmony_JobGiver_DropUnusedInventory.cs │ │ ├── Harmony_JobGiver_OptimizeApparel.cs │ │ ├── Harmony_JobGiver_PickUpOpportunisticWeapon.cs │ │ ├── Harmony_JobGiver_Reload.cs │ │ ├── Harmony_JobGiver_UnloadYourInventory.cs │ │ ├── Harmony_ListerThings.cs │ │ ├── Harmony_LordToil_Siege.cs │ │ ├── Harmony_MassUtility.cs │ │ ├── Harmony_MechClusterGenerator.cs │ │ ├── Harmony_MechanitorTracker_CanCommandTo.cs │ │ ├── Harmony_MechanitorTracker_DrawCommandRadius.cs │ │ ├── Harmony_NotifyClamorImpact.cs │ │ ├── Harmony_PathFinder.cs │ │ ├── Harmony_PawnCapacityUtility.cs │ │ ├── Harmony_PawnColumnWorkers.cs │ │ ├── Harmony_PawnGenerator_GenerateGearFor.cs │ │ ├── Harmony_PawnGraphicSet.cs │ │ ├── Harmony_PawnRenderer.cs │ │ ├── Harmony_PawnRenderer_Draw_EquipmentAiming_GunDrawing_Patch.cs │ │ ├── Harmony_PawnWeaponGenerator.cs │ │ ├── Harmony_Pawn_DraftController.cs │ │ ├── Harmony_Pawn_EquipmentTracker.cs │ │ ├── Harmony_Pawn_HealthTracker.cs │ │ ├── Harmony_PickUpItemProvider.cs │ │ ├── Harmony_PlaceWorker_ShowTurretRadius.cs │ │ ├── Harmony_QuestNodeEqualUtility.cs │ │ ├── Harmony_QuestPart_Notify_PlayerRaidedSomeone.cs │ │ ├── Harmony_ResearchPrerequisitesUtility.cs │ │ ├── Harmony_ResultCatcher.cs │ │ ├── Harmony_SappersUtility.cs │ │ ├── Harmony_SmokepopBelt.cs │ │ ├── Harmony_StartingPawnUtility.cs │ │ ├── Harmony_StunHandler.cs │ │ ├── Harmony_Thing.cs │ │ ├── Harmony_ThingDef.cs │ │ ├── Harmony_ThingDefGenerator_Meat.cs │ │ ├── Harmony_ThingOwner.cs │ │ ├── Harmony_TooltipUtility.cs │ │ ├── Harmony_TradeDeal.cs │ │ ├── Harmony_TradeUtility.cs │ │ ├── Harmony_TurretGunUtility.cs │ │ ├── Harmony_TurretTop_DrawTurret_LaserTurret_Patch.cs │ │ ├── Harmony_Verb.cs │ │ ├── Harmony_VerbProperties.cs │ │ ├── Harmony_VerbTracker.cs │ │ ├── Harmony_VerbUtility.cs │ │ ├── Harmony_Verb_BeatFire.cs │ │ ├── Harmony_Verb_LaunchProjectileCE.cs │ │ ├── Harmony_Verb_TryStartCastOn.cs │ │ ├── Harmony_WeatherDecider.cs │ │ ├── Harmony_Widgets.cs │ │ ├── Harmony_WorkGiver_HunterHunt.cs │ │ ├── Harmony_WorkGiver_InteractAnimal.cs │ │ ├── Harmony_WorldInterface.cs │ │ └── Harmony_WorldObject.cs │ ├── Loader │ │ ├── IModPart.cs │ │ └── ISettingsCE.cs │ ├── NonSnapAttackTargetFinder.cs │ ├── Projectile_FireTrail.cs │ ├── Utilities │ │ ├── CustomWidgets.cs │ │ ├── GenClosest.cs │ │ ├── Tracking │ │ │ ├── ThingsTracker.cs │ │ │ ├── ThingsTrackingModel.cs │ │ │ └── TrackedThingsRequestCategory.cs │ │ └── TranspilerCE.cs │ ├── Version.cs │ └── shields.md ├── CombatExtendedLoader.sln ├── Loader │ ├── Loader.csproj │ └── Loader │ │ └── Loader.cs ├── MiscTurretsCompat │ ├── MiscTurretsCompat.csproj │ └── MiscTurretsCompat │ │ ├── AmmoDef_ThingSpawner.cs │ │ ├── BulletCE_ThingSpawner.cs │ │ ├── MiscTurretsCompat.cs │ │ └── MiscTurrets_CE_TurretWeaponBase.cs ├── MultiplayerCompat │ ├── MultiplayerCompat.csproj │ └── MultiplayerCompat │ │ └── MultiplayerCompat.cs ├── PsyblastersCompat │ ├── PsyBlastersCompat │ │ ├── PsychicBlasterBulletCE.cs │ │ ├── PsychicBlasterRocketCE.cs │ │ └── PsychicProjectileExtension.cs │ └── PsyblastersCompat.csproj ├── SOS2Compat │ ├── SOS2Compat.csproj │ └── SOS2Compat │ │ ├── Building_ShipTurretCE.cs │ │ ├── Command_TargetShipCombatCE.cs │ │ ├── Harmony │ │ ├── Harmony_Compatibility_SaveOurShip.cs │ │ └── Harmony_TurretConversion.cs │ │ ├── SOS2Compat.cs │ │ ├── ShipProjectileCE.cs │ │ ├── ShipTurretWrapperCE.cs │ │ └── Verb_ShootShipCE.cs ├── SRTSCompat │ ├── SRTSCompat.csproj │ └── SRTSCompat │ │ ├── Harmony │ │ ├── Harmony_BomberSkyfaller.cs │ │ ├── Harmony_DialogSettings.cs │ │ └── Harmony_FallingBomb.cs │ │ └── SRTSCompat.cs ├── VehiclesCompat │ ├── VehiclesCompat.csproj │ └── VehiclesCompat │ │ ├── VehicleArmorPatch.cs │ │ ├── VehicleSettings.cs │ │ └── VehiclesCompat.cs └── packages │ ├── BetterTurrets-reference.dll │ ├── CombatExtended.dll │ ├── ED-Shields-Reference.dll │ ├── ProjectRimFactory-Reference.dll │ ├── Rimatomics-reference.dll │ ├── SRTS-reference.dll │ ├── ShipsHaveInsides-reference.dll │ ├── SmashTools-reference.dll │ ├── VEF-reference.dll │ ├── VFESecurity-reference.dll │ ├── VanillaPsycastsExpanded-reference.dll │ ├── Vehicles-reference.dll │ └── WeaponBase-reference.dll ├── SupportedThirdPartyMods.md ├── Textures ├── Things │ ├── Ammo │ │ ├── Cannon │ │ │ ├── 15cmNbW │ │ │ │ ├── 15cm_NbW_a.png │ │ │ │ └── 15cm_NbW_b.png │ │ │ ├── BlackPowder │ │ │ │ ├── Bursting │ │ │ │ │ ├── Bursting_a.png │ │ │ │ │ └── Bursting_b.png │ │ │ │ ├── Canister │ │ │ │ │ ├── Canister_a.png │ │ │ │ │ └── Canister_b.png │ │ │ │ ├── Grapeshot │ │ │ │ │ ├── Grapeshot_a.png │ │ │ │ │ └── Grapeshot_b.png │ │ │ │ ├── Incendiary │ │ │ │ │ ├── Incendiary_a.png │ │ │ │ │ └── Incendiary_b.png │ │ │ │ └── Roundshot │ │ │ │ │ ├── Roundshot_a.png │ │ │ │ │ └── Roundshot_b.png │ │ │ ├── EMP.png │ │ │ ├── HE.png │ │ │ ├── HEAT.png │ │ │ ├── Howitzer │ │ │ │ ├── AB │ │ │ │ │ ├── AB_a.png │ │ │ │ │ ├── AB_b.png │ │ │ │ │ └── AB_c.png │ │ │ │ ├── ANTI │ │ │ │ │ ├── ANTI_a.png │ │ │ │ │ ├── ANTI_b.png │ │ │ │ │ └── ANTI_c.png │ │ │ │ ├── EMP │ │ │ │ │ ├── EMP_a.png │ │ │ │ │ ├── EMP_b.png │ │ │ │ │ └── EMP_c.png │ │ │ │ ├── HE-BB │ │ │ │ │ ├── HE-BB_a.png │ │ │ │ │ ├── HE-BB_b.png │ │ │ │ │ └── HE-BB_c.png │ │ │ │ ├── HE │ │ │ │ │ ├── HE_a.png │ │ │ │ │ ├── HE_b.png │ │ │ │ │ └── HE_c.png │ │ │ │ ├── ILLUM │ │ │ │ │ ├── ILLUM_a.png │ │ │ │ │ ├── ILLUM_b.png │ │ │ │ │ └── ILLUM_c.png │ │ │ │ ├── INC │ │ │ │ │ ├── INC_a.png │ │ │ │ │ ├── INC_b.png │ │ │ │ │ └── INC_c.png │ │ │ │ └── SMK │ │ │ │ │ ├── SMK_a.png │ │ │ │ │ ├── SMK_b.png │ │ │ │ │ └── SMK_c.png │ │ │ └── Tank │ │ │ │ ├── AP │ │ │ │ ├── AP_a.png │ │ │ │ ├── AP_b.png │ │ │ │ └── AP_c.png │ │ │ │ ├── APCR │ │ │ │ ├── APCR_a.png │ │ │ │ ├── APCR_b.png │ │ │ │ └── APCR_c.png │ │ │ │ ├── APHE │ │ │ │ ├── APHE_a.png │ │ │ │ ├── APHE_b.png │ │ │ │ └── APHE_c.png │ │ │ │ ├── Canister │ │ │ │ ├── Canister_a.png │ │ │ │ ├── Canister_b.png │ │ │ │ └── Canister_c.png │ │ │ │ ├── EMP │ │ │ │ ├── EMP_a.png │ │ │ │ ├── EMP_b.png │ │ │ │ └── EMP_c.png │ │ │ │ ├── HE │ │ │ │ ├── HE_a.png │ │ │ │ ├── HE_b.png │ │ │ │ └── HE_c.png │ │ │ │ ├── HEAT │ │ │ │ ├── HEAT_a.png │ │ │ │ ├── HEAT_b.png │ │ │ │ └── HEAT_c.png │ │ │ │ ├── HEATFS │ │ │ │ ├── HEATFS_a.png │ │ │ │ ├── HEATFS_b.png │ │ │ │ └── HEATFS_c.png │ │ │ │ └── Sabot │ │ │ │ ├── Sabot_a.png │ │ │ │ ├── Sabot_b.png │ │ │ │ └── Sabot_c.png │ │ ├── Charged │ │ │ ├── LargeConc │ │ │ │ ├── LargeConc_a.png │ │ │ │ ├── LargeConc_b.png │ │ │ │ └── LargeConc_c.png │ │ │ ├── LargeIon │ │ │ │ ├── LargeIon_a.png │ │ │ │ ├── LargeIon_b.png │ │ │ │ └── LargeIon_c.png │ │ │ ├── LargeMech │ │ │ │ ├── LargeMech_a.png │ │ │ │ ├── LargeMech_b.png │ │ │ │ └── LargeMech_c.png │ │ │ ├── LargeRegular │ │ │ │ ├── LargeRegular_a.png │ │ │ │ ├── LargeRegular_b.png │ │ │ │ └── LargeRegular_c.png │ │ │ ├── LargeTox │ │ │ │ ├── LargeTox_a.png │ │ │ │ ├── LargeTox_b.png │ │ │ │ └── LargeTox_c.png │ │ │ ├── MediumConc │ │ │ │ ├── MediumConc_a.png │ │ │ │ ├── MediumConc_b.png │ │ │ │ └── MediumConc_c.png │ │ │ ├── MediumIon │ │ │ │ ├── MediumIon_a.png │ │ │ │ ├── MediumIon_b.png │ │ │ │ └── MediumIon_c.png │ │ │ ├── MediumMech │ │ │ │ ├── MediumMech_a.png │ │ │ │ ├── MediumMech_b.png │ │ │ │ └── MediumMech_c.png │ │ │ ├── MediumRegular │ │ │ │ ├── MediumRegular_a.png │ │ │ │ ├── MediumRegular_b.png │ │ │ │ └── MediumRegular_c.png │ │ │ ├── MediumTox │ │ │ │ ├── MediumTox_a.png │ │ │ │ ├── MediumTox_b.png │ │ │ │ └── MediumTox_c.png │ │ │ ├── ShotgunConc │ │ │ │ ├── ShotgunConc_a.png │ │ │ │ ├── ShotgunConc_b.png │ │ │ │ └── ShotgunConc_c.png │ │ │ ├── ShotgunIon │ │ │ │ ├── ShotgunIon_a.png │ │ │ │ ├── ShotgunIon_b.png │ │ │ │ └── ShotgunIon_c.png │ │ │ ├── ShotgunMech │ │ │ │ ├── ShotgunMech_a.png │ │ │ │ ├── ShotgunMech_b.png │ │ │ │ └── ShotgunMech_c.png │ │ │ ├── ShotgunRegular │ │ │ │ ├── ShotgunRegular_a.png │ │ │ │ ├── ShotgunRegular_b.png │ │ │ │ └── ShotgunRegular_c.png │ │ │ ├── ShotgunTox │ │ │ │ ├── ShotgunTox_a.png │ │ │ │ ├── ShotgunTox_b.png │ │ │ │ └── ShotgunTox_c.png │ │ │ ├── SmallConc │ │ │ │ ├── SmallConc_a.png │ │ │ │ ├── SmallConc_b.png │ │ │ │ └── SmallConc_c.png │ │ │ ├── SmallIon │ │ │ │ ├── SmallIon_a.png │ │ │ │ ├── SmallIon_b.png │ │ │ │ └── SmallIon_c.png │ │ │ ├── SmallMech │ │ │ │ ├── SmallMech_a.png │ │ │ │ ├── SmallMech_b.png │ │ │ │ └── SmallMech_c.png │ │ │ ├── SmallRegular │ │ │ │ ├── SmallRegular_a.png │ │ │ │ ├── SmallRegular_b.png │ │ │ │ └── SmallRegular_c.png │ │ │ └── SmallTox │ │ │ │ ├── SmallTox_a.png │ │ │ │ ├── SmallTox_b.png │ │ │ │ └── SmallTox_c.png │ │ ├── Flare │ │ │ ├── Bioferrite │ │ │ │ ├── Bioferrite_a.png │ │ │ │ ├── Bioferrite_b.png │ │ │ │ └── Bioferrite_c.png │ │ │ └── Chemfuel │ │ │ │ ├── Chemfuel_a.png │ │ │ │ ├── Chemfuel_b.png │ │ │ │ └── Chemfuel_c.png │ │ ├── FuelCell │ │ │ ├── Foam │ │ │ │ ├── Foam_a.png │ │ │ │ ├── Foam_b.png │ │ │ │ └── Foam_c.png │ │ │ ├── Incendiary │ │ │ │ ├── Incendiary_a.png │ │ │ │ ├── Incendiary_b.png │ │ │ │ └── Incendiary_c.png │ │ │ ├── Large │ │ │ │ ├── Large_a.png │ │ │ │ └── Large_b.png │ │ │ ├── Thermobaric │ │ │ │ ├── Thermobaric_a.png │ │ │ │ ├── Thermobaric_b.png │ │ │ │ └── Thermobaric_c.png │ │ │ └── empty shell.png │ │ ├── FuelTank │ │ │ ├── Bioferrite │ │ │ │ ├── Bioferrite_a.png │ │ │ │ ├── Bioferrite_b.png │ │ │ │ └── Bioferrite_c.png │ │ │ ├── Foam │ │ │ │ ├── Foam_a.png │ │ │ │ ├── Foam_b.png │ │ │ │ └── Foam_c.png │ │ │ ├── Incendiary │ │ │ │ ├── Incendiary_a.png │ │ │ │ ├── Incendiary_b.png │ │ │ │ └── Incendiary_c.png │ │ │ └── Prometheum │ │ │ │ ├── Prometheum_a.png │ │ │ │ ├── Prometheum_b.png │ │ │ │ └── Prometheum_c.png │ │ ├── GrenadeLauncher │ │ │ ├── AIR │ │ │ │ ├── AIR_a.png │ │ │ │ ├── AIR_b.png │ │ │ │ └── AIR_c.png │ │ │ ├── DP │ │ │ │ ├── HEDP_a.png │ │ │ │ ├── HEDP_b.png │ │ │ │ └── HEDP_c.png │ │ │ ├── EMP │ │ │ │ ├── EMP_a.png │ │ │ │ ├── EMP_b.png │ │ │ │ └── EMP_c.png │ │ │ ├── GS50_EMP │ │ │ │ ├── GS50_EMP_a.png │ │ │ │ ├── GS50_EMP_b.png │ │ │ │ └── GS50_EMP_c.png │ │ │ ├── GS50_HE │ │ │ │ ├── GS50_HE_a.png │ │ │ │ ├── GS50_HE_b.png │ │ │ │ └── GS50_HE_c.png │ │ │ ├── GS50_SMK │ │ │ │ ├── GS50_SMK_a.png │ │ │ │ ├── GS50_SMK_b.png │ │ │ │ └── GS50_SMK_c.png │ │ │ ├── HE │ │ │ │ ├── HE_a.png │ │ │ │ ├── HE_b.png │ │ │ │ └── HE_c.png │ │ │ ├── SMK │ │ │ │ ├── SMK_a.png │ │ │ │ ├── SMK_b.png │ │ │ │ └── SMK_c.png │ │ │ └── Tox │ │ │ │ ├── Tox_a.png │ │ │ │ ├── Tox_b.png │ │ │ │ └── Tox_c.png │ │ ├── HandGrenades │ │ │ ├── Concussion │ │ │ │ ├── Concussion_a.png │ │ │ │ ├── Concussion_b.png │ │ │ │ └── Concussion_c.png │ │ │ ├── EMP │ │ │ │ ├── EMP_a.png │ │ │ │ ├── EMP_b.png │ │ │ │ └── EMP_c.png │ │ │ ├── Firefoam │ │ │ │ ├── Firefoam_a.png │ │ │ │ ├── Firefoam_b.png │ │ │ │ └── Firefoam_c.png │ │ │ ├── Flashbang │ │ │ │ ├── Flashbang_a.png │ │ │ │ ├── Flashbang_b.png │ │ │ │ └── Flashbang_c.png │ │ │ ├── Frag │ │ │ │ ├── Frag_a.png │ │ │ │ ├── Frag_b.png │ │ │ │ └── Frag_c.png │ │ │ ├── GrenadeMechanite │ │ │ │ ├── GrenadeMechanite_a.png │ │ │ │ ├── GrenadeMechanite_b.png │ │ │ │ └── GrenadeMechanite_c.png │ │ │ ├── Molotov │ │ │ │ ├── Molotov_a.png │ │ │ │ ├── Molotov_b.png │ │ │ │ └── Molotov_c.png │ │ │ ├── Smoke │ │ │ │ ├── Smoke_a.png │ │ │ │ ├── Smoke_b.png │ │ │ │ └── Smoke_c.png │ │ │ ├── StickBomb │ │ │ │ ├── StickBomb_a.png │ │ │ │ ├── StickBomb_b.png │ │ │ │ └── StickBomb_c.png │ │ │ └── Tox │ │ │ │ ├── Tox_a.png │ │ │ │ ├── Tox_b.png │ │ │ │ └── Tox_c.png │ │ ├── HighCaliber │ │ │ ├── AP │ │ │ │ ├── AP_a.png │ │ │ │ ├── AP_b.png │ │ │ │ └── AP_c.png │ │ │ ├── Bofors │ │ │ │ ├── AP │ │ │ │ │ ├── AP_a.png │ │ │ │ │ ├── AP_b.png │ │ │ │ │ └── AP_c.png │ │ │ │ ├── HE │ │ │ │ │ ├── HE_a.png │ │ │ │ │ ├── HE_b.png │ │ │ │ │ └── HE_c.png │ │ │ │ ├── Incendiary │ │ │ │ │ ├── Incendiary_a.png │ │ │ │ │ ├── Incendiary_b.png │ │ │ │ │ └── Incendiary_c.png │ │ │ │ └── Sabot │ │ │ │ │ ├── Sabot_a.png │ │ │ │ │ ├── Sabot_b.png │ │ │ │ │ └── Sabot_c.png │ │ │ ├── FMJ │ │ │ │ ├── FMJ_a.png │ │ │ │ ├── FMJ_b.png │ │ │ │ └── FMJ_c.png │ │ │ ├── HE │ │ │ │ ├── HE_a.png │ │ │ │ ├── HE_b.png │ │ │ │ └── HE_c.png │ │ │ ├── Incendiary │ │ │ │ ├── Incendiary_a.png │ │ │ │ ├── Incendiary_b.png │ │ │ │ └── Incendiary_c.png │ │ │ └── Sabot │ │ │ │ ├── Sabot_a.png │ │ │ │ ├── Sabot_b.png │ │ │ │ └── Sabot_c.png │ │ ├── LaserPack │ │ │ ├── LaserPack_a.png │ │ │ ├── LaserPack_b.png │ │ │ └── LaserPack_c.png │ │ ├── Medieval │ │ │ ├── BallGrenade │ │ │ │ ├── BallGrenade_a.png │ │ │ │ ├── BallGrenade_b.png │ │ │ │ └── BallGrenade_c.png │ │ │ ├── Blunderbuss │ │ │ │ └── Paper │ │ │ │ │ ├── Paper_a.png │ │ │ │ │ ├── Paper_b.png │ │ │ │ │ └── Paper_c.png │ │ │ ├── Bolt │ │ │ │ ├── Bioferrite │ │ │ │ │ ├── Bioferrite_a.png │ │ │ │ │ ├── Bioferrite_b.png │ │ │ │ │ └── Bioferrite_c.png │ │ │ │ ├── Flame │ │ │ │ │ ├── Flame_a.png │ │ │ │ │ ├── Flame_b.png │ │ │ │ │ └── Flame_c.png │ │ │ │ ├── Iron │ │ │ │ │ ├── Iron_a.png │ │ │ │ │ ├── Iron_b.png │ │ │ │ │ └── Iron_c.png │ │ │ │ ├── Plasteel │ │ │ │ │ ├── Plasteel_a.png │ │ │ │ │ ├── Plasteel_b.png │ │ │ │ │ └── Plasteel_c.png │ │ │ │ ├── Steel │ │ │ │ │ ├── Steel_a.png │ │ │ │ │ ├── Steel_b.png │ │ │ │ │ └── Steel_c.png │ │ │ │ ├── Stone │ │ │ │ │ ├── Stone_a.png │ │ │ │ │ ├── Stone_b.png │ │ │ │ │ └── Stone_c.png │ │ │ │ └── Venom │ │ │ │ │ ├── Venom_a.png │ │ │ │ │ ├── Venom_b.png │ │ │ │ │ └── Venom_c.png │ │ │ ├── Catapult │ │ │ │ └── CatapultStone_a.png │ │ │ └── Musket │ │ │ │ ├── Ball │ │ │ │ ├── Ball_a.png │ │ │ │ ├── Ball_b.png │ │ │ │ └── Ball_c.png │ │ │ │ └── Paper │ │ │ │ ├── Paper_a.png │ │ │ │ ├── Paper_b.png │ │ │ │ └── Paper_c.png │ │ ├── Missile │ │ │ └── TomahawkLAM │ │ │ │ └── TomahawkLAM.png │ │ ├── Mortar │ │ │ ├── Airburst │ │ │ │ ├── Airburst_a.png │ │ │ │ ├── Airburst_b.png │ │ │ │ └── Airburst_c.png │ │ │ ├── Antigrain │ │ │ │ ├── Antigrain_a.png │ │ │ │ ├── Antigrain_b.png │ │ │ │ └── Antigrain_c.png │ │ │ ├── Charged │ │ │ │ ├── Charged_a.png │ │ │ │ └── Charged_b.png │ │ │ ├── Deadlife │ │ │ │ ├── Deadlife_a.png │ │ │ │ ├── Deadlife_b.png │ │ │ │ └── Deadlife_c.png │ │ │ ├── EMP │ │ │ │ ├── EMP_a.png │ │ │ │ ├── EMP_b.png │ │ │ │ └── EMP_c.png │ │ │ ├── Firefoam │ │ │ │ ├── Firefoam_a.png │ │ │ │ ├── Firefoam_b.png │ │ │ │ └── Firefoam_c.png │ │ │ ├── HE │ │ │ │ ├── HE_a.png │ │ │ │ ├── HE_b.png │ │ │ │ └── HE_c.png │ │ │ ├── Illumination │ │ │ │ ├── Illumination_a.png │ │ │ │ ├── Illumination_b.png │ │ │ │ └── Illumination_c.png │ │ │ ├── Incendiary │ │ │ │ ├── Incendiary_a.png │ │ │ │ ├── Incendiary_b.png │ │ │ │ └── Incendiary_c.png │ │ │ ├── Smoke │ │ │ │ ├── Smoke_a.png │ │ │ │ ├── Smoke_b.png │ │ │ │ └── Smoke_c.png │ │ │ └── Toxic │ │ │ │ ├── Toxic_a.png │ │ │ │ ├── Toxic_b.png │ │ │ │ └── Toxic_c.png │ │ ├── Nail │ │ │ ├── Nail_a.png │ │ │ ├── Nail_b.png │ │ │ └── Nail_c.png │ │ ├── Neolithic │ │ │ ├── Arrow │ │ │ │ ├── Flame │ │ │ │ │ ├── Flame_a.png │ │ │ │ │ ├── Flame_b.png │ │ │ │ │ └── Flame_c.png │ │ │ │ ├── Iron │ │ │ │ │ ├── Iron_a.png │ │ │ │ │ ├── Iron_b.png │ │ │ │ │ └── Iron_c.png │ │ │ │ ├── Plasteel │ │ │ │ │ ├── Plasteel_a.png │ │ │ │ │ ├── Plasteel_b.png │ │ │ │ │ └── Plasteel_c.png │ │ │ │ ├── Steel │ │ │ │ │ ├── Steel_a.png │ │ │ │ │ ├── Steel_b.png │ │ │ │ │ └── Steel_c.png │ │ │ │ ├── Stone │ │ │ │ │ ├── Stone_a.png │ │ │ │ │ ├── Stone_b.png │ │ │ │ │ └── Stone_c.png │ │ │ │ └── Venom │ │ │ │ │ ├── Venom_a.png │ │ │ │ │ ├── Venom_b.png │ │ │ │ │ └── Venom_c.png │ │ │ ├── Dart │ │ │ │ ├── Dart_a.png │ │ │ │ ├── Dart_b.png │ │ │ │ └── Dart_c.png │ │ │ ├── GreatArrow │ │ │ │ ├── Flame │ │ │ │ │ ├── Flame_a.png │ │ │ │ │ ├── Flame_b.png │ │ │ │ │ └── Flame_c.png │ │ │ │ ├── Iron │ │ │ │ │ ├── Iron_a.png │ │ │ │ │ ├── Iron_b.png │ │ │ │ │ └── Iron_c.png │ │ │ │ ├── Plasteel │ │ │ │ │ ├── Plasteel_a.png │ │ │ │ │ ├── Plasteel_b.png │ │ │ │ │ └── Plasteel_c.png │ │ │ │ ├── Steel │ │ │ │ │ ├── Steel_a.png │ │ │ │ │ ├── Steel_b.png │ │ │ │ │ └── Steel_c.png │ │ │ │ ├── Stone │ │ │ │ │ ├── Stone_a.png │ │ │ │ │ ├── Stone_b.png │ │ │ │ │ └── Stone_c.png │ │ │ │ └── Venom │ │ │ │ │ ├── Venom_a.png │ │ │ │ │ ├── Venom_b.png │ │ │ │ │ └── Venom_c.png │ │ │ ├── Kunai │ │ │ │ ├── Kunai_a.png │ │ │ │ ├── Kunai_b.png │ │ │ │ └── Kunai_c.png │ │ │ ├── Pilum │ │ │ │ ├── Pilum_a.png │ │ │ │ ├── Pilum_b.png │ │ │ │ └── Pilum_c.png │ │ │ └── SlingBullet │ │ │ │ ├── Plasteel │ │ │ │ ├── Plasteel_a.png │ │ │ │ ├── Plasteel_b.png │ │ │ │ └── Plasteel_c.png │ │ │ │ ├── Steel │ │ │ │ ├── Steel_a.png │ │ │ │ ├── Steel_b.png │ │ │ │ └── Steel_c.png │ │ │ │ └── Stone │ │ │ │ ├── Stone_a.png │ │ │ │ ├── Stone_b.png │ │ │ │ └── Stone_c.png │ │ ├── Pistol │ │ │ ├── AP │ │ │ │ ├── AP_a.png │ │ │ │ ├── AP_b.png │ │ │ │ └── AP_c.png │ │ │ ├── FMJ │ │ │ │ ├── FMJ_a.png │ │ │ │ ├── FMJ_b.png │ │ │ │ └── FMJ_c.png │ │ │ └── HP │ │ │ │ ├── HP_a.png │ │ │ │ ├── HP_b.png │ │ │ │ └── HP_c.png │ │ ├── PlasmaCell │ │ │ ├── Heavy │ │ │ │ ├── Heavy_3.png │ │ │ │ ├── Heavy_74.png │ │ │ │ └── Heavy_75.png │ │ │ ├── Pistol │ │ │ │ ├── Pistol_15.png │ │ │ │ ├── Pistol_499.png │ │ │ │ └── Pistol_500.png │ │ │ └── Rifle │ │ │ │ ├── Rifle_30.png │ │ │ │ ├── Rifle_499.png │ │ │ │ └── Rifle_500.png │ │ ├── RPG │ │ │ ├── Frag │ │ │ │ ├── Frag_a.png │ │ │ │ ├── Frag_b.png │ │ │ │ └── Frag_c.png │ │ │ ├── HEAT │ │ │ │ ├── HEAT_a.png │ │ │ │ ├── HEAT_b.png │ │ │ │ └── HEAT_c.png │ │ │ ├── RPG32_HEAT │ │ │ │ ├── RPG32_HEAT_a.png │ │ │ │ ├── RPG32_HEAT_b.png │ │ │ │ └── RPG32_HEAT_c.png │ │ │ ├── RPG32_Thermobaric │ │ │ │ ├── RPG32_Thermobaric_a.png │ │ │ │ ├── RPG32_Thermobaric_b.png │ │ │ │ └── RPG32_Thermobaric_c.png │ │ │ ├── Tandem │ │ │ │ ├── Tandem_a.png │ │ │ │ ├── Tandem_b.png │ │ │ │ └── Tandem_c.png │ │ │ └── Thermobaric │ │ │ │ ├── Thermobaric_a.png │ │ │ │ ├── Thermobaric_b.png │ │ │ │ └── Thermobaric_c.png │ │ ├── Railgun │ │ │ ├── HighCaliber │ │ │ │ ├── HighCaliber_10.png │ │ │ │ ├── HighCaliber_199.png │ │ │ │ └── HighCaliber_200.png │ │ │ ├── Pistol │ │ │ │ ├── Pistol_15.png │ │ │ │ ├── Pistol_499.png │ │ │ │ └── Pistol_500.png │ │ │ └── Rifle │ │ │ │ ├── Rifle_30.png │ │ │ │ ├── Rifle_499.png │ │ │ │ └── Rifle_500.png │ │ ├── Recoilless │ │ │ ├── CANISTER │ │ │ │ ├── CANISTER_a.png │ │ │ │ ├── CANISTER_b.png │ │ │ │ └── CANISTER_c.png │ │ │ ├── EMP │ │ │ │ ├── EMP_a.png │ │ │ │ ├── EMP_b.png │ │ │ │ └── EMP_c.png │ │ │ ├── FRAG │ │ │ │ ├── FRAG_a.png │ │ │ │ ├── FRAG_b.png │ │ │ │ └── FRAG_c.png │ │ │ ├── HE-AB │ │ │ │ ├── HE-AB_a.png │ │ │ │ ├── HE-AB_b.png │ │ │ │ └── HE-AB_c.png │ │ │ ├── HE │ │ │ │ ├── HE_a.png │ │ │ │ ├── HE_b.png │ │ │ │ └── HE_c.png │ │ │ ├── HEAT │ │ │ │ ├── HEAT_a.png │ │ │ │ ├── HEAT_b.png │ │ │ │ └── HEAT_c.png │ │ │ ├── HEDP │ │ │ │ ├── HEDP_a.png │ │ │ │ ├── HEDP_b.png │ │ │ │ └── HEDP_c.png │ │ │ ├── ILLUM │ │ │ │ ├── ILLUM_a.png │ │ │ │ ├── ILLUM_b.png │ │ │ │ └── ILLUM_c.png │ │ │ ├── INC │ │ │ │ ├── INC_a.png │ │ │ │ ├── INC_b.png │ │ │ │ └── INC_c.png │ │ │ ├── SMK │ │ │ │ ├── SMK_a.png │ │ │ │ ├── SMK_b.png │ │ │ │ └── SMK_c.png │ │ │ └── THERMO │ │ │ │ ├── THERMO_a.png │ │ │ │ ├── THERMO_b.png │ │ │ │ └── THERMO_c.png │ │ ├── Revolver │ │ │ ├── AP │ │ │ │ ├── AP_a.png │ │ │ │ ├── AP_b.png │ │ │ │ └── AP_c.png │ │ │ ├── FMJ │ │ │ │ ├── FMJ_a.png │ │ │ │ ├── FMJ_b.png │ │ │ │ └── FMJ_c.png │ │ │ └── HP │ │ │ │ ├── HP_a.png │ │ │ │ ├── HP_b.png │ │ │ │ └── HP_c.png │ │ ├── Rifle │ │ │ ├── AP │ │ │ │ ├── AP_a.png │ │ │ │ ├── AP_b.png │ │ │ │ └── AP_c.png │ │ │ ├── Battlerifle │ │ │ │ ├── AP │ │ │ │ │ ├── AP_a.png │ │ │ │ │ ├── AP_b.png │ │ │ │ │ └── AP_c.png │ │ │ │ ├── FMJ │ │ │ │ │ ├── FMJ_a.png │ │ │ │ │ ├── FMJ_b.png │ │ │ │ │ └── FMJ_c.png │ │ │ │ ├── HE │ │ │ │ │ ├── HE_a.png │ │ │ │ │ ├── HE_b.png │ │ │ │ │ └── HE_c.png │ │ │ │ ├── HP │ │ │ │ │ ├── HP_a.png │ │ │ │ │ ├── HP_b.png │ │ │ │ │ └── HP_c.png │ │ │ │ ├── Incendiary │ │ │ │ │ ├── Incendiary_a.png │ │ │ │ │ ├── Incendiary_b.png │ │ │ │ │ └── Incendiary_c.png │ │ │ │ └── Sabot │ │ │ │ │ ├── Sabot_a.png │ │ │ │ │ ├── Sabot_b.png │ │ │ │ │ └── Sabot_c.png │ │ │ ├── Clip │ │ │ │ ├── AP │ │ │ │ │ ├── AP_a.png │ │ │ │ │ ├── AP_b.png │ │ │ │ │ └── AP_c.png │ │ │ │ ├── FMJ │ │ │ │ │ ├── FMJ_a.png │ │ │ │ │ ├── FMJ_b.png │ │ │ │ │ └── FMJ_c.png │ │ │ │ ├── HE │ │ │ │ │ ├── HE_a.png │ │ │ │ │ ├── HE_b.png │ │ │ │ │ └── HE_c.png │ │ │ │ ├── HP │ │ │ │ │ ├── HP_a.png │ │ │ │ │ ├── HP_b.png │ │ │ │ │ └── HP_c.png │ │ │ │ ├── Incendiary │ │ │ │ │ ├── Incendiary_a.png │ │ │ │ │ ├── Incendiary_b.png │ │ │ │ │ └── Incendiary_c.png │ │ │ │ └── Sabot │ │ │ │ │ ├── Sabot_a.png │ │ │ │ │ ├── Sabot_b.png │ │ │ │ │ └── Sabot_c.png │ │ │ ├── FMJ │ │ │ │ ├── FMJ_a.png │ │ │ │ ├── FMJ_b.png │ │ │ │ └── FMJ_c.png │ │ │ ├── HE │ │ │ │ ├── HE_a.png │ │ │ │ ├── HE_b.png │ │ │ │ └── HE_c.png │ │ │ ├── HP │ │ │ │ ├── HP_a.png │ │ │ │ ├── HP_b.png │ │ │ │ └── HP_c.png │ │ │ ├── Incendiary │ │ │ │ ├── Incendiary_a.png │ │ │ │ ├── Incendiary_b.png │ │ │ │ └── Incendiary_c.png │ │ │ ├── Sabot │ │ │ │ ├── Sabot_a.png │ │ │ │ ├── Sabot_b.png │ │ │ │ └── Sabot_c.png │ │ │ ├── Soviet │ │ │ │ ├── AP │ │ │ │ │ ├── AP_a.png │ │ │ │ │ ├── AP_b.png │ │ │ │ │ └── AP_c.png │ │ │ │ ├── FMJ │ │ │ │ │ ├── FMJ_a.png │ │ │ │ │ ├── FMJ_b.png │ │ │ │ │ └── FMJ_c.png │ │ │ │ ├── HE │ │ │ │ │ ├── HE_a.png │ │ │ │ │ ├── HE_b.png │ │ │ │ │ └── HE_c.png │ │ │ │ ├── HP │ │ │ │ │ ├── HP_a.png │ │ │ │ │ ├── HP_b.png │ │ │ │ │ └── HP_c.png │ │ │ │ ├── Incendiary │ │ │ │ │ ├── Incendiary_a.png │ │ │ │ │ ├── Incendiary_b.png │ │ │ │ │ └── Incendiary_c.png │ │ │ │ └── Sabot │ │ │ │ │ ├── Sabot_a.png │ │ │ │ │ ├── Sabot_b.png │ │ │ │ │ └── Sabot_c.png │ │ │ ├── SovietBattlerifle │ │ │ │ ├── AP │ │ │ │ │ ├── AP_a.png │ │ │ │ │ ├── AP_b.png │ │ │ │ │ └── AP_c.png │ │ │ │ ├── FMJ │ │ │ │ │ ├── FMJ_a.png │ │ │ │ │ ├── FMJ_b.png │ │ │ │ │ └── FMJ_c.png │ │ │ │ ├── HE │ │ │ │ │ ├── HE_a.png │ │ │ │ │ ├── HE_b.png │ │ │ │ │ └── HE_c.png │ │ │ │ ├── HP │ │ │ │ │ ├── HP_a.png │ │ │ │ │ ├── HP_b.png │ │ │ │ │ └── HP_c.png │ │ │ │ ├── Incendiary │ │ │ │ │ ├── Incendiary_a.png │ │ │ │ │ ├── Incendiary_b.png │ │ │ │ │ └── Incendiary_c.png │ │ │ │ └── Sabot │ │ │ │ │ ├── Sabot_a.png │ │ │ │ │ ├── Sabot_b.png │ │ │ │ │ └── Sabot_c.png │ │ │ └── SovietLarge │ │ │ │ ├── AP │ │ │ │ ├── AP_a.png │ │ │ │ ├── AP_b.png │ │ │ │ └── AP_c.png │ │ │ │ ├── FMJ │ │ │ │ ├── FMJ_a.png │ │ │ │ ├── FMJ_b.png │ │ │ │ └── FMJ_c.png │ │ │ │ ├── HE │ │ │ │ ├── HE_a.png │ │ │ │ ├── HE_b.png │ │ │ │ └── HE_c.png │ │ │ │ ├── HP │ │ │ │ ├── HP_a.png │ │ │ │ ├── HP_b.png │ │ │ │ └── HP_c.png │ │ │ │ ├── Incendiary │ │ │ │ ├── Incendiary_a.png │ │ │ │ ├── Incendiary_b.png │ │ │ │ └── Incendiary_c.png │ │ │ │ └── Sabot │ │ │ │ ├── Sabot_a.png │ │ │ │ ├── Sabot_b.png │ │ │ │ └── Sabot_c.png │ │ ├── RifleGrenade │ │ │ ├── HE │ │ │ │ ├── HE_a.png │ │ │ │ ├── HE_b.png │ │ │ │ └── HE_c.png │ │ │ └── HEAT │ │ │ │ ├── HEAT_a.png │ │ │ │ ├── HEAT_b.png │ │ │ │ └── HEAT_c.png │ │ ├── Rocket │ │ │ ├── 130mmType63 │ │ │ │ ├── 130mmType63_a.png │ │ │ │ └── 130mmType63_b.png │ │ │ ├── 132mmM13 │ │ │ │ ├── 132mmM13_a.png │ │ │ │ ├── 132mmM13_b.png │ │ │ │ └── 132mmM13_c.png │ │ │ ├── 57mmS5 │ │ │ │ ├── HE │ │ │ │ │ ├── HE_a.png │ │ │ │ │ ├── HE_b.png │ │ │ │ │ └── HE_c.png │ │ │ │ ├── HEAT │ │ │ │ │ ├── HEAT_a.png │ │ │ │ │ ├── HEAT_b.png │ │ │ │ │ └── HEAT_c.png │ │ │ │ └── Thermobaric │ │ │ │ │ ├── Thermobaric_a.png │ │ │ │ │ ├── Thermobaric_b.png │ │ │ │ │ └── Thermobaric_c.png │ │ │ ├── 70mmAPKWS │ │ │ │ ├── 70mmAPKWS_a.png │ │ │ │ └── 70mmAPKWS_b.png │ │ │ ├── 80mmS8 │ │ │ │ ├── HE │ │ │ │ │ ├── HE_a.png │ │ │ │ │ ├── HE_b.png │ │ │ │ │ └── HE_c.png │ │ │ │ ├── HEAT │ │ │ │ │ ├── HEAT_a.png │ │ │ │ │ ├── HEAT_b.png │ │ │ │ │ └── HEAT_c.png │ │ │ │ └── Thermobaric │ │ │ │ │ ├── Thermobaric_a.png │ │ │ │ │ ├── Thermobaric_b.png │ │ │ │ │ └── Thermobaric_c.png │ │ │ ├── 90mmCanister │ │ │ │ ├── CAN_a.png │ │ │ │ ├── CAN_b.png │ │ │ │ └── CAN_c.png │ │ │ ├── 90mmHEAT │ │ │ │ ├── HEAT_a.png │ │ │ │ ├── HEAT_b.png │ │ │ │ └── HEAT_c.png │ │ │ ├── M74 │ │ │ │ ├── M74_1.png │ │ │ │ ├── M74_3.png │ │ │ │ └── M74_4.png │ │ │ ├── MiniRocket │ │ │ │ ├── Frag │ │ │ │ │ ├── a.png │ │ │ │ │ ├── b.png │ │ │ │ │ └── c.png │ │ │ │ ├── HEAT │ │ │ │ │ ├── a.png │ │ │ │ │ ├── b.png │ │ │ │ │ └── c.png │ │ │ │ ├── Incendiary │ │ │ │ │ ├── a.png │ │ │ │ │ ├── b.png │ │ │ │ │ └── c.png │ │ │ │ └── Standard │ │ │ │ │ ├── a.png │ │ │ │ │ ├── b.png │ │ │ │ │ └── c.png │ │ │ ├── SMAW_HEAT │ │ │ │ ├── SMAW_HEAT_a.png │ │ │ │ ├── SMAW_HEAT_b.png │ │ │ │ └── SMAW_HEAT_c.png │ │ │ ├── SMAW_Thermobaric │ │ │ │ ├── SMAW_Thermobaric_a.png │ │ │ │ ├── SMAW_Thermobaric_b.png │ │ │ │ └── SMAW_Thermobaric_c.png │ │ │ └── SPG9 │ │ │ │ ├── EMP │ │ │ │ ├── EMP_a.png │ │ │ │ ├── EMP_b.png │ │ │ │ └── EMP_c.png │ │ │ │ ├── Frag │ │ │ │ ├── Frag_a.png │ │ │ │ ├── Frag_b.png │ │ │ │ └── Frag_c.png │ │ │ │ ├── HEAT │ │ │ │ ├── HEAT_a.png │ │ │ │ ├── HEAT_b.png │ │ │ │ └── HEAT_c.png │ │ │ │ ├── Tandem │ │ │ │ ├── Tandem_a.png │ │ │ │ ├── Tandem_b.png │ │ │ │ └── Tandem_c.png │ │ │ │ └── Thermobaric │ │ │ │ ├── Thermobaric_a.png │ │ │ │ ├── Thermobaric_b.png │ │ │ │ └── Thermobaric_c.png │ │ ├── STACK_RANGED │ │ │ ├── GrenadeLauncher │ │ │ │ ├── AIR │ │ │ │ │ ├── AIR_1.png │ │ │ │ │ ├── AIR_10.png │ │ │ │ │ └── AIR_50.png │ │ │ │ ├── DP │ │ │ │ │ ├── HEDP_1.png │ │ │ │ │ ├── HEDP_10.png │ │ │ │ │ └── HEDP_50.png │ │ │ │ ├── EMP │ │ │ │ │ ├── EMP_1.png │ │ │ │ │ ├── EMP_10.png │ │ │ │ │ └── EMP_50.png │ │ │ │ ├── HE │ │ │ │ │ ├── HE_1.png │ │ │ │ │ ├── HE_10.png │ │ │ │ │ └── HE_50.png │ │ │ │ └── SMK │ │ │ │ │ ├── SMK_1.png │ │ │ │ │ ├── SMK_10.png │ │ │ │ │ └── SMK_50.png │ │ │ ├── HighCaliber │ │ │ │ ├── AP │ │ │ │ │ ├── AP_1.png │ │ │ │ │ ├── AP_150.png │ │ │ │ │ └── AP_20.png │ │ │ │ ├── FMJ │ │ │ │ │ ├── FMJ_1.png │ │ │ │ │ ├── FMJ_150.png │ │ │ │ │ └── FMJ_20.png │ │ │ │ ├── HE │ │ │ │ │ ├── HE_1.png │ │ │ │ │ ├── HE_150.png │ │ │ │ │ └── HE_20.png │ │ │ │ ├── Incendiary │ │ │ │ │ ├── Incendiary_1.png │ │ │ │ │ ├── Incendiary_150.png │ │ │ │ │ └── Incendiary_20.png │ │ │ │ └── Sabot │ │ │ │ │ ├── Sabot_1.png │ │ │ │ │ ├── Sabot_150.png │ │ │ │ │ └── Sabot_20.png │ │ │ ├── Pistol │ │ │ │ ├── AP │ │ │ │ │ ├── AP_1.png │ │ │ │ │ ├── AP_20.png │ │ │ │ │ └── AP_250.png │ │ │ │ ├── FMJ │ │ │ │ │ ├── FMJ_1.png │ │ │ │ │ ├── FMJ_20.png │ │ │ │ │ └── FMJ_250.png │ │ │ │ └── HP │ │ │ │ │ ├── HP_1.png │ │ │ │ │ ├── HP_20.png │ │ │ │ │ └── HP_250.png │ │ │ ├── Rifle │ │ │ │ ├── AP │ │ │ │ │ ├── AP_1.png │ │ │ │ │ ├── AP_20.png │ │ │ │ │ └── AP_250.png │ │ │ │ ├── FMJ │ │ │ │ │ ├── FMJ_1.png │ │ │ │ │ ├── FMJ_20.png │ │ │ │ │ └── FMJ_250.png │ │ │ │ ├── HE │ │ │ │ │ ├── HE_1.png │ │ │ │ │ ├── HE_20.png │ │ │ │ │ └── HE_250.png │ │ │ │ ├── HP │ │ │ │ │ ├── HP_1.png │ │ │ │ │ ├── HP_20.png │ │ │ │ │ └── HP_250.png │ │ │ │ ├── Incendiary │ │ │ │ │ ├── Incendiary_1.png │ │ │ │ │ ├── Incendiary_20.png │ │ │ │ │ └── Incendiary_250.png │ │ │ │ └── Sabot │ │ │ │ │ ├── Sabot_1.png │ │ │ │ │ ├── Sabot_20.png │ │ │ │ │ └── Sabot_250.png │ │ │ └── Shotgun │ │ │ │ ├── Beanbag │ │ │ │ ├── Beanbag_1.png │ │ │ │ ├── Beanbag_30.png │ │ │ │ └── Beanbag_6.png │ │ │ │ ├── EMP │ │ │ │ ├── EMP_1.png │ │ │ │ ├── EMP_30.png │ │ │ │ └── EMP_6.png │ │ │ │ ├── Shot │ │ │ │ ├── Shot_1.png │ │ │ │ ├── Shot_30.png │ │ │ │ └── Shot_6.png │ │ │ │ └── Slug │ │ │ │ ├── Slug_1.png │ │ │ │ ├── Slug_30.png │ │ │ │ └── Slug_6.png │ │ └── Shotgun │ │ │ ├── Beanbag │ │ │ ├── Beanbag_a.png │ │ │ ├── Beanbag_b.png │ │ │ └── Beanbag_c.png │ │ │ ├── EMP │ │ │ ├── EMP_a.png │ │ │ ├── EMP_b.png │ │ │ └── EMP_c.png │ │ │ ├── Shot │ │ │ ├── Shot_a.png │ │ │ ├── Shot_b.png │ │ │ └── Shot_c.png │ │ │ └── Slug │ │ │ ├── Slug_a.png │ │ │ ├── Slug_b.png │ │ │ └── Slug_c.png │ ├── Apparel │ │ ├── AdvancedNightVision │ │ │ ├── CE_AdvancedNightVision.png │ │ │ ├── CE_AdvancedNightVision_east.png │ │ │ ├── CE_AdvancedNightVision_north.png │ │ │ └── CE_AdvancedNightVision_south.png │ │ ├── Backpack │ │ │ ├── CE_Backpack.png │ │ │ ├── CE_Backpack_east.png │ │ │ ├── CE_Backpack_north.png │ │ │ └── CE_Backpack_south.png │ │ ├── BallisticShield │ │ │ ├── CE_BallisticShield.png │ │ │ └── CE_BallisticShield_m.png │ │ ├── CompositeVest │ │ │ ├── CompositeVest.png │ │ │ ├── CompositeVest_Fat_east.png │ │ │ ├── CompositeVest_Fat_north.png │ │ │ ├── CompositeVest_Fat_south.png │ │ │ ├── CompositeVest_Female_east.png │ │ │ ├── CompositeVest_Female_north.png │ │ │ ├── CompositeVest_Female_south.png │ │ │ ├── CompositeVest_Hulk_east.png │ │ │ ├── CompositeVest_Hulk_north.png │ │ │ ├── CompositeVest_Hulk_south.png │ │ │ ├── CompositeVest_Male_east.png │ │ │ ├── CompositeVest_Male_north.png │ │ │ ├── CompositeVest_Male_south.png │ │ │ ├── CompositeVest_Thin_east.png │ │ │ ├── CompositeVest_Thin_north.png │ │ │ └── CompositeVest_Thin_south.png │ │ ├── Exoframe │ │ │ ├── CE_Exoframe.png │ │ │ ├── CE_Exoframe_Fat_east.png │ │ │ ├── CE_Exoframe_Fat_north.png │ │ │ ├── CE_Exoframe_Fat_south.png │ │ │ ├── CE_Exoframe_Female_east.png │ │ │ ├── CE_Exoframe_Female_north.png │ │ │ ├── CE_Exoframe_Female_south.png │ │ │ ├── CE_Exoframe_Hulk_east.png │ │ │ ├── CE_Exoframe_Hulk_north.png │ │ │ ├── CE_Exoframe_Hulk_south.png │ │ │ ├── CE_Exoframe_Male_east.png │ │ │ ├── CE_Exoframe_Male_north.png │ │ │ ├── CE_Exoframe_Male_south.png │ │ │ ├── CE_Exoframe_Thin_east.png │ │ │ ├── CE_Exoframe_Thin_north.png │ │ │ └── CE_Exoframe_Thin_south.png │ │ ├── GasMask │ │ │ ├── CE_GasMask.png │ │ │ ├── CE_GasMask_east.png │ │ │ ├── CE_GasMask_north.png │ │ │ ├── CE_GasMask_south.png │ │ │ └── CE_GasMask_west.png │ │ ├── ImprovGasMask │ │ │ ├── CE_ImprovGasMask.png │ │ │ ├── CE_ImprovGasMask_east.png │ │ │ ├── CE_ImprovGasMask_north.png │ │ │ └── CE_ImprovGasMask_south.png │ │ ├── KidBackpack │ │ │ ├── CE_KidBackpack.png │ │ │ ├── CE_KidBackpack_east.png │ │ │ ├── CE_KidBackpack_north.png │ │ │ └── CE_KidBackpack_south.png │ │ ├── PlateHelmet │ │ │ ├── CE_PlateHelmet.png │ │ │ ├── CE_PlateHelmet_east.png │ │ │ ├── CE_PlateHelmet_north.png │ │ │ └── CE_PlateHelmet_south.png │ │ ├── RadioPack │ │ │ ├── CE_RadioPack.png │ │ │ ├── CE_RadioPack_east.png │ │ │ ├── CE_RadioPack_north.png │ │ │ └── CE_RadioPack_south.png │ │ ├── Shield │ │ │ ├── CE_Shield.png │ │ │ └── CE_Shield_m.png │ │ ├── SimpleNightVision │ │ │ ├── CE_SimpleNightVision.png │ │ │ ├── CE_SimpleNightVision_east.png │ │ │ ├── CE_SimpleNightVision_north.png │ │ │ ├── CE_SimpleNightVision_south.png │ │ │ └── CE_SimpleNightVision_west.png │ │ ├── TacRigging │ │ │ ├── CE_TacRigging.png │ │ │ ├── CE_TacRigging_Fat_east.png │ │ │ ├── CE_TacRigging_Fat_north.png │ │ │ ├── CE_TacRigging_Fat_south.png │ │ │ ├── CE_TacRigging_Female_east.png │ │ │ ├── CE_TacRigging_Female_north.png │ │ │ ├── CE_TacRigging_Female_south.png │ │ │ ├── CE_TacRigging_Hulk_east.png │ │ │ ├── CE_TacRigging_Hulk_north.png │ │ │ ├── CE_TacRigging_Hulk_south.png │ │ │ ├── CE_TacRigging_Male_east.png │ │ │ ├── CE_TacRigging_Male_north.png │ │ │ ├── CE_TacRigging_Male_south.png │ │ │ ├── CE_TacRigging_Thin_east.png │ │ │ ├── CE_TacRigging_Thin_north.png │ │ │ └── CE_TacRigging_Thin_south.png │ │ └── TribalPack │ │ │ ├── CE_Tribalpack.png │ │ │ ├── CE_Tribalpack_east.png │ │ │ ├── CE_Tribalpack_north.png │ │ │ └── CE_Tribalpack_south.png │ ├── Building │ │ ├── AmmoBench │ │ │ ├── AmmoBench_east.png │ │ │ ├── AmmoBench_eastm.png │ │ │ ├── AmmoBench_north.png │ │ │ ├── AmmoBench_northm.png │ │ │ ├── AmmoBench_south.png │ │ │ └── AmmoBench_southm.png │ │ ├── BarbedWire │ │ │ ├── BarbedWire_Atlas.png │ │ │ ├── BarbedWire_Atlas_m.png │ │ │ └── BarbedWire_Icon.png │ │ ├── Embrasure │ │ │ ├── EmbrasureBricks_MenuIcon.png │ │ │ ├── EmbrasurePlanks_MenuIcon.png │ │ │ ├── EmbrasureSmooth_MenuIcon.png │ │ │ ├── Embrasure_Atlas_Bricks.png │ │ │ ├── Embrasure_Atlas_Planks.png │ │ │ ├── Embrasure_Atlas_Smooth.png │ │ │ └── Embrasure_Blueprint_Atlas.png │ │ └── Turrets │ │ │ ├── AGS30_base.png │ │ │ ├── AGS30_gun.png │ │ │ ├── BlasterTurret_Top.png │ │ │ ├── FlakTurret_Base.png │ │ │ ├── FlakTurret_Top.png │ │ │ ├── HeavyTurret_Top.png │ │ │ ├── KPV_base.png │ │ │ ├── KPV_gun.png │ │ │ ├── M240_base.png │ │ │ ├── M240_gun.png │ │ │ ├── MachineGunBase.png │ │ │ └── MediumTurret_Top.png │ ├── Filth │ │ ├── Filth_CannonAmmoCasings │ │ │ └── Filth_CannonAmmoCasings.png │ │ ├── Filth_DisposableLauncherCasings │ │ │ └── Filth_DisposableLauncherCasings.png │ │ ├── Filth_GrenadeAmmoCasings │ │ │ └── Filth_GrenadeAmmoCasings.png │ │ ├── Filth_GrenadeLauncherAmmoCasings │ │ │ └── Filth_GrenadeLauncherAmmoCasings.png │ │ ├── Filth_PistolAmmoCasings │ │ │ └── Filth_PistolAmmoCasings.png │ │ ├── Filth_RifleAmmoCasings │ │ │ └── Filth_RifleAmmoCasings.png │ │ ├── Filth_RifleAmmoCasings_HighCal │ │ │ └── Filth_RifleAmmoCasings_HighCal.png │ │ ├── Filth_ShotgunAmmoCasings │ │ │ └── Filth_ShotgunAmmoCasings.png │ │ ├── Filth_ShotgunAmmoCasings_Black │ │ │ └── Filth_ShotgunAmmoCasings_Black.png │ │ ├── Filth_ShotgunAmmoCasings_Green │ │ │ └── Filth_ShotgunAmmoCasings_Green.png │ │ ├── Filth_ShotgunAmmoCasings_White │ │ │ └── Filth_ShotgunAmmoCasings_White.png │ │ ├── Filth_StabilizeMedicine │ │ │ ├── MedicineFilth_a.png │ │ │ ├── MedicineFilth_b.png │ │ │ ├── MedicineFilth_c.png │ │ │ ├── MedicineFilth_d.png │ │ │ └── MedicineFilth_e.png │ │ ├── Filth_StabilizeMedicineHerbal │ │ │ ├── MedicineFilth_a.png │ │ │ ├── MedicineFilth_b.png │ │ │ ├── MedicineFilth_c.png │ │ │ ├── MedicineFilth_d.png │ │ │ └── MedicineFilth_e.png │ │ ├── Filth_SteelRifleAmmoCasings │ │ │ └── Fleck_SteelRifleAmmoCasings.png │ │ ├── LiquidFuel.png │ │ └── LiquidFuel │ │ │ └── LiquidFuel.png │ ├── Flecks │ │ ├── CE_LandedJavelin.png │ │ ├── CannonBallFleck.png │ │ ├── Fleck_BigShell.png │ │ ├── Fleck_BulletCasing.png │ │ ├── Fleck_BulletHole.png │ │ ├── Fleck_GrenadeLauncherAmmoCasings.png │ │ ├── Fleck_GrenadePin.png │ │ ├── Fleck_PistolAmmoCasings.png │ │ ├── Fleck_RifleAmmoCasings_HighCal.png │ │ ├── Fleck_ShotgunShell.png │ │ ├── Fleck_ShotgunShell_Black.png │ │ ├── Fleck_ShotgunShell_Green.png │ │ ├── Fleck_ShotgunShell_White.png │ │ ├── Fleck_SteelRifleAmmoCasings.png │ │ └── LandedArrow │ │ │ ├── CE_LandedArrow_Flame.png │ │ │ ├── CE_LandedArrow_Iron.png │ │ │ ├── CE_LandedArrow_Plasteel.png │ │ │ ├── CE_LandedArrow_Steel.png │ │ │ ├── CE_LandedArrow_Stone.png │ │ │ └── CE_LandedArrow_Venom.png │ ├── Gas │ │ └── Smoke.png │ ├── Item │ │ ├── Drug │ │ │ └── Psycho │ │ │ │ ├── Psycho_a.png │ │ │ │ ├── Psycho_b.png │ │ │ │ └── Psycho_c.png │ │ └── Equipment │ │ │ └── WeaponRanged │ │ │ ├── AssaultRifle.png │ │ │ ├── Autopistol.png │ │ │ ├── BoltActionRifle.png │ │ │ ├── BowGreat.png │ │ │ ├── BowRecurve.png │ │ │ ├── ChainShotgun.png │ │ │ ├── ChargeRifle.png │ │ │ ├── DoomsdayLauncher.png │ │ │ ├── HeavySMG.png │ │ │ ├── HellcatRifle.png │ │ │ ├── IncendiaryLauncher.png │ │ │ ├── Incinerator.png │ │ │ ├── LMG.png │ │ │ ├── MachinePistol.png │ │ │ ├── Minigun.png │ │ │ ├── Revolver.png │ │ │ ├── RocketLauncher.png │ │ │ ├── Shotgun.png │ │ │ └── SniperRifle.png │ ├── Mote │ │ ├── BigExplode.png │ │ ├── Mote_FireSmoked.png │ │ ├── Mote_HunkerDownIcon.png │ │ └── Mote_SuppressIcon.png │ ├── Plant │ │ ├── Blazebulb │ │ │ ├── Blazebulb_a.png │ │ │ ├── Blazebulb_b.png │ │ │ └── Blazebulb_c.png │ │ └── Blazebulb_Immature │ │ │ ├── Blazebulb_a.png │ │ │ ├── Blazebulb_b.png │ │ │ └── Blazebulb_c.png │ ├── Projectile │ │ ├── Arrows │ │ │ ├── Arrow_Bioferrite.png │ │ │ ├── Arrow_Flame.png │ │ │ ├── Arrow_Iron.png │ │ │ ├── Arrow_Plasteel.png │ │ │ ├── Arrow_Steel.png │ │ │ ├── Arrow_Stone.png │ │ │ └── Arrow_Venom.png │ │ ├── Cannon │ │ │ ├── 762x385mmR │ │ │ │ ├── EMP.png │ │ │ │ └── HE.png │ │ │ ├── AP.png │ │ │ ├── APCR.png │ │ │ ├── APHE.png │ │ │ ├── Blackpowder │ │ │ │ └── CannonBall.png │ │ │ ├── EMP.png │ │ │ ├── EMPFS.png │ │ │ ├── HE.png │ │ │ ├── HEAT.png │ │ │ ├── HEATFS.png │ │ │ ├── HEFS.png │ │ │ ├── Howitzer │ │ │ │ ├── AB.png │ │ │ │ ├── ANTI.png │ │ │ │ ├── EMP.png │ │ │ │ ├── HE-BB.png │ │ │ │ ├── HE.png │ │ │ │ ├── IILUM.png │ │ │ │ ├── INC.png │ │ │ │ └── SMK.png │ │ │ └── Sabot.png │ │ ├── Charged │ │ │ ├── ChargeLanceShot.png │ │ │ └── ChargeShot.png │ │ ├── Dart │ │ │ └── Dart.png │ │ ├── Flame_CE.png │ │ ├── Fragments │ │ │ ├── Fragment_Large.png │ │ │ ├── Fragment_Medium.png │ │ │ └── Fragment_Small.png │ │ ├── Grenades │ │ │ ├── BallGrenade.png │ │ │ ├── Concussion.png │ │ │ ├── EMP.png │ │ │ ├── Firefoam.png │ │ │ ├── Flashbang.png │ │ │ ├── Frag.png │ │ │ ├── Molotov.png │ │ │ ├── Smoke.png │ │ │ ├── StickBomb.png │ │ │ └── Tox.png │ │ ├── Laser_CE.png │ │ ├── Missile │ │ │ ├── Javelin.png │ │ │ ├── MBTLAW.png │ │ │ └── TomahawkLAM.png │ │ ├── Mortar │ │ │ ├── Airburst.png │ │ │ ├── Antigrain.png │ │ │ ├── Charged.png │ │ │ ├── Deadlife.png │ │ │ ├── EMP.png │ │ │ ├── Firefoam.png │ │ │ ├── HE.png │ │ │ ├── Illumination.png │ │ │ ├── Incendiary.png │ │ │ ├── LandedDeadlifeShell.png │ │ │ ├── Smoke.png │ │ │ └── Toxic.png │ │ ├── Neolithic │ │ │ └── Pilum.png │ │ ├── RPG │ │ │ ├── Frag.png │ │ │ ├── HEAT.png │ │ │ ├── RPG28.png │ │ │ ├── RPG32_HEAT.png │ │ │ ├── RPG32_Thermobaric.png │ │ │ ├── Tandem.png │ │ │ └── Thermobaric.png │ │ ├── Recoilless │ │ │ ├── EMP.png │ │ │ ├── FRAG.png │ │ │ ├── HE-AB.png │ │ │ ├── HE.png │ │ │ ├── HEAT.png │ │ │ ├── HEDP.png │ │ │ ├── ILLUM.png │ │ │ ├── INC.png │ │ │ ├── SMK.png │ │ │ └── THERMO.png │ │ ├── RifleGrenade │ │ │ ├── HE.png │ │ │ └── HEAT.png │ │ ├── Rocket │ │ │ ├── 130mmType63.png │ │ │ ├── 132mmM13.png │ │ │ ├── 15cm_NbW.png │ │ │ ├── 70mmAPKWS.png │ │ │ ├── AT4.png │ │ │ ├── M72LAW.png │ │ │ ├── M74.png │ │ │ ├── MATADOR.png │ │ │ ├── S5 │ │ │ │ ├── HE.png │ │ │ │ ├── HEAT.png │ │ │ │ └── Thermobaric.png │ │ │ ├── S8 │ │ │ │ ├── HE.png │ │ │ │ ├── HEAT.png │ │ │ │ └── Thermobaric.png │ │ │ ├── SMAW_HEAT.png │ │ │ ├── SMAW_Thermobaric.png │ │ │ └── SPG9 │ │ │ │ ├── EMP.png │ │ │ │ ├── Frag.png │ │ │ │ ├── HEAT.png │ │ │ │ ├── Tandem.png │ │ │ │ └── Thermobaric.png │ │ ├── Shotgun_Pellet.png │ │ └── Sling │ │ │ ├── Steel.png │ │ │ └── Stone.png │ ├── Resources │ │ ├── FSX │ │ │ ├── FSX_a.png │ │ │ └── FSX_b.png │ │ └── Prometheum │ │ │ ├── Prometheum_a.png │ │ │ └── Prometheum_b.png │ ├── Special │ │ └── ArtilleryMarker.png │ ├── Weapons │ │ ├── CE_BinocularsRadio.png │ │ ├── CE_FlareGun.png │ │ ├── CE_GrenadeLauncher.png │ │ ├── CE_M72.png │ │ ├── ExplosiveBoltProjector.png │ │ └── MechanoidMinigun.png │ └── WorldObjects │ │ └── Munitions │ │ ├── Mech.png │ │ ├── Mortar.png │ │ ├── Rocket.png │ │ ├── Shell.png │ │ └── Shell_Invisible.png ├── ThirdParty │ ├── AOC │ │ ├── Ammo │ │ │ ├── AOC_EMP │ │ │ │ ├── EMP_B.png │ │ │ │ ├── EMP_C.png │ │ │ │ └── EMP_a.png │ │ │ ├── AOC_HEAT │ │ │ │ ├── HEAT_B.png │ │ │ │ ├── HEAT_C.png │ │ │ │ └── HEAT_a.png │ │ │ └── AOC_Thermobaric │ │ │ │ ├── Thermobaric_B.png │ │ │ │ ├── Thermobaric_C.png │ │ │ │ └── Thermobaric_a.png │ │ └── Projectile │ │ │ ├── AOC_EMP.png │ │ │ ├── AOC_HEAT.png │ │ │ └── AOC_Thermobaric.png │ ├── Android Tiers │ │ ├── MastiffShell │ │ │ ├── MastiffShell_a.png │ │ │ └── MastiffShell_b.png │ │ ├── ShrapnelcannonShell │ │ │ ├── ShrapnelcannonShell_a.png │ │ │ └── ShrapnelcannonShell_b.png │ │ └── X5Cartridge │ │ │ ├── X5Cartridge_a.png │ │ │ ├── X5Cartridge_b.png │ │ │ └── X5Cartridge_c.png │ ├── ArchotechWeaponry │ │ └── Ammo │ │ │ └── Archotech │ │ │ ├── Archotech_a.png │ │ │ ├── Archotech_b.png │ │ │ └── Archotech_c.png │ ├── BiologicalWarfare │ │ ├── 50mm │ │ │ ├── 50mm_a.png │ │ │ ├── 50mm_a_m.png │ │ │ ├── 50mm_b.png │ │ │ ├── 50mm_b_m.png │ │ │ ├── 50mm_c.png │ │ │ └── 50mm_c_m.png │ │ └── Grenade │ │ │ ├── Grenade_a.png │ │ │ ├── Grenade_a_m.png │ │ │ ├── Grenade_b.png │ │ │ ├── Grenade_b_m.png │ │ │ ├── Grenade_c.png │ │ │ └── Grenade_c_m.png │ ├── CP DOOM and DOOM Kit Classic │ │ ├── Doom2016BfgCell.png │ │ ├── Doom2016PlasmaCell │ │ │ ├── Doom2016PlasmaCell_150.png │ │ │ ├── Doom2016PlasmaCell_449.png │ │ │ └── Doom2016PlasmaCell_450.png │ │ ├── Doom2016Rocket │ │ │ ├── Doom2016Rocket_a.png │ │ │ ├── Doom2016Rocket_b.png │ │ │ └── Doom2016Rocket_c.png │ │ ├── DoomClassicEnergyCell │ │ │ ├── DoomClassicEnergyCell_020.png │ │ │ ├── DoomClassicEnergyCell_099.png │ │ │ └── DoomClassicEnergyCell_100.png │ │ └── DoomClassicRocket │ │ │ ├── DoomClassicRocket_a.png │ │ │ ├── DoomClassicRocket_b.png │ │ │ └── DoomClassicRocket_c.png │ ├── CP Metal Gear Solid │ │ ├── Pistol │ │ │ └── NL │ │ │ │ ├── NL_a.png │ │ │ │ ├── NL_b.png │ │ │ │ └── NL_c.png │ │ └── Rifle │ │ │ └── NL │ │ │ ├── NL_a.png │ │ │ ├── NL_b.png │ │ │ └── NL_c.png │ ├── CoD Zombies Pack │ │ ├── Acidgat │ │ │ └── CodZP_GatsAmmo_a.png │ │ ├── Blizzard │ │ │ ├── CodZP_BlizzardAmmo_a.png │ │ │ └── CodZP_BlizzardAmmo_b.png │ │ ├── Blundergat │ │ │ └── CodZP_GatsAmmo_a.png │ │ ├── Crystal_Fire │ │ │ └── Crystal_Fire_a.png │ │ ├── Crystal_Ice │ │ │ └── Crystal_Ice_a.png │ │ ├── Crystal_Lightning │ │ │ └── Crystal_Lightning_a.png │ │ ├── Crystal_Wind │ │ │ └── Crystal_Wind_a.png │ │ ├── Magmagat │ │ │ └── CodZP_GatsAmmo_a.png │ │ ├── Raygun │ │ │ ├── 1 │ │ │ │ ├── CodZP_RaygunAmmo_a.png │ │ │ │ └── CodZP_RaygunAmmo_b.png │ │ │ └── 2 │ │ │ │ ├── Base │ │ │ │ └── CodZP_Raygun2Ammo_c.png │ │ │ │ ├── Porter │ │ │ │ └── CodZP_Raygun2Ammo_c.png │ │ │ │ ├── V │ │ │ │ └── CodZP_Raygun2Ammo_c.png │ │ │ │ ├── X │ │ │ │ └── CodZP_Raygun2Ammo_c.png │ │ │ │ ├── Y │ │ │ │ └── CodZP_Raygun2Ammo_c.png │ │ │ │ └── Z │ │ │ │ └── CodZP_Raygun2Ammo_c.png │ │ ├── Thunder │ │ │ ├── CodZP_ThunderAmmo_a.png │ │ │ └── CodZP_ThunderAmmo_b.png │ │ ├── Tundra │ │ │ ├── CodZP_TundraAmmo_a.png │ │ │ └── CodZP_TundraAmmo_b.png │ │ └── Wunder │ │ │ └── Wunder_a.png │ ├── Forsakens │ │ └── FAmmoArrow │ │ │ ├── FAmmoArrow_a.png │ │ │ ├── FAmmoArrow_b.png │ │ │ └── FAmmoArrow_c.png │ ├── GasTraps │ │ ├── HandGrenade │ │ │ ├── Gas_a.png │ │ │ ├── Gas_a_m.png │ │ │ ├── Gas_b.png │ │ │ ├── Gas_b_m.png │ │ │ ├── Gas_c.png │ │ │ └── Gas_c_m.png │ │ ├── Mortar │ │ │ ├── gas_mortar_a.png │ │ │ ├── gas_mortar_a_m.png │ │ │ ├── gas_mortar_b.png │ │ │ └── gas_mortar_b_m.png │ │ ├── gas_grenade_projectile.png │ │ ├── gas_grenade_projectile_m.png │ │ ├── gas_mortar_projectile.png │ │ └── gas_mortar_projectile_m.png │ ├── InfinityRimAriadna │ │ ├── Chain │ │ │ ├── Chain_a.png │ │ │ ├── Chain_b.png │ │ │ └── Chain_c.png │ │ ├── MicroMissile_projectile.png │ │ ├── Micro_Missile │ │ │ ├── Micro_Missile_a.png │ │ │ ├── Micro_Missile_b.png │ │ │ └── Micro_Missile_c.png │ │ ├── TeseumAC │ │ │ ├── TeseumAC_a.png │ │ │ ├── TeseumAC_b.png │ │ │ └── TeseumAC_c.png │ │ ├── TeseumHeavy │ │ │ ├── TeseumHeavy_a.png │ │ │ ├── TeseumHeavy_b.png │ │ │ └── TeseumHeavy_c.png │ │ ├── TeseumPistol │ │ │ ├── TeseumPistol_a.png │ │ │ ├── TeseumPistol_b.png │ │ │ └── TeseumPistol_c.png │ │ └── TeseumRifle │ │ │ ├── TeseumRifle_a.png │ │ │ ├── TeseumRifle_b.png │ │ │ └── TeseumRifle_c.png │ ├── Kit's Weapons │ │ ├── Ammo │ │ │ └── HandMortar │ │ │ │ └── MortarGrenade.png │ │ └── Projectile │ │ │ └── SteelBall.png │ ├── MassEffect │ │ ├── Heatsink │ │ │ ├── Heatsink_30.png │ │ │ ├── Heatsink_499.png │ │ │ └── Heatsink_500.png │ │ ├── ME_AP │ │ │ ├── ME_AP_30.png │ │ │ ├── ME_AP_499.png │ │ │ └── ME_AP_500.png │ │ ├── ME_Cryo │ │ │ ├── ME_Cryo_30.png │ │ │ ├── ME_Cryo_499.png │ │ │ └── ME_Cryo_500.png │ │ ├── ME_EMP │ │ │ ├── ME_EMP_30.png │ │ │ ├── ME_EMP_499.png │ │ │ └── ME_EMP_500.png │ │ ├── ME_FI │ │ │ ├── ME_FI_30.png │ │ │ ├── ME_FI_499.png │ │ │ └── ME_FI_500.png │ │ ├── ME_HE │ │ │ ├── ME_HE_30.png │ │ │ ├── ME_HE_499.png │ │ │ └── ME_HE_500.png │ │ └── ME_Toxic │ │ │ ├── ME_Toxic_30.png │ │ │ ├── ME_Toxic_499.png │ │ │ └── ME_Toxic_500.png │ ├── More Vanilla Turrets │ │ ├── PlasmaMortarProj.png │ │ └── PlasmaMortarShell.png │ ├── Orassans │ │ └── Ammo │ │ │ ├── Canister │ │ │ ├── Aprometheum │ │ │ │ ├── Aprometheum_a.png │ │ │ │ └── Aprometheum_b.png │ │ │ ├── Cryo │ │ │ │ ├── Cryo_a.png │ │ │ │ └── Cryo_b.png │ │ │ ├── Napalm │ │ │ │ ├── Napalm_a.png │ │ │ │ └── Napalm_b.png │ │ │ └── Thermobaric │ │ │ │ ├── Thermobaric_a.png │ │ │ │ └── Thermobaric_b.png │ │ │ ├── Grenade │ │ │ ├── Cryo │ │ │ │ ├── Cryo_a.png │ │ │ │ ├── Cryo_b.png │ │ │ │ └── Cryo_c.png │ │ │ ├── HEAT │ │ │ │ ├── HEAT_a.png │ │ │ │ ├── HEAT_b.png │ │ │ │ └── HEAT_c.png │ │ │ ├── HELL │ │ │ │ ├── HE_a.png │ │ │ │ ├── HE_b.png │ │ │ │ └── HE_c.png │ │ │ └── Thermobaric │ │ │ │ ├── Thermobaric_a.png │ │ │ │ ├── Thermobaric_b.png │ │ │ │ └── Thermobaric_c.png │ │ │ └── Shotgun │ │ │ ├── RailShot │ │ │ ├── RailShot_a.png │ │ │ ├── RailShot_b.png │ │ │ └── RailShot_c.png │ │ │ └── RailSlug │ │ │ ├── RailSlug_a.png │ │ │ ├── RailSlug_b.png │ │ │ └── RailSlug_c.png │ ├── PsyBlasters │ │ ├── LargeFocus │ │ │ ├── LargeFocus_a.png │ │ │ ├── LargeFocus_b.png │ │ │ └── LargeFocus_c.png │ │ ├── LargeNeuro │ │ │ ├── LargeNeuro_a.png │ │ │ ├── LargeNeuro_b.png │ │ │ └── LargeNeuro_c.png │ │ ├── LargePsy │ │ │ ├── LargePsy_a.png │ │ │ ├── LargePsy_b.png │ │ │ └── LargePsy_c.png │ │ ├── MediumFocus │ │ │ ├── MediumFocus_a.png │ │ │ ├── MediumFocus_b.png │ │ │ └── MediumFocus_c.png │ │ ├── MediumNeuro │ │ │ ├── MediumNeuro_a.png │ │ │ ├── MediumNeuro_b.png │ │ │ └── MediumNeuro_c.png │ │ ├── MediumPsy │ │ │ ├── MediumPsy_a.png │ │ │ ├── MediumPsy_b.png │ │ │ └── MediumPsy_c.png │ │ ├── ShotgunFocus │ │ │ ├── ShotgunFocus_a.png │ │ │ ├── ShotgunFocus_b.png │ │ │ └── ShotgunFocus_c.png │ │ ├── ShotgunNeuro │ │ │ ├── ShotgunNeuro_a.png │ │ │ ├── ShotgunNeuro_b.png │ │ │ └── ShotgunNeuro_c.png │ │ ├── ShotgunPsy │ │ │ ├── ShotgunPsy_a.png │ │ │ ├── ShotgunPsy_b.png │ │ │ └── ShotgunPsy_c.png │ │ ├── SmallFocus │ │ │ ├── SmallFocus_a.png │ │ │ ├── SmallFocus_b.png │ │ │ └── SmallFocus_c.png │ │ ├── SmallNeuro │ │ │ ├── SmallNeuro_a.png │ │ │ ├── SmallNeuro_b.png │ │ │ └── SmallNeuro_c.png │ │ └── SmallPsy │ │ │ ├── SmallPsy_a.png │ │ │ ├── SmallPsy_b.png │ │ │ └── SmallPsy_c.png │ ├── Pulse Weaponry │ │ └── DE Pulse │ │ │ ├── PulseAmmo_a.png │ │ │ ├── PulseAmmo_b.png │ │ │ └── PulseAmmo_c.png │ ├── Rimefeller │ │ ├── Things │ │ │ └── Resource │ │ │ │ ├── NapalmBomb.png │ │ │ │ └── OilBarrel.png │ │ └── UI │ │ │ ├── NapalmBomb.png │ │ │ ├── NapalmSpill.png │ │ │ ├── NapalmSpill_bp.png │ │ │ └── OilBarrel.png │ ├── Rimmu-Nation - Weapons │ │ └── BallisticKnifeBlade.png │ ├── Rimsenal │ │ ├── CompoundArrows │ │ │ ├── Compound_a.png │ │ │ ├── Compound_b.png │ │ │ └── Compound_c.png │ │ ├── GrenadeLauncher │ │ │ ├── BS │ │ │ │ ├── BS_a.png │ │ │ │ ├── BS_b.png │ │ │ │ └── BS_c.png │ │ │ └── INC │ │ │ │ ├── INC_a.png │ │ │ │ ├── INC_b.png │ │ │ │ └── INC_c.png │ │ ├── JI │ │ │ ├── JI_Molten │ │ │ │ ├── MoltenCartridge_a.png │ │ │ │ ├── MoltenCartridge_b.png │ │ │ │ └── MoltenCartridge_c.png │ │ │ └── JI_Shell │ │ │ │ ├── SiegeRocket_a.png │ │ │ │ ├── SiegeRocket_b.png │ │ │ │ └── SiegeRocket_c.png │ │ ├── Pipebomb.png │ │ ├── TE │ │ │ ├── TE_a.png │ │ │ ├── TE_b.png │ │ │ └── TE_c.png │ │ └── YP │ │ │ ├── YP_a.png │ │ │ ├── YP_b.png │ │ │ └── YP_c.png │ ├── RoyalArsenal │ │ ├── MonoBodkin │ │ │ ├── MonoBodkin_a.png │ │ │ ├── MonoBodkin_b.png │ │ │ └── MonoBodkin_c.png │ │ ├── MonoBroadhead │ │ │ ├── MonoBroadhead_a.png │ │ │ ├── MonoBroadhead_b.png │ │ │ └── MonoBroadhead_c.png │ │ └── ThunderJavelin │ │ │ ├── ThunderJavelin_a.png │ │ │ ├── ThunderJavelin_b.png │ │ │ └── ThunderJavelin_c.png │ ├── StarWars │ │ ├── Ammo │ │ │ ├── KnockoutDart │ │ │ │ ├── KnockoutDart_a.png │ │ │ │ ├── KnockoutDart_b.png │ │ │ │ └── KnockoutDart_c.png │ │ │ ├── OR_MiniRocket │ │ │ │ ├── OR_MiniRocket_a.png │ │ │ │ ├── OR_MiniRocket_b.png │ │ │ │ └── OR_MiniRocket_c.png │ │ │ └── OR_RPS6 │ │ │ │ ├── OR_RPS6_a.png │ │ │ │ ├── OR_RPS6_b.png │ │ │ │ └── OR_RPS6_c.png │ │ └── Projectile │ │ │ ├── OR_CryoBanGrenade.png │ │ │ ├── OR_FragGrenade.png │ │ │ ├── OR_IonGrenade.png │ │ │ ├── OR_PlasmaGrenade.png │ │ │ ├── OR_SonicGrenade.png │ │ │ ├── OR_StunGrenade.png │ │ │ └── OR_ThermalDetonator.png │ ├── VanillaExpanded │ │ └── Crypto │ │ │ ├── Crypto_a.png │ │ │ ├── Crypto_b.png │ │ │ └── Crypto_c.png │ ├── VanillaXCOM │ │ ├── Laser │ │ │ ├── EM │ │ │ │ ├── LaserBattery_emp_15.png │ │ │ │ ├── LaserBattery_emp_499.png │ │ │ │ └── LaserBattery_emp_500.png │ │ │ ├── Infrared │ │ │ │ ├── LaserBattery_inc_15.png │ │ │ │ ├── LaserBattery_inc_499.png │ │ │ │ └── LaserBattery_inc_500.png │ │ │ ├── Standard │ │ │ │ ├── LaserBattery_standard_15.png │ │ │ │ ├── LaserBattery_standard_499.png │ │ │ │ └── LaserBattery_standard_500.png │ │ │ └── Ultraviolet │ │ │ │ ├── LaserBattery_hp_15.png │ │ │ │ ├── LaserBattery_hp_499.png │ │ │ │ └── LaserBattery_hp_500.png │ │ ├── Plasma │ │ │ ├── Dense │ │ │ │ ├── Heavy │ │ │ │ │ ├── Dense_Heavy_3.png │ │ │ │ │ ├── Dense_Heavy_74.png │ │ │ │ │ └── Dense_Heavy_75.png │ │ │ │ ├── Pistol │ │ │ │ │ ├── Dense_Pistol_15.png │ │ │ │ │ ├── Dense_Pistol_499.png │ │ │ │ │ └── Dense_Pistol_500.png │ │ │ │ └── Rifle │ │ │ │ │ ├── Dense_Rifle_30.png │ │ │ │ │ ├── Dense_Rifle_499.png │ │ │ │ │ └── Dense_Rifle_500.png │ │ │ ├── Light │ │ │ │ ├── Heavy │ │ │ │ │ ├── Light_Heavy_3.png │ │ │ │ │ ├── Light_Heavy_74.png │ │ │ │ │ └── Light_Heavy_75.png │ │ │ │ ├── Pistol │ │ │ │ │ ├── Light_Pistol_15.png │ │ │ │ │ ├── Light_Pistol_499.png │ │ │ │ │ └── Light_Pistol_500.png │ │ │ │ └── Rifle │ │ │ │ │ ├── Light_Rifle_30.png │ │ │ │ │ ├── Light_Rifle_499.png │ │ │ │ │ └── Light_Rifle_500.png │ │ │ ├── Standard │ │ │ │ ├── Heavy │ │ │ │ │ ├── Standard_Heavy_3.png │ │ │ │ │ ├── Standard_Heavy_74.png │ │ │ │ │ └── Standard_Heavy_75.png │ │ │ │ ├── Pistol │ │ │ │ │ ├── Standard_Pistol_15.png │ │ │ │ │ ├── Standard_Pistol_499.png │ │ │ │ │ └── Standard_Pistol_500.png │ │ │ │ └── Rifle │ │ │ │ │ ├── Standard_Rifle_30.png │ │ │ │ │ ├── Standard_Rifle_499.png │ │ │ │ │ └── Standard_Rifle_500.png │ │ │ └── Unstable │ │ │ │ ├── Heavy │ │ │ │ ├── Unstable_Heavy_3.png │ │ │ │ ├── Unstable_Heavy_74.png │ │ │ │ └── Unstable_Heavy_75.png │ │ │ │ ├── Pistol │ │ │ │ ├── Unstable_Pistol_15.png │ │ │ │ ├── Unstable_Pistol_499.png │ │ │ │ └── Unstable_Pistol_500.png │ │ │ │ └── Rifle │ │ │ │ ├── Unstable_Rifle_30.png │ │ │ │ ├── Unstable_Rifle_499.png │ │ │ │ └── Unstable_Rifle_500.png │ │ └── Railgun │ │ │ ├── APHE │ │ │ ├── HighCaliber │ │ │ │ ├── APHE_HighCaliber_10.png │ │ │ │ ├── APHE_HighCaliber_19.png │ │ │ │ └── APHE_HighCaliber_20.png │ │ │ ├── Pistol │ │ │ │ ├── APHE_Pistol_15.png │ │ │ │ ├── APHE_Pistol_499.png │ │ │ │ └── APHE_Pistol_500.png │ │ │ └── Rifle │ │ │ │ ├── APHE_Rifle_30.png │ │ │ │ ├── APHE_Rifle_499.png │ │ │ │ └── APHE_Rifle_500.png │ │ │ ├── API │ │ │ ├── HighCaliber │ │ │ │ ├── API_HighCaliber_10.png │ │ │ │ ├── API_HighCaliber_19.png │ │ │ │ └── API_HighCaliber_20.png │ │ │ ├── Pistol │ │ │ │ ├── API_Pistol_15.png │ │ │ │ ├── API_Pistol_499.png │ │ │ │ └── API_Pistol_500.png │ │ │ └── Rifle │ │ │ │ ├── API_Rifle_30.png │ │ │ │ ├── API_Rifle_499.png │ │ │ │ └── API_Rifle_500.png │ │ │ └── EMP │ │ │ ├── HighCaliber │ │ │ ├── EMP_HighCaliber_10.png │ │ │ ├── EMP_HighCaliber_19.png │ │ │ └── EMP_HighCaliber_20.png │ │ │ ├── Pistol │ │ │ ├── EMP_Pistol_15.png │ │ │ ├── EMP_Pistol_499.png │ │ │ └── EMP_Pistol_500.png │ │ │ └── Rifle │ │ │ ├── EMP_Rifle_30.png │ │ │ ├── EMP_Rifle_499.png │ │ │ └── EMP_Rifle_500.png │ ├── Volt Weaponry │ │ └── Ammo │ │ │ └── VoltBattery │ │ │ ├── VoltBattery_a.png │ │ │ ├── VoltBattery_b.png │ │ │ └── VoltBattery_c.png │ └── Warhammer │ │ ├── Ammo │ │ ├── AutoCannon │ │ │ ├── AutoCannonAmmo_a.png │ │ │ ├── AutoCannonAmmo_b.png │ │ │ └── AutoCannonAmmo_c.png │ │ ├── AutogunAmmo │ │ │ ├── AutogunAmmo_a.png │ │ │ ├── AutogunAmmo_b.png │ │ │ └── AutogunAmmo_c.png │ │ ├── BattleCannon │ │ │ ├── BattleCannonShell_a.png │ │ │ ├── BattleCannonShell_b.png │ │ │ └── BattleCannonShell_c.png │ │ ├── Bolter │ │ │ ├── Inferno │ │ │ │ ├── BolterSmall_Inferno_a.png │ │ │ │ ├── BolterSmall_Inferno_b.png │ │ │ │ └── BolterSmall_Inferno_c.png │ │ │ ├── Kraken │ │ │ │ ├── BolterSmall_Kraken_a.png │ │ │ │ ├── BolterSmall_Kraken_b.png │ │ │ │ └── BolterSmall_Kraken_c.png │ │ │ ├── MetalStorm │ │ │ │ ├── BolterSmall_MetalStorm_a.png │ │ │ │ ├── BolterSmall_MetalStorm_b.png │ │ │ │ └── BolterSmall_MetalStorm_c.png │ │ │ ├── Standard │ │ │ │ ├── BolterSmall_Standard_a.png │ │ │ │ ├── BolterSmall_Standard_b.png │ │ │ │ └── BolterSmall_Standard_c.png │ │ │ └── Tempest │ │ │ │ ├── BolterSmall_Tempest_a.png │ │ │ │ ├── BolterSmall_Tempest_b.png │ │ │ │ └── BolterSmall_Tempest_c.png │ │ ├── GW_Bolter │ │ │ ├── Hellfire │ │ │ │ ├── HellfireAmmo_a.png │ │ │ │ ├── HellfireAmmo_b.png │ │ │ │ └── HellfireAmmo_c.png │ │ │ ├── Inferno │ │ │ │ ├── InfernoAmmo_a.png │ │ │ │ ├── InfernoAmmo_b.png │ │ │ │ └── InfernoAmmo_c.png │ │ │ ├── Korvidari │ │ │ │ ├── KorvidariAmmo_a.png │ │ │ │ ├── KorvidariAmmo_b.png │ │ │ │ └── KorvidariAmmo_c.png │ │ │ ├── Kraken │ │ │ │ ├── KrakenAmmo_a.png │ │ │ │ ├── KrakenAmmo_b.png │ │ │ │ └── KrakenAmmo_c.png │ │ │ ├── Tempest │ │ │ │ ├── TempestAmmo_a.png │ │ │ │ ├── TempestAmmo_b.png │ │ │ │ └── TempestAmmo_c.png │ │ │ └── Vengeance │ │ │ │ ├── VengenceAmmo_a.png │ │ │ │ ├── VengenceAmmo_b.png │ │ │ │ └── VengenceAmmo_c.png │ │ ├── GW_HeavyBolter │ │ │ ├── HeavyBolter1.0CAL_a.png │ │ │ ├── HeavyBolter1.0CAL_b.png │ │ │ └── HeavyBolter1.0CAL_c.png │ │ ├── Grav │ │ │ ├── GravGun_a.png │ │ │ ├── GravGun_b.png │ │ │ └── GravGun_c.png │ │ ├── HeavyBolter │ │ │ ├── Inferno │ │ │ │ ├── BolterLarge_Inferno_a.png │ │ │ │ ├── BolterLarge_Inferno_b.png │ │ │ │ └── BolterLarge_Inferno_c.png │ │ │ ├── Kraken │ │ │ │ ├── BolterLarge_Kraken_a.png │ │ │ │ ├── BolterLarge_Kraken_b.png │ │ │ │ └── BolterLarge_Kraken_c.png │ │ │ ├── MetalStorm │ │ │ │ ├── BolterLarge_MetalStorm_a.png │ │ │ │ ├── BolterLarge_MetalStorm_b.png │ │ │ │ └── BolterLarge_MetalStorm_c.png │ │ │ ├── Standard │ │ │ │ ├── BolterLarge_Standard_a.png │ │ │ │ ├── BolterLarge_Standard_b.png │ │ │ │ └── BolterLarge_Standard_c.png │ │ │ └── Tempest │ │ │ │ ├── BolterLarge_Tempest_a.png │ │ │ │ ├── BolterLarge_Tempest_b.png │ │ │ │ └── BolterLarge_Tempest_c.png │ │ ├── Lasgun │ │ │ ├── LasgunBattery_100.png │ │ │ ├── LasgunBattery_200.png │ │ │ └── LasgunBattery_300.png │ │ ├── MeltaGun │ │ │ ├── MeltaGun_a.png │ │ │ ├── MeltaGun_b.png │ │ │ └── MeltaGun_c.png │ │ ├── PlasmaCanister │ │ │ ├── PlasmaCanister_a.png │ │ │ └── PlasmaCanister_b.png │ │ └── PlasmaGun │ │ │ ├── PlasmaGun_a.png │ │ │ ├── PlasmaGun_b.png │ │ │ └── PlasmaGun_c.png │ │ ├── Building │ │ └── Loading Bench │ │ │ ├── GW_LoadingBench_east.png │ │ │ ├── GW_LoadingBench_north.png │ │ │ └── GW_LoadingBench_south.png │ │ ├── Casings │ │ ├── Mote_CasingBolterLarge.png │ │ └── Mote_CasingBolterSmall.png │ │ ├── Projectiles │ │ ├── BoltPistol_Proj.png │ │ ├── Las_Bolt.png │ │ ├── MeltaBeam.png │ │ └── MeltaProjectile.png │ │ └── UI │ │ ├── BoltGunAmmoUI.png │ │ ├── HeavyBolter1.0CAL_UI.png │ │ ├── HellfireAmmoUI.png │ │ ├── InfernoAmmoUI.png │ │ ├── KorvidariAmmoUI.png │ │ ├── KrakenAmmoUI.png │ │ ├── MeltaGunAmmoUI.png │ │ ├── PlasmaGunAmmoUI.png │ │ ├── PlasmaRifleAmmoUI.png │ │ ├── TempestAmmoUI.png │ │ └── VengenceAmmoUI.png └── UI │ ├── Buttons │ ├── AdjustFireArc.png │ ├── AimedShot.png │ ├── AimedShotBurst.png │ ├── AimedShotSingle.png │ ├── AttackWorldTile.png │ ├── AutoFire.png │ ├── BurstFire.png │ ├── CE_AutoLoader_Drop.png │ ├── CE_AutoLoader_Reload.png │ ├── CE_AutoLoader_ReplaceOff.png │ ├── CE_AutoLoader_ReplaceOn.png │ ├── CE_CIWS_Projectile.png │ ├── CE_CIWS_Skyfaller.png │ ├── HoldFire.png │ ├── Reload.png │ ├── SetMagCount.png │ ├── SingleFire.png │ ├── Snapshot.png │ ├── SnapshotBurst.png │ ├── SnapshotSingle.png │ ├── SuppressFire.png │ ├── TakeAmmoNow.png │ ├── Targetting │ │ ├── auto.png │ │ ├── center.png │ │ ├── head.png │ │ └── legs.png │ ├── TargettingMelee │ │ ├── Bottom.png │ │ ├── Middle.png │ │ ├── Top.png │ │ └── Undefined.png │ ├── closed_bipod.png │ └── open_bipod.png │ └── Icons │ ├── CE_ModIcon_JustHat.png │ ├── Medical │ ├── Stabilized_Icon.png │ └── Stabilized_Icon_old.png │ ├── ThingCategories │ ├── Ammo.png │ ├── AmmoAdvanced.png │ ├── AmmoGrenades.png │ ├── AmmoHighCaliber.png │ ├── AmmoMedieval.png │ ├── AmmoMissiles.png │ ├── AmmoNeolithic.png │ ├── AmmoPistols.png │ ├── AmmoRifles.png │ ├── AmmoRockets.png │ ├── AmmoShells.png │ ├── AmmoShotguns.png │ ├── CaliberArrow.png │ ├── CaliberAutocannonLarge.png │ ├── CaliberCannon.png │ ├── CaliberCharge.png │ ├── CaliberChargeLarge.png │ ├── CaliberFlare.png │ ├── CaliberFuel.png │ ├── CaliberFuelLarge.png │ ├── CaliberGrenade.png │ ├── CaliberHighCaliber.png │ ├── CaliberMortar.png │ ├── CaliberPistol.png │ ├── CaliberPlasmaLarge.png │ ├── CaliberPlasmaMedium.png │ ├── CaliberPlasmaSmall.png │ ├── CaliberRailgunHighCaliber.png │ ├── CaliberRailgunPistol.png │ ├── CaliberRailgunRifle.png │ ├── CaliberRifle.png │ ├── CaliberRocket.png │ ├── CaliberShotgun.png │ └── CaliberStone.png │ ├── Turrets │ ├── AGS30_uiIcon.png │ ├── ChargeBlaster_uiIcon.png │ ├── FlakTurret_uiIcon.png │ ├── HeavyAutoTurret_uiIcon.png │ ├── KPV_uiIcon.png │ ├── M240B_uiIcon.png │ └── MediumAutoTurret_uiIcon.png │ ├── all.png │ ├── ammo.png │ ├── ammoAdd.png │ ├── arrowBottom.png │ ├── arrowDown.png │ ├── arrowTop.png │ ├── arrowUp.png │ ├── clear.png │ ├── cog.png │ ├── edit.png │ ├── gear.png │ ├── generic.png │ ├── loadoutDropExcess.png │ ├── loadoutPickupDrop.png │ ├── melee.png │ ├── minified.png │ ├── move.png │ ├── ranged.png │ └── search.png ├── Workspace.code-workspace └── global.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/patch-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/.github/ISSUE_TEMPLATE/patch-request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/backports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/.github/workflows/backports.yml -------------------------------------------------------------------------------- /.github/workflows/code-style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/.github/workflows/code-style.yml -------------------------------------------------------------------------------- /.github/workflows/duplicates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/.github/workflows/duplicates.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pullrequest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/.github/workflows/pullrequest.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/.gitignore -------------------------------------------------------------------------------- /About/About.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/About/About.xml -------------------------------------------------------------------------------- /About/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/About/Preview.png -------------------------------------------------------------------------------- /About/PublishedFileId.txt: -------------------------------------------------------------------------------- 1 | 2890901044 -------------------------------------------------------------------------------- /Anomaly/Defs/Ammo/Flamethrower_Burst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Defs/Ammo/Flamethrower_Burst.xml -------------------------------------------------------------------------------- /Anomaly/Defs/Ammo/NerveSpikerBolt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Defs/Ammo/NerveSpikerBolt.xml -------------------------------------------------------------------------------- /Anomaly/Defs/HediffDefs/Hediffs_Anomaly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Defs/HediffDefs/Hediffs_Anomaly.xml -------------------------------------------------------------------------------- /Anomaly/Patches/Bodies/Devourer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Patches/Bodies/Devourer.xml -------------------------------------------------------------------------------- /Anomaly/Patches/Bodies/Dreadmeld.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Patches/Bodies/Dreadmeld.xml -------------------------------------------------------------------------------- /Anomaly/Patches/Bodies/Fingerspike.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Patches/Bodies/Fingerspike.xml -------------------------------------------------------------------------------- /Anomaly/Patches/Bodies/Fleshbulb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Patches/Bodies/Fleshbulb.xml -------------------------------------------------------------------------------- /Anomaly/Patches/Bodies/FleshmassNucleus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Patches/Bodies/FleshmassNucleus.xml -------------------------------------------------------------------------------- /Anomaly/Patches/Bodies/Gorehulk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Patches/Bodies/Gorehulk.xml -------------------------------------------------------------------------------- /Anomaly/Patches/Bodies/Metalhorror.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Patches/Bodies/Metalhorror.xml -------------------------------------------------------------------------------- /Anomaly/Patches/Bodies/Nociosphere.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Patches/Bodies/Nociosphere.xml -------------------------------------------------------------------------------- /Anomaly/Patches/Bodies/Noctol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Patches/Bodies/Noctol.xml -------------------------------------------------------------------------------- /Anomaly/Patches/Bodies/Toughspike.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Patches/Bodies/Toughspike.xml -------------------------------------------------------------------------------- /Anomaly/Patches/Bodies/Trispike.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Patches/Bodies/Trispike.xml -------------------------------------------------------------------------------- /Anomaly/Patches/CreepjoinderDefs/Forms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Patches/CreepjoinderDefs/Forms.xml -------------------------------------------------------------------------------- /Anomaly/Patches/Hediffs/Hediffs_Misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Patches/Hediffs/Hediffs_Misc.xml -------------------------------------------------------------------------------- /Anomaly/Patches/Hediffs/Hediffs_Mutants.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Patches/Hediffs/Hediffs_Mutants.xml -------------------------------------------------------------------------------- /Anomaly/Patches/Misc/Mutants.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Patches/Misc/Mutants.xml -------------------------------------------------------------------------------- /Anomaly/Patches/Scenarios/Scenarios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Anomaly/Patches/Scenarios/Scenarios.xml -------------------------------------------------------------------------------- /Assemblies/CombatExtendedLoader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Assemblies/CombatExtendedLoader.dll -------------------------------------------------------------------------------- /Biotech/Patches/Bodies/Mech_Centurion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Biotech/Patches/Bodies/Mech_Centurion.xml -------------------------------------------------------------------------------- /Biotech/Patches/Bodies/Mech_Diabolus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Biotech/Patches/Bodies/Mech_Diabolus.xml -------------------------------------------------------------------------------- /Biotech/Patches/Bodies/Mech_Warqueen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Biotech/Patches/Bodies/Mech_Warqueen.xml -------------------------------------------------------------------------------- /Biotech/Patches/DamageDefs/Damages_Misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Biotech/Patches/DamageDefs/Damages_Misc.xml -------------------------------------------------------------------------------- /Biotech/Patches/GeneDefs/GeneDefs_Misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Biotech/Patches/GeneDefs/GeneDefs_Misc.xml -------------------------------------------------------------------------------- /BuildCompat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/BuildCompat.py -------------------------------------------------------------------------------- /Building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Building.md -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/10x18mmCharged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/10x18mmCharged.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/12GaugeCharged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/12GaugeCharged.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/12mmRailgun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/12mmRailgun.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/12x64mmCharged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/12x64mmCharged.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/12x72mmCharged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/12x72mmCharged.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/164x284mmDemoShell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/164x284mmDemoShell.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/20x105mmCharged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/20x105mmCharged.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/30x64mmFuelCell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/30x64mmFuelCell.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/5x16mmCharged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/5x16mmCharged.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/5x35mmCharged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/5x35mmCharged.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/5x50mmCaseless.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/5x50mmCaseless.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/60x225mmGammaShell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/60x225mmGammaShell.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/66mmThermalBolt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/66mmThermalBolt.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/6mmRailgun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/6mmRailgun.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/6x18mmCharged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/6x18mmCharged.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/6x22mmCharged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/6x22mmCharged.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/6x24mmCharged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/6x24mmCharged.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/70mmMechanoidGrenade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/70mmMechanoidGrenade.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/80x256mmFuelCell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/80x256mmFuelCell.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/8mmRailgun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/8mmRailgun.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/8x35mmCharged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/8x35mmCharged.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/8x40mmCharged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/8x40mmCharged.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/8x50mmCharged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/8x50mmCharged.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/LaserChargePack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/LaserChargePack.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/PlasmaCellHeavy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/PlasmaCellHeavy.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/PlasmaCellPistol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/PlasmaCellPistol.xml -------------------------------------------------------------------------------- /Defs/Ammo/Advanced/PlasmaCellRifle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Advanced/PlasmaCellRifle.xml -------------------------------------------------------------------------------- /Defs/Ammo/AmmoBases.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/AmmoBases.xml -------------------------------------------------------------------------------- /Defs/Ammo/Generic/AntiMateriel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Generic/AntiMateriel.xml -------------------------------------------------------------------------------- /Defs/Ammo/Generic/Autocannon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Generic/Autocannon.xml -------------------------------------------------------------------------------- /Defs/Ammo/Generic/Charged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Generic/Charged.xml -------------------------------------------------------------------------------- /Defs/Ammo/Generic/Generics_Misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Generic/Generics_Misc.xml -------------------------------------------------------------------------------- /Defs/Ammo/Generic/LauncherGrenade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Generic/LauncherGrenade.xml -------------------------------------------------------------------------------- /Defs/Ammo/Generic/Mech.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Generic/Mech.xml -------------------------------------------------------------------------------- /Defs/Ammo/Generic/Pistol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Generic/Pistol.xml -------------------------------------------------------------------------------- /Defs/Ammo/Generic/PistolMagnum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Generic/PistolMagnum.xml -------------------------------------------------------------------------------- /Defs/Ammo/Generic/Rifle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Generic/Rifle.xml -------------------------------------------------------------------------------- /Defs/Ammo/Generic/RifleIntermediate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Generic/RifleIntermediate.xml -------------------------------------------------------------------------------- /Defs/Ammo/Generic/RifleMagnum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Generic/RifleMagnum.xml -------------------------------------------------------------------------------- /Defs/Ammo/Generic/Shell_Artillery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Generic/Shell_Artillery.xml -------------------------------------------------------------------------------- /Defs/Ammo/Generic/Shell_Cannon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Generic/Shell_Cannon.xml -------------------------------------------------------------------------------- /Defs/Ammo/Generic/ShotgunShell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Generic/ShotgunShell.xml -------------------------------------------------------------------------------- /Defs/Ammo/Grenade/20x42mmGrenade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Grenade/20x42mmGrenade.xml -------------------------------------------------------------------------------- /Defs/Ammo/Grenade/25x40mmGrenade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Grenade/25x40mmGrenade.xml -------------------------------------------------------------------------------- /Defs/Ammo/Grenade/25x59mmGrenade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Grenade/25x59mmGrenade.xml -------------------------------------------------------------------------------- /Defs/Ammo/Grenade/30x29mmGrenade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Grenade/30x29mmGrenade.xml -------------------------------------------------------------------------------- /Defs/Ammo/Grenade/35x32mmSRGrenade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Grenade/35x32mmSRGrenade.xml -------------------------------------------------------------------------------- /Defs/Ammo/Grenade/40x46mmGrenade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Grenade/40x46mmGrenade.xml -------------------------------------------------------------------------------- /Defs/Ammo/Grenade/40x47mmGrenade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Grenade/40x47mmGrenade.xml -------------------------------------------------------------------------------- /Defs/Ammo/Grenade/40x53mmGrenade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Grenade/40x53mmGrenade.xml -------------------------------------------------------------------------------- /Defs/Ammo/Grenade/40x53mmVOG25Grenade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Grenade/40x53mmVOG25Grenade.xml -------------------------------------------------------------------------------- /Defs/Ammo/Grenade/50mmGS50Grenade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Grenade/50mmGS50Grenade.xml -------------------------------------------------------------------------------- /Defs/Ammo/Grenade/83mmPIATGrenade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Grenade/83mmPIATGrenade.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/12.7x108mmSoviet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/12.7x108mmSoviet.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/13.2x92mmSRTuF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/13.2x92mmSRTuF.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/14.5x114mmSoviet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/14.5x114mmSoviet.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/15.2x169mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/15.2x169mm.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/2-Bore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/2-Bore.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/20x102mmNATO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/20x102mmNATO.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/20x110mmHispano.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/20x110mmHispano.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/20x128mmOerlikon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/20x128mmOerlikon.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/20x138mmB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/20x138mmB.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/20x139mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/20x139mm.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/20x82mmMauser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/20x82mmMauser.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/20x99mmShVAK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/20x99mmShVAK.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/23x115mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/23x115mm.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/23x152mmB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/23x152mmB.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/25x137mmNATO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/25x137mmNATO.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/27x145mmMauser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/27x145mmMauser.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/30x113mmB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/30x113mmB.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/30x165mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/30x165mm.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/30x170mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/30x170mm.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/30x173mmNATO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/30x173mmNATO.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/338LapuaMagnum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/338LapuaMagnum.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/338NormaMagnum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/338NormaMagnum.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/35x228mmNATO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/35x228mmNATO.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/40x311mmR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/40x311mmR.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/470NitroExpress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/470NitroExpress.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/50BMG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/50BMG.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/55Boys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/55Boys.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/600NitroExpress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/600NitroExpress.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/7.92x94mm Patronen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/7.92x94mm Patronen.xml -------------------------------------------------------------------------------- /Defs/Ammo/HighCaliber/950JDJ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/HighCaliber/950JDJ.xml -------------------------------------------------------------------------------- /Defs/Ammo/Lasers/BaseLaserProjectiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Lasers/BaseLaserProjectiles.xml -------------------------------------------------------------------------------- /Defs/Ammo/Medieval/BlunderbussShot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Medieval/BlunderbussShot.xml -------------------------------------------------------------------------------- /Defs/Ammo/Medieval/CannonBall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Medieval/CannonBall.xml -------------------------------------------------------------------------------- /Defs/Ammo/Medieval/Catapult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Medieval/Catapult.xml -------------------------------------------------------------------------------- /Defs/Ammo/Medieval/CrossbowBolts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Medieval/CrossbowBolts.xml -------------------------------------------------------------------------------- /Defs/Ammo/Medieval/MiniCannonBall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Medieval/MiniCannonBall.xml -------------------------------------------------------------------------------- /Defs/Ammo/Medieval/MortarGrenade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Medieval/MortarGrenade.xml -------------------------------------------------------------------------------- /Defs/Ammo/Medieval/MusketBall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Medieval/MusketBall.xml -------------------------------------------------------------------------------- /Defs/Ammo/Modded/Halo/102mmM41Rockets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Modded/Halo/102mmM41Rockets.xml -------------------------------------------------------------------------------- /Defs/Ammo/Modded/Halo/12.7x40mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Modded/Halo/12.7x40mm.xml -------------------------------------------------------------------------------- /Defs/Ammo/Modded/Halo/12.7x99mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Modded/Halo/12.7x99mm.xml -------------------------------------------------------------------------------- /Defs/Ammo/Modded/Halo/14.5x114mmUNSC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Modded/Halo/14.5x114mmUNSC.xml -------------------------------------------------------------------------------- /Defs/Ammo/Modded/Halo/16x65mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Modded/Halo/16x65mm.xml -------------------------------------------------------------------------------- /Defs/Ammo/Modded/Halo/5x23mmCaseless.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Modded/Halo/5x23mmCaseless.xml -------------------------------------------------------------------------------- /Defs/Ammo/Modded/Halo/7.62x51mmUNSC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Modded/Halo/7.62x51mmUNSC.xml -------------------------------------------------------------------------------- /Defs/Ammo/Modded/Halo/8 Gauge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Modded/Halo/8 Gauge.xml -------------------------------------------------------------------------------- /Defs/Ammo/Modded/Halo/9.5x40mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Modded/Halo/9.5x40mm.xml -------------------------------------------------------------------------------- /Defs/Ammo/Modded/Halo/Ammo_SpartanLaser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Modded/Halo/Ammo_SpartanLaser.xml -------------------------------------------------------------------------------- /Defs/Ammo/Modded/Halo/Ammo_UNSC_Misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Modded/Halo/Ammo_UNSC_Misc.xml -------------------------------------------------------------------------------- /Defs/Ammo/Modded/Warhammer 40k/Autoguns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Modded/Warhammer 40k/Autoguns.xml -------------------------------------------------------------------------------- /Defs/Ammo/Modded/Warhammer 40k/Bolter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Modded/Warhammer 40k/Bolter.xml -------------------------------------------------------------------------------- /Defs/Ammo/Modded/Warhammer 40k/LasGun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Modded/Warhammer 40k/LasGun.xml -------------------------------------------------------------------------------- /Defs/Ammo/Modded/Warhammer 40k/MeltaGun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Modded/Warhammer 40k/MeltaGun.xml -------------------------------------------------------------------------------- /Defs/Ammo/Neolithic/Arrows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Neolithic/Arrows.xml -------------------------------------------------------------------------------- /Defs/Ammo/Neolithic/BlowDarts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Neolithic/BlowDarts.xml -------------------------------------------------------------------------------- /Defs/Ammo/Neolithic/GreatArrows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Neolithic/GreatArrows.xml -------------------------------------------------------------------------------- /Defs/Ammo/Neolithic/Javelins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Neolithic/Javelins.xml -------------------------------------------------------------------------------- /Defs/Ammo/Neolithic/SlingBullet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Neolithic/SlingBullet.xml -------------------------------------------------------------------------------- /Defs/Ammo/Other/Ammo_Nail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Other/Ammo_Nail.xml -------------------------------------------------------------------------------- /Defs/Ammo/Other/Flamethrower.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Other/Flamethrower.xml -------------------------------------------------------------------------------- /Defs/Ammo/Other/Flare.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Other/Flare.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/10mmAuto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/10mmAuto.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/13mmGyrojet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/13mmGyrojet.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/22LR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/22LR.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/22Short.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/22Short.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/25ACP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/25ACP.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/32ACP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/32ACP.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/357Magnum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/357Magnum.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/357SIG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/357SIG.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/380ACP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/380ACP.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/38ACP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/38ACP.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/38SW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/38SW.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/38Special.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/38Special.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/38Super.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/38Super.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/40SW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/40SW.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/41Rimfire.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/41Rimfire.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/44Magnum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/44Magnum.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/44SWSpecial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/44SWSpecial.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/454Casull.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/454Casull.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/455Webley.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/455Webley.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/45ACP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/45ACP.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/45Colt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/45Colt.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/45Schofield.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/45Schofield.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/460SWMagnum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/460SWMagnum.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/46x30mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/46x30mm.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/500SWMagnum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/500SWMagnum.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/50AE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/50AE.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/58x21mmDAP92.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/58x21mmDAP92.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/7.5FK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/7.5FK.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/762x25mmTokarev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/762x25mmTokarev.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/762x38mmR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/762x38mmR.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/763x25mmMauser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/763x25mmMauser.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/765x20mmLongue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/765x20mmLongue.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/8x22mmNambu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/8x22mmNambu.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/9x18mmMakarov.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/9x18mmMakarov.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/9x19mmPara.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/9x19mmPara.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/9x21mmGyurza.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/9x21mmGyurza.xml -------------------------------------------------------------------------------- /Defs/Ammo/Pistols/FN57x28mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Pistols/FN57x28mm.xml -------------------------------------------------------------------------------- /Defs/Ammo/Projectiles_Fragments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Projectiles_Fragments.xml -------------------------------------------------------------------------------- /Defs/Ammo/Recipes_HandGrenades.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Recipes_HandGrenades.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/127x55mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/127x55mm.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/17HMR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/17HMR.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/22Hornet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/22Hornet.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/22WMR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/22WMR.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/243Winchester.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/243Winchester.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/277Fury.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/277Fury.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/280British.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/280British.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/30-30Winchester.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/30-30Winchester.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/3006Springfield.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/3006Springfield.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/300AACBlackout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/300AACBlackout.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/303British.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/303British.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/30Carbine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/30Carbine.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/38-55Winchester.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/38-55Winchester.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/44-40Winchester.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/44-40Winchester.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/4570Gov.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/4570Gov.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/458SOCOM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/458SOCOM.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/473x33mmCaseless.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/473x33mmCaseless.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/485x49mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/485x49mm.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/50Beowulf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/50Beowulf.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/545x39mmSoviet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/545x39mmSoviet.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/556x45mmNATO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/556x45mmNATO.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/56-56Spencer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/56-56Spencer.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/58x42mmDBP10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/58x42mmDBP10.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/6.5Creedmoor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/6.5Creedmoor.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/6.5x52mm Carcano.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/6.5x52mm Carcano.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/65x50mmSRArisaka.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/65x50mmSRArisaka.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/7.92x57mmMauser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/7.92x57mmMauser.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/75x54mmFrench.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/75x54mmFrench.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/762x39mmSoviet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/762x39mmSoviet.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/762x51mmNATO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/762x51mmNATO.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/762x54mmR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/762x54mmR.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/77x58mmArisaka.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/77x58mmArisaka.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/792x33mmKurz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/792x33mmKurz.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/8.6mmBlackout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/8.6mmBlackout.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/8x50mmRLebel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/8x50mmRLebel.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/8x50mmRMannlicher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/8x50mmRMannlicher.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rifle/9x39mmSoviet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rifle/9x39mmSoviet.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/127mmJavelinMissile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/127mmJavelinMissile.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/130mmType63.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/130mmType63.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/132mmM13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/132mmM13.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/150mmMBTLAWMissile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/150mmMBTLAWMissile.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/20mmFliegerfaust.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/20mmFliegerfaust.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/50mmRocket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/50mmRocket.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/57mmS5Rocket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/57mmS5Rocket.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/70mmAPKWS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/70mmAPKWS.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/80mmS8Rocket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/80mmS8Rocket.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/83mmSMAW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/83mmSMAW.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/84mmAT4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/84mmAT4.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/84x246mmR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/84x246mmR.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/88mmRPzB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/88mmRPzB.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/90mmMATADOR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/90mmMATADOR.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/90mmRecoilless.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/90mmRecoilless.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/M6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/M6.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/M6A1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/M6A1.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/M6A3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/M6A3.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/M72LAW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/M72LAW.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/M74.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/M74.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/RPG28.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/RPG28.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/RPG32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/RPG32.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/RPG7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/RPG7.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/RPO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/RPO.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/SPG9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/SPG9.xml -------------------------------------------------------------------------------- /Defs/Ammo/Rocket/TomahawkLAM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Rocket/TomahawkLAM.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/100x695mmR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/100x695mmR.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/105mmHowitzer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/105mmHowitzer.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/105x607mmR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/105x607mmR.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/105x617mmR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/105x617mmR.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/120mmCannon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/120mmCannon.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/120mmMortar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/120mmMortar.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/152mmHowitzer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/152mmHowitzer.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/155mmHowitzer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/155mmHowitzer.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/15cmNebelwerfer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/15cmNebelwerfer.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/28cmSpgr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/28cmSpgr.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/37x223mmR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/37x223mmR.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/40x365mmBofors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/40x365mmBofors.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/50mmType89Mortar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/50mmType89Mortar.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/57x307mmR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/57x307mmR.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/57x348mmSR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/57x348mmSR.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/57x438mmBofors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/57x438mmBofors.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/60mmMortar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/60mmMortar.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/75x350mmR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/75x350mmR.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/762x385mmRCannon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/762x385mmRCannon.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/762x539mmR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/762x539mmR.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/81mmMortar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/81mmMortar.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shell/90mmCannon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shell/90mmCannon.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shotgun/10Gauge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shotgun/10Gauge.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shotgun/12Gauge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shotgun/12Gauge.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shotgun/16Gauge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shotgun/16Gauge.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shotgun/20Gauge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shotgun/20Gauge.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shotgun/23x75mmR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shotgun/23x75mmR.xml -------------------------------------------------------------------------------- /Defs/Ammo/Shotgun/410Bore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/Shotgun/410Bore.xml -------------------------------------------------------------------------------- /Defs/Ammo/ThingCategories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Ammo/ThingCategories.xml -------------------------------------------------------------------------------- /Defs/ApparelAutoPatcherPresets/Helmets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ApparelAutoPatcherPresets/Helmets.xml -------------------------------------------------------------------------------- /Defs/ApparelAutoPatcherPresets/TorsoSets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ApparelAutoPatcherPresets/TorsoSets.xml -------------------------------------------------------------------------------- /Defs/ApparelAutoPatcherPresets/Vests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ApparelAutoPatcherPresets/Vests.xml -------------------------------------------------------------------------------- /Defs/ApparelLayerDefs/ApparelLayerDefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ApparelLayerDefs/ApparelLayerDefs.xml -------------------------------------------------------------------------------- /Defs/BipodCategoryDefs/BipodCategories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/BipodCategoryDefs/BipodCategories.xml -------------------------------------------------------------------------------- /Defs/Bodies/BodyPartGroups.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Bodies/BodyPartGroups.xml -------------------------------------------------------------------------------- /Defs/Bodies/BodyShapes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Bodies/BodyShapes.xml -------------------------------------------------------------------------------- /Defs/Bodies/Body_Animal_ArmoredInsect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Bodies/Body_Animal_ArmoredInsect.xml -------------------------------------------------------------------------------- /Defs/DamageDefs/Damages_LocalInjury.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/DamageDefs/Damages_LocalInjury.xml -------------------------------------------------------------------------------- /Defs/Drugs/Psychite_Psycho.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Drugs/Psychite_Psycho.xml -------------------------------------------------------------------------------- /Defs/Effects/Flecks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Effects/Flecks.xml -------------------------------------------------------------------------------- /Defs/Effects/Motes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Effects/Motes.xml -------------------------------------------------------------------------------- /Defs/Effects/ProjectileFX_Flecks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Effects/ProjectileFX_Flecks.xml -------------------------------------------------------------------------------- /Defs/Effects/ProjectileFX_Flecks_Landed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Effects/ProjectileFX_Flecks_Landed.xml -------------------------------------------------------------------------------- /Defs/GameSetupSteps/ExplosiveCurveSetup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/GameSetupSteps/ExplosiveCurveSetup.xml -------------------------------------------------------------------------------- /Defs/GunPatcherDefs/AssaultRifle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/GunPatcherDefs/AssaultRifle.xml -------------------------------------------------------------------------------- /Defs/GunPatcherDefs/MachineGun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/GunPatcherDefs/MachineGun.xml -------------------------------------------------------------------------------- /Defs/GunPatcherDefs/Pistol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/GunPatcherDefs/Pistol.xml -------------------------------------------------------------------------------- /Defs/GunPatcherDefs/Revolver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/GunPatcherDefs/Revolver.xml -------------------------------------------------------------------------------- /Defs/GunPatcherDefs/SMG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/GunPatcherDefs/SMG.xml -------------------------------------------------------------------------------- /Defs/GunPatcherDefs/SniperRifle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/GunPatcherDefs/SniperRifle.xml -------------------------------------------------------------------------------- /Defs/HediffDefs/Hediffs_CE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/HediffDefs/Hediffs_CE.xml -------------------------------------------------------------------------------- /Defs/JobDefs/Jobs_CE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/JobDefs/Jobs_CE.xml -------------------------------------------------------------------------------- /Defs/JobDefs/MechTakeAmmo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/JobDefs/MechTakeAmmo.xml -------------------------------------------------------------------------------- /Defs/JobDefs/Set_Up_Bipod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/JobDefs/Set_Up_Bipod.xml -------------------------------------------------------------------------------- /Defs/LetterDefs/Letters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/LetterDefs/Letters.xml -------------------------------------------------------------------------------- /Defs/Maneuvers/Maneuvers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Maneuvers/Maneuvers.xml -------------------------------------------------------------------------------- /Defs/MapGeneration/GenSteps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/MapGeneration/GenSteps.xml -------------------------------------------------------------------------------- /Defs/MentalStateDefs/MentalStates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/MentalStateDefs/MentalStates.xml -------------------------------------------------------------------------------- /Defs/Misc/PawnColumnDefs/PawnColumns_CE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Misc/PawnColumnDefs/PawnColumns_CE.xml -------------------------------------------------------------------------------- /Defs/Misc/ShellingResponseDefs/Advanced.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Misc/ShellingResponseDefs/Advanced.xml -------------------------------------------------------------------------------- /Defs/Misc/ShellingResponseDefs/Primitive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Misc/ShellingResponseDefs/Primitive.xml -------------------------------------------------------------------------------- /Defs/Misc/TipSetDefs/Tips.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Misc/TipSetDefs/Tips.xml -------------------------------------------------------------------------------- /Defs/PawnKindDefs/PawnKinds_CE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/PawnKindDefs/PawnKinds_CE.xml -------------------------------------------------------------------------------- /Defs/RecipeDefs/Recipes_Production.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/RecipeDefs/Recipes_Production.xml -------------------------------------------------------------------------------- /Defs/RulePackDefs/RulePacks_DamageEvent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/RulePackDefs/RulePacks_DamageEvent.xml -------------------------------------------------------------------------------- /Defs/RulePackDefs/RulePacks_Swearing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/RulePackDefs/RulePacks_Swearing.xml -------------------------------------------------------------------------------- /Defs/SoundDefs/AmmoSounds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/SoundDefs/AmmoSounds.xml -------------------------------------------------------------------------------- /Defs/SoundDefs/AutoLoader_Sustainer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/SoundDefs/AutoLoader_Sustainer.xml -------------------------------------------------------------------------------- /Defs/SoundDefs/BipodSounds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/SoundDefs/BipodSounds.xml -------------------------------------------------------------------------------- /Defs/SoundDefs/CasingSounds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/SoundDefs/CasingSounds.xml -------------------------------------------------------------------------------- /Defs/SoundDefs/Shot_Weapons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/SoundDefs/Shot_Weapons.xml -------------------------------------------------------------------------------- /Defs/SoundDefs/World_Sustainers_RPG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/SoundDefs/World_Sustainers_RPG.xml -------------------------------------------------------------------------------- /Defs/Stats/Stats_Apparel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Stats/Stats_Apparel.xml -------------------------------------------------------------------------------- /Defs/Stats/Stats_Basics_Inventory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Stats/Stats_Basics_Inventory.xml -------------------------------------------------------------------------------- /Defs/Stats/Stats_NightVision.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Stats/Stats_NightVision.xml -------------------------------------------------------------------------------- /Defs/Stats/Stats_Pawns_Combat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Stats/Stats_Pawns_Combat.xml -------------------------------------------------------------------------------- /Defs/Stats/Stats_Pawns_General.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Stats/Stats_Pawns_General.xml -------------------------------------------------------------------------------- /Defs/Stats/Stats_Pawns_Inventory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Stats/Stats_Pawns_Inventory.xml -------------------------------------------------------------------------------- /Defs/Stats/Stats_Stuff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Stats/Stats_Stuff.xml -------------------------------------------------------------------------------- /Defs/Stats/Stats_Weapons_Melee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Stats/Stats_Weapons_Melee.xml -------------------------------------------------------------------------------- /Defs/Stats/Stats_Weapons_Ranged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Stats/Stats_Weapons_Ranged.xml -------------------------------------------------------------------------------- /Defs/StuffCategoryDefs/StuffCategories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/StuffCategoryDefs/StuffCategories.xml -------------------------------------------------------------------------------- /Defs/ThingCategoryDefs/ThingCategories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingCategoryDefs/ThingCategories.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Buildings/CIWSExample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Buildings/CIWSExample.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Items/Items_Resource_Ammo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Items/Items_Resource_Ammo.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Items/Items_Turrets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Items/Items_Turrets.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Items/Items_Unfinished.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Items/Items_Unfinished.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Misc/Abstracts_Lasers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Misc/Abstracts_Lasers.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Misc/Apparel_Carrying.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Misc/Apparel_Carrying.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Misc/Apparel_Headgear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Misc/Apparel_Headgear.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Misc/Apparel_Shield.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Misc/Apparel_Shield.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Misc/Apparel_Various.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Misc/Apparel_Various.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Misc/Ethereal_Various.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Misc/Ethereal_Various.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Misc/Filth_Casings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Misc/Filth_Casings.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Misc/Filth_Various.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Misc/Filth_Various.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Misc/Gas_Various.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Misc/Gas_Various.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Misc/Laser_Effecter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Misc/Laser_Effecter.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Misc/Things_Special.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Misc/Things_Special.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Misc/Weapons_Grenades.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Misc/Weapons_Grenades.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Misc/Weapons_Ranged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Misc/Weapons_Ranged.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Misc/Weapons_Spotting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Misc/Weapons_Spotting.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Misc/Weapons_Turrets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Misc/Weapons_Turrets.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Races/Races_Animal_Base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Races/Races_Animal_Base.xml -------------------------------------------------------------------------------- /Defs/ThingDefs_Races/Tytan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThingDefs_Races/Tytan.xml -------------------------------------------------------------------------------- /Defs/ThoughtDefs/Thoughts_CR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ThoughtDefs/Thoughts_CR.xml -------------------------------------------------------------------------------- /Defs/ToolCapacityDefs/CE_ToolCapacity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/ToolCapacityDefs/CE_ToolCapacity.xml -------------------------------------------------------------------------------- /Defs/TraitDefs/Traits_Spectrum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/TraitDefs/Traits_Spectrum.xml -------------------------------------------------------------------------------- /Defs/Tutor/Concepts_NotedOpportunistic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Tutor/Concepts_NotedOpportunistic.xml -------------------------------------------------------------------------------- /Defs/Tutor/Concepts_NotedSelfshow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Tutor/Concepts_NotedSelfshow.xml -------------------------------------------------------------------------------- /Defs/Tutor/Concepts_TriggeredModal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/Tutor/Concepts_TriggeredModal.xml -------------------------------------------------------------------------------- /Defs/WorkGiverDefs/WorkGivers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/WorkGiverDefs/WorkGivers.xml -------------------------------------------------------------------------------- /Defs/WorldObjectDefs/WorldObjects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Defs/WorldObjectDefs/WorldObjects.xml -------------------------------------------------------------------------------- /DupeFinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/DupeFinder.py -------------------------------------------------------------------------------- /Ideology/Patches/Misc/Hediffs_Casts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Ideology/Patches/Misc/Hediffs_Casts.xml -------------------------------------------------------------------------------- /Ideology/Patches/Misc/Precepts_Role.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Ideology/Patches/Misc/Precepts_Role.xml -------------------------------------------------------------------------------- /Languages/ChineseSimplified/Keyed/Keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/ChineseSimplified/Keyed/Keys.xml -------------------------------------------------------------------------------- /Languages/ChineseSimplified/Keyed/Stats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/ChineseSimplified/Keyed/Stats.xml -------------------------------------------------------------------------------- /Languages/ChineseSimplified/Keyed/Wind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/ChineseSimplified/Keyed/Wind.xml -------------------------------------------------------------------------------- /Languages/ChineseTraditional/Keyed/Keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/ChineseTraditional/Keyed/Keys.xml -------------------------------------------------------------------------------- /Languages/ChineseTraditional/Keyed/Wind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/ChineseTraditional/Keyed/Wind.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/ArmorDurability.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/English/Keyed/ArmorDurability.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/Attachments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/English/Keyed/Attachments.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/BipodStatWorker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/English/Keyed/BipodStatWorker.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/BulkAndWeight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/English/Keyed/BulkAndWeight.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/Descriptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/English/Keyed/Descriptions.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/FireArcKeyed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/English/Keyed/FireArcKeyed.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/FloatMenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/English/Keyed/FloatMenu.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/Keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/English/Keyed/Keys.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/LoadoutGeneric.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/English/Keyed/LoadoutGeneric.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/LongEventHandler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/English/Keyed/LongEventHandler.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/Messages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/English/Keyed/Messages.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/Misc_Gameplay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/English/Keyed/Misc_Gameplay.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/ModMenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/English/Keyed/ModMenu.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/Stats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/English/Keyed/Stats.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/TextMotes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/English/Keyed/TextMotes.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/Wind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/English/Keyed/Wind.xml -------------------------------------------------------------------------------- /Languages/French/Keyed/BulkAndWeight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/French/Keyed/BulkAndWeight.xml -------------------------------------------------------------------------------- /Languages/French/Keyed/Descriptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/French/Keyed/Descriptions.xml -------------------------------------------------------------------------------- /Languages/French/Keyed/Keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/French/Keyed/Keys.xml -------------------------------------------------------------------------------- /Languages/French/Keyed/LoadoutGeneric.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/French/Keyed/LoadoutGeneric.xml -------------------------------------------------------------------------------- /Languages/French/Keyed/ModMenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/French/Keyed/ModMenu.xml -------------------------------------------------------------------------------- /Languages/French/Keyed/TextMotes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/French/Keyed/TextMotes.xml -------------------------------------------------------------------------------- /Languages/German/Keyed/Text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/German/Keyed/Text.xml -------------------------------------------------------------------------------- /Languages/Korean/Keyed/BulkAndWeight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Korean/Keyed/BulkAndWeight.xml -------------------------------------------------------------------------------- /Languages/Korean/Keyed/Descriptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Korean/Keyed/Descriptions.xml -------------------------------------------------------------------------------- /Languages/Korean/Keyed/Keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Korean/Keyed/Keys.xml -------------------------------------------------------------------------------- /Languages/Korean/Keyed/LoadoutGeneric.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Korean/Keyed/LoadoutGeneric.xml -------------------------------------------------------------------------------- /Languages/Korean/Keyed/ModMenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Korean/Keyed/ModMenu.xml -------------------------------------------------------------------------------- /Languages/Korean/Keyed/TextMotes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Korean/Keyed/TextMotes.xml -------------------------------------------------------------------------------- /Languages/PortugueseBrazilian/Keyed/Keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/PortugueseBrazilian/Keyed/Keys.xml -------------------------------------------------------------------------------- /Languages/PortugueseBrazilian/Keyed/Wind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/PortugueseBrazilian/Keyed/Wind.xml -------------------------------------------------------------------------------- /Languages/Russian/Keyed/BulkAndWeight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Russian/Keyed/BulkAndWeight.xml -------------------------------------------------------------------------------- /Languages/Russian/Keyed/Descriptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Russian/Keyed/Descriptions.xml -------------------------------------------------------------------------------- /Languages/Russian/Keyed/FloatMenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Russian/Keyed/FloatMenu.xml -------------------------------------------------------------------------------- /Languages/Russian/Keyed/Keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Russian/Keyed/Keys.xml -------------------------------------------------------------------------------- /Languages/Russian/Keyed/LoadoutGeneric.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Russian/Keyed/LoadoutGeneric.xml -------------------------------------------------------------------------------- /Languages/Russian/Keyed/LongEventHandler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Russian/Keyed/LongEventHandler.xml -------------------------------------------------------------------------------- /Languages/Russian/Keyed/Misc_Gameplay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Russian/Keyed/Misc_Gameplay.xml -------------------------------------------------------------------------------- /Languages/Russian/Keyed/ModMenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Russian/Keyed/ModMenu.xml -------------------------------------------------------------------------------- /Languages/Russian/Keyed/Stats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Russian/Keyed/Stats.xml -------------------------------------------------------------------------------- /Languages/Russian/Keyed/TextMotes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Russian/Keyed/TextMotes.xml -------------------------------------------------------------------------------- /Languages/Russian/Keyed/Wind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Russian/Keyed/Wind.xml -------------------------------------------------------------------------------- /Languages/Spanish/Keyed/BulkAndWeight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Spanish/Keyed/BulkAndWeight.xml -------------------------------------------------------------------------------- /Languages/Spanish/Keyed/Descriptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Spanish/Keyed/Descriptions.xml -------------------------------------------------------------------------------- /Languages/Spanish/Keyed/FloatMenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Spanish/Keyed/FloatMenu.xml -------------------------------------------------------------------------------- /Languages/Spanish/Keyed/Keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Spanish/Keyed/Keys.xml -------------------------------------------------------------------------------- /Languages/Spanish/Keyed/LoadoutGeneric.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Spanish/Keyed/LoadoutGeneric.xml -------------------------------------------------------------------------------- /Languages/Spanish/Keyed/LongEventHandler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Spanish/Keyed/LongEventHandler.xml -------------------------------------------------------------------------------- /Languages/Spanish/Keyed/Misc_Gameplay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Spanish/Keyed/Misc_Gameplay.xml -------------------------------------------------------------------------------- /Languages/Spanish/Keyed/ModMenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Spanish/Keyed/ModMenu.xml -------------------------------------------------------------------------------- /Languages/Spanish/Keyed/TextMotes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Spanish/Keyed/TextMotes.xml -------------------------------------------------------------------------------- /Languages/Spanish/Keyed/Wind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Spanish/Keyed/Wind.xml -------------------------------------------------------------------------------- /Languages/Spanish/LanguageInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Spanish/LanguageInfo.xml -------------------------------------------------------------------------------- /Languages/SpanishLatin/Keyed/FloatMenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/SpanishLatin/Keyed/FloatMenu.xml -------------------------------------------------------------------------------- /Languages/SpanishLatin/Keyed/Keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/SpanishLatin/Keyed/Keys.xml -------------------------------------------------------------------------------- /Languages/SpanishLatin/Keyed/ModMenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/SpanishLatin/Keyed/ModMenu.xml -------------------------------------------------------------------------------- /Languages/SpanishLatin/Keyed/TextMotes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/SpanishLatin/Keyed/TextMotes.xml -------------------------------------------------------------------------------- /Languages/SpanishLatin/Keyed/Wind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/SpanishLatin/Keyed/Wind.xml -------------------------------------------------------------------------------- /Languages/SpanishLatin/LanguageInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/SpanishLatin/LanguageInfo.xml -------------------------------------------------------------------------------- /Languages/Swedish/Keyed/Text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Languages/Swedish/Keyed/Text.xml -------------------------------------------------------------------------------- /LoadFolders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/LoadFolders.xml -------------------------------------------------------------------------------- /Make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Make.py -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Makefile -------------------------------------------------------------------------------- /Media/Art Source Files/CE_GizmoTextures.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Art Source Files/CE_GizmoTextures.ai -------------------------------------------------------------------------------- /Media/Art Source Files/CE_MechRearmIcons.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Art Source Files/CE_MechRearmIcons.ai -------------------------------------------------------------------------------- /Media/Art Source Files/CE_Shields_Source.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Art Source Files/CE_Shields_Source.ai -------------------------------------------------------------------------------- /Media/Art Source Files/CE_charged_ammo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Art Source Files/CE_charged_ammo.svg -------------------------------------------------------------------------------- /Media/Art Source Files/CE_doom_ammo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Art Source Files/CE_doom_ammo.svg -------------------------------------------------------------------------------- /Media/Art Source Files/CE_rocket_ammo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Art Source Files/CE_rocket_ammo.svg -------------------------------------------------------------------------------- /Media/Badge_CE_compatible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Badge_CE_compatible.png -------------------------------------------------------------------------------- /Media/Badge_CE_compatible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Badge_CE_compatible.svg -------------------------------------------------------------------------------- /Media/Badge_CE_official.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Badge_CE_official.png -------------------------------------------------------------------------------- /Media/Badge_CE_official.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Badge_CE_official.svg -------------------------------------------------------------------------------- /Media/CE_ModIcon_JustHat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/CE_ModIcon_JustHat.png -------------------------------------------------------------------------------- /Media/CE_ModIcon_JustHat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/CE_ModIcon_JustHat.svg -------------------------------------------------------------------------------- /Media/Discord_Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Discord_Banner.png -------------------------------------------------------------------------------- /Media/Icon_CE_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Icon_CE_large.png -------------------------------------------------------------------------------- /Media/Icon_CE_large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Icon_CE_large.svg -------------------------------------------------------------------------------- /Media/MediaFolder_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/MediaFolder_README.md -------------------------------------------------------------------------------- /Media/Preview_CE_armory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Preview_CE_armory.png -------------------------------------------------------------------------------- /Media/Preview_CE_armory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Preview_CE_armory.svg -------------------------------------------------------------------------------- /Media/Preview_CE_attachments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Preview_CE_attachments.svg -------------------------------------------------------------------------------- /Media/Preview_CE_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Preview_CE_core.png -------------------------------------------------------------------------------- /Media/Preview_CE_core.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Preview_CE_core.svg -------------------------------------------------------------------------------- /Media/Preview_CE_dev.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Preview_CE_dev.xcf -------------------------------------------------------------------------------- /Media/Preview_CE_guns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Preview_CE_guns.png -------------------------------------------------------------------------------- /Media/Preview_CE_guns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Preview_CE_guns.svg -------------------------------------------------------------------------------- /Media/Preview_CE_melee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Preview_CE_melee.png -------------------------------------------------------------------------------- /Media/Preview_CE_melee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/Preview_CE_melee.svg -------------------------------------------------------------------------------- /Media/SubHeading_CE_acknowledgements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/SubHeading_CE_acknowledgements.png -------------------------------------------------------------------------------- /Media/SubHeading_CE_attribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/SubHeading_CE_attribution.png -------------------------------------------------------------------------------- /Media/SubHeading_CE_compatibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/SubHeading_CE_compatibility.png -------------------------------------------------------------------------------- /Media/SubHeading_CE_features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/SubHeading_CE_features.png -------------------------------------------------------------------------------- /Media/SubHeading_CE_resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/SubHeading_CE_resources.png -------------------------------------------------------------------------------- /Media/SubHeadings_CE_mod_description.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Media/SubHeadings_CE_mod_description.svg -------------------------------------------------------------------------------- /ModPatches/BiologicalWarfare/Defs/Ammo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/ModPatches/BiologicalWarfare/Defs/Ammo.xml -------------------------------------------------------------------------------- /ModPatches/Crossbows/Defs/Crossbows/Ammo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/ModPatches/Crossbows/Defs/Crossbows/Ammo.xml -------------------------------------------------------------------------------- /ModPatches/EPOE/Patches/EPOE/Bionics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/ModPatches/EPOE/Patches/EPOE/Bionics.xml -------------------------------------------------------------------------------- /ModPatches/Moa/Patches/Moa/Ce_Moa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/ModPatches/Moa/Patches/Moa/Ce_Moa.xml -------------------------------------------------------------------------------- /ModPatches/Nihal/Patches/Nihal/Scenarios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/ModPatches/Nihal/Patches/Nihal/Scenarios.xml -------------------------------------------------------------------------------- /ModPatches/Nukes/Defs/Nukes/Ammo_Nuclear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/ModPatches/Nukes/Defs/Nukes/Ammo_Nuclear.xml -------------------------------------------------------------------------------- /ModPatches/RBSE/Defs/RBSE/Cure CE Scars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/ModPatches/RBSE/Defs/RBSE/Cure CE Scars.xml -------------------------------------------------------------------------------- /ModPatches/RBSE/Patches/RBSE/Bionics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/ModPatches/RBSE/Patches/RBSE/Bionics.xml -------------------------------------------------------------------------------- /ModPatches/Racc/Patches/Racc/Race_Racc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/ModPatches/Racc/Patches/Racc/Race_Racc.xml -------------------------------------------------------------------------------- /ModPatches/SCP/Patches/SCP/Apparel_SCP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/ModPatches/SCP/Patches/SCP/Apparel_SCP.xml -------------------------------------------------------------------------------- /ModPatches/SCP/Patches/SCP/Headgear_SCP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/ModPatches/SCP/Patches/SCP/Headgear_SCP.xml -------------------------------------------------------------------------------- /ModPatches/Sergal/Patches/Sergal/Drugs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/ModPatches/Sergal/Patches/Sergal/Drugs.xml -------------------------------------------------------------------------------- /ModPatches/The GiantRace/Defs/Ammo_Giant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/ModPatches/The GiantRace/Defs/Ammo_Giant.xml -------------------------------------------------------------------------------- /Odyssey/Defs/Ammo_BeamRepeater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Odyssey/Defs/Ammo_BeamRepeater.xml -------------------------------------------------------------------------------- /Odyssey/Defs/WeaponTraitDefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Odyssey/Defs/WeaponTraitDefs.xml -------------------------------------------------------------------------------- /Odyssey/Patches/Bodies/Crab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Odyssey/Patches/Bodies/Crab.xml -------------------------------------------------------------------------------- /Odyssey/Patches/Bodies/Cyclops.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Odyssey/Patches/Bodies/Cyclops.xml -------------------------------------------------------------------------------- /Odyssey/Patches/Bodies/Drones/Drone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Odyssey/Patches/Bodies/Drones/Drone.xml -------------------------------------------------------------------------------- /Odyssey/Patches/Bodies/Larva.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Odyssey/Patches/Bodies/Larva.xml -------------------------------------------------------------------------------- /Odyssey/Patches/Bodies/Pinniped/Pinniped.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Odyssey/Patches/Bodies/Pinniped/Pinniped.xml -------------------------------------------------------------------------------- /Odyssey/Patches/Bodies/Snail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Odyssey/Patches/Bodies/Snail.xml -------------------------------------------------------------------------------- /Odyssey/Patches/DamageDefs/DamageDefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Odyssey/Patches/DamageDefs/DamageDefs.xml -------------------------------------------------------------------------------- /Odyssey/Patches/Drugs/Drugs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Odyssey/Patches/Drugs/Drugs.xml -------------------------------------------------------------------------------- /Odyssey/Patches/Scenarios/Scenarios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Odyssey/Patches/Scenarios/Scenarios.xml -------------------------------------------------------------------------------- /Patches/Core/Bodies/BodyPartGroupDummies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/Bodies/BodyPartGroupDummies.xml -------------------------------------------------------------------------------- /Patches/Core/Bodies/BodyParts_Animal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/Bodies/BodyParts_Animal.xml -------------------------------------------------------------------------------- /Patches/Core/Bodies/BodyParts_General.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/Bodies/BodyParts_General.xml -------------------------------------------------------------------------------- /Patches/Core/Bodies/BodyParts_Humanoid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/Bodies/BodyParts_Humanoid.xml -------------------------------------------------------------------------------- /Patches/Core/Bodies/BodyParts_Mechanoid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/Bodies/BodyParts_Mechanoid.xml -------------------------------------------------------------------------------- /Patches/Core/Bodies/BodyParts_Organs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/Bodies/BodyParts_Organs.xml -------------------------------------------------------------------------------- /Patches/Core/Drugs/Drugs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/Drugs/Drugs.xml -------------------------------------------------------------------------------- /Patches/Core/DutyDefs/Duties_Misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/DutyDefs/Duties_Misc.xml -------------------------------------------------------------------------------- /Patches/Core/FactionDefs/Factions_Hidden.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/FactionDefs/Factions_Hidden.xml -------------------------------------------------------------------------------- /Patches/Core/FactionDefs/Factions_Misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/FactionDefs/Factions_Misc.xml -------------------------------------------------------------------------------- /Patches/Core/FactionDefs/Factions_Player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/FactionDefs/Factions_Player.xml -------------------------------------------------------------------------------- /Patches/Core/HediffDefs/BloodLoss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/HediffDefs/BloodLoss.xml -------------------------------------------------------------------------------- /Patches/Core/JobDefs/Jobs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/JobDefs/Jobs.xml -------------------------------------------------------------------------------- /Patches/Core/Maneuvers/Maneuvers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/Maneuvers/Maneuvers.xml -------------------------------------------------------------------------------- /Patches/Core/MapGeneration/GenSteps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/MapGeneration/GenSteps.xml -------------------------------------------------------------------------------- /Patches/Core/Misc/PawnTables/PawnTables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/Misc/PawnTables/PawnTables.xml -------------------------------------------------------------------------------- /Patches/Core/Scenarios/Scenarios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/Scenarios/Scenarios.xml -------------------------------------------------------------------------------- /Patches/Core/SiteParts/Outpost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/SiteParts/Outpost.xml -------------------------------------------------------------------------------- /Patches/Core/Skyfallers/SkyfallerBase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/Skyfallers/SkyfallerBase.xml -------------------------------------------------------------------------------- /Patches/Core/Stats/Stats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/Stats/Stats.xml -------------------------------------------------------------------------------- /Patches/Core/ThingDefs_Items/Items_Books.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/ThingDefs_Items/Items_Books.xml -------------------------------------------------------------------------------- /Patches/Core/ThingDefs_Misc/Apparel_Hats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/ThingDefs_Misc/Apparel_Hats.xml -------------------------------------------------------------------------------- /Patches/Core/ThingDefs_Misc/Weapons_Guns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/ThingDefs_Misc/Weapons_Guns.xml -------------------------------------------------------------------------------- /Patches/Core/ThinkTreeDefs/Humanlike.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/ThinkTreeDefs/Humanlike.xml -------------------------------------------------------------------------------- /Patches/Core/ThinkTreeDefs/SubTrees_Misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/ThinkTreeDefs/SubTrees_Misc.xml -------------------------------------------------------------------------------- /Patches/Core/TraderKindDefs/TraderKinds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/TraderKindDefs/TraderKinds.xml -------------------------------------------------------------------------------- /Patches/Core/TraitDefs/Traits_Singular.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/TraitDefs/Traits_Singular.xml -------------------------------------------------------------------------------- /Patches/Core/TraitDefs/Traits_Spectrum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/TraitDefs/Traits_Spectrum.xml -------------------------------------------------------------------------------- /Patches/Core/WorkGiverDefs/WorkGivers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/WorkGiverDefs/WorkGivers.xml -------------------------------------------------------------------------------- /Patches/Core/WorldObjects/WorldObjects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Patches/Core/WorldObjects/WorldObjects.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/README.md -------------------------------------------------------------------------------- /Reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Reference.py -------------------------------------------------------------------------------- /Royalty/Defs/TipSetDefs/Tips.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Royalty/Defs/TipSetDefs/Tips.xml -------------------------------------------------------------------------------- /Sounds/Bipods/Bipods_deploy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Bipods/Bipods_deploy.wav -------------------------------------------------------------------------------- /Sounds/Impact/Brass/brassimpact_1a.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Impact/Brass/brassimpact_1a.wav -------------------------------------------------------------------------------- /Sounds/Impact/Brass/brassimpact_1b.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Impact/Brass/brassimpact_1b.wav -------------------------------------------------------------------------------- /Sounds/Impact/Brass/brassimpact_1c.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Impact/Brass/brassimpact_1c.wav -------------------------------------------------------------------------------- /Sounds/Impact/Brass/brassimpact_1d.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Impact/Brass/brassimpact_1d.wav -------------------------------------------------------------------------------- /Sounds/Impact/Brass/brassimpact_1e.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Impact/Brass/brassimpact_1e.wav -------------------------------------------------------------------------------- /Sounds/Impact/ShotgunShell/shellimpact.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Impact/ShotgunShell/shellimpact.wav -------------------------------------------------------------------------------- /Sounds/RocketLauncher/RL_PreImpact.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/RocketLauncher/RL_PreImpact.wav -------------------------------------------------------------------------------- /Sounds/Rocketloops/rcktlpDoomsday.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Rocketloops/rcktlpDoomsday.wav -------------------------------------------------------------------------------- /Sounds/Rocketloops/rcktlpNormalTiny.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Rocketloops/rcktlpNormalTiny.wav -------------------------------------------------------------------------------- /Sounds/Shot/Shot_AssaultRifleSlow.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Shot/Shot_AssaultRifleSlow.ogg -------------------------------------------------------------------------------- /Sounds/Shot/Shot_BattleRifle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Shot/Shot_BattleRifle.ogg -------------------------------------------------------------------------------- /Sounds/Shot/Shot_Crossbow.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Shot/Shot_Crossbow.ogg -------------------------------------------------------------------------------- /Sounds/Shot/Shot_Musket.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Shot/Shot_Musket.ogg -------------------------------------------------------------------------------- /Sounds/Turrets/120mm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Turrets/120mm.ogg -------------------------------------------------------------------------------- /Sounds/Turrets/AGS.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Turrets/AGS.ogg -------------------------------------------------------------------------------- /Sounds/Turrets/Explosion.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Turrets/Explosion.ogg -------------------------------------------------------------------------------- /Sounds/Turrets/KPVT.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Turrets/KPVT.ogg -------------------------------------------------------------------------------- /Sounds/Turrets/M240.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Turrets/M240.ogg -------------------------------------------------------------------------------- /Sounds/Turrets/M2Browning_Shot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Turrets/M2Browning_Shot.ogg -------------------------------------------------------------------------------- /Sounds/Turrets/dshk.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Sounds/Turrets/dshk.ogg -------------------------------------------------------------------------------- /Source/CombatExtended.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/CombatExtended.sln -------------------------------------------------------------------------------- /Source/CombatExtended/AI/CombatRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/CombatExtended/AI/CombatRole.cs -------------------------------------------------------------------------------- /Source/CombatExtended/AI/Defs/RaidGoalDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/CombatExtended/AI/Defs/RaidGoalDef.cs -------------------------------------------------------------------------------- /Source/CombatExtended/CombatExtended.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/CombatExtended/CombatExtended.csproj -------------------------------------------------------------------------------- /Source/CombatExtended/Compatibility/SOS2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/CombatExtended/Compatibility/SOS2.cs -------------------------------------------------------------------------------- /Source/CombatExtended/Compatibility/SRTS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/CombatExtended/Compatibility/SRTS.cs -------------------------------------------------------------------------------- /Source/CombatExtended/Harmony/HarmonyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/CombatExtended/Harmony/HarmonyBase.cs -------------------------------------------------------------------------------- /Source/CombatExtended/Harmony/Harmony_Job.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/CombatExtended/Harmony/Harmony_Job.cs -------------------------------------------------------------------------------- /Source/CombatExtended/Loader/IModPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/CombatExtended/Loader/IModPart.cs -------------------------------------------------------------------------------- /Source/CombatExtended/Loader/ISettingsCE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/CombatExtended/Loader/ISettingsCE.cs -------------------------------------------------------------------------------- /Source/CombatExtended/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/CombatExtended/Version.cs -------------------------------------------------------------------------------- /Source/CombatExtended/shields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/CombatExtended/shields.md -------------------------------------------------------------------------------- /Source/CombatExtendedLoader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/CombatExtendedLoader.sln -------------------------------------------------------------------------------- /Source/Loader/Loader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/Loader/Loader.csproj -------------------------------------------------------------------------------- /Source/Loader/Loader/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/Loader/Loader/Loader.cs -------------------------------------------------------------------------------- /Source/SOS2Compat/SOS2Compat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/SOS2Compat/SOS2Compat.csproj -------------------------------------------------------------------------------- /Source/SOS2Compat/SOS2Compat/SOS2Compat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/SOS2Compat/SOS2Compat/SOS2Compat.cs -------------------------------------------------------------------------------- /Source/SRTSCompat/SRTSCompat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/SRTSCompat/SRTSCompat.csproj -------------------------------------------------------------------------------- /Source/SRTSCompat/SRTSCompat/SRTSCompat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/SRTSCompat/SRTSCompat/SRTSCompat.cs -------------------------------------------------------------------------------- /Source/VehiclesCompat/VehiclesCompat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/VehiclesCompat/VehiclesCompat.csproj -------------------------------------------------------------------------------- /Source/packages/BetterTurrets-reference.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/packages/BetterTurrets-reference.dll -------------------------------------------------------------------------------- /Source/packages/CombatExtended.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/packages/CombatExtended.dll -------------------------------------------------------------------------------- /Source/packages/ED-Shields-Reference.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/packages/ED-Shields-Reference.dll -------------------------------------------------------------------------------- /Source/packages/Rimatomics-reference.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/packages/Rimatomics-reference.dll -------------------------------------------------------------------------------- /Source/packages/SRTS-reference.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/packages/SRTS-reference.dll -------------------------------------------------------------------------------- /Source/packages/SmashTools-reference.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/packages/SmashTools-reference.dll -------------------------------------------------------------------------------- /Source/packages/VEF-reference.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/packages/VEF-reference.dll -------------------------------------------------------------------------------- /Source/packages/VFESecurity-reference.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/packages/VFESecurity-reference.dll -------------------------------------------------------------------------------- /Source/packages/Vehicles-reference.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/packages/Vehicles-reference.dll -------------------------------------------------------------------------------- /Source/packages/WeaponBase-reference.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Source/packages/WeaponBase-reference.dll -------------------------------------------------------------------------------- /SupportedThirdPartyMods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/SupportedThirdPartyMods.md -------------------------------------------------------------------------------- /Textures/Things/Ammo/Cannon/EMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Cannon/EMP.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Cannon/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Cannon/HE.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Cannon/HEAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Cannon/HEAT.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Cannon/Tank/AP/AP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Cannon/Tank/AP/AP_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Cannon/Tank/AP/AP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Cannon/Tank/AP/AP_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Cannon/Tank/AP/AP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Cannon/Tank/AP/AP_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Cannon/Tank/HE/HE_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Cannon/Tank/HE/HE_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Cannon/Tank/HE/HE_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Cannon/Tank/HE/HE_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Cannon/Tank/HE/HE_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Cannon/Tank/HE/HE_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/HighCaliber/AP/AP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/HighCaliber/AP/AP_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/HighCaliber/AP/AP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/HighCaliber/AP/AP_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/HighCaliber/AP/AP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/HighCaliber/AP/AP_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/HighCaliber/HE/HE_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/HighCaliber/HE/HE_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/HighCaliber/HE/HE_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/HighCaliber/HE/HE_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/HighCaliber/HE/HE_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/HighCaliber/HE/HE_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Mortar/EMP/EMP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Mortar/EMP/EMP_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Mortar/EMP/EMP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Mortar/EMP/EMP_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Mortar/EMP/EMP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Mortar/EMP/EMP_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Mortar/HE/HE_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Mortar/HE/HE_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Mortar/HE/HE_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Mortar/HE/HE_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Mortar/HE/HE_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Mortar/HE/HE_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Nail/Nail_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Nail/Nail_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Nail/Nail_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Nail/Nail_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Nail/Nail_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Nail/Nail_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Pistol/AP/AP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Pistol/AP/AP_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Pistol/AP/AP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Pistol/AP/AP_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Pistol/AP/AP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Pistol/AP/AP_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Pistol/FMJ/FMJ_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Pistol/FMJ/FMJ_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Pistol/FMJ/FMJ_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Pistol/FMJ/FMJ_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Pistol/FMJ/FMJ_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Pistol/FMJ/FMJ_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Pistol/HP/HP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Pistol/HP/HP_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Pistol/HP/HP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Pistol/HP/HP_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Pistol/HP/HP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Pistol/HP/HP_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/RPG/Frag/Frag_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/RPG/Frag/Frag_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/RPG/Frag/Frag_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/RPG/Frag/Frag_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/RPG/Frag/Frag_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/RPG/Frag/Frag_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/RPG/HEAT/HEAT_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/RPG/HEAT/HEAT_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/RPG/HEAT/HEAT_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/RPG/HEAT/HEAT_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/RPG/HEAT/HEAT_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/RPG/HEAT/HEAT_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/RPG/Tandem/Tandem_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/RPG/Tandem/Tandem_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/RPG/Tandem/Tandem_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/RPG/Tandem/Tandem_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/RPG/Tandem/Tandem_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/RPG/Tandem/Tandem_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Recoilless/HE/HE_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Recoilless/HE/HE_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Recoilless/HE/HE_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Recoilless/HE/HE_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Recoilless/HE/HE_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Recoilless/HE/HE_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Revolver/AP/AP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Revolver/AP/AP_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Revolver/AP/AP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Revolver/AP/AP_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Revolver/AP/AP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Revolver/AP/AP_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Revolver/FMJ/FMJ_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Revolver/FMJ/FMJ_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Revolver/FMJ/FMJ_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Revolver/FMJ/FMJ_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Revolver/FMJ/FMJ_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Revolver/FMJ/FMJ_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Revolver/HP/HP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Revolver/HP/HP_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Revolver/HP/HP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Revolver/HP/HP_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Revolver/HP/HP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Revolver/HP/HP_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/AP/AP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/AP/AP_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/AP/AP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/AP/AP_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/AP/AP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/AP/AP_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/Clip/AP/AP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/Clip/AP/AP_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/Clip/AP/AP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/Clip/AP/AP_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/Clip/AP/AP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/Clip/AP/AP_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/Clip/HE/HE_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/Clip/HE/HE_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/Clip/HE/HE_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/Clip/HE/HE_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/Clip/HE/HE_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/Clip/HE/HE_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/Clip/HP/HP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/Clip/HP/HP_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/Clip/HP/HP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/Clip/HP/HP_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/Clip/HP/HP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/Clip/HP/HP_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/FMJ/FMJ_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/FMJ/FMJ_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/FMJ/FMJ_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/FMJ/FMJ_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/FMJ/FMJ_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/FMJ/FMJ_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/HE/HE_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/HE/HE_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/HE/HE_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/HE/HE_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/HE/HE_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/HE/HE_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/HP/HP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/HP/HP_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/HP/HP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/HP/HP_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/HP/HP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/HP/HP_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/Sabot/Sabot_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/Sabot/Sabot_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/Sabot/Sabot_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/Sabot/Sabot_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rifle/Sabot/Sabot_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rifle/Sabot/Sabot_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rocket/M74/M74_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rocket/M74/M74_1.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rocket/M74/M74_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rocket/M74/M74_3.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Rocket/M74/M74_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Rocket/M74/M74_4.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Shotgun/EMP/EMP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Shotgun/EMP/EMP_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Shotgun/EMP/EMP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Shotgun/EMP/EMP_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Shotgun/EMP/EMP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Shotgun/EMP/EMP_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Shotgun/Shot/Shot_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Shotgun/Shot/Shot_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Shotgun/Shot/Shot_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Shotgun/Shot/Shot_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Shotgun/Shot/Shot_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Shotgun/Shot/Shot_c.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Shotgun/Slug/Slug_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Shotgun/Slug/Slug_a.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Shotgun/Slug/Slug_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Shotgun/Slug/Slug_b.png -------------------------------------------------------------------------------- /Textures/Things/Ammo/Shotgun/Slug/Slug_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Ammo/Shotgun/Slug/Slug_c.png -------------------------------------------------------------------------------- /Textures/Things/Apparel/Shield/CE_Shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Apparel/Shield/CE_Shield.png -------------------------------------------------------------------------------- /Textures/Things/Building/Turrets/KPV_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Building/Turrets/KPV_gun.png -------------------------------------------------------------------------------- /Textures/Things/Filth/LiquidFuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Filth/LiquidFuel.png -------------------------------------------------------------------------------- /Textures/Things/Flecks/CE_LandedJavelin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Flecks/CE_LandedJavelin.png -------------------------------------------------------------------------------- /Textures/Things/Flecks/CannonBallFleck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Flecks/CannonBallFleck.png -------------------------------------------------------------------------------- /Textures/Things/Flecks/Fleck_BigShell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Flecks/Fleck_BigShell.png -------------------------------------------------------------------------------- /Textures/Things/Flecks/Fleck_BulletHole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Flecks/Fleck_BulletHole.png -------------------------------------------------------------------------------- /Textures/Things/Flecks/Fleck_GrenadePin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Flecks/Fleck_GrenadePin.png -------------------------------------------------------------------------------- /Textures/Things/Gas/Smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Gas/Smoke.png -------------------------------------------------------------------------------- /Textures/Things/Mote/BigExplode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Mote/BigExplode.png -------------------------------------------------------------------------------- /Textures/Things/Mote/Mote_FireSmoked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Mote/Mote_FireSmoked.png -------------------------------------------------------------------------------- /Textures/Things/Mote/Mote_HunkerDownIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Mote/Mote_HunkerDownIcon.png -------------------------------------------------------------------------------- /Textures/Things/Mote/Mote_SuppressIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Mote/Mote_SuppressIcon.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Cannon/AP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Cannon/AP.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Cannon/APCR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Cannon/APCR.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Cannon/APHE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Cannon/APHE.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Cannon/EMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Cannon/EMP.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Cannon/EMPFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Cannon/EMPFS.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Cannon/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Cannon/HE.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Cannon/HEAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Cannon/HEAT.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Cannon/HEATFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Cannon/HEATFS.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Cannon/HEFS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Cannon/HEFS.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Cannon/Sabot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Cannon/Sabot.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Dart/Dart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Dart/Dart.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Flame_CE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Flame_CE.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Grenades/EMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Grenades/EMP.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Grenades/Frag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Grenades/Frag.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Grenades/Tox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Grenades/Tox.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Laser_CE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Laser_CE.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Mortar/EMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Mortar/EMP.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Mortar/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Mortar/HE.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Mortar/Smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Mortar/Smoke.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Mortar/Toxic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Mortar/Toxic.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/RPG/Frag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/RPG/Frag.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/RPG/HEAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/RPG/HEAT.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/RPG/RPG28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/RPG/RPG28.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/RPG/Tandem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/RPG/Tandem.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Recoilless/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Recoilless/HE.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Rocket/AT4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Rocket/AT4.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Rocket/M72LAW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Rocket/M72LAW.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Rocket/M74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Rocket/M74.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Rocket/S5/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Rocket/S5/HE.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Rocket/S8/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Rocket/S8/HE.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Sling/Steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Sling/Steel.png -------------------------------------------------------------------------------- /Textures/Things/Projectile/Sling/Stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Projectile/Sling/Stone.png -------------------------------------------------------------------------------- /Textures/Things/Resources/FSX/FSX_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Resources/FSX/FSX_a.png -------------------------------------------------------------------------------- /Textures/Things/Resources/FSX/FSX_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Resources/FSX/FSX_b.png -------------------------------------------------------------------------------- /Textures/Things/Special/ArtilleryMarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Special/ArtilleryMarker.png -------------------------------------------------------------------------------- /Textures/Things/Weapons/CE_FlareGun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Weapons/CE_FlareGun.png -------------------------------------------------------------------------------- /Textures/Things/Weapons/CE_M72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Weapons/CE_M72.png -------------------------------------------------------------------------------- /Textures/Things/Weapons/MechanoidMinigun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/Things/Weapons/MechanoidMinigun.png -------------------------------------------------------------------------------- /Textures/ThirdParty/Rimsenal/Pipebomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/ThirdParty/Rimsenal/Pipebomb.png -------------------------------------------------------------------------------- /Textures/ThirdParty/Rimsenal/TE/TE_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/ThirdParty/Rimsenal/TE/TE_a.png -------------------------------------------------------------------------------- /Textures/ThirdParty/Rimsenal/TE/TE_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/ThirdParty/Rimsenal/TE/TE_b.png -------------------------------------------------------------------------------- /Textures/ThirdParty/Rimsenal/TE/TE_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/ThirdParty/Rimsenal/TE/TE_c.png -------------------------------------------------------------------------------- /Textures/ThirdParty/Rimsenal/YP/YP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/ThirdParty/Rimsenal/YP/YP_a.png -------------------------------------------------------------------------------- /Textures/ThirdParty/Rimsenal/YP/YP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/ThirdParty/Rimsenal/YP/YP_b.png -------------------------------------------------------------------------------- /Textures/ThirdParty/Rimsenal/YP/YP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/ThirdParty/Rimsenal/YP/YP_c.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/AdjustFireArc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/AdjustFireArc.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/AimedShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/AimedShot.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/AimedShotBurst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/AimedShotBurst.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/AimedShotSingle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/AimedShotSingle.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/AttackWorldTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/AttackWorldTile.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/AutoFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/AutoFire.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/BurstFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/BurstFire.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/CE_AutoLoader_Drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/CE_AutoLoader_Drop.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/CE_AutoLoader_Reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/CE_AutoLoader_Reload.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/CE_CIWS_Projectile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/CE_CIWS_Projectile.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/CE_CIWS_Skyfaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/CE_CIWS_Skyfaller.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/HoldFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/HoldFire.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/Reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/Reload.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/SetMagCount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/SetMagCount.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/SingleFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/SingleFire.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/Snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/Snapshot.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/SnapshotBurst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/SnapshotBurst.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/SnapshotSingle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/SnapshotSingle.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/SuppressFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/SuppressFire.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/TakeAmmoNow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/TakeAmmoNow.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/Targetting/auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/Targetting/auto.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/Targetting/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/Targetting/center.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/Targetting/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/Targetting/head.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/Targetting/legs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/Targetting/legs.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/TargettingMelee/Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/TargettingMelee/Top.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/closed_bipod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/closed_bipod.png -------------------------------------------------------------------------------- /Textures/UI/Buttons/open_bipod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Buttons/open_bipod.png -------------------------------------------------------------------------------- /Textures/UI/Icons/CE_ModIcon_JustHat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/CE_ModIcon_JustHat.png -------------------------------------------------------------------------------- /Textures/UI/Icons/Turrets/KPV_uiIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/Turrets/KPV_uiIcon.png -------------------------------------------------------------------------------- /Textures/UI/Icons/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/all.png -------------------------------------------------------------------------------- /Textures/UI/Icons/ammo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/ammo.png -------------------------------------------------------------------------------- /Textures/UI/Icons/ammoAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/ammoAdd.png -------------------------------------------------------------------------------- /Textures/UI/Icons/arrowBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/arrowBottom.png -------------------------------------------------------------------------------- /Textures/UI/Icons/arrowDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/arrowDown.png -------------------------------------------------------------------------------- /Textures/UI/Icons/arrowTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/arrowTop.png -------------------------------------------------------------------------------- /Textures/UI/Icons/arrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/arrowUp.png -------------------------------------------------------------------------------- /Textures/UI/Icons/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/clear.png -------------------------------------------------------------------------------- /Textures/UI/Icons/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/cog.png -------------------------------------------------------------------------------- /Textures/UI/Icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/edit.png -------------------------------------------------------------------------------- /Textures/UI/Icons/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/gear.png -------------------------------------------------------------------------------- /Textures/UI/Icons/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/generic.png -------------------------------------------------------------------------------- /Textures/UI/Icons/loadoutDropExcess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/loadoutDropExcess.png -------------------------------------------------------------------------------- /Textures/UI/Icons/loadoutPickupDrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/loadoutPickupDrop.png -------------------------------------------------------------------------------- /Textures/UI/Icons/melee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/melee.png -------------------------------------------------------------------------------- /Textures/UI/Icons/minified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/minified.png -------------------------------------------------------------------------------- /Textures/UI/Icons/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/move.png -------------------------------------------------------------------------------- /Textures/UI/Icons/ranged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/ranged.png -------------------------------------------------------------------------------- /Textures/UI/Icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Textures/UI/Icons/search.png -------------------------------------------------------------------------------- /Workspace.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/Workspace.code-workspace -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CombatExtended-Continued/CombatExtended/HEAD/global.json --------------------------------------------------------------------------------