├── .poggit.yml ├── LICENSE ├── README.md ├── icon.png ├── plugin.yml ├── resources └── config.yml └── src └── ipad54 └── netherblocks ├── Main.php ├── blocks ├── Basalt.php ├── Blackstone.php ├── ButtonBase.php ├── Campfire.php ├── Chain.php ├── ChiseledPolishedBlackstone.php ├── CryingObsidian.php ├── FloorSign.php ├── Fungus.php ├── GildedBlackstone.php ├── Hyphae.php ├── Lodestone.php ├── Log.php ├── NetherGoldOre.php ├── NetherSprouts.php ├── NetherWartBlock.php ├── Nylium.php ├── Planks.php ├── PolishedBasalt.php ├── PolishedBlackStone.php ├── PolishedBlackstoneButton.php ├── RespawnAnchor.php ├── Roots.php ├── Shroomlight.php ├── Slab.php ├── SoulCampfire.php ├── SoulFire.php ├── SoulLantern.php ├── SoulSoil.php ├── SoulTorch.php ├── Target.php ├── TwistingVines.php ├── WallSign.php ├── WarpedFungus.php ├── WarpedNylium.php ├── WarpedWartBlock.php ├── WeepingVines.php ├── Wood.php └── WoodenButton.php ├── items ├── FlintAndSteel.php ├── LodestoneCompass.php └── WarpedFungusOnAStick.php ├── listener └── EventListener.php ├── object └── NetherTree.php ├── sound ├── AnchorChargeSound.php ├── ItemFrameAddItemSound.php └── LodestoneCompassLinkSound.php ├── tile ├── Campfire.php └── Lodestone.php └── utils ├── CustomConfig.php └── CustomIds.php /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/icon.png -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/resources/config.yml -------------------------------------------------------------------------------- /src/ipad54/netherblocks/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/Main.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/Basalt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/Basalt.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/Blackstone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/Blackstone.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/ButtonBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/ButtonBase.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/Campfire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/Campfire.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/Chain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/Chain.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/ChiseledPolishedBlackstone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/ChiseledPolishedBlackstone.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/CryingObsidian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/CryingObsidian.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/FloorSign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/FloorSign.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/Fungus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/Fungus.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/GildedBlackstone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/GildedBlackstone.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/Hyphae.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/Hyphae.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/Lodestone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/Lodestone.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/Log.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/NetherGoldOre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/NetherGoldOre.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/NetherSprouts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/NetherSprouts.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/NetherWartBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/NetherWartBlock.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/Nylium.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/Nylium.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/Planks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/Planks.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/PolishedBasalt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/PolishedBasalt.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/PolishedBlackStone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/PolishedBlackStone.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/PolishedBlackstoneButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/PolishedBlackstoneButton.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/RespawnAnchor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/RespawnAnchor.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/Roots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/Roots.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/Shroomlight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/Shroomlight.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/Slab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/Slab.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/SoulCampfire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/SoulCampfire.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/SoulFire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/SoulFire.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/SoulLantern.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/SoulLantern.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/SoulSoil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/SoulSoil.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/SoulTorch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/SoulTorch.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/Target.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/Target.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/TwistingVines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/TwistingVines.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/WallSign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/WallSign.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/WarpedFungus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/WarpedFungus.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/WarpedNylium.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/WarpedNylium.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/WarpedWartBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/WarpedWartBlock.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/WeepingVines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/WeepingVines.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/Wood.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/Wood.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/blocks/WoodenButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/blocks/WoodenButton.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/items/FlintAndSteel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/items/FlintAndSteel.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/items/LodestoneCompass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/items/LodestoneCompass.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/items/WarpedFungusOnAStick.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/items/WarpedFungusOnAStick.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/listener/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/listener/EventListener.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/object/NetherTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/object/NetherTree.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/sound/AnchorChargeSound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/sound/AnchorChargeSound.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/sound/ItemFrameAddItemSound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/sound/ItemFrameAddItemSound.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/sound/LodestoneCompassLinkSound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/sound/LodestoneCompassLinkSound.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/tile/Campfire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/tile/Campfire.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/tile/Lodestone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/tile/Lodestone.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/utils/CustomConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/utils/CustomConfig.php -------------------------------------------------------------------------------- /src/ipad54/netherblocks/utils/CustomIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipad54/INether/HEAD/src/ipad54/netherblocks/utils/CustomIds.php --------------------------------------------------------------------------------