├── forge ├── gradle.properties └── src │ └── main │ └── resources │ ├── pack.mcmeta │ └── data │ └── meadow │ └── tags │ └── worldgen │ └── biome │ └── spawns_meadow_wooly_cows.json ├── common └── src │ └── main │ └── resources │ ├── data │ ├── meadow │ │ ├── tags │ │ │ ├── blocks │ │ │ │ ├── flowers.json │ │ │ │ ├── tall_flowers.json │ │ │ │ ├── planks.json │ │ │ │ ├── flower_pots.json │ │ │ │ ├── birch_logs.json │ │ │ │ └── logs.json │ │ │ ├── items │ │ │ │ ├── big_flower.json │ │ │ │ ├── bread.json │ │ │ │ ├── small_flower.json │ │ │ │ ├── birch_logs.json │ │ │ │ ├── egg.json │ │ │ │ ├── milk.json │ │ │ │ ├── milk_bucket.json │ │ │ │ ├── cheese.json │ │ │ │ ├── wheat.json │ │ │ │ ├── cheeses.json │ │ │ │ ├── shears.json │ │ │ │ ├── logs.json │ │ │ │ ├── large_water_fill.json │ │ │ │ └── water_bottles.json │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ ├── spawns_flecked_sheep.json │ │ │ │ ├── spawns_warped_cow.json │ │ │ │ ├── is_meadow.json │ │ │ │ ├── meadow_biomes.json │ │ │ │ ├── has_structure │ │ │ │ ├── bench.json │ │ │ │ ├── chalet.json │ │ │ │ ├── chapel.json │ │ │ │ ├── logging_camp.json │ │ │ │ ├── monument.json │ │ │ │ └── observation_post.json │ │ │ │ ├── spawns_rocky_sheep.json │ │ │ │ ├── spawns_long_nosed_sheep.json │ │ │ │ ├── spawns_fuzzy_sheep.json │ │ │ │ ├── spawns_inky_sheep.json │ │ │ │ ├── spawns_sunset_cow.json │ │ │ │ ├── spawns_umbra_cow.json │ │ │ │ └── spawns_patched_sheep.json │ │ ├── structures │ │ │ ├── bench.nbt │ │ │ ├── chalet.nbt │ │ │ ├── chapel.nbt │ │ │ ├── monument.nbt │ │ │ ├── logging_camp.nbt │ │ │ └── observation_post.nbt │ │ └── worldgen │ │ │ └── noise │ │ │ ├── cracks.json │ │ │ └── dirt.json │ ├── c │ │ └── tags │ │ │ ├── items │ │ │ ├── salt.json │ │ │ ├── salts.json │ │ │ ├── bread.json │ │ │ ├── eggs.json │ │ │ ├── wheat.json │ │ │ ├── shears.json │ │ │ ├── tools │ │ │ │ └── shears.json │ │ │ ├── stripped_logs.json │ │ │ ├── stripped_wood.json │ │ │ ├── milk.json │ │ │ └── water_bottles.json │ │ │ └── blocks │ │ │ └── allows_cooking.json │ ├── forge │ │ └── tags │ │ │ ├── items │ │ │ ├── salt.json │ │ │ ├── salts.json │ │ │ ├── eggs.json │ │ │ ├── bread.json │ │ │ ├── wheat.json │ │ │ ├── buckets.json │ │ │ ├── buckets │ │ │ │ ├── empty.json │ │ │ │ ├── milk.json │ │ │ │ └── water.json │ │ │ ├── stripped_logs.json │ │ │ ├── stripped_wood.json │ │ │ ├── milk.json │ │ │ └── water_bottles.json │ │ │ └── blocks │ │ │ ├── allows_cooking.json │ │ │ ├── cobblestone.json │ │ │ └── fence_gates │ │ │ └── wooden.json │ ├── minecraft │ │ └── tags │ │ │ ├── blocks │ │ │ ├── logs.json │ │ │ ├── wool.json │ │ │ ├── gold_ores.json │ │ │ ├── iron_ores.json │ │ │ ├── logs_that_burn.json │ │ │ ├── standing_signs.json │ │ │ ├── wall_signs.json │ │ │ ├── lapis_ores.json │ │ │ ├── oak_logs.json │ │ │ ├── diamond_ores.json │ │ │ ├── emerald_ores.json │ │ │ ├── redstone_ores.json │ │ │ ├── wall_hanging_signs.json │ │ │ ├── coal_ores.json │ │ │ ├── planks.json │ │ │ ├── saplings.json │ │ │ ├── copper_ores.json │ │ │ ├── wooden_buttons.json │ │ │ ├── wooden_slabs.json │ │ │ ├── wooden_stairs.json │ │ │ ├── wool_carpets.json │ │ │ ├── fence_gates.json │ │ │ ├── tall_flowers.json │ │ │ ├── wooden_fences.json │ │ │ ├── wooden_pressure_plates.json │ │ │ ├── wooden_doors.json │ │ │ ├── climbable.json │ │ │ ├── wooden_trapdoors.json │ │ │ └── needs_stone_tool.json │ │ │ ├── items │ │ │ ├── logs.json │ │ │ ├── signs.json │ │ │ ├── coal_ores.json │ │ │ ├── gold_ores.json │ │ │ ├── iron_ores.json │ │ │ ├── logs_that_burn.json │ │ │ ├── planks.json │ │ │ ├── copper_ores.json │ │ │ ├── diamond_ores.json │ │ │ ├── emerald_ores.json │ │ │ ├── lapis_ores.json │ │ │ ├── wooden_buttons.json │ │ │ ├── wooden_fences.json │ │ │ ├── wooden_slabs.json │ │ │ ├── wooden_stairs.json │ │ │ ├── redstone_ores.json │ │ │ ├── wooden_trapdoors.json │ │ │ ├── stone_tool_materials.json │ │ │ ├── stone_crafting_materials.json │ │ │ ├── saplings.json │ │ │ ├── wooden_pressure_plates.json │ │ │ ├── tall_flowers.json │ │ │ └── wooden_doors.json │ │ │ └── point_of_interest_type │ │ │ └── acquirable_job_site.json │ ├── farmersdelight │ │ └── tags │ │ │ └── blocks │ │ │ └── heat_sources.json │ └── treechop │ │ └── tags │ │ └── blocks │ │ └── leaves_like.json │ ├── architectury.common.json │ ├── assets │ └── meadow │ │ ├── models │ │ ├── item │ │ │ ├── bench.json │ │ │ ├── shelf.json │ │ │ ├── table.json │ │ │ ├── pine_log.json │ │ │ ├── cheese_rack.json │ │ │ ├── inky_carpet.json │ │ │ ├── inky_wool.json │ │ │ ├── limestone.json │ │ │ ├── pine_beam.json │ │ │ ├── pine_slab.json │ │ │ ├── pine_stairs.json │ │ │ ├── pine_wood.json │ │ │ ├── rocky_wool.json │ │ │ ├── stone_bench.json │ │ │ ├── stone_table.json │ │ │ ├── umbra_wool.json │ │ │ ├── warped_wool.json │ │ │ ├── chair.json │ │ │ ├── flecked_wool.json │ │ │ ├── highland_wool.json │ │ │ ├── patched_wool.json │ │ │ ├── pine_planks.json │ │ │ ├── shutter_block.json │ │ │ ├── stove_tiles.json │ │ │ ├── umbra_carpet.json │ │ │ ├── warped_carpet.json │ │ │ ├── alpine_birch_log.json │ │ │ ├── alpine_coal_ore.json │ │ │ ├── alpine_gold_ore.json │ │ │ ├── alpine_iron_ore.json │ │ │ ├── alpine_lapis_ore.json │ │ │ ├── alpine_oak_log.json │ │ │ ├── alpine_salt_ore.json │ │ │ ├── flecked_carpet.json │ │ │ ├── highland_carpet.json │ │ │ ├── limestone_slab.json │ │ │ ├── limestone_stairs.json │ │ │ ├── patched_carpet.json │ │ │ ├── pine_button.json │ │ │ ├── pine_fence.json │ │ │ ├── pine_fence_gate.json │ │ │ ├── pine_leaves.json │ │ │ ├── pine_railing.json │ │ │ ├── rocky_carpet.json │ │ │ ├── stove_tiles_lid.json │ │ │ ├── alpine_copper_ore.json │ │ │ ├── alpine_diamond_ore.json │ │ │ ├── alpine_emerald_ore.json │ │ │ ├── cobbled_limestone.json │ │ │ ├── limestone_bricks.json │ │ │ ├── pine_trapdoor.json │ │ │ ├── shutter_block_berry.json │ │ │ ├── shutter_block_fir.json │ │ │ ├── shutter_block_poppy.json │ │ │ ├── stove_tiles_bench.json │ │ │ ├── stove_tiles_wood.json │ │ │ ├── stripped_pine_log.json │ │ │ ├── stripped_pine_wood.json │ │ │ ├── alpine_redstone_ore.json │ │ │ ├── furnace_cobblestone.json │ │ │ ├── limestone_brick_slab.json │ │ │ ├── limestone_wall.json │ │ │ ├── pine_pressure_plate.json │ │ │ ├── cobbled_limestone_slab.json │ │ │ ├── limestone_brick_stairs.json │ │ │ ├── mossy_cobbled_limestone.json │ │ │ ├── mossy_limestone_bricks.json │ │ │ ├── pine_barn_trapdoor.json │ │ │ ├── polished_limestone_bricks.json │ │ │ ├── chiseled_limestone_bricks.json │ │ │ ├── cobbled_limestone_stairs.json │ │ │ ├── cracked_limestone_bricks.json │ │ │ ├── limestone_brick_wall.json │ │ │ ├── mossy_limestone_brick_slab.json │ │ │ ├── pine_window.json │ │ │ ├── cobbled_limestone_wall.json │ │ │ ├── mossy_cobbled_limestone_slab.json │ │ │ ├── mossy_limestone_brick_stairs.json │ │ │ ├── mossy_cobbled_limestone_stairs.json │ │ │ ├── mossy_limestone_brick_wall.json │ │ │ ├── alpine_birch_leaves_hanging.json │ │ │ ├── mossy_cobbled_limestone_wall.json │ │ │ ├── sun_patterned_window.json │ │ │ ├── can.json │ │ │ ├── heart_patterned_window.json │ │ │ ├── inky_bed.json │ │ │ ├── camera.json │ │ │ ├── fire_log.json │ │ │ ├── frame.json │ │ │ ├── fur_boots.json │ │ │ ├── pine_boat.json │ │ │ ├── pine_sign.json │ │ │ ├── rennet.json │ │ │ ├── straw_bed.json │ │ │ ├── umbra_bed.json │ │ │ ├── warped_bed.json │ │ │ ├── alpine_salt.json │ │ │ ├── cheese_roll.json │ │ │ ├── cheese_stick.json │ │ │ ├── doormat.json │ │ │ ├── flecked_bed.json │ │ │ ├── fondue.json │ │ │ ├── fur_helmet.json │ │ │ ├── fur_leggings.json │ │ │ ├── highland_bed.json │ │ │ ├── patched_bed.json │ │ │ ├── pine_door.json │ │ │ ├── roasted_ham.json │ │ │ ├── rocky_bed.json │ │ │ ├── wheelbarrow.json │ │ │ ├── cheese_tart.json │ │ │ ├── cheesecake.json │ │ │ ├── enzian.json │ │ │ ├── fur_chestplate.json │ │ │ ├── meadow_banner.json │ │ │ ├── woodcutter.json │ │ │ ├── wooden_bucket.json │ │ │ ├── cheese_block.json │ │ │ ├── cheese_form.json │ │ │ ├── cheese_sandwich.json │ │ │ ├── cheese_tart_slice.json │ │ │ ├── cheesecake_slice.json │ │ │ ├── delphinium.json │ │ │ ├── eriophorum.json │ │ │ ├── felting_needle.json │ │ │ ├── fire_lily.json │ │ │ ├── piece_of_cheese.json │ │ │ ├── pine_barn_door.json │ │ │ ├── pine_chest_boat.json │ │ │ ├── pine_hanging_sign.json │ │ │ ├── raw_buffalo_meat.json │ │ │ ├── saxifrage.json │ │ │ ├── small_fir.json │ │ │ ├── watering_can.json │ │ │ ├── wooden_flower_box.json │ │ │ ├── wooden_flower_pot.json │ │ │ ├── alpine_poppy.json │ │ │ ├── big_flower_pot.json │ │ │ ├── cooking_cauldron.json │ │ │ ├── pine_sapling.json │ │ │ ├── sausage_with_cheese.json │ │ │ ├── warped_cheese_block.json │ │ │ ├── wooden_cauldron.json │ │ │ ├── climbing_rope_topmount.json │ │ │ ├── cooked_buffalo_meat.json │ │ │ ├── goat_cheese_block.json │ │ │ ├── grain_cheese_block.json │ │ │ ├── piece_of_buffalo_cheese.json │ │ │ ├── piece_of_goat_cheese.json │ │ │ ├── piece_of_grain_cheese.json │ │ │ ├── piece_of_sheep_cheese.json │ │ │ ├── piece_of_warped_cheese.json │ │ │ ├── sheep_cheese_block.json │ │ │ ├── wooden_milk_bucket.json │ │ │ ├── wooden_water_bucket.json │ │ │ ├── buffalo_cheese_block.json │ │ │ ├── eriophorum_tall.json │ │ │ ├── piece_of_amethyst_cheese.json │ │ │ ├── wooden_flower_pot_big.json │ │ │ ├── wooly_cow_spawn_egg.json │ │ │ ├── amethyst_cheese_block.json │ │ │ ├── wooden_goat_milk_bucket.json │ │ │ ├── wooden_grain_milk_bucket.json │ │ │ ├── wooden_sheep_milk_bucket.json │ │ │ ├── wooly_sheep_spawn_egg.json │ │ │ ├── horned_sheep_spawn_egg.json │ │ │ ├── water_buffalo_spawn_egg.json │ │ │ ├── wooden_amethyst_milk_bucket.json │ │ │ ├── wooden_buffalo_milk_bucket.json │ │ │ ├── wooden_flower_pot_small.json │ │ │ └── wooden_warped_milk_bucket.json │ │ └── block │ │ │ ├── pine_sign.json │ │ │ ├── meadow_standard.json │ │ │ ├── pine_hanging_sign.json │ │ │ ├── inky_wool.json │ │ │ ├── limestone.json │ │ │ ├── umbra_wool.json │ │ │ ├── flecked_wool.json │ │ │ ├── patched_wool.json │ │ │ ├── warped_wool.json │ │ │ ├── alpine_coal_ore.json │ │ │ ├── alpine_gold_ore.json │ │ │ ├── alpine_iron_ore.json │ │ │ ├── highland_wool.json │ │ │ ├── meadow_banner.json │ │ │ ├── rocky_wool.json │ │ │ ├── alpine_copper_ore.json │ │ │ ├── alpine_lapis_ore.json │ │ │ ├── alpine_salt_ore_1.json │ │ │ ├── alpine_salt_ore_2.json │ │ │ ├── cobbled_limestone.json │ │ │ ├── pine_button.json │ │ │ ├── pine_planks.json │ │ │ ├── pine_sapling.json │ │ │ ├── alpine_diamond_ore.json │ │ │ ├── alpine_emerald_ore.json │ │ │ ├── alpine_redstone_ore.json │ │ │ ├── inky_bed_foot.json │ │ │ ├── inky_bed_head.json │ │ │ ├── limestone_bricks_1.json │ │ │ ├── limestone_bricks_2.json │ │ │ ├── limestone_bricks_3.json │ │ │ ├── limestone_bricks_4.json │ │ │ ├── limestone_bricks_5.json │ │ │ ├── limestone_bricks_6.json │ │ │ ├── polished_limestone.json │ │ │ ├── straw_bed_foot.json │ │ │ ├── straw_bed_head.json │ │ │ ├── umbra_bed_foot.json │ │ │ ├── umbra_bed_head.json │ │ │ ├── flecked_bed_foot.json │ │ │ ├── flecked_bed_head.json │ │ │ ├── patched_bed_foot.json │ │ │ ├── patched_bed_head.json │ │ │ ├── pine_fence_post.json │ │ │ ├── pine_fence_side.json │ │ │ ├── pine_leaves_inventory.json │ │ │ ├── pine_slab_double.json │ │ │ ├── potted_enzian.json │ │ │ ├── small_fir_top.json │ │ │ ├── warped_bed_foot.json │ │ │ ├── warped_bed_head.json │ │ │ ├── highland_bed_foot.json │ │ │ ├── highland_bed_head.json │ │ │ ├── limestone_wall_inventory.json │ │ │ ├── limestone_wall_post.json │ │ │ ├── limestone_wall_side.json │ │ │ ├── mossy_cobbled_limestone.json │ │ │ ├── mossy_cobbled_limestone_2.json │ │ │ ├── mossy_limestone_bricks_0.json │ │ │ ├── mossy_limestone_bricks_1.json │ │ │ ├── mossy_limestone_bricks_2.json │ │ │ ├── mossy_limestone_bricks_3.json │ │ │ ├── mossy_limestone_bricks_4.json │ │ │ ├── mossy_limestone_bricks_5.json │ │ │ ├── pine_button_pressed.json │ │ │ ├── pine_pressure_plate.json │ │ │ ├── potted_saxifrage.json │ │ │ ├── rocky_bed_head.json │ │ │ ├── small_fir_bottom.json │ │ │ ├── tall_eriophorum_top.json │ │ │ ├── cracked_limestone_bricks_1.json │ │ │ ├── cracked_limestone_bricks_2.json │ │ │ ├── cracked_limestone_bricks_3.json │ │ │ ├── pine_button_inventory.json │ │ │ ├── pine_fence_gate.json │ │ │ ├── pine_fence_inventory.json │ │ │ ├── potted_alpine_poppy.json │ │ │ ├── potted_delphinium.json │ │ │ ├── potted_eriophorum.json │ │ │ ├── potted_fire_lily.json │ │ │ ├── potted_pine_sapling.json │ │ │ ├── rocky_bed_foot.json │ │ │ ├── tall_eriophorum_bottom.json │ │ │ ├── cobbled_limestone_slab_double.json │ │ │ ├── limestone_wall_side_tall.json │ │ │ └── pine_pressure_plate_down.json │ │ ├── textures │ │ ├── block │ │ │ ├── frame_fire.png.mcmeta │ │ │ ├── oil_lantern.png.mcmeta │ │ │ ├── fondue_cheese.png.mcmeta │ │ │ ├── brick_stove_top_on.png.mcmeta │ │ │ ├── water_still.png.mcmeta │ │ │ ├── brick_stove_front_on.png.mcmeta │ │ │ ├── cooking_cauldron_water.png.mcmeta │ │ │ ├── stove_tiles_wood.png.mcmeta │ │ │ ├── air.png │ │ │ ├── brick_stove_front_on_connected.png.mcmeta │ │ │ ├── ham.png │ │ │ ├── milk.png │ │ │ ├── stove_tiles_wood_connected.png.mcmeta │ │ │ ├── bench.png │ │ │ ├── camera.png │ │ │ ├── chain.png │ │ │ ├── chair.png │ │ │ ├── table.png │ │ │ ├── can_side.png │ │ │ ├── doormat.png │ │ │ ├── enzian_1.png │ │ │ ├── enzian_2.png │ │ │ ├── enzian_3.png │ │ │ ├── ham_board.png │ │ │ ├── ham_bone.png │ │ │ ├── inky_wool.png │ │ │ ├── limestone.png │ │ │ ├── oven_top.png │ │ │ ├── pine_pp.png │ │ │ ├── shelf_1.png │ │ │ ├── shelf_2.png │ │ │ ├── shelf_3.png │ │ │ ├── shelf_4.png │ │ │ ├── shelf_5.png │ │ │ ├── shelf_top.png │ │ │ ├── table_top.png │ │ │ ├── chair_decor.png │ │ │ ├── cheese_side.png │ │ │ ├── cheese_top.png │ │ │ ├── fire_lily_1.png │ │ │ ├── fire_lily_2.png │ │ │ ├── fire_lily_3.png │ │ │ ├── fondue_pan.png │ │ │ ├── frame_fire.png │ │ │ ├── frame_logs.png │ │ │ ├── goat_cheese.png │ │ │ ├── oil_lantern.png │ │ │ ├── pine_leaves.png │ │ │ ├── pine_planks.png │ │ │ ├── saxifrage_1.png │ │ │ ├── saxifrage_2.png │ │ │ ├── saxifrage_3.png │ │ │ ├── shelf_side.png │ │ │ ├── stone_bench.png │ │ │ ├── table_side.png │ │ │ ├── umbra_wool.png │ │ │ ├── warped_wool.png │ │ │ ├── water_still.png │ │ │ ├── window_main.png │ │ │ ├── alpine_poppy_1.png │ │ │ ├── alpine_poppy_2.png │ │ │ ├── alpine_poppy_3.png │ │ │ ├── brick_oven_top.png │ │ │ ├── buffalo_cheese.png │ │ │ ├── cheese_bottom.png │ │ │ ├── climbing_rope.png │ │ │ ├── delphinium_1.png │ │ │ ├── delphinium_2.png │ │ │ ├── delphinium_3.png │ │ │ ├── doormat_middle.png │ │ │ ├── doormat_side.png │ │ │ ├── eriophorum_1.png │ │ │ ├── eriophorum_2.png │ │ │ ├── eriophorum_3.png │ │ │ ├── flecked_wool.png │ │ │ ├── fondue_cheese.png │ │ │ ├── fondue_roster.png │ │ │ ├── grain_cheese.png │ │ │ ├── highland_wool.png │ │ │ ├── patched_wool.png │ │ │ ├── pine_beam_side.png │ │ │ ├── pine_beam_top.png │ │ │ ├── pine_door_top.png │ │ │ ├── pine_log_side.png │ │ │ ├── pine_log_top.png │ │ │ ├── pine_sapling.png │ │ │ ├── pine_trapdoor.png │ │ │ ├── sheep_cheese.png │ │ │ ├── small_fir_top.png │ │ │ ├── stove_bottom.png │ │ │ ├── table_middle.png │ │ │ ├── window_2_main.png │ │ │ ├── window_3_main.png │ │ │ ├── window_bottom.png │ │ │ ├── window_mid_2.png │ │ │ ├── window_mid_3.png │ │ │ ├── window_mid_a.png │ │ │ ├── window_top_2.png │ │ │ ├── window_top_3.png │ │ │ ├── window_top_a.png │ │ │ ├── alpine_birch_log.png │ │ │ ├── alpine_coal_ore.png │ │ │ ├── alpine_gold_ore.png │ │ │ ├── alpine_iron_ore.png │ │ │ ├── alpine_lapis_ore.png │ │ │ ├── brick_stove_lid.png │ │ │ ├── brick_stove_side.png │ │ │ ├── brick_stove_top.png │ │ │ ├── cauldron_bottom.png │ │ │ ├── cheese_cake_side.png │ │ │ ├── cheese_cake_top.png │ │ │ ├── cheese_form_top.png │ │ │ ├── cheese_tart_side.png │ │ │ ├── cheese_tart_top.png │ │ │ ├── cooking_cauldron.png │ │ │ ├── pine_door_bottom.png │ │ │ ├── pine_slab_double.png │ │ │ ├── pine_window_main.png │ │ │ ├── rocky_sheep_wool.png │ │ │ ├── small_fir_bottom.png │ │ │ ├── stone_table_side.png │ │ │ ├── stove_bench_side.png │ │ │ ├── stove_bench_top.png │ │ │ ├── stove_tiles_lid.png │ │ │ ├── stove_tiles_side.png │ │ │ ├── stove_tiles_wood.png │ │ │ ├── wheelbarrow_side.png │ │ │ ├── wheelbarrow_top.png │ │ │ ├── window_bottom_2.png │ │ │ ├── window_bottom_3.png │ │ │ ├── window_pane_top.png │ │ │ ├── window_pane_top3.png │ │ │ ├── alpine_copper_ore.png │ │ │ ├── alpine_diamond_ore.png │ │ │ ├── alpine_emerald_ore.png │ │ │ ├── alpine_redstone_ore.png │ │ │ ├── alpine_salt_ore_1.png │ │ │ ├── alpine_salt_ore_2.png │ │ │ ├── brick_stove_bottom.png │ │ │ ├── brick_stove_front.png │ │ │ ├── brick_stove_top_on.png │ │ │ ├── cheese_cake_bottom.png │ │ │ ├── cheese_cake_eaten.png │ │ │ ├── cheese_form_bottom.png │ │ │ ├── cheese_form_inside.png │ │ │ ├── cheese_form_side_1.png │ │ │ ├── cheese_form_side_2.png │ │ │ ├── cheese_form_support.png │ │ │ ├── cheese_form_top_2.png │ │ │ ├── cheese_tart_bottom.png │ │ │ ├── cheese_tart_eaten.png │ │ │ ├── chiseled_limestone.png │ │ │ ├── cobbled_limestone.png │ │ │ ├── eriophorum_potted.png │ │ │ ├── lavender_cheese_top.png │ │ │ ├── limestone_bricks_1.png │ │ │ ├── limestone_bricks_2.png │ │ │ ├── limestone_bricks_3.png │ │ │ ├── limestone_bricks_4.png │ │ │ ├── limestone_bricks_5.png │ │ │ ├── limestone_bricks_6.png │ │ │ ├── pine_barn_door_top.png │ │ │ ├── pine_barn_trapdoor.png │ │ │ ├── polished_limestone.png │ │ │ ├── stone_table_middle.png │ │ │ ├── stove_tiles_front.png │ │ │ ├── warped_cheese_side.png │ │ │ ├── warped_cheese_top.png │ │ │ ├── window_shutter_0mid.png │ │ │ ├── window_shutter_0top.png │ │ │ ├── window_shutter_1mid.png │ │ │ ├── window_shutter_1top.png │ │ │ ├── window_shutter_2mid.png │ │ │ ├── window_shutter_3mid.png │ │ │ ├── window_shutter_3top.png │ │ │ ├── wooden_cauldron_top.png │ │ │ ├── wooden_watering_can.png │ │ │ └── yellow_pine_leaves.png │ │ ├── item │ │ │ ├── wood_bucket_water.png.mcmeta │ │ │ ├── wooden_milk_bucket.png.mcmeta │ │ │ ├── axe.png │ │ │ ├── can.png │ │ │ ├── frame.png │ │ │ ├── log.png │ │ │ ├── camera.png │ │ │ ├── doormat.png │ │ │ ├── fondue.png │ │ │ ├── rennet.png │ │ │ ├── cheesecake.png │ │ │ ├── fur_boots.png │ │ │ ├── fur_helmet.png │ │ │ ├── pine_boat.png │ │ │ ├── pine_door.png │ │ │ ├── pine_sign.png │ │ │ ├── woodcutter.png │ │ │ ├── alpine_salt.png │ │ │ ├── cheese_form.png │ │ │ ├── cheese_roll.png │ │ │ ├── cheese_stick.png │ │ │ ├── cheese_tart.png │ │ │ ├── fur_leggings.png │ │ │ ├── oil_lantern.png │ │ │ ├── pine_sapling.png │ │ │ ├── roasted_ham.png │ │ │ ├── wheelbarrow.png │ │ │ ├── wood_bucket.png │ │ │ ├── cheese_sandwich.png │ │ │ ├── climbing_rope.png │ │ │ ├── felting_needle.png │ │ │ ├── fur_chestplate.png │ │ │ ├── meadow_banner.png │ │ │ ├── pine_barn_door.png │ │ │ ├── pine_chest_boat.png │ │ │ ├── slice_of_cheese.png │ │ │ ├── small_fir_item.png │ │ │ ├── warped_cheese.png │ │ │ ├── wheel_of_cheese.png │ │ │ ├── wooden_cauldron.png │ │ │ ├── cheese_tart_slice.png │ │ │ ├── cheesecake_slice.png │ │ │ ├── cooking_cauldron.png │ │ │ ├── pine_hanging_sign.png │ │ │ ├── raw_buffalo_meat.png │ │ │ ├── wood_bucket_water.png │ │ │ └── wooden_flower_box.png │ │ ├── entity │ │ │ ├── bed │ │ │ │ ├── inky.png │ │ │ │ ├── straw.png │ │ │ │ ├── umbra.png │ │ │ │ ├── warped.png │ │ │ │ ├── flecked.png │ │ │ │ ├── highland.png │ │ │ │ ├── patched.png │ │ │ │ └── rocky_sheep.png │ │ │ ├── boat │ │ │ │ └── pine.png │ │ │ ├── signs │ │ │ │ ├── pine.png │ │ │ │ └── hanging │ │ │ │ │ └── pine.png │ │ │ ├── cow │ │ │ │ ├── umbra_cow.png │ │ │ │ └── warped_cow.png │ │ │ ├── chest_boat │ │ │ │ └── pine.png │ │ │ ├── sheep │ │ │ │ ├── fuzzy_sheep.png │ │ │ │ ├── inky_sheep.png │ │ │ │ └── rocky_sheep.png │ │ │ └── villager │ │ │ │ └── villager.png │ │ ├── gui │ │ │ ├── woodcutter.png │ │ │ ├── cheese_form_gui.png │ │ │ ├── hanging_signs │ │ │ │ └── pine.png │ │ │ └── cooking_cauldron_gui.png │ │ ├── models │ │ │ └── armor │ │ │ │ └── fur.png │ │ └── banner │ │ │ └── meadow_banner.png │ │ ├── blockstates │ │ ├── inky_wool.json │ │ ├── umbra_wool.json │ │ ├── flecked_wool.json │ │ ├── patched_wool.json │ │ ├── pine_planks.json │ │ ├── warped_wool.json │ │ ├── carpet.json │ │ ├── climbing_rope.json │ │ ├── highland_wool.json │ │ ├── cobbled_limestone.json │ │ ├── potted_enzian.json │ │ ├── stove_tiles_bench.json │ │ ├── inky_carpet.json │ │ ├── pine_sign.json │ │ ├── polished_limestone.json │ │ ├── potted_fire_lily.json │ │ ├── potted_saxifrage.json │ │ ├── climbing_rope_topmount.json │ │ ├── meadow_banner.json │ │ ├── pine_leaves.json │ │ ├── pine_leaves_2.json │ │ ├── pine_sapling.json │ │ ├── pine_wall_sign.json │ │ ├── polished_limestone_bricks.json │ │ ├── potted_delphinium.json │ │ ├── potted_eriophorum.json │ │ ├── umbra_carpet.json │ │ ├── warped_carpet.json │ │ ├── chiseled_limestone_bricks.json │ │ ├── flecked_carpet.json │ │ ├── highland_carpet.json │ │ ├── meadow_wall_banner.json │ │ ├── patched_carpet.json │ │ ├── potted_alpine_poppy.json │ │ ├── rocky_carpet.json │ │ ├── wooden_cauldron.json │ │ ├── pine_hanging_sign.json │ │ ├── pine_wall_hanging_sign.json │ │ ├── potted_pine_sapling.json │ │ ├── wooden_flower_pot_big.json │ │ ├── alpine_birch_leaves_hanging.json │ │ └── wooden_flower_pot_small.json │ │ └── sounds │ │ ├── cabinet_open.ogg │ │ ├── woodcutter.ogg │ │ ├── cabinet_close.ogg │ │ ├── click_camera1.ogg │ │ ├── click_camera2.ogg │ │ ├── fur_armor_equip.ogg │ │ ├── cooking_pot_boiling.ogg │ │ ├── water_buffalo_death.ogg │ │ ├── water_buffalo_hurt.ogg │ │ ├── water_buffalo_ambient1.ogg │ │ └── water_buffalo_ambient2.ogg │ ├── pack.png │ └── resourcepacks │ ├── better_leaves │ ├── assets │ │ └── meadow │ │ │ ├── models │ │ │ └── item │ │ │ │ ├── pine_leaves.json │ │ │ │ └── alpine_birch_leaves_hanging.json │ │ │ └── blockstates │ │ │ ├── pine_leaves.json │ │ │ └── pine_leaves_2.json │ ├── pack.mcmeta │ └── pack.png │ ├── green_stove │ ├── pack.png │ └── pack.mcmeta │ └── optifine_support │ └── pack.png └── gradle └── wrapper └── gradle-wrapper.jar /forge/gradle.properties: -------------------------------------------------------------------------------- 1 | loom.platform=forge -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/blocks/flowers.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/blocks/tall_flowers.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } 4 | -------------------------------------------------------------------------------- /common/src/main/resources/architectury.common.json: -------------------------------------------------------------------------------- 1 | { 2 | "accessWidener": "meadow.accesswidener" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/bench.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/bench" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/shelf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/shelf_1" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/table" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/pine_log" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cheese_rack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/cheese_rack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/inky_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/inky_carpet" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/inky_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/inky_wool" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/limestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/limestone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_beam.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/pine_beam" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/pine_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/pine_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/pine_wood" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/rocky_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/rocky_wool" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/stone_bench.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/stone_bench" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/stone_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/stone_table" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/umbra_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/umbra_wool" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/warped_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/warped_wool" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/items/salt.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/items/salts.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/chair.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/pine_chair_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/flecked_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/flecked_wool" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/highland_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/highland_wool" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/patched_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/patched_wool" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/pine_planks" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/shutter_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/shutter_main" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/stove_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/stove_tiles" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/umbra_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/umbra_carpet" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/warped_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/warped_carpet" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/forge/tags/items/salt.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/data/forge/tags/items/salts.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#meadow:logs" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#meadow:wool" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#meadow:logs" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/signs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:pine_sign" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/alpine_birch_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/alpine_birch_log" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/alpine_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/alpine_coal_ore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/alpine_gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/alpine_gold_ore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/alpine_iron_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/alpine_iron_ore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/alpine_lapis_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/alpine_lapis_ore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/alpine_oak_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/alpine_oak_log" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/alpine_salt_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/alpine_salt_ore_1" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/flecked_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/flecked_carpet" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/highland_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/highland_carpet" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/limestone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/limestone_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/limestone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/limestone_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/patched_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/patched_carpet" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/pine_button_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/pine_fence_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/pine_fence_gate" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/pine_leaves_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_railing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/railing_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/rocky_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/rocky_sheep_carpet" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/stove_tiles_lid.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/stove_tiles_lid" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/blocks/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:pine_planks" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/alpine_copper_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/alpine_copper_ore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/alpine_diamond_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/alpine_diamond_ore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/alpine_emerald_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/alpine_emerald_ore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cobbled_limestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/cobbled_limestone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/limestone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/limestone_bricks_1" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/pine_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/shutter_block_berry.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/shutter_main_berry" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/shutter_block_fir.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/shutter_main_fir" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/shutter_block_poppy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/shutter_main_poppy" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/stove_tiles_bench.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/stove_tiles_bench" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/stove_tiles_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/stove_tiles_wood" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/stripped_pine_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/stripped_pine_log" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/stripped_pine_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/stripped_pine_wood" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/gold_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:alpine_gold_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/iron_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:alpine_iron_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/logs_that_burn.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#meadow:logs" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/standing_signs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:pine_sign" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wall_signs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:pine_wall_sign" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/coal_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:alpine_coal_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/gold_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:alpine_gold_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/iron_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:alpine_iron_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/logs_that_burn.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#meadow:logs" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:pine_planks" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/pack.png -------------------------------------------------------------------------------- /forge/src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Meadow", 4 | "pack_format": 15 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/alpine_redstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/alpine_redstone_ore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/furnace_cobblestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/furnace_cobblestone_off" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/limestone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/limestone_brick_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/limestone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/limestone_wall_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/pine_pressure_plate" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/frame_fire.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 3 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/oil_lantern.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 8 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/blocks/flower_pots.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:pine_sapling" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/items/big_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:tall_flowers" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/lapis_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:alpine_lapis_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/oak_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:alpine_oak_log" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/copper_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:alpine_copper_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/diamond_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:alpine_diamond_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/emerald_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:alpine_emerald_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/lapis_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:alpine_lapis_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/wooden_buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:pine_button" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/wooden_fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:pine_fence" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/wooden_slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:pine_slab" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/wooden_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:pine_stairs" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cobbled_limestone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/cobbled_limestone_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/limestone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/limestone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/mossy_cobbled_limestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/mossy_cobbled_limestone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/mossy_limestone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/mossy_limestone_bricks_0" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_barn_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/pine_barn_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/polished_limestone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/polished_limestone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/items/bread.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:bread" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/items/eggs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:egg" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/items/wheat.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:wheat" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/forge/tags/items/eggs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:egg" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/items/bread.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#c:bread" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/items/small_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:small_flowers" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/diamond_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:alpine_diamond_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/emerald_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:alpine_emerald_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/redstone_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:alpine_redstone_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/redstone_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:alpine_redstone_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/wooden_trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:pine_trapdoor" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/chiseled_limestone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/chiseled_limestone_bricks" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cobbled_limestone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/cobbled_limestone_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cracked_limestone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/cracked_limestone_bricks_1" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/limestone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/limestone_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/mossy_limestone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/mossy_limestone_brick_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_window.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/pine_window_inventory" 3 | } 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/items/shears.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:shears" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/forge/tags/items/bread.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:bread" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/forge/tags/items/wheat.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:wheat" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/spawns_flecked_sheep.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#meadow:is_meadow" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/spawns_warped_cow.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:warped_forest" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/stone_tool_materials.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:cobbled_limestone" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/inky_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/inky_wool" } 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/umbra_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/umbra_wool" } 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/pine_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "meadow:block/pine_planks" 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cobbled_limestone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/cobbled_limestone_wall_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/mossy_cobbled_limestone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/mossy_cobbled_limestone_slab" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/mossy_limestone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/mossy_limestone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/items/tools/shears.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:shears" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/forge/tags/items/buckets.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:wooden_bucket" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wall_hanging_signs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:pine_wall_hanging_sign" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/stone_crafting_materials.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:cobbled_limestone" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/flecked_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/flecked_wool" } 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/patched_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/patched_wool" } 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/pine_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/pine_planks" } 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/warped_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/warped_wool" } 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/meadow_standard.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "minecraft:block/oak_planks" 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/pine_hanging_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "meadow:block/pine_planks" 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/mossy_cobbled_limestone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/mossy_cobbled_limestone_stairs" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/mossy_limestone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/mossy_limestone_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/coal_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:alpine_coal_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:pine_planks" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/saplings.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:pine_sapling" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/saplings.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:pine_sapling" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/wooden_pressure_plates.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:pine_pressure_plate" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/better_leaves/assets/meadow/models/item/pine_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/pine_leaves_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/carpet" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/climbing_rope.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/climbing_rope" } 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/highland_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/highland_wool" } 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/alpine_birch_leaves_hanging.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/alpine_birch_leaves_hanging_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/mossy_cobbled_limestone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/mossy_cobbled_limestone_wall_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/blocks/allows_cooking.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:stove_tiles_wood" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/items/stripped_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:stripped_pine_log" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/items/stripped_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:stripped_pine_wood" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/forge/tags/items/buckets/empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:wooden_bucket" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/forge/tags/items/buckets/milk.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:wooden_milk_bucket" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/forge/tags/items/stripped_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:stripped_pine_log" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/blocks/birch_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:alpine_birch_log" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/items/birch_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:alpine_birch_log" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/items/egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#forge:eggs", 5 | "#c:eggs" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/items/milk.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#forge:milk", 5 | "#c:milk" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/items/milk_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:milk_bucket" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/is_meadow.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:meadow" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/copper_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:alpine_copper_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wooden_buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:pine_button" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wooden_slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:pine_slab" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wooden_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:pine_stairs" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wool_carpets.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#meadow:wool_carpets" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/cobbled_limestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/cobbled_limestone" } 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/potted_enzian.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/potted_enzian" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/stove_tiles_bench.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/stove_tiles_bench" } 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/sun_patterned_window.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/sun_patterned_window_inventory" 3 | } 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/fondue_cheese.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 24, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/forge/tags/blocks/allows_cooking.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:stove_tiles_wood" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/forge/tags/items/buckets/water.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:wooden_water_bucket" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/forge/tags/items/stripped_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:stripped_pine_wood" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/items/cheese.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#forge:cheese", 5 | "#c:cheese" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/items/wheat.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#forge:wheat", 5 | "#c:wheat" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/meadow_biomes.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:meadow" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/fence_gates.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:pine_fence_gate" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/tall_flowers.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:eriophorum_tall" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wooden_fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:pine_fence", 4 | "meadow:pine_railing" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/tall_flowers.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:eriophorum_tall", 4 | "meadow:small_fir" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/items/wooden_doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:pine_door", 4 | "meadow:pine_barn_door" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/inky_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/inky_carpet" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/pine_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/pine_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/polished_limestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/polished_limestone" } 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/potted_fire_lily.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/potted_fire_lily" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/potted_saxifrage.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/potted_saxifrage" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/can.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/can" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/heart_patterned_window.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/heart_patterned_window_inventory" 3 | } 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/inky_bed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:item/bed", 3 | "textures": { 4 | "0": "meadow:entity/bed/inky" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/brick_stove_top_on.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 6, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/water_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4, 4 | "interpolate": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/wood_bucket_water.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 7, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/wooden_milk_bucket.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 10, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/farmersdelight/tags/blocks/heat_sources.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#meadow:allows_cooking" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/items/cheeses.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#forge:cheeses", 5 | "#c:cheeses" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/items/shears.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#c:shears", 5 | "#c:tools/shears" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/has_structure/bench.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:meadow" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/has_structure/chalet.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:meadow" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/has_structure/chapel.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:meadow" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/better_leaves/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 15, 4 | "description": "Bushy leaves for Meadow" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/climbing_rope_topmount.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/climbing_rope_topmount" } 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/meadow_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/meadow_banner" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/pine_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/pine_leaves_1" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/pine_leaves_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/pine_leaves_2" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/pine_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/pine_sapling" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/pine_wall_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/pine_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/polished_limestone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/polished_limestone" } 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/potted_delphinium.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/potted_delphinium" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/potted_eriophorum.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/potted_eriophorum" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/umbra_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/umbra_carpet" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/warped_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/warped_carpet" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/inky_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/inky_wool" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/limestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/limestone" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/umbra_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/umbra_wool" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/camera.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/camera" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/fire_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/log" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/frame.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/frame" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/fur_boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/fur_boots" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_boat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/pine_boat" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/pine_sign" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/rennet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/rennet" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/straw_bed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:item/bed", 3 | "textures": { 4 | "0": "meadow:entity/bed/straw" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/umbra_bed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:item/bed", 3 | "textures": { 4 | "0": "meadow:entity/bed/umbra" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/warped_bed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:item/bed", 3 | "textures": { 4 | "0": "meadow:entity/bed/warped" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/brick_stove_front_on.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cooking_cauldron_water.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 8, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/stove_tiles_wood.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": false, 4 | "frametime": 4 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/structures/bench.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/data/meadow/structures/bench.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/items/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#meadow:pine_logs", 5 | "#meadow:birch_logs" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/has_structure/logging_camp.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:meadow" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/has_structure/monument.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:meadow" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/spawns_rocky_sheep.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_hill", 4 | "#minecraft:is_mountain" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/worldgen/noise/cracks.json: -------------------------------------------------------------------------------- 1 | { 2 | "firstOctave": -4, 3 | "amplitudes": [ 4 | 1.25, 5 | 1.35, 6 | 1.5, 7 | 1 8 | ] 9 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/chiseled_limestone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/chiseled_limestone_bricks" } 4 | } 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/flecked_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/flecked_carpet" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/highland_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/highland_carpet" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/meadow_wall_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/meadow_banner" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/patched_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/patched_carpet" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/potted_alpine_poppy.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { "model": "meadow:block/potted_alpine_poppy" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/rocky_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/rocky_sheep_carpet" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/wooden_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/wooden_cauldron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/flecked_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/flecked_wool" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/patched_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/patched_wool" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/warped_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/warped_wool" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/alpine_salt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/alpine_salt" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cheese_roll.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/cheese_roll" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cheese_stick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/cheese_stick" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/doormat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/doormat" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/flecked_bed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:item/bed", 3 | "textures": { 4 | "0": "meadow:entity/bed/flecked" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/fondue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/fondue" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/fur_helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/fur_helmet" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/fur_leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/fur_leggings" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/highland_bed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:item/bed", 3 | "textures": { 4 | "0": "meadow:entity/bed/highland" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/patched_bed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:item/bed", 3 | "textures": { 4 | "0": "meadow:entity/bed/patched" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/pine_door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/roasted_ham.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/roasted_ham" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/rocky_bed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:item/bed", 3 | "textures": { 4 | "0": "meadow:entity/bed/rocky_sheep" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wheelbarrow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wheelbarrow" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/structures/chalet.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/data/meadow/structures/chalet.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/structures/chapel.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/data/meadow/structures/chapel.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/blocks/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#meadow:pine_logs", 5 | "#meadow:birch_logs" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/items/large_water_fill.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:water_bucket", 4 | "meadow:wooden_water_bucket" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/has_structure/observation_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:meadow" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/spawns_long_nosed_sheep.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_hill", 4 | "#minecraft:is_mountain" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wooden_pressure_plates.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:pine_pressure_plate" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/green_stove/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/resourcepacks/green_stove/pack.png -------------------------------------------------------------------------------- /forge/src/main/resources/data/meadow/tags/worldgen/biome/spawns_meadow_wooly_cows.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:meadow", 4 | "minecraft:dark_forest" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/pine_hanging_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/pine_hanging_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/alpine_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/alpine_coal_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/alpine_gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/alpine_gold_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/alpine_iron_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/alpine_iron_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/highland_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/highland_wool" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/meadow_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "minecraft:block/oak_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/rocky_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/rocky_sheep_wool" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cheese_tart.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/cheese_tart" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cheesecake.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/cheesecake" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/enzian.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "meadow:block/enzian_1" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/fur_chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/fur_chestplate" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/meadow_banner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/meadow_banner" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/woodcutter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/woodcutter" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wooden_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wood_bucket" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/sounds/cabinet_open.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/sounds/cabinet_open.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/sounds/woodcutter.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/sounds/woodcutter.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/air.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/brick_stove_front_on_connected.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 5, 4 | "interpolate": true 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/ham.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/ham.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/milk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/milk.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/stove_tiles_wood_connected.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": false, 4 | "frametime": 4 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/axe.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/can.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/can.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/frame.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/log.png -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/items/milk.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:milk_bucket", 5 | "meadow:wooden_milk_bucket" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/data/forge/tags/blocks/cobblestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:cobbled_limestone" 5 | ] 6 | } 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /common/src/main/resources/data/forge/tags/items/milk.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:milk_bucket", 5 | "meadow:wooden_milk_bucket" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/structures/monument.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/data/meadow/structures/monument.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/items/water_bottles.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#forge:water_bottles", 5 | "#c:water_bottles" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/better_leaves/assets/meadow/models/item/alpine_birch_leaves_hanging.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/alpine_birch_leaves_hanging_inventory" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/better_leaves/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/resourcepacks/better_leaves/pack.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/pine_wall_hanging_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/pine_hanging_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/potted_pine_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/potted_pine_sapling" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/wooden_flower_pot_big.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/wooden_flower_pot_big" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/alpine_copper_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/alpine_copper_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/alpine_lapis_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/alpine_lapis_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/alpine_salt_ore_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/alpine_salt_ore_1" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/alpine_salt_ore_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/alpine_salt_ore_2" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/cobbled_limestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/cobbled_limestone" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/pine_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button", 3 | "textures": { 4 | "texture": "meadow:block/pine_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/pine_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/pine_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/pine_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "meadow:item/pine_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cheese_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wheel_of_cheese" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cheese_form.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/cheese_form" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cheese_sandwich.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/cheese_sandwich" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cheese_tart_slice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/cheese_tart_slice" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cheesecake_slice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/cheesecake_slice" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/delphinium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "meadow:block/delphinium_1" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/eriophorum.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "meadow:block/eriophorum_1" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/felting_needle.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/felting_needle" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/fire_lily.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "meadow:block/fire_lily_2" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/piece_of_cheese.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/slice_of_cheese" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_barn_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/pine_barn_door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_chest_boat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/pine_chest_boat" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_hanging_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/pine_hanging_sign" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/raw_buffalo_meat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/raw_buffalo_meat" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/saxifrage.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "meadow:block/saxifrage_1" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/small_fir.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/small_fir_item" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/watering_can.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wooden_watering_can" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wooden_flower_box.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wooden_flower_box" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wooden_flower_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/flower_pot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/sounds/cabinet_close.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/sounds/cabinet_close.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/sounds/click_camera1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/sounds/click_camera1.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/sounds/click_camera2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/sounds/click_camera2.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/bench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/bench.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/camera.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/chain.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/chair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/chair.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/table.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/camera.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/doormat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/doormat.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/fondue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/fondue.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/rennet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/rennet.png -------------------------------------------------------------------------------- /common/src/main/resources/data/forge/tags/blocks/fence_gates/wooden.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:pine_fence_gate" 5 | ] 6 | } 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/structures/logging_camp.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/data/meadow/structures/logging_camp.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wooden_doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:pine_door", 5 | "meadow:pine_barn_door" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/optifine_support/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/resourcepacks/optifine_support/pack.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/alpine_diamond_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/alpine_diamond_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/alpine_emerald_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/alpine_emerald_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/alpine_redstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/alpine_redstone_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/inky_bed_foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/template_bed_foot", 3 | "textures": { 4 | "bed": "meadow:entity/bed/inky" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/inky_bed_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/template_bed_head", 3 | "textures": { 4 | "bed": "meadow:entity/bed/inky" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/limestone_bricks_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/limestone_bricks_1" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/limestone_bricks_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/limestone_bricks_2" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/limestone_bricks_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/limestone_bricks_3" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/limestone_bricks_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/limestone_bricks_4" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/limestone_bricks_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/limestone_bricks_5" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/limestone_bricks_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/limestone_bricks_6" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/polished_limestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/polished_limestone" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/straw_bed_foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/template_bed_foot", 3 | "textures": { 4 | "bed": "meadow:entity/bed/straw" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/straw_bed_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/template_bed_head", 3 | "textures": { 4 | "bed": "meadow:entity/bed/straw" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/umbra_bed_foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/template_bed_foot", 3 | "textures": { 4 | "bed": "meadow:entity/bed/umbra" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/umbra_bed_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/template_bed_head", 3 | "textures": { 4 | "bed": "meadow:entity/bed/umbra" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/alpine_poppy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "meadow:block/alpine_poppy_1" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/big_flower_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/flower_pot_big" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cooking_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/cooking_cauldron" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/pine_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/pine_sapling" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/sausage_with_cheese.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/sausage_with_cheese" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/warped_cheese_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/warped_cheese" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wooden_cauldron.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wooden_cauldron" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/sounds/fur_armor_equip.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/sounds/fur_armor_equip.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/can_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/can_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/doormat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/doormat.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/enzian_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/enzian_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/enzian_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/enzian_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/enzian_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/enzian_3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/ham_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/ham_board.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/ham_bone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/ham_bone.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/inky_wool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/inky_wool.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/limestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/limestone.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/oven_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/oven_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/pine_pp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/pine_pp.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/shelf_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/shelf_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/shelf_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/shelf_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/shelf_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/shelf_3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/shelf_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/shelf_4.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/shelf_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/shelf_5.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/shelf_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/shelf_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/table_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/bed/inky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/bed/inky.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/gui/woodcutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/gui/woodcutter.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/cheesecake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/cheesecake.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/fur_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/fur_boots.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/fur_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/fur_helmet.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/pine_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/pine_boat.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/pine_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/pine_door.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/pine_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/pine_sign.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/woodcutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/woodcutter.png -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/items/water_bottles.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:wooden_water_bucket", 5 | "minecraft:water_bucket" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/spawns_fuzzy_sheep.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_forest", 4 | "#minecraft:has_structure/woodland_mansion" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/spawns_inky_sheep.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_savanna", 4 | "#minecraft:has_structure/village_savanna" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/spawns_sunset_cow.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_savanna", 4 | "#minecraft:has_structure/village_savanna" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/spawns_umbra_cow.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_forest", 4 | "#minecraft:has_structure/woodland_mansion" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/green_stove/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 15, 4 | "description": "The old, green Stove from previous Meadow Versions." 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/flecked_bed_foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/template_bed_foot", 3 | "textures": { 4 | "bed": "meadow:entity/bed/flecked" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/flecked_bed_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/template_bed_head", 3 | "textures": { 4 | "bed": "meadow:entity/bed/flecked" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/patched_bed_foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/template_bed_foot", 3 | "textures": { 4 | "bed": "meadow:entity/bed/patched" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/patched_bed_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/template_bed_head", 3 | "textures": { 4 | "bed": "meadow:entity/bed/patched" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/pine_fence_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_post", 3 | "textures": { 4 | "texture": "meadow:block/pine_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/pine_fence_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_side", 3 | "textures": { 4 | "texture": "meadow:block/pine_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/pine_leaves_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/pine_leaves" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/pine_slab_double.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/pine_slab_double" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/potted_enzian.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/flower_pot_cross", 3 | "textures": { 4 | "plant": "meadow:block/enzian_3" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/small_fir_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/tinted_cross", 3 | "textures": { 4 | "cross": "meadow:block/small_fir_top" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/warped_bed_foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/template_bed_foot", 3 | "textures": { 4 | "bed": "meadow:entity/bed/warped" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/warped_bed_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/template_bed_head", 3 | "textures": { 4 | "bed": "meadow:entity/bed/warped" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/climbing_rope_topmount.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/climbing_rope" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/cooked_buffalo_meat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/cooked_buffalo_meat" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/goat_cheese_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wheel_of_goat_cheese" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/grain_cheese_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wheel_of_grain_cheese" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/piece_of_buffalo_cheese.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/slice_of_herb_cheese" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/piece_of_goat_cheese.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/slice_of_goat_cheese" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/piece_of_grain_cheese.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/slice_of_grain_cheese" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/piece_of_sheep_cheese.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/slice_of_sheep_cheese" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/piece_of_warped_cheese.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/warped_cheese_slice" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/sheep_cheese_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wheel_of_sheep_cheese" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wooden_milk_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wooden_milk_bucket" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wooden_water_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wood_bucket_water" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/sounds/cooking_pot_boiling.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/sounds/cooking_pot_boiling.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/sounds/water_buffalo_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/sounds/water_buffalo_death.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/sounds/water_buffalo_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/sounds/water_buffalo_hurt.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/chair_decor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/chair_decor.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/fire_lily_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/fire_lily_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/fire_lily_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/fire_lily_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/fire_lily_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/fire_lily_3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/fondue_pan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/fondue_pan.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/frame_fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/frame_fire.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/frame_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/frame_logs.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/goat_cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/goat_cheese.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/oil_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/oil_lantern.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/pine_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/pine_leaves.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/pine_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/pine_planks.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/saxifrage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/saxifrage_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/saxifrage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/saxifrage_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/saxifrage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/saxifrage_3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/shelf_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/shelf_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/stone_bench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/stone_bench.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/table_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/table_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/umbra_wool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/umbra_wool.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/warped_wool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/warped_wool.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/water_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/water_still.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_main.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/bed/straw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/bed/straw.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/bed/umbra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/bed/umbra.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/bed/warped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/bed/warped.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/boat/pine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/boat/pine.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/signs/pine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/signs/pine.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/alpine_salt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/alpine_salt.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/cheese_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/cheese_form.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/cheese_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/cheese_roll.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/cheese_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/cheese_stick.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/cheese_tart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/cheese_tart.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/fur_leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/fur_leggings.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/oil_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/oil_lantern.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/pine_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/pine_sapling.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/roasted_ham.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/roasted_ham.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/wheelbarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/wheelbarrow.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/wood_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/wood_bucket.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/models/armor/fur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/models/armor/fur.png -------------------------------------------------------------------------------- /common/src/main/resources/data/forge/tags/items/water_bottles.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:wooden_water_bucket", 5 | "minecraft:water_bucket" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/structures/observation_post.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/data/meadow/structures/observation_post.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/tags/worldgen/biome/spawns_patched_sheep.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_forest", 4 | "#minecraft:has_structure/woodland_mansion" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/meadow/worldgen/noise/dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "firstOctave": -4, 3 | "amplitudes": [ 4 | 1.25, 5 | 1.15, 6 | 0.5, 7 | 1.75, 8 | 2.25 9 | ] 10 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/climbable.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:climbing_rope", 5 | "meadow:climbing_rope_topmount" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/better_leaves/assets/meadow/blockstates/pine_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/pine_leaves_1" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/alpine_birch_leaves_hanging.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/alpine_birch_leaves_hanging" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/highland_bed_foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/template_bed_foot", 3 | "textures": { 4 | "bed": "meadow:entity/bed/highland" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/highland_bed_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/template_bed_head", 3 | "textures": { 4 | "bed": "meadow:entity/bed/highland" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/limestone_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "meadow:block/limestone" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/limestone_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "meadow:block/limestone" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/limestone_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "meadow:block/limestone" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/mossy_cobbled_limestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/mossy_cobbled_limestone" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/mossy_cobbled_limestone_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/mossy_cobbled_limestone_2" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/mossy_limestone_bricks_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/mossy_limestone_bricks_0" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/mossy_limestone_bricks_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/mossy_limestone_bricks_1" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/mossy_limestone_bricks_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/mossy_limestone_bricks_2" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/mossy_limestone_bricks_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/mossy_limestone_bricks_3" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/mossy_limestone_bricks_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/mossy_limestone_bricks_4" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/mossy_limestone_bricks_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/mossy_limestone_bricks_5" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/pine_button_pressed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_pressed", 3 | "textures": { 4 | "texture": "meadow:block/pine_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/pine_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pressure_plate_up", 3 | "textures": { 4 | "texture": "meadow:block/pine_pp" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/potted_saxifrage.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/flower_pot_cross", 3 | "textures": { 4 | "plant": "meadow:block/saxifrage_1" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/rocky_bed_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/template_bed_head", 3 | "textures": { 4 | "bed": "meadow:entity/bed/rocky_sheep" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/small_fir_bottom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/tinted_cross", 3 | "textures": { 4 | "cross": "meadow:block/small_fir_bottom" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/tall_eriophorum_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "meadow:block/tall_eriophorum_top" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/buffalo_cheese_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wheel_of_herb_cheese" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/eriophorum_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "meadow:block/tall_eriophorum_top_1" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/piece_of_amethyst_cheese.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/slice_of_amethyst_cheese" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wooden_flower_pot_big.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wooden_flower_pot_big" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wooly_cow_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/spawn_eggs/wooly_cow_spawn_egg" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/sounds/water_buffalo_ambient1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/sounds/water_buffalo_ambient1.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/sounds/water_buffalo_ambient2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/sounds/water_buffalo_ambient2.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/banner/meadow_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/banner/meadow_banner.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/alpine_poppy_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/alpine_poppy_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/alpine_poppy_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/alpine_poppy_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/alpine_poppy_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/alpine_poppy_3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/brick_oven_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/brick_oven_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/buffalo_cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/buffalo_cheese.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/climbing_rope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/climbing_rope.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/delphinium_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/delphinium_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/delphinium_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/delphinium_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/delphinium_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/delphinium_3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/doormat_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/doormat_middle.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/doormat_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/doormat_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/eriophorum_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/eriophorum_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/eriophorum_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/eriophorum_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/eriophorum_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/eriophorum_3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/flecked_wool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/flecked_wool.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/fondue_cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/fondue_cheese.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/fondue_roster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/fondue_roster.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/grain_cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/grain_cheese.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/highland_wool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/highland_wool.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/patched_wool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/patched_wool.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/pine_beam_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/pine_beam_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/pine_beam_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/pine_beam_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/pine_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/pine_door_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/pine_log_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/pine_log_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/pine_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/pine_log_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/pine_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/pine_sapling.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/pine_trapdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/pine_trapdoor.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/sheep_cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/sheep_cheese.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/small_fir_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/small_fir_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/stove_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/stove_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/table_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/table_middle.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_2_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_2_main.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_3_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_3_main.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_mid_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_mid_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_mid_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_mid_3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_mid_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_mid_a.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_top_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_top_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_top_3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_top_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_top_a.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/bed/flecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/bed/flecked.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/bed/highland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/bed/highland.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/bed/patched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/bed/patched.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/cow/umbra_cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/cow/umbra_cow.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/gui/cheese_form_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/gui/cheese_form_gui.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/cheese_sandwich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/cheese_sandwich.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/climbing_rope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/climbing_rope.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/felting_needle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/felting_needle.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/fur_chestplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/fur_chestplate.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/meadow_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/meadow_banner.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/pine_barn_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/pine_barn_door.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/pine_chest_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/pine_chest_boat.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/slice_of_cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/slice_of_cheese.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/small_fir_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/small_fir_item.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/warped_cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/warped_cheese.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/wheel_of_cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/wheel_of_cheese.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/wooden_cauldron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/wooden_cauldron.png -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/wooden_trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:pine_trapdoor", 5 | "meadow:pine_barn_trapdoor" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /common/src/main/resources/data/treechop/tags/blocks/leaves_like.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:pine_leaves", 5 | "meadow:alpine_birch_leaves_hanging" 6 | ] 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/resourcepacks/better_leaves/assets/meadow/blockstates/pine_leaves_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/pine_leaves_2" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/cracked_limestone_bricks_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/cracked_limestone_bricks_1" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/cracked_limestone_bricks_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/cracked_limestone_bricks_2" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/cracked_limestone_bricks_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/cracked_limestone_bricks_3" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/pine_button_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_inventory", 3 | "textures": { 4 | "texture": "meadow:block/pine_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/pine_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate", 3 | "textures": { 4 | "texture": "meadow:block/pine_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/pine_fence_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_inventory", 3 | "textures": { 4 | "texture": "meadow:block/pine_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/potted_alpine_poppy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/flower_pot_cross", 3 | "textures": { 4 | "plant": "meadow:block/alpine_poppy_3" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/potted_delphinium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/flower_pot_cross", 3 | "textures": { 4 | "plant": "meadow:block/delphinium_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/potted_eriophorum.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/flower_pot_cross", 3 | "textures": { 4 | "plant": "meadow:block/eriophorum_potted" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/potted_fire_lily.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/flower_pot_cross", 3 | "textures": { 4 | "plant": "meadow:block/fire_lily_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/potted_pine_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/flower_pot_cross", 3 | "textures": { 4 | "plant": "meadow:block/pine_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/rocky_bed_foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "meadow:block/template_bed_foot", 3 | "textures": { 4 | "bed": "meadow:entity/bed/rocky_sheep" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/tall_eriophorum_bottom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "meadow:block/tall_eriophorum_bottom" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/amethyst_cheese_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wheel_of_amethyst_cheese" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wooden_goat_milk_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wooden_goat_milk_bucket" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wooden_grain_milk_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wooden_grain_milk_bucket" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wooden_sheep_milk_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wooden_sheep_milk_bucket" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wooly_sheep_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/spawn_eggs/wooly_sheep_spawn_egg" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/alpine_birch_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/alpine_birch_log.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/alpine_coal_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/alpine_coal_ore.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/alpine_gold_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/alpine_gold_ore.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/alpine_iron_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/alpine_iron_ore.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/alpine_lapis_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/alpine_lapis_ore.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/brick_stove_lid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/brick_stove_lid.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/brick_stove_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/brick_stove_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/brick_stove_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/brick_stove_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cauldron_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cauldron_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_cake_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_cake_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_cake_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_cake_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_form_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_form_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_tart_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_tart_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_tart_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_tart_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cooking_cauldron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cooking_cauldron.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/pine_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/pine_door_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/pine_slab_double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/pine_slab_double.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/pine_window_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/pine_window_main.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/rocky_sheep_wool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/rocky_sheep_wool.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/small_fir_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/small_fir_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/stone_table_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/stone_table_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/stove_bench_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/stove_bench_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/stove_bench_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/stove_bench_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/stove_tiles_lid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/stove_tiles_lid.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/stove_tiles_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/stove_tiles_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/stove_tiles_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/stove_tiles_wood.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/wheelbarrow_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/wheelbarrow_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/wheelbarrow_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/wheelbarrow_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_bottom_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_bottom_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_bottom_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_bottom_3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_pane_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_pane_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_pane_top3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_pane_top3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/bed/rocky_sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/bed/rocky_sheep.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/chest_boat/pine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/chest_boat/pine.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/cow/warped_cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/cow/warped_cow.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/gui/hanging_signs/pine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/gui/hanging_signs/pine.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/cheese_tart_slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/cheese_tart_slice.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/cheesecake_slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/cheesecake_slice.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/cooking_cauldron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/cooking_cauldron.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/pine_hanging_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/pine_hanging_sign.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/raw_buffalo_meat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/raw_buffalo_meat.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/wood_bucket_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/wood_bucket_water.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/item/wooden_flower_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/item/wooden_flower_box.png -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/blocks/needs_stone_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "meadow:alpine_copper_ore", 4 | "meadow:alpine_iron_ore", 5 | "meadow:alpine_lapis_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "meadow:hermit_poi", 5 | "meadow:cheesemaker_poi" 6 | ] 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/blockstates/wooden_flower_pot_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "meadow:block/wooden_flower_pot_small" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/cobbled_limestone_slab_double.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "meadow:block/cobbled_limestone_slab_double" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/limestone_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "meadow:block/limestone" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/block/pine_pressure_plate_down.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pressure_plate_down", 3 | "textures": { 4 | "texture": "meadow:block/pine_pp" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/horned_sheep_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/spawn_eggs/horned_sheep_spawn_egg" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/water_buffalo_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/spawn_eggs/water_buffalo_spawn_egg" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wooden_amethyst_milk_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wooden_amethyst_milk_bucket" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wooden_buffalo_milk_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wooden_buffalo_milk_bucket" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wooden_flower_pot_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wooden_flower_pot_small" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/models/item/wooden_warped_milk_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "meadow:item/wooden_warped_milk_bucket" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/alpine_copper_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/alpine_copper_ore.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/alpine_diamond_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/alpine_diamond_ore.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/alpine_emerald_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/alpine_emerald_ore.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/alpine_redstone_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/alpine_redstone_ore.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/alpine_salt_ore_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/alpine_salt_ore_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/alpine_salt_ore_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/alpine_salt_ore_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/brick_stove_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/brick_stove_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/brick_stove_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/brick_stove_front.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/brick_stove_top_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/brick_stove_top_on.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_cake_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_cake_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_cake_eaten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_cake_eaten.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_form_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_form_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_form_inside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_form_inside.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_form_side_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_form_side_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_form_side_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_form_side_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_form_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_form_support.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_form_top_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_form_top_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_tart_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_tart_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cheese_tart_eaten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cheese_tart_eaten.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/chiseled_limestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/chiseled_limestone.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/cobbled_limestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/cobbled_limestone.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/eriophorum_potted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/eriophorum_potted.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/lavender_cheese_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/lavender_cheese_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/limestone_bricks_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/limestone_bricks_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/limestone_bricks_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/limestone_bricks_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/limestone_bricks_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/limestone_bricks_3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/limestone_bricks_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/limestone_bricks_4.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/limestone_bricks_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/limestone_bricks_5.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/limestone_bricks_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/limestone_bricks_6.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/pine_barn_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/pine_barn_door_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/pine_barn_trapdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/pine_barn_trapdoor.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/polished_limestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/polished_limestone.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/stone_table_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/stone_table_middle.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/stove_tiles_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/stove_tiles_front.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/warped_cheese_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/warped_cheese_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/warped_cheese_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/warped_cheese_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_shutter_0mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_shutter_0mid.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_shutter_0top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_shutter_0top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_shutter_1mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_shutter_1mid.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_shutter_1top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_shutter_1top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_shutter_2mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_shutter_2mid.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_shutter_3mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_shutter_3mid.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/window_shutter_3top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/window_shutter_3top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/wooden_cauldron_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/wooden_cauldron_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/wooden_watering_can.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/wooden_watering_can.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/block/yellow_pine_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/block/yellow_pine_leaves.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/sheep/fuzzy_sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/sheep/fuzzy_sheep.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/sheep/inky_sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/sheep/inky_sheep.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/sheep/rocky_sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/sheep/rocky_sheep.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/signs/hanging/pine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/signs/hanging/pine.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/entity/villager/villager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/entity/villager/villager.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/meadow/textures/gui/cooking_cauldron_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Let-s-Do-Collection/Meadow/HEAD/common/src/main/resources/assets/meadow/textures/gui/cooking_cauldron_gui.png --------------------------------------------------------------------------------