├── Changelog.txt ├── Parabellum ├── 1.3 │ └── Defs │ │ ├── CombatExtended │ │ ├── Ammo │ │ │ ├── Cannon │ │ │ │ ├── 120mmCannon.xml │ │ │ │ ├── 128mm.xml │ │ │ │ ├── 155mmHowitzer.xml │ │ │ │ ├── 210mmHowitzer.xml │ │ │ │ ├── 30mm.xml │ │ │ │ ├── 37mm.xml │ │ │ │ ├── 50mm.xml │ │ │ │ ├── 75mm.xml │ │ │ │ └── 90mmCannon.xml │ │ │ ├── Launcher │ │ │ │ ├── 130mm Rockets.xml │ │ │ │ ├── 25x59mm.xml │ │ │ │ ├── 40x46mm.xml │ │ │ │ ├── CGR.xml │ │ │ │ ├── FLASH.xml │ │ │ │ ├── MultipleAmmoType.xml │ │ │ │ ├── NbW21.xml │ │ │ │ ├── NbW32.xml │ │ │ │ ├── PzF.xml │ │ │ │ ├── RPzB.xml │ │ │ │ └── Schiessbecher RG.xml │ │ │ ├── Small Arms │ │ │ │ ├── 127x42mmB.xml │ │ │ │ ├── 132 TuF.xml │ │ │ │ ├── 7.63x25mmM.xml │ │ │ │ ├── 7.92x33mmK.xml │ │ │ │ ├── 7.92x57mmM.xml │ │ │ │ ├── Ammo+.xml │ │ │ │ ├── Multicatridge.xml │ │ │ │ └── Shotgun.xml │ │ │ └── Special │ │ │ │ └── NewFragments.xml │ │ └── AmmoCategoryDefs │ │ │ ├── AmmoCategories_Launchers.xml │ │ │ ├── AmmoCategories_RGs.xml │ │ │ ├── AmmoCategories_Small Arms.xml │ │ │ └── AmmoCategories_Turrets.xml │ │ ├── DamageDef │ │ └── Damages_Special.xml │ │ ├── DesignationSubCategoryDef │ │ └── DesignationSubCategoryDef.xml │ │ ├── FactionDefs │ │ └── Factions_Player.xml │ │ ├── HediffDefs │ │ ├── Hediffs_Local_Infections.xml │ │ └── Hediffs_Local_Injuries.xml │ │ ├── RecipeDefs_Weapons │ │ ├── Recipes_HandGrenades.xml │ │ ├── Recipes_Weapons_Carabines.xml │ │ ├── Recipes_Weapons_Heavy.xml │ │ ├── Recipes_Weapons_Launchers.xml │ │ ├── Recipes_Weapons_Pistols.xml │ │ ├── Recipes_Weapons_Rifles.xml │ │ ├── Recipes_Weapons_SMGs.xml │ │ ├── Recipes_Weapons_Shotguns.xml │ │ └── Recipes_Weapons_Snipers.xml │ │ ├── ResearchDefs │ │ └── ResearchDefs.xml │ │ ├── ScenarioDefs │ │ └── Scenarios_Rifleman.xml │ │ ├── SoundDefs │ │ ├── Portable_Weapons.xml │ │ ├── Turrets_Shot.xml │ │ └── Weapon_Interaction.xml │ │ ├── ThingCategoryDefs │ │ └── ThingCategories_Pa.xml │ │ ├── ThingDefs_Apparel │ │ ├── BallisticArmor.xml │ │ ├── ExtraApparel.xml │ │ ├── PlateInsert.xml │ │ ├── Stahlhelm.xml │ │ └── SteelBodyArmor.xml │ │ ├── ThingDefs_Mics │ │ ├── BunkerStorage.xml │ │ ├── FoodRecipes.xml │ │ ├── MessKit.xml │ │ ├── Mines.xml │ │ ├── Pervitin.xml │ │ ├── PzC.xml │ │ ├── S-mine.xml │ │ └── SKK.xml │ │ ├── ThingDefs_Turrets │ │ ├── 12,8cm cannons.xml │ │ ├── 3,7cm cannons.xml │ │ ├── 3cm cannons.xml │ │ ├── 5cm cannons.xml │ │ ├── 7,5cm cannons.xml │ │ ├── CQCTurret.xml │ │ ├── GrW.xml │ │ ├── M2HBs.xml │ │ ├── MGs.xml │ │ ├── Machineguns.xml │ │ ├── Mk18 Mod 0.xml │ │ ├── Morser.xml │ │ ├── Nebelwerfer21.xml │ │ ├── Nebelwerfer32.xml │ │ ├── RPzBT.xml │ │ ├── SOFLAM.xml │ │ ├── SPG-9M.xml │ │ ├── Sentry.xml │ │ ├── Type 63.xml │ │ ├── Wombat.xml │ │ └── XM-307ACSW.xml │ │ └── ThingDefs_Weapons │ │ ├── PWM.xml │ │ ├── Panzerfaust.xml │ │ ├── Weapons_Carabines.xml │ │ ├── Weapons_Grenades.xml │ │ ├── Weapons_Heavy.xml │ │ ├── Weapons_Launchers.xml │ │ ├── Weapons_Pistols.xml │ │ ├── Weapons_Rifles.xml │ │ ├── Weapons_SMGs.xml │ │ ├── Weapons_Shotguns.xml │ │ └── Weapons_SniperRifles.xml ├── 1.4 │ ├── Defs │ │ ├── CombatExtended │ │ │ ├── Ammo │ │ │ │ ├── Cannon │ │ │ │ │ ├── 120mmCannon.xml │ │ │ │ │ ├── 128mm.xml │ │ │ │ │ ├── 155mmHowitzer.xml │ │ │ │ │ ├── 210mmHowitzer.xml │ │ │ │ │ ├── 30mm.xml │ │ │ │ │ ├── 37mm.xml │ │ │ │ │ ├── 50mm.xml │ │ │ │ │ ├── 75mm.xml │ │ │ │ │ └── 90mmCannon.xml │ │ │ │ ├── Launcher │ │ │ │ │ ├── 130mm Rockets.xml │ │ │ │ │ ├── 25x59mm.xml │ │ │ │ │ ├── 40x46mm.xml │ │ │ │ │ ├── CGR.xml │ │ │ │ │ ├── FLASH.xml │ │ │ │ │ ├── MultipleAmmoType.xml │ │ │ │ │ ├── NbW21.xml │ │ │ │ │ ├── NbW32.xml │ │ │ │ │ ├── PzF.xml │ │ │ │ │ ├── RPzB.xml │ │ │ │ │ └── Schiessbecher RG.xml │ │ │ │ ├── Small Arms │ │ │ │ │ ├── 127x42mmB.xml │ │ │ │ │ ├── 132 TuF.xml │ │ │ │ │ ├── 7.63x25mmM.xml │ │ │ │ │ ├── 7.92x33mmK.xml │ │ │ │ │ ├── 7.92x57mmM.xml │ │ │ │ │ ├── Ammo+.xml │ │ │ │ │ ├── Multicatridge.xml │ │ │ │ │ └── Shotgun.xml │ │ │ │ └── Special │ │ │ │ │ └── NewFragments.xml │ │ │ └── AmmoCategoryDefs │ │ │ │ ├── AmmoCategories_Launchers.xml │ │ │ │ ├── AmmoCategories_RGs.xml │ │ │ │ ├── AmmoCategories_Small Arms.xml │ │ │ │ └── AmmoCategories_Turrets.xml │ │ ├── DamageDef │ │ │ └── Damages_Special.xml │ │ ├── DesignationSubCategoryDef │ │ │ └── DesignationSubCategoryDef.xml │ │ ├── FactionDefs │ │ │ └── Factions_Player.xml │ │ ├── HediffDefs │ │ │ ├── Hediffs_Local_Infections.xml │ │ │ └── Hediffs_Local_Injuries.xml │ │ ├── RecipeDefs_Weapons │ │ │ ├── Recipes_HandGrenades.xml │ │ │ ├── Recipes_Weapons_Carabines.xml │ │ │ ├── Recipes_Weapons_Heavy.xml │ │ │ ├── Recipes_Weapons_Launchers.xml │ │ │ ├── Recipes_Weapons_Pistols.xml │ │ │ ├── Recipes_Weapons_Rifles.xml │ │ │ ├── Recipes_Weapons_SMGs.xml │ │ │ ├── Recipes_Weapons_Shotguns.xml │ │ │ └── Recipes_Weapons_Snipers.xml │ │ ├── ResearchDefs │ │ │ └── ResearchDefs.xml │ │ ├── ScenarioDefs │ │ │ └── Scenarios_Rifleman.xml │ │ ├── SoundDefs │ │ │ ├── Portable_Weapons.xml │ │ │ ├── Turrets_Shot.xml │ │ │ └── Weapon_Interaction.xml │ │ ├── ThingCategoryDefs │ │ │ └── ThingCategories_Pa.xml │ │ ├── ThingDefs_Apparel │ │ │ ├── BallisticArmor.xml │ │ │ ├── ExtraApparel.xml │ │ │ ├── PlateInsert.xml │ │ │ ├── Stahlhelm.xml │ │ │ └── SteelBodyArmor.xml │ │ ├── ThingDefs_Mics │ │ │ ├── BayonetBase.xml │ │ │ ├── BipodParabellum.xml │ │ │ ├── BunkerStorage.xml │ │ │ ├── FoodRecipes.xml │ │ │ ├── MessKit.xml │ │ │ ├── Mines.xml │ │ │ ├── NewFlecks.xml │ │ │ ├── Pervitin.xml │ │ │ ├── PzC.xml │ │ │ ├── S-mine.xml │ │ │ └── SKK.xml │ │ ├── ThingDefs_Turrets │ │ │ ├── 12,8cm cannons.xml │ │ │ ├── 3,7cm cannons.xml │ │ │ ├── 3cm cannons.xml │ │ │ ├── 5cm cannons.xml │ │ │ ├── 7,5cm cannons.xml │ │ │ ├── CQCTurret.xml │ │ │ ├── GrW.xml │ │ │ ├── M2HBs.xml │ │ │ ├── MGs.xml │ │ │ ├── Machineguns.xml │ │ │ ├── Mk18 Mod 0.xml │ │ │ ├── Morser.xml │ │ │ ├── Nebelwerfer21.xml │ │ │ ├── Nebelwerfer32.xml │ │ │ ├── RPzBT.xml │ │ │ ├── SOFLAM.xml │ │ │ ├── SPG-9M.xml │ │ │ ├── Sentry.xml │ │ │ ├── Type 63.xml │ │ │ ├── Wombat.xml │ │ │ └── XM-307ACSW.xml │ │ └── ThingDefs_Weapons │ │ │ ├── PWM.xml │ │ │ ├── Panzerfaust.xml │ │ │ ├── Weapon_Melee.xml │ │ │ ├── Weapons_Carabines.xml │ │ │ ├── Weapons_Grenades.xml │ │ │ ├── Weapons_Heavy.xml │ │ │ ├── Weapons_Launchers.xml │ │ │ ├── Weapons_Pistols.xml │ │ │ ├── Weapons_Rifles.xml │ │ │ ├── Weapons_SMGs.xml │ │ │ ├── Weapons_Shotguns.xml │ │ │ └── Weapons_SniperRifles.xml │ └── Patches │ │ ├── AmmoCategoryDef.xml │ │ ├── DesignationSubCategoriesPatchPara.xml │ │ ├── HSKTurretsBuff.xml │ │ ├── MessKit Patch.xml │ │ ├── NewAmmoPatches.xml │ │ ├── ParabellumHMC.xml │ │ ├── ParabellumSK.xml │ │ ├── ParabellumVile's_PI.xml │ │ ├── ParabellumWT.xml │ │ └── WeaponModularizationSK │ │ ├── Convert_Rifles.xml │ │ └── Convert_Shotgun.xml ├── 1.5 │ ├── Defs │ │ ├── CombatExtended │ │ │ ├── Ammo │ │ │ │ ├── Cannon │ │ │ │ │ ├── 120mmCannon.xml │ │ │ │ │ ├── 128mm.xml │ │ │ │ │ ├── 155mmHowitzer.xml │ │ │ │ │ ├── 210mmHowitzer.xml │ │ │ │ │ ├── 30mm.xml │ │ │ │ │ ├── 37mm.xml │ │ │ │ │ ├── 50mm.xml │ │ │ │ │ ├── 75mm.xml │ │ │ │ │ └── 90mmCannon.xml │ │ │ │ ├── Launcher │ │ │ │ │ ├── 130mm Rockets.xml │ │ │ │ │ ├── 25x59mm.xml │ │ │ │ │ ├── 40x46mm.xml │ │ │ │ │ ├── CGR.xml │ │ │ │ │ ├── FLASH.xml │ │ │ │ │ ├── MultipleAmmoType.xml │ │ │ │ │ ├── NbW21.xml │ │ │ │ │ ├── NbW32.xml │ │ │ │ │ ├── PzF.xml │ │ │ │ │ ├── RPzB.xml │ │ │ │ │ └── Schiessbecher RG.xml │ │ │ │ ├── Small Arms │ │ │ │ │ ├── 127x42mmB.xml │ │ │ │ │ ├── 132 TuF.xml │ │ │ │ │ ├── 7.63x25mmM.xml │ │ │ │ │ ├── 7.92x33mmK.xml │ │ │ │ │ ├── 7.92x57mmM.xml │ │ │ │ │ ├── Ammo+.xml │ │ │ │ │ ├── Multicatridge.xml │ │ │ │ │ └── Shotgun.xml │ │ │ │ └── Special │ │ │ │ │ └── NewFragments.xml │ │ │ └── AmmoCategoryDefs │ │ │ │ ├── AmmoCategories_Launchers.xml │ │ │ │ ├── AmmoCategories_RGs.xml │ │ │ │ ├── AmmoCategories_Small Arms.xml │ │ │ │ └── AmmoCategories_Turrets.xml │ │ ├── DamageDef │ │ │ └── Damages_Special.xml │ │ ├── DesignationSubCategoryDef │ │ │ └── DesignationSubCategoryDef.xml │ │ ├── FactionDefs │ │ │ └── Factions_Player.xml │ │ ├── HediffDefs │ │ │ ├── Hediffs_Local_Infections.xml │ │ │ └── Hediffs_Local_Injuries.xml │ │ ├── RecipeDefs_Weapons │ │ │ ├── Recipes_HandGrenades.xml │ │ │ ├── Recipes_Weapons_Carabines.xml │ │ │ ├── Recipes_Weapons_Heavy.xml │ │ │ ├── Recipes_Weapons_Launchers.xml │ │ │ ├── Recipes_Weapons_Pistols.xml │ │ │ ├── Recipes_Weapons_Rifles.xml │ │ │ ├── Recipes_Weapons_SMGs.xml │ │ │ ├── Recipes_Weapons_Shotguns.xml │ │ │ └── Recipes_Weapons_Snipers.xml │ │ ├── ResearchDefs │ │ │ └── ResearchDefs.xml │ │ ├── ScenarioDefs │ │ │ └── Scenarios_Rifleman.xml │ │ ├── SoundDefs │ │ │ ├── Portable_Weapons.xml │ │ │ ├── Turrets_Shot.xml │ │ │ └── Weapon_Interaction.xml │ │ ├── ThingCategoryDefs │ │ │ └── ThingCategories_Pa.xml │ │ ├── ThingDefs_Apparel │ │ │ ├── BallisticArmor.xml │ │ │ ├── ExtraApparel.xml │ │ │ ├── PlateInsert.xml │ │ │ ├── Stahlhelm.xml │ │ │ └── SteelBodyArmor.xml │ │ ├── ThingDefs_Mics │ │ │ ├── BayonetBase.xml │ │ │ ├── BipodParabellum.xml │ │ │ ├── BunkerStorage.xml │ │ │ ├── FoodRecipes.xml │ │ │ ├── MessKit.xml │ │ │ ├── Mines.xml │ │ │ ├── NewFlecks.xml │ │ │ ├── Pervitin.xml │ │ │ ├── PzC.xml │ │ │ ├── S-mine.xml │ │ │ └── SKK.xml │ │ ├── ThingDefs_Turrets │ │ │ ├── 12,8cm cannons.xml │ │ │ ├── 3,7cm cannons.xml │ │ │ ├── 3cm cannons.xml │ │ │ ├── 5cm cannons.xml │ │ │ ├── 7,5cm cannons.xml │ │ │ ├── CQCTurret.xml │ │ │ ├── GrW.xml │ │ │ ├── M2HBs.xml │ │ │ ├── MGs.xml │ │ │ ├── Machineguns.xml │ │ │ ├── Mk18 Mod 0.xml │ │ │ ├── Morser.xml │ │ │ ├── Nebelwerfer21.xml │ │ │ ├── Nebelwerfer32.xml │ │ │ ├── RPzBT.xml │ │ │ ├── SOFLAM.xml │ │ │ ├── SPG-9M.xml │ │ │ ├── Sentry.xml │ │ │ ├── Turret Crate.xml │ │ │ ├── Type 63.xml │ │ │ ├── Wombat.xml │ │ │ └── XM-307ACSW.xml │ │ └── ThingDefs_Weapons │ │ │ ├── PWM.xml │ │ │ ├── Panzerfaust.xml │ │ │ ├── Weapon_Melee.xml │ │ │ ├── Weapons_Carabines.xml │ │ │ ├── Weapons_Grenades.xml │ │ │ ├── Weapons_Heavy.xml │ │ │ ├── Weapons_Launchers.xml │ │ │ ├── Weapons_Pistols.xml │ │ │ ├── Weapons_Rifles.xml │ │ │ ├── Weapons_SMGs.xml │ │ │ ├── Weapons_Shotguns.xml │ │ │ └── Weapons_SniperRifles.xml │ └── Patches │ │ ├── AmmoCategoryDef.xml │ │ ├── DesignationSubCategoriesPatchPara.xml │ │ ├── HSKTurretsBuff.xml │ │ ├── MessKit Patch.xml │ │ ├── NewAmmoPatches.xml │ │ ├── ParabellumHMC.xml │ │ ├── ParabellumSK.xml │ │ ├── ParabellumVile's_PI.xml │ │ ├── ParabellumWT.xml │ │ └── WeaponModularizationSK │ │ ├── Convert_Rifles.xml │ │ └── Convert_Shotgun.xml ├── About │ ├── About.xml │ ├── Changelog (2.0a).txt │ ├── Changelog.txt │ └── Preview.png ├── Content │ ├── 1.2 │ │ ├── Defs │ │ │ ├── ThingDefs_Mics │ │ │ │ └── BayonetBase.xml │ │ │ └── ThingDefs_Weapons │ │ │ │ └── Weapon_Melee.xml │ │ └── Patches │ │ │ └── HSKApparelBuff.xml │ ├── 1.3 │ │ ├── Defs │ │ │ ├── ThingDefs_Mics │ │ │ │ └── BayonetBase.xml │ │ │ └── ThingDefs_Weapons │ │ │ │ └── Weapon_Melee.xml │ │ └── Patches │ │ │ ├── DamageACPpatch.xml │ │ │ └── HSKApparelBuff.xml │ ├── 1.4 │ │ └── Textures │ │ │ └── Things │ │ │ └── Weapons │ │ │ ├── Carabines │ │ │ ├── G43.png │ │ │ └── VG3.png │ │ │ ├── Rifles │ │ │ ├── FG42.png │ │ │ └── StG44.png │ │ │ └── SRs │ │ │ └── 98s.png │ ├── 1.5 │ │ └── Textures │ │ │ └── Things │ │ │ └── Weapons │ │ │ ├── Carabines │ │ │ ├── G43.png │ │ │ └── VG3.png │ │ │ ├── Rifles │ │ │ ├── FG42.png │ │ │ └── StG44.png │ │ │ └── SRs │ │ │ └── 98s.png │ └── WeaponModularizationSK │ │ ├── Defs │ │ ├── ThingDefs_Buildings │ │ │ └── Buildings_Mics.xml │ │ ├── ThingDefs_Misc │ │ │ ├── AR │ │ │ │ ├── Magazines.xml │ │ │ │ ├── Muzzles.xml │ │ │ │ └── Scopes.xml │ │ │ └── UAR │ │ │ │ ├── Barrels.xml │ │ │ │ ├── Convertion.xml │ │ │ │ ├── Handguards.xml │ │ │ │ ├── Magazines.xml │ │ │ │ └── Stock.xml │ │ ├── ThingDefs_Weapons │ │ │ └── Weapons_Carbines │ │ │ │ ├── G43.xml │ │ │ │ ├── Mauser K98.xml │ │ │ │ ├── UniversalAR - BR.xml │ │ │ │ ├── UniversalAR - SG.xml │ │ │ │ ├── UniversalAR - SMG.xml │ │ │ │ └── UniversalAR.xml │ │ └── WorkGiverDefs │ │ │ └── WorkGiver_WM.xml │ │ ├── Patches │ │ ├── ARToolset.xml │ │ ├── ExtraAttachment.xml │ │ └── Patches.xml │ │ └── Textures │ │ └── Things │ │ ├── WeaponPart │ │ ├── Barrels │ │ │ ├── Pa_AR_Ba.png │ │ │ ├── Pa_AR_Bb.png │ │ │ ├── Pa_AR_Bc.png │ │ │ ├── Pa_AR_Bd.png │ │ │ ├── Pa_AR_SBa.png │ │ │ ├── Pa_AR_SBb.png │ │ │ └── Pa_AR_SBd.png │ │ ├── Handguards │ │ │ ├── Pa_AR_HGa.png │ │ │ ├── Pa_AR_HGb.png │ │ │ ├── Pa_AR_HGc.png │ │ │ └── Pa_AR_HGd.png │ │ ├── Magazines │ │ │ ├── DT.png │ │ │ ├── G4310rnd.png │ │ │ ├── G4320rnd.png │ │ │ ├── G43StG.png │ │ │ ├── MauserTM.png │ │ │ ├── Pa_AKPmag.png │ │ │ ├── Pa_AKQmag.png │ │ │ ├── Pa_AR_20rnd.png │ │ │ ├── Pa_BR_20rnd.png │ │ │ ├── Pa_BR_30rnd.png │ │ │ ├── Pa_SG_20rnd.png │ │ │ └── Pa_SG_8rnd.png │ │ ├── Misc │ │ │ ├── Empty.png │ │ │ ├── Pa_AR_12GR.png │ │ │ ├── Pa_AR_308R.png │ │ │ ├── Pa_AR_AK.png │ │ │ └── Pa_AR_DR.png │ │ ├── Muzzles │ │ │ ├── S8498B.png │ │ │ ├── Schiessbecher.png │ │ │ └── SchiessbecherG43.png │ │ ├── Scopes │ │ │ ├── Vampir.png │ │ │ ├── ZF4.png │ │ │ ├── ZF41.png │ │ │ ├── ZF41M.png │ │ │ ├── ZF4G43.png │ │ │ └── ZS.png │ │ └── Stocks │ │ │ ├── Pa_AR_BT.png │ │ │ ├── Pa_AR_CollapsibleS.png │ │ │ └── Pa_AR_FixedS.png │ │ └── Weapons │ │ └── Carabines │ │ ├── 98kM.png │ │ ├── G43c.png │ │ └── Pa_AR_R.png ├── Languages │ ├── English │ │ └── DefInjected │ │ │ ├── ArchitectSense.DesignationSubCategoryDef │ │ │ └── DesignationSubCategoryDef.xml │ │ │ ├── CombatExtended.AmmoCategoryDef │ │ │ ├── AmmoCategories_Launcher.xml │ │ │ └── AmmoCategories_Small Arms.xml │ │ │ ├── CombatExtended.AmmoSetDef │ │ │ ├── 127x42mmB.xml │ │ │ ├── 128mm.xml │ │ │ ├── 132 TuF.xml │ │ │ ├── 25x59mm.xml │ │ │ ├── 37mm.xml │ │ │ ├── 50mm.xml │ │ │ ├── 7.63x25mmM.xml │ │ │ ├── 7.92x33mmK.xml │ │ │ ├── 7.92x57mmM.xml │ │ │ ├── CGR.xml │ │ │ ├── FLASH.xml │ │ │ ├── Multicatridge.xml │ │ │ ├── MultipleAmmoType.xml │ │ │ ├── NbW21.xml │ │ │ ├── NbW32.xml │ │ │ ├── PzF.xml │ │ │ ├── RPzB.xml │ │ │ └── Shotgun.xml │ │ │ ├── DamageDef │ │ │ └── PWM.xml │ │ │ ├── RecipeDef │ │ │ ├── 12,8cm cannons.xml │ │ │ ├── 120mmCannon.xml │ │ │ ├── 127x42mmB.xml │ │ │ ├── 128mm.xml │ │ │ ├── 132 TuF.xml │ │ │ ├── 155mmHowitzer.xml │ │ │ ├── 25x59mm.xml │ │ │ ├── 3,7cm cannons.xml │ │ │ ├── 37mm.xml │ │ │ ├── 40x46mm.xml │ │ │ ├── 50mm.xml │ │ │ ├── 7.63x25mmM.xml │ │ │ ├── 7.92x33mmK.xml │ │ │ ├── 7.92x57mmM.xml │ │ │ ├── CGR.xml │ │ │ ├── FLASH.xml │ │ │ ├── Machineguns.xml │ │ │ ├── Mk18 Mod 0.xml │ │ │ ├── NbW21.xml │ │ │ ├── NbW32.xml │ │ │ ├── Nebelwerfer32.xml │ │ │ ├── PzF.xml │ │ │ ├── RPzB.xml │ │ │ ├── RPzBT.xml │ │ │ ├── Recipes_HandGrenades.xml │ │ │ ├── Recipes_Weapons_Carabines.xml │ │ │ ├── Recipes_Weapons_Heavy.xml │ │ │ ├── Recipes_Weapons_Launchers.xml │ │ │ ├── Recipes_Weapons_Pistols.xml │ │ │ ├── Recipes_Weapons_Rifles.xml │ │ │ ├── Recipes_Weapons_SMGs.xml │ │ │ ├── Recipes_Weapons_Shotguns.xml │ │ │ ├── Recipes_Weapons_Snipers.xml │ │ │ ├── SPG-9M.xml │ │ │ ├── Shotgun.xml │ │ │ ├── Type 63.xml │ │ │ ├── Wombat.xml │ │ │ └── XM-307ACSW.xml │ │ │ ├── ResearchProjectDef │ │ │ └── ResearchDefs.xml │ │ │ ├── ThingCategoryDef │ │ │ ├── 127x42mmB.xml │ │ │ ├── 128mm.xml │ │ │ ├── 132 TuF.xml │ │ │ ├── 25x59mm.xml │ │ │ ├── 37mm.xml │ │ │ ├── 50mm.xml │ │ │ ├── 7.63x25mmM.xml │ │ │ ├── 7.92x33mmK.xml │ │ │ ├── 7.92x57mmM.xml │ │ │ ├── CGR.xml │ │ │ ├── NbW21.xml │ │ │ ├── NbW32.xml │ │ │ ├── PzF.xml │ │ │ └── RPzB.xml │ │ │ └── ThingDef │ │ │ ├── 12,8cm cannons.xml │ │ │ ├── 120mmCannon.xml │ │ │ ├── 127x42mmB.xml │ │ │ ├── 128mm.xml │ │ │ ├── 132 TuF.xml │ │ │ ├── 155mmHowitzer.xml │ │ │ ├── 25x59mm.xml │ │ │ ├── 3,7cm cannons.xml │ │ │ ├── 37mm.xml │ │ │ ├── 40x46mm.xml │ │ │ ├── 50mm.xml │ │ │ ├── 5cm cannons.xml │ │ │ ├── 7.63x25mmM.xml │ │ │ ├── 7.92x33mmK.xml │ │ │ ├── 7.92x57mmM.xml │ │ │ ├── CGR.xml │ │ │ ├── CQCTurret.xml │ │ │ ├── FLASH.xml │ │ │ ├── MGs.xml │ │ │ ├── Machineguns.xml │ │ │ ├── Mines.xml │ │ │ ├── Mk18 Mod 0.xml │ │ │ ├── NbW21.xml │ │ │ ├── NbW32.xml │ │ │ ├── Nebelwerfer21.xml │ │ │ ├── Nebelwerfer32.xml │ │ │ ├── NewFragments.xml │ │ │ ├── PWM.xml │ │ │ ├── PzF.xml │ │ │ ├── RPzB.xml │ │ │ ├── RPzBT.xml │ │ │ ├── SOFLAM.xml │ │ │ ├── SPG-9M.xml │ │ │ ├── Shotgun.xml │ │ │ ├── Type 63.xml │ │ │ ├── Weapons_Carabines.xml │ │ │ ├── Weapons_Grenades.xml │ │ │ ├── Weapons_Heavy.xml │ │ │ ├── Weapons_Launchers.xml │ │ │ ├── Weapons_Pistols.xml │ │ │ ├── Weapons_Rifles.xml │ │ │ ├── Weapons_SMGs.xml │ │ │ ├── Weapons_Shotguns.xml │ │ │ ├── Weapons_SniperRiflesAdvanced.xml │ │ │ ├── Wombat.xml │ │ │ └── XM-307ACSW.xml │ └── Russian │ │ └── DefInjected │ │ ├── ArchitectSense.DesignationSubCategoryDef │ │ └── DesignationSubCategoryDef.xml │ │ ├── CombatExtended.AmmoCategoryDef │ │ ├── AmmoCategories_Launcher.xml │ │ └── AmmoCategories_Small Arms.xml │ │ ├── CombatExtended.AmmoSetDef │ │ ├── 127x42mmB.xml │ │ ├── 128mm.xml │ │ ├── 132 TuF.xml │ │ ├── 25x59mm.xml │ │ ├── 37mm.xml │ │ ├── 50mm.xml │ │ ├── 7.63x25mmM.xml │ │ ├── 7.92x33mmK.xml │ │ ├── 7.92x57mmM.xml │ │ ├── CGR.xml │ │ ├── FLASH.xml │ │ ├── Multicatridge.xml │ │ ├── MultipleAmmoType.xml │ │ ├── NbW21.xml │ │ ├── NbW32.xml │ │ ├── PzF.xml │ │ ├── RPzB.xml │ │ └── Shotgun.xml │ │ ├── DamageDef │ │ └── PWM.xml │ │ ├── RecipeDef │ │ ├── 12,8cm cannons.xml │ │ ├── 120mmCannon.xml │ │ ├── 127x42mmB.xml │ │ ├── 128mm.xml │ │ ├── 132 TuF.xml │ │ ├── 155mmHowitzer.xml │ │ ├── 25x59mm.xml │ │ ├── 3,7cm cannons.xml │ │ ├── 37mm.xml │ │ ├── 40x46mm.xml │ │ ├── 50mm.xml │ │ ├── 7.63x25mmM.xml │ │ ├── 7.92x33mmK.xml │ │ ├── 7.92x57mmM.xml │ │ ├── CGR.xml │ │ ├── FLASH.xml │ │ ├── Machineguns.xml │ │ ├── Mk18 Mod 0.xml │ │ ├── NbW21.xml │ │ ├── NbW32.xml │ │ ├── Nebelwerfer32.xml │ │ ├── PzF.xml │ │ ├── RPzB.xml │ │ ├── RPzBT.xml │ │ ├── Recipes_HandGrenades.xml │ │ ├── Recipes_Weapons_Carabines.xml │ │ ├── Recipes_Weapons_Heavy.xml │ │ ├── Recipes_Weapons_Launchers.xml │ │ ├── Recipes_Weapons_Pistols.xml │ │ ├── Recipes_Weapons_Rifles.xml │ │ ├── Recipes_Weapons_SMGs.xml │ │ ├── Recipes_Weapons_Shotguns.xml │ │ ├── Recipes_Weapons_Snipers.xml │ │ ├── SPG-9M.xml │ │ ├── Shotgun.xml │ │ ├── Type 63.xml │ │ ├── Wombat.xml │ │ └── XM-307ACSW.xml │ │ ├── ResearchProjectDef │ │ └── ResearchDefs.xml │ │ ├── ThingCategoryDef │ │ ├── 127x42mmB.xml │ │ ├── 128mm.xml │ │ ├── 132 TuF.xml │ │ ├── 25x59mm.xml │ │ ├── 37mm.xml │ │ ├── 50mm.xml │ │ ├── 7.63x25mmM.xml │ │ ├── 7.92x33mmK.xml │ │ ├── 7.92x57mmM.xml │ │ ├── CGR.xml │ │ ├── NbW21.xml │ │ ├── NbW32.xml │ │ ├── PzF.xml │ │ └── RPzB.xml │ │ └── ThingDef │ │ ├── 12,8cm cannons.xml │ │ ├── 120mmCannon.xml │ │ ├── 127x42mmB.xml │ │ ├── 128mm.xml │ │ ├── 132 TuF.xml │ │ ├── 155mmHowitzer.xml │ │ ├── 25x59mm.xml │ │ ├── 3,7cm cannons.xml │ │ ├── 37mm.xml │ │ ├── 40x46mm.xml │ │ ├── 50mm.xml │ │ ├── 5cm cannons.xml │ │ ├── 7.63x25mmM.xml │ │ ├── 7.92x33mmK.xml │ │ ├── 7.92x57mmM.xml │ │ ├── CGR.xml │ │ ├── CQCTurret.xml │ │ ├── FLASH.xml │ │ ├── MGs.xml │ │ ├── Machineguns.xml │ │ ├── Mines.xml │ │ ├── Mk18 Mod 0.xml │ │ ├── NbW21.xml │ │ ├── NbW32.xml │ │ ├── Nebelwerfer21.xml │ │ ├── Nebelwerfer32.xml │ │ ├── NewFragments.xml │ │ ├── PWM.xml │ │ ├── PzF.xml │ │ ├── RPzB.xml │ │ ├── RPzBT.xml │ │ ├── SOFLAM.xml │ │ ├── SPG-9M.xml │ │ ├── Shotgun.xml │ │ ├── Type 63.xml │ │ ├── Weapons_Carabines.xml │ │ ├── Weapons_Grenades.xml │ │ ├── Weapons_Heavy.xml │ │ ├── Weapons_Launchers.xml │ │ ├── Weapons_Pistols.xml │ │ ├── Weapons_Rifles.xml │ │ ├── Weapons_SMGs.xml │ │ ├── Weapons_Shotguns.xml │ │ ├── Weapons_SniperRiflesAdvanced.xml │ │ ├── Wombat.xml │ │ └── XM-307ACSW.xml ├── LoadFolders.xml ├── Sounds │ ├── Interact │ │ └── Int_StG44.ogg │ └── Weapons │ │ ├── 128mm.ogg │ │ ├── 21cmSA.ogg │ │ ├── 37mm.ogg │ │ ├── 50mm.ogg │ │ ├── 75mm.ogg │ │ ├── Beowulf.ogg │ │ ├── CAWS.wav │ │ ├── CG42R.wav │ │ ├── CGR.wav │ │ ├── Delisle.ogg │ │ ├── FG42.ogg │ │ ├── G43.ogg │ │ ├── G88.ogg │ │ ├── Lewis.wav │ │ ├── MG34.ogg │ │ ├── MG42.ogg │ │ ├── Madsen.ogg │ │ ├── Mk14.wav │ │ ├── NbW.ogg │ │ ├── PzF.ogg │ │ ├── RPzB.ogg │ │ ├── StG44.ogg │ │ └── Suomi.ogg └── Textures │ └── Things │ ├── Ammo │ ├── 120mm │ │ ├── Canister.png │ │ ├── HESH.png │ │ └── Stun.png │ ├── 128mm │ │ ├── APC.png │ │ ├── APCBCHE.png │ │ ├── APCR.png │ │ └── HE.png │ ├── 130mmR │ │ ├── HEFR │ │ │ ├── HEFR_a.png │ │ │ ├── HEFR_b.png │ │ │ └── HEFR_c.png │ │ └── HEIR │ │ │ ├── HEIR_a.png │ │ │ ├── HEIR_b.png │ │ │ └── HEIR_c.png │ ├── 155mm │ │ ├── ADAM.png │ │ └── W48.png │ ├── 210mm │ │ ├── AC.png │ │ ├── APHE.png │ │ └── HE.png │ ├── 25x59mm │ │ ├── HEAB │ │ │ ├── HEAB_a.png │ │ │ ├── HEAB_b.png │ │ │ └── HEAB_c.png │ │ ├── HEDP │ │ │ ├── HEDP_a.png │ │ │ ├── HEDP_b.png │ │ │ └── HEDP_c.png │ │ ├── HEEMP │ │ │ ├── HEEMP_a.png │ │ │ ├── HEEMP_b.png │ │ │ └── HEEMP_c.png │ │ └── HEI │ │ │ ├── HEI_a.png │ │ │ ├── HEI_b.png │ │ │ └── HEI_c.png │ ├── 37mm │ │ ├── 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 │ │ └── HE │ │ │ ├── HE_a.png │ │ │ ├── HE_b.png │ │ │ └── HE_c.png │ ├── 50mm │ │ ├── APCR │ │ │ ├── APCR_a.png │ │ │ ├── APCR_b.png │ │ │ └── APCR_c.png │ │ ├── APHE │ │ │ ├── APHE_a.png │ │ │ ├── APHE_b.png │ │ │ └── APHE_c.png │ │ └── HE │ │ │ ├── HE_a.png │ │ │ ├── HE_b.png │ │ │ └── HE_c.png │ ├── 75mm │ │ ├── APCBCHE.png │ │ ├── APCR.png │ │ ├── Canister.png │ │ ├── HE.png │ │ └── HEAT.png │ ├── 90mm │ │ └── APERS-T.png │ ├── Beowulf │ │ ├── API │ │ │ ├── API_a.png │ │ │ ├── API_b.png │ │ │ └── API_c.png │ │ ├── EMP │ │ │ ├── EMP_a.png │ │ │ ├── EMP_b.png │ │ │ └── EMP_c.png │ │ ├── FMJ │ │ │ ├── FMJ_a.png │ │ │ ├── FMJ_b.png │ │ │ └── FMJ_c.png │ │ └── HP │ │ │ ├── HP_a.png │ │ │ ├── HP_b.png │ │ │ └── HP_c.png │ ├── CGR │ │ ├── ADM.png │ │ ├── HE.png │ │ └── HEAT.png │ ├── FLASH │ │ ├── TEA_a.png │ │ ├── TEA_b.png │ │ └── TEA_c.png │ ├── GrenadeLauncher │ │ ├── BB │ │ │ ├── BB_a.png │ │ │ ├── BB_b.png │ │ │ └── BB_c.png │ │ ├── Flechette │ │ │ ├── Flechette_a.png │ │ │ ├── Flechette_b.png │ │ │ └── Flechette_c.png │ │ ├── Foam │ │ │ ├── Foam_a.png │ │ │ ├── Foam_b.png │ │ │ └── Foam_c.png │ │ └── Stun │ │ │ ├── Stun_a.png │ │ │ ├── Stun_b.png │ │ │ └── Stun_c.png │ ├── HandGrenades │ │ ├── 4kg │ │ │ ├── 4kg_a.png │ │ │ ├── 4kg_b.png │ │ │ └── 4kg_c.png │ │ ├── B │ │ │ ├── B_a.png │ │ │ ├── B_b.png │ │ │ └── B_c.png │ │ ├── M24 │ │ │ ├── M24_a.png │ │ │ ├── M24_b.png │ │ │ └── M24_c.png │ │ ├── Nb │ │ │ ├── Nb_a.png │ │ │ ├── Nb_b.png │ │ │ └── Nb_c.png │ │ ├── PWM │ │ │ ├── PWM_a.png │ │ │ ├── PWM_b.png │ │ │ └── PWM_c.png │ │ ├── RGO │ │ │ ├── RGO_a.png │ │ │ ├── RGO_b.png │ │ │ └── RGO_c.png │ │ ├── S-mine │ │ │ ├── Smine_a.png │ │ │ ├── Smine_b.png │ │ │ └── Smine_c.png │ │ └── Splittlerring │ │ │ ├── Splittlerring_a.png │ │ │ ├── Splittlerring_b.png │ │ │ └── Splittlerring_c.png │ ├── Mauser │ │ ├── K │ │ │ ├── AP │ │ │ │ ├── AP_a.png │ │ │ │ ├── AP_b.png │ │ │ │ └── AP_c.png │ │ │ ├── FMJ │ │ │ │ ├── FMJ_a.png │ │ │ │ ├── FMJ_b.png │ │ │ │ └── FMJ_c.png │ │ │ └── J │ │ │ │ ├── J_a.png │ │ │ │ ├── J_b.png │ │ │ │ └── J_c.png │ │ ├── MP │ │ │ ├── FMJ │ │ │ │ ├── FMJ_a.png │ │ │ │ ├── FMJ_b.png │ │ │ │ └── FMJ_c.png │ │ │ └── HP │ │ │ │ ├── HP_a.png │ │ │ │ ├── HP_b.png │ │ │ │ └── HP_c.png │ │ ├── MR │ │ │ ├── BP │ │ │ │ ├── BP_a.png │ │ │ │ ├── BP_b.png │ │ │ │ └── BP_c.png │ │ │ ├── KP │ │ │ │ ├── KP_a.png │ │ │ │ ├── KP_b.png │ │ │ │ └── KP_c.png │ │ │ ├── P88 │ │ │ │ ├── P88_a.png │ │ │ │ ├── P88_b.png │ │ │ │ └── P88_c.png │ │ │ └── SP │ │ │ │ ├── SP_a.png │ │ │ │ ├── SP_b.png │ │ │ │ └── SP_c.png │ │ └── TuF │ │ │ ├── APHE │ │ │ ├── APHE_a.png │ │ │ ├── APHE_b.png │ │ │ └── APHE_c.png │ │ │ ├── HET │ │ │ ├── HET_a.png │ │ │ ├── HET_b.png │ │ │ └── HET_c.png │ │ │ └── Sabot │ │ │ ├── AP_a.png │ │ │ ├── AP_b.png │ │ │ └── AP_c.png │ ├── NbW │ │ ├── 15cm │ │ │ ├── D │ │ │ │ ├── D_a.png │ │ │ │ ├── D_b.png │ │ │ │ └── D_c.png │ │ │ ├── HE │ │ │ │ ├── HE_a.png │ │ │ │ ├── HE_b.png │ │ │ │ └── HE_c.png │ │ │ └── Nb │ │ │ │ ├── Nb_a.png │ │ │ │ ├── Nb_b.png │ │ │ │ └── Nb_c.png │ │ ├── 21cm │ │ │ ├── 21cm_a.png │ │ │ ├── 21cm_b.png │ │ │ └── 21cm_c.png │ │ ├── 28cm │ │ │ ├── 28cm_a.png │ │ │ ├── 28cm_b.png │ │ │ └── 28cm_c.png │ │ ├── 30cm │ │ │ ├── 30cm_a.png │ │ │ ├── 30cm_b.png │ │ │ └── 30cm_c.png │ │ └── 32cm │ │ │ ├── 32cm_a.png │ │ │ ├── 32cm_b.png │ │ │ └── 32cm_c.png │ ├── RPzB │ │ ├── 8cm │ │ │ ├── 8cm_a.png │ │ │ ├── 8cm_b.png │ │ │ └── 8cm_c.png │ │ ├── Frag │ │ │ ├── Frag_a.png │ │ │ ├── Frag_b.png │ │ │ └── Frag_c.png │ │ └── HEAT │ │ │ ├── HEAT_a.png │ │ │ ├── HEAT_b.png │ │ │ └── HEAT_c.png │ ├── Schiessbecher │ │ ├── HE │ │ │ ├── HE_a.png │ │ │ ├── HE_b.png │ │ │ └── HE_c.png │ │ └── HEAT │ │ │ ├── HEAT_a.png │ │ │ ├── HEAT_b.png │ │ │ └── HEAT_c.png │ └── Shotgun │ │ └── Salt │ │ ├── Salt_a.png │ │ ├── Salt_b.png │ │ └── Salt_c.png │ ├── Apparel │ ├── 6B5 │ │ ├── 6B5.png │ │ ├── 6B5_Fat_east.png │ │ ├── 6B5_Fat_north.png │ │ ├── 6B5_Fat_south.png │ │ ├── 6B5_Female_east.png │ │ ├── 6B5_Female_north.png │ │ ├── 6B5_Female_southth.png │ │ ├── 6B5_Hulk_east.png │ │ ├── 6B5_Hulk_north.png │ │ ├── 6B5_Hulk_south.png │ │ ├── 6B5_Male_east.png │ │ ├── 6B5_Male_north.png │ │ ├── 6B5_Male_south.png │ │ ├── 6B5_Thin_east.png │ │ ├── 6B5_Thin_north.png │ │ └── 6B5_Thin_south.png │ ├── IOTV │ │ ├── ArmPlates.png │ │ ├── IOTV.png │ │ ├── IOTV_Fat_east.png │ │ ├── IOTV_Fat_north.png │ │ ├── IOTV_Fat_south.png │ │ ├── IOTV_Female_east.png │ │ ├── IOTV_Female_north.png │ │ ├── IOTV_Female_south.png │ │ ├── IOTV_Hulk_east.png │ │ ├── IOTV_Hulk_north.png │ │ ├── IOTV_Hulk_south.png │ │ ├── IOTV_Male_east.png │ │ ├── IOTV_Male_north.png │ │ ├── IOTV_Male_south.png │ │ ├── IOTV_Thin_east.png │ │ ├── IOTV_Thin_north.png │ │ ├── IOTV_Thin_south.png │ │ ├── LegPlates.png │ │ ├── MilitaryBoots.png │ │ └── NeckCollar.png │ ├── NIJIIA │ │ ├── NIJIIA.png │ │ ├── NIJIIA_Fat_east.png │ │ ├── NIJIIA_Fat_north.png │ │ ├── NIJIIA_Fat_south.png │ │ ├── NIJIIA_Female_east.png │ │ ├── NIJIIA_Female_north.png │ │ ├── NIJIIA_Female_south.png │ │ ├── NIJIIA_Hulk_east.png │ │ ├── NIJIIA_Hulk_north.png │ │ ├── NIJIIA_Hulk_south.png │ │ ├── NIJIIA_Male_east.png │ │ ├── NIJIIA_Male_north.png │ │ ├── NIJIIA_Male_south.png │ │ ├── NIJIIA_Thin_east.png │ │ ├── NIJIIA_Thin_north.png │ │ └── NIJIIA_Thin_south.png │ ├── PlateInsert │ │ ├── BPI.png │ │ ├── BPII.png │ │ ├── BPIII.png │ │ └── TP.png │ ├── SN46 │ │ ├── SN46.png │ │ ├── SN46_Fat_east.png │ │ ├── SN46_Fat_north.png │ │ ├── SN46_Fat_south.png │ │ ├── SN46_Female_east.png │ │ ├── SN46_Female_north.png │ │ ├── SN46_Female_south.png │ │ ├── SN46_Hulk_east.png │ │ ├── SN46_Hulk_north.png │ │ ├── SN46_Hulk_south.png │ │ ├── SN46_Male_east.png │ │ ├── SN46_Male_north.png │ │ ├── SN46_Male_south.png │ │ ├── SN46_Thin_east.png │ │ ├── SN46_Thin_north.png │ │ └── SN46_Thin_south.png │ ├── Sappenpanzer │ │ ├── Sappenpanzer.png │ │ ├── Sappenpanzer_Fat_east.png │ │ ├── Sappenpanzer_Fat_north.png │ │ ├── Sappenpanzer_Fat_south.png │ │ ├── Sappenpanzer_Female_east.png │ │ ├── Sappenpanzer_Female_north.png │ │ ├── Sappenpanzer_Female_south.png │ │ ├── Sappenpanzer_Hulk_east.png │ │ ├── Sappenpanzer_Hulk_north.png │ │ ├── Sappenpanzer_Hulk_south.png │ │ ├── Sappenpanzer_Male_east.png │ │ ├── Sappenpanzer_Male_north.png │ │ ├── Sappenpanzer_Male_south.png │ │ ├── Sappenpanzer_Thin_east.png │ │ ├── Sappenpanzer_Thin_north.png │ │ └── Sappenpanzer_Thin_south.png │ └── Stahlhelm │ │ ├── Stahlhelm.png │ │ ├── StahlhelmS.png │ │ ├── StahlhelmS_east.png │ │ ├── StahlhelmS_north.png │ │ ├── StahlhelmS_south.png │ │ ├── Stahlhelm_east.png │ │ ├── Stahlhelm_north.png │ │ └── Stahlhelm_south.png │ ├── Building │ ├── BunkerS.png │ ├── BunkerS_icon.png │ ├── BunkerSm.png │ ├── Mines │ │ ├── 4kgmine.png │ │ ├── M67m.png │ │ ├── M67p.png │ │ └── Smine.png │ └── Security │ │ ├── 50BMG_Top.png │ │ ├── 50BMG_ico.png │ │ ├── Artillery │ │ ├── NbW21_Top.png │ │ ├── NbW21_icon.png │ │ ├── NbW32_Top.png │ │ ├── NbW32_icon.png │ │ ├── NbW_Top.png │ │ ├── NbW_icon.png │ │ ├── RVW_Top.png │ │ ├── RVW_icon.png │ │ ├── Type63_Top.png │ │ └── Type63_icon.png │ │ ├── Base │ │ ├── Flak41_Base.png │ │ ├── H_Base.png │ │ ├── LG40_Base.png │ │ ├── Morser_Base.png │ │ ├── NbW32_Base.png │ │ ├── P_Base.png │ │ ├── Rafette_Base.png │ │ ├── SPG9M_Base.png │ │ ├── T_Base.png │ │ ├── Type63_Base.png │ │ ├── Vickers_Base.png │ │ ├── Wombat_Base.png │ │ └── XM307ACSW_Base.png │ │ ├── CMHT │ │ ├── FlaK40Z_Top.png │ │ ├── FlaK40Z_icon.png │ │ ├── Morser16_Top.png │ │ ├── Morser16_icon.png │ │ ├── Morser18_Top.png │ │ ├── Morser18_icon.png │ │ ├── PaK44_Top.png │ │ └── PaK44_icon.png │ │ ├── CMLT │ │ ├── GrW34_Top.png │ │ ├── GrW34_icon.png │ │ ├── GrW42k_Top.png │ │ ├── GrW42k_icon.png │ │ ├── LG40_Top.png │ │ ├── LG40_icon.png │ │ ├── MG08_Top.png │ │ ├── MG08_icon.png │ │ ├── MG34Z_Top.png │ │ ├── MG34Z_icon.png │ │ ├── MG42M_Top.png │ │ ├── MG42M_icon.png │ │ ├── MG45Z_Top.png │ │ ├── MG45Z_icon.png │ │ ├── Mk18M0_Top.png │ │ ├── Mk18M0_icon.png │ │ ├── Mx4AA_Top.png │ │ ├── Mx4AA_icon.png │ │ ├── PaK36_Top.png │ │ ├── PaK36_icon.png │ │ ├── Puppchen_Top.png │ │ ├── Puppchen_icon.png │ │ ├── SPG9MD_Top.png │ │ ├── SPG9MD_icon.png │ │ ├── SPG9M_Top.png │ │ ├── SPG9M_icon.png │ │ ├── Vickers_Top.png │ │ ├── Vickers_icon.png │ │ ├── XM307ACSW_Top.png │ │ └── XM307ACSW_icon.png │ │ ├── CMMT │ │ ├── Flak37_Top.png │ │ ├── Flak37_icon.png │ │ ├── Flak41_Top.png │ │ ├── Flak41_icon.png │ │ ├── GebK_Top.png │ │ ├── GebK_icon.png │ │ ├── M2BrowningD_Top.png │ │ ├── M2BrowningD_icon.png │ │ ├── M2BrowningQ_Top.png │ │ ├── M2BrowningQ_icon.png │ │ ├── MG131Z_Top.png │ │ ├── MG131Z_icon.png │ │ ├── MG131_Top.png │ │ ├── MG131_icon.png │ │ ├── MG18_Top.png │ │ ├── MG18_icon.png │ │ ├── MK103Q_Top.png │ │ ├── MK103Q_icon.png │ │ ├── MK103_Top.png │ │ ├── MK103_icon.png │ │ ├── PaK38_Top.png │ │ ├── PaK38_icon.png │ │ ├── PaK40_Top.png │ │ ├── PaK40_icon.png │ │ ├── RPzB6_Top.png │ │ ├── RPzB6_icon.png │ │ ├── Wombat_Top.png │ │ └── Wombat_icon.png │ │ ├── SOFLAM_Top.png │ │ ├── SOFLAM_icon.png │ │ └── Sentry │ │ ├── AA12x2_Top.png │ │ ├── AA12x2_icon.png │ │ ├── AntiR_Top.png │ │ ├── AntiR_icon.png │ │ ├── MGSentry_Top.png │ │ ├── MGSentry_icon.png │ │ ├── SMGSentry_Top.png │ │ └── SMGSentry_icon.png │ ├── Projectile │ ├── 120mm │ │ ├── HESH.png │ │ └── Stun.png │ ├── 128mm │ │ ├── APC.png │ │ ├── APCBCHE.png │ │ ├── APCR.png │ │ └── HE.png │ ├── 155mm │ │ ├── ADAM.png │ │ └── W48.png │ ├── 210mm │ │ ├── AC.png │ │ ├── APHE.png │ │ └── HE.png │ ├── 50mm │ │ ├── APCR.png │ │ ├── APHE.png │ │ └── HE.png │ ├── 75mm │ │ ├── APCBCHE.png │ │ ├── APCR.png │ │ ├── HE.png │ │ └── HEAT.png │ ├── CGR │ │ ├── Dart.png │ │ ├── HE.png │ │ └── HEAT.png │ ├── FLASH │ │ └── TEA.png │ ├── Grenades │ │ ├── 4kg.png │ │ ├── M24.png │ │ ├── M24B.png │ │ ├── M24Nb.png │ │ ├── M24S.png │ │ ├── PWM.png │ │ ├── RGO.png │ │ ├── Schnellnebelkerze39.png │ │ └── Smine.png │ ├── NbW │ │ ├── 15cm.png │ │ ├── 15cmD.png │ │ ├── 15cmNb.png │ │ ├── 21cm.png │ │ ├── 28cm.png │ │ ├── 30cm.png │ │ └── 32cm.png │ ├── PzF │ │ ├── PzF.png │ │ └── PzFK.png │ ├── RPzB │ │ ├── 8cm.png │ │ ├── Frag.png │ │ └── HEAT.png │ └── Schiessbecher │ │ ├── HE.png │ │ └── HEAT.png │ ├── Special │ ├── Foodcube.png │ ├── FoodcubeM.png │ ├── MessKit │ │ ├── MKa.png │ │ └── MKb.png │ ├── Onigiri │ │ ├── Onigiri_a.png │ │ ├── Onigiri_b.png │ │ └── Onigiri_c.png │ ├── Pervitin │ │ ├── Pervitin_a.png │ │ ├── Pervitin_b.png │ │ └── Pervitin_c.png │ └── SchoKaKola │ │ ├── SchoKaKola_a.png │ │ ├── SchoKaKola_b.png │ │ └── SchoKaKola_c.png │ └── Weapons │ ├── Carabines │ ├── 98k.png │ ├── Calico.png │ ├── Delisle.png │ ├── G41W.png │ ├── G43.png │ ├── K90.png │ ├── M4Beowulf.png │ ├── VG.png │ └── VG3.png │ ├── Launchers │ ├── CG42R.png │ ├── CGR.png │ ├── FLASH.png │ ├── MM1.png │ ├── PzF100 │ │ ├── PzF100_a.png │ │ ├── PzF100_b.png │ │ └── PzF100_c.png │ ├── PzFK │ │ ├── PzFK_a.png │ │ ├── PzFK_b.png │ │ └── PzFK_c.png │ ├── RGS.png │ └── RPzB.png │ ├── MGs │ ├── Lewis.png │ ├── MG0815.png │ ├── MG30.png │ ├── MG34.png │ ├── MG42.png │ ├── MG45.png │ └── Madsen.png │ ├── Pistols │ ├── C96.png │ ├── M712.png │ ├── SP.png │ ├── SR.png │ └── SW50B.png │ ├── Rifles │ ├── FG42.png │ ├── G88.png │ ├── GrB.png │ ├── Huot.png │ ├── MKb42H.png │ ├── Mk14.png │ ├── StG44.png │ └── TG18.png │ ├── SMGs │ ├── M1928A1.png │ ├── MP18.png │ ├── MP717r.png │ └── Suomi.png │ ├── SRs │ ├── 98s.png │ ├── Mk1250SPR.png │ ├── Mk12SPR.png │ └── XM109.png │ ├── Shotguns │ ├── BA5L.png │ ├── BA5S.png │ ├── CAWS.png │ ├── DP12.png │ ├── SSS.png │ ├── W1887.png │ ├── W1887S.png │ ├── W1897L.png │ └── W1897T.png │ └── Specials │ └── S8498III.png └── README.md /Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Changelog.txt -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/120mmCannon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/120mmCannon.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/128mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/128mm.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/155mmHowitzer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/155mmHowitzer.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/210mmHowitzer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/210mmHowitzer.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/30mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/30mm.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/37mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/37mm.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/50mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/50mm.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/75mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/75mm.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/90mmCannon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Cannon/90mmCannon.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Launcher/25x59mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Launcher/25x59mm.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Launcher/40x46mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Launcher/40x46mm.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Launcher/CGR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Launcher/CGR.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Launcher/FLASH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Launcher/FLASH.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Launcher/NbW21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Launcher/NbW21.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Launcher/NbW32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Launcher/NbW32.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Launcher/PzF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Launcher/PzF.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Launcher/RPzB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Launcher/RPzB.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Small Arms/127x42mmB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Small Arms/127x42mmB.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Small Arms/132 TuF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Small Arms/132 TuF.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Small Arms/Ammo+.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Small Arms/Ammo+.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/CombatExtended/Ammo/Small Arms/Shotgun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/CombatExtended/Ammo/Small Arms/Shotgun.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/DamageDef/Damages_Special.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/DamageDef/Damages_Special.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/FactionDefs/Factions_Player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/FactionDefs/Factions_Player.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/HediffDefs/Hediffs_Local_Infections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/HediffDefs/Hediffs_Local_Infections.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/HediffDefs/Hediffs_Local_Injuries.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/HediffDefs/Hediffs_Local_Injuries.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ResearchDefs/ResearchDefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ResearchDefs/ResearchDefs.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ScenarioDefs/Scenarios_Rifleman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ScenarioDefs/Scenarios_Rifleman.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/SoundDefs/Portable_Weapons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/SoundDefs/Portable_Weapons.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/SoundDefs/Turrets_Shot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/SoundDefs/Turrets_Shot.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/SoundDefs/Weapon_Interaction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/SoundDefs/Weapon_Interaction.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingCategoryDefs/ThingCategories_Pa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingCategoryDefs/ThingCategories_Pa.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Apparel/BallisticArmor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Apparel/BallisticArmor.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Apparel/ExtraApparel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Apparel/ExtraApparel.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Apparel/PlateInsert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Apparel/PlateInsert.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Apparel/Stahlhelm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Apparel/Stahlhelm.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Apparel/SteelBodyArmor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Apparel/SteelBodyArmor.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Mics/BunkerStorage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Mics/BunkerStorage.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Mics/FoodRecipes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Mics/FoodRecipes.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Mics/MessKit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Mics/MessKit.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Mics/Mines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Mics/Mines.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Mics/Pervitin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Mics/Pervitin.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Mics/PzC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Mics/PzC.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Mics/S-mine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Mics/S-mine.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Mics/SKK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Mics/SKK.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/12,8cm cannons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/12,8cm cannons.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/3,7cm cannons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/3,7cm cannons.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/3cm cannons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/3cm cannons.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/5cm cannons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/5cm cannons.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/7,5cm cannons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/7,5cm cannons.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/CQCTurret.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/CQCTurret.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/GrW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/GrW.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/M2HBs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/M2HBs.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/MGs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/MGs.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/Machineguns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/Machineguns.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/Mk18 Mod 0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/Mk18 Mod 0.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/Morser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/Morser.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/Nebelwerfer21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/Nebelwerfer21.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/Nebelwerfer32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/Nebelwerfer32.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/RPzBT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/RPzBT.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/SOFLAM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/SOFLAM.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/SPG-9M.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/SPG-9M.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/Sentry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/Sentry.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/Type 63.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/Type 63.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/Wombat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/Wombat.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Turrets/XM-307ACSW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Turrets/XM-307ACSW.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Weapons/PWM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Weapons/PWM.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Weapons/Panzerfaust.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Weapons/Panzerfaust.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_Carabines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_Carabines.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_Grenades.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_Grenades.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_Heavy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_Heavy.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_Launchers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_Launchers.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_Pistols.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_Pistols.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_Rifles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_Rifles.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_SMGs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_SMGs.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_Shotguns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_Shotguns.xml -------------------------------------------------------------------------------- /Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_SniperRifles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.3/Defs/ThingDefs_Weapons/Weapons_SniperRifles.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Cannon/120mmCannon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Cannon/120mmCannon.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Cannon/128mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Cannon/128mm.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Cannon/30mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Cannon/30mm.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Cannon/37mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Cannon/37mm.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Cannon/50mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Cannon/50mm.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Cannon/75mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Cannon/75mm.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Cannon/90mmCannon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Cannon/90mmCannon.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Launcher/25x59mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Launcher/25x59mm.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Launcher/40x46mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Launcher/40x46mm.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Launcher/CGR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Launcher/CGR.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Launcher/FLASH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Launcher/FLASH.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Launcher/NbW21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Launcher/NbW21.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Launcher/NbW32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Launcher/NbW32.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Launcher/PzF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Launcher/PzF.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Launcher/RPzB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Launcher/RPzB.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Small Arms/132 TuF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Small Arms/132 TuF.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Small Arms/Ammo+.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Small Arms/Ammo+.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/CombatExtended/Ammo/Small Arms/Shotgun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/CombatExtended/Ammo/Small Arms/Shotgun.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/DamageDef/Damages_Special.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/DamageDef/Damages_Special.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/FactionDefs/Factions_Player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/FactionDefs/Factions_Player.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/HediffDefs/Hediffs_Local_Infections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/HediffDefs/Hediffs_Local_Infections.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/HediffDefs/Hediffs_Local_Injuries.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/HediffDefs/Hediffs_Local_Injuries.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ResearchDefs/ResearchDefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ResearchDefs/ResearchDefs.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ScenarioDefs/Scenarios_Rifleman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ScenarioDefs/Scenarios_Rifleman.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/SoundDefs/Portable_Weapons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/SoundDefs/Portable_Weapons.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/SoundDefs/Turrets_Shot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/SoundDefs/Turrets_Shot.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/SoundDefs/Weapon_Interaction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/SoundDefs/Weapon_Interaction.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingCategoryDefs/ThingCategories_Pa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingCategoryDefs/ThingCategories_Pa.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Apparel/BallisticArmor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Apparel/BallisticArmor.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Apparel/ExtraApparel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Apparel/ExtraApparel.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Apparel/PlateInsert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Apparel/PlateInsert.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Apparel/Stahlhelm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Apparel/Stahlhelm.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Apparel/SteelBodyArmor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Apparel/SteelBodyArmor.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Mics/BayonetBase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Mics/BayonetBase.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Mics/BipodParabellum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Mics/BipodParabellum.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Mics/BunkerStorage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Mics/BunkerStorage.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Mics/FoodRecipes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Mics/FoodRecipes.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Mics/MessKit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Mics/MessKit.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Mics/Mines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Mics/Mines.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Mics/NewFlecks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Mics/NewFlecks.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Mics/Pervitin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Mics/Pervitin.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Mics/PzC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Mics/PzC.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Mics/S-mine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Mics/S-mine.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Mics/SKK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Mics/SKK.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/12,8cm cannons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/12,8cm cannons.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/3,7cm cannons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/3,7cm cannons.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/3cm cannons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/3cm cannons.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/5cm cannons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/5cm cannons.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/7,5cm cannons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/7,5cm cannons.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/CQCTurret.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/CQCTurret.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/GrW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/GrW.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/M2HBs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/M2HBs.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/MGs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/MGs.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/Machineguns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/Machineguns.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/Mk18 Mod 0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/Mk18 Mod 0.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/Morser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/Morser.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/Nebelwerfer21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/Nebelwerfer21.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/Nebelwerfer32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/Nebelwerfer32.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/RPzBT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/RPzBT.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/SOFLAM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/SOFLAM.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/SPG-9M.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/SPG-9M.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/Sentry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/Sentry.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/Type 63.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/Type 63.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/Wombat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/Wombat.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Turrets/XM-307ACSW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Turrets/XM-307ACSW.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Weapons/PWM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Weapons/PWM.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Weapons/Panzerfaust.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Weapons/Panzerfaust.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Weapons/Weapon_Melee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Weapons/Weapon_Melee.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_Carabines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_Carabines.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_Grenades.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_Grenades.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_Heavy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_Heavy.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_Launchers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_Launchers.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_Pistols.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_Pistols.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_Rifles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_Rifles.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_SMGs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_SMGs.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_Shotguns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_Shotguns.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_SniperRifles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Defs/ThingDefs_Weapons/Weapons_SniperRifles.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Patches/AmmoCategoryDef.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Patches/AmmoCategoryDef.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Patches/DesignationSubCategoriesPatchPara.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Patches/DesignationSubCategoriesPatchPara.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Patches/HSKTurretsBuff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Patches/HSKTurretsBuff.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Patches/MessKit Patch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Patches/MessKit Patch.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Patches/NewAmmoPatches.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Patches/NewAmmoPatches.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Patches/ParabellumHMC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Patches/ParabellumHMC.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Patches/ParabellumSK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Patches/ParabellumSK.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Patches/ParabellumVile's_PI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Patches/ParabellumVile's_PI.xml -------------------------------------------------------------------------------- /Parabellum/1.4/Patches/ParabellumWT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.4/Patches/ParabellumWT.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Cannon/120mmCannon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Cannon/120mmCannon.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Cannon/128mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Cannon/128mm.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Cannon/30mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Cannon/30mm.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Cannon/37mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Cannon/37mm.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Cannon/50mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Cannon/50mm.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Cannon/75mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Cannon/75mm.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Cannon/90mmCannon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Cannon/90mmCannon.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Launcher/25x59mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Launcher/25x59mm.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Launcher/40x46mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Launcher/40x46mm.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Launcher/CGR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Launcher/CGR.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Launcher/FLASH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Launcher/FLASH.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Launcher/NbW21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Launcher/NbW21.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Launcher/NbW32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Launcher/NbW32.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Launcher/PzF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Launcher/PzF.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Launcher/RPzB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Launcher/RPzB.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Small Arms/132 TuF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Small Arms/132 TuF.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Small Arms/Ammo+.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Small Arms/Ammo+.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/CombatExtended/Ammo/Small Arms/Shotgun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/CombatExtended/Ammo/Small Arms/Shotgun.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/DamageDef/Damages_Special.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/DamageDef/Damages_Special.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/FactionDefs/Factions_Player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/FactionDefs/Factions_Player.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/HediffDefs/Hediffs_Local_Infections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/HediffDefs/Hediffs_Local_Infections.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/HediffDefs/Hediffs_Local_Injuries.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/HediffDefs/Hediffs_Local_Injuries.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ResearchDefs/ResearchDefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ResearchDefs/ResearchDefs.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ScenarioDefs/Scenarios_Rifleman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ScenarioDefs/Scenarios_Rifleman.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/SoundDefs/Portable_Weapons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/SoundDefs/Portable_Weapons.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/SoundDefs/Turrets_Shot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/SoundDefs/Turrets_Shot.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/SoundDefs/Weapon_Interaction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/SoundDefs/Weapon_Interaction.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingCategoryDefs/ThingCategories_Pa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingCategoryDefs/ThingCategories_Pa.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Apparel/BallisticArmor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Apparel/BallisticArmor.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Apparel/ExtraApparel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Apparel/ExtraApparel.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Apparel/PlateInsert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Apparel/PlateInsert.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Apparel/Stahlhelm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Apparel/Stahlhelm.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Apparel/SteelBodyArmor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Apparel/SteelBodyArmor.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Mics/BayonetBase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Mics/BayonetBase.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Mics/BipodParabellum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Mics/BipodParabellum.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Mics/BunkerStorage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Mics/BunkerStorage.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Mics/FoodRecipes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Mics/FoodRecipes.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Mics/MessKit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Mics/MessKit.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Mics/Mines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Mics/Mines.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Mics/NewFlecks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Mics/NewFlecks.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Mics/Pervitin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Mics/Pervitin.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Mics/PzC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Mics/PzC.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Mics/S-mine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Mics/S-mine.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Mics/SKK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Mics/SKK.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/12,8cm cannons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/12,8cm cannons.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/3,7cm cannons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/3,7cm cannons.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/3cm cannons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/3cm cannons.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/5cm cannons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/5cm cannons.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/7,5cm cannons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/7,5cm cannons.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/CQCTurret.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/CQCTurret.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/GrW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/GrW.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/M2HBs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/M2HBs.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/MGs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/MGs.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/Machineguns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/Machineguns.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/Mk18 Mod 0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/Mk18 Mod 0.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/Morser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/Morser.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/Nebelwerfer21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/Nebelwerfer21.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/Nebelwerfer32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/Nebelwerfer32.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/RPzBT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/RPzBT.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/SOFLAM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/SOFLAM.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/SPG-9M.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/SPG-9M.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/Sentry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/Sentry.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/Turret Crate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/Turret Crate.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/Type 63.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/Type 63.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/Wombat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/Wombat.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Turrets/XM-307ACSW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Turrets/XM-307ACSW.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Weapons/PWM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Weapons/PWM.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Weapons/Panzerfaust.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Weapons/Panzerfaust.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Weapons/Weapon_Melee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Weapons/Weapon_Melee.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_Carabines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_Carabines.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_Grenades.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_Grenades.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_Heavy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_Heavy.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_Launchers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_Launchers.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_Pistols.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_Pistols.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_Rifles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_Rifles.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_SMGs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_SMGs.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_Shotguns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_Shotguns.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_SniperRifles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Defs/ThingDefs_Weapons/Weapons_SniperRifles.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Patches/AmmoCategoryDef.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Patches/AmmoCategoryDef.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Patches/DesignationSubCategoriesPatchPara.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Patches/DesignationSubCategoriesPatchPara.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Patches/HSKTurretsBuff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Patches/HSKTurretsBuff.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Patches/MessKit Patch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Patches/MessKit Patch.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Patches/NewAmmoPatches.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Patches/NewAmmoPatches.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Patches/ParabellumHMC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Patches/ParabellumHMC.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Patches/ParabellumSK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Patches/ParabellumSK.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Patches/ParabellumVile's_PI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Patches/ParabellumVile's_PI.xml -------------------------------------------------------------------------------- /Parabellum/1.5/Patches/ParabellumWT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/1.5/Patches/ParabellumWT.xml -------------------------------------------------------------------------------- /Parabellum/About/About.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/About/About.xml -------------------------------------------------------------------------------- /Parabellum/About/Changelog (2.0a).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/About/Changelog (2.0a).txt -------------------------------------------------------------------------------- /Parabellum/About/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/About/Changelog.txt -------------------------------------------------------------------------------- /Parabellum/About/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/About/Preview.png -------------------------------------------------------------------------------- /Parabellum/Content/1.2/Defs/ThingDefs_Mics/BayonetBase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Content/1.2/Defs/ThingDefs_Mics/BayonetBase.xml -------------------------------------------------------------------------------- /Parabellum/Content/1.2/Defs/ThingDefs_Weapons/Weapon_Melee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Content/1.2/Defs/ThingDefs_Weapons/Weapon_Melee.xml -------------------------------------------------------------------------------- /Parabellum/Content/1.2/Patches/HSKApparelBuff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Content/1.2/Patches/HSKApparelBuff.xml -------------------------------------------------------------------------------- /Parabellum/Content/1.3/Defs/ThingDefs_Mics/BayonetBase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Content/1.3/Defs/ThingDefs_Mics/BayonetBase.xml -------------------------------------------------------------------------------- /Parabellum/Content/1.3/Defs/ThingDefs_Weapons/Weapon_Melee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Content/1.3/Defs/ThingDefs_Weapons/Weapon_Melee.xml -------------------------------------------------------------------------------- /Parabellum/Content/1.3/Patches/DamageACPpatch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Content/1.3/Patches/DamageACPpatch.xml -------------------------------------------------------------------------------- /Parabellum/Content/1.3/Patches/HSKApparelBuff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Content/1.3/Patches/HSKApparelBuff.xml -------------------------------------------------------------------------------- /Parabellum/Content/1.4/Textures/Things/Weapons/Rifles/FG42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Content/1.4/Textures/Things/Weapons/Rifles/FG42.png -------------------------------------------------------------------------------- /Parabellum/Content/1.4/Textures/Things/Weapons/SRs/98s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Content/1.4/Textures/Things/Weapons/SRs/98s.png -------------------------------------------------------------------------------- /Parabellum/Content/1.5/Textures/Things/Weapons/Rifles/FG42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Content/1.5/Textures/Things/Weapons/Rifles/FG42.png -------------------------------------------------------------------------------- /Parabellum/Content/1.5/Textures/Things/Weapons/SRs/98s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Content/1.5/Textures/Things/Weapons/SRs/98s.png -------------------------------------------------------------------------------- /Parabellum/Content/WeaponModularizationSK/Patches/Patches.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Content/WeaponModularizationSK/Patches/Patches.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/DamageDef/PWM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/DamageDef/PWM.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/128mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/128mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/132 TuF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/132 TuF.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/25x59mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/25x59mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/37mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/37mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/40x46mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/40x46mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/50mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/50mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/CGR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/CGR.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/FLASH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/FLASH.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/NbW21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/NbW21.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/NbW32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/NbW32.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/PzF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/PzF.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/RPzB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/RPzB.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/RPzBT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/RPzBT.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/SPG-9M.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/SPG-9M.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/Shotgun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/Shotgun.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/Type 63.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/Type 63.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/RecipeDef/Wombat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/RecipeDef/Wombat.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/128mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/128mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/132 TuF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/132 TuF.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/25x59mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/25x59mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/37mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/37mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/40x46mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/40x46mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/50mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/50mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/CGR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/CGR.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/FLASH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/FLASH.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/MGs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/MGs.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/Mines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/Mines.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/NbW21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/NbW21.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/NbW32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/NbW32.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/PWM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/PWM.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/PzF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/PzF.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/RPzB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/RPzB.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/RPzBT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/RPzBT.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/SOFLAM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/SOFLAM.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/SPG-9M.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/SPG-9M.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/Shotgun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/Shotgun.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/Type 63.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/Type 63.xml -------------------------------------------------------------------------------- /Parabellum/Languages/English/DefInjected/ThingDef/Wombat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/English/DefInjected/ThingDef/Wombat.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/DamageDef/PWM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/DamageDef/PWM.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/128mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/128mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/132 TuF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/132 TuF.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/25x59mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/25x59mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/37mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/37mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/40x46mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/40x46mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/50mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/50mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/CGR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/CGR.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/FLASH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/FLASH.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/NbW21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/NbW21.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/NbW32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/NbW32.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/PzF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/PzF.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/RPzB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/RPzB.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/RPzBT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/RPzBT.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/SPG-9M.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/SPG-9M.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/Shotgun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/Shotgun.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/Type 63.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/Type 63.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/RecipeDef/Wombat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/RecipeDef/Wombat.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/128mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/128mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/132 TuF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/132 TuF.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/25x59mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/25x59mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/37mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/37mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/40x46mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/40x46mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/50mm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/50mm.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/CGR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/CGR.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/FLASH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/FLASH.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/MGs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/MGs.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/Mines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/Mines.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/NbW21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/NbW21.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/NbW32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/NbW32.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/PWM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/PWM.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/PzF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/PzF.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/RPzB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/RPzB.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/RPzBT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/RPzBT.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/SOFLAM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/SOFLAM.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/SPG-9M.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/SPG-9M.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/Shotgun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/Shotgun.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/Type 63.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/Type 63.xml -------------------------------------------------------------------------------- /Parabellum/Languages/Russian/DefInjected/ThingDef/Wombat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Languages/Russian/DefInjected/ThingDef/Wombat.xml -------------------------------------------------------------------------------- /Parabellum/LoadFolders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/LoadFolders.xml -------------------------------------------------------------------------------- /Parabellum/Sounds/Interact/Int_StG44.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Interact/Int_StG44.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/128mm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/128mm.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/21cmSA.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/21cmSA.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/37mm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/37mm.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/50mm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/50mm.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/75mm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/75mm.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/Beowulf.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/Beowulf.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/CAWS.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/CAWS.wav -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/CG42R.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/CG42R.wav -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/CGR.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/CGR.wav -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/Delisle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/Delisle.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/FG42.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/FG42.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/G43.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/G43.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/G88.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/G88.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/Lewis.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/Lewis.wav -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/MG34.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/MG34.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/MG42.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/MG42.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/Madsen.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/Madsen.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/Mk14.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/Mk14.wav -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/NbW.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/NbW.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/PzF.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/PzF.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/RPzB.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/RPzB.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/StG44.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/StG44.ogg -------------------------------------------------------------------------------- /Parabellum/Sounds/Weapons/Suomi.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Sounds/Weapons/Suomi.ogg -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/120mm/Canister.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/120mm/Canister.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/120mm/HESH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/120mm/HESH.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/120mm/Stun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/120mm/Stun.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/128mm/APC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/128mm/APC.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/128mm/APCBCHE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/128mm/APCBCHE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/128mm/APCR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/128mm/APCR.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/128mm/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/128mm/HE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/130mmR/HEFR/HEFR_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/130mmR/HEFR/HEFR_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/130mmR/HEFR/HEFR_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/130mmR/HEFR/HEFR_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/130mmR/HEFR/HEFR_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/130mmR/HEFR/HEFR_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/130mmR/HEIR/HEIR_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/130mmR/HEIR/HEIR_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/130mmR/HEIR/HEIR_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/130mmR/HEIR/HEIR_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/130mmR/HEIR/HEIR_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/130mmR/HEIR/HEIR_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/155mm/ADAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/155mm/ADAM.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/155mm/W48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/155mm/W48.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/210mm/AC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/210mm/AC.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/210mm/APHE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/210mm/APHE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/210mm/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/210mm/HE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/25x59mm/HEAB/HEAB_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/25x59mm/HEAB/HEAB_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/25x59mm/HEAB/HEAB_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/25x59mm/HEAB/HEAB_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/25x59mm/HEAB/HEAB_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/25x59mm/HEAB/HEAB_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/25x59mm/HEDP/HEDP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/25x59mm/HEDP/HEDP_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/25x59mm/HEDP/HEDP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/25x59mm/HEDP/HEDP_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/25x59mm/HEDP/HEDP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/25x59mm/HEDP/HEDP_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/25x59mm/HEEMP/HEEMP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/25x59mm/HEEMP/HEEMP_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/25x59mm/HEEMP/HEEMP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/25x59mm/HEEMP/HEEMP_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/25x59mm/HEEMP/HEEMP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/25x59mm/HEEMP/HEEMP_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/25x59mm/HEI/HEI_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/25x59mm/HEI/HEI_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/25x59mm/HEI/HEI_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/25x59mm/HEI/HEI_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/25x59mm/HEI/HEI_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/25x59mm/HEI/HEI_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/37mm/APCR/APCR_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/37mm/APCR/APCR_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/37mm/APCR/APCR_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/37mm/APCR/APCR_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/37mm/APCR/APCR_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/37mm/APCR/APCR_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/37mm/APHE/APHE_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/37mm/APHE/APHE_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/37mm/APHE/APHE_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/37mm/APHE/APHE_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/37mm/APHE/APHE_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/37mm/APHE/APHE_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/37mm/Canister/Canister_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/37mm/Canister/Canister_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/37mm/Canister/Canister_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/37mm/Canister/Canister_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/37mm/Canister/Canister_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/37mm/Canister/Canister_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/37mm/HE/HE_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/37mm/HE/HE_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/37mm/HE/HE_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/37mm/HE/HE_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/37mm/HE/HE_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/37mm/HE/HE_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/50mm/APCR/APCR_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/50mm/APCR/APCR_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/50mm/APCR/APCR_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/50mm/APCR/APCR_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/50mm/APCR/APCR_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/50mm/APCR/APCR_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/50mm/APHE/APHE_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/50mm/APHE/APHE_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/50mm/APHE/APHE_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/50mm/APHE/APHE_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/50mm/APHE/APHE_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/50mm/APHE/APHE_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/50mm/HE/HE_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/50mm/HE/HE_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/50mm/HE/HE_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/50mm/HE/HE_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/50mm/HE/HE_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/50mm/HE/HE_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/75mm/APCBCHE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/75mm/APCBCHE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/75mm/APCR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/75mm/APCR.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/75mm/Canister.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/75mm/Canister.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/75mm/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/75mm/HE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/75mm/HEAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/75mm/HEAT.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/90mm/APERS-T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/90mm/APERS-T.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Beowulf/API/API_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Beowulf/API/API_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Beowulf/API/API_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Beowulf/API/API_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Beowulf/API/API_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Beowulf/API/API_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Beowulf/EMP/EMP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Beowulf/EMP/EMP_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Beowulf/EMP/EMP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Beowulf/EMP/EMP_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Beowulf/EMP/EMP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Beowulf/EMP/EMP_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Beowulf/FMJ/FMJ_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Beowulf/FMJ/FMJ_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Beowulf/FMJ/FMJ_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Beowulf/FMJ/FMJ_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Beowulf/FMJ/FMJ_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Beowulf/FMJ/FMJ_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Beowulf/HP/HP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Beowulf/HP/HP_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Beowulf/HP/HP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Beowulf/HP/HP_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Beowulf/HP/HP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Beowulf/HP/HP_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/CGR/ADM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/CGR/ADM.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/CGR/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/CGR/HE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/CGR/HEAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/CGR/HEAT.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/FLASH/TEA_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/FLASH/TEA_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/FLASH/TEA_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/FLASH/TEA_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/FLASH/TEA_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/FLASH/TEA_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/GrenadeLauncher/BB/BB_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/GrenadeLauncher/BB/BB_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/GrenadeLauncher/BB/BB_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/GrenadeLauncher/BB/BB_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/GrenadeLauncher/BB/BB_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/GrenadeLauncher/BB/BB_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/4kg/4kg_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/4kg/4kg_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/4kg/4kg_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/4kg/4kg_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/4kg/4kg_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/4kg/4kg_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/B/B_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/B/B_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/B/B_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/B/B_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/B/B_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/B/B_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/M24/M24_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/M24/M24_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/M24/M24_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/M24/M24_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/M24/M24_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/M24/M24_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/Nb/Nb_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/Nb/Nb_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/Nb/Nb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/Nb/Nb_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/Nb/Nb_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/Nb/Nb_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/PWM/PWM_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/PWM/PWM_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/PWM/PWM_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/PWM/PWM_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/PWM/PWM_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/PWM/PWM_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/RGO/RGO_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/RGO/RGO_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/RGO/RGO_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/RGO/RGO_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/HandGrenades/RGO/RGO_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/HandGrenades/RGO/RGO_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/K/AP/AP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/K/AP/AP_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/K/AP/AP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/K/AP/AP_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/K/AP/AP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/K/AP/AP_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/K/FMJ/FMJ_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/K/FMJ/FMJ_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/K/FMJ/FMJ_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/K/FMJ/FMJ_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/K/FMJ/FMJ_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/K/FMJ/FMJ_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/K/J/J_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/K/J/J_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/K/J/J_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/K/J/J_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/K/J/J_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/K/J/J_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MP/FMJ/FMJ_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MP/FMJ/FMJ_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MP/FMJ/FMJ_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MP/FMJ/FMJ_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MP/FMJ/FMJ_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MP/FMJ/FMJ_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MP/HP/HP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MP/HP/HP_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MP/HP/HP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MP/HP/HP_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MP/HP/HP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MP/HP/HP_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MR/BP/BP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MR/BP/BP_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MR/BP/BP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MR/BP/BP_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MR/BP/BP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MR/BP/BP_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MR/KP/KP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MR/KP/KP_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MR/KP/KP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MR/KP/KP_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MR/KP/KP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MR/KP/KP_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MR/P88/P88_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MR/P88/P88_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MR/P88/P88_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MR/P88/P88_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MR/P88/P88_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MR/P88/P88_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MR/SP/SP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MR/SP/SP_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MR/SP/SP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MR/SP/SP_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/MR/SP/SP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/MR/SP/SP_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/TuF/APHE/APHE_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/TuF/APHE/APHE_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/TuF/APHE/APHE_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/TuF/APHE/APHE_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/TuF/APHE/APHE_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/TuF/APHE/APHE_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/TuF/HET/HET_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/TuF/HET/HET_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/TuF/HET/HET_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/TuF/HET/HET_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/TuF/HET/HET_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/TuF/HET/HET_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/TuF/Sabot/AP_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/TuF/Sabot/AP_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/TuF/Sabot/AP_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/TuF/Sabot/AP_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Mauser/TuF/Sabot/AP_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Mauser/TuF/Sabot/AP_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/15cm/D/D_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/15cm/D/D_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/15cm/D/D_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/15cm/D/D_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/15cm/D/D_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/15cm/D/D_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/15cm/HE/HE_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/15cm/HE/HE_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/15cm/HE/HE_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/15cm/HE/HE_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/15cm/HE/HE_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/15cm/HE/HE_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/15cm/Nb/Nb_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/15cm/Nb/Nb_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/15cm/Nb/Nb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/15cm/Nb/Nb_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/15cm/Nb/Nb_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/15cm/Nb/Nb_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/21cm/21cm_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/21cm/21cm_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/21cm/21cm_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/21cm/21cm_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/21cm/21cm_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/21cm/21cm_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/28cm/28cm_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/28cm/28cm_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/28cm/28cm_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/28cm/28cm_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/28cm/28cm_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/28cm/28cm_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/30cm/30cm_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/30cm/30cm_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/30cm/30cm_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/30cm/30cm_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/30cm/30cm_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/30cm/30cm_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/32cm/32cm_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/32cm/32cm_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/32cm/32cm_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/32cm/32cm_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/NbW/32cm/32cm_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/NbW/32cm/32cm_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/RPzB/8cm/8cm_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/RPzB/8cm/8cm_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/RPzB/8cm/8cm_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/RPzB/8cm/8cm_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/RPzB/8cm/8cm_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/RPzB/8cm/8cm_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/RPzB/Frag/Frag_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/RPzB/Frag/Frag_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/RPzB/Frag/Frag_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/RPzB/Frag/Frag_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/RPzB/Frag/Frag_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/RPzB/Frag/Frag_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/RPzB/HEAT/HEAT_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/RPzB/HEAT/HEAT_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/RPzB/HEAT/HEAT_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/RPzB/HEAT/HEAT_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/RPzB/HEAT/HEAT_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/RPzB/HEAT/HEAT_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Schiessbecher/HE/HE_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Schiessbecher/HE/HE_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Schiessbecher/HE/HE_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Schiessbecher/HE/HE_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Schiessbecher/HE/HE_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Schiessbecher/HE/HE_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Schiessbecher/HEAT/HEAT_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Schiessbecher/HEAT/HEAT_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Schiessbecher/HEAT/HEAT_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Schiessbecher/HEAT/HEAT_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Schiessbecher/HEAT/HEAT_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Schiessbecher/HEAT/HEAT_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Shotgun/Salt/Salt_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Shotgun/Salt/Salt_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Shotgun/Salt/Salt_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Shotgun/Salt/Salt_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Ammo/Shotgun/Salt/Salt_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Ammo/Shotgun/Salt/Salt_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/6B5/6B5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/6B5/6B5.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/6B5/6B5_Fat_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/6B5/6B5_Fat_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/6B5/6B5_Fat_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/6B5/6B5_Fat_north.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/6B5/6B5_Fat_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/6B5/6B5_Fat_south.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/6B5/6B5_Female_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/6B5/6B5_Female_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/6B5/6B5_Female_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/6B5/6B5_Female_north.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/6B5/6B5_Female_southth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/6B5/6B5_Female_southth.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/6B5/6B5_Hulk_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/6B5/6B5_Hulk_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/6B5/6B5_Hulk_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/6B5/6B5_Hulk_north.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/6B5/6B5_Hulk_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/6B5/6B5_Hulk_south.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/6B5/6B5_Male_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/6B5/6B5_Male_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/6B5/6B5_Male_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/6B5/6B5_Male_north.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/6B5/6B5_Male_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/6B5/6B5_Male_south.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/6B5/6B5_Thin_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/6B5/6B5_Thin_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/6B5/6B5_Thin_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/6B5/6B5_Thin_north.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/6B5/6B5_Thin_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/6B5/6B5_Thin_south.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/ArmPlates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/ArmPlates.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/IOTV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/IOTV.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/IOTV_Fat_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/IOTV_Fat_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/IOTV_Fat_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/IOTV_Fat_north.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/IOTV_Fat_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/IOTV_Fat_south.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/IOTV_Female_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/IOTV_Female_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/IOTV_Female_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/IOTV_Female_north.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/IOTV_Female_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/IOTV_Female_south.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/IOTV_Hulk_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/IOTV_Hulk_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/IOTV_Hulk_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/IOTV_Hulk_north.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/IOTV_Hulk_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/IOTV_Hulk_south.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/IOTV_Male_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/IOTV_Male_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/IOTV_Male_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/IOTV_Male_north.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/IOTV_Male_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/IOTV_Male_south.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/IOTV_Thin_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/IOTV_Thin_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/IOTV_Thin_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/IOTV_Thin_north.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/IOTV_Thin_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/IOTV_Thin_south.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/LegPlates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/LegPlates.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/MilitaryBoots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/MilitaryBoots.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/IOTV/NeckCollar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/IOTV/NeckCollar.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/NIJIIA/NIJIIA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/NIJIIA/NIJIIA.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/NIJIIA/NIJIIA_Fat_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/NIJIIA/NIJIIA_Fat_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/NIJIIA/NIJIIA_Fat_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/NIJIIA/NIJIIA_Fat_north.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/NIJIIA/NIJIIA_Fat_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/NIJIIA/NIJIIA_Fat_south.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/NIJIIA/NIJIIA_Hulk_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/NIJIIA/NIJIIA_Hulk_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/NIJIIA/NIJIIA_Male_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/NIJIIA/NIJIIA_Male_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/NIJIIA/NIJIIA_Thin_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/NIJIIA/NIJIIA_Thin_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/PlateInsert/BPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/PlateInsert/BPI.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/PlateInsert/BPII.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/PlateInsert/BPII.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/PlateInsert/BPIII.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/PlateInsert/BPIII.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/PlateInsert/TP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/PlateInsert/TP.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/SN46/SN46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/SN46/SN46.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/SN46/SN46_Fat_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/SN46/SN46_Fat_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/SN46/SN46_Fat_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/SN46/SN46_Fat_north.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/SN46/SN46_Fat_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/SN46/SN46_Fat_south.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/SN46/SN46_Female_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/SN46/SN46_Female_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/SN46/SN46_Female_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/SN46/SN46_Female_north.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/SN46/SN46_Female_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/SN46/SN46_Female_south.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/SN46/SN46_Hulk_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/SN46/SN46_Hulk_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/SN46/SN46_Hulk_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/SN46/SN46_Hulk_north.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/SN46/SN46_Hulk_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/SN46/SN46_Hulk_south.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/SN46/SN46_Male_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/SN46/SN46_Male_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/SN46/SN46_Male_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/SN46/SN46_Male_north.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/SN46/SN46_Male_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/SN46/SN46_Male_south.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/SN46/SN46_Thin_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/SN46/SN46_Thin_east.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/SN46/SN46_Thin_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/SN46/SN46_Thin_north.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/SN46/SN46_Thin_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/SN46/SN46_Thin_south.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/Stahlhelm/Stahlhelm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/Stahlhelm/Stahlhelm.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Apparel/Stahlhelm/StahlhelmS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Apparel/Stahlhelm/StahlhelmS.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/BunkerS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/BunkerS.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/BunkerS_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/BunkerS_icon.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/BunkerSm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/BunkerSm.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/Mines/4kgmine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/Mines/4kgmine.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/Mines/M67m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/Mines/M67m.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/Mines/M67p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/Mines/M67p.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/Mines/Smine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/Mines/Smine.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/Security/50BMG_Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/Security/50BMG_Top.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/Security/50BMG_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/Security/50BMG_ico.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/Security/Base/H_Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/Security/Base/H_Base.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/Security/Base/P_Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/Security/Base/P_Base.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/Security/Base/T_Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/Security/Base/T_Base.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/Security/CMLT/LG40_Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/Security/CMLT/LG40_Top.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/Security/CMLT/MG08_Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/Security/CMLT/MG08_Top.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/Security/CMMT/GebK_Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/Security/CMMT/GebK_Top.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/Security/CMMT/MG18_Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/Security/CMMT/MG18_Top.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/Security/SOFLAM_Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/Security/SOFLAM_Top.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Building/Security/SOFLAM_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Building/Security/SOFLAM_icon.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/120mm/HESH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/120mm/HESH.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/120mm/Stun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/120mm/Stun.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/128mm/APC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/128mm/APC.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/128mm/APCBCHE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/128mm/APCBCHE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/128mm/APCR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/128mm/APCR.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/128mm/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/128mm/HE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/155mm/ADAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/155mm/ADAM.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/155mm/W48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/155mm/W48.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/210mm/AC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/210mm/AC.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/210mm/APHE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/210mm/APHE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/210mm/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/210mm/HE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/50mm/APCR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/50mm/APCR.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/50mm/APHE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/50mm/APHE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/50mm/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/50mm/HE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/75mm/APCBCHE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/75mm/APCBCHE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/75mm/APCR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/75mm/APCR.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/75mm/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/75mm/HE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/75mm/HEAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/75mm/HEAT.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/CGR/Dart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/CGR/Dart.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/CGR/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/CGR/HE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/CGR/HEAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/CGR/HEAT.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/FLASH/TEA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/FLASH/TEA.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/Grenades/4kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/Grenades/4kg.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/Grenades/M24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/Grenades/M24.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/Grenades/M24B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/Grenades/M24B.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/Grenades/M24Nb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/Grenades/M24Nb.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/Grenades/M24S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/Grenades/M24S.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/Grenades/PWM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/Grenades/PWM.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/Grenades/RGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/Grenades/RGO.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/Grenades/Smine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/Grenades/Smine.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/NbW/15cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/NbW/15cm.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/NbW/15cmD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/NbW/15cmD.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/NbW/15cmNb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/NbW/15cmNb.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/NbW/21cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/NbW/21cm.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/NbW/28cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/NbW/28cm.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/NbW/30cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/NbW/30cm.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/NbW/32cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/NbW/32cm.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/PzF/PzF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/PzF/PzF.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/PzF/PzFK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/PzF/PzFK.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/RPzB/8cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/RPzB/8cm.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/RPzB/Frag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/RPzB/Frag.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/RPzB/HEAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/RPzB/HEAT.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/Schiessbecher/HE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/Schiessbecher/HE.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Projectile/Schiessbecher/HEAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Projectile/Schiessbecher/HEAT.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Special/Foodcube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Special/Foodcube.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Special/FoodcubeM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Special/FoodcubeM.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Special/MessKit/MKa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Special/MessKit/MKa.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Special/MessKit/MKb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Special/MessKit/MKb.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Special/Onigiri/Onigiri_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Special/Onigiri/Onigiri_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Special/Onigiri/Onigiri_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Special/Onigiri/Onigiri_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Special/Onigiri/Onigiri_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Special/Onigiri/Onigiri_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Special/Pervitin/Pervitin_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Special/Pervitin/Pervitin_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Special/Pervitin/Pervitin_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Special/Pervitin/Pervitin_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Special/Pervitin/Pervitin_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Special/Pervitin/Pervitin_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Special/SchoKaKola/SchoKaKola_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Special/SchoKaKola/SchoKaKola_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Special/SchoKaKola/SchoKaKola_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Special/SchoKaKola/SchoKaKola_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Special/SchoKaKola/SchoKaKola_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Special/SchoKaKola/SchoKaKola_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Carabines/98k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Carabines/98k.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Carabines/Calico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Carabines/Calico.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Carabines/Delisle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Carabines/Delisle.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Carabines/G41W.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Carabines/G41W.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Carabines/G43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Carabines/G43.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Carabines/K90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Carabines/K90.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Carabines/M4Beowulf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Carabines/M4Beowulf.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Carabines/VG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Carabines/VG.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Carabines/VG3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Carabines/VG3.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Launchers/CG42R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Launchers/CG42R.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Launchers/CGR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Launchers/CGR.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Launchers/FLASH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Launchers/FLASH.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Launchers/MM1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Launchers/MM1.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Launchers/PzFK/PzFK_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Launchers/PzFK/PzFK_a.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Launchers/PzFK/PzFK_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Launchers/PzFK/PzFK_b.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Launchers/PzFK/PzFK_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Launchers/PzFK/PzFK_c.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Launchers/RGS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Launchers/RGS.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Launchers/RPzB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Launchers/RPzB.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/MGs/Lewis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/MGs/Lewis.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/MGs/MG0815.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/MGs/MG0815.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/MGs/MG30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/MGs/MG30.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/MGs/MG34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/MGs/MG34.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/MGs/MG42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/MGs/MG42.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/MGs/MG45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/MGs/MG45.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/MGs/Madsen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/MGs/Madsen.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Pistols/C96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Pistols/C96.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Pistols/M712.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Pistols/M712.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Pistols/SP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Pistols/SP.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Pistols/SR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Pistols/SR.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Pistols/SW50B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Pistols/SW50B.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Rifles/FG42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Rifles/FG42.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Rifles/G88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Rifles/G88.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Rifles/GrB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Rifles/GrB.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Rifles/Huot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Rifles/Huot.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Rifles/MKb42H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Rifles/MKb42H.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Rifles/Mk14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Rifles/Mk14.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Rifles/StG44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Rifles/StG44.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Rifles/TG18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Rifles/TG18.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/SMGs/M1928A1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/SMGs/M1928A1.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/SMGs/MP18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/SMGs/MP18.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/SMGs/MP717r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/SMGs/MP717r.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/SMGs/Suomi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/SMGs/Suomi.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/SRs/98s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/SRs/98s.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/SRs/Mk1250SPR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/SRs/Mk1250SPR.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/SRs/Mk12SPR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/SRs/Mk12SPR.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/SRs/XM109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/SRs/XM109.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Shotguns/BA5L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Shotguns/BA5L.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Shotguns/BA5S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Shotguns/BA5S.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Shotguns/CAWS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Shotguns/CAWS.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Shotguns/DP12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Shotguns/DP12.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Shotguns/SSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Shotguns/SSS.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Shotguns/W1887.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Shotguns/W1887.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Shotguns/W1887S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Shotguns/W1887S.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Shotguns/W1897L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Shotguns/W1897L.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Shotguns/W1897T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Shotguns/W1897T.png -------------------------------------------------------------------------------- /Parabellum/Textures/Things/Weapons/Specials/S8498III.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/Parabellum/Textures/Things/Weapons/Specials/S8498III.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xx-Nelson-xX/Parabellum/HEAD/README.md --------------------------------------------------------------------------------