├── src └── main │ ├── resources │ ├── assets │ │ └── poopsky │ │ │ ├── models │ │ │ ├── item │ │ │ │ ├── stool.json │ │ │ │ ├── compooper.json │ │ │ │ ├── poop_block.json │ │ │ │ ├── poop_piece.json │ │ │ │ ├── poop_slab.json │ │ │ │ ├── poop_stairs.json │ │ │ │ ├── poop_log.json │ │ │ │ ├── poop_sapling.json │ │ │ │ ├── poop_button.json │ │ │ │ ├── poop_fence.json │ │ │ │ ├── poop_fence_gate.json │ │ │ │ ├── poop_wall.json │ │ │ │ ├── poop_vertical_slab.json │ │ │ │ ├── poop_empty_log.json │ │ │ │ ├── poop_pressure_plate.json │ │ │ │ ├── stripped_poop_log.json │ │ │ │ ├── stripped_poop_empty_log.json │ │ │ │ └── poop_cake.json │ │ │ └── block │ │ │ │ ├── poop_slab_double_liquids.json │ │ │ │ ├── stool_block.json │ │ │ │ ├── poop_button.json │ │ │ │ ├── poop_block1.json │ │ │ │ ├── poop_fence_post.json │ │ │ │ ├── poop_fence_side.json │ │ │ │ ├── poop_wall_post.json │ │ │ │ ├── poop_wall_side.json │ │ │ │ ├── poop_button_pressed.json │ │ │ │ ├── poop_fence_gate.json │ │ │ │ ├── poop_wall_inventory.json │ │ │ │ ├── poop_button_inventory.json │ │ │ │ ├── poop_fence_inventory.json │ │ │ │ ├── poop_pressure_plate.json │ │ │ │ ├── poop_wall_side_tall.json │ │ │ │ ├── poop_fence_gate_open.json │ │ │ │ ├── poop_fence_gate_wall.json │ │ │ │ ├── poop_pressure_plate_down.json │ │ │ │ ├── poop_fence_gate_wall_open.json │ │ │ │ ├── poop_log.json │ │ │ │ ├── poop_empty_log.json │ │ │ │ ├── poop_slab_double.json │ │ │ │ ├── poop_vertical_slab.json │ │ │ │ ├── poop_block2.json │ │ │ │ ├── poop_log_horizontal.json │ │ │ │ ├── poop_empty_log_horizontal.json │ │ │ │ ├── stripped_poop_log.json │ │ │ │ ├── poop_slab_double_maggots.json │ │ │ │ ├── stripped_poop_empty_log.json │ │ │ │ ├── stripped_poop_empty_log2.json │ │ │ │ ├── stripped_poop_log2.json │ │ │ │ ├── poop_slab.json │ │ │ │ ├── poop_stairs.json │ │ │ │ ├── poop_vertical_slab_maggots.json │ │ │ │ ├── poop_slab_top.json │ │ │ │ ├── stripped_poop_empty_log_horizontal.json │ │ │ │ ├── stripped_poop_log_horizontal.json │ │ │ │ ├── stripped_poop_log_horizontal2.json │ │ │ │ ├── poop_slab_liquids.json │ │ │ │ ├── poop_stairs_inner.json │ │ │ │ ├── poop_stairs_outer.json │ │ │ │ ├── stripped_poop_empty_log_horizontal2.json │ │ │ │ ├── poop_slab_top_liquids.json │ │ │ │ ├── poop_slab_maggots.json │ │ │ │ ├── poop_slab_top_maggots.json │ │ │ │ ├── compooper_contents1.json │ │ │ │ ├── compooper_contents2.json │ │ │ │ ├── compooper_contents3.json │ │ │ │ ├── compooper_contents_ready.json │ │ │ │ ├── compooper_liquid1.json │ │ │ │ ├── compooper_liquid2.json │ │ │ │ ├── compooper_liquid3.json │ │ │ │ └── compooper_liquid_ready.json │ │ │ ├── particles │ │ │ └── poop_particle.json │ │ │ ├── icon.png │ │ │ ├── sounds │ │ │ ├── fart_1.ogg │ │ │ ├── fart_2.ogg │ │ │ └── merry_christmas_mr_lawrence.ogg │ │ │ ├── textures │ │ │ ├── entity │ │ │ │ ├── villager │ │ │ │ │ └── profession │ │ │ │ │ │ ├── poopmaker.png.mcmeta │ │ │ │ │ │ └── poopmaker.png │ │ │ │ ├── zombie_villager │ │ │ │ │ └── profession │ │ │ │ │ │ ├── poopmaker.png.mcmeta │ │ │ │ │ │ └── poopmaker.png │ │ │ │ └── toilet_plug.png │ │ │ ├── item │ │ │ │ ├── poop.png │ │ │ │ ├── spall.png │ │ │ │ ├── poop_ball.png │ │ │ │ ├── poop_bread.png │ │ │ │ ├── poop_cake.png │ │ │ │ ├── poop_door.png │ │ │ │ ├── poop_soup.png │ │ │ │ ├── toilet_plug.png │ │ │ │ ├── urine_bottle.png │ │ │ │ ├── urine_bucket.png │ │ │ │ ├── baked_maggots.png │ │ │ │ ├── maggots_seeds.png │ │ │ │ ├── poop_dumplings.png │ │ │ │ ├── toilet_linker.png │ │ │ │ ├── dragon_breath_chili.png │ │ │ │ └── music_disc_lawrence.png │ │ │ ├── block │ │ │ │ ├── rainbow_concrete.png.mcmeta │ │ │ │ ├── poop_log.png │ │ │ │ ├── poop_block.png │ │ │ │ ├── poop_bricks.png │ │ │ │ ├── poop_leaves.png │ │ │ │ ├── poop_liquid.png │ │ │ │ ├── compooper_side.png │ │ │ │ ├── compooper_top.png │ │ │ │ ├── cut_poop_block.png │ │ │ │ ├── maggots_stage0.png │ │ │ │ ├── maggots_stage1.png │ │ │ │ ├── maggots_stage2.png │ │ │ │ ├── maggots_stage3.png │ │ │ │ ├── maggots_stage4.png │ │ │ │ ├── maggots_stage5.png │ │ │ │ ├── maggots_stage6.png │ │ │ │ ├── maggots_stage7.png │ │ │ │ ├── poop_cake_side.png │ │ │ │ ├── poop_cake_top.png │ │ │ │ ├── poop_door_top.png │ │ │ │ ├── poop_log_top.png │ │ │ │ ├── poop_sapling.png │ │ │ │ ├── poop_trapdoor.png │ │ │ │ ├── compooper_bottom.png │ │ │ │ ├── compooper_ready.png │ │ │ │ ├── dried_poop_block.png │ │ │ │ ├── poop_cake_bottom.png │ │ │ │ ├── poop_cake_inner.png │ │ │ │ ├── poop_door_bottom.png │ │ │ │ ├── poop_leaves_gold.png │ │ │ │ ├── poop_leaves_iron.png │ │ │ │ ├── rainbow_concrete.png │ │ │ │ ├── compooper_compost.png │ │ │ │ ├── cracked_poop_bricks.png │ │ │ │ ├── mossy_poop_bricks.png │ │ │ │ ├── poop_block_liquids.png │ │ │ │ ├── poop_block_maggots.png │ │ │ │ ├── poop_log_top_empty.png │ │ │ │ ├── smooth_poop_block.png │ │ │ │ ├── stripped_poop_log.png │ │ │ │ ├── stripped_poop_log2.png │ │ │ │ ├── stripped_poop_log_top.png │ │ │ │ ├── stripped_poop_log_top_empty.png │ │ │ │ ├── poop_liquid.png.mcmeta │ │ │ │ ├── poop_block_liquids.png.mcmeta │ │ │ │ └── poop_block_maggots.png.mcmeta │ │ │ ├── particle │ │ │ │ └── poop_particle.png │ │ │ └── mob_effect │ │ │ │ ├── intestinal_spasm.png │ │ │ │ └── fecal_incontinence.png │ │ │ └── blockstates │ │ │ ├── poop_log.json │ │ │ ├── poop_pressure_plate.json │ │ │ ├── poop_empty_log.json │ │ │ ├── stool.json │ │ │ └── poop_block.json │ └── data │ │ ├── minecraft │ │ └── tags │ │ │ └── point_of_interest_type │ │ │ └── acquirable_job_site.json │ │ └── poopsky │ │ └── jukebox_song │ │ └── lawrence.json │ ├── generated │ ├── assets │ │ └── poopsky │ │ │ ├── models │ │ │ ├── item │ │ │ │ ├── oak_toilet.json │ │ │ │ ├── poop_bricks.json │ │ │ │ ├── poop_leaves.json │ │ │ │ ├── acacia_toilet.json │ │ │ │ ├── bamboo_toilet.json │ │ │ │ ├── birch_toilet.json │ │ │ │ ├── cherry_toilet.json │ │ │ │ ├── jungle_toilet.json │ │ │ │ ├── spruce_toilet.json │ │ │ │ ├── stone_toilet.json │ │ │ │ ├── warped_toilet.json │ │ │ │ ├── crimson_toilet.json │ │ │ │ ├── cut_poop_block.json │ │ │ │ ├── dark_oak_toilet.json │ │ │ │ ├── dried_poop_block.json │ │ │ │ ├── mangrove_toilet.json │ │ │ │ ├── poop_brick_slab.json │ │ │ │ ├── poop_leaves_gold.json │ │ │ │ ├── poop_leaves_iron.json │ │ │ │ ├── rainbow_toilet.json │ │ │ │ ├── cobblestone_toilet.json │ │ │ │ ├── mossy_poop_bricks.json │ │ │ │ ├── poop_brick_stairs.json │ │ │ │ ├── poop_trapdoor.json │ │ │ │ ├── smooth_poop_block.json │ │ │ │ ├── stone_brick_toilet.json │ │ │ │ ├── black_concrete_toilet.json │ │ │ │ ├── blue_concrete_toilet.json │ │ │ │ ├── brown_concrete_toilet.json │ │ │ │ ├── cracked_poop_bricks.json │ │ │ │ ├── cut_poop_block_slab.json │ │ │ │ ├── cut_poop_block_stairs.json │ │ │ │ ├── cyan_concrete_toilet.json │ │ │ │ ├── dried_poop_block_slab.json │ │ │ │ ├── gray_concrete_toilet.json │ │ │ │ ├── green_concrete_toilet.json │ │ │ │ ├── lime_concrete_toilet.json │ │ │ │ ├── mossy_poop_brick_slab.json │ │ │ │ ├── pink_concrete_toilet.json │ │ │ │ ├── poop_brick_wall.json │ │ │ │ ├── red_concrete_toilet.json │ │ │ │ ├── smooth_stone_toilet.json │ │ │ │ ├── white_concrete_toilet.json │ │ │ │ ├── dried_poop_block_stairs.json │ │ │ │ ├── magenta_concrete_toilet.json │ │ │ │ ├── mossy_poop_brick_stairs.json │ │ │ │ ├── orange_concrete_toilet.json │ │ │ │ ├── purple_concrete_toilet.json │ │ │ │ ├── smooth_poop_block_slab.json │ │ │ │ ├── yellow_concrete_toilet.json │ │ │ │ ├── cut_poop_block_wall.json │ │ │ │ ├── dried_poop_block_wall.json │ │ │ │ ├── light_blue_concrete_toilet.json │ │ │ │ ├── light_gray_concrete_toilet.json │ │ │ │ ├── mossy_cobblestone_toilet.json │ │ │ │ ├── mossy_poop_brick_wall.json │ │ │ │ ├── mossy_stone_brick_toilet.json │ │ │ │ ├── poop_brick_vertical_slab.json │ │ │ │ ├── smooth_poop_block_stairs.json │ │ │ │ ├── cut_poop_block_vertical_slab.json │ │ │ │ ├── smooth_poop_block_wall.json │ │ │ │ ├── dried_poop_block_vertical_slab.json │ │ │ │ ├── mossy_poop_brick_vertical_slab.json │ │ │ │ ├── smooth_poop_block_vertical_slab.json │ │ │ │ ├── poop.json │ │ │ │ ├── spall.json │ │ │ │ ├── poop_ball.json │ │ │ │ ├── poop_door.json │ │ │ │ ├── poop_soup.json │ │ │ │ ├── poop_bread.json │ │ │ │ ├── toilet_plug.json │ │ │ │ ├── urine_bottle.json │ │ │ │ ├── baked_maggots.json │ │ │ │ ├── maggots_seeds.json │ │ │ │ ├── poop_dumplings.json │ │ │ │ ├── toilet_linker.json │ │ │ │ ├── dragon_breath_chili.json │ │ │ │ └── music_disc_lawrence.json │ │ │ └── block │ │ │ │ ├── stone_toilet.json │ │ │ │ ├── birch_toilet.json │ │ │ │ ├── maggots_stage0.json │ │ │ │ ├── maggots_stage1.json │ │ │ │ ├── maggots_stage2.json │ │ │ │ ├── maggots_stage3.json │ │ │ │ ├── maggots_stage4.json │ │ │ │ ├── maggots_stage5.json │ │ │ │ ├── maggots_stage6.json │ │ │ │ ├── maggots_stage7.json │ │ │ │ ├── oak_toilet.json │ │ │ │ ├── oak_toilet_n.json │ │ │ │ ├── oak_toilet_s.json │ │ │ │ ├── poop_bricks.json │ │ │ │ ├── poop_leaves.json │ │ │ │ ├── acacia_toilet.json │ │ │ │ ├── bamboo_toilet.json │ │ │ │ ├── birch_toilet_n.json │ │ │ │ ├── birch_toilet_s.json │ │ │ │ ├── cherry_toilet.json │ │ │ │ ├── cobblestone_toilet.json │ │ │ │ ├── crimson_toilet.json │ │ │ │ ├── cut_poop_block.json │ │ │ │ ├── jungle_toilet.json │ │ │ │ ├── oak_toilet_ns.json │ │ │ │ ├── rainbow_toilet.json │ │ │ │ ├── spruce_toilet.json │ │ │ │ ├── stone_toilet_lava.json │ │ │ │ ├── warped_toilet.json │ │ │ │ ├── acacia_toilet_n.json │ │ │ │ ├── acacia_toilet_ns.json │ │ │ │ ├── acacia_toilet_s.json │ │ │ │ ├── bamboo_toilet_n.json │ │ │ │ ├── bamboo_toilet_ns.json │ │ │ │ ├── bamboo_toilet_s.json │ │ │ │ ├── birch_toilet_ns.json │ │ │ │ ├── blue_concrete_toilet.json │ │ │ │ ├── cherry_toilet_n.json │ │ │ │ ├── cherry_toilet_ns.json │ │ │ │ ├── cherry_toilet_s.json │ │ │ │ ├── crimson_toilet_n.json │ │ │ │ ├── crimson_toilet_ns.json │ │ │ │ ├── crimson_toilet_s.json │ │ │ │ ├── cyan_concrete_toilet.json │ │ │ │ ├── dark_oak_toilet.json │ │ │ │ ├── dark_oak_toilet_n.json │ │ │ │ ├── dark_oak_toilet_s.json │ │ │ │ ├── dried_poop_block.json │ │ │ │ ├── gray_concrete_toilet.json │ │ │ │ ├── jungle_toilet_n.json │ │ │ │ ├── jungle_toilet_ns.json │ │ │ │ ├── jungle_toilet_s.json │ │ │ │ ├── lime_concrete_toilet.json │ │ │ │ ├── mangrove_toilet.json │ │ │ │ ├── mangrove_toilet_n.json │ │ │ │ ├── mangrove_toilet_s.json │ │ │ │ ├── mossy_poop_bricks.json │ │ │ │ ├── pink_concrete_toilet.json │ │ │ │ ├── poop_leaves_gold.json │ │ │ │ ├── poop_leaves_iron.json │ │ │ │ ├── red_concrete_toilet.json │ │ │ │ ├── smooth_poop_block.json │ │ │ │ ├── smooth_stone_toilet.json │ │ │ │ ├── spruce_toilet_n.json │ │ │ │ ├── spruce_toilet_ns.json │ │ │ │ ├── spruce_toilet_s.json │ │ │ │ ├── stone_brick_toilet.json │ │ │ │ ├── warped_toilet_n.json │ │ │ │ ├── warped_toilet_ns.json │ │ │ │ ├── warped_toilet_s.json │ │ │ │ ├── black_concrete_toilet.json │ │ │ │ ├── brown_concrete_toilet.json │ │ │ │ ├── cobblestone_toilet_lava.json │ │ │ │ ├── cracked_poop_bricks.json │ │ │ │ ├── dark_oak_toilet_ns.json │ │ │ │ ├── green_concrete_toilet.json │ │ │ │ ├── magenta_concrete_toilet.json │ │ │ │ ├── mangrove_toilet_ns.json │ │ │ │ ├── orange_concrete_toilet.json │ │ │ │ ├── purple_concrete_toilet.json │ │ │ │ ├── rainbow_toilet_lava.json │ │ │ │ ├── white_concrete_toilet.json │ │ │ │ ├── yellow_concrete_toilet.json │ │ │ │ ├── blue_concrete_toilet_lava.json │ │ │ │ ├── cyan_concrete_toilet_lava.json │ │ │ │ ├── gray_concrete_toilet_lava.json │ │ │ │ ├── lime_concrete_toilet_lava.json │ │ │ │ ├── mossy_cobblestone_toilet.json │ │ │ │ ├── mossy_stone_brick_toilet.json │ │ │ │ ├── pink_concrete_toilet_lava.json │ │ │ │ ├── poop_brick_wall_inventory.json │ │ │ │ ├── poop_brick_wall_post.json │ │ │ │ ├── poop_brick_wall_side.json │ │ │ │ ├── red_concrete_toilet_lava.json │ │ │ │ ├── smooth_stone_toilet_lava.json │ │ │ │ ├── stone_brick_toilet_lava.json │ │ │ │ ├── black_concrete_toilet_lava.json │ │ │ │ ├── brown_concrete_toilet_lava.json │ │ │ │ ├── cut_poop_block_wall_inventory.json │ │ │ │ ├── cut_poop_block_wall_post.json │ │ │ │ ├── cut_poop_block_wall_side.json │ │ │ │ ├── green_concrete_toilet_lava.json │ │ │ │ ├── light_blue_concrete_toilet.json │ │ │ │ ├── light_gray_concrete_toilet.json │ │ │ │ ├── magenta_concrete_toilet_lava.json │ │ │ │ ├── orange_concrete_toilet_lava.json │ │ │ │ ├── poop_trapdoor_open.json │ │ │ │ ├── poop_trapdoor_top.json │ │ │ │ ├── purple_concrete_toilet_lava.json │ │ │ │ ├── white_concrete_toilet_lava.json │ │ │ │ ├── yellow_concrete_toilet_lava.json │ │ │ │ ├── dried_poop_block_wall_inventory.json │ │ │ │ ├── dried_poop_block_wall_post.json │ │ │ │ ├── dried_poop_block_wall_side.json │ │ │ │ ├── mossy_cobblestone_toilet_lava.json │ │ │ │ ├── mossy_poop_brick_wall_inventory.json │ │ │ │ ├── mossy_poop_brick_wall_post.json │ │ │ │ ├── mossy_poop_brick_wall_side.json │ │ │ │ ├── mossy_stone_brick_toilet_lava.json │ │ │ │ ├── poop_brick_wall_side_tall.json │ │ │ │ ├── poop_trapdoor_bottom.json │ │ │ │ ├── smooth_poop_block_wall_post.json │ │ │ │ ├── smooth_poop_block_wall_side.json │ │ │ │ ├── cut_poop_block_wall_side_tall.json │ │ │ │ ├── light_blue_concrete_toilet_lava.json │ │ │ │ ├── light_gray_concrete_toilet_lava.json │ │ │ │ ├── smooth_poop_block_wall_inventory.json │ │ │ │ ├── dried_poop_block_wall_side_tall.json │ │ │ │ ├── mossy_poop_brick_wall_side_tall.json │ │ │ │ ├── smooth_poop_block_wall_side_tall.json │ │ │ │ ├── poop_brick_vertical_slab.json │ │ │ │ ├── poop_door_top_left.json │ │ │ │ ├── poop_door_top_right.json │ │ │ │ ├── cut_poop_block_vertical_slab.json │ │ │ │ ├── poop_door_bottom_left.json │ │ │ │ ├── dried_poop_block_vertical_slab.json │ │ │ │ ├── poop_door_bottom_right.json │ │ │ │ ├── poop_door_top_left_open.json │ │ │ │ ├── poop_door_top_right_open.json │ │ │ │ ├── mossy_poop_brick_vertical_slab.json │ │ │ │ ├── poop_door_bottom_left_open.json │ │ │ │ ├── smooth_poop_block_vertical_slab.json │ │ │ │ ├── poop_door_bottom_right_open.json │ │ │ │ ├── poop_brick_slab.json │ │ │ │ ├── poop_brick_stairs.json │ │ │ │ ├── poop_brick_slab_top.json │ │ │ │ ├── cut_poop_block_slab.json │ │ │ │ ├── poop_brick_stairs_inner.json │ │ │ │ ├── poop_brick_stairs_outer.json │ │ │ │ ├── cut_poop_block_slab_top.json │ │ │ │ ├── cut_poop_block_stairs.json │ │ │ │ ├── dried_poop_block_slab.json │ │ │ │ ├── dried_poop_block_stairs.json │ │ │ │ ├── mossy_poop_brick_slab.json │ │ │ │ ├── smooth_poop_block_slab.json │ │ │ │ ├── cut_poop_block_stairs_inner.json │ │ │ │ ├── cut_poop_block_stairs_outer.json │ │ │ │ ├── dried_poop_block_slab_top.json │ │ │ │ ├── mossy_poop_brick_stairs.json │ │ │ │ ├── smooth_poop_block_stairs.json │ │ │ │ ├── mossy_poop_brick_slab_top.json │ │ │ │ ├── smooth_poop_block_slab_top.json │ │ │ │ ├── dried_poop_block_stairs_inner.json │ │ │ │ ├── dried_poop_block_stairs_outer.json │ │ │ │ ├── mossy_poop_brick_stairs_inner.json │ │ │ │ ├── mossy_poop_brick_stairs_outer.json │ │ │ │ ├── smooth_poop_block_stairs_inner.json │ │ │ │ └── smooth_poop_block_stairs_outer.json │ │ │ └── blockstates │ │ │ ├── poop_bricks.json │ │ │ ├── poop_leaves.json │ │ │ ├── cut_poop_block.json │ │ │ ├── dried_poop_block.json │ │ │ ├── poop_leaves_gold.json │ │ │ ├── poop_leaves_iron.json │ │ │ ├── mossy_poop_bricks.json │ │ │ ├── smooth_poop_block.json │ │ │ ├── cracked_poop_bricks.json │ │ │ ├── poop_brick_slab.json │ │ │ ├── cut_poop_block_slab.json │ │ │ ├── dried_poop_block_slab.json │ │ │ ├── mossy_poop_brick_slab.json │ │ │ └── smooth_poop_block_slab.json │ └── data │ │ ├── c │ │ └── tags │ │ │ └── item │ │ │ ├── foods.json │ │ │ ├── foods │ │ │ ├── cooked_meat.json │ │ │ ├── raw_meat.json │ │ │ └── food_poisoning.json │ │ │ └── music_discs.json │ │ ├── minecraft │ │ └── tags │ │ │ ├── block │ │ │ ├── crops.json │ │ │ ├── dirt.json │ │ │ ├── doors.json │ │ │ ├── fences.json │ │ │ ├── buttons.json │ │ │ ├── sand.json │ │ │ ├── saplings.json │ │ │ ├── fence_gates.json │ │ │ ├── maintains_farmland.json │ │ │ ├── mineable │ │ │ │ ├── hoe.json │ │ │ │ ├── shovel.json │ │ │ │ └── axe.json │ │ │ ├── trapdoors.json │ │ │ ├── pressure_plates.json │ │ │ ├── snow_layer_can_survive_on.json │ │ │ ├── flowers.json │ │ │ ├── leaves.json │ │ │ ├── logs.json │ │ │ ├── logs_that_burn.json │ │ │ ├── slabs.json │ │ │ ├── walls.json │ │ │ ├── stairs.json │ │ │ └── mushroom_grow_block.json │ │ │ └── item │ │ │ ├── doors.json │ │ │ ├── fences.json │ │ │ ├── buttons.json │ │ │ ├── saplings.json │ │ │ ├── trapdoors.json │ │ │ ├── fence_gates.json │ │ │ ├── villager_plantable_seeds.json │ │ │ ├── leaves.json │ │ │ ├── logs.json │ │ │ ├── slabs.json │ │ │ ├── walls.json │ │ │ └── stairs.json │ │ └── poopsky │ │ ├── tags │ │ ├── block │ │ │ └── convertable_to_moss.json │ │ └── item │ │ │ └── compooper_saplings.json │ │ └── recipe │ │ ├── stool_from_poop_block_stonecutting.json │ │ ├── poop_door_from_poop_block_stonecutting.json │ │ ├── poop_slab_from_poop_block_stonecutting.json │ │ ├── poop_wall_from_poop_block_stonecutting.json │ │ ├── poop_bricks_from_poop_block_stonecutting.json │ │ ├── poop_button_from_poop_block_stonecutting.json │ │ ├── poop_empty_log_from_poop_log_stonecutting.json │ │ ├── poop_fence_from_poop_block_stonecutting.json │ │ ├── poop_piece_from_poop_block_stonecutting.json │ │ ├── poop_stairs_from_poop_block_stonecutting.json │ │ ├── poop_block_from_poop_empty_log_stonecutting.json │ │ ├── poop_trapdoor_from_poop_block_stonecutting.json │ │ ├── poop_brick_slab_from_poop_block_stonecutting.json │ │ ├── poop_brick_slab_from_poop_bricks_stonecutting.json │ │ ├── poop_brick_stairs_from_poop_block_stonecutting.json │ │ ├── poop_brick_wall_from_poop_block_stonecutting.json │ │ ├── poop_brick_wall_from_poop_bricks_stonecutting.json │ │ ├── poop_fence_gate_from_poop_block_stonecutting.json │ │ ├── stripped_poop_log_from_poop_log_stonecutting.json │ │ ├── poop.json │ │ ├── poop_brick_stairs_from_poop_bricks_stonecutting.json │ │ ├── poop_pressure_plate_from_poop_block_stonecutting.json │ │ ├── poop_vertical_slab_from_poop_block_stonecutting.json │ │ ├── cut_poop_block_from_dried_poop_block_stonecutting.json │ │ ├── cut_poop_block_slab_from_cut_poop_block_stonecutting.json │ │ ├── cut_poop_block_wall_from_cut_poop_block_stonecutting.json │ │ ├── poop_block_from_stripped_poop_empty_log_stonecutting.json │ │ ├── poop_brick_vertical_slab_from_poop_block_stonecutting.json │ │ ├── poop_button.json │ │ ├── cut_poop_block_slab_from_dried_poop_block_stonecutting.json │ │ ├── cut_poop_block_stairs_from_cut_poop_block_stonecutting.json │ │ ├── cut_poop_block_stairs_from_dried_poop_block_stonecutting.json │ │ ├── cut_poop_block_wall_from_dried_poop_block_stonecutting.json │ │ ├── dried_poop_block_slab_from_dried_poop_block_stonecutting.json │ │ ├── dried_poop_block_wall_from_dried_poop_block_stonecutting.json │ │ ├── poop_brick_vertical_slab_from_poop_bricks_stonecutting.json │ │ ├── stripped_poop_empty_log_from_poop_empty_log_stonecutting.json │ │ ├── dried_poop_block_stairs_from_dried_poop_block_stonecutting.json │ │ ├── mossy_poop_brick_slab_from_mossy_poop_bricks_stonecutting.json │ │ ├── mossy_poop_brick_wall_from_mossy_poop_bricks_stonecutting.json │ │ ├── smooth_poop_block_slab_from_smooth_poop_block_stonecutting.json │ │ ├── smooth_poop_block_wall_from_smooth_poop_block_stonecutting.json │ │ ├── cut_poop_block_vertical_slab_from_cut_poop_block_stonecutting.json │ │ ├── mossy_poop_brick_stairs_from_mossy_poop_bricks_stonecutting.json │ │ ├── smooth_poop_block_stairs_from_smooth_poop_block_stonecutting.json │ │ ├── stripped_poop_empty_log_from_stripped_poop_log_stonecutting.json │ │ ├── cut_poop_block_vertical_slab_from_dried_poop_block_stonecutting.json │ │ ├── dried_poop_block_vertical_slab_from_dried_poop_block_stonecutting.json │ │ ├── mossy_poop_brick_vertical_slab_from_mossy_poop_bricks_stonecutting.json │ │ ├── poop_block_from_empty_log.json │ │ ├── smooth_poop_block_vertical_slab_from_smooth_poop_block_stonecutting.json │ │ ├── poop_block_from_stripped_empty_log.json │ │ ├── poop_piece.json │ │ ├── poop_slab.json │ │ ├── flint_from_spall.json │ │ ├── poop_block.json │ │ ├── poop_brick_slab.json │ │ ├── poop_pressure_plate.json │ │ ├── gravel_from_flint_x4.json │ │ ├── poop_bricks.json │ │ ├── poop_wall.json │ │ ├── crafting_table.json │ │ ├── cut_poop_block_slab.json │ │ ├── poop_block_from_slab.json │ │ ├── poop_trapdoor.json │ │ ├── toilet_linker.json │ │ ├── tuff_from_spall.json │ │ ├── baked_maggots_from_blasting_maggots_seeds.json │ │ ├── baked_maggots_from_smelting_maggots_seeds.json │ │ ├── calcite_from_spall.json │ │ ├── poop_block_from_vertical_slab.json │ │ ├── poop_brick_wall.json │ │ ├── poop_door.json │ │ ├── cut_poop_block.json │ │ ├── diorite_from_clay.json │ │ ├── dried_poop_block_from_blasting_poop_block.json │ │ ├── dried_poop_block_from_smelting_poop_block.json │ │ ├── dried_poop_block_slab.json │ │ ├── mossy_poop_brick_slab.json │ │ ├── music_disc_lawrence.json │ │ ├── poop_dumplings.json │ │ ├── smooth_poop_block_slab.json │ │ ├── poop_stairs.json │ │ ├── cracked_poop_bricks_from_blasting_poop_bricks.json │ │ ├── cracked_poop_bricks_from_smelting_poop_bricks.json │ │ ├── cut_poop_block_wall.json │ │ ├── grass_block_from_moss_block.json │ │ ├── poop_vertical_slab.json │ │ ├── cobbled_deepslate_from_mud.json │ │ ├── compooper.json │ │ ├── dried_poop_block_wall.json │ │ ├── mossy_poop_brick_wall.json │ │ ├── mossy_poop_bricks_from_vine.json │ │ ├── pointed_dripstone_from_spall.json │ │ ├── poop_brick_stairs.json │ │ ├── smooth_poop_block_from_blasting_dried_poop_block.json │ │ ├── smooth_poop_block_from_smelting_dried_poop_block.json │ │ ├── smooth_poop_block_wall.json │ │ ├── granite_from_dripstone_block.json │ │ ├── mossy_poop_bricks_from_moss_block.json │ │ ├── poop_brick_vertical_slab.json │ │ ├── cut_poop_block_stairs.json │ │ ├── cut_poop_block_vertical_slab.json │ │ ├── dried_poop_block_stairs.json │ │ ├── mossy_poop_brick_stairs.json │ │ ├── poop_bread.json │ │ ├── smooth_poop_block_stairs.json │ │ ├── dried_poop_block_vertical_slab.json │ │ ├── mossy_poop_brick_vertical_slab.json │ │ ├── smooth_poop_block_vertical_slab.json │ │ ├── poop_fence.json │ │ ├── cobweb.json │ │ ├── poop_fence_gate.json │ │ ├── oak_toilet.json │ │ ├── stone_toilet.json │ │ ├── birch_toilet.json │ │ ├── coarse_dirt_from_poop_block.json │ │ ├── acacia_toilet.json │ │ ├── bamboo_toilet.json │ │ ├── cherry_toilet.json │ │ ├── jungle_toilet.json │ │ ├── spruce_toilet.json │ │ ├── warped_toilet.json │ │ ├── crimson_toilet.json │ │ ├── dark_oak_toilet.json │ │ ├── mangrove_toilet.json │ │ ├── cobblestone_toilet.json │ │ ├── red_concrete_toilet.json │ │ ├── smooth_stone_toilet.json │ │ ├── stone_brick_toilet.json │ │ ├── black_concrete_toilet.json │ │ ├── blue_concrete_toilet.json │ │ ├── brown_concrete_toilet.json │ │ ├── cyan_concrete_toilet.json │ │ └── gray_concrete_toilet.json │ └── java │ └── com │ └── altnoir │ └── poopsky │ ├── effect │ └── IntestinalSpasmEffect.java │ └── item │ └── Poop.java ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── settings.gradle ├── .gitattributes ├── gradle.properties └── .gitignore /src/main/resources/assets/poopsky/models/item/stool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/stool_block" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/oak_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/oak_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/poop_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/poop_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_leaves" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/compooper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/compooper" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_block1" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/poop_piece.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_height2" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/poop_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/poop_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/acacia_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/acacia_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/bamboo_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/bamboo_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/birch_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/birch_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/cherry_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/cherry_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/jungle_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/jungle_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/spruce_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/spruce_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/stone_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/stone_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/warped_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/warped_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/data/c/tags/item/foods.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:dragon_breath_chili" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/crops.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:maggots" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_door" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_fence" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/item/doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_door" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/item/fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_fence" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/poop_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_log_horizontal" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/poop_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_sapling" 3 | } -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/crimson_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/crimson_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/cut_poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/cut_poop_block" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/dark_oak_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/dark_oak_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/dried_poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/dried_poop_block" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/mangrove_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/mangrove_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/poop_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/poop_leaves_gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_leaves_gold" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/poop_leaves_iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_leaves_iron" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/rainbow_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/rainbow_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/data/c/tags/item/foods/cooked_meat.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:baked_maggots" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/c/tags/item/foods/raw_meat.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:maggots_seeds" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/c/tags/item/music_discs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:music_disc_lawrence" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_button" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:dried_poop_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/saplings.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_sapling" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/item/buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_button" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/item/saplings.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_sapling" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/item/trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_trapdoor" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/poop_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_button_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/poop_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_fence_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/poop_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_fence_gate" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/poop_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/cobblestone_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/cobblestone_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/mossy_poop_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/mossy_poop_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/poop_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/poop_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/smooth_poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/smooth_poop_block" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/stone_brick_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/stone_brick_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/fence_gates.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_fence_gate" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/maintains_farmland.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:maggots" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/mineable/hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#poopsky:poop_blocks" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/mineable/shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_piece" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_trapdoor" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/item/fence_gates.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_fence_gate" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_slab_double_liquids.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_block3" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/poop_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_vertical_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/black_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/black_concrete_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/blue_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/blue_concrete_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/brown_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/brown_concrete_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/cracked_poop_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/cracked_poop_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/cut_poop_block_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/cut_poop_block_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/cut_poop_block_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/cut_poop_block_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/cyan_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/cyan_concrete_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/dried_poop_block_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/dried_poop_block_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/gray_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/gray_concrete_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/green_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/green_concrete_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/lime_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/lime_concrete_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/mossy_poop_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/mossy_poop_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/pink_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/pink_concrete_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/poop_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/red_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/red_concrete_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/smooth_stone_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/smooth_stone_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/white_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/white_concrete_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/tags/block/convertable_to_moss.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/poop_empty_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_empty_log_horizontal" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/poop_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/particles/poop_particle.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures" : [ 3 | "poopsky:poop_particle" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/dried_poop_block_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/dried_poop_block_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/magenta_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/magenta_concrete_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/mossy_poop_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/mossy_poop_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/orange_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/orange_concrete_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/purple_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/purple_concrete_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/smooth_poop_block_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/smooth_poop_block_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/yellow_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/yellow_concrete_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/pressure_plates.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/snow_layer_can_survive_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/item/villager_plantable_seeds.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:maggots_seeds" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/stripped_poop_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/stripped_poop_log_horizontal" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/cut_poop_block_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/cut_poop_block_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/dried_poop_block_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/dried_poop_block_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/light_blue_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/light_blue_concrete_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/light_gray_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/light_gray_concrete_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/mossy_cobblestone_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/mossy_cobblestone_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/mossy_poop_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/mossy_poop_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/mossy_stone_brick_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/mossy_stone_brick_toilet" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/poop_brick_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/poop_brick_vertical_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/smooth_poop_block_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/smooth_poop_block_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/cut_poop_block_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/cut_poop_block_vertical_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/smooth_poop_block_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/smooth_poop_block_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/stripped_poop_empty_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/stripped_poop_empty_log_horizontal" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/dried_poop_block_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/dried_poop_block_vertical_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/mossy_poop_brick_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/mossy_poop_brick_vertical_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/smooth_poop_block_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/smooth_poop_block_vertical_slab" 3 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/flowers.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#poopsky:toilet_blocks", 4 | "#poopsky:poop_blocks" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/sounds/fart_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/sounds/fart_1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/sounds/fart_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/sounds/fart_2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/entity/villager/profession/poopmaker.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "villager": { 3 | "hat": "full" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/blockstates/poop_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "poopsky:block/poop_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/blockstates/poop_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "poopsky:block/poop_leaves" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/entity/zombie_villager/profession/poopmaker.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "villager": { 3 | "hat": "full" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/item/poop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/item/poop.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/item/spall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/item/spall.png -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/poop.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "poopsky:item/poop" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/stool_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/stool", 3 | "textures": { 4 | "0": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/rainbow_concrete.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": true, 4 | "frametime": 20 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/blockstates/cut_poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "poopsky:block/cut_poop_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/blockstates/dried_poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "poopsky:block/dried_poop_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/blockstates/poop_leaves_gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "poopsky:block/poop_leaves_gold" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/blockstates/poop_leaves_iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "poopsky:block/poop_leaves_iron" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/spall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "poopsky:item/spall" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button", 3 | "textures": { 4 | "texture": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/item/poop_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/item/poop_ball.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/item/poop_bread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/item/poop_bread.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/item/poop_cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/item/poop_cake.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/item/poop_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/item/poop_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/item/poop_soup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/item/poop_soup.png -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/blockstates/mossy_poop_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "poopsky:block/mossy_poop_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/blockstates/smooth_poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "poopsky:block/smooth_poop_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/stone_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/stone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/poop_ball.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "poopsky:item/poop_ball" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/poop_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "poopsky:item/poop_door" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/poop_soup.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "poopsky:item/poop_soup" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/item/poop_cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "poopsky:item/poop_cake" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_liquid.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/item/toilet_plug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/item/toilet_plug.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/item/urine_bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/item/urine_bottle.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/item/urine_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/item/urine_bucket.png -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/blockstates/cracked_poop_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "poopsky:block/cracked_poop_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/birch_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/birch_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/maggots_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "poopsky:block/maggots_stage0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/maggots_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "poopsky:block/maggots_stage1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/maggots_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "poopsky:block/maggots_stage2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/maggots_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "poopsky:block/maggots_stage3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/maggots_stage4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "poopsky:block/maggots_stage4" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/maggots_stage5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "poopsky:block/maggots_stage5" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/maggots_stage6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "poopsky:block/maggots_stage6" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/maggots_stage7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "poopsky:block/maggots_stage7" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/oak_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/oak_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/oak_toilet_n.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_n", 3 | "textures": { 4 | "toilet": "minecraft:block/oak_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/oak_toilet_s.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_s", 3 | "textures": { 4 | "toilet": "minecraft:block/oak_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "poopsky:block/poop_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "poopsky:block/poop_leaves" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/poop_bread.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "poopsky:item/poop_bread" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/toilet_plug.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "poopsky:item/toilet_plug" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/urine_bottle.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "poopsky:item/urine_bottle" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_block1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_fence_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_post", 3 | "textures": { 4 | "texture": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_fence_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_side", 3 | "textures": { 4 | "texture": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/template_wall_post", 3 | "textures": { 4 | "wall": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/template_wall_side", 3 | "textures": { 4 | "wall": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/compooper_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/compooper_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/compooper_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/compooper_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/cut_poop_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/cut_poop_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/maggots_stage0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/maggots_stage0.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/maggots_stage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/maggots_stage1.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/maggots_stage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/maggots_stage2.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/maggots_stage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/maggots_stage3.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/maggots_stage4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/maggots_stage4.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/maggots_stage5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/maggots_stage5.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/maggots_stage6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/maggots_stage6.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/maggots_stage7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/maggots_stage7.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_cake_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_cake_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_cake_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_cake_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_trapdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_trapdoor.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/entity/toilet_plug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/entity/toilet_plug.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/item/baked_maggots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/item/baked_maggots.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/item/maggots_seeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/item/maggots_seeds.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/item/poop_dumplings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/item/poop_dumplings.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/item/toilet_linker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/item/toilet_linker.png -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/acacia_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/acacia_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/bamboo_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/birch_toilet_n.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_n", 3 | "textures": { 4 | "toilet": "minecraft:block/birch_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/birch_toilet_s.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_s", 3 | "textures": { 4 | "toilet": "minecraft:block/birch_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cherry_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/cherry_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cobblestone_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/cobblestone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/crimson_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/crimson_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cut_poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "poopsky:block/cut_poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/jungle_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/jungle_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/oak_toilet_ns.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_ns", 3 | "textures": { 4 | "toilet": "minecraft:block/oak_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/rainbow_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "poopsky:block/rainbow_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/spruce_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/spruce_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/stone_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/stone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/warped_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/warped_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/baked_maggots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "poopsky:item/baked_maggots" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/maggots_seeds.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "poopsky:item/maggots_seeds" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/poop_dumplings.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "poopsky:item/poop_dumplings" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/toilet_linker.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "poopsky:item/toilet_linker" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_leaves", 4 | "poopsky:poop_leaves_iron", 5 | "poopsky:poop_leaves_gold" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/item/leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_leaves", 4 | "poopsky:poop_leaves_iron", 5 | "poopsky:poop_leaves_gold" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_button_pressed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button_pressed", 3 | "textures": { 4 | "texture": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/template_fence_gate", 3 | "textures": { 4 | "texture": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/wall_inventory", 3 | "textures": { 4 | "wall": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/compooper_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/compooper_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/compooper_ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/compooper_ready.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/dried_poop_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/dried_poop_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_cake_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_cake_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_cake_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_cake_inner.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_door_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_leaves_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_leaves_gold.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_leaves_iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_leaves_iron.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/rainbow_concrete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/rainbow_concrete.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/particle/poop_particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/particle/poop_particle.png -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/acacia_toilet_n.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_n", 3 | "textures": { 4 | "toilet": "minecraft:block/acacia_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/acacia_toilet_ns.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_ns", 3 | "textures": { 4 | "toilet": "minecraft:block/acacia_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/acacia_toilet_s.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_s", 3 | "textures": { 4 | "toilet": "minecraft:block/acacia_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/bamboo_toilet_n.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_n", 3 | "textures": { 4 | "toilet": "minecraft:block/bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/bamboo_toilet_ns.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_ns", 3 | "textures": { 4 | "toilet": "minecraft:block/bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/bamboo_toilet_s.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_s", 3 | "textures": { 4 | "toilet": "minecraft:block/bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/birch_toilet_ns.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_ns", 3 | "textures": { 4 | "toilet": "minecraft:block/birch_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/blue_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/blue_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cherry_toilet_n.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_n", 3 | "textures": { 4 | "toilet": "minecraft:block/cherry_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cherry_toilet_ns.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_ns", 3 | "textures": { 4 | "toilet": "minecraft:block/cherry_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cherry_toilet_s.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_s", 3 | "textures": { 4 | "toilet": "minecraft:block/cherry_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/crimson_toilet_n.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_n", 3 | "textures": { 4 | "toilet": "minecraft:block/crimson_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/crimson_toilet_ns.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_ns", 3 | "textures": { 4 | "toilet": "minecraft:block/crimson_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/crimson_toilet_s.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_s", 3 | "textures": { 4 | "toilet": "minecraft:block/crimson_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cyan_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/cyan_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/dark_oak_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/dark_oak_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/dark_oak_toilet_n.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_n", 3 | "textures": { 4 | "toilet": "minecraft:block/dark_oak_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/dark_oak_toilet_s.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_s", 3 | "textures": { 4 | "toilet": "minecraft:block/dark_oak_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/dried_poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "poopsky:block/dried_poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/gray_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/gray_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/jungle_toilet_n.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_n", 3 | "textures": { 4 | "toilet": "minecraft:block/jungle_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/jungle_toilet_ns.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_ns", 3 | "textures": { 4 | "toilet": "minecraft:block/jungle_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/jungle_toilet_s.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_s", 3 | "textures": { 4 | "toilet": "minecraft:block/jungle_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/lime_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/lime_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mangrove_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/mangrove_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mangrove_toilet_n.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_n", 3 | "textures": { 4 | "toilet": "minecraft:block/mangrove_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mangrove_toilet_s.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_s", 3 | "textures": { 4 | "toilet": "minecraft:block/mangrove_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mossy_poop_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "poopsky:block/mossy_poop_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/pink_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/pink_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_leaves_gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "poopsky:block/poop_leaves_gold" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_leaves_iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "poopsky:block/poop_leaves_iron" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/red_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/red_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/smooth_poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "poopsky:block/smooth_poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/smooth_stone_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/smooth_stone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/spruce_toilet_n.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_n", 3 | "textures": { 4 | "toilet": "minecraft:block/spruce_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/spruce_toilet_ns.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_ns", 3 | "textures": { 4 | "toilet": "minecraft:block/spruce_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/spruce_toilet_s.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_s", 3 | "textures": { 4 | "toilet": "minecraft:block/spruce_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/stone_brick_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/stone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/warped_toilet_n.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_n", 3 | "textures": { 4 | "toilet": "minecraft:block/warped_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/warped_toilet_ns.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_ns", 3 | "textures": { 4 | "toilet": "minecraft:block/warped_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/warped_toilet_s.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_s", 3 | "textures": { 4 | "toilet": "minecraft:block/warped_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_button_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/button_inventory", 3 | "textures": { 4 | "texture": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_fence_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/fence_inventory", 3 | "textures": { 4 | "texture": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/pressure_plate_up", 3 | "textures": { 4 | "texture": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/sounds/merry_christmas_mr_lawrence.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/sounds/merry_christmas_mr_lawrence.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/compooper_compost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/compooper_compost.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/cracked_poop_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/cracked_poop_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/mossy_poop_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/mossy_poop_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_block_liquids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_block_liquids.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_block_maggots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_block_maggots.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_log_top_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/poop_log_top_empty.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/smooth_poop_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/smooth_poop_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/stripped_poop_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/stripped_poop_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/stripped_poop_log2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/stripped_poop_log2.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/item/dragon_breath_chili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/item/dragon_breath_chili.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/item/music_disc_lawrence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/item/music_disc_lawrence.png -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/black_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/black_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/brown_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/brown_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cobblestone_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/cobblestone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cracked_poop_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "poopsky:block/cracked_poop_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/dark_oak_toilet_ns.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_ns", 3 | "textures": { 4 | "toilet": "minecraft:block/dark_oak_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/green_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/green_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/magenta_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/magenta_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mangrove_toilet_ns.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_ns", 3 | "textures": { 4 | "toilet": "minecraft:block/mangrove_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/orange_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/orange_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/purple_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/purple_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/rainbow_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "poopsky:block/rainbow_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/white_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/white_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/yellow_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/yellow_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/dragon_breath_chili.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "poopsky:item/dragon_breath_chili" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/item/music_disc_lawrence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "poopsky:item/music_disc_lawrence" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_fence_gate_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/template_fence_gate_open", 3 | "textures": { 4 | "texture": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_fence_gate_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/template_fence_gate_wall", 3 | "textures": { 4 | "texture": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_pressure_plate_down.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/pressure_plate_down", 3 | "textures": { 4 | "texture": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/stripped_poop_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/stripped_poop_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/mob_effect/intestinal_spasm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/mob_effect/intestinal_spasm.png -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/blue_concrete_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/blue_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cyan_concrete_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/cyan_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/gray_concrete_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/gray_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/lime_concrete_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/lime_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mossy_cobblestone_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/mossy_cobblestone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mossy_stone_brick_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/mossy_stone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/pink_concrete_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/pink_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_brick_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "poopsky:block/poop_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_brick_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "poopsky:block/poop_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_brick_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "poopsky:block/poop_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/red_concrete_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/red_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/smooth_stone_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/smooth_stone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/stone_brick_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/stone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/c/tags/item/foods/food_poisoning.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop", 4 | "poopsky:poop_bread", 5 | "poopsky:poop_soup", 6 | "poopsky:poop_cake" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/mob_effect/fecal_incontinence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/mob_effect/fecal_incontinence.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | maven { 4 | name = 'Fabric' 5 | url = 'https://maven.fabricmc.net/' 6 | } 7 | mavenCentral() 8 | gradlePluginPortal() 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/black_concrete_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/black_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/brown_concrete_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/brown_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cut_poop_block_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "poopsky:block/cut_poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cut_poop_block_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "poopsky:block/cut_poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cut_poop_block_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "poopsky:block/cut_poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/green_concrete_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/green_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/light_blue_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/light_blue_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/light_gray_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet", 3 | "textures": { 4 | "toilet": "minecraft:block/light_gray_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/magenta_concrete_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/magenta_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/orange_concrete_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/orange_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_trapdoor_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_trapdoor_open", 3 | "textures": { 4 | "texture": "poopsky:block/poop_trapdoor" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_trapdoor_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_trapdoor_top", 3 | "textures": { 4 | "texture": "poopsky:block/poop_trapdoor" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/purple_concrete_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/purple_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/white_concrete_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/white_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/yellow_concrete_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/yellow_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_fence_gate_wall_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/template_fence_gate_wall_open", 3 | "textures": { 4 | "texture": "poopsky:block/poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/dried_poop_block_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "poopsky:block/dried_poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/dried_poop_block_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "poopsky:block/dried_poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/dried_poop_block_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "poopsky:block/dried_poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mossy_cobblestone_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/mossy_cobblestone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mossy_poop_brick_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "poopsky:block/mossy_poop_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mossy_poop_brick_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "poopsky:block/mossy_poop_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mossy_poop_brick_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "poopsky:block/mossy_poop_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mossy_stone_brick_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/mossy_stone_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_brick_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "poopsky:block/poop_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_trapdoor_bottom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_trapdoor_bottom", 3 | "textures": { 4 | "texture": "poopsky:block/poop_trapdoor" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/smooth_poop_block_wall_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_post", 3 | "textures": { 4 | "wall": "poopsky:block/smooth_poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/smooth_poop_block_wall_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side", 3 | "textures": { 4 | "wall": "poopsky:block/smooth_poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/stripped_poop_log_top_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/block/stripped_poop_log_top_empty.png -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cut_poop_block_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "poopsky:block/cut_poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/light_blue_concrete_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/light_blue_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/light_gray_concrete_toilet_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/toilet_lava", 3 | "textures": { 4 | "toilet": "minecraft:block/light_gray_concrete" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/smooth_poop_block_wall_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "poopsky:block/smooth_poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "side": "poopsky:block/poop_log", 5 | "end": "poopsky:block/poop_log_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/entity/villager/profession/poopmaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/entity/villager/profession/poopmaker.png -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/dried_poop_block_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "poopsky:block/dried_poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mossy_poop_brick_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "poopsky:block/mossy_poop_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/smooth_poop_block_wall_side_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_wall_side_tall", 3 | "textures": { 4 | "wall": "poopsky:block/smooth_poop_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_log", 4 | "poopsky:poop_empty_log", 5 | "poopsky:stripped_poop_log", 6 | "poopsky:stripped_poop_empty_log" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/item/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_log", 4 | "poopsky:poop_empty_log", 5 | "poopsky:stripped_poop_log", 6 | "poopsky:stripped_poop_empty_log" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_empty_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/empty_log", 3 | "textures": { 4 | "0": "poopsky:block/poop_log", 5 | "1": "poopsky:block/poop_log_top_empty" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_slab_double.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_column", 3 | "textures": { 4 | "end": "poopsky:block/poop_block", 5 | "side": "poopsky:block/poop_block" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | { 5 | "id": "poopsky:toilet", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/logs_that_burn.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_log", 4 | "poopsky:poop_empty_log", 5 | "poopsky:stripped_poop_log", 6 | "poopsky:stripped_poop_empty_log" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/vertical_slab", 3 | "textures": { 4 | "top": "poopsky:block/poop_block", 5 | "side": "poopsky:block/poop_block" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/entity/zombie_villager/profession/poopmaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Altnoir/PoopSkyMod/HEAD/src/main/resources/assets/poopsky/textures/entity/zombie_villager/profession/poopmaker.png -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_block2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "poopsky:block/poop_block_maggots", 5 | "particle": "poopsky:block/poop_block" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_log_horizontal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column_horizontal", 3 | "textures": { 4 | "side": "poopsky:block/poop_log", 5 | "end": "poopsky:block/poop_log_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_brick_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/vertical_slab", 3 | "textures": { 4 | "side": "poopsky:block/poop_bricks", 5 | "top": "poopsky:block/poop_bricks" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_empty_log_horizontal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/empty_log_horizontal", 3 | "textures": { 4 | "0": "poopsky:block/poop_log", 5 | "1": "poopsky:block/poop_log_top_empty" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/stripped_poop_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "side": "poopsky:block/stripped_poop_log", 5 | "end": "poopsky:block/stripped_poop_log_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_door_top_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_left", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_door_bottom", 5 | "top": "poopsky:block/poop_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_door_top_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_right", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_door_bottom", 5 | "top": "poopsky:block/poop_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_slab_double_maggots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_column", 3 | "textures": { 4 | "end": "poopsky:block/poop_block_maggots", 5 | "side": "poopsky:block/poop_block_maggots" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/stripped_poop_empty_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/empty_log", 3 | "textures": { 4 | "0": "poopsky:block/stripped_poop_log", 5 | "1": "poopsky:block/stripped_poop_log_top_empty" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/stripped_poop_empty_log2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/empty_log", 3 | "textures": { 4 | "0": "poopsky:block/stripped_poop_log2", 5 | "1": "poopsky:block/stripped_poop_log_top_empty" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/stripped_poop_log2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "side": "poopsky:block/stripped_poop_log2", 5 | "end": "poopsky:block/stripped_poop_log_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cut_poop_block_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/vertical_slab", 3 | "textures": { 4 | "side": "poopsky:block/cut_poop_block", 5 | "top": "poopsky:block/cut_poop_block" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_door_bottom_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_bottom_left", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_door_bottom", 5 | "top": "poopsky:block/poop_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/slab", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_block", 5 | "side": "poopsky:block/poop_block", 6 | "top": "poopsky:block/poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/dried_poop_block_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/vertical_slab", 3 | "textures": { 4 | "side": "poopsky:block/dried_poop_block", 5 | "top": "poopsky:block/dried_poop_block" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_door_bottom_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_bottom_right", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_door_bottom", 5 | "top": "poopsky:block/poop_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_door_top_left_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_left_open", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_door_bottom", 5 | "top": "poopsky:block/poop_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_door_top_right_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_right_open", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_door_bottom", 5 | "top": "poopsky:block/poop_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_block", 5 | "side": "poopsky:block/poop_block", 6 | "top": "poopsky:block/poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_vertical_slab_maggots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/vertical_slab", 3 | "textures": { 4 | "top": "poopsky:block/poop_block_maggots", 5 | "side": "poopsky:block/poop_block_maggots" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_liquid.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": 3 | { 4 | "height": 16, 5 | "width": 16, 6 | "frametime": 4, 7 | "frames": 8 | [ 9 | 0,1,2,3,4,5,6 10 | ] 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/data/poopsky/jukebox_song/lawrence.json: -------------------------------------------------------------------------------- 1 | { 2 | "comparator_output": 8, 3 | "description": { 4 | "translate": "item.poopsky.music_disc_lawrence.desc" 5 | }, 6 | "length_in_seconds": 276.0, 7 | "sound_event": "poopsky:lawrence" 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mossy_poop_brick_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/vertical_slab", 3 | "textures": { 4 | "side": "poopsky:block/mossy_poop_bricks", 5 | "top": "poopsky:block/mossy_poop_bricks" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_door_bottom_left_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_bottom_left_open", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_door_bottom", 5 | "top": "poopsky:block/poop_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/smooth_poop_block_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/vertical_slab", 3 | "textures": { 4 | "side": "poopsky:block/smooth_poop_block", 5 | "top": "poopsky:block/smooth_poop_block" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/slab_top", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_block", 5 | "side": "poopsky:block/poop_block", 6 | "top": "poopsky:block/poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_block_liquids.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": 3 | { 4 | "height": 16, 5 | "width": 16, 6 | "frametime": 4, 7 | "frames": 8 | [ 9 | 0,1,2,3,4,5,6 10 | ] 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_door_bottom_right_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_bottom_right_open", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_door_bottom", 5 | "top": "poopsky:block/poop_door_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/stripped_poop_empty_log_horizontal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/empty_log_horizontal", 3 | "textures": { 4 | "0": "poopsky:block/stripped_poop_log", 5 | "1": "poopsky:block/stripped_poop_log_top_empty" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/stripped_poop_log_horizontal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column_horizontal", 3 | "textures": { 4 | "side": "poopsky:block/stripped_poop_log", 5 | "end": "poopsky:block/stripped_poop_log_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/stripped_poop_log_horizontal2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column_horizontal", 3 | "textures": { 4 | "side": "poopsky:block/stripped_poop_log2", 5 | "end": "poopsky:block/stripped_poop_log_top" 6 | } 7 | } -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # 2 | # https://help.github.com/articles/dealing-with-line-endings/ 3 | # 4 | # Linux start script should use lf 5 | /gradlew text eol=lf 6 | 7 | # These are Windows script files and should use crlf 8 | *.bat text eol=crlf 9 | 10 | -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_bricks", 5 | "side": "poopsky:block/poop_bricks", 6 | "top": "poopsky:block/poop_bricks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_slab_liquids.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/slab", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_block", 5 | "side": "poopsky:block/poop_block", 6 | "top": "poopsky:block/poop_block_liquids" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_stairs_inner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/inner_stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_block", 5 | "side": "poopsky:block/poop_block", 6 | "top": "poopsky:block/poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_stairs_outer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/outer_stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_block", 5 | "side": "poopsky:block/poop_block", 6 | "top": "poopsky:block/poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/stripped_poop_empty_log_horizontal2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "poopsky:block/empty_log_horizontal", 3 | "textures": { 4 | "0": "poopsky:block/stripped_poop_log2", 5 | "1": "poopsky:block/stripped_poop_log_top_empty" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_bricks", 5 | "side": "poopsky:block/poop_bricks", 6 | "top": "poopsky:block/poop_bricks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/stool_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:stool" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_slab_top_liquids.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/slab_top", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_block", 5 | "side": "poopsky:block/poop_block", 6 | "top": "poopsky:block/poop_block_liquids" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_brick_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_bricks", 5 | "side": "poopsky:block/poop_bricks", 6 | "top": "poopsky:block/poop_bricks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_door_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:poop_door" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_slab_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:poop_slab" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_wall_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:poop_wall" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cut_poop_block_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "poopsky:block/cut_poop_block", 5 | "side": "poopsky:block/cut_poop_block", 6 | "top": "poopsky:block/cut_poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_brick_stairs_inner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/inner_stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_bricks", 5 | "side": "poopsky:block/poop_bricks", 6 | "top": "poopsky:block/poop_bricks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/poop_brick_stairs_outer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/outer_stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_bricks", 5 | "side": "poopsky:block/poop_bricks", 6 | "top": "poopsky:block/poop_bricks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_bricks_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:poop_bricks" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_button_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 4, 8 | "id": "poopsky:poop_button" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_empty_log_from_poop_log_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_log" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:poop_empty_log" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_fence_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:poop_fence" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_piece_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 8, 8 | "id": "poopsky:poop_piece" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_stairs_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:poop_stairs" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_slab_maggots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/slab", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_block_maggots", 5 | "side": "poopsky:block/poop_block_maggots", 6 | "top": "poopsky:block/poop_block_maggots" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cut_poop_block_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "poopsky:block/cut_poop_block", 5 | "side": "poopsky:block/cut_poop_block", 6 | "top": "poopsky:block/cut_poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cut_poop_block_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/cut_poop_block", 5 | "side": "poopsky:block/cut_poop_block", 6 | "top": "poopsky:block/cut_poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/dried_poop_block_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "poopsky:block/dried_poop_block", 5 | "side": "poopsky:block/dried_poop_block", 6 | "top": "poopsky:block/dried_poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_block_from_poop_empty_log_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_empty_log" 5 | }, 6 | "result": { 7 | "count": 4, 8 | "id": "poopsky:poop_block" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_trapdoor_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:poop_trapdoor" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/poop_slab_top_maggots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/slab_top", 3 | "textures": { 4 | "bottom": "poopsky:block/poop_block_maggots", 5 | "side": "poopsky:block/poop_block_maggots", 6 | "top": "poopsky:block/poop_block_maggots" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/dried_poop_block_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/dried_poop_block", 5 | "side": "poopsky:block/dried_poop_block", 6 | "top": "poopsky:block/dried_poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mossy_poop_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "poopsky:block/mossy_poop_bricks", 5 | "side": "poopsky:block/mossy_poop_bricks", 6 | "top": "poopsky:block/mossy_poop_bricks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/smooth_poop_block_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "poopsky:block/smooth_poop_block", 5 | "side": "poopsky:block/smooth_poop_block", 6 | "top": "poopsky:block/smooth_poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_brick_slab_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:poop_brick_slab" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_brick_slab_from_poop_bricks_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_bricks" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:poop_brick_slab" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_brick_stairs_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:poop_brick_stairs" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_brick_wall_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:poop_brick_wall" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_brick_wall_from_poop_bricks_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_bricks" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:poop_brick_wall" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_fence_gate_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:poop_fence_gate" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/stripped_poop_log_from_poop_log_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_log" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:stripped_poop_log" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/textures/block/poop_block_maggots.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": 3 | { 4 | "height": 16, 5 | "width": 16, 6 | "frametime": 2, 7 | "frames": 8 | [ 9 | 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 10 | ] 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cut_poop_block_stairs_inner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/inner_stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/cut_poop_block", 5 | "side": "poopsky:block/cut_poop_block", 6 | "top": "poopsky:block/cut_poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/cut_poop_block_stairs_outer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/outer_stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/cut_poop_block", 5 | "side": "poopsky:block/cut_poop_block", 6 | "top": "poopsky:block/cut_poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/dried_poop_block_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "poopsky:block/dried_poop_block", 5 | "side": "poopsky:block/dried_poop_block", 6 | "top": "poopsky:block/dried_poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mossy_poop_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/mossy_poop_bricks", 5 | "side": "poopsky:block/mossy_poop_bricks", 6 | "top": "poopsky:block/mossy_poop_bricks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/smooth_poop_block_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/smooth_poop_block", 5 | "side": "poopsky:block/smooth_poop_block", 6 | "top": "poopsky:block/smooth_poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "misc", 4 | "ingredients": [ 5 | { 6 | "item": "poopsky:poop_block" 7 | } 8 | ], 9 | "result": { 10 | "count": 4, 11 | "id": "poopsky:poop" 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_brick_stairs_from_poop_bricks_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_bricks" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:poop_brick_stairs" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_pressure_plate_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:poop_pressure_plate" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_vertical_slab_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:poop_vertical_slab" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/blockstates/poop_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "axis=y": {"model": "poopsky:block/poop_log"}, 4 | "axis=z": {"model": "poopsky:block/poop_log_horizontal", "x": 90}, 5 | "axis=x": {"model": "poopsky:block/poop_log_horizontal", "x": 90, "y": 90} 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/blockstates/poop_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "powered=false": { 4 | "model": "poopsky:block/poop_pressure_plate" 5 | }, 6 | "powered=true": { 7 | "model": "poopsky:block/poop_pressure_plate_down" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mossy_poop_brick_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "poopsky:block/mossy_poop_bricks", 5 | "side": "poopsky:block/mossy_poop_bricks", 6 | "top": "poopsky:block/mossy_poop_bricks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/smooth_poop_block_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "poopsky:block/smooth_poop_block", 5 | "side": "poopsky:block/smooth_poop_block", 6 | "top": "poopsky:block/smooth_poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cut_poop_block_from_dried_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:dried_poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:cut_poop_block" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/dried_poop_block_stairs_inner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/inner_stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/dried_poop_block", 5 | "side": "poopsky:block/dried_poop_block", 6 | "top": "poopsky:block/dried_poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/dried_poop_block_stairs_outer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/outer_stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/dried_poop_block", 5 | "side": "poopsky:block/dried_poop_block", 6 | "top": "poopsky:block/dried_poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mossy_poop_brick_stairs_inner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/inner_stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/mossy_poop_bricks", 5 | "side": "poopsky:block/mossy_poop_bricks", 6 | "top": "poopsky:block/mossy_poop_bricks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/mossy_poop_brick_stairs_outer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/outer_stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/mossy_poop_bricks", 5 | "side": "poopsky:block/mossy_poop_bricks", 6 | "top": "poopsky:block/mossy_poop_bricks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/smooth_poop_block_stairs_inner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/inner_stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/smooth_poop_block", 5 | "side": "poopsky:block/smooth_poop_block", 6 | "top": "poopsky:block/smooth_poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/models/block/smooth_poop_block_stairs_outer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/outer_stairs", 3 | "textures": { 4 | "bottom": "poopsky:block/smooth_poop_block", 5 | "side": "poopsky:block/smooth_poop_block", 6 | "top": "poopsky:block/smooth_poop_block" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cut_poop_block_slab_from_cut_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:cut_poop_block" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:cut_poop_block_slab" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cut_poop_block_wall_from_cut_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:cut_poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:cut_poop_block_wall" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_block_from_stripped_poop_empty_log_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:stripped_poop_empty_log" 5 | }, 6 | "result": { 7 | "count": 4, 8 | "id": "poopsky:poop_block" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_brick_vertical_slab_from_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_block" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:poop_brick_vertical_slab" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "building", 4 | "ingredients": [ 5 | { 6 | "item": "poopsky:poop" 7 | } 8 | ], 9 | "result": { 10 | "count": 1, 11 | "id": "poopsky:poop_button" 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/blockstates/poop_empty_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "axis=y": {"model": "poopsky:block/poop_empty_log"}, 4 | "axis=z": {"model": "poopsky:block/poop_empty_log_horizontal"}, 5 | "axis=x": {"model": "poopsky:block/poop_empty_log_horizontal", "y": 90} 6 | } 7 | } -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip 4 | networkTimeout=10000 5 | validateDistributionUrl=true 6 | zipStoreBase=GRADLE_USER_HOME 7 | zipStorePath=wrapper/dists 8 | -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/item/slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_slab", 4 | "poopsky:poop_brick_slab", 5 | "poopsky:mossy_poop_brick_slab", 6 | "poopsky:dried_poop_block_slab", 7 | "poopsky:smooth_poop_block_slab", 8 | "poopsky:cut_poop_block_slab" 9 | ] 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/item/walls.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_wall", 4 | "poopsky:poop_brick_wall", 5 | "poopsky:mossy_poop_brick_wall", 6 | "poopsky:dried_poop_block_wall", 7 | "poopsky:smooth_poop_block_wall", 8 | "poopsky:cut_poop_block_wall" 9 | ] 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cut_poop_block_slab_from_dried_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:dried_poop_block" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:cut_poop_block_slab" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cut_poop_block_stairs_from_cut_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:cut_poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:cut_poop_block_stairs" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cut_poop_block_stairs_from_dried_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:dried_poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:cut_poop_block_stairs" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cut_poop_block_wall_from_dried_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:dried_poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:cut_poop_block_wall" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/dried_poop_block_slab_from_dried_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:dried_poop_block" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:dried_poop_block_slab" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/dried_poop_block_wall_from_dried_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:dried_poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:dried_poop_block_wall" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_brick_vertical_slab_from_poop_bricks_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_bricks" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:poop_brick_vertical_slab" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/stripped_poop_empty_log_from_poop_empty_log_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:poop_empty_log" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:stripped_poop_empty_log" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_slab", 4 | "poopsky:poop_brick_slab", 5 | "poopsky:mossy_poop_brick_slab", 6 | "poopsky:dried_poop_block_slab", 7 | "poopsky:smooth_poop_block_slab", 8 | "poopsky:cut_poop_block_slab" 9 | ] 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/walls.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_wall", 4 | "poopsky:poop_brick_wall", 5 | "poopsky:mossy_poop_brick_wall", 6 | "poopsky:dried_poop_block_wall", 7 | "poopsky:smooth_poop_block_wall", 8 | "poopsky:cut_poop_block_wall" 9 | ] 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/dried_poop_block_stairs_from_dried_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:dried_poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:dried_poop_block_stairs" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/mossy_poop_brick_slab_from_mossy_poop_bricks_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:mossy_poop_bricks" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:mossy_poop_brick_slab" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/mossy_poop_brick_wall_from_mossy_poop_bricks_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:mossy_poop_bricks" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:mossy_poop_brick_wall" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/smooth_poop_block_slab_from_smooth_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:smooth_poop_block" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:smooth_poop_block_slab" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/smooth_poop_block_wall_from_smooth_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:smooth_poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:smooth_poop_block_wall" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cut_poop_block_vertical_slab_from_cut_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:cut_poop_block" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:cut_poop_block_vertical_slab" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/mossy_poop_brick_stairs_from_mossy_poop_bricks_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:mossy_poop_bricks" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:mossy_poop_brick_stairs" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/smooth_poop_block_stairs_from_smooth_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:smooth_poop_block" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:smooth_poop_block_stairs" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/stripped_poop_empty_log_from_stripped_poop_log_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:stripped_poop_log" 5 | }, 6 | "result": { 7 | "count": 1, 8 | "id": "poopsky:stripped_poop_empty_log" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_stairs", 4 | "poopsky:poop_brick_stairs", 5 | "poopsky:mossy_poop_brick_stairs", 6 | "poopsky:dried_poop_block_stairs", 7 | "poopsky:smooth_poop_block_stairs", 8 | "poopsky:cut_poop_block_stairs" 9 | ] 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/item/stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_stairs", 4 | "poopsky:poop_brick_stairs", 5 | "poopsky:mossy_poop_brick_stairs", 6 | "poopsky:dried_poop_block_stairs", 7 | "poopsky:smooth_poop_block_stairs", 8 | "poopsky:cut_poop_block_stairs" 9 | ] 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cut_poop_block_vertical_slab_from_dried_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:dried_poop_block" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:cut_poop_block_vertical_slab" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/dried_poop_block_vertical_slab_from_dried_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:dried_poop_block" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:dried_poop_block_vertical_slab" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/mossy_poop_brick_vertical_slab_from_mossy_poop_bricks_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:mossy_poop_bricks" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:mossy_poop_brick_vertical_slab" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_block_from_empty_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "building", 4 | "ingredients": [ 5 | { 6 | "item": "poopsky:poop_empty_log" 7 | } 8 | ], 9 | "result": { 10 | "count": 4, 11 | "id": "poopsky:poop_block" 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/smooth_poop_block_vertical_slab_from_smooth_poop_block_stonecutting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "ingredient": { 4 | "item": "poopsky:smooth_poop_block" 5 | }, 6 | "result": { 7 | "count": 2, 8 | "id": "poopsky:smooth_poop_block_vertical_slab" 9 | } 10 | } -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1G 2 | org.gradle.parallel=true 3 | 4 | minecraft_version=1.21.1 5 | yarn_mappings=1.21.1+build.3 6 | loader_version=0.16.14 7 | 8 | # Mod Properties 9 | mod_version=1.21.1-1.1.7 10 | maven_group=com.altnoir.poopsky 11 | archives_base_name=poopsky 12 | 13 | # Dependencies 14 | fabric_version=0.115.4+1.21.1 -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_block_from_stripped_empty_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "building", 4 | "ingredients": [ 5 | { 6 | "item": "poopsky:stripped_poop_empty_log" 7 | } 8 | ], 9 | "result": { 10 | "count": 4, 11 | "id": "poopsky:poop_block" 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_piece.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "PP" 11 | ], 12 | "result": { 13 | "count": 3, 14 | "id": "poopsky:poop_piece" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "PPP" 11 | ], 12 | "result": { 13 | "count": 6, 14 | "id": "poopsky:poop_slab" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/flint_from_spall.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "misc", 4 | "key": { 5 | "S": { 6 | "item": "poopsky:spall" 7 | } 8 | }, 9 | "pattern": [ 10 | "S", 11 | "S" 12 | ], 13 | "result": { 14 | "count": 1, 15 | "id": "minecraft:flint" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/blockstates/poop_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "type=bottom": { 4 | "model": "poopsky:block/poop_brick_slab" 5 | }, 6 | "type=double": { 7 | "model": "poopsky:block/poop_bricks" 8 | }, 9 | "type=top": { 10 | "model": "poopsky:block/poop_brick_slab_top" 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "poopsky:poop" 7 | } 8 | }, 9 | "pattern": [ 10 | "##", 11 | "##" 12 | ], 13 | "result": { 14 | "count": 1, 15 | "id": "poopsky:poop_block" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:poop_bricks" 7 | } 8 | }, 9 | "pattern": [ 10 | "PPP" 11 | ], 12 | "result": { 13 | "count": 6, 14 | "id": "poopsky:poop_brick_slab" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:poop" 7 | } 8 | }, 9 | "pattern": [ 10 | "PP" 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "poopsky:poop_pressure_plate" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/gravel_from_flint_x4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "misc", 4 | "key": { 5 | "F": { 6 | "item": "minecraft:flint" 7 | } 8 | }, 9 | "pattern": [ 10 | "FF", 11 | "FF" 12 | ], 13 | "result": { 14 | "count": 1, 15 | "id": "minecraft:gravel" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "poopsky:poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "##", 11 | "##" 12 | ], 13 | "result": { 14 | "count": 4, 15 | "id": "poopsky:poop_bricks" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "PPP", 11 | "PPP" 12 | ], 13 | "result": { 14 | "count": 6, 15 | "id": "poopsky:poop_wall" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/crafting_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "poopsky:spall" 7 | } 8 | }, 9 | "pattern": [ 10 | "##", 11 | "##" 12 | ], 13 | "result": { 14 | "count": 1, 15 | "id": "minecraft:crafting_table" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cut_poop_block_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:cut_poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "PPP" 11 | ], 12 | "result": { 13 | "count": 6, 14 | "id": "poopsky:cut_poop_block_slab" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_block_from_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:poop_slab" 7 | } 8 | }, 9 | "pattern": [ 10 | "P", 11 | "P" 12 | ], 13 | "result": { 14 | "count": 1, 15 | "id": "poopsky:poop_block" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:poop_slab" 7 | } 8 | }, 9 | "pattern": [ 10 | "PP", 11 | "PP" 12 | ], 13 | "result": { 14 | "count": 2, 15 | "id": "poopsky:poop_trapdoor" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/toilet_linker.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "misc", 4 | "ingredients": [ 5 | { 6 | "item": "poopsky:poop" 7 | }, 8 | { 9 | "item": "minecraft:ender_eye" 10 | } 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "poopsky:toilet_linker" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/tuff_from_spall.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "building", 4 | "ingredients": [ 5 | { 6 | "item": "minecraft:andesite" 7 | }, 8 | { 9 | "item": "poopsky:spall" 10 | } 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "minecraft:tuff" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/blockstates/stool.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north": { "model": "poopsky:block/stool_block"}, 4 | "facing=east": { "model": "poopsky:block/stool_block", "y": 90}, 5 | "facing=south": { "model": "poopsky:block/stool_block", "y": 180}, 6 | "facing=west": { "model": "poopsky:block/stool_block", "y": 270} 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/blockstates/cut_poop_block_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "type=bottom": { 4 | "model": "poopsky:block/cut_poop_block_slab" 5 | }, 6 | "type=double": { 7 | "model": "poopsky:block/cut_poop_block" 8 | }, 9 | "type=top": { 10 | "model": "poopsky:block/cut_poop_block_slab_top" 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/baked_maggots_from_blasting_maggots_seeds.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smoking", 3 | "category": "food", 4 | "cookingtime": 100, 5 | "experience": 0.35, 6 | "group": "maggots_seeds", 7 | "ingredient": { 8 | "item": "poopsky:maggots_seeds" 9 | }, 10 | "result": { 11 | "id": "poopsky:baked_maggots" 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/baked_maggots_from_smelting_maggots_seeds.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smelting", 3 | "category": "food", 4 | "cookingtime": 200, 5 | "experience": 0.35, 6 | "group": "maggots_seeds", 7 | "ingredient": { 8 | "item": "poopsky:maggots_seeds" 9 | }, 10 | "result": { 11 | "id": "poopsky:baked_maggots" 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/calcite_from_spall.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "building", 4 | "ingredients": [ 5 | { 6 | "item": "minecraft:diorite" 7 | }, 8 | { 9 | "item": "poopsky:spall" 10 | } 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "minecraft:calcite" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_block_from_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:poop_vertical_slab" 7 | } 8 | }, 9 | "pattern": [ 10 | "PP" 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "poopsky:poop_block" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:poop_bricks" 7 | } 8 | }, 9 | "pattern": [ 10 | "PPP", 11 | "PPP" 12 | ], 13 | "result": { 14 | "count": 6, 15 | "id": "poopsky:poop_brick_wall" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "PP", 11 | "PP", 12 | "PP" 13 | ], 14 | "result": { 15 | "count": 3, 16 | "id": "poopsky:poop_door" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/mushroom_grow_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:poop_block", 4 | "poopsky:poop_bricks", 5 | "poopsky:mossy_poop_bricks", 6 | "poopsky:dried_poop_block", 7 | "poopsky:poop_log", 8 | "poopsky:poop_empty_log", 9 | "poopsky:stripped_poop_log", 10 | "poopsky:stripped_poop_empty_log" 11 | ] 12 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cut_poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "poopsky:dried_poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "##", 11 | "##" 12 | ], 13 | "result": { 14 | "count": 4, 15 | "id": "poopsky:cut_poop_block" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/diorite_from_clay.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "building", 4 | "ingredients": [ 5 | { 6 | "item": "minecraft:cobblestone" 7 | }, 8 | { 9 | "item": "minecraft:clay" 10 | } 11 | ], 12 | "result": { 13 | "count": 2, 14 | "id": "minecraft:diorite" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/dried_poop_block_from_blasting_poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:blasting", 3 | "category": "blocks", 4 | "cookingtime": 100, 5 | "experience": 0.1, 6 | "group": "dried_poop_block", 7 | "ingredient": { 8 | "item": "poopsky:poop_block" 9 | }, 10 | "result": { 11 | "id": "poopsky:dried_poop_block" 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/dried_poop_block_from_smelting_poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smelting", 3 | "category": "blocks", 4 | "cookingtime": 200, 5 | "experience": 0.1, 6 | "group": "dried_poop_block", 7 | "ingredient": { 8 | "item": "poopsky:poop_block" 9 | }, 10 | "result": { 11 | "id": "poopsky:dried_poop_block" 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/dried_poop_block_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:dried_poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "PPP" 11 | ], 12 | "result": { 13 | "count": 6, 14 | "id": "poopsky:dried_poop_block_slab" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/mossy_poop_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:mossy_poop_bricks" 7 | } 8 | }, 9 | "pattern": [ 10 | "PPP" 11 | ], 12 | "result": { 13 | "count": 6, 14 | "id": "poopsky:mossy_poop_brick_slab" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/music_disc_lawrence.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "building", 4 | "ingredients": [ 5 | { 6 | "tag": "c:music_discs" 7 | }, 8 | { 9 | "item": "poopsky:poop" 10 | } 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "poopsky:music_disc_lawrence" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_dumplings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "building", 4 | "ingredients": [ 5 | { 6 | "item": "poopsky:poop_ball" 7 | }, 8 | { 9 | "tag": "minecraft:leaves" 10 | } 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "poopsky:poop_dumplings" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/smooth_poop_block_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:smooth_poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "PPP" 11 | ], 12 | "result": { 13 | "count": 6, 14 | "id": "poopsky:smooth_poop_block_slab" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/blockstates/dried_poop_block_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "type=bottom": { 4 | "model": "poopsky:block/dried_poop_block_slab" 5 | }, 6 | "type=double": { 7 | "model": "poopsky:block/dried_poop_block" 8 | }, 9 | "type=top": { 10 | "model": "poopsky:block/dried_poop_block_slab_top" 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/blockstates/mossy_poop_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "type=bottom": { 4 | "model": "poopsky:block/mossy_poop_brick_slab" 5 | }, 6 | "type=double": { 7 | "model": "poopsky:block/mossy_poop_bricks" 8 | }, 9 | "type=top": { 10 | "model": "poopsky:block/mossy_poop_brick_slab_top" 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/generated/assets/poopsky/blockstates/smooth_poop_block_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "type=bottom": { 4 | "model": "poopsky:block/smooth_poop_block_slab" 5 | }, 6 | "type=double": { 7 | "model": "poopsky:block/smooth_poop_block" 8 | }, 9 | "type=top": { 10 | "model": "poopsky:block/smooth_poop_block_slab_top" 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "P ", 11 | "PP ", 12 | "PPP" 13 | ], 14 | "result": { 15 | "count": 8, 16 | "id": "poopsky:poop_stairs" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cracked_poop_bricks_from_blasting_poop_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:blasting", 3 | "category": "blocks", 4 | "cookingtime": 100, 5 | "experience": 0.1, 6 | "group": "cracked_poop_bricks", 7 | "ingredient": { 8 | "item": "poopsky:poop_bricks" 9 | }, 10 | "result": { 11 | "id": "poopsky:cracked_poop_bricks" 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cracked_poop_bricks_from_smelting_poop_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smelting", 3 | "category": "blocks", 4 | "cookingtime": 200, 5 | "experience": 0.1, 6 | "group": "cracked_poop_bricks", 7 | "ingredient": { 8 | "item": "poopsky:poop_bricks" 9 | }, 10 | "result": { 11 | "id": "poopsky:cracked_poop_bricks" 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cut_poop_block_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:cut_poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "PPP", 11 | "PPP" 12 | ], 13 | "result": { 14 | "count": 6, 15 | "id": "poopsky:cut_poop_block_wall" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/grass_block_from_moss_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "building", 4 | "ingredients": [ 5 | { 6 | "item": "minecraft:dirt" 7 | }, 8 | { 9 | "item": "minecraft:moss_block" 10 | } 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "minecraft:grass_block" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "P", 11 | "P", 12 | "P" 13 | ], 14 | "result": { 15 | "count": 6, 16 | "id": "poopsky:poop_vertical_slab" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/tags/item/compooper_saplings.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:oak_sapling", 4 | "minecraft:spruce_sapling", 5 | "minecraft:birch_sapling", 6 | "minecraft:jungle_sapling", 7 | "minecraft:acacia_sapling", 8 | "minecraft:dark_oak_sapling", 9 | "minecraft:mangrove_propagule", 10 | "minecraft:cherry_sapling" 11 | ] 12 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cobbled_deepslate_from_mud.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "building", 4 | "ingredients": [ 5 | { 6 | "item": "minecraft:cobblestone" 7 | }, 8 | { 9 | "item": "minecraft:mud" 10 | } 11 | ], 12 | "result": { 13 | "count": 2, 14 | "id": "minecraft:cobbled_deepslate" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/compooper.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "S": { 6 | "item": "minecraft:mossy_cobblestone_slab" 7 | } 8 | }, 9 | "pattern": [ 10 | "S S", 11 | "S S", 12 | "SSS" 13 | ], 14 | "result": { 15 | "count": 1, 16 | "id": "poopsky:compooper" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/dried_poop_block_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:dried_poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "PPP", 11 | "PPP" 12 | ], 13 | "result": { 14 | "count": 6, 15 | "id": "poopsky:dried_poop_block_wall" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/mossy_poop_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:mossy_poop_bricks" 7 | } 8 | }, 9 | "pattern": [ 10 | "PPP", 11 | "PPP" 12 | ], 13 | "result": { 14 | "count": 6, 15 | "id": "poopsky:mossy_poop_brick_wall" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/mossy_poop_bricks_from_vine.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "building", 4 | "ingredients": [ 5 | { 6 | "item": "poopsky:poop_bricks" 7 | }, 8 | { 9 | "item": "minecraft:vine" 10 | } 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "poopsky:mossy_poop_bricks" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/pointed_dripstone_from_spall.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "misc", 4 | "key": { 5 | "S": { 6 | "item": "poopsky:spall" 7 | } 8 | }, 9 | "pattern": [ 10 | "S", 11 | "S", 12 | "S" 13 | ], 14 | "result": { 15 | "count": 1, 16 | "id": "minecraft:pointed_dripstone" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:poop_bricks" 7 | } 8 | }, 9 | "pattern": [ 10 | "P ", 11 | "PP ", 12 | "PPP" 13 | ], 14 | "result": { 15 | "count": 8, 16 | "id": "poopsky:poop_brick_stairs" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/smooth_poop_block_from_blasting_dried_poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:blasting", 3 | "category": "blocks", 4 | "cookingtime": 100, 5 | "experience": 0.1, 6 | "group": "smooth_poop_block", 7 | "ingredient": { 8 | "item": "poopsky:dried_poop_block" 9 | }, 10 | "result": { 11 | "id": "poopsky:smooth_poop_block" 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/smooth_poop_block_from_smelting_dried_poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smelting", 3 | "category": "blocks", 4 | "cookingtime": 200, 5 | "experience": 0.1, 6 | "group": "smooth_poop_block", 7 | "ingredient": { 8 | "item": "poopsky:dried_poop_block" 9 | }, 10 | "result": { 11 | "id": "poopsky:smooth_poop_block" 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/smooth_poop_block_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:smooth_poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "PPP", 11 | "PPP" 12 | ], 13 | "result": { 14 | "count": 6, 15 | "id": "poopsky:smooth_poop_block_wall" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/granite_from_dripstone_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "building", 4 | "ingredients": [ 5 | { 6 | "item": "minecraft:cobblestone" 7 | }, 8 | { 9 | "item": "minecraft:dripstone_block" 10 | } 11 | ], 12 | "result": { 13 | "count": 2, 14 | "id": "minecraft:granite" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/mossy_poop_bricks_from_moss_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "building", 4 | "ingredients": [ 5 | { 6 | "item": "poopsky:poop_bricks" 7 | }, 8 | { 9 | "item": "minecraft:moss_block" 10 | } 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "poopsky:mossy_poop_bricks" 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_brick_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:poop_bricks" 7 | } 8 | }, 9 | "pattern": [ 10 | "P", 11 | "P", 12 | "P" 13 | ], 14 | "result": { 15 | "count": 6, 16 | "id": "poopsky:poop_brick_vertical_slab" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cut_poop_block_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:cut_poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "P ", 11 | "PP ", 12 | "PPP" 13 | ], 14 | "result": { 15 | "count": 8, 16 | "id": "poopsky:cut_poop_block_stairs" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cut_poop_block_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:cut_poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "P", 11 | "P", 12 | "P" 13 | ], 14 | "result": { 15 | "count": 6, 16 | "id": "poopsky:cut_poop_block_vertical_slab" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/dried_poop_block_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:dried_poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "P ", 11 | "PP ", 12 | "PPP" 13 | ], 14 | "result": { 15 | "count": 8, 16 | "id": "poopsky:dried_poop_block_stairs" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/mossy_poop_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:mossy_poop_bricks" 7 | } 8 | }, 9 | "pattern": [ 10 | "P ", 11 | "PP ", 12 | "PPP" 13 | ], 14 | "result": { 15 | "count": 8, 16 | "id": "poopsky:mossy_poop_brick_stairs" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_bread.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "M": { 6 | "item": "poopsky:maggots_seeds" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "PMP" 14 | ], 15 | "result": { 16 | "count": 1, 17 | "id": "poopsky:poop_bread" 18 | } 19 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/smooth_poop_block_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:smooth_poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "P ", 11 | "PP ", 12 | "PPP" 13 | ], 14 | "result": { 15 | "count": 8, 16 | "id": "poopsky:smooth_poop_block_stairs" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/generated/data/minecraft/tags/block/mineable/axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "poopsky:oak_toilet", 4 | "poopsky:spruce_toilet", 5 | "poopsky:birch_toilet", 6 | "poopsky:jungle_toilet", 7 | "poopsky:acacia_toilet", 8 | "poopsky:cherry_toilet", 9 | "poopsky:dark_oak_toilet", 10 | "poopsky:mangrove_toilet", 11 | "poopsky:bamboo_toilet", 12 | "poopsky:maggots" 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/dried_poop_block_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:dried_poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "P", 11 | "P", 12 | "P" 13 | ], 14 | "result": { 15 | "count": 6, 16 | "id": "poopsky:dried_poop_block_vertical_slab" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/mossy_poop_brick_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:mossy_poop_bricks" 7 | } 8 | }, 9 | "pattern": [ 10 | "P", 11 | "P", 12 | "P" 13 | ], 14 | "result": { 15 | "count": 6, 16 | "id": "poopsky:mossy_poop_brick_vertical_slab" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/smooth_poop_block_vertical_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:smooth_poop_block" 7 | } 8 | }, 9 | "pattern": [ 10 | "P", 11 | "P", 12 | "P" 13 | ], 14 | "result": { 15 | "count": 6, 16 | "id": "poopsky:smooth_poop_block_vertical_slab" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/blockstates/poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": [ 4 | { 5 | "model": "poopsky:block/poop_block1", 6 | "weight": 9 7 | }, 8 | { 9 | "model": "poopsky:block/poop_block2", 10 | "weight": 1 11 | }, 12 | { 13 | "model": "poopsky:block/poop_block3", 14 | "weight": 2 15 | } 16 | ] 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "B": { 6 | "item": "poopsky:poop_block" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "BPB", 14 | "BPB" 15 | ], 16 | "result": { 17 | "count": 3, 18 | "id": "poopsky:poop_fence" 19 | } 20 | } -------------------------------------------------------------------------------- /src/main/java/com/altnoir/poopsky/effect/IntestinalSpasmEffect.java: -------------------------------------------------------------------------------- 1 | package com.altnoir.poopsky.effect; 2 | 3 | import net.minecraft.entity.effect.StatusEffect; 4 | import net.minecraft.entity.effect.StatusEffectCategory; 5 | 6 | public class IntestinalSpasmEffect extends StatusEffect { 7 | protected IntestinalSpasmEffect(StatusEffectCategory category, int color) { 8 | super(category, color); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # gradle 2 | 3 | .gradle/ 4 | build/ 5 | out/ 6 | classes/ 7 | 8 | # eclipse 9 | 10 | *.launch 11 | 12 | # idea 13 | 14 | .idea/ 15 | *.iml 16 | *.ipr 17 | *.iws 18 | 19 | # vscode 20 | 21 | .settings/ 22 | .vscode/ 23 | bin/ 24 | .classpath 25 | .project 26 | 27 | # macos 28 | 29 | *.DS_Store 30 | 31 | # fabric 32 | 33 | run/ 34 | 35 | # java 36 | 37 | hs_err_*.log 38 | replay_*.log 39 | *.hprof 40 | *.jfr 41 | -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cobweb.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "P": { 6 | "item": "poopsky:poop" 7 | }, 8 | "S": { 9 | "item": "minecraft:string" 10 | } 11 | }, 12 | "pattern": [ 13 | "SSS", 14 | "SPS", 15 | "SSS" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "minecraft:cobweb" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/java/com/altnoir/poopsky/item/Poop.java: -------------------------------------------------------------------------------- 1 | package com.altnoir.poopsky.item; 2 | 3 | import net.minecraft.component.type.FoodComponent; 4 | import net.minecraft.entity.effect.StatusEffectInstance; 5 | import net.minecraft.entity.effect.StatusEffects; 6 | import net.minecraft.item.BoneMealItem; 7 | 8 | public class Poop extends BoneMealItem { 9 | public Poop(Settings settings) { 10 | super(settings); 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/poop_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "B": { 6 | "item": "poopsky:poop_block" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "PBP", 14 | "PBP" 15 | ], 16 | "result": { 17 | "count": 1, 18 | "id": "poopsky:poop_fence_gate" 19 | } 20 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/oak_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:oak_planks" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:oak_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/stone_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:stone" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:stone_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/birch_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:birch_planks" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:birch_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/coarse_dirt_from_poop_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "G": { 6 | "item": "minecraft:gravel" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop_block" 10 | } 11 | }, 12 | "pattern": [ 13 | "PG", 14 | "GP" 15 | ], 16 | "result": { 17 | "count": 4, 18 | "id": "minecraft:coarse_dirt" 19 | } 20 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/compooper_contents1.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "poopsky:block/compooper_compost", 4 | "inside": "poopsky:block/compooper_compost" 5 | }, 6 | "elements": [ 7 | { "from": [ 2, 0, 2 ], 8 | "to": [ 14, 5, 14 ], 9 | "faces": { 10 | "up": { "texture": "#inside" } 11 | } 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/compooper_contents2.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "poopsky:block/compooper_compost", 4 | "inside": "poopsky:block/compooper_compost" 5 | }, 6 | "elements": [ 7 | { "from": [ 2, 0, 2 ], 8 | "to": [ 14, 10, 14 ], 9 | "faces": { 10 | "up": { "texture": "#inside" } 11 | } 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/compooper_contents3.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "poopsky:block/compooper_compost", 4 | "inside": "poopsky:block/compooper_compost" 5 | }, 6 | "elements": [ 7 | { "from": [ 2, 0, 2 ], 8 | "to": [ 14, 15, 14 ], 9 | "faces": { 10 | "up": { "texture": "#inside" } 11 | } 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/acacia_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:acacia_planks" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:acacia_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/bamboo_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:bamboo_planks" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:bamboo_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cherry_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:cherry_planks" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:cherry_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/jungle_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:jungle_planks" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:jungle_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/spruce_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:spruce_planks" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:spruce_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/warped_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:warped_planks" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:warped_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/compooper_contents_ready.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "poopsky:block/compooper_compost", 4 | "inside": "poopsky:block/compooper_ready" 5 | }, 6 | "elements": [ 7 | { "from": [ 2, 0, 2 ], 8 | "to": [ 14, 15, 14 ], 9 | "faces": { 10 | "up": { "texture": "#inside" } 11 | } 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/compooper_liquid1.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "minecraft:block/water_still", 4 | "inside": "minecraft:block/water_still" 5 | }, 6 | "elements": [ 7 | { "from": [ 2, 0, 2 ], 8 | "to": [ 14, 5, 14 ], 9 | "faces": { 10 | "up": { "texture": "#inside", "tintindex": 1} 11 | } 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/compooper_liquid2.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "minecraft:block/water_still", 4 | "inside": "minecraft:block/water_still" 5 | }, 6 | "elements": [ 7 | { "from": [ 2, 0, 2 ], 8 | "to": [ 14, 10, 14 ], 9 | "faces": { 10 | "up": { "texture": "#inside", "tintindex": 1} 11 | } 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/compooper_liquid3.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "minecraft:block/water_still", 4 | "inside": "minecraft:block/water_still" 5 | }, 6 | "elements": [ 7 | { "from": [ 2, 0, 2 ], 8 | "to": [ 14, 15, 14 ], 9 | "faces": { 10 | "up": { "texture": "#inside", "tintindex": 1} 11 | } 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/crimson_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:crimson_planks" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:crimson_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/dark_oak_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:dark_oak_planks" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:dark_oak_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/mangrove_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:mangrove_planks" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:mangrove_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/resources/assets/poopsky/models/block/compooper_liquid_ready.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "minecraft:block/water_still", 4 | "inside": "minecraft:block/water_still" 5 | }, 6 | "elements": [ 7 | { "from": [ 2, 0, 2 ], 8 | "to": [ 14, 15, 14 ], 9 | "faces": { 10 | "up": { "texture": "#inside", "tintindex": 1} 11 | } 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cobblestone_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:cobblestone" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:cobblestone_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/red_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:red_concrete" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:red_concrete_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/smooth_stone_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:smooth_stone" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:smooth_stone_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/stone_brick_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:stone_bricks" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:stone_brick_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/black_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:black_concrete" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:black_concrete_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/blue_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:blue_concrete" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:blue_concrete_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/brown_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:brown_concrete" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:brown_concrete_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/cyan_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:cyan_concrete" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:cyan_concrete_toilet" 20 | } 21 | } -------------------------------------------------------------------------------- /src/main/generated/data/poopsky/recipe/gray_concrete_toilet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "minecraft:gray_concrete" 7 | }, 8 | "P": { 9 | "item": "poopsky:poop" 10 | } 11 | }, 12 | "pattern": [ 13 | "#P#", 14 | "###", 15 | "###" 16 | ], 17 | "result": { 18 | "count": 1, 19 | "id": "poopsky:gray_concrete_toilet" 20 | } 21 | } --------------------------------------------------------------------------------