├── .gitattributes ├── .gitignore ├── .php-cs-fixer.php ├── .poggit.yml ├── LICENSE ├── README.md ├── composer.json ├── icon.png ├── plugin.yml ├── resources └── messages.yml └── src └── JavaGen ├── EventListener.php ├── JavaGen.php ├── commands └── LocateCommand.php ├── data ├── DataRegistry.php ├── MessageKey.php ├── Messages.php ├── lootTable │ ├── abandoned_mineshaft.json │ ├── ancient_city.json │ ├── ancient_city_ice_box.json │ ├── bastion_bridge.json │ ├── bastion_hoglin_stable.json │ ├── bastion_other.json │ ├── bastion_treasure.json │ ├── buried_treasure.json │ ├── desert_pyramid.json │ ├── end_city_treasure.json │ ├── igloo_chest.json │ ├── jungle_temple.json │ ├── jungle_temple_dispenser.json │ ├── monster_room.json │ ├── nether_bridge.json │ ├── pillager_outpost.json │ ├── ruined_portal.json │ ├── shipwreck_map.json │ ├── shipwreck_supply.json │ ├── shipwreck_treasure.json │ ├── simple_dungeon.json │ ├── spawn_bonus_chest.json │ ├── stronghold_corridor.json │ ├── stronghold_crossing.json │ ├── stronghold_library.json │ ├── underwater_ruin_big.json │ ├── underwater_ruin_small.json │ ├── village │ │ ├── village_armorer.json │ │ ├── village_butcher.json │ │ ├── village_cartographer.json │ │ ├── village_desert_house.json │ │ ├── village_fisher.json │ │ ├── village_fletcher.json │ │ ├── village_mason.json │ │ ├── village_plains_house.json │ │ ├── village_savanna_house.json │ │ ├── village_shepherd.json │ │ ├── village_snowy_house.json │ │ ├── village_taiga_house.json │ │ ├── village_tannery.json │ │ ├── village_temple.json │ │ ├── village_toolsmith.json │ │ └── village_weaponsmith.json │ ├── village_blacksmith.json │ ├── village_two_room_house.json │ └── woodland_mansion.json └── mappings.json ├── database └── ChunkDataStorage.php ├── event └── StructureGenerateEvent.php ├── generator ├── BaseJavaGenerator.php ├── EndGenerator.php ├── NetherGenerator.php └── OverworldGenerator.php ├── helper ├── Dimension.php ├── GeneratorNames.php ├── LegacyItemMetaIdMap.php ├── biome │ ├── BiomeIdentifierRegistry.php │ └── BiomePalette.php ├── block │ ├── BlockIdentifierRegistry.php │ ├── BlockPalette.php │ └── JavaToBedrockBlockData.php └── number │ ├── ExactNumber.php │ ├── Number.php │ └── RandomNumber.php ├── loot ├── LootPool.php ├── LootTable.php ├── LootTableIds.php ├── LootTableRegistry.php └── item │ ├── EnchantItemFunction.php │ ├── LootItem.php │ ├── LootItemFunction.php │ ├── SetCountFunction.php │ ├── SetDamageFunction.php │ ├── SetDataFunction.php │ └── SpecificEnchantFunction.php ├── stream └── JavaRequests.php ├── structure ├── Structure.php ├── StructureCategory.php ├── StructureManager.php └── StructureType.php ├── tasks ├── CheckConnectionTask.php ├── LocateObjectTask.php └── ProcessGenerationDataTask.php └── tile ├── JavaTile.php └── JavaTileMappings.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/composer.json -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/icon.png -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/messages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/resources/messages.yml -------------------------------------------------------------------------------- /src/JavaGen/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/EventListener.php -------------------------------------------------------------------------------- /src/JavaGen/JavaGen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/JavaGen.php -------------------------------------------------------------------------------- /src/JavaGen/commands/LocateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/commands/LocateCommand.php -------------------------------------------------------------------------------- /src/JavaGen/data/DataRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/DataRegistry.php -------------------------------------------------------------------------------- /src/JavaGen/data/MessageKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/MessageKey.php -------------------------------------------------------------------------------- /src/JavaGen/data/Messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/Messages.php -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/abandoned_mineshaft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/abandoned_mineshaft.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/ancient_city.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/ancient_city.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/ancient_city_ice_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/ancient_city_ice_box.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/bastion_bridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/bastion_bridge.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/bastion_hoglin_stable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/bastion_hoglin_stable.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/bastion_other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/bastion_other.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/bastion_treasure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/bastion_treasure.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/buried_treasure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/buried_treasure.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/desert_pyramid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/desert_pyramid.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/end_city_treasure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/end_city_treasure.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/igloo_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/igloo_chest.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/jungle_temple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/jungle_temple.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/jungle_temple_dispenser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/jungle_temple_dispenser.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/monster_room.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/monster_room.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/nether_bridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/nether_bridge.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/pillager_outpost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/pillager_outpost.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/ruined_portal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/ruined_portal.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/shipwreck_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/shipwreck_map.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/shipwreck_supply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/shipwreck_supply.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/shipwreck_treasure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/shipwreck_treasure.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/simple_dungeon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/simple_dungeon.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/spawn_bonus_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/spawn_bonus_chest.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/stronghold_corridor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/stronghold_corridor.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/stronghold_crossing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/stronghold_crossing.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/stronghold_library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/stronghold_library.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/underwater_ruin_big.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/underwater_ruin_big.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/underwater_ruin_small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/underwater_ruin_small.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village/village_armorer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village/village_armorer.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village/village_butcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village/village_butcher.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village/village_cartographer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village/village_cartographer.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village/village_desert_house.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village/village_desert_house.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village/village_fisher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village/village_fisher.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village/village_fletcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village/village_fletcher.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village/village_mason.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village/village_mason.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village/village_plains_house.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village/village_plains_house.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village/village_savanna_house.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village/village_savanna_house.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village/village_shepherd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village/village_shepherd.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village/village_snowy_house.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village/village_snowy_house.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village/village_taiga_house.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village/village_taiga_house.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village/village_tannery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village/village_tannery.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village/village_temple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village/village_temple.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village/village_toolsmith.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village/village_toolsmith.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village/village_weaponsmith.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village/village_weaponsmith.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village_blacksmith.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village_blacksmith.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/village_two_room_house.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/village_two_room_house.json -------------------------------------------------------------------------------- /src/JavaGen/data/lootTable/woodland_mansion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/lootTable/woodland_mansion.json -------------------------------------------------------------------------------- /src/JavaGen/data/mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/data/mappings.json -------------------------------------------------------------------------------- /src/JavaGen/database/ChunkDataStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/database/ChunkDataStorage.php -------------------------------------------------------------------------------- /src/JavaGen/event/StructureGenerateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/event/StructureGenerateEvent.php -------------------------------------------------------------------------------- /src/JavaGen/generator/BaseJavaGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/generator/BaseJavaGenerator.php -------------------------------------------------------------------------------- /src/JavaGen/generator/EndGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/generator/EndGenerator.php -------------------------------------------------------------------------------- /src/JavaGen/generator/NetherGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/generator/NetherGenerator.php -------------------------------------------------------------------------------- /src/JavaGen/generator/OverworldGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/generator/OverworldGenerator.php -------------------------------------------------------------------------------- /src/JavaGen/helper/Dimension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/helper/Dimension.php -------------------------------------------------------------------------------- /src/JavaGen/helper/GeneratorNames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/helper/GeneratorNames.php -------------------------------------------------------------------------------- /src/JavaGen/helper/LegacyItemMetaIdMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/helper/LegacyItemMetaIdMap.php -------------------------------------------------------------------------------- /src/JavaGen/helper/biome/BiomeIdentifierRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/helper/biome/BiomeIdentifierRegistry.php -------------------------------------------------------------------------------- /src/JavaGen/helper/biome/BiomePalette.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/helper/biome/BiomePalette.php -------------------------------------------------------------------------------- /src/JavaGen/helper/block/BlockIdentifierRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/helper/block/BlockIdentifierRegistry.php -------------------------------------------------------------------------------- /src/JavaGen/helper/block/BlockPalette.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/helper/block/BlockPalette.php -------------------------------------------------------------------------------- /src/JavaGen/helper/block/JavaToBedrockBlockData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/helper/block/JavaToBedrockBlockData.php -------------------------------------------------------------------------------- /src/JavaGen/helper/number/ExactNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/helper/number/ExactNumber.php -------------------------------------------------------------------------------- /src/JavaGen/helper/number/Number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/helper/number/Number.php -------------------------------------------------------------------------------- /src/JavaGen/helper/number/RandomNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/helper/number/RandomNumber.php -------------------------------------------------------------------------------- /src/JavaGen/loot/LootPool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/loot/LootPool.php -------------------------------------------------------------------------------- /src/JavaGen/loot/LootTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/loot/LootTable.php -------------------------------------------------------------------------------- /src/JavaGen/loot/LootTableIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/loot/LootTableIds.php -------------------------------------------------------------------------------- /src/JavaGen/loot/LootTableRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/loot/LootTableRegistry.php -------------------------------------------------------------------------------- /src/JavaGen/loot/item/EnchantItemFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/loot/item/EnchantItemFunction.php -------------------------------------------------------------------------------- /src/JavaGen/loot/item/LootItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/loot/item/LootItem.php -------------------------------------------------------------------------------- /src/JavaGen/loot/item/LootItemFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/loot/item/LootItemFunction.php -------------------------------------------------------------------------------- /src/JavaGen/loot/item/SetCountFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/loot/item/SetCountFunction.php -------------------------------------------------------------------------------- /src/JavaGen/loot/item/SetDamageFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/loot/item/SetDamageFunction.php -------------------------------------------------------------------------------- /src/JavaGen/loot/item/SetDataFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/loot/item/SetDataFunction.php -------------------------------------------------------------------------------- /src/JavaGen/loot/item/SpecificEnchantFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/loot/item/SpecificEnchantFunction.php -------------------------------------------------------------------------------- /src/JavaGen/stream/JavaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/stream/JavaRequests.php -------------------------------------------------------------------------------- /src/JavaGen/structure/Structure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/structure/Structure.php -------------------------------------------------------------------------------- /src/JavaGen/structure/StructureCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/structure/StructureCategory.php -------------------------------------------------------------------------------- /src/JavaGen/structure/StructureManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/structure/StructureManager.php -------------------------------------------------------------------------------- /src/JavaGen/structure/StructureType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/structure/StructureType.php -------------------------------------------------------------------------------- /src/JavaGen/tasks/CheckConnectionTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/tasks/CheckConnectionTask.php -------------------------------------------------------------------------------- /src/JavaGen/tasks/LocateObjectTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/tasks/LocateObjectTask.php -------------------------------------------------------------------------------- /src/JavaGen/tasks/ProcessGenerationDataTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/tasks/ProcessGenerationDataTask.php -------------------------------------------------------------------------------- /src/JavaGen/tile/JavaTile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/tile/JavaTile.php -------------------------------------------------------------------------------- /src/JavaGen/tile/JavaTileMappings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HimmelKreis4865/JavaGen/HEAD/src/JavaGen/tile/JavaTileMappings.php --------------------------------------------------------------------------------