├── LICENSE ├── README.md ├── data ├── holycube │ ├── functions │ │ ├── init.mcfunction │ │ └── loop.mcfunction │ └── recipes │ │ ├── carpets │ │ ├── black.json │ │ ├── blue.json │ │ ├── brown.json │ │ ├── cyan.json │ │ ├── gray.json │ │ ├── green.json │ │ ├── light_blue.json │ │ ├── light_gray.json │ │ ├── lime.json │ │ ├── magenta.json │ │ ├── orange.json │ │ ├── pink.json │ │ ├── purple.json │ │ ├── red.json │ │ └── yellow.json │ │ ├── clay_block.json │ │ ├── coalasink │ │ ├── black_bed_from_white_bed.json │ │ ├── black_carpet.json │ │ ├── black_concrete_powder.json │ │ ├── black_stained_glass.json │ │ ├── black_terracotta.json │ │ ├── black_wool.json │ │ ├── dark_prismarine.json │ │ ├── gray_dye.json │ │ └── light_gray_dye_from_ink_bonemeal.json │ │ ├── corals │ │ ├── brainblock2coral.json │ │ ├── braincoral2block.json │ │ ├── braincoral2fan.json │ │ ├── brainfan2coral.json │ │ ├── bubbleblock2coral.json │ │ ├── bubblecoral2block.json │ │ ├── bubblecoral2fan.json │ │ ├── bubblefan2coral.json │ │ ├── fireblock2coral.json │ │ ├── firecoral2block.json │ │ ├── firecoral2fan.json │ │ ├── firefan2coral.json │ │ ├── hornblock2coral.json │ │ ├── horncoral2block.json │ │ ├── horncoral2fan.json │ │ ├── hornfan2coral.json │ │ ├── tubeblock2coral.json │ │ ├── tubecoral2block.json │ │ ├── tubecoral2fan.json │ │ └── tubefan2coral.json │ │ ├── quartz_block.json │ │ ├── red_sand.json │ │ ├── slabs2blocks │ │ ├── acacia_planks.json │ │ ├── birch_planks.json │ │ ├── bricks.json │ │ ├── cobblestone.json │ │ ├── dark_oak_planks.json │ │ ├── dark_prismarine.json │ │ ├── jungle_planks.json │ │ ├── nether_bricks.json │ │ ├── oak_planks.json │ │ ├── prismarine.json │ │ ├── prismarine_bricks.json │ │ └── spruce_planks.json │ │ ├── smooth_blocks │ │ ├── quartz.json │ │ ├── red_sandstone.json │ │ ├── sandstone.json │ │ └── stone.json │ │ └── stairs │ │ ├── acacia.json │ │ ├── birch.json │ │ ├── brick.json │ │ ├── cobblestone.json │ │ ├── dark_oak.json │ │ ├── dark_prismarine.json │ │ ├── jungle.json │ │ ├── nether_brick.json │ │ ├── oak.json │ │ ├── prismarine.json │ │ ├── prismarine_bricks.json │ │ ├── purpur.json │ │ ├── quartz.json │ │ ├── red_sandstone.json │ │ ├── sandstone.json │ │ ├── spruce.json │ │ └── stone_brick.json ├── holycube_afk │ └── functions │ │ ├── apply.mcfunction │ │ ├── in_vehicle.mcfunction │ │ ├── init.mcfunction │ │ ├── loop.mcfunction │ │ └── on_foot.mcfunction ├── holycube_bed │ └── functions │ │ ├── check.mcfunction │ │ ├── getreq.mcfunction │ │ ├── init.mcfunction │ │ └── loop.mcfunction ├── holycube_blaze │ └── functions │ │ ├── apply.mcfunction │ │ ├── check.mcfunction │ │ ├── init.mcfunction │ │ ├── loop.mcfunction │ │ └── summon.mcfunction ├── holycube_clock │ └── functions │ │ ├── init.mcfunction │ │ ├── loop.mcfunction │ │ ├── update.mcfunction │ │ ├── with_worlds.mcfunction │ │ └── without_worlds.mcfunction ├── holycube_magnet │ ├── functions │ │ ├── apply.mcfunction │ │ ├── init.mcfunction │ │ ├── loop.mcfunction │ │ ├── pos.mcfunction │ │ └── replace_item.mcfunction │ ├── recipes │ │ └── magnet.json │ └── tags │ │ └── blocks │ │ └── waterlogged.json ├── holycube_phantom │ └── functions │ │ ├── apply.mcfunction │ │ ├── check.mcfunction │ │ ├── init.mcfunction │ │ ├── loop.mcfunction │ │ └── summon.mcfunction ├── holycube_time │ └── functions │ │ ├── add.mcfunction │ │ ├── apply.mcfunction │ │ ├── init.mcfunction │ │ ├── loop.mcfunction │ │ └── reset.mcfunction ├── holycube_void │ └── functions │ │ ├── end_out.mcfunction │ │ ├── init.mcfunction │ │ ├── loop.mcfunction │ │ ├── nether_out.mcfunction │ │ └── overworld_out.mcfunction └── minecraft │ ├── recipes │ ├── acacia_stairs.json │ ├── acacia_trapdoor.json │ ├── birch_stairs.json │ ├── birch_trapdoor.json │ ├── black_wool.json │ ├── blue_wool.json │ ├── brick_stairs.json │ ├── brown_wool.json │ ├── cobblestone_stairs.json │ ├── cyan_wool.json │ ├── dark_oak_stairs.json │ ├── dark_oak_trapdoor.json │ ├── dark_prismarine_stairs.json │ ├── gray_wool.json │ ├── green_wool.json │ ├── iron_trapdoor.json │ ├── jungle_stairs.json │ ├── jungle_trapdoor.json │ ├── light_blue_wool.json │ ├── light_gray_wool.json │ ├── lime_wool.json │ ├── magenta_wool.json │ ├── nether_brick_stairs.json │ ├── oak_stairs.json │ ├── oak_trapdoor.json │ ├── orange_wool.json │ ├── pink_wool.json │ ├── prismarine_bricks_stairs.json │ ├── prismarine_stairs.json │ ├── purple_wool.json │ ├── purpur_stairs.json │ ├── quartz_block.json │ ├── quartz_stairs.json │ ├── red_sandstone_stairs.json │ ├── red_wool.json │ ├── sandstone_stairs.json │ ├── spruce_stairs.json │ ├── spruce_trapdoor.json │ ├── stone_brick_stairs.json │ └── yellow_wool.json │ └── tags │ └── functions │ ├── load.json │ └── tick.json ├── pack.mcmeta └── web.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/README.md -------------------------------------------------------------------------------- /data/holycube/functions/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/functions/init.mcfunction -------------------------------------------------------------------------------- /data/holycube/functions/loop.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/functions/loop.mcfunction -------------------------------------------------------------------------------- /data/holycube/recipes/carpets/black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/carpets/black.json -------------------------------------------------------------------------------- /data/holycube/recipes/carpets/blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/carpets/blue.json -------------------------------------------------------------------------------- /data/holycube/recipes/carpets/brown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/carpets/brown.json -------------------------------------------------------------------------------- /data/holycube/recipes/carpets/cyan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/carpets/cyan.json -------------------------------------------------------------------------------- /data/holycube/recipes/carpets/gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/carpets/gray.json -------------------------------------------------------------------------------- /data/holycube/recipes/carpets/green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/carpets/green.json -------------------------------------------------------------------------------- /data/holycube/recipes/carpets/light_blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/carpets/light_blue.json -------------------------------------------------------------------------------- /data/holycube/recipes/carpets/light_gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/carpets/light_gray.json -------------------------------------------------------------------------------- /data/holycube/recipes/carpets/lime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/carpets/lime.json -------------------------------------------------------------------------------- /data/holycube/recipes/carpets/magenta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/carpets/magenta.json -------------------------------------------------------------------------------- /data/holycube/recipes/carpets/orange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/carpets/orange.json -------------------------------------------------------------------------------- /data/holycube/recipes/carpets/pink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/carpets/pink.json -------------------------------------------------------------------------------- /data/holycube/recipes/carpets/purple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/carpets/purple.json -------------------------------------------------------------------------------- /data/holycube/recipes/carpets/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/carpets/red.json -------------------------------------------------------------------------------- /data/holycube/recipes/carpets/yellow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/carpets/yellow.json -------------------------------------------------------------------------------- /data/holycube/recipes/clay_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/clay_block.json -------------------------------------------------------------------------------- /data/holycube/recipes/coalasink/black_bed_from_white_bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/coalasink/black_bed_from_white_bed.json -------------------------------------------------------------------------------- /data/holycube/recipes/coalasink/black_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/coalasink/black_carpet.json -------------------------------------------------------------------------------- /data/holycube/recipes/coalasink/black_concrete_powder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/coalasink/black_concrete_powder.json -------------------------------------------------------------------------------- /data/holycube/recipes/coalasink/black_stained_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/coalasink/black_stained_glass.json -------------------------------------------------------------------------------- /data/holycube/recipes/coalasink/black_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/coalasink/black_terracotta.json -------------------------------------------------------------------------------- /data/holycube/recipes/coalasink/black_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/coalasink/black_wool.json -------------------------------------------------------------------------------- /data/holycube/recipes/coalasink/dark_prismarine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/coalasink/dark_prismarine.json -------------------------------------------------------------------------------- /data/holycube/recipes/coalasink/gray_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/coalasink/gray_dye.json -------------------------------------------------------------------------------- /data/holycube/recipes/coalasink/light_gray_dye_from_ink_bonemeal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/coalasink/light_gray_dye_from_ink_bonemeal.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/brainblock2coral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/brainblock2coral.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/braincoral2block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/braincoral2block.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/braincoral2fan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/braincoral2fan.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/brainfan2coral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/brainfan2coral.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/bubbleblock2coral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/bubbleblock2coral.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/bubblecoral2block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/bubblecoral2block.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/bubblecoral2fan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/bubblecoral2fan.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/bubblefan2coral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/bubblefan2coral.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/fireblock2coral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/fireblock2coral.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/firecoral2block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/firecoral2block.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/firecoral2fan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/firecoral2fan.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/firefan2coral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/firefan2coral.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/hornblock2coral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/hornblock2coral.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/horncoral2block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/horncoral2block.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/horncoral2fan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/horncoral2fan.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/hornfan2coral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/hornfan2coral.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/tubeblock2coral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/tubeblock2coral.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/tubecoral2block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/tubecoral2block.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/tubecoral2fan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/tubecoral2fan.json -------------------------------------------------------------------------------- /data/holycube/recipes/corals/tubefan2coral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/corals/tubefan2coral.json -------------------------------------------------------------------------------- /data/holycube/recipes/quartz_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/quartz_block.json -------------------------------------------------------------------------------- /data/holycube/recipes/red_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/red_sand.json -------------------------------------------------------------------------------- /data/holycube/recipes/slabs2blocks/acacia_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/slabs2blocks/acacia_planks.json -------------------------------------------------------------------------------- /data/holycube/recipes/slabs2blocks/birch_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/slabs2blocks/birch_planks.json -------------------------------------------------------------------------------- /data/holycube/recipes/slabs2blocks/bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/slabs2blocks/bricks.json -------------------------------------------------------------------------------- /data/holycube/recipes/slabs2blocks/cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/slabs2blocks/cobblestone.json -------------------------------------------------------------------------------- /data/holycube/recipes/slabs2blocks/dark_oak_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/slabs2blocks/dark_oak_planks.json -------------------------------------------------------------------------------- /data/holycube/recipes/slabs2blocks/dark_prismarine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/slabs2blocks/dark_prismarine.json -------------------------------------------------------------------------------- /data/holycube/recipes/slabs2blocks/jungle_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/slabs2blocks/jungle_planks.json -------------------------------------------------------------------------------- /data/holycube/recipes/slabs2blocks/nether_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/slabs2blocks/nether_bricks.json -------------------------------------------------------------------------------- /data/holycube/recipes/slabs2blocks/oak_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/slabs2blocks/oak_planks.json -------------------------------------------------------------------------------- /data/holycube/recipes/slabs2blocks/prismarine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/slabs2blocks/prismarine.json -------------------------------------------------------------------------------- /data/holycube/recipes/slabs2blocks/prismarine_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/slabs2blocks/prismarine_bricks.json -------------------------------------------------------------------------------- /data/holycube/recipes/slabs2blocks/spruce_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/slabs2blocks/spruce_planks.json -------------------------------------------------------------------------------- /data/holycube/recipes/smooth_blocks/quartz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/smooth_blocks/quartz.json -------------------------------------------------------------------------------- /data/holycube/recipes/smooth_blocks/red_sandstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/smooth_blocks/red_sandstone.json -------------------------------------------------------------------------------- /data/holycube/recipes/smooth_blocks/sandstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/smooth_blocks/sandstone.json -------------------------------------------------------------------------------- /data/holycube/recipes/smooth_blocks/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/smooth_blocks/stone.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/acacia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/acacia.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/birch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/birch.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/brick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/brick.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/cobblestone.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/dark_oak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/dark_oak.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/dark_prismarine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/dark_prismarine.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/jungle.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/nether_brick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/nether_brick.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/oak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/oak.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/prismarine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/prismarine.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/prismarine_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/prismarine_bricks.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/purpur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/purpur.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/quartz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/quartz.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/red_sandstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/red_sandstone.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/sandstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/sandstone.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/spruce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/spruce.json -------------------------------------------------------------------------------- /data/holycube/recipes/stairs/stone_brick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube/recipes/stairs/stone_brick.json -------------------------------------------------------------------------------- /data/holycube_afk/functions/apply.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_afk/functions/apply.mcfunction -------------------------------------------------------------------------------- /data/holycube_afk/functions/in_vehicle.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_afk/functions/in_vehicle.mcfunction -------------------------------------------------------------------------------- /data/holycube_afk/functions/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_afk/functions/init.mcfunction -------------------------------------------------------------------------------- /data/holycube_afk/functions/loop.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_afk/functions/loop.mcfunction -------------------------------------------------------------------------------- /data/holycube_afk/functions/on_foot.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_afk/functions/on_foot.mcfunction -------------------------------------------------------------------------------- /data/holycube_bed/functions/check.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_bed/functions/check.mcfunction -------------------------------------------------------------------------------- /data/holycube_bed/functions/getreq.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_bed/functions/getreq.mcfunction -------------------------------------------------------------------------------- /data/holycube_bed/functions/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_bed/functions/init.mcfunction -------------------------------------------------------------------------------- /data/holycube_bed/functions/loop.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_bed/functions/loop.mcfunction -------------------------------------------------------------------------------- /data/holycube_blaze/functions/apply.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_blaze/functions/apply.mcfunction -------------------------------------------------------------------------------- /data/holycube_blaze/functions/check.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_blaze/functions/check.mcfunction -------------------------------------------------------------------------------- /data/holycube_blaze/functions/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_blaze/functions/init.mcfunction -------------------------------------------------------------------------------- /data/holycube_blaze/functions/loop.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_blaze/functions/loop.mcfunction -------------------------------------------------------------------------------- /data/holycube_blaze/functions/summon.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_blaze/functions/summon.mcfunction -------------------------------------------------------------------------------- /data/holycube_clock/functions/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_clock/functions/init.mcfunction -------------------------------------------------------------------------------- /data/holycube_clock/functions/loop.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_clock/functions/loop.mcfunction -------------------------------------------------------------------------------- /data/holycube_clock/functions/update.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_clock/functions/update.mcfunction -------------------------------------------------------------------------------- /data/holycube_clock/functions/with_worlds.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_clock/functions/with_worlds.mcfunction -------------------------------------------------------------------------------- /data/holycube_clock/functions/without_worlds.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_clock/functions/without_worlds.mcfunction -------------------------------------------------------------------------------- /data/holycube_magnet/functions/apply.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_magnet/functions/apply.mcfunction -------------------------------------------------------------------------------- /data/holycube_magnet/functions/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_magnet/functions/init.mcfunction -------------------------------------------------------------------------------- /data/holycube_magnet/functions/loop.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_magnet/functions/loop.mcfunction -------------------------------------------------------------------------------- /data/holycube_magnet/functions/pos.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_magnet/functions/pos.mcfunction -------------------------------------------------------------------------------- /data/holycube_magnet/functions/replace_item.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_magnet/functions/replace_item.mcfunction -------------------------------------------------------------------------------- /data/holycube_magnet/recipes/magnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_magnet/recipes/magnet.json -------------------------------------------------------------------------------- /data/holycube_magnet/tags/blocks/waterlogged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_magnet/tags/blocks/waterlogged.json -------------------------------------------------------------------------------- /data/holycube_phantom/functions/apply.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_phantom/functions/apply.mcfunction -------------------------------------------------------------------------------- /data/holycube_phantom/functions/check.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_phantom/functions/check.mcfunction -------------------------------------------------------------------------------- /data/holycube_phantom/functions/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_phantom/functions/init.mcfunction -------------------------------------------------------------------------------- /data/holycube_phantom/functions/loop.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_phantom/functions/loop.mcfunction -------------------------------------------------------------------------------- /data/holycube_phantom/functions/summon.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_phantom/functions/summon.mcfunction -------------------------------------------------------------------------------- /data/holycube_time/functions/add.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players set #VW VW.curTick 0 2 | time add 1 3 | -------------------------------------------------------------------------------- /data/holycube_time/functions/apply.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_time/functions/apply.mcfunction -------------------------------------------------------------------------------- /data/holycube_time/functions/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_time/functions/init.mcfunction -------------------------------------------------------------------------------- /data/holycube_time/functions/loop.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_time/functions/loop.mcfunction -------------------------------------------------------------------------------- /data/holycube_time/functions/reset.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_time/functions/reset.mcfunction -------------------------------------------------------------------------------- /data/holycube_void/functions/end_out.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_void/functions/end_out.mcfunction -------------------------------------------------------------------------------- /data/holycube_void/functions/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_void/functions/init.mcfunction -------------------------------------------------------------------------------- /data/holycube_void/functions/loop.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_void/functions/loop.mcfunction -------------------------------------------------------------------------------- /data/holycube_void/functions/nether_out.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_void/functions/nether_out.mcfunction -------------------------------------------------------------------------------- /data/holycube_void/functions/overworld_out.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/holycube_void/functions/overworld_out.mcfunction -------------------------------------------------------------------------------- /data/minecraft/recipes/acacia_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/acacia_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/acacia_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/acacia_trapdoor.json -------------------------------------------------------------------------------- /data/minecraft/recipes/birch_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/birch_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/birch_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/birch_trapdoor.json -------------------------------------------------------------------------------- /data/minecraft/recipes/black_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/black_wool.json -------------------------------------------------------------------------------- /data/minecraft/recipes/blue_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/blue_wool.json -------------------------------------------------------------------------------- /data/minecraft/recipes/brick_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/brick_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/brown_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/brown_wool.json -------------------------------------------------------------------------------- /data/minecraft/recipes/cobblestone_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/cobblestone_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/cyan_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/cyan_wool.json -------------------------------------------------------------------------------- /data/minecraft/recipes/dark_oak_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/dark_oak_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/dark_oak_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/dark_oak_trapdoor.json -------------------------------------------------------------------------------- /data/minecraft/recipes/dark_prismarine_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/dark_prismarine_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/gray_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/gray_wool.json -------------------------------------------------------------------------------- /data/minecraft/recipes/green_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/green_wool.json -------------------------------------------------------------------------------- /data/minecraft/recipes/iron_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/iron_trapdoor.json -------------------------------------------------------------------------------- /data/minecraft/recipes/jungle_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/jungle_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/jungle_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/jungle_trapdoor.json -------------------------------------------------------------------------------- /data/minecraft/recipes/light_blue_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/light_blue_wool.json -------------------------------------------------------------------------------- /data/minecraft/recipes/light_gray_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/light_gray_wool.json -------------------------------------------------------------------------------- /data/minecraft/recipes/lime_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/lime_wool.json -------------------------------------------------------------------------------- /data/minecraft/recipes/magenta_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/magenta_wool.json -------------------------------------------------------------------------------- /data/minecraft/recipes/nether_brick_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/nether_brick_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/oak_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/oak_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/oak_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/oak_trapdoor.json -------------------------------------------------------------------------------- /data/minecraft/recipes/orange_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/orange_wool.json -------------------------------------------------------------------------------- /data/minecraft/recipes/pink_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/pink_wool.json -------------------------------------------------------------------------------- /data/minecraft/recipes/prismarine_bricks_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/prismarine_bricks_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/prismarine_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/prismarine_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/purple_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/purple_wool.json -------------------------------------------------------------------------------- /data/minecraft/recipes/purpur_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/purpur_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/quartz_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/quartz_block.json -------------------------------------------------------------------------------- /data/minecraft/recipes/quartz_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/quartz_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/red_sandstone_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/red_sandstone_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/red_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/red_wool.json -------------------------------------------------------------------------------- /data/minecraft/recipes/sandstone_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/sandstone_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/spruce_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/spruce_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/spruce_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/spruce_trapdoor.json -------------------------------------------------------------------------------- /data/minecraft/recipes/stone_brick_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/stone_brick_stairs.json -------------------------------------------------------------------------------- /data/minecraft/recipes/yellow_wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/recipes/yellow_wool.json -------------------------------------------------------------------------------- /data/minecraft/tags/functions/load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/tags/functions/load.json -------------------------------------------------------------------------------- /data/minecraft/tags/functions/tick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/data/minecraft/tags/functions/tick.json -------------------------------------------------------------------------------- /pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/pack.mcmeta -------------------------------------------------------------------------------- /web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShoukaSeikyo/holycube-s4/HEAD/web.json --------------------------------------------------------------------------------