├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── CC-BY-NC-4.0-LICENSE.txt ├── changelog.md ├── common ├── build.gradle └── src │ └── main │ ├── java │ └── mod │ │ └── azure │ │ └── doom │ │ ├── MCDoom.java │ │ ├── blocks │ │ ├── ArgentBlock.java │ │ ├── ArgentLampBlock.java │ │ ├── BarrelBlock.java │ │ ├── DoomSandBlock.java │ │ ├── DoomWallBlock.java │ │ ├── E1M1StairsBlock.java │ │ ├── E1M1TurnableBlock.java │ │ ├── E1M1TurnableHurtBlock.java │ │ ├── GunTableBlock.java │ │ ├── ImplementedInventory.java │ │ ├── JumppadBlock.java │ │ ├── TotemBlock.java │ │ └── blockentities │ │ │ ├── BarrelEntity.java │ │ │ ├── GunBlockEntity.java │ │ │ ├── IconBlockEntity.java │ │ │ └── TotemEntity.java │ │ ├── client │ │ ├── DoomKeyBinds.java │ │ ├── gui │ │ │ ├── GunTableInventory.java │ │ │ ├── GunTableOutputSlot.java │ │ │ ├── GunTableScreen.java │ │ │ └── GunTableScreenHandler.java │ │ ├── models │ │ │ ├── armor │ │ │ │ └── DoomModel.java │ │ │ ├── items │ │ │ │ ├── GrenadeItemModel.java │ │ │ │ ├── GunCraftingItemModel.java │ │ │ │ └── TotemItemModel.java │ │ │ ├── mobs │ │ │ │ ├── ambient │ │ │ │ │ ├── CueballModel.java │ │ │ │ │ ├── GoreNestModel.java │ │ │ │ │ ├── TentacleModel.java │ │ │ │ │ └── TurretModel.java │ │ │ │ ├── boss │ │ │ │ │ ├── ArchMaykrModel.java │ │ │ │ │ ├── GladiatorModel.java │ │ │ │ │ ├── IconofsinModel.java │ │ │ │ │ ├── MotherDemonModel.java │ │ │ │ │ ├── SpiderMastermind2016Model.java │ │ │ │ │ └── SpiderMastermindModel.java │ │ │ │ ├── fodder │ │ │ │ │ ├── ChaingunnerModel.java │ │ │ │ │ ├── GargoyleModel.java │ │ │ │ │ ├── ImpModel.java │ │ │ │ │ ├── ImpStoneModel.java │ │ │ │ │ ├── LostSoulEternalModel.java │ │ │ │ │ ├── LostSoulModel.java │ │ │ │ │ ├── MaykrDroneModel.java │ │ │ │ │ ├── MechaZombieModel.java │ │ │ │ │ ├── PossessedScientistModel.java │ │ │ │ │ ├── PossessedSoldierModel.java │ │ │ │ │ ├── PossessedWorkerModel.java │ │ │ │ │ ├── ShotgunguyModel.java │ │ │ │ │ ├── UnwillingModel.java │ │ │ │ │ └── ZombiemanModel.java │ │ │ │ ├── heavy │ │ │ │ │ ├── ArachnotronModel.java │ │ │ │ │ ├── ArachonotronEternalModel.java │ │ │ │ │ ├── BloodMaykrModel.java │ │ │ │ │ ├── CacodemonModel.java │ │ │ │ │ ├── CarcassModel.java │ │ │ │ │ ├── Hellknight2016Model.java │ │ │ │ │ ├── HellknightModel.java │ │ │ │ │ ├── MancubusModel.java │ │ │ │ │ ├── PainModel.java │ │ │ │ │ ├── PinkyModel.java │ │ │ │ │ ├── ProwlerModel.java │ │ │ │ │ ├── Revenant2016Model.java │ │ │ │ │ ├── RevenantModel.java │ │ │ │ │ ├── SpectreModel.java │ │ │ │ │ └── WhiplashModel.java │ │ │ │ └── superheavy │ │ │ │ │ ├── ArchvileModel.java │ │ │ │ │ ├── ArmoredBaronModel.java │ │ │ │ │ ├── Baron2016Model.java │ │ │ │ │ ├── BaronModel.java │ │ │ │ │ ├── CyberdemonModel.java │ │ │ │ │ ├── DoomHunterModel.java │ │ │ │ │ ├── DreadknightModel.java │ │ │ │ │ ├── FireBaronModel.java │ │ │ │ │ ├── MarauderModel.java │ │ │ │ │ └── SummonerModel.java │ │ │ ├── projectiles │ │ │ │ ├── ArchvileFiringModel.java │ │ │ │ ├── BFGBallModel.java │ │ │ │ ├── BarenBlastModel.java │ │ │ │ ├── BloodBoltModel.java │ │ │ │ ├── EnergyMobModel.java │ │ │ │ ├── GladiatorMaceModel.java │ │ │ │ ├── GrenadeModel.java │ │ │ │ ├── MeatHookEntityModel.java │ │ │ │ ├── RocketMobModel.java │ │ │ │ └── RocketModel.java │ │ │ ├── tile │ │ │ │ ├── GunCraftingModel.java │ │ │ │ └── TotemModel.java │ │ │ └── weapons │ │ │ │ ├── GunModel.java │ │ │ │ └── MeleeWeaponModel.java │ │ └── render │ │ │ ├── armors │ │ │ └── DoomRender.java │ │ │ ├── item │ │ │ ├── GrenadeItemRender.java │ │ │ ├── GunCraftingItemRender.java │ │ │ └── TotemItemRender.java │ │ │ ├── mobs │ │ │ ├── DoomMobRender.java │ │ │ ├── ambient │ │ │ │ ├── CueBallRender.java │ │ │ │ ├── GoreNestRender.java │ │ │ │ ├── TentacleRender.java │ │ │ │ └── TurretRender.java │ │ │ ├── boss │ │ │ │ ├── ArchMaykrRender.java │ │ │ │ ├── GladiatorRender.java │ │ │ │ ├── IconofsinRender.java │ │ │ │ ├── MotherDemonRender.java │ │ │ │ ├── SpiderMastermind2016Render.java │ │ │ │ └── SpiderMastermindRender.java │ │ │ ├── fodder │ │ │ │ ├── ChaingunnerRender.java │ │ │ │ ├── GargoyleRender.java │ │ │ │ ├── ImpRender.java │ │ │ │ ├── ImpStoneRender.java │ │ │ │ ├── LostSoulEternalRender.java │ │ │ │ ├── LostSoulRender.java │ │ │ │ ├── MaykrDroneRender.java │ │ │ │ ├── MechaZombieRender.java │ │ │ │ ├── PossessedScientistRender.java │ │ │ │ ├── PossessedSoldierRender.java │ │ │ │ ├── PossessedWorkerRender.java │ │ │ │ ├── ShotgunguyRender.java │ │ │ │ ├── UnwillingRender.java │ │ │ │ └── ZombiemanRender.java │ │ │ ├── heavy │ │ │ │ ├── ArachonotronEternalRender.java │ │ │ │ ├── ArachonotronRender.java │ │ │ │ ├── BloodMaykrRender.java │ │ │ │ ├── CacodemonRender.java │ │ │ │ ├── CarcassRender.java │ │ │ │ ├── DreadKnightRender.java │ │ │ │ ├── Hellknight2016Render.java │ │ │ │ ├── HellknightRender.java │ │ │ │ ├── MancubusRender.java │ │ │ │ ├── PainRender.java │ │ │ │ ├── PinkyRender.java │ │ │ │ ├── ProwlerRender.java │ │ │ │ ├── Revenant2016Render.java │ │ │ │ ├── RevenantRender.java │ │ │ │ ├── SpectreRender.java │ │ │ │ └── WhiplashRender.java │ │ │ └── superheavy │ │ │ │ ├── ArchvileRender.java │ │ │ │ ├── ArmoredBaronRender.java │ │ │ │ ├── Baron2016Render.java │ │ │ │ ├── BaronRender.java │ │ │ │ ├── CyberdemonRender.java │ │ │ │ ├── DoomHunterRender.java │ │ │ │ ├── FireBaronRender.java │ │ │ │ ├── MarauderRender.java │ │ │ │ └── SummonerRender.java │ │ │ ├── projectiles │ │ │ ├── BFGCellRender.java │ │ │ ├── BulletsRender.java │ │ │ ├── GrenadeRender.java │ │ │ ├── MeatHookEntityRenderer.java │ │ │ ├── RocketRender.java │ │ │ └── entity │ │ │ │ ├── ArchvileFiringRender.java │ │ │ │ ├── BarenBlastRender.java │ │ │ │ ├── BloodBoltRender.java │ │ │ │ ├── ChaingunMobRender.java │ │ │ │ ├── DroneBoltRender.java │ │ │ │ ├── EnergyCellMobRender.java │ │ │ │ ├── FireProjectileRender.java │ │ │ │ ├── GladiatorMaceRender.java │ │ │ │ └── RocketMobRender.java │ │ │ ├── tile │ │ │ ├── BarrelRender.java │ │ │ ├── GunCraftingRender.java │ │ │ └── TotemRender.java │ │ │ └── weapons │ │ │ ├── GunRender.java │ │ │ └── MeleeRender.java │ │ ├── config │ │ └── DoomConfig.java │ │ ├── entities │ │ ├── DemonEntity.java │ │ ├── DoomAnimationsDefault.java │ │ ├── ai │ │ │ ├── DemonFloatControl.java │ │ │ ├── DemonFlyControl.java │ │ │ └── goal │ │ │ │ └── RandomFlyConvergeOnTargetGoal.java │ │ ├── projectiles │ │ │ ├── BFGEntity.java │ │ │ ├── BulletEntity.java │ │ │ ├── GrenadeEntity.java │ │ │ ├── MeatHookEntity.java │ │ │ ├── RocketEntity.java │ │ │ └── entity │ │ │ │ ├── BarenBlastEntity.java │ │ │ │ ├── BloodBoltEntity.java │ │ │ │ ├── ChaingunMobEntity.java │ │ │ │ ├── CustomFireballEntity.java │ │ │ │ ├── CustomSmallFireballEntity.java │ │ │ │ ├── DoomFireEntity.java │ │ │ │ ├── DroneBoltEntity.java │ │ │ │ ├── EnergyCellMobEntity.java │ │ │ │ ├── FireProjectile.java │ │ │ │ ├── GladiatorMaceEntity.java │ │ │ │ └── RocketMobEntity.java │ │ ├── task │ │ │ ├── CustomDelayedMeleeBehaviour.java │ │ │ ├── CustomDelayedRangedBehaviour.java │ │ │ ├── DemonMeleeAttack.java │ │ │ └── DemonProjectileAttack.java │ │ ├── tierambient │ │ │ ├── CueBallEntity.java │ │ │ ├── GoreNestEntity.java │ │ │ ├── TentacleEntity.java │ │ │ └── TurretEntity.java │ │ ├── tierboss │ │ │ ├── ArchMakyrEntity.java │ │ │ ├── DoomBoss.java │ │ │ ├── GladiatorEntity.java │ │ │ ├── IconofsinEntity.java │ │ │ ├── MotherDemonEntity.java │ │ │ ├── SpiderMastermind2016Entity.java │ │ │ └── SpiderMastermindEntity.java │ │ ├── tierfodder │ │ │ ├── ChaingunnerEntity.java │ │ │ ├── GargoyleEntity.java │ │ │ ├── ImpEntity.java │ │ │ ├── ImpStoneEntity.java │ │ │ ├── LostSoulEntity.java │ │ │ ├── MaykrDroneEntity.java │ │ │ ├── MechaZombieEntity.java │ │ │ ├── PossessedScientistEntity.java │ │ │ ├── PossessedSoldierEntity.java │ │ │ ├── ShotgunguyEntity.java │ │ │ ├── UnwillingEntity.java │ │ │ └── ZombiemanEntity.java │ │ ├── tierheavy │ │ │ ├── ArachnotronEntity.java │ │ │ ├── BloodMaykrEntity.java │ │ │ ├── CacodemonEntity.java │ │ │ ├── CarcassEntity.java │ │ │ ├── Hellknight2016Entity.java │ │ │ ├── HellknightEntity.java │ │ │ ├── MancubusEntity.java │ │ │ ├── PainEntity.java │ │ │ ├── PinkyEntity.java │ │ │ ├── ProwlerEntity.java │ │ │ ├── Revenant2016Entity.java │ │ │ ├── RevenantEntity.java │ │ │ ├── SpectreEntity.java │ │ │ └── WhiplashEntity.java │ │ └── tiersuperheavy │ │ │ ├── ArchvileEntity.java │ │ │ ├── ArmoredBaronEntity.java │ │ │ ├── BaronEntity.java │ │ │ ├── CyberdemonEntity.java │ │ │ ├── DoomHunterEntity.java │ │ │ ├── FireBaronEntity.java │ │ │ ├── MarauderEntity.java │ │ │ └── SummonerEntity.java │ │ ├── helper │ │ ├── CommonUtils.java │ │ └── PlayerProperties.java │ │ ├── items │ │ ├── UnopenedItem.java │ │ ├── ammo │ │ │ └── AmmoItem.java │ │ ├── argent │ │ │ ├── ArgentEnergyItem.java │ │ │ └── ArgentPlateItem.java │ │ ├── armor │ │ │ └── DoomArmor.java │ │ ├── blockitems │ │ │ └── DoomBlockItem.java │ │ ├── enums │ │ │ ├── AmmoEnum.java │ │ │ ├── ArmorTypeEnum.java │ │ │ ├── GunTypeEnum.java │ │ │ └── MeleeWeaponEnum.java │ │ ├── powerup │ │ │ ├── DaisyItem.java │ │ │ ├── InmortalSphereItem.java │ │ │ ├── InvisibleSphereItem.java │ │ │ ├── MegaSphereItem.java │ │ │ ├── PowerSphereItem.java │ │ │ ├── SoulCubeItem.java │ │ │ └── accessory │ │ │ │ └── DaisyAccessory.java │ │ ├── tools │ │ │ ├── ArgentAxe.java │ │ │ ├── ArgentHoe.java │ │ │ ├── ArgentPaxel.java │ │ │ ├── ArgentPickaxe.java │ │ │ └── ArgentShovel.java │ │ └── weapons │ │ │ ├── ArgentSword.java │ │ │ ├── BaseSwordItem.java │ │ │ ├── DoomBaseItem.java │ │ │ └── GrenadeItem.java │ │ ├── mixins │ │ ├── ClientPlayNetworkHandlerMixin.java │ │ ├── GeoEntityRendererMixin.java │ │ ├── HeldItemRendererMixin.java │ │ ├── IngredientAccess.java │ │ ├── LivingEntityMixin.java │ │ ├── PlayerEntityMixin.java │ │ ├── VillagerMixin.java │ │ └── WeaponRenderingMixin.java │ │ ├── network │ │ ├── CraftingPacket.java │ │ ├── FiringPacket.java │ │ ├── HookPacket.java │ │ ├── PacketHandler.java │ │ ├── ReloadMeleePacket.java │ │ └── ReloadPacket.java │ │ ├── particles │ │ ├── DoomParticleType.java │ │ ├── PlasmaParticle.java │ │ └── UnmaykrBoltParticle.java │ │ ├── platform │ │ ├── Services.java │ │ └── services │ │ │ ├── CommonRegistry.java │ │ │ └── IPlatformHelper.java │ │ ├── recipes │ │ ├── GunRecipes.java │ │ └── GunTableRecipe.java │ │ └── registry │ │ ├── DoomBlocks.java │ │ ├── DoomItems.java │ │ ├── DoomMobs.java │ │ ├── DoomParticles.java │ │ ├── DoomRecipes.java │ │ ├── DoomScreens.java │ │ ├── DoomSounds.java │ │ ├── DoomTabs.java │ │ ├── DoomTags.java │ │ └── interfaces │ │ ├── CommonBlockEntityRegistryInterface.java │ │ ├── CommonBlockRegistryInterface.java │ │ ├── CommonEntityRegistryInterface.java │ │ ├── CommonItemRegistryInterface.java │ │ ├── CommonMenuTypesRegistryInterface.java │ │ ├── CommonParticleRegistryInterface.java │ │ ├── CommonRecipeRegistryInterface.java │ │ └── CommonSoundRegistryInterface.java │ └── resources │ ├── assets │ └── doom │ │ ├── animations │ │ ├── arachnotron64.animation.json │ │ ├── arachnotron_walking.json │ │ ├── arachonotroneternal.animation.json │ │ ├── archmaykr_1.animation.json │ │ ├── archmaykr_2.animation.json │ │ ├── archvile_animation.json │ │ ├── archvileeternal.animation.json │ │ ├── archvilefiring.animation.json │ │ ├── armor_animation.json │ │ ├── ballista.animation.json │ │ ├── baron2016.animation.json │ │ ├── baron_hell_animation.json │ │ ├── bfg.animation.json │ │ ├── bfg9000.animation.json │ │ ├── bfgball.animation.json │ │ ├── bloodbolt.animation.json │ │ ├── bloodmaykr.animation.json │ │ ├── cacodemon_animation.json │ │ ├── cacodemoneternal.animation.json │ │ ├── carcass.animation.json │ │ ├── chainblade.animation.json │ │ ├── chaingun.animation.json │ │ ├── chaingunner.animation.json │ │ ├── chaingunner_animation.json │ │ ├── chainsaw.animation.json │ │ ├── cruciblesword.animation.json │ │ ├── cueengineer.animation.json │ │ ├── cyberdemon2016.animation.json │ │ ├── cyberdemon_animation.json │ │ ├── darklordarmor.animation.json │ │ ├── doomed_gauss_cannon.animation.json │ │ ├── doomed_grenade.animation.json │ │ ├── doomed_plasma_rifle.animation.json │ │ ├── doomed_shotgun.animation.json │ │ ├── doomhunter.animation.json │ │ ├── doomicorn_animation.json │ │ ├── e1m1_door4.animation.json │ │ ├── empty.animation.json │ │ ├── gargoyleimp.animation.json │ │ ├── gladiator.animation.json │ │ ├── gladiator_mace.animation.json │ │ ├── gorenest_animation.json │ │ ├── gun_table.animation.json │ │ ├── heavycannon.animation.json │ │ ├── hellknight2016_animation.json │ │ ├── icon.animation.json │ │ ├── imp2016.animation.json │ │ ├── imp_animation.json │ │ ├── lostsoul_animation.json │ │ ├── mancubus_animation.json │ │ ├── marauder.animation.json │ │ ├── maykrdrone.animation.json │ │ ├── mechazombie_animation.json │ │ ├── motherdemon.animation.json │ │ ├── pain_animation.json │ │ ├── paineternal.animation.json │ │ ├── pinky2016.animation.json │ │ ├── pinky_animation.json │ │ ├── pistol.animation.json │ │ ├── plasmagun.animation.json │ │ ├── possessed_scientist_animation.json │ │ ├── possessedsoldier.animation.json │ │ ├── revenant.animation.json │ │ ├── rocket.animation.json │ │ ├── rocketlauncher.animation.json │ │ ├── screecher.animation.json │ │ ├── sentinelhammer.animation.json │ │ ├── shotgun.animation.json │ │ ├── shotgunzombie.animation.json │ │ ├── smallprojectile.animation.json │ │ ├── spidermastermind2016.animation.json │ │ ├── spidermastermind_animation.json │ │ ├── summoner.animation.json │ │ ├── supershotgun.animation.json │ │ ├── tentacle.animation.json │ │ ├── totem.animation.json │ │ ├── turret.animation.json │ │ ├── tyrant.animation.json │ │ ├── unmaykr.animation.json │ │ └── whiplash.animation.json │ │ ├── blockstates │ │ ├── argent_block.json │ │ ├── argent_lamp_block.json │ │ ├── barrel.json │ │ ├── doom_sand.json │ │ ├── e1m1_block1.json │ │ ├── e1m1_block10.json │ │ ├── e1m1_block11.json │ │ ├── e1m1_block12.json │ │ ├── e1m1_block13.json │ │ ├── e1m1_block14.json │ │ ├── e1m1_block15.json │ │ ├── e1m1_block16.json │ │ ├── e1m1_block17.json │ │ ├── e1m1_block18.json │ │ ├── e1m1_block19.json │ │ ├── e1m1_block2.json │ │ ├── e1m1_block20.json │ │ ├── e1m1_block21.json │ │ ├── e1m1_block22.json │ │ ├── e1m1_block23.json │ │ ├── e1m1_block24.json │ │ ├── e1m1_block25.json │ │ ├── e1m1_block26.json │ │ ├── e1m1_block27.json │ │ ├── e1m1_block28.json │ │ ├── e1m1_block29.json │ │ ├── e1m1_block3.json │ │ ├── e1m1_block4.json │ │ ├── e1m1_block5.json │ │ ├── e1m1_block6.json │ │ ├── e1m1_block7.json │ │ ├── e1m1_block8.json │ │ ├── e1m1_block9.json │ │ ├── gun_table.json │ │ ├── icon_wall1.json │ │ ├── icon_wall10.json │ │ ├── icon_wall11.json │ │ ├── icon_wall12.json │ │ ├── icon_wall13.json │ │ ├── icon_wall14.json │ │ ├── icon_wall15.json │ │ ├── icon_wall16.json │ │ ├── icon_wall2.json │ │ ├── icon_wall3.json │ │ ├── icon_wall4.json │ │ ├── icon_wall5.json │ │ ├── icon_wall6.json │ │ ├── icon_wall7.json │ │ ├── icon_wall8.json │ │ ├── icon_wall9.json │ │ ├── jump_pad.json │ │ ├── lightblock.json │ │ └── totem.json │ │ ├── geo │ │ ├── arachnotron.geo.json │ │ ├── arachnotron64.geo.json │ │ ├── arachnotroneternal.geo.json │ │ ├── arachonotroneternal.geo.json │ │ ├── archmaykr_1.geo.json │ │ ├── archmaykr_2.geo.json │ │ ├── archvile.geo.json │ │ ├── archvileeternal.geo.json │ │ ├── archvilefiring.geo.json │ │ ├── ballista.geo.json │ │ ├── baron.geo.json │ │ ├── baron2016.geo.json │ │ ├── bfg9000.geo.json │ │ ├── bfg_ball.geo.json │ │ ├── bfgeternal.geo.json │ │ ├── bloodbolt.geo.json │ │ ├── bloodmaykr.geo.json │ │ ├── bullet.geo.json │ │ ├── cacodemon.geo.json │ │ ├── cacodemon64.geo.json │ │ ├── cacodemoneternal.geo.json │ │ ├── carcass.geo.json │ │ ├── chainblade.geo.json │ │ ├── chaingun.geo.json │ │ ├── chaingunner.geo.json │ │ ├── chainsaw.geo.json │ │ ├── chainsaw64.geo.json │ │ ├── chainsaw_eternal.geo.json │ │ ├── classicarmor.geo.json │ │ ├── cruciblesword.geo.json │ │ ├── cueball.geo.json │ │ ├── cultistarmor.geo.json │ │ ├── cyberdemon.geo.json │ │ ├── cyberdemon2016.geo.json │ │ ├── darklordarmor.geo.json │ │ ├── darklordcrucible.geo.json │ │ ├── doom1armor.geo.json │ │ ├── doomarmor.geo.json │ │ ├── doomed_gauss_cannon.geo.json │ │ ├── doomed_grenade.geo.json │ │ ├── doomed_plasma_rifle.geo.json │ │ ├── doomed_shotgun.geo.json │ │ ├── doomhunter.geo.json │ │ ├── doomicornarmor.geo.json │ │ ├── dreadknight.geo.json │ │ ├── e1m1_door4.geo.json │ │ ├── gargoyleimp.geo.json │ │ ├── gladiator.geo.json │ │ ├── gladiator_mace.geo.json │ │ ├── gorenest.geo.json │ │ ├── gun_table.geo.json │ │ ├── heavycannon.geo.json │ │ ├── hellknight.geo.json │ │ ├── hellknight2016.geo.json │ │ ├── hook.geo.json │ │ ├── icon.geo.json │ │ ├── imp.geo.json │ │ ├── imp2016.geo.json │ │ ├── lostsoul.geo.json │ │ ├── lostsoul64.geo.json │ │ ├── lostsouleternal.geo.json │ │ ├── mancubus.geo.json │ │ ├── mancubus2016.geo.json │ │ ├── mancubus64.geo.json │ │ ├── marauder.geo.json │ │ ├── marauderaxe.geo.json │ │ ├── maykrarmor.geo.json │ │ ├── maykrdrone.geo.json │ │ ├── mechazombie.geo.json │ │ ├── motherdemon.geo.json │ │ ├── mulletarmor.geo.json │ │ ├── nightmareimp.geo.json │ │ ├── pain.geo.json │ │ ├── pain64.geo.json │ │ ├── paineternal.geo.json │ │ ├── painterarmor.geo.json │ │ ├── pinky.geo.json │ │ ├── pinky2016.geo.json │ │ ├── pistol.geo.json │ │ ├── plasmagun.geo.json │ │ ├── possessedengineer.geo.json │ │ ├── possessedsoldier-eternal.geo.json │ │ ├── possessedsoldier-shield.geo.json │ │ ├── possessedsoldier.geo.json │ │ ├── possessedworker.geo.json │ │ ├── prowler.geo.json │ │ ├── revenant.geo.json │ │ ├── rocket.geo.json │ │ ├── rocketlauncher.geo.json │ │ ├── santaarmor.geo.json │ │ ├── scientistpossessed.geo.json │ │ ├── screecher.geo.json │ │ ├── sentinelarmor.geo.json │ │ ├── sentinelhammer.geo.json │ │ ├── shell.geo.json │ │ ├── shotgun.geo.json │ │ ├── shotgunzombie.geo.json │ │ ├── smallprojectile.geo.json │ │ ├── spidermastermind.geo.json │ │ ├── spidermastermind2016.geo.json │ │ ├── summoner.geo.json │ │ ├── supershotgun.geo.json │ │ ├── tentacle.geo.json │ │ ├── totem.geo.json │ │ ├── turret.geo.json │ │ ├── tyrant.geo.json │ │ ├── unmaykr.geo.json │ │ ├── unwilling.geo.json │ │ ├── whiplash.geo.json │ │ └── zombiearmor.geo.json │ │ ├── lang │ │ ├── en_us.json │ │ ├── es_ar.json │ │ ├── es_cl.json │ │ ├── es_ec.json │ │ ├── es_es.json │ │ ├── es_mx.json │ │ ├── es_uy.json │ │ ├── es_ve.json │ │ └── zh_cn.json │ │ ├── models │ │ ├── block │ │ │ ├── argent_block.json │ │ │ ├── argent_lamp_block.json │ │ │ ├── barrel.json │ │ │ ├── doom_sand.json │ │ │ ├── e1m1_block1.json │ │ │ ├── e1m1_block10.json │ │ │ ├── e1m1_block11.json │ │ │ ├── e1m1_block12.json │ │ │ ├── e1m1_block13.json │ │ │ ├── e1m1_block14.json │ │ │ ├── e1m1_block15.json │ │ │ ├── e1m1_block16.json │ │ │ ├── e1m1_block17.json │ │ │ ├── e1m1_block18.json │ │ │ ├── e1m1_block19.json │ │ │ ├── e1m1_block2.json │ │ │ ├── e1m1_block20.json │ │ │ ├── e1m1_block21.json │ │ │ ├── e1m1_block22.json │ │ │ ├── e1m1_block23.json │ │ │ ├── e1m1_block24.json │ │ │ ├── e1m1_block25.json │ │ │ ├── e1m1_block26.json │ │ │ ├── e1m1_block27.json │ │ │ ├── e1m1_block27_inner.json │ │ │ ├── e1m1_block27_outer.json │ │ │ ├── e1m1_block28.json │ │ │ ├── e1m1_block28_inner.json │ │ │ ├── e1m1_block28_outer.json │ │ │ ├── e1m1_block29.json │ │ │ ├── e1m1_block29_inner.json │ │ │ ├── e1m1_block29_outer.json │ │ │ ├── e1m1_block3.json │ │ │ ├── e1m1_block4.json │ │ │ ├── e1m1_block5.json │ │ │ ├── e1m1_block6.json │ │ │ ├── e1m1_block7.json │ │ │ ├── e1m1_block7_inner.json │ │ │ ├── e1m1_block7_outer.json │ │ │ ├── e1m1_block8.json │ │ │ ├── e1m1_block8_inner.json │ │ │ ├── e1m1_block8_outer.json │ │ │ ├── e1m1_block9.json │ │ │ ├── gun_table.json │ │ │ ├── icon_wall1.json │ │ │ ├── icon_wall10.json │ │ │ ├── icon_wall11.json │ │ │ ├── icon_wall12.json │ │ │ ├── icon_wall13.json │ │ │ ├── icon_wall14.json │ │ │ ├── icon_wall15.json │ │ │ ├── icon_wall16.json │ │ │ ├── icon_wall2.json │ │ │ ├── icon_wall3.json │ │ │ ├── icon_wall4.json │ │ │ ├── icon_wall5.json │ │ │ ├── icon_wall6.json │ │ │ ├── icon_wall7.json │ │ │ ├── icon_wall8.json │ │ │ ├── icon_wall9.json │ │ │ ├── jump_pad.json │ │ │ ├── lightblock.json │ │ │ └── totem.json │ │ └── item │ │ │ ├── arachnotron_spawn_egg.json │ │ │ ├── arachnotronblast.json │ │ │ ├── arachnotroneternal_spawn_egg.json │ │ │ ├── arch_maykr_spawn_egg.json │ │ │ ├── archvile_spawn_egg.json │ │ │ ├── archvileeternal_spawn_egg.json │ │ │ ├── argent_axe.json │ │ │ ├── argent_block.json │ │ │ ├── argent_bolt.json │ │ │ ├── argent_energy.json │ │ │ ├── argent_hoe.json │ │ │ ├── argent_lamp_block.json │ │ │ ├── argent_paxel.json │ │ │ ├── argent_pickaxe.json │ │ │ ├── argent_plate.json │ │ │ ├── argent_shovel.json │ │ │ ├── argent_sword.json │ │ │ ├── armoredbaron_spawn_egg.json │ │ │ ├── astro_doom_boots.json │ │ │ ├── astro_doom_chestplate.json │ │ │ ├── astro_doom_helmet.json │ │ │ ├── astro_doom_leggings.json │ │ │ ├── axe_marauder_closed.json │ │ │ ├── axe_marauder_open.json │ │ │ ├── ballista.json │ │ │ ├── ballista_nocenter.json │ │ │ ├── barenblast.json │ │ │ ├── baron2016_spawn_egg.json │ │ │ ├── baron_spawn_egg.json │ │ │ ├── baroneternal_spawn_egg.json │ │ │ ├── barrel.json │ │ │ ├── bfg9000.json │ │ │ ├── bfg_cell.json │ │ │ ├── bfg_eternal.json │ │ │ ├── bfg_eternal_nocenter.json │ │ │ ├── blood_maykr_spawn_egg.json │ │ │ ├── book_doom.json │ │ │ ├── box_of_shells.json │ │ │ ├── box_of_shells_spectral.json │ │ │ ├── bronze_doom_boots.json │ │ │ ├── bronze_doom_chestplate.json │ │ │ ├── bronze_doom_helmet.json │ │ │ ├── bronze_doom_leggings.json │ │ │ ├── bullets.json │ │ │ ├── cacodemon_spawn_egg.json │ │ │ ├── carcass_spawn_egg.json │ │ │ ├── chaingun.json │ │ │ ├── chaingun_nocenter.json │ │ │ ├── chaingunbullets.json │ │ │ ├── chaingunner_spawn_egg.json │ │ │ ├── chainsaw.json │ │ │ ├── chainsaw64.json │ │ │ ├── chainsaw64_stalled.json │ │ │ ├── chainsaw_stalled.json │ │ │ ├── chainsaweternal.json │ │ │ ├── classic_black_chestplate.json │ │ │ ├── classic_black_leggings.json │ │ │ ├── classic_bronze_chestplate.json │ │ │ ├── classic_bronze_leggings.json │ │ │ ├── classic_doom_boots.json │ │ │ ├── classic_doom_chestplate.json │ │ │ ├── classic_doom_helmet.json │ │ │ ├── classic_doom_leggings.json │ │ │ ├── classic_red_chestplate.json │ │ │ ├── classic_red_leggings.json │ │ │ ├── crimson_doom_boots.json │ │ │ ├── crimson_doom_chestplate.json │ │ │ ├── crimson_doom_helmet.json │ │ │ ├── crimson_doom_leggings.json │ │ │ ├── cruciblesword.json │ │ │ ├── cruciblesword_closed.json │ │ │ ├── cueball_spawn_egg.json │ │ │ ├── cultist_doom_boots.json │ │ │ ├── cultist_doom_chestplate.json │ │ │ ├── cultist_doom_helmet.json │ │ │ ├── cultist_doom_leggings.json │ │ │ ├── cyberdemon2016_spawn_egg.json │ │ │ ├── cyberdemon_spawn_egg.json │ │ │ ├── cyberdemonattack.json │ │ │ ├── daisy.json │ │ │ ├── darklord_boots.json │ │ │ ├── darklord_chestplate.json │ │ │ ├── darklord_helmet.json │ │ │ ├── darklord_leggings.json │ │ │ ├── darklordcrucible.json │ │ │ ├── demoncide_doom_boots.json │ │ │ ├── demoncide_doom_chestplate.json │ │ │ ├── demoncide_doom_helmet.json │ │ │ ├── demoncide_doom_leggings.json │ │ │ ├── demonic_doom_boots.json │ │ │ ├── demonic_doom_chestplate.json │ │ │ ├── demonic_doom_helmet.json │ │ │ ├── demonic_doom_leggings.json │ │ │ ├── doom_boots.json │ │ │ ├── doom_chestplate.json │ │ │ ├── doom_helmet.json │ │ │ ├── doom_hunter_spawn_egg.json │ │ │ ├── doom_leggings.json │ │ │ ├── doom_sand.json │ │ │ ├── doomblade.json │ │ │ ├── doomed_gauss.json │ │ │ ├── doomed_gauss_nocenter.json │ │ │ ├── doomed_grenade.json │ │ │ ├── doomed_plasma_rifle.json │ │ │ ├── doomed_plasma_rifle_nocenter.json │ │ │ ├── doomed_shotgun.json │ │ │ ├── doomed_shotgun_nocenter.json │ │ │ ├── doomicorn_doom_boots.json │ │ │ ├── doomicorn_doom_chestplate.json │ │ │ ├── doomicorn_doom_helmet.json │ │ │ ├── doomicorn_doom_leggings.json │ │ │ ├── dreadknight_spawn_egg.json │ │ │ ├── e1m1_block1.json │ │ │ ├── e1m1_block10.json │ │ │ ├── e1m1_block11.json │ │ │ ├── e1m1_block12.json │ │ │ ├── e1m1_block13.json │ │ │ ├── e1m1_block14.json │ │ │ ├── e1m1_block15.json │ │ │ ├── e1m1_block16.json │ │ │ ├── e1m1_block17.json │ │ │ ├── e1m1_block18.json │ │ │ ├── e1m1_block19.json │ │ │ ├── e1m1_block2.json │ │ │ ├── e1m1_block20.json │ │ │ ├── e1m1_block21.json │ │ │ ├── e1m1_block22.json │ │ │ ├── e1m1_block23.json │ │ │ ├── e1m1_block24.json │ │ │ ├── e1m1_block25.json │ │ │ ├── e1m1_block26.json │ │ │ ├── e1m1_block27.json │ │ │ ├── e1m1_block28.json │ │ │ ├── e1m1_block29.json │ │ │ ├── e1m1_block3.json │ │ │ ├── e1m1_block4.json │ │ │ ├── e1m1_block5.json │ │ │ ├── e1m1_block6.json │ │ │ ├── e1m1_block7.json │ │ │ ├── e1m1_block8.json │ │ │ ├── e1m1_block9.json │ │ │ ├── e1m1_music_disc.json │ │ │ ├── ember_doom_boots.json │ │ │ ├── ember_doom_chestplate.json │ │ │ ├── ember_doom_helmet.json │ │ │ ├── ember_doom_leggings.json │ │ │ ├── energy_cells.json │ │ │ ├── firebronebaron_spawn_egg.json │ │ │ ├── gargoyle_spawn_egg.json │ │ │ ├── gas_barrel.json │ │ │ ├── gladiator_spawn_egg.json │ │ │ ├── gold_doom_boots.json │ │ │ ├── gold_doom_chestplate.json │ │ │ ├── gold_doom_helmet.json │ │ │ ├── gold_doom_leggings.json │ │ │ ├── gorenest_spawn_egg.json │ │ │ ├── gun_table.json │ │ │ ├── heavycannon.json │ │ │ ├── heavycannon_nocenter.json │ │ │ ├── hellknight2016_spawn_egg.json │ │ │ ├── hellknight_spawn_egg.json │ │ │ ├── hotrod_boots.json │ │ │ ├── hotrod_chestplate.json │ │ │ ├── hotrod_helmet.json │ │ │ ├── hotrod_leggings.json │ │ │ ├── icon_icon.json │ │ │ ├── icon_of_sin_spawn_egg.json │ │ │ ├── icon_wall1.json │ │ │ ├── icon_wall10.json │ │ │ ├── icon_wall11.json │ │ │ ├── icon_wall12.json │ │ │ ├── icon_wall13.json │ │ │ ├── icon_wall14.json │ │ │ ├── icon_wall15.json │ │ │ ├── icon_wall16.json │ │ │ ├── icon_wall2.json │ │ │ ├── icon_wall3.json │ │ │ ├── icon_wall4.json │ │ │ ├── icon_wall5.json │ │ │ ├── icon_wall6.json │ │ │ ├── icon_wall7.json │ │ │ ├── icon_wall8.json │ │ │ ├── icon_wall9.json │ │ │ ├── imp2016_spawn_egg.json │ │ │ ├── imp_spawn_egg.json │ │ │ ├── inmortalsphere.json │ │ │ ├── invisiblesphere.json │ │ │ ├── jump_pad.json │ │ │ ├── khan_maykr_spawn_egg.json │ │ │ ├── lost_soul_eternal_spawn_egg.json │ │ │ ├── lost_soul_spawn_egg.json │ │ │ ├── mancubus_spawn_egg.json │ │ │ ├── marauder_spawn_egg.json │ │ │ ├── maykr_doom_boots.json │ │ │ ├── maykr_doom_chestplate.json │ │ │ ├── maykr_doom_helmet.json │ │ │ ├── maykr_doom_leggings.json │ │ │ ├── maykr_drone_spawn_egg.json │ │ │ ├── mechazombie_spawn_egg.json │ │ │ ├── megasphere.json │ │ │ ├── midnight_doom_boots.json │ │ │ ├── midnight_doom_chestplate.json │ │ │ ├── midnight_doom_helmet.json │ │ │ ├── midnight_doom_leggings.json │ │ │ ├── motherdemon_spawn_egg.json │ │ │ ├── netherambient_geoffplaysguitar_music_disc.json │ │ │ ├── nightmare_doom_boots.json │ │ │ ├── nightmare_doom_chestplate.json │ │ │ ├── nightmare_doom_helmet.json │ │ │ ├── nightmare_doom_leggings.json │ │ │ ├── nightmare_imp_spawn_egg.json │ │ │ ├── pain_spawn_egg.json │ │ │ ├── painter_doom_boots.json │ │ │ ├── painter_doom_chestplate.json │ │ │ ├── painter_doom_helmet.json │ │ │ ├── painter_doom_leggings.json │ │ │ ├── phobos_doom_boots.json │ │ │ ├── phobos_doom_chestplate.json │ │ │ ├── phobos_doom_helmet.json │ │ │ ├── phobos_doom_leggings.json │ │ │ ├── pinky2016_spawn_egg.json │ │ │ ├── pinky_spawn_egg.json │ │ │ ├── pistol.json │ │ │ ├── pistol_nocenter.json │ │ │ ├── plasmagun.json │ │ │ ├── plasmagun_nocenter.json │ │ │ ├── possessed_scientist_spawn_egg.json │ │ │ ├── possessed_soldier_spawn_egg.json │ │ │ ├── possessed_worker_spawn_egg.json │ │ │ ├── powersphere.json │ │ │ ├── praetor_doom_boots.json │ │ │ ├── praetor_doom_chestplate.json │ │ │ ├── praetor_doom_helmet.json │ │ │ ├── praetor_doom_leggings.json │ │ │ ├── prowler_spawn_egg.json │ │ │ ├── purplepony_doom_boots.json │ │ │ ├── purplepony_doom_chestplate.json │ │ │ ├── purplepony_doom_helmet.json │ │ │ ├── purplepony_doom_leggings.json │ │ │ ├── redneck_doom1_boots.json │ │ │ ├── redneck_doom1_chestplate.json │ │ │ ├── redneck_doom1_helmet.json │ │ │ ├── redneck_doom1_leggings.json │ │ │ ├── redneck_doom2_boots.json │ │ │ ├── redneck_doom2_chestplate.json │ │ │ ├── redneck_doom2_helmet.json │ │ │ ├── redneck_doom2_leggings.json │ │ │ ├── redneck_doom3_boots.json │ │ │ ├── redneck_doom3_chestplate.json │ │ │ ├── redneck_doom3_helmet.json │ │ │ ├── redneck_doom3_leggings.json │ │ │ ├── revenant2016_spawn_egg.json │ │ │ ├── revenant_spawn_egg.json │ │ │ ├── rocket.json │ │ │ ├── rocketlauncher.json │ │ │ ├── rocketlauncher_nocenter.json │ │ │ ├── santa_helmet.json │ │ │ ├── sentinel_doom_boots.json │ │ │ ├── sentinel_doom_chestplate.json │ │ │ ├── sentinel_doom_helmet.json │ │ │ ├── sentinel_doom_leggings.json │ │ │ ├── sentinelhammer.json │ │ │ ├── shotgun.json │ │ │ ├── shotgun_nocenter.json │ │ │ ├── shotgun_shells.json │ │ │ ├── shotgunguy_spawn_egg.json │ │ │ ├── soulcube.json │ │ │ ├── spectre_spawn_egg.json │ │ │ ├── spidermastermind2016_spawn_egg.json │ │ │ ├── spidermastermind_spawn_egg.json │ │ │ ├── stoneimp_spawn_egg.json │ │ │ ├── summoner_spawn_egg.json │ │ │ ├── supershotgun.json │ │ │ ├── supershotgun_nocenter.json │ │ │ ├── tentacle_spawn_egg.json │ │ │ ├── totem.json │ │ │ ├── turret_spawn_egg.json │ │ │ ├── twenty_five_boots.json │ │ │ ├── twenty_five_chestplate.json │ │ │ ├── twenty_five_helmet.json │ │ │ ├── twenty_five_leggings.json │ │ │ ├── tyrant_spawn_egg.json │ │ │ ├── unmaker.json │ │ │ ├── unmaker_nocenter.json │ │ │ ├── unmaykr.json │ │ │ ├── unmaykr_bolt.json │ │ │ ├── unmaykr_nocenter.json │ │ │ ├── unwilling_spawn_egg.json │ │ │ ├── whiplash_spawn_egg.json │ │ │ ├── zombie_doom_boots.json │ │ │ ├── zombie_doom_chestplate.json │ │ │ ├── zombie_doom_helmet.json │ │ │ ├── zombie_doom_leggings.json │ │ │ └── zombieman_spawn_egg.json │ │ ├── particles │ │ ├── pistol.json │ │ ├── plasma.json │ │ └── unmaykr.json │ │ ├── sounds.json │ │ ├── sounds │ │ ├── arachnotron_death.ogg │ │ ├── arachnotron_hurt.ogg │ │ ├── arachnotron_idle.ogg │ │ ├── arch_vile_death.ogg │ │ ├── arch_vile_hit.ogg │ │ ├── arch_vile_idle.ogg │ │ ├── arch_vile_portal.ogg │ │ ├── arch_vile_scream.ogg │ │ ├── arch_vile_stare.ogg │ │ ├── ballista_firing.ogg │ │ ├── baron_angry.ogg │ │ ├── baron_death.ogg │ │ ├── baron_hurt.ogg │ │ ├── baron_say.ogg │ │ ├── bfg_firing.ogg │ │ ├── bfg_hit.ogg │ │ ├── cacodemon_affectionate_scream.ogg │ │ ├── cacodemon_charge.ogg │ │ ├── cacodemon_death.ogg │ │ ├── cacodemon_fireball.ogg │ │ ├── cacodemon_hit.ogg │ │ ├── cacodemon_moan.ogg │ │ ├── cacodemon_scream.ogg │ │ ├── chaingun_fire.ogg │ │ ├── chainsaw_attacking.ogg │ │ ├── chainsaw_idle.ogg │ │ ├── clipreload.ogg │ │ ├── crucible_axe_left.ogg │ │ ├── crucible_axe_right.ogg │ │ ├── crucible_hammer.ogg │ │ ├── crucible_left.ogg │ │ ├── crucible_right.ogg │ │ ├── crucible_stab.ogg │ │ ├── cyberdemon_death.ogg │ │ ├── cyberdemon_hit.ogg │ │ ├── cyberdemon_throw.ogg │ │ ├── cyberdemon_walk.ogg │ │ ├── doomhunter_ambient.ogg │ │ ├── doomhunter_death.ogg │ │ ├── doomhunter_hurt.ogg │ │ ├── doomhunter_phasechange.ogg │ │ ├── e1m1.ogg │ │ ├── emptyclip.ogg │ │ ├── gargolye_death.ogg │ │ ├── gargolye_hit.ogg │ │ ├── gargolye_idle.ogg │ │ ├── grenadeabouttoexplode.ogg │ │ ├── heavy_cannon.ogg │ │ ├── hellknight_death.ogg │ │ ├── hellknight_hurt.ogg │ │ ├── hellknight_say.ogg │ │ ├── icon_ambient.ogg │ │ ├── icon_death.ogg │ │ ├── icon_hurt.ogg │ │ ├── imp_ambient.ogg │ │ ├── imp_death.ogg │ │ ├── imp_hurt.ogg │ │ ├── imp_step.ogg │ │ ├── loading_end.ogg │ │ ├── lost_soul_death.ogg │ │ ├── lost_soul_say.ogg │ │ ├── mancubus_death.ogg │ │ ├── mancubus_hit.ogg │ │ ├── mancubus_say.ogg │ │ ├── mancubus_walk.ogg │ │ ├── maykr_ambient.ogg │ │ ├── maykr_death.ogg │ │ ├── maykr_hurt.ogg │ │ ├── mecha_death.ogg │ │ ├── mecha_hit.ogg │ │ ├── mecha_idle.ogg │ │ ├── microwave.ogg │ │ ├── mother_ambient.ogg │ │ ├── mother_attack.ogg │ │ ├── mother_death.ogg │ │ ├── mother_pain.ogg │ │ ├── netherambient_geoffplaysguitar.ogg │ │ ├── pain_death.ogg │ │ ├── pain_hurt.ogg │ │ ├── pain_say.ogg │ │ ├── pinky_death.ogg │ │ ├── pinky_hurt.ogg │ │ ├── pinky_idle.ogg │ │ ├── pinky_step.ogg │ │ ├── pinky_yell.ogg │ │ ├── pistol_fire.ogg │ │ ├── plasmafire.ogg │ │ ├── plasmahit.ogg │ │ ├── psoldier_death.ogg │ │ ├── psoldier_hurt.ogg │ │ ├── psoldier_idle.ogg │ │ ├── quick1_1.ogg │ │ ├── revenant_attack.ogg │ │ ├── revenant_death.ogg │ │ ├── revenant_doot.ogg │ │ ├── revenant_hurt.ogg │ │ ├── revenant_say.ogg │ │ ├── rocketfire.ogg │ │ ├── rockethit.ogg │ │ ├── shoot1.ogg │ │ ├── shotgun_fire.ogg │ │ ├── shotgunreload.ogg │ │ ├── spiderdemon_death.ogg │ │ ├── spiderdemon_say.ogg │ │ ├── spiderdemon_step.ogg │ │ ├── super_shotgun_fire.ogg │ │ ├── unmakyr_fire.ogg │ │ ├── whiplash_ambient.ogg │ │ ├── whiplash_death.ogg │ │ ├── whiplash_hurt.ogg │ │ ├── zombieman_death.ogg │ │ ├── zombieman_hurt.ogg │ │ └── zombieman_idle.ogg │ │ └── textures │ │ ├── block │ │ ├── argent_block.png │ │ ├── argentlamp.png │ │ ├── barrel_bottom.png │ │ ├── barrel_explode.png │ │ ├── barrel_side.png │ │ ├── barrel_top.png │ │ ├── barrel_top.png.mcmeta │ │ ├── bigdoor4.png │ │ ├── brown_green_1.png │ │ ├── brown_green_2.png │ │ ├── compblue.png │ │ ├── compspan.png │ │ ├── comptileleft.png │ │ ├── comptileright.png │ │ ├── doom_sand.png │ │ ├── e1m1_blue_floor.png │ │ ├── e1m1_brown_wall.png │ │ ├── e1m1_ceiling.png │ │ ├── e1m1_floor.png │ │ ├── e1m1_green_ceiling.png │ │ ├── e1m1_green_wall.png │ │ ├── e1m1_reddotceiling.png │ │ ├── e1m1_toxic_floor.png │ │ ├── e1m1_toxic_wall.png │ │ ├── e1m1_wall.png │ │ ├── e1m1_wall2.png │ │ ├── flat3.png │ │ ├── gun_table.png │ │ ├── icon_wall1.png │ │ ├── icon_wall10.png │ │ ├── icon_wall11.png │ │ ├── icon_wall12.png │ │ ├── icon_wall13.png │ │ ├── icon_wall14.png │ │ ├── icon_wall15.png │ │ ├── icon_wall16.png │ │ ├── icon_wall2.png │ │ ├── icon_wall3.png │ │ ├── icon_wall4.png │ │ ├── icon_wall5.png │ │ ├── icon_wall6.png │ │ ├── icon_wall7.png │ │ ├── icon_wall8.png │ │ ├── icon_wall9.png │ │ ├── image_part_001.png │ │ ├── image_part_002.png │ │ ├── image_part_003.png │ │ ├── image_part_004.png │ │ ├── image_part_005.png │ │ ├── image_part_006.png │ │ ├── image_part_007.png │ │ ├── image_part_008.png │ │ ├── jump_boost.png │ │ ├── jump_flame.png │ │ ├── jump_flame.png.mcmeta │ │ ├── lite3.png │ │ ├── nukage.png │ │ ├── nukage.png.mcmeta │ │ ├── nuke24.png │ │ ├── stargr1_btm.png │ │ ├── stargr1_top.png │ │ ├── startan1_btm.png │ │ ├── startan1_top.png │ │ ├── tlite6_4.png │ │ ├── tlite6_5.png │ │ ├── totem.png │ │ ├── wall_computer_1.png │ │ ├── wall_computer_2.png │ │ ├── wall_computer_3.png │ │ └── wall_computer_4.png │ │ ├── entity │ │ ├── arachnotron-64.png │ │ ├── arachnotron-texturemap.png │ │ ├── arachonotroneternal.png │ │ ├── archmaykr_1.png │ │ ├── archmaykr_2.png │ │ ├── archvile.png │ │ ├── archvile_flame_1.png │ │ ├── archvile_flame_2.png │ │ ├── archvile_flame_3.png │ │ ├── archvile_flame_4.png │ │ ├── archvile_flame_5.png │ │ ├── archvile_flame_6.png │ │ ├── archvile_flame_7.png │ │ ├── archvile_flame_8.png │ │ ├── archvileeternal.png │ │ ├── armoredbaron.png │ │ ├── baron2016.png │ │ ├── baronofhell-64.png │ │ ├── baronofhell-green.png │ │ ├── baronofhell-texturemap.png │ │ ├── bloodmaykr.png │ │ ├── cacodemon.png │ │ ├── cacodemon2016.png │ │ ├── cacodemon64.png │ │ ├── cacodemoneternal.png │ │ ├── carcass.png │ │ ├── chain.png │ │ ├── chaingunner.png │ │ ├── cueball.png │ │ ├── cueball_flame_1.png │ │ ├── cyber_mancubus.png │ │ ├── cyberdemon-64.png │ │ ├── cyberdemon-texturemap.png │ │ ├── cyberdemon2016.png │ │ ├── cybermancubus2016.png │ │ ├── demon_hunter.png │ │ ├── doomhunter.png │ │ ├── doomhunter_1.png │ │ ├── doomhunter_2.png │ │ ├── doomhunter_3.png │ │ ├── doomhunter_4.png │ │ ├── doomhunter_5.png │ │ ├── doomhunter_6.png │ │ ├── doomhunter_7.png │ │ ├── dreadknight.png │ │ ├── eternalzombiemen.png │ │ ├── firebaron.png │ │ ├── firebaron_1.png │ │ ├── firebaron_2.png │ │ ├── gargoyleimp.png │ │ ├── gladiator.png │ │ ├── gladiator_1.png │ │ ├── gladiator_2.png │ │ ├── gore_nest.png │ │ ├── hellknight-64.png │ │ ├── hellknight-texturemap.png │ │ ├── hellknight2016.png │ │ ├── iconofsin.png │ │ ├── imp-64.png │ │ ├── imp-texturemap.png │ │ ├── imp2016.png │ │ ├── lost_soul.png │ │ ├── lost_soul_64.png │ │ ├── lost_soul_64_fire_1.png │ │ ├── lost_soul_64_fire_2.png │ │ ├── lost_soul_64_fire_3.png │ │ ├── lost_soul_64_fire_4.png │ │ ├── lost_soul_64_fire_5.png │ │ ├── lost_soul_64_fire_6.png │ │ ├── lost_soul_64_fire_7.png │ │ ├── lost_soul_64_fire_8.png │ │ ├── lost_soul_fire_1.png │ │ ├── lost_soul_fire_2.png │ │ ├── lost_soul_fire_3.png │ │ ├── lost_soul_fire_4.png │ │ ├── lost_soul_fire_5.png │ │ ├── lost_soul_fire_6.png │ │ ├── lost_soul_fire_7.png │ │ ├── lost_soul_fire_8.png │ │ ├── lost_soul_green_fire_1.png │ │ ├── lost_soul_green_fire_2.png │ │ ├── lost_soul_green_fire_3.png │ │ ├── lost_soul_green_fire_4.png │ │ ├── lost_soul_green_fire_5.png │ │ ├── lost_soul_green_fire_6.png │ │ ├── lost_soul_green_fire_7.png │ │ ├── lost_soul_green_fire_8.png │ │ ├── lostsould_2016_1.png │ │ ├── lostsould_2016_2.png │ │ ├── lostsould_2016_3.png │ │ ├── lostsould_2016_4.png │ │ ├── lostsould_2016_5.png │ │ ├── lostsould_2016_6.png │ │ ├── lostsould_2016_7.png │ │ ├── lostsould_2016_8.png │ │ ├── lostsould_eternal_1.png │ │ ├── lostsould_eternal_2.png │ │ ├── lostsould_eternal_3.png │ │ ├── lostsould_eternal_4.png │ │ ├── lostsould_eternal_5.png │ │ ├── lostsould_eternal_6.png │ │ ├── lostsould_eternal_7.png │ │ ├── lostsould_eternal_8.png │ │ ├── mancubus.png │ │ ├── mancubus2016.png │ │ ├── mancubus64.png │ │ ├── marauder.png │ │ ├── marauder_glowmask.png │ │ ├── maykrdrone_1.png │ │ ├── maykrdrone_2.png │ │ ├── mechazombie.png │ │ ├── motherdemon.png │ │ ├── nightmareimp-texture.png │ │ ├── painelemental-attacking.png │ │ ├── painelemental-normal.png │ │ ├── painelemental64-attacking.png │ │ ├── painelemental64-normal.png │ │ ├── paineternal.png │ │ ├── pinky-64.png │ │ ├── pinky-texturemap.png │ │ ├── pinky2016.png │ │ ├── pinky_green.png │ │ ├── plasma_beam.png │ │ ├── possessedengineer.png │ │ ├── possessedengineer_1.png │ │ ├── possessedscientist.png │ │ ├── possessedsoldier-eternal.png │ │ ├── possessedsoldier-eternal_flames_1.png │ │ ├── possessedsoldier-eternal_flames_2.png │ │ ├── possessedsoldier-shield.png │ │ ├── possessedsoldier.png │ │ ├── possessedworker.png │ │ ├── projectiles │ │ │ ├── argent_bolt.png │ │ │ ├── baronblast.png │ │ │ ├── bfg.png │ │ │ ├── bfg_ball.png │ │ │ ├── bfg_beam.png │ │ │ ├── bloodbolt.png │ │ │ ├── fire_charge.png │ │ │ ├── plasma_ball.png │ │ │ ├── plasma_ball_red.png │ │ │ ├── rocket.png │ │ │ └── shotgun_shell.png │ │ ├── prowler.png │ │ ├── prowler_cursed.png │ │ ├── revenant.png │ │ ├── revenant2016.png │ │ ├── revenant2016_1.png │ │ ├── revenant2016_2.png │ │ ├── revenant2016_3.png │ │ ├── revenant2016_4.png │ │ ├── revenant2016_5.png │ │ ├── revenant2016_6.png │ │ ├── revenant2016_7.png │ │ ├── revenant_1.png │ │ ├── revenant_2.png │ │ ├── revenant_3.png │ │ ├── revenant_4.png │ │ ├── revenant_5.png │ │ ├── revenant_6.png │ │ ├── revenant_7.png │ │ ├── revenant_golden.png │ │ ├── revenant_golden_1.png │ │ ├── revenant_golden_2.png │ │ ├── revenant_golden_3.png │ │ ├── revenant_golden_4.png │ │ ├── revenant_golden_5.png │ │ ├── revenant_golden_6.png │ │ ├── revenant_golden_7.png │ │ ├── revenant_nojetpack.png │ │ ├── screecher.png │ │ ├── shotgunguy.png │ │ ├── shotgunguy64.png │ │ ├── spidermastermind-texturemap.png │ │ ├── spidermastermind2016.png │ │ ├── stoneimp.png │ │ ├── summoner.png │ │ ├── summoner_red.png │ │ ├── tentacle.png │ │ ├── turret.png │ │ ├── tyrant.png │ │ ├── unwilling.png │ │ ├── whiplash.png │ │ └── zombieman64.png │ │ ├── gui │ │ └── gun_table_gui.png │ │ ├── item │ │ ├── 7251.png │ │ ├── 8890.png │ │ ├── 9051.png │ │ ├── argent_axe.png │ │ ├── argent_bolt.png │ │ ├── argent_energy.png │ │ ├── argent_hoe.png │ │ ├── argent_paxel.png │ │ ├── argent_pickaxe.png │ │ ├── argent_plate.png │ │ ├── argent_shovel.png │ │ ├── argent_sword.png │ │ ├── astro_boots.png │ │ ├── astro_chestplate.png │ │ ├── astro_helmet.png │ │ ├── astro_leggings.png │ │ ├── ballista.png │ │ ├── ballista_bolt.png │ │ ├── ballista_firework.png │ │ ├── ballista_pulling_0.png │ │ ├── ballista_pulling_1.png │ │ ├── ballista_pulling_2.png │ │ ├── ballista_standby.png │ │ ├── bfg9000.png │ │ ├── bfg_cell.png │ │ ├── bfgeternal.png │ │ ├── botd.png │ │ ├── bronze_boots.png │ │ ├── bronze_chestplate.png │ │ ├── bronze_helmet.png │ │ ├── bronze_leggings.png │ │ ├── chain_bullets.png │ │ ├── chainguneternal.png │ │ ├── chains.png │ │ ├── chainsaw.png │ │ ├── chainsaw.png.mcmeta │ │ ├── chainsaw64_stalled.png │ │ ├── chainsaw_stalled.png │ │ ├── chainsaweternal.png │ │ ├── chainsawsixyfour.png │ │ ├── chainsawsixyfour.png.mcmeta │ │ ├── classic_black_chestplate.png │ │ ├── classic_black_leggings.png │ │ ├── classic_boots.png │ │ ├── classic_bronze_chestplate.png │ │ ├── classic_bronze_leggings.png │ │ ├── classic_chestplate.png │ │ ├── classic_helmet.png │ │ ├── classic_leggings.png │ │ ├── classic_red_chestplate.png │ │ ├── classic_red_leggings.png │ │ ├── clip.png │ │ ├── crimson_boots.png │ │ ├── crimson_chestplate.png │ │ ├── crimson_helmet.png │ │ ├── crimson_leggings.png │ │ ├── crucible.png │ │ ├── crucible_glowmask.png │ │ ├── cultist_boots.png │ │ ├── cultist_chestplate.png │ │ ├── cultist_helmet.png │ │ ├── cultist_leggings.png │ │ ├── darklord_boots.png │ │ ├── darklord_chestplate.png │ │ ├── darklord_helmet.png │ │ ├── darklord_leggings.png │ │ ├── darklordcrucible.png │ │ ├── darklordcrucible_glowmask.png │ │ ├── demoncide_boots.png │ │ ├── demoncide_chestplate.png │ │ ├── demoncide_helmet.png │ │ ├── demoncide_leggings.png │ │ ├── demonic_boots.png │ │ ├── demonic_chestplate.png │ │ ├── demonic_helmet.png │ │ ├── demonic_leggings.png │ │ ├── doom_boots.png │ │ ├── doom_chestplate.png │ │ ├── doom_helmet.png │ │ ├── doom_leggings.png │ │ ├── doomed_gauss_cannon.png │ │ ├── doomed_grenade.png │ │ ├── doomed_plasma_rifle.png │ │ ├── doomed_shotgun.png │ │ ├── doomicorn_boots.png │ │ ├── doomicorn_chestplate.png │ │ ├── doomicorn_helmet.png │ │ ├── doomicorn_leggings.png │ │ ├── e1m1.png │ │ ├── ember_boots.png │ │ ├── ember_chestplate.png │ │ ├── ember_helmet.png │ │ ├── ember_leggings.png │ │ ├── empty.png │ │ ├── energy_cell.png │ │ ├── gas_barrel.png │ │ ├── gold_boots.png │ │ ├── gold_chestplate.png │ │ ├── gold_helmet.png │ │ ├── gold_leggings.png │ │ ├── heavycannon.png │ │ ├── hotrod_boots.png │ │ ├── hotrod_chestplate.png │ │ ├── hotrod_helmet.png │ │ ├── hotrod_leggings.png │ │ ├── icon_icon.png │ │ ├── immortal_sphere.png │ │ ├── immortal_sphere.png.mcmeta │ │ ├── invisible_sphere.png │ │ ├── invisible_sphere.png.mcmeta │ │ ├── marauderaxe.png │ │ ├── marauderaxe_glowmask.png │ │ ├── maykr_boots.png │ │ ├── maykr_chestplate.png │ │ ├── maykr_helmet.png │ │ ├── maykr_leggings.png │ │ ├── mega_sphere.png │ │ ├── mega_sphere.png.mcmeta │ │ ├── metal_dirty.png │ │ ├── midnight_boots.png │ │ ├── midnight_chestplate.png │ │ ├── midnight_helmet.png │ │ ├── midnight_leggings.png │ │ ├── nightmare_boots.png │ │ ├── nightmare_chestplate.png │ │ ├── nightmare_helmet.png │ │ ├── nightmare_leggings.png │ │ ├── painter_chestplate.png │ │ ├── painter_helmet.png │ │ ├── phobos_boots.png │ │ ├── phobos_chestplate.png │ │ ├── phobos_helmet.png │ │ ├── phobos_leggings.png │ │ ├── pistol.png │ │ ├── plasma.png │ │ ├── plasma.png.mcmeta │ │ ├── plasmagreen.png │ │ ├── plasmagreen.png.mcmeta │ │ ├── power_sphere.png │ │ ├── power_sphere.png.mcmeta │ │ ├── praetor_boots.png │ │ ├── praetor_chestplate.png │ │ ├── praetor_helmet.png │ │ ├── praetor_leggings.png │ │ ├── purplepony_boots.png │ │ ├── purplepony_chestplate.png │ │ ├── purplepony_helmet.png │ │ ├── purplepony_leggings.png │ │ ├── rabbit.png │ │ ├── redneck_boots.png │ │ ├── redneck_chestplate1.png │ │ ├── redneck_chestplate2.png │ │ ├── redneck_chestplate3.png │ │ ├── redneck_helmet.png │ │ ├── redneck_leggings.png │ │ ├── rifle.png │ │ ├── rocket.png │ │ ├── rocket_rocket.png │ │ ├── rocketlauncher.png │ │ ├── santa_helmet.png │ │ ├── sdfghj.png │ │ ├── sentinel_boots.png │ │ ├── sentinel_chestplate.png │ │ ├── sentinel_hammer.png │ │ ├── sentinel_hammer2.png │ │ ├── sentinel_hammer2_glowmask.png │ │ ├── sentinel_hammer_glowmask.png │ │ ├── sentinel_helmet.png │ │ ├── sentinel_leggings.png │ │ ├── shell.png │ │ ├── shell_box.png │ │ ├── shell_box_spectral.png │ │ ├── shell_spectral.png │ │ ├── shotgun.png │ │ ├── shotgun_shell.png │ │ ├── soulcube.png │ │ ├── soulcube.png.mcmeta │ │ ├── supershotgun.png │ │ ├── tipped_arrow_base.png │ │ ├── tipped_arrow_head.png │ │ ├── twenty_five_boots.png │ │ ├── twenty_five_chestplate.png │ │ ├── twenty_five_helmet.png │ │ ├── twenty_five_leggings.png │ │ ├── unmaker.png │ │ ├── unmaykr.png │ │ ├── zombie_boots.png │ │ ├── zombie_chestplate.png │ │ ├── zombie_helmet.png │ │ └── zombie_leggings.png │ │ ├── models │ │ └── armor │ │ │ ├── astro_armor_layer_1.png │ │ │ ├── bronze_armor_layer_1.png │ │ │ ├── classic_armor_layer_1.png │ │ │ ├── classic_bronze_armor_layer_1.png │ │ │ ├── classic_indigo_armor_layer_1.png │ │ │ ├── classic_red_armor_layer_1.png │ │ │ ├── crimson_armor_layer_1.png │ │ │ ├── cultist_armor_layer_1.png │ │ │ ├── darklordarmor.png │ │ │ ├── demoncide_armor_layer_1.png │ │ │ ├── demonic_armor_layer_1.png │ │ │ ├── doom_armor_layer_1.png │ │ │ ├── doomicorn_armor_layer_1.png │ │ │ ├── ember_armor_layer_1.png │ │ │ ├── gold_armor_layer_1.png │ │ │ ├── hotrod_armor_layer_1.png │ │ │ ├── maykr_armor_layer_1.png │ │ │ ├── midnight_armor_layer_1.png │ │ │ ├── nightmare_armor_layer_1.png │ │ │ ├── painter_armor_layer_1.png │ │ │ ├── phobos_armor_layer_1.png │ │ │ ├── praetor_armor_layer_1.png │ │ │ ├── purplepony_armor_layer_1.png │ │ │ ├── redneck1_armor_layer_1.png │ │ │ ├── redneck2_armor_layer_1.png │ │ │ ├── redneck3_armor_layer_1.png │ │ │ ├── santa_armor_layer_1.png │ │ │ ├── sentinel_armor_layer_1.png │ │ │ ├── twenty_five_armor_layer_1.png │ │ │ └── zombie_armor_layer_1.png │ │ └── particle │ │ ├── pistol.png │ │ ├── plasma.png │ │ └── unmaykr.png │ ├── data │ ├── accessories │ │ └── tags │ │ │ └── item │ │ │ ├── belt.json │ │ │ └── charm.json │ └── doom │ │ ├── advancements │ │ ├── argent.json │ │ ├── argent_plate.json │ │ ├── gladiator_fight.json │ │ ├── hell_church.json │ │ ├── icon_fight.json │ │ ├── kill_archmaykr.json │ │ ├── kill_icon.json │ │ ├── kill_motherdemon.json │ │ └── summon_icon.json │ │ ├── dimension │ │ └── doom_hell.json │ │ ├── dimension_type │ │ └── doom_hell.json │ │ ├── loot_tables │ │ ├── blocks │ │ │ ├── argent_block.json │ │ │ ├── argent_lamp_block.json │ │ │ ├── barrel.json │ │ │ ├── doom_sand.json │ │ │ ├── e1m1_block1.json │ │ │ ├── e1m1_block10.json │ │ │ ├── e1m1_block11.json │ │ │ ├── e1m1_block12.json │ │ │ ├── e1m1_block13.json │ │ │ ├── e1m1_block14.json │ │ │ ├── e1m1_block15.json │ │ │ ├── e1m1_block16.json │ │ │ ├── e1m1_block17.json │ │ │ ├── e1m1_block18.json │ │ │ ├── e1m1_block19.json │ │ │ ├── e1m1_block2.json │ │ │ ├── e1m1_block20.json │ │ │ ├── e1m1_block21.json │ │ │ ├── e1m1_block22.json │ │ │ ├── e1m1_block23.json │ │ │ ├── e1m1_block24.json │ │ │ ├── e1m1_block25.json │ │ │ ├── e1m1_block26.json │ │ │ ├── e1m1_block3.json │ │ │ ├── e1m1_block4.json │ │ │ ├── e1m1_block5.json │ │ │ ├── e1m1_block6.json │ │ │ ├── e1m1_block7.json │ │ │ ├── e1m1_block8.json │ │ │ ├── e1m1_block9.json │ │ │ ├── gun_table.json │ │ │ ├── icon_wall1.json │ │ │ ├── icon_wall10.json │ │ │ ├── icon_wall11.json │ │ │ ├── icon_wall12.json │ │ │ ├── icon_wall13.json │ │ │ ├── icon_wall14.json │ │ │ ├── icon_wall15.json │ │ │ ├── icon_wall16.json │ │ │ ├── icon_wall2.json │ │ │ ├── icon_wall3.json │ │ │ ├── icon_wall4.json │ │ │ ├── icon_wall5.json │ │ │ ├── icon_wall6.json │ │ │ ├── icon_wall7.json │ │ │ ├── icon_wall8.json │ │ │ ├── icon_wall9.json │ │ │ ├── jump_pad.json │ │ │ └── totem.json │ │ ├── chests │ │ │ ├── bastion_bridge.json │ │ │ ├── bastion_hoglin_stable.json │ │ │ ├── bastion_other.json │ │ │ ├── bastion_treasure.json │ │ │ ├── doom_end_treasure.json │ │ │ ├── doom_icon_treasure.json │ │ │ ├── nether_bridge.json │ │ │ ├── ruined_portal.json │ │ │ └── spawn_bonus_chest.json │ │ └── entities │ │ │ ├── arachnotron.json │ │ │ ├── arachnotroneternal.json │ │ │ ├── arch_maykr.json │ │ │ ├── archvile.json │ │ │ ├── archvileeternal.json │ │ │ ├── armoredbaron.json │ │ │ ├── baron.json │ │ │ ├── baron2016.json │ │ │ ├── blood_maykr.json │ │ │ ├── cacodemon.json │ │ │ ├── chaingunner.json │ │ │ ├── cyberdemon.json │ │ │ ├── cyberdemon2016.json │ │ │ ├── doom_hunter.json │ │ │ ├── dreadknight.json │ │ │ ├── firebronebaron.json │ │ │ ├── gargoyle.json │ │ │ ├── gladiator.json │ │ │ ├── gore_nest.json │ │ │ ├── hellknight.json │ │ │ ├── hellknight2016.json │ │ │ ├── iconofsin.json │ │ │ ├── imp.json │ │ │ ├── imp2016.json │ │ │ ├── lost_soul.json │ │ │ ├── mancubus.json │ │ │ ├── marauder.json │ │ │ ├── maykr_drone.json │ │ │ ├── mechazombie.json │ │ │ ├── motherdemon.json │ │ │ ├── nightmare_imp.json │ │ │ ├── painelemental.json │ │ │ ├── pinky.json │ │ │ ├── pinky2016.json │ │ │ ├── possessed_scientist.json │ │ │ ├── possessed_soldier.json │ │ │ ├── possessed_worker.json │ │ │ ├── prowler.json │ │ │ ├── revenant.json │ │ │ ├── revenant2016.json │ │ │ ├── shotgunguy.json │ │ │ ├── spidermastermind.json │ │ │ ├── spidermastermind2016.json │ │ │ ├── stone_imp.json │ │ │ ├── summoner.json │ │ │ ├── tentacle.json │ │ │ ├── turret.json │ │ │ ├── tyrant.json │ │ │ ├── unwilling.json │ │ │ ├── whiplash.json │ │ │ └── zombieman.json │ │ ├── neoforge │ │ └── biome_modifier │ │ │ ├── spawn_arachnotron.json │ │ │ ├── spawn_arachnotroneternal.json │ │ │ ├── spawn_archvile.json │ │ │ ├── spawn_armorbaron.json │ │ │ ├── spawn_baron.json │ │ │ ├── spawn_baron2016.json │ │ │ ├── spawn_bloodmaykr.json │ │ │ ├── spawn_cacodemon.json │ │ │ ├── spawn_carcass.json │ │ │ ├── spawn_chaingunner.json │ │ │ ├── spawn_cueball.json │ │ │ ├── spawn_cyberdemon.json │ │ │ ├── spawn_doomhunter.json │ │ │ ├── spawn_dreadknight.json │ │ │ ├── spawn_firebaron.json │ │ │ ├── spawn_gargoyle.json │ │ │ ├── spawn_gorenest.json │ │ │ ├── spawn_hellknight.json │ │ │ ├── spawn_hellknight2016.json │ │ │ ├── spawn_imp.json │ │ │ ├── spawn_lostsoul.json │ │ │ ├── spawn_lostsoul_eternal.json │ │ │ ├── spawn_mancubus.json │ │ │ ├── spawn_marauder.json │ │ │ ├── spawn_maykrdrone.json │ │ │ ├── spawn_mechazombie.json │ │ │ ├── spawn_painelemental.json │ │ │ ├── spawn_pinky.json │ │ │ ├── spawn_possessed_scientist.json │ │ │ ├── spawn_possessed_soldier.json │ │ │ ├── spawn_possessed_worker.json │ │ │ ├── spawn_prowler.json │ │ │ ├── spawn_revenant.json │ │ │ ├── spawn_revenant2016.json │ │ │ ├── spawn_shotgunguy.json │ │ │ ├── spawn_spectre.json │ │ │ ├── spawn_spider_mastermind.json │ │ │ ├── spawn_spider_mastermind2016.json │ │ │ ├── spawn_summoner.json │ │ │ ├── spawn_tentacle.json │ │ │ ├── spawn_turret.json │ │ │ ├── spawn_unwilling.json │ │ │ ├── spawn_whiplash.json │ │ │ └── spawn_zombieman.json │ │ ├── recipe │ │ ├── argent.json │ │ ├── argent_axe.json │ │ ├── argent_block.json │ │ ├── argent_bolt.json │ │ ├── argent_hoe.json │ │ ├── argent_lamp.json │ │ ├── argent_paxel.json │ │ ├── argent_pickaxe.json │ │ ├── argent_plate.json │ │ ├── argent_shovel.json │ │ ├── argent_sword.json │ │ ├── astro_doom_boots.json │ │ ├── astro_doom_chestplate.json │ │ ├── astro_doom_helmet.json │ │ ├── astro_doom_leggings.json │ │ ├── axe_crucible_open.json │ │ ├── ballista.json │ │ ├── barrel.json │ │ ├── bfg.json │ │ ├── bfg_cells.json │ │ ├── bfg_eternal.json │ │ ├── bronze_doom_boots.json │ │ ├── bronze_doom_chestplate.json │ │ ├── bronze_doom_helmet.json │ │ ├── bronze_doom_leggings.json │ │ ├── bullets.json │ │ ├── chaingun.json │ │ ├── chaingun_bullets.json │ │ ├── chainsaw.json │ │ ├── chainsaw64.json │ │ ├── chainsaweternal.json │ │ ├── classic_black_chestplate.json │ │ ├── classic_black_leggings.json │ │ ├── classic_bronze_chestplate.json │ │ ├── classic_bronze_leggings.json │ │ ├── classic_doom_boots.json │ │ ├── classic_doom_chestplate.json │ │ ├── classic_doom_helmet.json │ │ ├── classic_doom_leggings.json │ │ ├── classic_red_chestplate.json │ │ ├── classic_red_leggings.json │ │ ├── crimson_doom_boots.json │ │ ├── crimson_doom_chestplate.json │ │ ├── crimson_doom_helmet.json │ │ ├── crimson_doom_leggings.json │ │ ├── cruciblesword.json │ │ ├── cruciblesword_closed.json │ │ ├── cultist_doom_boots.json │ │ ├── cultist_doom_chestplate.json │ │ ├── cultist_doom_helmet.json │ │ ├── cultist_doom_leggings.json │ │ ├── darklord_boots.json │ │ ├── darklord_chestplate.json │ │ ├── darklord_helmet.json │ │ ├── darklord_leggings.json │ │ ├── darklordcrucible.json │ │ ├── demoncide_doom_boots.json │ │ ├── demoncide_doom_chestplate.json │ │ ├── demoncide_doom_helmet.json │ │ ├── demoncide_doom_leggings.json │ │ ├── demonic_doom_boots.json │ │ ├── demonic_doom_chestplate.json │ │ ├── demonic_doom_helmet.json │ │ ├── demonic_doom_leggings.json │ │ ├── doom_boots.json │ │ ├── doom_chestplate.json │ │ ├── doom_helmet.json │ │ ├── doom_leggings.json │ │ ├── doomed_gauss.json │ │ ├── doomed_grenade.json │ │ ├── doomed_plasma_rifle.json │ │ ├── doomed_shotgun.json │ │ ├── doomicorn_doom_boots.json │ │ ├── doomicorn_doom_chestplate.json │ │ ├── doomicorn_doom_helmet.json │ │ ├── doomicorn_doom_leggings.json │ │ ├── ember_doom_boots.json │ │ ├── ember_doom_chestplate.json │ │ ├── ember_doom_helmet.json │ │ ├── ember_doom_leggings.json │ │ ├── energy_cells.json │ │ ├── gas_barrel.json │ │ ├── gold_doom_boots.json │ │ ├── gold_doom_chestplate.json │ │ ├── gold_doom_helmet.json │ │ ├── gold_doom_leggings.json │ │ ├── gun_table.json │ │ ├── heavycannon.json │ │ ├── hotrod_boots.json │ │ ├── hotrod_chestplate.json │ │ ├── hotrod_helmet.json │ │ ├── hotrod_leggings.json │ │ ├── icon_wall1.json │ │ ├── icon_wall10.json │ │ ├── icon_wall11.json │ │ ├── icon_wall12.json │ │ ├── icon_wall13.json │ │ ├── icon_wall14.json │ │ ├── icon_wall15.json │ │ ├── icon_wall16.json │ │ ├── icon_wall2.json │ │ ├── icon_wall3.json │ │ ├── icon_wall4.json │ │ ├── icon_wall5.json │ │ ├── icon_wall6.json │ │ ├── icon_wall7.json │ │ ├── icon_wall8.json │ │ ├── icon_wall9.json │ │ ├── jump_pad.json │ │ ├── maykr_doom_boots.json │ │ ├── maykr_doom_chestplate.json │ │ ├── maykr_doom_helmet.json │ │ ├── maykr_doom_leggings.json │ │ ├── midnight_doom_boots.json │ │ ├── midnight_doom_chestplate.json │ │ ├── midnight_doom_helmet.json │ │ ├── midnight_doom_leggings.json │ │ ├── nightmare_doom_boots.json │ │ ├── nightmare_doom_chestplate.json │ │ ├── nightmare_doom_helmet.json │ │ ├── nightmare_doom_leggings.json │ │ ├── painter_chestplate.json │ │ ├── painter_helmet.json │ │ ├── phobos_doom_boots.json │ │ ├── phobos_doom_chestplate.json │ │ ├── phobos_doom_helmet.json │ │ ├── phobos_doom_leggings.json │ │ ├── pistol.json │ │ ├── plasmagun.json │ │ ├── praetor_doom_boots.json │ │ ├── praetor_doom_chestplate.json │ │ ├── praetor_doom_helmet.json │ │ ├── praetor_doom_leggings.json │ │ ├── purplepony_doom_boots.json │ │ ├── purplepony_doom_chestplate.json │ │ ├── purplepony_doom_helmet.json │ │ ├── purplepony_doom_leggings.json │ │ ├── redneck_doom1_boots.json │ │ ├── redneck_doom1_helmet.json │ │ ├── redneck_doom1_leggings.json │ │ ├── redneck_doom_chestplate1.json │ │ ├── redneck_doom_chestplate2.json │ │ ├── redneck_doom_chestplate3.json │ │ ├── rocket.json │ │ ├── rocketlauncher.json │ │ ├── santa_doom_helmet.json │ │ ├── sentinel_doom_boots.json │ │ ├── sentinel_doom_chestplate.json │ │ ├── sentinel_doom_helmet.json │ │ ├── sentinel_doom_leggings.json │ │ ├── sentinelhammer.json │ │ ├── shotgun.json │ │ ├── shotgun_shell.json │ │ ├── supershotgun.json │ │ ├── twenty_five_boots.json │ │ ├── twenty_five_chestplate.json │ │ ├── twenty_five_helmet.json │ │ ├── twenty_five_leggings.json │ │ ├── unmaker.json │ │ ├── unmaykr.json │ │ ├── unmaykr_bolt.json │ │ ├── zombie_doom_boots.json │ │ ├── zombie_doom_chestplate.json │ │ ├── zombie_doom_helmet.json │ │ └── zombie_doom_leggings.json │ │ ├── structures │ │ ├── archmaykr1.nbt │ │ ├── archmaykr2.nbt │ │ ├── archmaykr3.nbt │ │ ├── archmaykr4.nbt │ │ ├── gladiator_fight.nbt │ │ ├── hell_church.nbt │ │ ├── icon_fight.nbt │ │ ├── motherdemon1a.nbt │ │ ├── motherdemon2a.nbt │ │ ├── motherdemon3a.nbt │ │ └── motherdemon4a.nbt │ │ ├── tags │ │ ├── block │ │ │ ├── icon_break.json │ │ │ └── paxel_blocks.json │ │ ├── item │ │ │ └── glass.json │ │ └── worldgen │ │ │ └── biome │ │ │ ├── arachnotron_biomes.json │ │ │ ├── archmaykr_biomes.json │ │ │ ├── archvile_biomes.json │ │ │ ├── armoredbaron_biomes.json │ │ │ ├── baron_biomes.json │ │ │ ├── bloodmaykr_biomes.json │ │ │ ├── cacodemon_biomes.json │ │ │ ├── carcass_biomes.json │ │ │ ├── chaingunner_biomes.json │ │ │ ├── cueball_biomes.json │ │ │ ├── cyberdemon_biomes.json │ │ │ ├── doomhunter_biomes.json │ │ │ ├── gargoyle_biomes.json │ │ │ ├── gladiator_biomes.json │ │ │ ├── gorenest_biomes.json │ │ │ ├── has_structure │ │ │ ├── archmakyr_biomes.json │ │ │ ├── gladiator_fight_biomes.json │ │ │ ├── hell_church_biomes.json │ │ │ ├── icon_fight_biomes.json │ │ │ └── motherdemon1a_biomes.json │ │ │ ├── hellknight2016_biomes.json │ │ │ ├── hellknight_biomes.json │ │ │ ├── imp_biomes.json │ │ │ ├── impstone_biomes.json │ │ │ ├── lost_soul_biomes.json │ │ │ ├── makyr_biomes.json │ │ │ ├── mancubus_biomes.json │ │ │ ├── marauder_biomes.json │ │ │ ├── maykrdrone_biomes.json │ │ │ ├── mechazombie_biomes.json │ │ │ ├── motherdemon_biomes.json │ │ │ ├── pain_biomes.json │ │ │ ├── pinky_biomes.json │ │ │ ├── possessed_scientist_biomes.json │ │ │ ├── possessed_soldier_biomes.json │ │ │ ├── possessed_worker_biomes.json │ │ │ ├── prowler_biomes.json │ │ │ ├── revenant_biomes.json │ │ │ ├── shotgunguy_biomes.json │ │ │ ├── spectre_biomes.json │ │ │ ├── spider_mastermind_biomes.json │ │ │ ├── summoner_biomes.json │ │ │ ├── tentacle_biomes.json │ │ │ ├── turret_biomes.json │ │ │ ├── unwilling_biomes.json │ │ │ ├── whiplash_biomes.json │ │ │ └── zombieman_biomes.json │ │ └── worldgen │ │ ├── biome │ │ └── doom_hell.json │ │ ├── processor_list │ │ └── randomize_stonebrick.json │ │ ├── structure │ │ ├── archmakyr.json │ │ ├── gladiator_fight.json │ │ ├── hell_church.json │ │ ├── icon_fight.json │ │ └── motherdemon1a.json │ │ ├── structure_set │ │ ├── archmakyr.json │ │ ├── gladiator_fight.json │ │ ├── hell_church.json │ │ ├── icon_fight.json │ │ └── motherdemon1a.json │ │ └── template_pool │ │ ├── archmakyr.json │ │ ├── archmakyr2.json │ │ ├── archmakyr3.json │ │ ├── archmakyr4.json │ │ ├── gladiator_fight.json │ │ ├── gladiator_fight │ │ ├── side_pool.json │ │ └── start_pool.json │ │ ├── hell_church.json │ │ ├── hell_church │ │ ├── side_pool.json │ │ └── start_pool.json │ │ ├── icon_fight.json │ │ ├── icon_fight │ │ ├── side_pool.json │ │ └── start_pool.json │ │ ├── motherdemon1a.json │ │ ├── motherdemon2.json │ │ ├── motherdemon3.json │ │ └── motherdemon4.json │ ├── doom.accesswidener │ ├── doom.mixins.json │ ├── icon.png │ └── pack.mcmeta ├── fabric ├── build.gradle ├── runs │ └── client │ │ ├── GeoTexture Debug Printouts │ │ ├── textures.item.crucible.png │ │ ├── textures.item.crucible_glowmask.png │ │ ├── textures.item.darklordcrucible.png │ │ ├── textures.item.darklordcrucible_glowmask.png │ │ ├── textures.item.marauderaxe.png │ │ ├── textures.item.marauderaxe_glowmask.png │ │ ├── textures.item.sentinel_hammer.png │ │ └── textures.item.sentinel_hammer_glowmask.png │ │ ├── backups │ │ └── 2024-09-16_07-24-55_New World.zip │ │ ├── command_history.txt │ │ ├── config │ │ ├── accessories.json5 │ │ ├── azurelib.json │ │ ├── doom.json │ │ ├── fabric │ │ │ └── indigo-renderer.properties │ │ ├── modmenu.json │ │ └── roughlyenoughitems │ │ │ ├── collapsible.json5 │ │ │ ├── config.json5 │ │ │ ├── favorites.json5 │ │ │ ├── hints.json │ │ │ ├── pinyin.properties │ │ │ └── pinyin_double.properties │ │ ├── crash-reports │ │ ├── crash-2024-09-16_06.07.11-client.txt │ │ ├── crash-2024-09-16_06.08.37-client.txt │ │ ├── crash-2024-09-16_06.33.58-client.txt │ │ ├── crash-2024-09-16_06.43.09-client.txt │ │ ├── crash-2024-09-16_06.45.00-client.txt │ │ ├── crash-2024-09-16_06.47.52-client.txt │ │ ├── crash-2024-09-16_07.23.00-client.txt │ │ ├── crash-2024-09-16_07.25.05-client.txt │ │ ├── crash-2024-09-16_07.27.20-client.txt │ │ ├── crash-2024-09-16_07.29.39-client.txt │ │ ├── crash-2024-09-16_07.42.45-client.txt │ │ └── crash-2024-09-16_07.45.11-server.txt │ │ ├── data │ │ └── fabricDefaultResourcePacks.dat │ │ ├── downloads │ │ └── log.json │ │ ├── options.txt │ │ ├── saves │ │ └── New World │ │ │ ├── DIM-1 │ │ │ └── data │ │ │ │ └── raids.dat │ │ │ ├── DIM1 │ │ │ └── data │ │ │ │ └── raids_end.dat │ │ │ ├── advancements │ │ │ ├── 0ef61a2a-d91b-37b4-a10d-af67b917d543.json │ │ │ ├── 1b5803ef-dab8-3673-85ae-9a9160028e1f.json │ │ │ ├── 317a8ad6-0e94-3efc-b65d-ee1610ecfadc.json │ │ │ ├── 352a2219-a032-396a-9556-4b75f1d6ec41.json │ │ │ ├── 3c7cef0c-c4d3-3eb2-a04d-c369cce398ef.json │ │ │ ├── 3e97bd98-3fed-36a5-a2b2-bf93d544eeed.json │ │ │ ├── 3f66a67c-db6c-36b7-b762-d7a40c17883b.json │ │ │ ├── 469ed5b0-d521-3c7e-a5b2-0fa0ad8523cf.json │ │ │ ├── 4ebb02a4-f60f-3bbd-8cd6-a4ac4ed3f510.json │ │ │ ├── 549b60df-91f3-34d3-a6e5-12d11bc37565.json │ │ │ ├── 54b70f4a-db80-304b-b6ee-afcd086c6623.json │ │ │ ├── 5bd62aa7-8886-32aa-953e-97bdbc2a6931.json │ │ │ ├── 5f452b45-a444-38e5-8393-5edeaa648813.json │ │ │ ├── 6b411cc5-cb23-3aef-b8b1-6cb73d96a2d5.json │ │ │ ├── 77058a27-9ed9-3577-ba3a-f426b243548e.json │ │ │ ├── 94baa29a-be0d-3218-988c-acd14f7df952.json │ │ │ ├── a2995085-e0ea-31fe-a01c-a4eefcac9f6b.json │ │ │ ├── e5bad5ae-87fa-3676-b10f-8a571200822c.json │ │ │ ├── edb8d6a3-e33d-3ebb-8b42-fbfd789b2d20.json │ │ │ └── fd848f75-c1a0-33b6-9d05-284593849e10.json │ │ │ ├── data │ │ │ ├── AzureLib_id_cache.dat │ │ │ ├── raids.dat │ │ │ └── random_sequences.dat │ │ │ ├── dimensions │ │ │ └── doom │ │ │ │ └── doom_hell │ │ │ │ └── data │ │ │ │ └── raids.dat │ │ │ ├── entities │ │ │ ├── r.-1.-1.mca │ │ │ ├── r.-1.0.mca │ │ │ ├── r.0.-1.mca │ │ │ └── r.0.0.mca │ │ │ ├── icon.png │ │ │ ├── level.dat │ │ │ ├── level.dat_old │ │ │ ├── playerdata │ │ │ ├── 0ef61a2a-d91b-37b4-a10d-af67b917d543.dat │ │ │ ├── 0ef61a2a-d91b-37b4-a10d-af67b917d543.dat_old │ │ │ ├── 1b5803ef-dab8-3673-85ae-9a9160028e1f.dat │ │ │ ├── 1b5803ef-dab8-3673-85ae-9a9160028e1f.dat_old │ │ │ ├── 317a8ad6-0e94-3efc-b65d-ee1610ecfadc.dat │ │ │ ├── 317a8ad6-0e94-3efc-b65d-ee1610ecfadc.dat_old │ │ │ ├── 352a2219-a032-396a-9556-4b75f1d6ec41.dat │ │ │ ├── 352a2219-a032-396a-9556-4b75f1d6ec41.dat_old │ │ │ ├── 3c7cef0c-c4d3-3eb2-a04d-c369cce398ef.dat │ │ │ ├── 3e97bd98-3fed-36a5-a2b2-bf93d544eeed.dat │ │ │ ├── 3f66a67c-db6c-36b7-b762-d7a40c17883b.dat │ │ │ ├── 3f66a67c-db6c-36b7-b762-d7a40c17883b.dat_old │ │ │ ├── 469ed5b0-d521-3c7e-a5b2-0fa0ad8523cf.dat │ │ │ ├── 469ed5b0-d521-3c7e-a5b2-0fa0ad8523cf.dat_old │ │ │ ├── 4ebb02a4-f60f-3bbd-8cd6-a4ac4ed3f510.dat │ │ │ ├── 4ebb02a4-f60f-3bbd-8cd6-a4ac4ed3f510.dat_old │ │ │ ├── 549b60df-91f3-34d3-a6e5-12d11bc37565.dat │ │ │ ├── 54b70f4a-db80-304b-b6ee-afcd086c6623.dat │ │ │ ├── 54b70f4a-db80-304b-b6ee-afcd086c6623.dat_old │ │ │ ├── 5bd62aa7-8886-32aa-953e-97bdbc2a6931.dat │ │ │ ├── 5f452b45-a444-38e5-8393-5edeaa648813.dat │ │ │ ├── 5f452b45-a444-38e5-8393-5edeaa648813.dat_old │ │ │ ├── 6b411cc5-cb23-3aef-b8b1-6cb73d96a2d5.dat │ │ │ ├── 6b411cc5-cb23-3aef-b8b1-6cb73d96a2d5.dat_old │ │ │ ├── 77058a27-9ed9-3577-ba3a-f426b243548e.dat │ │ │ ├── 77058a27-9ed9-3577-ba3a-f426b243548e.dat_old │ │ │ ├── 94baa29a-be0d-3218-988c-acd14f7df952.dat │ │ │ ├── 94baa29a-be0d-3218-988c-acd14f7df952.dat_old │ │ │ ├── a2995085-e0ea-31fe-a01c-a4eefcac9f6b.dat │ │ │ ├── a2995085-e0ea-31fe-a01c-a4eefcac9f6b.dat_old │ │ │ ├── e5bad5ae-87fa-3676-b10f-8a571200822c.dat │ │ │ ├── edb8d6a3-e33d-3ebb-8b42-fbfd789b2d20.dat │ │ │ ├── fd848f75-c1a0-33b6-9d05-284593849e10.dat │ │ │ └── fd848f75-c1a0-33b6-9d05-284593849e10.dat_old │ │ │ ├── poi │ │ │ ├── r.-1.-1.mca │ │ │ ├── r.-1.0.mca │ │ │ ├── r.0.-1.mca │ │ │ └── r.0.0.mca │ │ │ ├── region │ │ │ ├── r.-1.-1.mca │ │ │ ├── r.-1.0.mca │ │ │ ├── r.0.-1.mca │ │ │ └── r.0.0.mca │ │ │ ├── session.lock │ │ │ └── stats │ │ │ ├── 0ef61a2a-d91b-37b4-a10d-af67b917d543.json │ │ │ ├── 1b5803ef-dab8-3673-85ae-9a9160028e1f.json │ │ │ ├── 317a8ad6-0e94-3efc-b65d-ee1610ecfadc.json │ │ │ ├── 352a2219-a032-396a-9556-4b75f1d6ec41.json │ │ │ ├── 3c7cef0c-c4d3-3eb2-a04d-c369cce398ef.json │ │ │ ├── 3e97bd98-3fed-36a5-a2b2-bf93d544eeed.json │ │ │ ├── 3f66a67c-db6c-36b7-b762-d7a40c17883b.json │ │ │ ├── 469ed5b0-d521-3c7e-a5b2-0fa0ad8523cf.json │ │ │ ├── 4ebb02a4-f60f-3bbd-8cd6-a4ac4ed3f510.json │ │ │ ├── 549b60df-91f3-34d3-a6e5-12d11bc37565.json │ │ │ ├── 54b70f4a-db80-304b-b6ee-afcd086c6623.json │ │ │ ├── 5bd62aa7-8886-32aa-953e-97bdbc2a6931.json │ │ │ ├── 5f452b45-a444-38e5-8393-5edeaa648813.json │ │ │ ├── 6b411cc5-cb23-3aef-b8b1-6cb73d96a2d5.json │ │ │ ├── 77058a27-9ed9-3577-ba3a-f426b243548e.json │ │ │ ├── 94baa29a-be0d-3218-988c-acd14f7df952.json │ │ │ ├── a2995085-e0ea-31fe-a01c-a4eefcac9f6b.json │ │ │ ├── e5bad5ae-87fa-3676-b10f-8a571200822c.json │ │ │ ├── edb8d6a3-e33d-3ebb-8b42-fbfd789b2d20.json │ │ │ └── fd848f75-c1a0-33b6-9d05-284593849e10.json │ │ └── usercache.json └── src │ └── main │ ├── java │ └── mod │ │ └── azure │ │ └── doom │ │ ├── ClientListener.java │ │ ├── FabricMCDoomMod.java │ │ ├── helper │ │ ├── DoomLoot.java │ │ ├── MobAttributes.java │ │ └── MobSpawn.java │ │ ├── platform │ │ ├── FabricCommonRegistry.java │ │ └── FabricPlatformHelper.java │ │ └── rei │ │ ├── DoomCategory.java │ │ ├── DoomDisplay.java │ │ └── ReiPlugin.java │ └── resources │ ├── META-INF │ └── services │ │ ├── mod.azure.doom.platform.services.CommonRegistry │ │ └── mod.azure.doom.platform.services.IPlatformHelper │ ├── doom.fabric.mixins.json │ └── fabric.mod.json ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── neoforge ├── build.gradle └── src │ └── main │ ├── java │ └── mod │ │ └── azure │ │ └── doom │ │ ├── ClientListener.java │ │ ├── NeoForgeMCDoomMod.java │ │ ├── platform │ │ ├── NeoForgeCommonRegistry.java │ │ └── NeoForgePlatformHelper.java │ │ └── rei │ │ ├── DoomCategory.java │ │ ├── DoomDisplay.java │ │ └── ReiPlugin.java │ └── resources │ ├── META-INF │ ├── accesstransformer.cfg │ ├── neoforge.mods.toml │ └── services │ │ ├── mod.azure.doom.platform.services.CommonRegistry │ │ └── mod.azure.doom.platform.services.IPlatformHelper │ └── doom.neoforge.mixins.json └── settings.gradle /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/.gitignore -------------------------------------------------------------------------------- /CC-BY-NC-4.0-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/CC-BY-NC-4.0-LICENSE.txt -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/changelog.md -------------------------------------------------------------------------------- /common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/build.gradle -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/MCDoom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/MCDoom.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/blocks/ArgentBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/blocks/ArgentBlock.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/blocks/ArgentLampBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/blocks/ArgentLampBlock.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/blocks/BarrelBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/blocks/BarrelBlock.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/blocks/DoomSandBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/blocks/DoomSandBlock.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/blocks/DoomWallBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/blocks/DoomWallBlock.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/blocks/E1M1StairsBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/blocks/E1M1StairsBlock.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/blocks/E1M1TurnableBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/blocks/E1M1TurnableBlock.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/blocks/GunTableBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/blocks/GunTableBlock.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/blocks/ImplementedInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/blocks/ImplementedInventory.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/blocks/JumppadBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/blocks/JumppadBlock.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/blocks/TotemBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/blocks/TotemBlock.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/client/DoomKeyBinds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/client/DoomKeyBinds.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/client/gui/GunTableScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/client/gui/GunTableScreen.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/config/DoomConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/config/DoomConfig.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/entities/DemonEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/entities/DemonEntity.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/entities/ai/DemonFlyControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/entities/ai/DemonFlyControl.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/entities/tierboss/DoomBoss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/entities/tierboss/DoomBoss.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/helper/CommonUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/helper/CommonUtils.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/helper/PlayerProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/helper/PlayerProperties.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/UnopenedItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/UnopenedItem.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/ammo/AmmoItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/ammo/AmmoItem.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/armor/DoomArmor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/armor/DoomArmor.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/enums/AmmoEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/enums/AmmoEnum.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/enums/ArmorTypeEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/enums/ArmorTypeEnum.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/enums/GunTypeEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/enums/GunTypeEnum.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/enums/MeleeWeaponEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/enums/MeleeWeaponEnum.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/powerup/DaisyItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/powerup/DaisyItem.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/powerup/SoulCubeItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/powerup/SoulCubeItem.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/tools/ArgentAxe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/tools/ArgentAxe.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/tools/ArgentHoe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/tools/ArgentHoe.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/tools/ArgentPaxel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/tools/ArgentPaxel.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/tools/ArgentPickaxe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/tools/ArgentPickaxe.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/tools/ArgentShovel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/tools/ArgentShovel.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/weapons/ArgentSword.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/weapons/ArgentSword.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/weapons/BaseSwordItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/weapons/BaseSwordItem.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/weapons/DoomBaseItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/weapons/DoomBaseItem.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/items/weapons/GrenadeItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/items/weapons/GrenadeItem.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/mixins/IngredientAccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/mixins/IngredientAccess.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/mixins/LivingEntityMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/mixins/LivingEntityMixin.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/mixins/PlayerEntityMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/mixins/PlayerEntityMixin.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/mixins/VillagerMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/mixins/VillagerMixin.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/mixins/WeaponRenderingMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/mixins/WeaponRenderingMixin.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/network/CraftingPacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/network/CraftingPacket.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/network/FiringPacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/network/FiringPacket.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/network/HookPacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/network/HookPacket.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/network/PacketHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/network/PacketHandler.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/network/ReloadMeleePacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/network/ReloadMeleePacket.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/network/ReloadPacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/network/ReloadPacket.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/particles/DoomParticleType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/particles/DoomParticleType.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/particles/PlasmaParticle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/particles/PlasmaParticle.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/platform/Services.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/platform/Services.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/recipes/GunRecipes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/recipes/GunRecipes.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/recipes/GunTableRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/recipes/GunTableRecipe.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/registry/DoomBlocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/registry/DoomBlocks.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/registry/DoomItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/registry/DoomItems.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/registry/DoomMobs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/registry/DoomMobs.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/registry/DoomParticles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/registry/DoomParticles.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/registry/DoomRecipes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/registry/DoomRecipes.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/registry/DoomScreens.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/registry/DoomScreens.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/registry/DoomSounds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/registry/DoomSounds.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/registry/DoomTabs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/registry/DoomTabs.java -------------------------------------------------------------------------------- /common/src/main/java/mod/azure/doom/registry/DoomTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/java/mod/azure/doom/registry/DoomTags.java -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/animations/bfg.animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/animations/bfg.animation.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/animations/icon.animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/animations/icon.animation.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/animations/imp_animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/animations/imp_animation.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/animations/pain_animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/animations/pain_animation.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/argent_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/argent_block.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/barrel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/barrel.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/doom_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/doom_sand.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block1.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block10.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block11.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block12.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block13.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block14.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block15.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block16.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block17.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block18.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block19.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block2.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block20.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block21.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block22.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block23.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block24.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block25.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block26.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block27.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block28.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block29.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block3.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block4.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block5.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block6.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block7.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block8.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/e1m1_block9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/e1m1_block9.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/gun_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/gun_table.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/icon_wall1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/icon_wall1.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/icon_wall10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/icon_wall10.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/icon_wall11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/icon_wall11.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/icon_wall12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/icon_wall12.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/icon_wall13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/icon_wall13.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/icon_wall14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/icon_wall14.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/icon_wall15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/icon_wall15.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/icon_wall16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/icon_wall16.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/icon_wall2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/icon_wall2.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/icon_wall3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/icon_wall3.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/icon_wall4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/icon_wall4.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/icon_wall5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/icon_wall5.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/icon_wall6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/icon_wall6.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/icon_wall7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/icon_wall7.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/icon_wall8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/icon_wall8.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/icon_wall9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/icon_wall9.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/jump_pad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/jump_pad.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/lightblock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/lightblock.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/blockstates/totem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/blockstates/totem.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/arachnotron.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/arachnotron.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/arachnotron64.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/arachnotron64.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/archmaykr_1.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/archmaykr_1.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/archmaykr_2.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/archmaykr_2.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/archvile.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/archvile.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/archvileeternal.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/archvileeternal.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/archvilefiring.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/archvilefiring.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/ballista.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/ballista.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/baron.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/baron.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/baron2016.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/baron2016.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/bfg9000.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/bfg9000.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/bfg_ball.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/bfg_ball.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/bfgeternal.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/bfgeternal.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/bloodbolt.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/bloodbolt.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/bloodmaykr.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/bloodmaykr.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/bullet.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/bullet.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/cacodemon.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/cacodemon.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/cacodemon64.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/cacodemon64.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/cacodemoneternal.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/cacodemoneternal.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/carcass.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/carcass.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/chainblade.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/chainblade.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/chaingun.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/chaingun.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/chaingunner.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/chaingunner.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/chainsaw.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/chainsaw.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/chainsaw64.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/chainsaw64.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/chainsaw_eternal.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/chainsaw_eternal.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/classicarmor.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/classicarmor.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/cruciblesword.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/cruciblesword.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/cueball.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/cueball.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/cultistarmor.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/cultistarmor.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/cyberdemon.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/cyberdemon.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/cyberdemon2016.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/cyberdemon2016.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/darklordarmor.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/darklordarmor.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/darklordcrucible.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/darklordcrucible.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/doom1armor.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/doom1armor.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/doomarmor.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/doomarmor.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/doomed_grenade.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/doomed_grenade.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/doomed_shotgun.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/doomed_shotgun.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/doomhunter.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/doomhunter.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/doomicornarmor.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/doomicornarmor.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/dreadknight.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/dreadknight.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/e1m1_door4.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/e1m1_door4.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/gargoyleimp.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/gargoyleimp.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/gladiator.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/gladiator.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/gladiator_mace.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/gladiator_mace.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/gorenest.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/gorenest.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/gun_table.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/gun_table.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/heavycannon.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/heavycannon.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/hellknight.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/hellknight.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/hellknight2016.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/hellknight2016.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/hook.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/hook.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/icon.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/icon.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/imp.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/imp.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/imp2016.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/imp2016.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/lostsoul.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/lostsoul.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/lostsoul64.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/lostsoul64.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/lostsouleternal.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/lostsouleternal.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/mancubus.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/mancubus.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/mancubus2016.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/mancubus2016.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/mancubus64.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/mancubus64.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/marauder.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/marauder.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/marauderaxe.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/marauderaxe.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/maykrarmor.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/maykrarmor.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/maykrdrone.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/maykrdrone.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/mechazombie.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/mechazombie.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/motherdemon.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/motherdemon.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/mulletarmor.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/mulletarmor.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/nightmareimp.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/nightmareimp.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/pain.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/pain.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/pain64.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/pain64.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/paineternal.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/paineternal.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/painterarmor.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/painterarmor.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/pinky.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/pinky.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/pinky2016.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/pinky2016.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/pistol.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/pistol.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/plasmagun.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/plasmagun.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/possessedengineer.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/possessedengineer.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/possessedsoldier.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/possessedsoldier.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/possessedworker.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/possessedworker.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/prowler.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/prowler.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/revenant.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/revenant.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/rocket.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/rocket.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/rocketlauncher.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/rocketlauncher.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/santaarmor.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/santaarmor.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/screecher.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/screecher.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/sentinelarmor.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/sentinelarmor.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/sentinelhammer.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/sentinelhammer.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/shell.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/shell.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/shotgun.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/shotgun.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/shotgunzombie.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/shotgunzombie.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/smallprojectile.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/smallprojectile.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/spidermastermind.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/spidermastermind.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/summoner.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/summoner.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/supershotgun.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/supershotgun.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/tentacle.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/tentacle.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/totem.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/totem.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/turret.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/turret.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/tyrant.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/tyrant.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/unmaykr.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/unmaykr.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/unwilling.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/unwilling.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/whiplash.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/whiplash.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/geo/zombiearmor.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/geo/zombiearmor.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/lang/en_us.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/lang/es_ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/lang/es_ar.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/lang/es_cl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/lang/es_cl.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/lang/es_ec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/lang/es_ec.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/lang/es_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/lang/es_es.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/lang/es_mx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/lang/es_mx.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/lang/es_uy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/lang/es_uy.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/lang/es_ve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/lang/es_ve.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/lang/zh_cn.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/argent_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/argent_block.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/barrel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/barrel.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/doom_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/doom_sand.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block1.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block10.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block11.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block12.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block13.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block14.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block15.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block16.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block17.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block18.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block19.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block2.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block20.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block21.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block22.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block23.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block24.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block25.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block26.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block27.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block28.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block29.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block3.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block4.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block5.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block6.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block7.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block8.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/e1m1_block9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/e1m1_block9.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/gun_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/gun_table.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/icon_wall1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/icon_wall1.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/icon_wall10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/icon_wall10.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/icon_wall11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/icon_wall11.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/icon_wall12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/icon_wall12.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/icon_wall13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/icon_wall13.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/icon_wall14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/icon_wall14.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/icon_wall15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/icon_wall15.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/icon_wall16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/icon_wall16.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/icon_wall2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/icon_wall2.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/icon_wall3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/icon_wall3.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/icon_wall4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/icon_wall4.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/icon_wall5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/icon_wall5.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/icon_wall6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/icon_wall6.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/icon_wall7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/icon_wall7.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/icon_wall8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/icon_wall8.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/icon_wall9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/icon_wall9.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/jump_pad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/jump_pad.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/lightblock.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/block/totem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/block/totem.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/arachnotron_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/arachnotroneternal_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/arch_maykr_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/archvile_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/archvileeternal_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/argent_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/argent_axe.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/argent_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/argent_block.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/argent_bolt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/argent_bolt.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/argent_energy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/argent_energy.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/argent_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/argent_hoe.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/argent_paxel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/argent_paxel.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/argent_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/argent_plate.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/argent_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/argent_shovel.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/argent_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/argent_sword.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/armoredbaron_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/ballista.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/ballista.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/barenblast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/barenblast.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/baron2016_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/baron_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/baroneternal_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/barrel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/barrel" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/bfg9000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/bfg9000.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/bfg_cell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/bfg_cell.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/bfg_eternal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/bfg_eternal.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/blood_maykr_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/book_doom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/book_doom.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/box_of_shells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/box_of_shells.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/bullets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/bullets.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/cacodemon_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/carcass_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/chaingun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/chaingun.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/chaingunner_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/chainsaw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/chainsaw.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/chainsaw64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/chainsaw64.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/cruciblesword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/cruciblesword.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/cueball_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/cyberdemon2016_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/cyberdemon_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/daisy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/daisy.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/doom_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/doom_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/doom_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/doom_helmet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/doom_hunter_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/doom_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/doom_leggings.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/doom_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/doom_sand.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/doomblade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/doomblade.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/doomed_gauss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/doomed_gauss.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/dreadknight_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/e1m1_block1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/e1m1_block1.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/e1m1_block10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/e1m1_block10.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/e1m1_block11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/e1m1_block11.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/firebronebaron_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/gargoyle_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/gas_barrel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/gas_barrel.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/gladiator_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/gorenest_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/gun_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/gun_table" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/hellknight2016_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/hellknight_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/icon_icon.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_of_sin_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_wall1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/icon_wall1" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_wall10.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/icon_wall10" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_wall11.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/icon_wall11" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_wall12.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/icon_wall12" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_wall13.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/icon_wall13" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_wall14.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/icon_wall14" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_wall15.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/icon_wall15" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_wall16.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/icon_wall16" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_wall2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/icon_wall2" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_wall3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/icon_wall3" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_wall4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/icon_wall4" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_wall5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/icon_wall5" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_wall6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/icon_wall6" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_wall7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/icon_wall7" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_wall8.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/icon_wall8" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/icon_wall9.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/icon_wall9" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/imp2016_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/imp_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/jump_pad.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/jump_pad" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/khan_maykr_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/lost_soul_eternal_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/lost_soul_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/mancubus_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/marauder_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/maykr_drone_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/mechazombie_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/megasphere.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/megasphere.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/motherdemon_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/nightmare_imp_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/pain_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/pinky2016_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/pinky_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/pistol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/pistol.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/plasmagun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/plasmagun.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/possessed_scientist_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/possessed_soldier_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/possessed_worker_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/prowler_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/revenant2016_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/revenant_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/rocket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/rocket.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/shotgun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/shotgun.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/shotgunguy_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/soulcube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/soulcube.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/spectre_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/spidermastermind2016_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/spidermastermind_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/stoneimp_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/summoner_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/tentacle_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/totem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "doom:block/totem" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/turret_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/tyrant_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/unmaker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/unmaker.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/unmaykr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/models/item/unmaykr.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/unwilling_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/whiplash_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/models/item/zombieman_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/template_spawn_egg" 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/particles/pistol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/particles/pistol.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/particles/plasma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/particles/plasma.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/particles/unmaykr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/particles/unmaykr.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/arachnotron_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/arachnotron_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/arachnotron_idle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/arachnotron_idle.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/arch_vile_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/arch_vile_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/arch_vile_hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/arch_vile_hit.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/arch_vile_idle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/arch_vile_idle.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/arch_vile_portal.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/arch_vile_portal.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/arch_vile_scream.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/arch_vile_scream.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/arch_vile_stare.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/arch_vile_stare.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/ballista_firing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/ballista_firing.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/baron_angry.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/baron_angry.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/baron_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/baron_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/baron_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/baron_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/baron_say.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/baron_say.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/bfg_firing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/bfg_firing.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/bfg_hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/bfg_hit.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/cacodemon_charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/cacodemon_charge.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/cacodemon_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/cacodemon_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/cacodemon_hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/cacodemon_hit.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/cacodemon_moan.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/cacodemon_moan.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/cacodemon_scream.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/cacodemon_scream.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/chaingun_fire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/chaingun_fire.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/chainsaw_idle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/chainsaw_idle.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/clipreload.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/clipreload.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/crucible_hammer.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/crucible_hammer.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/crucible_left.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/crucible_left.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/crucible_right.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/crucible_right.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/crucible_stab.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/crucible_stab.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/cyberdemon_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/cyberdemon_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/cyberdemon_hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/cyberdemon_hit.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/cyberdemon_throw.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/cyberdemon_throw.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/cyberdemon_walk.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/cyberdemon_walk.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/doomhunter_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/doomhunter_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/doomhunter_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/doomhunter_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/e1m1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/e1m1.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/emptyclip.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/emptyclip.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/gargolye_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/gargolye_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/gargolye_hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/gargolye_hit.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/gargolye_idle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/gargolye_idle.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/heavy_cannon.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/heavy_cannon.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/hellknight_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/hellknight_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/hellknight_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/hellknight_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/hellknight_say.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/hellknight_say.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/icon_ambient.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/icon_ambient.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/icon_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/icon_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/icon_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/icon_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/imp_ambient.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/imp_ambient.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/imp_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/imp_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/imp_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/imp_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/imp_step.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/imp_step.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/loading_end.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/loading_end.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/lost_soul_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/lost_soul_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/lost_soul_say.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/lost_soul_say.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/mancubus_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/mancubus_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/mancubus_hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/mancubus_hit.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/mancubus_say.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/mancubus_say.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/mancubus_walk.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/mancubus_walk.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/maykr_ambient.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/maykr_ambient.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/maykr_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/maykr_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/maykr_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/maykr_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/mecha_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/mecha_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/mecha_hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/mecha_hit.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/mecha_idle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/mecha_idle.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/microwave.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/microwave.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/mother_ambient.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/mother_ambient.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/mother_attack.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/mother_attack.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/mother_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/mother_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/mother_pain.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/mother_pain.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/pain_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/pain_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/pain_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/pain_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/pain_say.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/pain_say.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/pinky_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/pinky_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/pinky_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/pinky_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/pinky_idle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/pinky_idle.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/pinky_step.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/pinky_step.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/pinky_yell.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/pinky_yell.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/pistol_fire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/pistol_fire.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/plasmafire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/plasmafire.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/plasmahit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/plasmahit.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/psoldier_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/psoldier_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/psoldier_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/psoldier_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/psoldier_idle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/psoldier_idle.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/quick1_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/quick1_1.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/revenant_attack.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/revenant_attack.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/revenant_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/revenant_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/revenant_doot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/revenant_doot.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/revenant_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/revenant_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/revenant_say.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/revenant_say.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/rocketfire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/rocketfire.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/rockethit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/rockethit.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/shoot1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/shoot1.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/shotgun_fire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/shotgun_fire.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/shotgunreload.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/shotgunreload.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/spiderdemon_say.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/spiderdemon_say.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/spiderdemon_step.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/spiderdemon_step.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/unmakyr_fire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/unmakyr_fire.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/whiplash_ambient.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/whiplash_ambient.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/whiplash_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/whiplash_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/whiplash_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/whiplash_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/zombieman_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/zombieman_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/zombieman_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/zombieman_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/sounds/zombieman_idle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/sounds/zombieman_idle.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/block/bigdoor4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/block/bigdoor4.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/block/compblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/block/compblue.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/block/compspan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/block/compspan.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/block/flat3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/block/flat3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/block/lite3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/block/lite3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/block/nukage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/block/nukage.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/block/nuke24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/block/nuke24.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/block/tlite6_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/block/tlite6_4.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/block/tlite6_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/block/tlite6_5.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/block/totem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/block/totem.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/entity/carcass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/entity/carcass.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/entity/chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/entity/chain.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/entity/cueball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/entity/cueball.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/entity/imp-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/entity/imp-64.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/entity/imp2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/entity/imp2016.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/entity/prowler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/entity/prowler.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/entity/turret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/entity/turret.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/entity/tyrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/entity/tyrant.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/7251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/7251.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/8890.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/8890.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/9051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/9051.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/ballista.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/ballista.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/bfg9000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/bfg9000.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/bfg_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/bfg_cell.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/botd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/botd.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/chains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/chains.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/chainsaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/chainsaw.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/clip.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/crucible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/crucible.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/e1m1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/e1m1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/empty.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/icon_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/icon_icon.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/pistol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/pistol.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/plasma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/plasma.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/rabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/rabbit.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/rifle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/rifle.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/rocket.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/sdfghj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/sdfghj.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/shell.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/shell_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/shell_box.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/shotgun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/shotgun.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/soulcube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/soulcube.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/unmaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/unmaker.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/doom/textures/item/unmaykr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/assets/doom/textures/item/unmaykr.png -------------------------------------------------------------------------------- /common/src/main/resources/data/accessories/tags/item/belt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/accessories/tags/item/belt.json -------------------------------------------------------------------------------- /common/src/main/resources/data/accessories/tags/item/charm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/accessories/tags/item/charm.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/advancements/argent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/advancements/argent.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/advancements/hell_church.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/advancements/hell_church.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/advancements/icon_fight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/advancements/icon_fight.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/advancements/kill_icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/advancements/kill_icon.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/advancements/summon_icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/advancements/summon_icon.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/dimension/doom_hell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/dimension/doom_hell.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/dimension_type/doom_hell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/dimension_type/doom_hell.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/loot_tables/blocks/totem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/loot_tables/blocks/totem.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/loot_tables/entities/imp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/loot_tables/entities/imp.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/argent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/argent.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/argent_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/argent_axe.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/argent_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/argent_block.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/argent_bolt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/argent_bolt.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/argent_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/argent_hoe.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/argent_lamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/argent_lamp.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/argent_paxel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/argent_paxel.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/argent_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/argent_pickaxe.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/argent_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/argent_plate.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/argent_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/argent_shovel.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/argent_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/argent_sword.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/astro_doom_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/astro_doom_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/astro_doom_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/astro_doom_helmet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/axe_crucible_open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/axe_crucible_open.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/ballista.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/ballista.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/barrel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/barrel.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/bfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/bfg.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/bfg_cells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/bfg_cells.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/bfg_eternal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/bfg_eternal.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/bronze_doom_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/bronze_doom_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/bullets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/bullets.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/chaingun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/chaingun.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/chaingun_bullets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/chaingun_bullets.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/chainsaw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/chainsaw.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/chainsaw64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/chainsaw64.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/chainsaweternal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/chainsaweternal.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/cruciblesword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/cruciblesword.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/darklord_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/darklord_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/darklord_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/darklord_helmet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/darklord_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/darklord_leggings.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/darklordcrucible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/darklordcrucible.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/doom_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/doom_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/doom_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/doom_chestplate.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/doom_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/doom_helmet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/doom_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/doom_leggings.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/doomed_gauss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/doomed_gauss.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/doomed_grenade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/doomed_grenade.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/doomed_shotgun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/doomed_shotgun.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/ember_doom_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/ember_doom_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/ember_doom_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/ember_doom_helmet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/energy_cells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/energy_cells.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/gas_barrel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/gas_barrel.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/gold_doom_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/gold_doom_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/gold_doom_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/gold_doom_helmet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/gun_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/gun_table.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/heavycannon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/heavycannon.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/hotrod_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/hotrod_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/hotrod_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/hotrod_chestplate.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/hotrod_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/hotrod_helmet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/hotrod_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/hotrod_leggings.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/icon_wall1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/icon_wall1.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/icon_wall10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/icon_wall10.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/icon_wall11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/icon_wall11.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/icon_wall12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/icon_wall12.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/icon_wall13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/icon_wall13.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/icon_wall14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/icon_wall14.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/icon_wall15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/icon_wall15.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/icon_wall16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/icon_wall16.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/icon_wall2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/icon_wall2.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/icon_wall3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/icon_wall3.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/icon_wall4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/icon_wall4.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/icon_wall5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/icon_wall5.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/icon_wall6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/icon_wall6.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/icon_wall7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/icon_wall7.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/icon_wall8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/icon_wall8.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/icon_wall9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/icon_wall9.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/jump_pad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/jump_pad.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/maykr_doom_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/maykr_doom_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/maykr_doom_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/maykr_doom_helmet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/painter_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/painter_helmet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/phobos_doom_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/phobos_doom_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/pistol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/pistol.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/plasmagun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/plasmagun.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/rocket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/rocket.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/rocketlauncher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/rocketlauncher.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/santa_doom_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/santa_doom_helmet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/sentinelhammer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/sentinelhammer.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/shotgun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/shotgun.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/shotgun_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/shotgun_shell.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/supershotgun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/supershotgun.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/twenty_five_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/twenty_five_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/unmaker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/unmaker.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/unmaykr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/unmaykr.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/unmaykr_bolt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/unmaykr_bolt.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/recipe/zombie_doom_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/recipe/zombie_doom_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/structures/archmaykr1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/structures/archmaykr1.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/structures/archmaykr2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/structures/archmaykr2.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/structures/archmaykr3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/structures/archmaykr3.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/structures/archmaykr4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/structures/archmaykr4.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/structures/hell_church.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/structures/hell_church.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/structures/icon_fight.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/structures/icon_fight.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/structures/motherdemon1a.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/structures/motherdemon1a.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/structures/motherdemon2a.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/structures/motherdemon2a.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/structures/motherdemon3a.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/structures/motherdemon3a.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/structures/motherdemon4a.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/structures/motherdemon4a.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/tags/block/icon_break.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/tags/block/icon_break.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/tags/block/paxel_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/tags/block/paxel_blocks.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/tags/item/glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/tags/item/glass.json -------------------------------------------------------------------------------- /common/src/main/resources/data/doom/worldgen/biome/doom_hell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/data/doom/worldgen/biome/doom_hell.json -------------------------------------------------------------------------------- /common/src/main/resources/doom.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/doom.accesswidener -------------------------------------------------------------------------------- /common/src/main/resources/doom.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/doom.mixins.json -------------------------------------------------------------------------------- /common/src/main/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/icon.png -------------------------------------------------------------------------------- /common/src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/common/src/main/resources/pack.mcmeta -------------------------------------------------------------------------------- /fabric/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/build.gradle -------------------------------------------------------------------------------- /fabric/runs/client/backups/2024-09-16_07-24-55_New World.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/backups/2024-09-16_07-24-55_New World.zip -------------------------------------------------------------------------------- /fabric/runs/client/command_history.txt: -------------------------------------------------------------------------------- 1 | /kill @e[type= !minecraft:player] 2 | -------------------------------------------------------------------------------- /fabric/runs/client/config/accessories.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/config/accessories.json5 -------------------------------------------------------------------------------- /fabric/runs/client/config/azurelib.json: -------------------------------------------------------------------------------- 1 | { 2 | "useVanillaUseKey": true 3 | } -------------------------------------------------------------------------------- /fabric/runs/client/config/doom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/config/doom.json -------------------------------------------------------------------------------- /fabric/runs/client/config/fabric/indigo-renderer.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/config/fabric/indigo-renderer.properties -------------------------------------------------------------------------------- /fabric/runs/client/config/modmenu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/config/modmenu.json -------------------------------------------------------------------------------- /fabric/runs/client/config/roughlyenoughitems/collapsible.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/config/roughlyenoughitems/collapsible.json5 -------------------------------------------------------------------------------- /fabric/runs/client/config/roughlyenoughitems/config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/config/roughlyenoughitems/config.json5 -------------------------------------------------------------------------------- /fabric/runs/client/config/roughlyenoughitems/favorites.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/config/roughlyenoughitems/favorites.json5 -------------------------------------------------------------------------------- /fabric/runs/client/config/roughlyenoughitems/hints.json: -------------------------------------------------------------------------------- 1 | {"UUID":"1b5803ef-dab8-3673-85ae-9a9160028e1f","shownHints":[]} -------------------------------------------------------------------------------- /fabric/runs/client/config/roughlyenoughitems/pinyin.properties: -------------------------------------------------------------------------------- 1 | #Pinyin Options 2 | #Mon Sep 16 15:27:00 EDT 2024 3 | -------------------------------------------------------------------------------- /fabric/runs/client/config/roughlyenoughitems/pinyin_double.properties: -------------------------------------------------------------------------------- 1 | #Double Pinyin Options 2 | #Mon Sep 16 15:27:00 EDT 2024 3 | Converter=sougou 4 | -------------------------------------------------------------------------------- /fabric/runs/client/data/fabricDefaultResourcePacks.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/data/fabricDefaultResourcePacks.dat -------------------------------------------------------------------------------- /fabric/runs/client/downloads/log.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fabric/runs/client/options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/options.txt -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/DIM-1/data/raids.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/DIM-1/data/raids.dat -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/DIM1/data/raids_end.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/DIM1/data/raids_end.dat -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/data/AzureLib_id_cache.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/data/AzureLib_id_cache.dat -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/data/raids.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/data/raids.dat -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/data/random_sequences.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/data/random_sequences.dat -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/entities/r.-1.-1.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/entities/r.-1.-1.mca -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/entities/r.-1.0.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/entities/r.-1.0.mca -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/entities/r.0.-1.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/entities/r.0.-1.mca -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/entities/r.0.0.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/entities/r.0.0.mca -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/icon.png -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/level.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/level.dat -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/level.dat_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/level.dat_old -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/poi/r.-1.-1.mca: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/poi/r.-1.0.mca: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/poi/r.0.-1.mca: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/poi/r.0.0.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/poi/r.0.0.mca -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/region/r.-1.-1.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/region/r.-1.-1.mca -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/region/r.-1.0.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/region/r.-1.0.mca -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/region/r.0.-1.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/region/r.0.-1.mca -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/region/r.0.0.mca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/saves/New World/region/r.0.0.mca -------------------------------------------------------------------------------- /fabric/runs/client/saves/New World/session.lock: -------------------------------------------------------------------------------- 1 | ☃ -------------------------------------------------------------------------------- /fabric/runs/client/usercache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/runs/client/usercache.json -------------------------------------------------------------------------------- /fabric/src/main/java/mod/azure/doom/ClientListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/src/main/java/mod/azure/doom/ClientListener.java -------------------------------------------------------------------------------- /fabric/src/main/java/mod/azure/doom/FabricMCDoomMod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/src/main/java/mod/azure/doom/FabricMCDoomMod.java -------------------------------------------------------------------------------- /fabric/src/main/java/mod/azure/doom/helper/DoomLoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/src/main/java/mod/azure/doom/helper/DoomLoot.java -------------------------------------------------------------------------------- /fabric/src/main/java/mod/azure/doom/helper/MobAttributes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/src/main/java/mod/azure/doom/helper/MobAttributes.java -------------------------------------------------------------------------------- /fabric/src/main/java/mod/azure/doom/helper/MobSpawn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/src/main/java/mod/azure/doom/helper/MobSpawn.java -------------------------------------------------------------------------------- /fabric/src/main/java/mod/azure/doom/rei/DoomCategory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/src/main/java/mod/azure/doom/rei/DoomCategory.java -------------------------------------------------------------------------------- /fabric/src/main/java/mod/azure/doom/rei/DoomDisplay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/src/main/java/mod/azure/doom/rei/DoomDisplay.java -------------------------------------------------------------------------------- /fabric/src/main/java/mod/azure/doom/rei/ReiPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/src/main/java/mod/azure/doom/rei/ReiPlugin.java -------------------------------------------------------------------------------- /fabric/src/main/resources/META-INF/services/mod.azure.doom.platform.services.CommonRegistry: -------------------------------------------------------------------------------- 1 | mod.azure.doom.platform.FabricCommonRegistry -------------------------------------------------------------------------------- /fabric/src/main/resources/doom.fabric.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/src/main/resources/doom.fabric.mixins.json -------------------------------------------------------------------------------- /fabric/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/fabric/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/gradlew -------------------------------------------------------------------------------- /neoforge/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/neoforge/build.gradle -------------------------------------------------------------------------------- /neoforge/src/main/java/mod/azure/doom/ClientListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/neoforge/src/main/java/mod/azure/doom/ClientListener.java -------------------------------------------------------------------------------- /neoforge/src/main/java/mod/azure/doom/NeoForgeMCDoomMod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/neoforge/src/main/java/mod/azure/doom/NeoForgeMCDoomMod.java -------------------------------------------------------------------------------- /neoforge/src/main/java/mod/azure/doom/rei/DoomCategory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/neoforge/src/main/java/mod/azure/doom/rei/DoomCategory.java -------------------------------------------------------------------------------- /neoforge/src/main/java/mod/azure/doom/rei/DoomDisplay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/neoforge/src/main/java/mod/azure/doom/rei/DoomDisplay.java -------------------------------------------------------------------------------- /neoforge/src/main/java/mod/azure/doom/rei/ReiPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/neoforge/src/main/java/mod/azure/doom/rei/ReiPlugin.java -------------------------------------------------------------------------------- /neoforge/src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/neoforge/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /neoforge/src/main/resources/META-INF/neoforge.mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/neoforge/src/main/resources/META-INF/neoforge.mods.toml -------------------------------------------------------------------------------- /neoforge/src/main/resources/META-INF/services/mod.azure.doom.platform.services.CommonRegistry: -------------------------------------------------------------------------------- 1 | mod.azure.doom.platform.NeoForgeCommonRegistry -------------------------------------------------------------------------------- /neoforge/src/main/resources/doom.neoforge.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/neoforge/src/main/resources/doom.neoforge.mixins.json -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureDoom/MCDoom/HEAD/settings.gradle --------------------------------------------------------------------------------