├── .github └── ISSUE_TEMPLATE │ ├── bug-report.yaml │ └── config.yml ├── .gitignore ├── LICENSE ├── common ├── build.gradle └── src │ └── main │ ├── java │ └── samebutdifferent │ │ └── ecologics │ │ ├── Ecologics.java │ │ ├── block │ │ ├── AzaleaFlowerBlock.java │ │ ├── AzaleaLogBlock.java │ │ ├── CoconutBlock.java │ │ ├── CoconutLeavesBlock.java │ │ ├── CoconutSaplingBlock.java │ │ ├── FloweringAzaleaLogBlock.java │ │ ├── HangingCoconutBlock.java │ │ ├── ModStandingSignBlock.java │ │ ├── ModWallSignBlock.java │ │ ├── MossLayerBlock.java │ │ ├── PotBlock.java │ │ ├── PricklyPearBlock.java │ │ ├── SandcastleBlock.java │ │ ├── SeashellBlock.java │ │ ├── SurfaceMossBlock.java │ │ ├── ThinIceBlock.java │ │ ├── entity │ │ │ ├── ModSignBlockEntity.java │ │ │ └── PotBlockEntity.java │ │ ├── grower │ │ │ ├── CoconutTreeGrower.java │ │ │ ├── ModAzaleaTreeGrower.java │ │ │ ├── ModTreeGrower.java │ │ │ └── WalnutTreeGrower.java │ │ └── properties │ │ │ └── ModWoodType.java │ │ ├── client │ │ ├── EcologicsClient.java │ │ ├── model │ │ │ ├── CamelModel.java │ │ │ ├── CoconutCrabModel.java │ │ │ ├── PenguinModel.java │ │ │ └── SquirrelModel.java │ │ └── renderer │ │ │ └── entity │ │ │ ├── CamelRenderer.java │ │ │ ├── CoconutCrabRenderer.java │ │ │ ├── ModBoatRenderer.java │ │ │ ├── PenguinRenderer.java │ │ │ ├── SquirrelRenderer.java │ │ │ └── layers │ │ │ └── PenguinHeldItemLayer.java │ │ ├── effect │ │ └── SlipperyMobEffect.java │ │ ├── entity │ │ ├── Camel.java │ │ ├── CoconutCrab.java │ │ ├── ModBoat.java │ │ ├── ModChestBoat.java │ │ ├── Penguin.java │ │ ├── Squirrel.java │ │ └── ai │ │ │ └── navigation │ │ │ └── BetterWallClimberNavigation.java │ │ ├── item │ │ ├── CoconutSliceItem.java │ │ ├── ModBoatItem.java │ │ ├── PricklyPearItem.java │ │ └── SandcastleBlockItem.java │ │ ├── mixin │ │ ├── AzaleaTreeGrowerMixin.java │ │ ├── CamelMixin.java │ │ ├── CarpetBlockMixin.java │ │ └── LivingEntityMixin.java │ │ ├── platform │ │ ├── ClientPlatformHelper.java │ │ ├── CommonPlatformHelper.java │ │ └── ConfigPlatformHelper.java │ │ ├── registry │ │ ├── ModBlockEntityTypes.java │ │ ├── ModBlocks.java │ │ ├── ModEntityTypes.java │ │ ├── ModFeatures.java │ │ ├── ModFoliagePlacerTypes.java │ │ ├── ModItems.java │ │ ├── ModMobEffects.java │ │ ├── ModPotions.java │ │ ├── ModSoundEvents.java │ │ ├── ModTags.java │ │ └── ModTrunkPlacerTypes.java │ │ └── worldgen │ │ └── feature │ │ ├── CoastalFeature.java │ │ ├── DesertRuinFeature.java │ │ ├── ThinIceFeature.java │ │ ├── foliageplacers │ │ └── CoconutFoliagePlacer.java │ │ └── trunkplacers │ │ └── SlantedTrunkPlacer.java │ └── resources │ ├── architectury.common.json │ ├── assets │ ├── ecologics │ │ ├── blockstates │ │ │ ├── azalea_button.json │ │ │ ├── azalea_door.json │ │ │ ├── azalea_fence.json │ │ │ ├── azalea_fence_gate.json │ │ │ ├── azalea_flower.json │ │ │ ├── azalea_log.json │ │ │ ├── azalea_planks.json │ │ │ ├── azalea_pressure_plate.json │ │ │ ├── azalea_sign.json │ │ │ ├── azalea_slab.json │ │ │ ├── azalea_stairs.json │ │ │ ├── azalea_trapdoor.json │ │ │ ├── azalea_wall_sign.json │ │ │ ├── azalea_wood.json │ │ │ ├── coconut.json │ │ │ ├── coconut_button.json │ │ │ ├── coconut_door.json │ │ │ ├── coconut_fence.json │ │ │ ├── coconut_fence_gate.json │ │ │ ├── coconut_leaves.json │ │ │ ├── coconut_log.json │ │ │ ├── coconut_planks.json │ │ │ ├── coconut_pressure_plate.json │ │ │ ├── coconut_seedling.json │ │ │ ├── coconut_sign.json │ │ │ ├── coconut_slab.json │ │ │ ├── coconut_stairs.json │ │ │ ├── coconut_trapdoor.json │ │ │ ├── coconut_wall_sign.json │ │ │ ├── coconut_wood.json │ │ │ ├── flowering_azalea_door.json │ │ │ ├── flowering_azalea_fence.json │ │ │ ├── flowering_azalea_fence_gate.json │ │ │ ├── flowering_azalea_log.json │ │ │ ├── flowering_azalea_planks.json │ │ │ ├── flowering_azalea_sign.json │ │ │ ├── flowering_azalea_slab.json │ │ │ ├── flowering_azalea_stairs.json │ │ │ ├── flowering_azalea_trapdoor.json │ │ │ ├── flowering_azalea_wall_sign.json │ │ │ ├── flowering_azalea_wood.json │ │ │ ├── hanging_coconut.json │ │ │ ├── ice_brick_slab.json │ │ │ ├── ice_brick_stairs.json │ │ │ ├── ice_brick_wall.json │ │ │ ├── ice_bricks.json │ │ │ ├── moss_layer.json │ │ │ ├── pot.json │ │ │ ├── potted_azalea_flower.json │ │ │ ├── potted_coconut_seedling.json │ │ │ ├── potted_walnut_sapling.json │ │ │ ├── prickly_pear.json │ │ │ ├── sandcastle.json │ │ │ ├── seashell.json │ │ │ ├── seashell_block.json │ │ │ ├── seashell_tile_slab.json │ │ │ ├── seashell_tile_stairs.json │ │ │ ├── seashell_tile_wall.json │ │ │ ├── seashell_tiles.json │ │ │ ├── snow_brick_slab.json │ │ │ ├── snow_brick_stairs.json │ │ │ ├── snow_brick_wall.json │ │ │ ├── snow_bricks.json │ │ │ ├── stripped_azalea_log.json │ │ │ ├── stripped_azalea_wood.json │ │ │ ├── stripped_coconut_log.json │ │ │ ├── stripped_coconut_wood.json │ │ │ ├── stripped_walnut_log.json │ │ │ ├── stripped_walnut_wood.json │ │ │ ├── surface_moss.json │ │ │ ├── thin_ice.json │ │ │ ├── walnut_button.json │ │ │ ├── walnut_door.json │ │ │ ├── walnut_fence.json │ │ │ ├── walnut_fence_gate.json │ │ │ ├── walnut_leaves.json │ │ │ ├── walnut_log.json │ │ │ ├── walnut_planks.json │ │ │ ├── walnut_pressure_plate.json │ │ │ ├── walnut_sapling.json │ │ │ ├── walnut_sign.json │ │ │ ├── walnut_slab.json │ │ │ ├── walnut_stairs.json │ │ │ ├── walnut_trapdoor.json │ │ │ ├── walnut_wall_sign.json │ │ │ └── walnut_wood.json │ │ ├── lang │ │ │ ├── en_gb.json │ │ │ ├── en_us.json │ │ │ ├── es_es.json │ │ │ ├── fr_fr.json │ │ │ ├── it_it.json │ │ │ ├── ja_jp.json │ │ │ ├── ko_kr.json │ │ │ ├── ru_ru.json │ │ │ ├── sv_se.json │ │ │ ├── tr_tr.json │ │ │ ├── vi_vn.json │ │ │ ├── zh_cn.json │ │ │ └── zh_tw.json │ │ ├── models │ │ │ ├── block │ │ │ │ ├── azalea_button.json │ │ │ │ ├── azalea_button_inventory.json │ │ │ │ ├── azalea_button_pressed.json │ │ │ │ ├── azalea_door_bottom_left.json │ │ │ │ ├── azalea_door_bottom_left_open.json │ │ │ │ ├── azalea_door_bottom_right.json │ │ │ │ ├── azalea_door_bottom_right_open.json │ │ │ │ ├── azalea_door_top_left.json │ │ │ │ ├── azalea_door_top_left_open.json │ │ │ │ ├── azalea_door_top_right.json │ │ │ │ ├── azalea_door_top_right_open.json │ │ │ │ ├── azalea_fence_gate.json │ │ │ │ ├── azalea_fence_gate_open.json │ │ │ │ ├── azalea_fence_gate_wall.json │ │ │ │ ├── azalea_fence_gate_wall_open.json │ │ │ │ ├── azalea_fence_post.json │ │ │ │ ├── azalea_fence_side.json │ │ │ │ ├── azalea_flower.json │ │ │ │ ├── azalea_log.json │ │ │ │ ├── azalea_log_horizontal.json │ │ │ │ ├── azalea_planks.json │ │ │ │ ├── azalea_pressure_plate.json │ │ │ │ ├── azalea_pressure_plate_down.json │ │ │ │ ├── azalea_sign.json │ │ │ │ ├── azalea_slab.json │ │ │ │ ├── azalea_slab_top.json │ │ │ │ ├── azalea_stairs.json │ │ │ │ ├── azalea_stairs_inner.json │ │ │ │ ├── azalea_stairs_outer.json │ │ │ │ ├── azalea_trapdoor_bottom.json │ │ │ │ ├── azalea_trapdoor_open.json │ │ │ │ ├── azalea_trapdoor_top.json │ │ │ │ ├── azalea_wood.json │ │ │ │ ├── coconut.json │ │ │ │ ├── coconut_button.json │ │ │ │ ├── coconut_button_inventory.json │ │ │ │ ├── coconut_button_pressed.json │ │ │ │ ├── coconut_door_bottom_left.json │ │ │ │ ├── coconut_door_bottom_left_open.json │ │ │ │ ├── coconut_door_bottom_right.json │ │ │ │ ├── coconut_door_bottom_right_open.json │ │ │ │ ├── coconut_door_top_left.json │ │ │ │ ├── coconut_door_top_left_open.json │ │ │ │ ├── coconut_door_top_right.json │ │ │ │ ├── coconut_door_top_right_open.json │ │ │ │ ├── coconut_fence_gate.json │ │ │ │ ├── coconut_fence_gate_open.json │ │ │ │ ├── coconut_fence_gate_wall.json │ │ │ │ ├── coconut_fence_gate_wall_open.json │ │ │ │ ├── coconut_fence_post.json │ │ │ │ ├── coconut_fence_side.json │ │ │ │ ├── coconut_leaves.json │ │ │ │ ├── coconut_log.json │ │ │ │ ├── coconut_log_horizontal.json │ │ │ │ ├── coconut_planks.json │ │ │ │ ├── coconut_pressure_plate.json │ │ │ │ ├── coconut_pressure_plate_down.json │ │ │ │ ├── coconut_seedling.json │ │ │ │ ├── coconut_sign.json │ │ │ │ ├── coconut_slab.json │ │ │ │ ├── coconut_slab_top.json │ │ │ │ ├── coconut_stage0.json │ │ │ │ ├── coconut_stage1.json │ │ │ │ ├── coconut_stage2.json │ │ │ │ ├── coconut_stairs.json │ │ │ │ ├── coconut_stairs_inner.json │ │ │ │ ├── coconut_stairs_outer.json │ │ │ │ ├── coconut_trapdoor_bottom.json │ │ │ │ ├── coconut_trapdoor_open.json │ │ │ │ ├── coconut_trapdoor_top.json │ │ │ │ ├── coconut_wood.json │ │ │ │ ├── flowering_azalea_door_bottom_left.json │ │ │ │ ├── flowering_azalea_door_bottom_left_open.json │ │ │ │ ├── flowering_azalea_door_bottom_right.json │ │ │ │ ├── flowering_azalea_door_bottom_right_open.json │ │ │ │ ├── flowering_azalea_door_top_left.json │ │ │ │ ├── flowering_azalea_door_top_left_open.json │ │ │ │ ├── flowering_azalea_door_top_right.json │ │ │ │ ├── flowering_azalea_door_top_right_open.json │ │ │ │ ├── flowering_azalea_fence_gate.json │ │ │ │ ├── flowering_azalea_fence_gate_open.json │ │ │ │ ├── flowering_azalea_fence_gate_wall.json │ │ │ │ ├── flowering_azalea_fence_gate_wall_open.json │ │ │ │ ├── flowering_azalea_fence_post.json │ │ │ │ ├── flowering_azalea_fence_side.json │ │ │ │ ├── flowering_azalea_log.json │ │ │ │ ├── flowering_azalea_log_horizontal.json │ │ │ │ ├── flowering_azalea_planks.json │ │ │ │ ├── flowering_azalea_sign.json │ │ │ │ ├── flowering_azalea_slab.json │ │ │ │ ├── flowering_azalea_slab_top.json │ │ │ │ ├── flowering_azalea_stairs.json │ │ │ │ ├── flowering_azalea_stairs_inner.json │ │ │ │ ├── flowering_azalea_stairs_outer.json │ │ │ │ ├── flowering_azalea_trapdoor_bottom.json │ │ │ │ ├── flowering_azalea_trapdoor_open.json │ │ │ │ ├── flowering_azalea_trapdoor_top.json │ │ │ │ ├── flowering_azalea_wood.json │ │ │ │ ├── ice_brick_slab.json │ │ │ │ ├── ice_brick_slab_top.json │ │ │ │ ├── ice_brick_stairs.json │ │ │ │ ├── ice_brick_stairs_inner.json │ │ │ │ ├── ice_brick_stairs_outer.json │ │ │ │ ├── ice_brick_wall_inventory.json │ │ │ │ ├── ice_brick_wall_post.json │ │ │ │ ├── ice_brick_wall_side.json │ │ │ │ ├── ice_brick_wall_side_tall.json │ │ │ │ ├── ice_bricks.json │ │ │ │ ├── moss_layer_height10.json │ │ │ │ ├── moss_layer_height12.json │ │ │ │ ├── moss_layer_height14.json │ │ │ │ ├── moss_layer_height2.json │ │ │ │ ├── moss_layer_height4.json │ │ │ │ ├── moss_layer_height6.json │ │ │ │ ├── moss_layer_height8.json │ │ │ │ ├── pot.json │ │ │ │ ├── pot_chiseled_1.json │ │ │ │ ├── pot_chiseled_2.json │ │ │ │ ├── pot_chiseled_3.json │ │ │ │ ├── pot_chiseled_4.json │ │ │ │ ├── pot_chiseled_5.json │ │ │ │ ├── potted_azalea_flower.json │ │ │ │ ├── potted_coconut_seedling.json │ │ │ │ ├── potted_walnut_sapling.json │ │ │ │ ├── prickly_pear_stage0.json │ │ │ │ ├── prickly_pear_stage1.json │ │ │ │ ├── prickly_pear_stage2.json │ │ │ │ ├── prickly_pear_stage3.json │ │ │ │ ├── sandcastle.json │ │ │ │ ├── seashell.json │ │ │ │ ├── seashell_block.json │ │ │ │ ├── seashell_tile_slab.json │ │ │ │ ├── seashell_tile_slab_top.json │ │ │ │ ├── seashell_tile_stairs.json │ │ │ │ ├── seashell_tile_stairs_inner.json │ │ │ │ ├── seashell_tile_stairs_outer.json │ │ │ │ ├── seashell_tile_wall_inventory.json │ │ │ │ ├── seashell_tile_wall_post.json │ │ │ │ ├── seashell_tile_wall_side.json │ │ │ │ ├── seashell_tile_wall_side_tall.json │ │ │ │ ├── seashell_tiles.json │ │ │ │ ├── snow_brick_slab.json │ │ │ │ ├── snow_brick_slab_top.json │ │ │ │ ├── snow_brick_stairs.json │ │ │ │ ├── snow_brick_stairs_inner.json │ │ │ │ ├── snow_brick_stairs_outer.json │ │ │ │ ├── snow_brick_wall_inventory.json │ │ │ │ ├── snow_brick_wall_post.json │ │ │ │ ├── snow_brick_wall_side.json │ │ │ │ ├── snow_brick_wall_side_tall.json │ │ │ │ ├── snow_bricks.json │ │ │ │ ├── stripped_azalea_log.json │ │ │ │ ├── stripped_azalea_log_horizontal.json │ │ │ │ ├── stripped_azalea_wood.json │ │ │ │ ├── stripped_coconut_log.json │ │ │ │ ├── stripped_coconut_log_horizontal.json │ │ │ │ ├── stripped_coconut_wood.json │ │ │ │ ├── stripped_walnut_log.json │ │ │ │ ├── stripped_walnut_log_horizontal.json │ │ │ │ ├── stripped_walnut_wood.json │ │ │ │ ├── surface_moss_1.json │ │ │ │ ├── surface_moss_2.json │ │ │ │ ├── surface_moss_3.json │ │ │ │ ├── template_pot.json │ │ │ │ ├── thin_ice_0.json │ │ │ │ ├── thin_ice_1.json │ │ │ │ ├── thin_ice_2.json │ │ │ │ ├── thin_ice_3.json │ │ │ │ ├── walnut_button.json │ │ │ │ ├── walnut_button_inventory.json │ │ │ │ ├── walnut_button_pressed.json │ │ │ │ ├── walnut_door_bottom_left.json │ │ │ │ ├── walnut_door_bottom_left_open.json │ │ │ │ ├── walnut_door_bottom_right.json │ │ │ │ ├── walnut_door_bottom_right_open.json │ │ │ │ ├── walnut_door_top_left.json │ │ │ │ ├── walnut_door_top_left_open.json │ │ │ │ ├── walnut_door_top_right.json │ │ │ │ ├── walnut_door_top_right_open.json │ │ │ │ ├── walnut_fence_gate.json │ │ │ │ ├── walnut_fence_gate_open.json │ │ │ │ ├── walnut_fence_gate_wall.json │ │ │ │ ├── walnut_fence_gate_wall_open.json │ │ │ │ ├── walnut_fence_post.json │ │ │ │ ├── walnut_fence_side.json │ │ │ │ ├── walnut_leaves.json │ │ │ │ ├── walnut_log.json │ │ │ │ ├── walnut_log_horizontal.json │ │ │ │ ├── walnut_planks.json │ │ │ │ ├── walnut_pressure_plate.json │ │ │ │ ├── walnut_pressure_plate_down.json │ │ │ │ ├── walnut_sapling.json │ │ │ │ ├── walnut_sign.json │ │ │ │ ├── walnut_slab.json │ │ │ │ ├── walnut_slab_top.json │ │ │ │ ├── walnut_stairs.json │ │ │ │ ├── walnut_stairs_inner.json │ │ │ │ ├── walnut_stairs_outer.json │ │ │ │ ├── walnut_trapdoor_bottom.json │ │ │ │ ├── walnut_trapdoor_open.json │ │ │ │ ├── walnut_trapdoor_top.json │ │ │ │ └── walnut_wood.json │ │ │ └── item │ │ │ │ ├── azalea_boat.json │ │ │ │ ├── azalea_button.json │ │ │ │ ├── azalea_chest_boat.json │ │ │ │ ├── azalea_door.json │ │ │ │ ├── azalea_fence.json │ │ │ │ ├── azalea_fence_gate.json │ │ │ │ ├── azalea_flower.json │ │ │ │ ├── azalea_log.json │ │ │ │ ├── azalea_planks.json │ │ │ │ ├── azalea_pressure_plate.json │ │ │ │ ├── azalea_sign.json │ │ │ │ ├── azalea_slab.json │ │ │ │ ├── azalea_stairs.json │ │ │ │ ├── azalea_trapdoor.json │ │ │ │ ├── azalea_wood.json │ │ │ │ ├── camel_spawn_egg.json │ │ │ │ ├── coconut.json │ │ │ │ ├── coconut_boat.json │ │ │ │ ├── coconut_button.json │ │ │ │ ├── coconut_chest_boat.json │ │ │ │ ├── coconut_crab_spawn_egg.json │ │ │ │ ├── coconut_door.json │ │ │ │ ├── coconut_fence.json │ │ │ │ ├── coconut_fence_gate.json │ │ │ │ ├── coconut_husk.json │ │ │ │ ├── coconut_leaves.json │ │ │ │ ├── coconut_log.json │ │ │ │ ├── coconut_planks.json │ │ │ │ ├── coconut_pressure_plate.json │ │ │ │ ├── coconut_seedling.json │ │ │ │ ├── coconut_sign.json │ │ │ │ ├── coconut_slab.json │ │ │ │ ├── coconut_slice.json │ │ │ │ ├── coconut_stairs.json │ │ │ │ ├── coconut_trapdoor.json │ │ │ │ ├── coconut_wood.json │ │ │ │ ├── cooked_prickly_pear.json │ │ │ │ ├── crab_claw.json │ │ │ │ ├── crab_meat.json │ │ │ │ ├── flowering_azalea_boat.json │ │ │ │ ├── flowering_azalea_chest_boat.json │ │ │ │ ├── flowering_azalea_door.json │ │ │ │ ├── flowering_azalea_fence.json │ │ │ │ ├── flowering_azalea_fence_gate.json │ │ │ │ ├── flowering_azalea_log.json │ │ │ │ ├── flowering_azalea_planks.json │ │ │ │ ├── flowering_azalea_sign.json │ │ │ │ ├── flowering_azalea_slab.json │ │ │ │ ├── flowering_azalea_stairs.json │ │ │ │ ├── flowering_azalea_trapdoor.json │ │ │ │ ├── flowering_azalea_wood.json │ │ │ │ ├── ice_brick_slab.json │ │ │ │ ├── ice_brick_stairs.json │ │ │ │ ├── ice_brick_wall.json │ │ │ │ ├── ice_bricks.json │ │ │ │ ├── moss_layer.json │ │ │ │ ├── music_disc_coconut.json │ │ │ │ ├── penguin_feather.json │ │ │ │ ├── penguin_spawn_egg.json │ │ │ │ ├── pot.json │ │ │ │ ├── prickly_pear.json │ │ │ │ ├── sandcastle.json │ │ │ │ ├── seashell.json │ │ │ │ ├── seashell_block.json │ │ │ │ ├── seashell_tile_slab.json │ │ │ │ ├── seashell_tile_stairs.json │ │ │ │ ├── seashell_tile_wall.json │ │ │ │ ├── seashell_tiles.json │ │ │ │ ├── snow_brick_slab.json │ │ │ │ ├── snow_brick_stairs.json │ │ │ │ ├── snow_brick_wall.json │ │ │ │ ├── snow_bricks.json │ │ │ │ ├── squirrel_spawn_egg.json │ │ │ │ ├── stripped_azalea_log.json │ │ │ │ ├── stripped_azalea_wood.json │ │ │ │ ├── stripped_coconut_log.json │ │ │ │ ├── stripped_coconut_wood.json │ │ │ │ ├── stripped_walnut_log.json │ │ │ │ ├── stripped_walnut_wood.json │ │ │ │ ├── surface_moss.json │ │ │ │ ├── thin_ice.json │ │ │ │ ├── tropical_stew.json │ │ │ │ ├── walnut.json │ │ │ │ ├── walnut_boat.json │ │ │ │ ├── walnut_button.json │ │ │ │ ├── walnut_chest_boat.json │ │ │ │ ├── walnut_door.json │ │ │ │ ├── walnut_fence.json │ │ │ │ ├── walnut_fence_gate.json │ │ │ │ ├── walnut_leaves.json │ │ │ │ ├── walnut_log.json │ │ │ │ ├── walnut_planks.json │ │ │ │ ├── walnut_pressure_plate.json │ │ │ │ ├── walnut_sapling.json │ │ │ │ ├── walnut_sign.json │ │ │ │ ├── walnut_slab.json │ │ │ │ ├── walnut_slice.json │ │ │ │ ├── walnut_stairs.json │ │ │ │ ├── walnut_trapdoor.json │ │ │ │ └── walnut_wood.json │ │ ├── sounds.json │ │ ├── sounds │ │ │ ├── coconut_crab_ambient.ogg │ │ │ ├── coconut_crab_death.ogg │ │ │ ├── coconut_crab_hurt.ogg │ │ │ ├── coconut_smash.ogg │ │ │ ├── music_disc_coconut.ogg │ │ │ ├── penguin_ambient1.ogg │ │ │ ├── penguin_ambient2.ogg │ │ │ ├── penguin_death.ogg │ │ │ ├── penguin_hurt.ogg │ │ │ ├── squirrel_ambient.ogg │ │ │ ├── squirrel_death.ogg │ │ │ └── squirrel_hurt.ogg │ │ └── textures │ │ │ ├── block │ │ │ ├── azalea_door_bottom.png │ │ │ ├── azalea_door_top.png │ │ │ ├── azalea_flower.png │ │ │ ├── azalea_log.png │ │ │ ├── azalea_log_top.png │ │ │ ├── azalea_planks.png │ │ │ ├── azalea_trapdoor.png │ │ │ ├── coconut_door_bottom.png │ │ │ ├── coconut_door_top.png │ │ │ ├── coconut_leaves.png │ │ │ ├── coconut_log.png │ │ │ ├── coconut_log_top.png │ │ │ ├── coconut_planks.png │ │ │ ├── coconut_seedling.png │ │ │ ├── coconut_stage0.png │ │ │ ├── coconut_stage1.png │ │ │ ├── coconut_stage2.png │ │ │ ├── coconut_trapdoor.png │ │ │ ├── flowering_azalea_door_bottom.png │ │ │ ├── flowering_azalea_door_top.png │ │ │ ├── flowering_azalea_log.png │ │ │ ├── flowering_azalea_log_top.png │ │ │ ├── flowering_azalea_planks.png │ │ │ ├── flowering_azalea_trapdoor.png │ │ │ ├── ice_bricks.png │ │ │ ├── pot.png │ │ │ ├── pot_chiseled_1.png │ │ │ ├── pot_chiseled_2.png │ │ │ ├── pot_chiseled_3.png │ │ │ ├── pot_chiseled_4.png │ │ │ ├── pot_chiseled_5.png │ │ │ ├── prickly_pear_stage0.png │ │ │ ├── prickly_pear_stage1.png │ │ │ ├── prickly_pear_stage2.png │ │ │ ├── prickly_pear_stage3.png │ │ │ ├── sandcastle.png │ │ │ ├── seashell.png │ │ │ ├── seashell_block.png │ │ │ ├── seashell_tiles.png │ │ │ ├── snow_bricks.png │ │ │ ├── stripped_azalea_log.png │ │ │ ├── stripped_azalea_log_top.png │ │ │ ├── stripped_coconut_log.png │ │ │ ├── stripped_coconut_log_top.png │ │ │ ├── stripped_walnut_log.png │ │ │ ├── stripped_walnut_log_top.png │ │ │ ├── surface_moss_1.png │ │ │ ├── surface_moss_2.png │ │ │ ├── surface_moss_3.png │ │ │ ├── thin_ice_0.png │ │ │ ├── thin_ice_1.png │ │ │ ├── thin_ice_2.png │ │ │ ├── thin_ice_3.png │ │ │ ├── walnut_door_bottom.png │ │ │ ├── walnut_door_top.png │ │ │ ├── walnut_leaves.png │ │ │ ├── walnut_log.png │ │ │ ├── walnut_log_top.png │ │ │ ├── walnut_planks.png │ │ │ ├── walnut_sapling.png │ │ │ └── walnut_trapdoor.png │ │ │ ├── entity │ │ │ ├── baby_penguin.png │ │ │ ├── boat │ │ │ │ ├── azalea.png │ │ │ │ ├── coconut.png │ │ │ │ ├── flowering_azalea.png │ │ │ │ └── walnut.png │ │ │ ├── camel.png │ │ │ ├── chest │ │ │ │ ├── azalea │ │ │ │ │ ├── azalea.png │ │ │ │ │ ├── azalea_left.png │ │ │ │ │ ├── azalea_right.png │ │ │ │ │ ├── azalea_trapped.png │ │ │ │ │ ├── azalea_trapped_left.png │ │ │ │ │ └── azalea_trapped_right.png │ │ │ │ ├── coconut │ │ │ │ │ ├── coconut.png │ │ │ │ │ ├── coconut_left.png │ │ │ │ │ ├── coconut_right.png │ │ │ │ │ ├── coconut_trapped.png │ │ │ │ │ ├── coconut_trapped_left.png │ │ │ │ │ └── coconut_trapped_right.png │ │ │ │ ├── flowering_azalea │ │ │ │ │ ├── flowering_azalea.png │ │ │ │ │ ├── flowering_azalea_left.png │ │ │ │ │ ├── flowering_azalea_right.png │ │ │ │ │ ├── flowering_azalea_trapped.png │ │ │ │ │ ├── flowering_azalea_trapped_left.png │ │ │ │ │ └── flowering_azalea_trapped_right.png │ │ │ │ └── walnut │ │ │ │ │ ├── walnut.png │ │ │ │ │ ├── walnut_left.png │ │ │ │ │ ├── walnut_right.png │ │ │ │ │ ├── walnut_trapped.png │ │ │ │ │ ├── walnut_trapped_left.png │ │ │ │ │ └── walnut_trapped_right.png │ │ │ ├── chest_boat │ │ │ │ ├── azalea.png │ │ │ │ ├── coconut.png │ │ │ │ ├── flowering_azalea.png │ │ │ │ └── walnut.png │ │ │ ├── coconut_crab.png │ │ │ ├── penguin.png │ │ │ ├── signs │ │ │ │ ├── azalea.png │ │ │ │ ├── coconut.png │ │ │ │ ├── flowering_azalea.png │ │ │ │ └── walnut.png │ │ │ └── squirrel.png │ │ │ ├── item │ │ │ ├── azalea_boat.png │ │ │ ├── azalea_chest_boat.png │ │ │ ├── azalea_door.png │ │ │ ├── azalea_sign.png │ │ │ ├── coconut_boat.png │ │ │ ├── coconut_chest_boat.png │ │ │ ├── coconut_door.png │ │ │ ├── coconut_husk.png │ │ │ ├── coconut_seedling.png │ │ │ ├── coconut_sign.png │ │ │ ├── coconut_slice.png │ │ │ ├── cooked_prickly_pear.png │ │ │ ├── crab_claw.png │ │ │ ├── crab_meat.png │ │ │ ├── flowering_azalea_boat.png │ │ │ ├── flowering_azalea_chest_boat.png │ │ │ ├── flowering_azalea_door.png │ │ │ ├── flowering_azalea_sign.png │ │ │ ├── moss.png │ │ │ ├── music_disc_coconut.png │ │ │ ├── penguin_feather.png │ │ │ ├── prickly_pear.png │ │ │ ├── sandcastle.png │ │ │ ├── seashell.png │ │ │ ├── tropical_stew.png │ │ │ ├── walnut.png │ │ │ ├── walnut_boat.png │ │ │ ├── walnut_chest_boat.png │ │ │ ├── walnut_door.png │ │ │ └── walnut_sign.png │ │ │ └── mob_effect │ │ │ └── slippery.png │ └── minecraft │ │ └── textures │ │ └── entity │ │ └── signs │ │ ├── azalea.png │ │ ├── coconut.png │ │ ├── flowering_azalea.png │ │ └── walnut.png │ ├── data │ ├── ecologics │ │ ├── advancements │ │ │ ├── husbandry │ │ │ │ ├── breed_penguin.json │ │ │ │ └── sandcastle.json │ │ │ └── recipes │ │ │ │ ├── decorations │ │ │ │ └── moss_block.json │ │ │ │ ├── ecologics │ │ │ │ ├── azalea_boat.json │ │ │ │ ├── azalea_button.json │ │ │ │ ├── azalea_chest_boat.json │ │ │ │ ├── azalea_door.json │ │ │ │ ├── azalea_fence.json │ │ │ │ ├── azalea_fence_gate.json │ │ │ │ ├── azalea_planks.json │ │ │ │ ├── azalea_pressure_plate.json │ │ │ │ ├── azalea_sign.json │ │ │ │ ├── azalea_slab.json │ │ │ │ ├── azalea_stairs.json │ │ │ │ ├── azalea_trapdoor.json │ │ │ │ ├── azalea_wood.json │ │ │ │ ├── coconut_boat.json │ │ │ │ ├── coconut_button.json │ │ │ │ ├── coconut_chest_boat.json │ │ │ │ ├── coconut_door.json │ │ │ │ ├── coconut_fence.json │ │ │ │ ├── coconut_fence_gate.json │ │ │ │ ├── coconut_planks.json │ │ │ │ ├── coconut_pressure_plate.json │ │ │ │ ├── coconut_sign.json │ │ │ │ ├── coconut_slab.json │ │ │ │ ├── coconut_stairs.json │ │ │ │ ├── coconut_trapdoor.json │ │ │ │ ├── coconut_wood.json │ │ │ │ ├── cooked_prickly_pear.json │ │ │ │ ├── cooked_prickly_pear_from_campfire_cooking.json │ │ │ │ ├── cooked_prickly_pear_from_smoking.json │ │ │ │ ├── crab_meat.json │ │ │ │ ├── crab_meat_from_campfire_cooking.json │ │ │ │ ├── crab_meat_from_smoking.json │ │ │ │ ├── flowering_azalea_boat.json │ │ │ │ ├── flowering_azalea_chest_boat.json │ │ │ │ ├── flowering_azalea_door.json │ │ │ │ ├── flowering_azalea_fence.json │ │ │ │ ├── flowering_azalea_fence_gate.json │ │ │ │ ├── flowering_azalea_planks.json │ │ │ │ ├── flowering_azalea_sign.json │ │ │ │ ├── flowering_azalea_slab.json │ │ │ │ ├── flowering_azalea_stairs.json │ │ │ │ ├── flowering_azalea_trapdoor.json │ │ │ │ ├── flowering_azalea_wood.json │ │ │ │ ├── ice_brick_slab.json │ │ │ │ ├── ice_brick_slab_from_ice_bricks_stonecutting.json │ │ │ │ ├── ice_brick_stairs.json │ │ │ │ ├── ice_brick_stairs_from_ice_bricks_stonecutting.json │ │ │ │ ├── ice_brick_wall.json │ │ │ │ ├── ice_brick_wall_from_ice_bricks_stonecutting.json │ │ │ │ ├── ice_bricks.json │ │ │ │ ├── pot.json │ │ │ │ ├── sandcastle.json │ │ │ │ ├── seashell.json │ │ │ │ ├── seashell_block.json │ │ │ │ ├── seashell_tile_slab.json │ │ │ │ ├── seashell_tile_slab_from_seashell_tiles_stonecutting.json │ │ │ │ ├── seashell_tile_stairs.json │ │ │ │ ├── seashell_tile_stairs_from_seashell_tiles_stonecutting.json │ │ │ │ ├── seashell_tile_wall.json │ │ │ │ ├── seashell_tile_wall_from_seashell_tiles_stonecutting.json │ │ │ │ ├── seashell_tiles.json │ │ │ │ ├── snow_brick_slab.json │ │ │ │ ├── snow_brick_slab_from_snow_bricks_stonecutting.json │ │ │ │ ├── snow_brick_stairs.json │ │ │ │ ├── snow_brick_stairs_from_snow_bricks_stonecutting.json │ │ │ │ ├── snow_brick_wall.json │ │ │ │ ├── snow_brick_wall_from_snow_bricks_stonecutting.json │ │ │ │ ├── snow_bricks.json │ │ │ │ ├── stripped_azalea_wood.json │ │ │ │ ├── stripped_coconut_wood.json │ │ │ │ ├── stripped_walnut_wood.json │ │ │ │ ├── surface_moss.json │ │ │ │ ├── tropical_stew.json │ │ │ │ ├── walnut_boat.json │ │ │ │ ├── walnut_button.json │ │ │ │ ├── walnut_chest_boat.json │ │ │ │ ├── walnut_door.json │ │ │ │ ├── walnut_fence.json │ │ │ │ ├── walnut_fence_gate.json │ │ │ │ ├── walnut_planks.json │ │ │ │ ├── walnut_pressure_plate.json │ │ │ │ ├── walnut_sign.json │ │ │ │ ├── walnut_slab.json │ │ │ │ ├── walnut_stairs.json │ │ │ │ ├── walnut_trapdoor.json │ │ │ │ └── walnut_wood.json │ │ │ │ └── food │ │ │ │ ├── beetroot_soup_from_coconut_husk.json │ │ │ │ ├── mushroom_stew_from_coconut_husk.json │ │ │ │ ├── rabbit_stew_from_brown_mushroom_and_coconut_husk.json │ │ │ │ └── rabbit_stew_from_red_mushroom_and_coconut_husk.json │ │ ├── loot_tables │ │ │ ├── blocks │ │ │ │ ├── azalea_button.json │ │ │ │ ├── azalea_door.json │ │ │ │ ├── azalea_fence.json │ │ │ │ ├── azalea_fence_gate.json │ │ │ │ ├── azalea_flower.json │ │ │ │ ├── azalea_log.json │ │ │ │ ├── azalea_planks.json │ │ │ │ ├── azalea_pressure_plate.json │ │ │ │ ├── azalea_sign.json │ │ │ │ ├── azalea_slab.json │ │ │ │ ├── azalea_stairs.json │ │ │ │ ├── azalea_trapdoor.json │ │ │ │ ├── azalea_wood.json │ │ │ │ ├── coconut.json │ │ │ │ ├── coconut_button.json │ │ │ │ ├── coconut_door.json │ │ │ │ ├── coconut_fence.json │ │ │ │ ├── coconut_fence_gate.json │ │ │ │ ├── coconut_log.json │ │ │ │ ├── coconut_planks.json │ │ │ │ ├── coconut_pressure_plate.json │ │ │ │ ├── coconut_seedling.json │ │ │ │ ├── coconut_sign.json │ │ │ │ ├── coconut_slab.json │ │ │ │ ├── coconut_stairs.json │ │ │ │ ├── coconut_trapdoor.json │ │ │ │ ├── coconut_wood.json │ │ │ │ ├── flowering_azalea_door.json │ │ │ │ ├── flowering_azalea_fence.json │ │ │ │ ├── flowering_azalea_fence_gate.json │ │ │ │ ├── flowering_azalea_log.json │ │ │ │ ├── flowering_azalea_planks.json │ │ │ │ ├── flowering_azalea_sign.json │ │ │ │ ├── flowering_azalea_slab.json │ │ │ │ ├── flowering_azalea_stairs.json │ │ │ │ ├── flowering_azalea_trapdoor.json │ │ │ │ ├── flowering_azalea_wood.json │ │ │ │ ├── hanging_coconut.json │ │ │ │ ├── ice_brick_slab.json │ │ │ │ ├── ice_brick_stairs.json │ │ │ │ ├── ice_brick_wall.json │ │ │ │ ├── ice_bricks.json │ │ │ │ ├── moss_layer.json │ │ │ │ ├── pot.json │ │ │ │ ├── potted_azalea_flower.json │ │ │ │ ├── potted_coconut_seedling.json │ │ │ │ ├── potted_walnut_sapling.json │ │ │ │ ├── prickly_pear.json │ │ │ │ ├── sandcastle.json │ │ │ │ ├── seashell.json │ │ │ │ ├── seashell_block.json │ │ │ │ ├── seashell_tile_slab.json │ │ │ │ ├── seashell_tile_stairs.json │ │ │ │ ├── seashell_tile_wall.json │ │ │ │ ├── seashell_tiles.json │ │ │ │ ├── snow_brick_slab.json │ │ │ │ ├── snow_brick_stairs.json │ │ │ │ ├── snow_brick_wall.json │ │ │ │ ├── snow_bricks.json │ │ │ │ ├── stripped_azalea_log.json │ │ │ │ ├── stripped_azalea_wood.json │ │ │ │ ├── stripped_coconut_log.json │ │ │ │ ├── stripped_coconut_wood.json │ │ │ │ ├── stripped_walnut_log.json │ │ │ │ ├── stripped_walnut_wood.json │ │ │ │ ├── thin_ice.json │ │ │ │ ├── walnut_button.json │ │ │ │ ├── walnut_door.json │ │ │ │ ├── walnut_fence.json │ │ │ │ ├── walnut_fence_gate.json │ │ │ │ ├── walnut_log.json │ │ │ │ ├── walnut_planks.json │ │ │ │ ├── walnut_pressure_plate.json │ │ │ │ ├── walnut_sapling.json │ │ │ │ ├── walnut_sign.json │ │ │ │ ├── walnut_slab.json │ │ │ │ ├── walnut_stairs.json │ │ │ │ ├── walnut_trapdoor.json │ │ │ │ └── walnut_wood.json │ │ │ └── entities │ │ │ │ ├── camel.json │ │ │ │ └── coconut_crab.json │ │ ├── recipes │ │ │ ├── azalea_boat.json │ │ │ ├── azalea_button.json │ │ │ ├── azalea_chest_boat.json │ │ │ ├── azalea_door.json │ │ │ ├── azalea_fence.json │ │ │ ├── azalea_fence_gate.json │ │ │ ├── azalea_planks.json │ │ │ ├── azalea_pressure_plate.json │ │ │ ├── azalea_sign.json │ │ │ ├── azalea_slab.json │ │ │ ├── azalea_stairs.json │ │ │ ├── azalea_trapdoor.json │ │ │ ├── azalea_wood.json │ │ │ ├── beetroot_soup_from_coconut_husk.json │ │ │ ├── coconut_boat.json │ │ │ ├── coconut_button.json │ │ │ ├── coconut_chest_boat.json │ │ │ ├── coconut_door.json │ │ │ ├── coconut_fence.json │ │ │ ├── coconut_fence_gate.json │ │ │ ├── coconut_planks.json │ │ │ ├── coconut_pressure_plate.json │ │ │ ├── coconut_sign.json │ │ │ ├── coconut_slab.json │ │ │ ├── coconut_stairs.json │ │ │ ├── coconut_trapdoor.json │ │ │ ├── coconut_wood.json │ │ │ ├── cooked_prickly_pear.json │ │ │ ├── cooked_prickly_pear_from_campfire_cooking.json │ │ │ ├── cooked_prickly_pear_from_smoking.json │ │ │ ├── crab_meat.json │ │ │ ├── crab_meat_from_campfire_cooking.json │ │ │ ├── crab_meat_from_smoking.json │ │ │ ├── flowering_azalea_boat.json │ │ │ ├── flowering_azalea_chest_boat.json │ │ │ ├── flowering_azalea_door.json │ │ │ ├── flowering_azalea_fence.json │ │ │ ├── flowering_azalea_fence_gate.json │ │ │ ├── flowering_azalea_planks.json │ │ │ ├── flowering_azalea_sign.json │ │ │ ├── flowering_azalea_slab.json │ │ │ ├── flowering_azalea_stairs.json │ │ │ ├── flowering_azalea_trapdoor.json │ │ │ ├── flowering_azalea_wood.json │ │ │ ├── ice_brick_slab.json │ │ │ ├── ice_brick_slab_from_ice_bricks_stonecutting.json │ │ │ ├── ice_brick_stairs.json │ │ │ ├── ice_brick_stairs_from_ice_bricks_stonecutting.json │ │ │ ├── ice_brick_wall.json │ │ │ ├── ice_brick_wall_from_ice_bricks_stonecutting.json │ │ │ ├── ice_bricks.json │ │ │ ├── moss_block.json │ │ │ ├── mushroom_stew_from_coconut_husk.json │ │ │ ├── pot.json │ │ │ ├── rabbit_stew_from_brown_mushroom_and_coconut_husk.json │ │ │ ├── rabbit_stew_from_red_mushroom_and_coconut_husk.json │ │ │ ├── sandcastle.json │ │ │ ├── seashell.json │ │ │ ├── seashell_block.json │ │ │ ├── seashell_tile_slab.json │ │ │ ├── seashell_tile_slab_from_seashell_tiles_stonecutting.json │ │ │ ├── seashell_tile_stairs.json │ │ │ ├── seashell_tile_stairs_from_seashell_tiles_stonecutting.json │ │ │ ├── seashell_tile_wall.json │ │ │ ├── seashell_tile_wall_from_seashell_tiles_stonecutting.json │ │ │ ├── seashell_tiles.json │ │ │ ├── snow_brick_slab.json │ │ │ ├── snow_brick_slab_from_snow_bricks_stonecutting.json │ │ │ ├── snow_brick_stairs.json │ │ │ ├── snow_brick_stairs_from_snow_bricks_stonecutting.json │ │ │ ├── snow_brick_wall.json │ │ │ ├── snow_brick_wall_from_snow_bricks_stonecutting.json │ │ │ ├── snow_bricks.json │ │ │ ├── stripped_azalea_wood.json │ │ │ ├── stripped_coconut_wood.json │ │ │ ├── stripped_walnut_wood.json │ │ │ ├── surface_moss.json │ │ │ ├── tropical_stew.json │ │ │ ├── walnut_boat.json │ │ │ ├── walnut_button.json │ │ │ ├── walnut_chest_boat.json │ │ │ ├── walnut_door.json │ │ │ ├── walnut_fence.json │ │ │ ├── walnut_fence_gate.json │ │ │ ├── walnut_planks.json │ │ │ ├── walnut_pressure_plate.json │ │ │ ├── walnut_sign.json │ │ │ ├── walnut_slab.json │ │ │ ├── walnut_stairs.json │ │ │ ├── walnut_trapdoor.json │ │ │ └── walnut_wood.json │ │ ├── structures │ │ │ └── desert_ruin │ │ │ │ ├── chest_house.nbt │ │ │ │ ├── pillars1.nbt │ │ │ │ ├── pillars2.nbt │ │ │ │ ├── pit.nbt │ │ │ │ ├── wall1.nbt │ │ │ │ └── wall2.nbt │ │ ├── tags │ │ │ ├── blocks │ │ │ │ ├── azalea_logs.json │ │ │ │ ├── coconut_logs.json │ │ │ │ ├── flowering_azalea_logs.json │ │ │ │ ├── penguins_spawnable_on.json │ │ │ │ └── walnut_logs.json │ │ │ ├── entity_types │ │ │ │ └── penguin_hunt_targets.json │ │ │ └── items │ │ │ │ ├── azalea_logs.json │ │ │ │ ├── coconut_logs.json │ │ │ │ ├── flowering_azalea_logs.json │ │ │ │ ├── penguin_tempt_items.json │ │ │ │ ├── squirrel_tempt_items.json │ │ │ │ └── walnut_logs.json │ │ └── worldgen │ │ │ ├── configured_feature │ │ │ ├── azalea_tree.json │ │ │ ├── coconut.json │ │ │ ├── desert_ruin.json │ │ │ ├── prickly_pear.json │ │ │ ├── rooted_azalea_tree.json │ │ │ ├── seashell.json │ │ │ ├── surface_moss_patch.json │ │ │ ├── thin_ice_patch.json │ │ │ └── walnut.json │ │ │ └── placed_feature │ │ │ ├── desert_ruin.json │ │ │ ├── prickly_pear.json │ │ │ ├── rooted_azalea_tree.json │ │ │ ├── seashell.json │ │ │ ├── surface_moss_patch.json │ │ │ ├── thin_ice_patch.json │ │ │ ├── trees_beach.json │ │ │ └── trees_walnut.json │ └── minecraft │ │ └── tags │ │ ├── blocks │ │ ├── fence_gates.json │ │ ├── flower_pots.json │ │ ├── ice.json │ │ ├── leaves.json │ │ ├── logs_that_burn.json │ │ ├── mineable │ │ │ ├── axe.json │ │ │ ├── hoe.json │ │ │ ├── pickaxe.json │ │ │ └── shovel.json │ │ ├── planks.json │ │ ├── saplings.json │ │ ├── slabs.json │ │ ├── small_flowers.json │ │ ├── snow_layer_cannot_survive_on.json │ │ ├── stairs.json │ │ ├── standing_signs.json │ │ ├── wall_signs.json │ │ ├── walls.json │ │ ├── wooden_buttons.json │ │ ├── wooden_doors.json │ │ ├── wooden_fences.json │ │ ├── wooden_pressure_plates.json │ │ ├── wooden_slabs.json │ │ ├── wooden_stairs.json │ │ └── wooden_trapdoors.json │ │ ├── entity_types │ │ ├── freeze_immune_entity_types.json │ │ └── powder_snow_walkable_mobs.json │ │ └── items │ │ ├── boats.json │ │ ├── chest_boats.json │ │ ├── fence_gates.json │ │ ├── leaves.json │ │ ├── logs_that_burn.json │ │ ├── music_discs.json │ │ ├── planks.json │ │ ├── saplings.json │ │ ├── signs.json │ │ ├── slabs.json │ │ ├── small_flowers.json │ │ ├── stairs.json │ │ ├── walls.json │ │ ├── wooden_buttons.json │ │ ├── wooden_doors.json │ │ ├── wooden_fences.json │ │ ├── wooden_pressure_plates.json │ │ ├── wooden_slabs.json │ │ ├── wooden_stairs.json │ │ └── wooden_trapdoors.json │ ├── ecologics-common.mixins.json │ └── ecologics.accesswidener ├── fabric ├── build.gradle └── src │ ├── generated │ └── resources │ │ └── ecologics.accesswidener │ └── main │ ├── java │ └── samebutdifferent │ │ └── ecologics │ │ ├── client │ │ └── fabric │ │ │ └── EcologicsFabricClient.java │ │ ├── fabric │ │ └── EcologicsFabric.java │ │ ├── integration │ │ └── fabric │ │ │ └── ModMenuIntegration.java │ │ ├── mixin │ │ └── fabric │ │ │ ├── BlockEntityTypeMixin.java │ │ │ ├── CactusBlockMixin.java │ │ │ ├── LootContextBuilderMixin.java │ │ │ ├── PotionBrewingAccessor.java │ │ │ ├── RecordItemAccessor.java │ │ │ ├── SheepMixin.java │ │ │ ├── SpawnPlacementsAccessor.java │ │ │ └── WoodTypeAccessor.java │ │ ├── platform │ │ └── fabric │ │ │ ├── ClientPlatformHelperImpl.java │ │ │ ├── CommonPlatformHelperImpl.java │ │ │ └── ConfigPlatformHelperImpl.java │ │ └── registry │ │ └── fabric │ │ └── ModConfigFabric.java │ └── resources │ ├── data │ ├── c │ │ └── tags │ │ │ └── items │ │ │ └── shears.json │ └── ecologics │ │ └── loot_tables │ │ └── blocks │ │ ├── coconut_leaves.json │ │ └── walnut_leaves.json │ ├── ecologics.mixins.json │ ├── fabric.mod.json │ └── icon.png ├── forge ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── java │ └── samebutdifferent │ │ └── ecologics │ │ ├── client │ │ └── forge │ │ │ └── EcologicsForgeClient.java │ │ ├── forge │ │ └── EcologicsForge.java │ │ ├── loot │ │ └── forge │ │ │ └── AddItemModifier.java │ │ ├── mixin │ │ └── forge │ │ │ ├── AxeItemAccessor.java │ │ │ └── FireBlockAccessor.java │ │ ├── platform │ │ └── forge │ │ │ ├── ClientPlatformHelperImpl.java │ │ │ ├── CommonPlatformHelperImpl.java │ │ │ └── ConfigPlatformHelperImpl.java │ │ ├── registry │ │ └── forge │ │ │ ├── ModConfigForge.java │ │ │ └── ModGlobalLootModifiers.java │ │ └── util │ │ └── forge │ │ └── ModBrewingRecipe.java │ └── resources │ ├── META-INF │ └── mods.toml │ ├── data │ ├── ecologics │ │ ├── forge │ │ │ └── biome_modifier │ │ │ │ ├── add_beach_features.json │ │ │ │ ├── add_desert_ruin.json │ │ │ │ ├── add_prickly_pear.json │ │ │ │ ├── add_rooted_azalea_tree.json │ │ │ │ ├── add_surface_moss_patch.json │ │ │ │ ├── add_thin_ice_patch.json │ │ │ │ ├── add_walnut_tree.json │ │ │ │ ├── remove_classic_vines_cave_feature.json │ │ │ │ ├── remove_rooted_azalea_tree.json │ │ │ │ ├── remove_trees_plains.json │ │ │ │ ├── spawn_camel.json │ │ │ │ ├── spawn_penguin.json │ │ │ │ └── spawn_squirrel.json │ │ ├── loot_modifiers │ │ │ └── music_disc_buried_treasure.json │ │ └── loot_tables │ │ │ └── blocks │ │ │ ├── coconut_leaves.json │ │ │ └── walnut_leaves.json │ └── forge │ │ ├── loot_modifiers │ │ └── global_loot_modifiers.json │ │ └── tags │ │ ├── blocks │ │ ├── fence_gates │ │ │ └── wooden.json │ │ └── fences │ │ │ └── wooden.json │ │ └── items │ │ ├── fence_gates │ │ └── wooden.json │ │ ├── fences │ │ └── wooden.json │ │ └── shears.json │ ├── ecologics.mixins.json │ ├── icon.png │ └── pack.mcmeta ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.github/ISSUE_TEMPLATE/bug-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/.github/ISSUE_TEMPLATE/bug-report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/LICENSE -------------------------------------------------------------------------------- /common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/build.gradle -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/Ecologics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/Ecologics.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/AzaleaFlowerBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/AzaleaFlowerBlock.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/AzaleaLogBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/AzaleaLogBlock.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/CoconutBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/CoconutBlock.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/CoconutLeavesBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/CoconutLeavesBlock.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/CoconutSaplingBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/CoconutSaplingBlock.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/FloweringAzaleaLogBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/FloweringAzaleaLogBlock.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/HangingCoconutBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/HangingCoconutBlock.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/ModStandingSignBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/ModStandingSignBlock.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/ModWallSignBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/ModWallSignBlock.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/MossLayerBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/MossLayerBlock.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/PotBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/PotBlock.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/PricklyPearBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/PricklyPearBlock.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/SandcastleBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/SandcastleBlock.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/SeashellBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/SeashellBlock.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/SurfaceMossBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/SurfaceMossBlock.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/ThinIceBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/ThinIceBlock.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/entity/PotBlockEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/entity/PotBlockEntity.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/grower/ModTreeGrower.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/grower/ModTreeGrower.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/grower/WalnutTreeGrower.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/grower/WalnutTreeGrower.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/block/properties/ModWoodType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/block/properties/ModWoodType.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/client/EcologicsClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/client/EcologicsClient.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/client/model/CamelModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/client/model/CamelModel.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/client/model/CoconutCrabModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/client/model/CoconutCrabModel.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/client/model/PenguinModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/client/model/PenguinModel.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/client/model/SquirrelModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/client/model/SquirrelModel.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/effect/SlipperyMobEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/effect/SlipperyMobEffect.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/entity/Camel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/entity/Camel.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/entity/CoconutCrab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/entity/CoconutCrab.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/entity/ModBoat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/entity/ModBoat.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/entity/ModChestBoat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/entity/ModChestBoat.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/entity/Penguin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/entity/Penguin.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/entity/Squirrel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/entity/Squirrel.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/item/CoconutSliceItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/item/CoconutSliceItem.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/item/ModBoatItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/item/ModBoatItem.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/item/PricklyPearItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/item/PricklyPearItem.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/item/SandcastleBlockItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/item/SandcastleBlockItem.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/mixin/AzaleaTreeGrowerMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/mixin/AzaleaTreeGrowerMixin.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/mixin/CamelMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/mixin/CamelMixin.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/mixin/CarpetBlockMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/mixin/CarpetBlockMixin.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/mixin/LivingEntityMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/mixin/LivingEntityMixin.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/platform/ClientPlatformHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/platform/ClientPlatformHelper.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/platform/CommonPlatformHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/platform/CommonPlatformHelper.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/platform/ConfigPlatformHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/platform/ConfigPlatformHelper.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/registry/ModBlockEntityTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/registry/ModBlockEntityTypes.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/registry/ModBlocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/registry/ModBlocks.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/registry/ModEntityTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/registry/ModEntityTypes.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/registry/ModFeatures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/registry/ModFeatures.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/registry/ModItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/registry/ModItems.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/registry/ModMobEffects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/registry/ModMobEffects.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/registry/ModPotions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/registry/ModPotions.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/registry/ModSoundEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/registry/ModSoundEvents.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/registry/ModTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/registry/ModTags.java -------------------------------------------------------------------------------- /common/src/main/java/samebutdifferent/ecologics/registry/ModTrunkPlacerTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/java/samebutdifferent/ecologics/registry/ModTrunkPlacerTypes.java -------------------------------------------------------------------------------- /common/src/main/resources/architectury.common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/architectury.common.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/azalea_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/azalea_button.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/azalea_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/azalea_door.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/azalea_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/azalea_fence.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/azalea_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/azalea_fence_gate.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/azalea_flower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/azalea_flower.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/azalea_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/azalea_log.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/azalea_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/azalea_planks.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/azalea_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/azalea_pressure_plate.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/azalea_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/azalea_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/azalea_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/azalea_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/azalea_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/azalea_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/azalea_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/azalea_trapdoor.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/azalea_wall_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/azalea_wall_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/azalea_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/azalea_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/coconut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/coconut.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/coconut_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/coconut_button.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/coconut_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/coconut_door.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/coconut_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/coconut_fence.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/coconut_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/coconut_fence_gate.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/coconut_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/coconut_leaves.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/coconut_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/coconut_log.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/coconut_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/coconut_planks.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/coconut_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/coconut_pressure_plate.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/coconut_seedling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/coconut_seedling.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/coconut_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/coconut_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/coconut_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/coconut_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/coconut_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/coconut_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/coconut_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/coconut_trapdoor.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/coconut_wall_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/coconut_wall_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/coconut_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/coconut_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/flowering_azalea_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/flowering_azalea_door.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/flowering_azalea_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/flowering_azalea_fence.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/flowering_azalea_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/flowering_azalea_log.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/flowering_azalea_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/flowering_azalea_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/flowering_azalea_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/flowering_azalea_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/flowering_azalea_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/flowering_azalea_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/hanging_coconut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/hanging_coconut.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/ice_brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/ice_brick_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/ice_brick_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/ice_brick_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/ice_brick_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/ice_brick_wall.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/ice_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/ice_bricks.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/moss_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/moss_layer.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/pot.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/potted_azalea_flower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/potted_azalea_flower.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/potted_walnut_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/potted_walnut_sapling.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/prickly_pear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/prickly_pear.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/sandcastle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/sandcastle.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/seashell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/seashell.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/seashell_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/seashell_block.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/seashell_tile_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/seashell_tile_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/seashell_tile_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/seashell_tile_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/seashell_tile_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/seashell_tile_wall.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/seashell_tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/seashell_tiles.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/snow_brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/snow_brick_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/snow_brick_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/snow_brick_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/snow_brick_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/snow_brick_wall.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/snow_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/snow_bricks.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/stripped_azalea_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/stripped_azalea_log.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/stripped_azalea_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/stripped_azalea_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/stripped_coconut_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/stripped_coconut_log.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/stripped_coconut_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/stripped_coconut_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/stripped_walnut_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/stripped_walnut_log.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/stripped_walnut_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/stripped_walnut_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/surface_moss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/surface_moss.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/thin_ice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/thin_ice.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/walnut_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/walnut_button.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/walnut_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/walnut_door.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/walnut_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/walnut_fence.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/walnut_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/walnut_fence_gate.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/walnut_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/walnut_leaves.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/walnut_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/walnut_log.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/walnut_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/walnut_planks.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/walnut_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/walnut_pressure_plate.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/walnut_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/walnut_sapling.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/walnut_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/walnut_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/walnut_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/walnut_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/walnut_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/walnut_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/walnut_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/walnut_trapdoor.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/walnut_wall_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/walnut_wall_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/blockstates/walnut_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/blockstates/walnut_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/lang/en_gb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/lang/en_gb.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/lang/en_us.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/lang/es_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/lang/es_es.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/lang/fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/lang/fr_fr.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/lang/it_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/lang/it_it.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/lang/ja_jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/lang/ja_jp.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/lang/ko_kr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/lang/ko_kr.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/lang/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/lang/ru_ru.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/lang/sv_se.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/lang/sv_se.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/lang/tr_tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/lang/tr_tr.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/lang/vi_vn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/lang/vi_vn.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/lang/zh_cn.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/lang/zh_tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/lang/zh_tw.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_button.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_button_pressed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_button_pressed.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_door_top_left.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_door_top_left.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_door_top_right.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_door_top_right.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_fence_gate.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_fence_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_fence_post.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_fence_side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_fence_side.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_flower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_flower.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_log.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_log_horizontal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_log_horizontal.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_planks.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_pressure_plate.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_slab_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_slab_top.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_stairs_inner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_stairs_inner.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_stairs_outer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_stairs_outer.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_trapdoor_open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_trapdoor_open.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_trapdoor_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_trapdoor_top.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/azalea_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/azalea_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_button.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_door_top_left.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_door_top_left.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_fence_gate.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_fence_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_fence_post.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_fence_side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_fence_side.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_leaves.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_log.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_planks.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_seedling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_seedling.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_slab_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_slab_top.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_stage0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_stage0.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_stage1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_stage1.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_stage2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_stage2.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_stairs_inner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_stairs_inner.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_stairs_outer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_stairs_outer.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_trapdoor_open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_trapdoor_open.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_trapdoor_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_trapdoor_top.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/coconut_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/coconut_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/flowering_azalea_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/flowering_azalea_log.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/flowering_azalea_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/flowering_azalea_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/flowering_azalea_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/flowering_azalea_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/flowering_azalea_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/flowering_azalea_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/ice_brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/ice_brick_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/ice_brick_slab_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/ice_brick_slab_top.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/ice_brick_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/ice_brick_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/ice_brick_wall_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/ice_brick_wall_post.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/ice_brick_wall_side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/ice_brick_wall_side.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/ice_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/ice_bricks.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/moss_layer_height10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/moss_layer_height10.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/moss_layer_height12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/moss_layer_height12.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/moss_layer_height14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/moss_layer_height14.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/moss_layer_height2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/moss_layer_height2.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/moss_layer_height4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/moss_layer_height4.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/moss_layer_height6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/moss_layer_height6.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/moss_layer_height8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/moss_layer_height8.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/pot.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/pot_chiseled_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/pot_chiseled_1.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/pot_chiseled_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/pot_chiseled_2.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/pot_chiseled_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/pot_chiseled_3.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/pot_chiseled_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/pot_chiseled_4.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/pot_chiseled_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/pot_chiseled_5.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/potted_azalea_flower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/potted_azalea_flower.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/potted_walnut_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/potted_walnut_sapling.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/prickly_pear_stage0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/prickly_pear_stage0.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/prickly_pear_stage1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/prickly_pear_stage1.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/prickly_pear_stage2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/prickly_pear_stage2.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/prickly_pear_stage3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/prickly_pear_stage3.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/sandcastle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/sandcastle.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/seashell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/seashell.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/seashell_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/seashell_block.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/seashell_tile_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/seashell_tile_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/seashell_tile_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/seashell_tile_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/seashell_tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/seashell_tiles.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/snow_brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/snow_brick_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/snow_brick_slab_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/snow_brick_slab_top.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/snow_brick_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/snow_brick_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/snow_brick_wall_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/snow_brick_wall_post.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/snow_brick_wall_side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/snow_brick_wall_side.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/snow_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/snow_bricks.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/stripped_azalea_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/stripped_azalea_log.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/stripped_azalea_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/stripped_azalea_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/stripped_coconut_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/stripped_coconut_log.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/stripped_coconut_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/stripped_coconut_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/stripped_walnut_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/stripped_walnut_log.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/stripped_walnut_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/stripped_walnut_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/surface_moss_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/surface_moss_1.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/surface_moss_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/surface_moss_2.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/surface_moss_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/surface_moss_3.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/template_pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/template_pot.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/thin_ice_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/thin_ice_0.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/thin_ice_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/thin_ice_1.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/thin_ice_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/thin_ice_2.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/thin_ice_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/thin_ice_3.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_button.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_button_pressed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_button_pressed.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_door_top_left.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_door_top_left.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_door_top_right.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_door_top_right.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_fence_gate.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_fence_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_fence_post.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_fence_side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_fence_side.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_leaves.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_log.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_log_horizontal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_log_horizontal.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_planks.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_sapling.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_slab_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_slab_top.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/block/walnut_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/block/walnut_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/azalea_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/azalea_boat.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/azalea_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/azalea_button_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/azalea_chest_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/azalea_chest_boat.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/azalea_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/azalea_door.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/azalea_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/azalea_fence.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/azalea_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/azalea_fence_gate" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/azalea_flower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/azalea_flower.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/azalea_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/azalea_log" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/azalea_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/azalea_planks" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/azalea_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/azalea_pressure_plate" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/azalea_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/azalea_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/azalea_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/azalea_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/azalea_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/azalea_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/azalea_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/azalea_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/azalea_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/azalea_wood" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/camel_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/coconut" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/coconut_boat.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/coconut_button_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_chest_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/coconut_chest_boat.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_crab_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/coconut_door.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/coconut_fence.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/coconut_fence_gate" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_husk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/coconut_husk.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/coconut_leaves" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/coconut_log" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/coconut_planks" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/coconut_pressure_plate" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_seedling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/coconut_seedling.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/coconut_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/coconut_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_slice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/coconut_slice.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/coconut_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/coconut_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/coconut_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/coconut_wood" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/cooked_prickly_pear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/cooked_prickly_pear.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/crab_claw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/crab_claw.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/crab_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/crab_meat.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/flowering_azalea_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/flowering_azalea_fence_gate" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/flowering_azalea_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/flowering_azalea_log" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/flowering_azalea_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/flowering_azalea_planks" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/flowering_azalea_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/flowering_azalea_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/flowering_azalea_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/flowering_azalea_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/flowering_azalea_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/flowering_azalea_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/flowering_azalea_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/flowering_azalea_wood" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/ice_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/ice_brick_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/ice_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/ice_brick_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/ice_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/ice_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/ice_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/ice_bricks" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/moss_layer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/moss_layer_height2" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/music_disc_coconut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/music_disc_coconut.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/penguin_feather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/penguin_feather.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/penguin_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/prickly_pear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/prickly_pear.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/sandcastle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/sandcastle.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/seashell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/seashell.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/seashell_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/seashell_block.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/seashell_tile_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/seashell_tile_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/seashell_tile_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/seashell_tile_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/seashell_tile_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/seashell_tile_wall.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/seashell_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/seashell_tiles" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/snow_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/snow_brick_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/snow_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/snow_brick_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/snow_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/snow_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/snow_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/snow_bricks" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/squirrel_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/stripped_azalea_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/stripped_azalea_log" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/stripped_azalea_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/stripped_azalea_wood" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/stripped_coconut_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/stripped_coconut_log" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/stripped_coconut_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/stripped_coconut_wood" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/stripped_walnut_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/stripped_walnut_log" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/stripped_walnut_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/stripped_walnut_wood" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/surface_moss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/surface_moss.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/thin_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/thin_ice_0" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/tropical_stew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/tropical_stew.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/walnut.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/walnut_boat.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/walnut_button_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_chest_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/walnut_chest_boat.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/walnut_door.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/walnut_fence.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/walnut_fence_gate" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/walnut_leaves" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/walnut_log" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/walnut_planks" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/walnut_pressure_plate" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/walnut_sapling.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/walnut_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/walnut_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_slice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/models/item/walnut_slice.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/walnut_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/walnut_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/models/item/walnut_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ecologics:block/walnut_wood" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/sounds.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/sounds/coconut_crab_ambient.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/sounds/coconut_crab_ambient.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/sounds/coconut_crab_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/sounds/coconut_crab_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/sounds/coconut_crab_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/sounds/coconut_crab_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/sounds/coconut_smash.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/sounds/coconut_smash.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/sounds/music_disc_coconut.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/sounds/music_disc_coconut.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/sounds/penguin_ambient1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/sounds/penguin_ambient1.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/sounds/penguin_ambient2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/sounds/penguin_ambient2.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/sounds/penguin_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/sounds/penguin_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/sounds/penguin_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/sounds/penguin_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/sounds/squirrel_ambient.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/sounds/squirrel_ambient.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/sounds/squirrel_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/sounds/squirrel_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/sounds/squirrel_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/sounds/squirrel_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/azalea_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/azalea_door_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/azalea_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/azalea_flower.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/azalea_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/azalea_log.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/azalea_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/azalea_log_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/azalea_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/azalea_planks.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/azalea_trapdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/azalea_trapdoor.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/coconut_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/coconut_door_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/coconut_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/coconut_leaves.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/coconut_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/coconut_log.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/coconut_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/coconut_log_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/coconut_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/coconut_planks.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/coconut_seedling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/coconut_seedling.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/coconut_stage0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/coconut_stage0.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/coconut_stage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/coconut_stage1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/coconut_stage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/coconut_stage2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/coconut_trapdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/coconut_trapdoor.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/ice_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/ice_bricks.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/pot.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/pot_chiseled_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/pot_chiseled_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/pot_chiseled_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/pot_chiseled_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/pot_chiseled_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/pot_chiseled_3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/pot_chiseled_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/pot_chiseled_4.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/pot_chiseled_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/pot_chiseled_5.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/sandcastle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/sandcastle.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/seashell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/seashell.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/seashell_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/seashell_block.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/seashell_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/seashell_tiles.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/snow_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/snow_bricks.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/surface_moss_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/surface_moss_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/surface_moss_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/surface_moss_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/surface_moss_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/surface_moss_3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/thin_ice_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/thin_ice_0.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/thin_ice_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/thin_ice_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/thin_ice_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/thin_ice_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/thin_ice_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/thin_ice_3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/walnut_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/walnut_door_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/walnut_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/walnut_leaves.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/walnut_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/walnut_log.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/walnut_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/walnut_log_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/walnut_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/walnut_planks.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/walnut_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/walnut_sapling.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/block/walnut_trapdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/block/walnut_trapdoor.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/entity/baby_penguin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/entity/baby_penguin.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/entity/boat/azalea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/entity/boat/azalea.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/entity/boat/coconut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/entity/boat/coconut.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/entity/boat/walnut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/entity/boat/walnut.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/entity/camel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/entity/camel.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/entity/coconut_crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/entity/coconut_crab.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/entity/penguin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/entity/penguin.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/entity/signs/azalea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/entity/signs/azalea.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/entity/signs/coconut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/entity/signs/coconut.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/entity/signs/walnut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/entity/signs/walnut.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/entity/squirrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/entity/squirrel.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/azalea_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/azalea_boat.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/azalea_chest_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/azalea_chest_boat.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/azalea_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/azalea_door.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/azalea_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/azalea_sign.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/coconut_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/coconut_boat.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/coconut_chest_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/coconut_chest_boat.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/coconut_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/coconut_door.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/coconut_husk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/coconut_husk.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/coconut_seedling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/coconut_seedling.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/coconut_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/coconut_sign.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/coconut_slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/coconut_slice.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/crab_claw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/crab_claw.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/crab_meat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/crab_meat.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/moss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/moss.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/music_disc_coconut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/music_disc_coconut.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/penguin_feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/penguin_feather.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/prickly_pear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/prickly_pear.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/sandcastle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/sandcastle.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/seashell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/seashell.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/tropical_stew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/tropical_stew.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/walnut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/walnut.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/walnut_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/walnut_boat.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/walnut_chest_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/walnut_chest_boat.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/walnut_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/walnut_door.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/item/walnut_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/item/walnut_sign.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/ecologics/textures/mob_effect/slippery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/ecologics/textures/mob_effect/slippery.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/signs/azalea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/minecraft/textures/entity/signs/azalea.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/signs/coconut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/minecraft/textures/entity/signs/coconut.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/signs/walnut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/assets/minecraft/textures/entity/signs/walnut.png -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/advancements/husbandry/sandcastle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/advancements/husbandry/sandcastle.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_button.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_door.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_fence.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_flower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_flower.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_log.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_planks.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/azalea_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/coconut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/coconut.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_button.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_door.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_fence.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_log.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_planks.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/coconut_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/ice_brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/ice_brick_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/ice_brick_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/ice_brick_wall.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/ice_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/ice_bricks.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/moss_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/moss_layer.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/pot.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/prickly_pear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/prickly_pear.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/sandcastle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/sandcastle.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/seashell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/seashell.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/seashell_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/seashell_block.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/seashell_tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/seashell_tiles.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/snow_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/snow_bricks.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/thin_ice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/thin_ice.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_button.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_door.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_fence.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_log.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_planks.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_sapling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_sapling.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/blocks/walnut_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/entities/camel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/entities/camel.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/loot_tables/entities/coconut_crab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/loot_tables/entities/coconut_crab.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/azalea_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/azalea_boat.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/azalea_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/azalea_button.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/azalea_chest_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/azalea_chest_boat.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/azalea_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/azalea_door.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/azalea_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/azalea_fence.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/azalea_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/azalea_fence_gate.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/azalea_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/azalea_planks.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/azalea_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/azalea_pressure_plate.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/azalea_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/azalea_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/azalea_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/azalea_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/azalea_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/azalea_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/azalea_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/azalea_trapdoor.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/azalea_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/azalea_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/coconut_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/coconut_boat.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/coconut_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/coconut_button.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/coconut_chest_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/coconut_chest_boat.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/coconut_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/coconut_door.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/coconut_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/coconut_fence.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/coconut_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/coconut_fence_gate.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/coconut_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/coconut_planks.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/coconut_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/coconut_pressure_plate.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/coconut_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/coconut_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/coconut_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/coconut_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/coconut_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/coconut_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/coconut_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/coconut_trapdoor.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/coconut_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/coconut_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/cooked_prickly_pear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/cooked_prickly_pear.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/crab_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/crab_meat.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/crab_meat_from_smoking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/crab_meat_from_smoking.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/flowering_azalea_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/flowering_azalea_boat.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/flowering_azalea_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/flowering_azalea_door.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/flowering_azalea_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/flowering_azalea_fence.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/flowering_azalea_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/flowering_azalea_planks.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/flowering_azalea_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/flowering_azalea_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/flowering_azalea_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/flowering_azalea_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/flowering_azalea_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/flowering_azalea_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/flowering_azalea_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/flowering_azalea_trapdoor.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/flowering_azalea_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/flowering_azalea_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/ice_brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/ice_brick_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/ice_brick_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/ice_brick_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/ice_brick_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/ice_brick_wall.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/ice_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/ice_bricks.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/moss_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/moss_block.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/pot.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/sandcastle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/sandcastle.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/seashell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/seashell.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/seashell_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/seashell_block.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/seashell_tile_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/seashell_tile_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/seashell_tile_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/seashell_tile_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/seashell_tile_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/seashell_tile_wall.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/seashell_tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/seashell_tiles.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/snow_brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/snow_brick_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/snow_brick_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/snow_brick_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/snow_brick_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/snow_brick_wall.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/snow_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/snow_bricks.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/stripped_azalea_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/stripped_azalea_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/stripped_coconut_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/stripped_coconut_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/stripped_walnut_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/stripped_walnut_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/surface_moss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/surface_moss.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/tropical_stew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/tropical_stew.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/walnut_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/walnut_boat.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/walnut_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/walnut_button.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/walnut_chest_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/walnut_chest_boat.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/walnut_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/walnut_door.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/walnut_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/walnut_fence.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/walnut_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/walnut_fence_gate.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/walnut_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/walnut_planks.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/walnut_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/walnut_pressure_plate.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/walnut_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/walnut_sign.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/walnut_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/walnut_slab.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/walnut_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/walnut_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/walnut_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/walnut_trapdoor.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/recipes/walnut_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/recipes/walnut_wood.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/structures/desert_ruin/chest_house.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/structures/desert_ruin/chest_house.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/structures/desert_ruin/pillars1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/structures/desert_ruin/pillars1.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/structures/desert_ruin/pillars2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/structures/desert_ruin/pillars2.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/structures/desert_ruin/pit.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/structures/desert_ruin/pit.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/structures/desert_ruin/wall1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/structures/desert_ruin/wall1.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/structures/desert_ruin/wall2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/structures/desert_ruin/wall2.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/tags/blocks/azalea_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/tags/blocks/azalea_logs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/tags/blocks/coconut_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/tags/blocks/coconut_logs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/tags/blocks/flowering_azalea_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/tags/blocks/flowering_azalea_logs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/tags/blocks/penguins_spawnable_on.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/tags/blocks/penguins_spawnable_on.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/tags/blocks/walnut_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/tags/blocks/walnut_logs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/tags/items/azalea_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/tags/items/azalea_logs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/tags/items/coconut_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/tags/items/coconut_logs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/tags/items/flowering_azalea_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/tags/items/flowering_azalea_logs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/tags/items/penguin_tempt_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/tags/items/penguin_tempt_items.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/tags/items/squirrel_tempt_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/tags/items/squirrel_tempt_items.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/tags/items/walnut_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/tags/items/walnut_logs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/ecologics/worldgen/placed_feature/seashell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/ecologics/worldgen/placed_feature/seashell.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/fence_gates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/fence_gates.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/flower_pots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/flower_pots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/ice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/ice.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/leaves.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/logs_that_burn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/logs_that_burn.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/mineable/axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/mineable/axe.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/mineable/hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/mineable/hoe.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/mineable/shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/mineable/shovel.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/planks.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/saplings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/saplings.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/slabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/slabs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/small_flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/small_flowers.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/standing_signs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/standing_signs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wall_signs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/wall_signs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/walls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/walls.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wooden_buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/wooden_buttons.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wooden_doors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/wooden_doors.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wooden_fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/wooden_fences.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wooden_slabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/wooden_slabs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wooden_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/wooden_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wooden_trapdoors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/blocks/wooden_trapdoors.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/boats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/boats.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/chest_boats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/chest_boats.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/fence_gates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/fence_gates.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/leaves.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/logs_that_burn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/logs_that_burn.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/music_discs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/music_discs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/planks.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/saplings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/saplings.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/signs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/signs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/slabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/slabs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/small_flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/small_flowers.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/walls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/walls.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/wooden_buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/wooden_buttons.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/wooden_doors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/wooden_doors.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/wooden_fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/wooden_fences.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/wooden_pressure_plates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/wooden_pressure_plates.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/wooden_slabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/wooden_slabs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/wooden_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/wooden_stairs.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/wooden_trapdoors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/data/minecraft/tags/items/wooden_trapdoors.json -------------------------------------------------------------------------------- /common/src/main/resources/ecologics-common.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/ecologics-common.mixins.json -------------------------------------------------------------------------------- /common/src/main/resources/ecologics.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/common/src/main/resources/ecologics.accesswidener -------------------------------------------------------------------------------- /fabric/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/fabric/build.gradle -------------------------------------------------------------------------------- /fabric/src/generated/resources/ecologics.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/fabric/src/generated/resources/ecologics.accesswidener -------------------------------------------------------------------------------- /fabric/src/main/java/samebutdifferent/ecologics/fabric/EcologicsFabric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/fabric/src/main/java/samebutdifferent/ecologics/fabric/EcologicsFabric.java -------------------------------------------------------------------------------- /fabric/src/main/java/samebutdifferent/ecologics/mixin/fabric/SheepMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/fabric/src/main/java/samebutdifferent/ecologics/mixin/fabric/SheepMixin.java -------------------------------------------------------------------------------- /fabric/src/main/resources/data/c/tags/items/shears.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/fabric/src/main/resources/data/c/tags/items/shears.json -------------------------------------------------------------------------------- /fabric/src/main/resources/data/ecologics/loot_tables/blocks/coconut_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/fabric/src/main/resources/data/ecologics/loot_tables/blocks/coconut_leaves.json -------------------------------------------------------------------------------- /fabric/src/main/resources/data/ecologics/loot_tables/blocks/walnut_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/fabric/src/main/resources/data/ecologics/loot_tables/blocks/walnut_leaves.json -------------------------------------------------------------------------------- /fabric/src/main/resources/ecologics.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/fabric/src/main/resources/ecologics.mixins.json -------------------------------------------------------------------------------- /fabric/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/fabric/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /fabric/src/main/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/fabric/src/main/resources/icon.png -------------------------------------------------------------------------------- /forge/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/build.gradle -------------------------------------------------------------------------------- /forge/gradle.properties: -------------------------------------------------------------------------------- 1 | loom.platform=forge -------------------------------------------------------------------------------- /forge/src/main/java/samebutdifferent/ecologics/forge/EcologicsForge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/java/samebutdifferent/ecologics/forge/EcologicsForge.java -------------------------------------------------------------------------------- /forge/src/main/java/samebutdifferent/ecologics/loot/forge/AddItemModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/java/samebutdifferent/ecologics/loot/forge/AddItemModifier.java -------------------------------------------------------------------------------- /forge/src/main/java/samebutdifferent/ecologics/mixin/forge/AxeItemAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/java/samebutdifferent/ecologics/mixin/forge/AxeItemAccessor.java -------------------------------------------------------------------------------- /forge/src/main/java/samebutdifferent/ecologics/util/forge/ModBrewingRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/java/samebutdifferent/ecologics/util/forge/ModBrewingRecipe.java -------------------------------------------------------------------------------- /forge/src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /forge/src/main/resources/data/ecologics/forge/biome_modifier/spawn_camel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/resources/data/ecologics/forge/biome_modifier/spawn_camel.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/ecologics/forge/biome_modifier/spawn_penguin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/resources/data/ecologics/forge/biome_modifier/spawn_penguin.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/ecologics/loot_tables/blocks/coconut_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/resources/data/ecologics/loot_tables/blocks/coconut_leaves.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/ecologics/loot_tables/blocks/walnut_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/resources/data/ecologics/loot_tables/blocks/walnut_leaves.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/forge/loot_modifiers/global_loot_modifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/resources/data/forge/loot_modifiers/global_loot_modifiers.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/forge/tags/blocks/fence_gates/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/resources/data/forge/tags/blocks/fence_gates/wooden.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/forge/tags/blocks/fences/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/resources/data/forge/tags/blocks/fences/wooden.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/forge/tags/items/fence_gates/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/resources/data/forge/tags/items/fence_gates/wooden.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/forge/tags/items/fences/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/resources/data/forge/tags/items/fences/wooden.json -------------------------------------------------------------------------------- /forge/src/main/resources/data/forge/tags/items/shears.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/resources/data/forge/tags/items/shears.json -------------------------------------------------------------------------------- /forge/src/main/resources/ecologics.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/resources/ecologics.mixins.json -------------------------------------------------------------------------------- /forge/src/main/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/resources/icon.png -------------------------------------------------------------------------------- /forge/src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/forge/src/main/resources/pack.mcmeta -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samedifferent/Ecologics/HEAD/settings.gradle --------------------------------------------------------------------------------