├── uuid_utils ├── data │ ├── minecraft │ │ └── tags │ │ │ └── functions │ │ │ ├── tick.json │ │ │ └── load.json │ └── uuid_utils │ │ └── functions │ │ └── teleport_owner.mcfunction └── pack.mcmeta ├── entity_grabber ├── data │ ├── minecraft │ │ └── tags │ │ │ └── functions │ │ │ ├── tick.json │ │ │ └── load.json │ └── grabber │ │ ├── tags │ │ └── entity_types │ │ │ └── can_grab.json │ │ └── functions │ │ └── create_scoreboards.mcfunction └── pack.mcmeta ├── ttrpg_utils ├── data │ ├── minecraft │ │ └── tags │ │ │ └── functions │ │ │ ├── tick.json │ │ │ └── load.json │ └── ttrpg_utils │ │ └── functions │ │ └── clear_dice.mcfunction └── pack.mcmeta ├── wall_phasing ├── data │ ├── minecraft │ │ └── tags │ │ │ └── functions │ │ │ ├── load.json │ │ │ └── tick.json │ ├── custom_brewing │ │ └── functions │ │ │ ├── cancel_brewing.mcfunction │ │ │ ├── on_load.mcfunction │ │ │ ├── start_brewing.mcfunction │ │ │ ├── summon_stand_entity.mcfunction │ │ │ ├── decrement_fuel.mcfunction │ │ │ └── add_ingredient.mcfunction │ ├── glowing_ii │ │ └── functions │ │ │ ├── on_load.mcfunction │ │ │ ├── repel.mcfunction │ │ │ └── convert_effect.mcfunction │ └── cw_serial_mods │ │ └── functions │ │ ├── solidify_block.mcfunction │ │ └── falling_block │ │ ├── l5 │ │ ├── l5_1.mcfunction │ │ ├── l5_2.mcfunction │ │ ├── l5_3.mcfunction │ │ ├── l5_4.mcfunction │ │ ├── l5_5.mcfunction │ │ ├── l5_6.mcfunction │ │ ├── l5_7.mcfunction │ │ ├── l5_8.mcfunction │ │ ├── l5_9.mcfunction │ │ ├── l5_10.mcfunction │ │ ├── l5_11.mcfunction │ │ ├── l5_12.mcfunction │ │ ├── l5_13.mcfunction │ │ ├── l5_14.mcfunction │ │ ├── l5_15.mcfunction │ │ ├── l5_16.mcfunction │ │ ├── l5_17.mcfunction │ │ ├── l5_18.mcfunction │ │ ├── l5_19.mcfunction │ │ ├── l5_20.mcfunction │ │ ├── l5_21.mcfunction │ │ ├── l5_22.mcfunction │ │ ├── l5_23.mcfunction │ │ ├── l5_24.mcfunction │ │ ├── l5_25.mcfunction │ │ ├── l5_26.mcfunction │ │ ├── l5_27.mcfunction │ │ ├── l5_28.mcfunction │ │ ├── l5_29.mcfunction │ │ ├── l5_30.mcfunction │ │ ├── l5_31.mcfunction │ │ ├── l5_32.mcfunction │ │ ├── l5_33.mcfunction │ │ ├── l5_34.mcfunction │ │ ├── l5_35.mcfunction │ │ ├── l5_36.mcfunction │ │ ├── l5_37.mcfunction │ │ ├── l5_38.mcfunction │ │ ├── l5_39.mcfunction │ │ ├── l5_40.mcfunction │ │ ├── l5_41.mcfunction │ │ ├── l5_42.mcfunction │ │ ├── l5_43.mcfunction │ │ ├── l5_44.mcfunction │ │ ├── l5_45.mcfunction │ │ ├── l5_46.mcfunction │ │ ├── l5_47.mcfunction │ │ ├── l5_48.mcfunction │ │ ├── l5_49.mcfunction │ │ ├── l5_50.mcfunction │ │ ├── l5_51.mcfunction │ │ ├── l5_52.mcfunction │ │ ├── l5_53.mcfunction │ │ ├── l5_54.mcfunction │ │ ├── l5_55.mcfunction │ │ ├── l5_56.mcfunction │ │ ├── l5_57.mcfunction │ │ ├── l5_58.mcfunction │ │ ├── l5_59.mcfunction │ │ ├── l5_60.mcfunction │ │ ├── l5_61.mcfunction │ │ ├── l5_62.mcfunction │ │ ├── l5_63.mcfunction │ │ ├── l5_64.mcfunction │ │ ├── l5_65.mcfunction │ │ ├── l5_66.mcfunction │ │ ├── l5_67.mcfunction │ │ ├── l5_68.mcfunction │ │ ├── l5_69.mcfunction │ │ ├── l5_70.mcfunction │ │ ├── l5_71.mcfunction │ │ ├── l5_72.mcfunction │ │ ├── l5_73.mcfunction │ │ ├── l5_74.mcfunction │ │ ├── l5_75.mcfunction │ │ ├── l5_76.mcfunction │ │ ├── l5_77.mcfunction │ │ ├── l5_78.mcfunction │ │ ├── l5_79.mcfunction │ │ ├── l5_80.mcfunction │ │ ├── l5_81.mcfunction │ │ ├── l5_82.mcfunction │ │ ├── l5_83.mcfunction │ │ ├── l5_84.mcfunction │ │ └── l5_85.mcfunction │ │ ├── l6 │ │ ├── l6_1.mcfunction │ │ ├── l6_2.mcfunction │ │ ├── l6_3.mcfunction │ │ ├── l6_4.mcfunction │ │ ├── l6_5.mcfunction │ │ ├── l6_10.mcfunction │ │ ├── l6_11.mcfunction │ │ ├── l6_6.mcfunction │ │ ├── l6_7.mcfunction │ │ ├── l6_8.mcfunction │ │ ├── l6_9.mcfunction │ │ ├── l6_12.mcfunction │ │ ├── l6_13.mcfunction │ │ ├── l6_14.mcfunction │ │ ├── l6_15.mcfunction │ │ ├── l6_16.mcfunction │ │ ├── l6_17.mcfunction │ │ ├── l6_18.mcfunction │ │ ├── l6_19.mcfunction │ │ ├── l6_20.mcfunction │ │ ├── l6_21.mcfunction │ │ ├── l6_22.mcfunction │ │ ├── l6_23.mcfunction │ │ ├── l6_24.mcfunction │ │ ├── l6_25.mcfunction │ │ ├── l6_26.mcfunction │ │ ├── l6_27.mcfunction │ │ ├── l6_28.mcfunction │ │ ├── l6_29.mcfunction │ │ ├── l6_30.mcfunction │ │ ├── l6_31.mcfunction │ │ ├── l6_32.mcfunction │ │ ├── l6_33.mcfunction │ │ ├── l6_34.mcfunction │ │ ├── l6_35.mcfunction │ │ ├── l6_36.mcfunction │ │ ├── l6_37.mcfunction │ │ ├── l6_38.mcfunction │ │ ├── l6_39.mcfunction │ │ ├── l6_40.mcfunction │ │ ├── l6_41.mcfunction │ │ ├── l6_42.mcfunction │ │ ├── l6_43.mcfunction │ │ ├── l6_44.mcfunction │ │ ├── l6_45.mcfunction │ │ ├── l6_46.mcfunction │ │ ├── l6_47.mcfunction │ │ ├── l6_48.mcfunction │ │ ├── l6_49.mcfunction │ │ ├── l6_100.mcfunction │ │ ├── l6_101.mcfunction │ │ ├── l6_102.mcfunction │ │ ├── l6_103.mcfunction │ │ ├── l6_104.mcfunction │ │ ├── l6_105.mcfunction │ │ ├── l6_106.mcfunction │ │ ├── l6_107.mcfunction │ │ ├── l6_108.mcfunction │ │ ├── l6_109.mcfunction │ │ ├── l6_110.mcfunction │ │ ├── l6_111.mcfunction │ │ ├── l6_112.mcfunction │ │ ├── l6_113.mcfunction │ │ ├── l6_114.mcfunction │ │ ├── l6_115.mcfunction │ │ ├── l6_116.mcfunction │ │ ├── l6_117.mcfunction │ │ ├── l6_118.mcfunction │ │ ├── l6_119.mcfunction │ │ ├── l6_120.mcfunction │ │ ├── l6_121.mcfunction │ │ ├── l6_122.mcfunction │ │ ├── l6_123.mcfunction │ │ ├── l6_124.mcfunction │ │ ├── l6_125.mcfunction │ │ ├── l6_126.mcfunction │ │ ├── l6_127.mcfunction │ │ ├── l6_128.mcfunction │ │ ├── l6_129.mcfunction │ │ ├── l6_130.mcfunction │ │ ├── l6_131.mcfunction │ │ ├── l6_132.mcfunction │ │ ├── l6_133.mcfunction │ │ ├── l6_134.mcfunction │ │ ├── l6_135.mcfunction │ │ ├── l6_136.mcfunction │ │ ├── l6_137.mcfunction │ │ ├── l6_138.mcfunction │ │ ├── l6_139.mcfunction │ │ ├── l6_140.mcfunction │ │ ├── l6_141.mcfunction │ │ ├── l6_142.mcfunction │ │ ├── l6_143.mcfunction │ │ ├── l6_144.mcfunction │ │ ├── l6_145.mcfunction │ │ ├── l6_146.mcfunction │ │ ├── l6_147.mcfunction │ │ ├── l6_148.mcfunction │ │ ├── l6_149.mcfunction │ │ ├── l6_150.mcfunction │ │ ├── l6_151.mcfunction │ │ ├── l6_152.mcfunction │ │ ├── l6_153.mcfunction │ │ ├── l6_154.mcfunction │ │ ├── l6_155.mcfunction │ │ ├── l6_156.mcfunction │ │ ├── l6_157.mcfunction │ │ ├── l6_50.mcfunction │ │ ├── l6_51.mcfunction │ │ ├── l6_52.mcfunction │ │ ├── l6_53.mcfunction │ │ ├── l6_54.mcfunction │ │ ├── l6_55.mcfunction │ │ ├── l6_56.mcfunction │ │ ├── l6_57.mcfunction │ │ ├── l6_58.mcfunction │ │ ├── l6_59.mcfunction │ │ ├── l6_60.mcfunction │ │ ├── l6_61.mcfunction │ │ ├── l6_62.mcfunction │ │ ├── l6_63.mcfunction │ │ ├── l6_64.mcfunction │ │ ├── l6_65.mcfunction │ │ ├── l6_66.mcfunction │ │ ├── l6_67.mcfunction │ │ ├── l6_68.mcfunction │ │ ├── l6_69.mcfunction │ │ ├── l6_70.mcfunction │ │ ├── l6_71.mcfunction │ │ ├── l6_72.mcfunction │ │ ├── l6_73.mcfunction │ │ ├── l6_74.mcfunction │ │ ├── l6_75.mcfunction │ │ ├── l6_76.mcfunction │ │ ├── l6_77.mcfunction │ │ ├── l6_78.mcfunction │ │ ├── l6_79.mcfunction │ │ ├── l6_80.mcfunction │ │ ├── l6_81.mcfunction │ │ ├── l6_82.mcfunction │ │ ├── l6_83.mcfunction │ │ ├── l6_84.mcfunction │ │ ├── l6_85.mcfunction │ │ ├── l6_86.mcfunction │ │ ├── l6_87.mcfunction │ │ ├── l6_88.mcfunction │ │ ├── l6_89.mcfunction │ │ ├── l6_90.mcfunction │ │ ├── l6_91.mcfunction │ │ ├── l6_92.mcfunction │ │ ├── l6_93.mcfunction │ │ ├── l6_94.mcfunction │ │ ├── l6_95.mcfunction │ │ ├── l6_96.mcfunction │ │ ├── l6_97.mcfunction │ │ ├── l6_98.mcfunction │ │ ├── l6_99.mcfunction │ │ ├── l6_158.mcfunction │ │ ├── l6_159.mcfunction │ │ ├── l6_160.mcfunction │ │ ├── l6_161.mcfunction │ │ ├── l6_162.mcfunction │ │ ├── l6_163.mcfunction │ │ ├── l6_164.mcfunction │ │ ├── l6_165.mcfunction │ │ ├── l6_166.mcfunction │ │ ├── l6_167.mcfunction │ │ ├── l6_168.mcfunction │ │ ├── l6_169.mcfunction │ │ └── l6_170.mcfunction │ │ ├── l2 │ │ ├── l2_1.mcfunction │ │ ├── l2_2.mcfunction │ │ ├── l2_3.mcfunction │ │ ├── l2_4.mcfunction │ │ ├── l2_5.mcfunction │ │ ├── l2_6.mcfunction │ │ ├── l2_7.mcfunction │ │ ├── l2_8.mcfunction │ │ ├── l2_9.mcfunction │ │ └── l2_10.mcfunction │ │ ├── l3 │ │ ├── l3_1.mcfunction │ │ ├── l3_2.mcfunction │ │ ├── l3_10.mcfunction │ │ ├── l3_11.mcfunction │ │ ├── l3_12.mcfunction │ │ ├── l3_13.mcfunction │ │ ├── l3_14.mcfunction │ │ ├── l3_15.mcfunction │ │ ├── l3_16.mcfunction │ │ ├── l3_17.mcfunction │ │ ├── l3_18.mcfunction │ │ ├── l3_19.mcfunction │ │ ├── l3_3.mcfunction │ │ ├── l3_4.mcfunction │ │ ├── l3_5.mcfunction │ │ ├── l3_6.mcfunction │ │ ├── l3_7.mcfunction │ │ ├── l3_8.mcfunction │ │ ├── l3_9.mcfunction │ │ ├── l3_20.mcfunction │ │ └── l3_21.mcfunction │ │ ├── l4 │ │ ├── l4_1.mcfunction │ │ ├── l4_2.mcfunction │ │ ├── l4_3.mcfunction │ │ ├── l4_4.mcfunction │ │ ├── l4_5.mcfunction │ │ ├── l4_10.mcfunction │ │ ├── l4_11.mcfunction │ │ ├── l4_12.mcfunction │ │ ├── l4_13.mcfunction │ │ ├── l4_14.mcfunction │ │ ├── l4_15.mcfunction │ │ ├── l4_16.mcfunction │ │ ├── l4_17.mcfunction │ │ ├── l4_18.mcfunction │ │ ├── l4_19.mcfunction │ │ ├── l4_20.mcfunction │ │ ├── l4_21.mcfunction │ │ ├── l4_22.mcfunction │ │ ├── l4_23.mcfunction │ │ ├── l4_24.mcfunction │ │ ├── l4_25.mcfunction │ │ ├── l4_26.mcfunction │ │ ├── l4_27.mcfunction │ │ ├── l4_28.mcfunction │ │ ├── l4_29.mcfunction │ │ ├── l4_30.mcfunction │ │ ├── l4_31.mcfunction │ │ ├── l4_32.mcfunction │ │ ├── l4_33.mcfunction │ │ ├── l4_34.mcfunction │ │ ├── l4_35.mcfunction │ │ ├── l4_36.mcfunction │ │ ├── l4_37.mcfunction │ │ ├── l4_38.mcfunction │ │ ├── l4_39.mcfunction │ │ ├── l4_6.mcfunction │ │ ├── l4_7.mcfunction │ │ ├── l4_8.mcfunction │ │ ├── l4_9.mcfunction │ │ ├── l4_40.mcfunction │ │ ├── l4_41.mcfunction │ │ └── l4_42.mcfunction │ │ ├── l1 │ │ ├── l1_1.mcfunction │ │ ├── l1_2.mcfunction │ │ ├── l1_3.mcfunction │ │ ├── l1_4.mcfunction │ │ └── l1_5.mcfunction │ │ └── l7 │ │ ├── l7_1.mcfunction │ │ ├── l7_15.mcfunction │ │ ├── l7_16.mcfunction │ │ ├── l7_17.mcfunction │ │ ├── l7_34.mcfunction │ │ ├── l7_48.mcfunction │ │ ├── l7_2.mcfunction │ │ ├── l7_3.mcfunction │ │ ├── l7_309.mcfunction │ │ ├── l7_33.mcfunction │ │ ├── l7_4.mcfunction │ │ ├── l7_49.mcfunction │ │ ├── l7_54.mcfunction │ │ ├── l7_58.mcfunction │ │ ├── l7_60.mcfunction │ │ ├── l7_61.mcfunction │ │ ├── l7_68.mcfunction │ │ ├── l7_7.mcfunction │ │ ├── l7_96.mcfunction │ │ ├── l7_97.mcfunction │ │ ├── l7_124.mcfunction │ │ ├── l7_129.mcfunction │ │ ├── l7_195.mcfunction │ │ ├── l7_199.mcfunction │ │ ├── l7_200.mcfunction │ │ ├── l7_201.mcfunction │ │ ├── l7_246.mcfunction │ │ ├── l7_52.mcfunction │ │ ├── l7_56.mcfunction │ │ ├── l7_57.mcfunction │ │ ├── l7_62.mcfunction │ │ ├── l7_63.mcfunction │ │ ├── l7_64.mcfunction │ │ ├── l7_65.mcfunction │ │ ├── l7_67.mcfunction │ │ ├── l7_8.mcfunction │ │ ├── l7_9.mcfunction │ │ ├── l7_141.mcfunction │ │ ├── l7_187.mcfunction │ │ ├── l7_193.mcfunction │ │ ├── l7_197.mcfunction │ │ ├── l7_198.mcfunction │ │ ├── l7_271.mcfunction │ │ ├── l7_275.mcfunction │ │ ├── l7_36.mcfunction │ │ ├── l7_53.mcfunction │ │ ├── l7_55.mcfunction │ │ ├── l7_70.mcfunction │ │ ├── l7_75.mcfunction │ │ ├── l7_142.mcfunction │ │ ├── l7_143.mcfunction │ │ ├── l7_149.mcfunction │ │ ├── l7_164.mcfunction │ │ ├── l7_171.mcfunction │ │ ├── l7_173.mcfunction │ │ ├── l7_174.mcfunction │ │ ├── l7_175.mcfunction │ │ ├── l7_194.mcfunction │ │ ├── l7_196.mcfunction │ │ ├── l7_233.mcfunction │ │ ├── l7_268.mcfunction │ │ ├── l7_270.mcfunction │ │ ├── l7_272.mcfunction │ │ ├── l7_273.mcfunction │ │ ├── l7_274.mcfunction │ │ ├── l7_290.mcfunction │ │ ├── l7_340.mcfunction │ │ ├── l7_66.mcfunction │ │ ├── l7_103.mcfunction │ │ ├── l7_106.mcfunction │ │ ├── l7_107.mcfunction │ │ ├── l7_113.mcfunction │ │ ├── l7_144.mcfunction │ │ ├── l7_145.mcfunction │ │ ├── l7_146.mcfunction │ │ ├── l7_169.mcfunction │ │ ├── l7_172.mcfunction │ │ ├── l7_221.mcfunction │ │ ├── l7_249.mcfunction │ │ ├── l7_269.mcfunction │ │ ├── l7_288.mcfunction │ │ ├── l7_289.mcfunction │ │ ├── l7_101.mcfunction │ │ ├── l7_104.mcfunction │ │ ├── l7_105.mcfunction │ │ ├── l7_112.mcfunction │ │ ├── l7_114.mcfunction │ │ ├── l7_138.mcfunction │ │ ├── l7_139.mcfunction │ │ ├── l7_148.mcfunction │ │ ├── l7_170.mcfunction │ │ ├── l7_278.mcfunction │ │ ├── l7_279.mcfunction │ │ ├── l7_281.mcfunction │ │ ├── l7_282.mcfunction │ │ ├── l7_283.mcfunction │ │ ├── l7_102.mcfunction │ │ ├── l7_140.mcfunction │ │ ├── l7_147.mcfunction │ │ └── l7_276.mcfunction ├── pack.mcmeta └── readme.txt ├── blazes_touch_final ├── data │ ├── minecraft │ │ └── tags │ │ │ └── functions │ │ │ └── tick.json │ ├── blazes_touch │ │ └── info.txt │ └── ce_blazes_touch │ │ ├── tags │ │ └── items │ │ │ └── can_enchant.json │ │ └── predicates │ │ └── contains_enchantable.json └── pack.mcmeta ├── custom_enchanting ├── data │ ├── minecraft │ │ └── tags │ │ │ └── functions │ │ │ ├── tick.json │ │ │ └── load.json │ └── custom_enchanting │ │ ├── tags │ │ └── blocks │ │ │ └── air.json │ │ └── functions │ │ ├── kill_entities.mcfunction │ │ └── frame_drop_item.mcfunction └── pack.mcmeta ├── enders_reach ├── data │ ├── minecraft │ │ └── tags │ │ │ └── functions │ │ │ ├── load.json │ │ │ └── tick.json │ ├── enders_reach │ │ └── functions │ │ │ ├── create_scoreboards.mcfunction │ │ │ └── on_tick.mcfunction │ └── ce_enders_reach │ │ ├── tags │ │ └── items │ │ │ └── can_enchant.json │ │ └── predicates │ │ └── contains_enchantable.json └── pack.mcmeta ├── tp_trident ├── data │ ├── minecraft │ │ └── tags │ │ │ └── functions │ │ │ ├── load.json │ │ │ └── tick.json │ └── ce_teleportation │ │ ├── tags │ │ └── items │ │ │ └── can_enchant.json │ │ └── predicates │ │ └── contains_enchantable.json └── pack.mcmeta ├── crouch_to_place ├── data │ ├── minecraft │ │ └── tags │ │ │ └── functions │ │ │ ├── tick.json │ │ │ └── load.json │ └── crouch_place │ │ ├── functions │ │ ├── create_scoreboards.mcfunction │ │ ├── create_void_block.mcfunction │ │ └── scoreboard_check.mcfunction │ │ └── tags │ │ ├── entity_types │ │ └── can_float.json │ │ └── blocks │ │ └── air.json └── pack.mcmeta ├── rabbit_leap ├── data │ ├── minecraft │ │ └── tags │ │ │ └── functions │ │ │ ├── load.json │ │ │ └── tick.json │ ├── rabbit_leap │ │ └── functions │ │ │ └── create_scoreboards.mcfunction │ ├── ce_rabbit_leap_i │ │ ├── tags │ │ │ └── items │ │ │ │ └── can_enchant.json │ │ └── predicates │ │ │ └── contains_enchantable.json │ ├── ce_rabbit_leap_ii │ │ ├── tags │ │ │ └── items │ │ │ │ └── can_enchant.json │ │ └── predicates │ │ │ └── contains_enchantable.json │ └── ce_rabbit_leap_iii │ │ ├── tags │ │ └── items │ │ │ └── can_enchant.json │ │ └── predicates │ │ └── contains_enchantable.json └── pack.mcmeta ├── Resource Packs └── TTRPG │ ├── pack.mcmeta │ └── assets │ ├── ttrpg │ ├── textures │ │ └── item │ │ │ ├── d4_base.png │ │ │ ├── d6_base.png │ │ │ ├── d8_base.png │ │ │ ├── d10_base.png │ │ │ ├── d10_color.png │ │ │ ├── d12_base.png │ │ │ ├── d12_color.png │ │ │ ├── d20_base.png │ │ │ ├── d20_color.png │ │ │ ├── d4_color.png │ │ │ ├── d6_color.png │ │ │ └── d8_color.png │ └── models │ │ └── item │ │ ├── d4.json │ │ ├── d6.json │ │ ├── d8.json │ │ ├── d10.json │ │ ├── d12.json │ │ └── d20.json │ └── minecraft │ ├── textures │ └── item │ │ └── snowball.png │ └── models │ └── item │ ├── sunflower.json │ └── carrot_on_a_stick.json ├── BLANK_ENCHANTMENT ├── data │ ├── minecraft │ │ └── tags │ │ │ └── functions │ │ │ └── tick.json │ └── ce_ENCHANT_NAME │ │ ├── tags │ │ └── items │ │ │ └── can_enchant.json │ │ └── predicates │ │ └── contains_enchantable.json └── pack.mcmeta └── blazes_touch_base └── pack.mcmeta /uuid_utils/data/minecraft/tags/functions/tick.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "uuid_utils:on_tick" 4 | ] 5 | } -------------------------------------------------------------------------------- /entity_grabber/data/minecraft/tags/functions/tick.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "grabber:on_tick" 4 | ] 5 | } -------------------------------------------------------------------------------- /ttrpg_utils/data/minecraft/tags/functions/tick.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "ttrpg_utils:on_tick" 4 | ] 5 | } -------------------------------------------------------------------------------- /wall_phasing/data/minecraft/tags/functions/load.json: -------------------------------------------------------------------------------- 1 | { 2 | "values":[ 3 | "glowing_ii:on_load" 4 | ] 5 | } -------------------------------------------------------------------------------- /wall_phasing/data/minecraft/tags/functions/tick.json: -------------------------------------------------------------------------------- 1 | { 2 | "values":[ 3 | "glowing_ii:on_tick" 4 | ] 5 | } -------------------------------------------------------------------------------- /blazes_touch_final/data/minecraft/tags/functions/tick.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "ce_blazes_touch:on_tick" 4 | ] 5 | } -------------------------------------------------------------------------------- /custom_enchanting/data/minecraft/tags/functions/tick.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "custom_enchanting:on_tick" 4 | ] 5 | } -------------------------------------------------------------------------------- /enders_reach/data/minecraft/tags/functions/load.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "enders_reach:create_scoreboards" 4 | ] 5 | } -------------------------------------------------------------------------------- /tp_trident/data/minecraft/tags/functions/load.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "enders_reach:create_scoreboards" 4 | ] 5 | } -------------------------------------------------------------------------------- /uuid_utils/data/minecraft/tags/functions/load.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "uuid_utils:create_scoreboards" 4 | ] 5 | } -------------------------------------------------------------------------------- /crouch_to_place/data/minecraft/tags/functions/tick.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "crouch_place:scoreboard_check" 4 | ] 5 | } -------------------------------------------------------------------------------- /entity_grabber/data/grabber/tags/entity_types/can_grab.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:armor_stand" 4 | ] 5 | } -------------------------------------------------------------------------------- /entity_grabber/data/minecraft/tags/functions/load.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "grabber:create_scoreboards" 4 | ] 5 | } -------------------------------------------------------------------------------- /rabbit_leap/data/minecraft/tags/functions/load.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "rabbit_leap:create_scoreboards" 4 | ] 5 | } -------------------------------------------------------------------------------- /ttrpg_utils/data/minecraft/tags/functions/load.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "ttrpg_utils:create_scoreboards" 4 | ] 5 | } -------------------------------------------------------------------------------- /crouch_to_place/data/minecraft/tags/functions/load.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "crouch_place:create_scoreboards" 4 | ] 5 | } -------------------------------------------------------------------------------- /custom_enchanting/data/minecraft/tags/functions/load.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "custom_enchanting:create_scoreboards" 4 | ] 5 | } -------------------------------------------------------------------------------- /wall_phasing/data/custom_brewing/functions/cancel_brewing.mcfunction: -------------------------------------------------------------------------------- 1 | tag @s remove brewing 2 | scoreboard players set @s brew_time 0 -------------------------------------------------------------------------------- /wall_phasing/data/glowing_ii/functions/on_load.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard objectives add phase_sneak minecraft.custom:minecraft.sneak_time -------------------------------------------------------------------------------- /blazes_touch_final/data/blazes_touch/info.txt: -------------------------------------------------------------------------------- 1 | If there were anything beyond the loot tables for this datapack, this is where it would be. -------------------------------------------------------------------------------- /crouch_to_place/data/crouch_place/functions/create_scoreboards.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard objectives add sneaking minecraft.custom:minecraft.sneak_time -------------------------------------------------------------------------------- /enders_reach/data/minecraft/tags/functions/tick.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "ce_enders_reach:on_tick", 4 | "enders_reach:on_tick" 5 | ] 6 | } -------------------------------------------------------------------------------- /tp_trident/data/ce_teleportation/tags/items/can_enchant.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:trident" 5 | ] 6 | } -------------------------------------------------------------------------------- /tp_trident/data/minecraft/tags/functions/tick.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "ce_teleportation:on_tick", 4 | "teleportation:on_tick" 5 | ] 6 | } -------------------------------------------------------------------------------- /wall_phasing/data/custom_brewing/functions/on_load.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard objectives add brew_time dummy 2 | scoreboard objectives add counter dummy -------------------------------------------------------------------------------- /Resource Packs/TTRPG/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 5, 4 | "description": "Textures for TTRPG Pack" 5 | } 6 | } -------------------------------------------------------------------------------- /BLANK_ENCHANTMENT/data/minecraft/tags/functions/tick.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "ce_ENCHANTMENT_NAME:on_tick", 4 | "ENCHANTMENT_NAME:on_tick" 5 | ] 6 | } -------------------------------------------------------------------------------- /crouch_to_place/data/crouch_place/functions/create_void_block.mcfunction: -------------------------------------------------------------------------------- 1 | setblock ~ ~ ~ structure_void 2 | particle minecraft:bubble_pop ~ ~ ~ 0 0 0 0 1 force @s -------------------------------------------------------------------------------- /ttrpg_utils/data/ttrpg_utils/functions/clear_dice.mcfunction: -------------------------------------------------------------------------------- 1 | function uuid_utils:get_owned 2 | kill @e[type=item,scores={target_0=0,target_1=0,target_2=0,target_3=0}] -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/textures/item/d4_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DqwertyC/datapacks/HEAD/Resource Packs/TTRPG/assets/ttrpg/textures/item/d4_base.png -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/textures/item/d6_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DqwertyC/datapacks/HEAD/Resource Packs/TTRPG/assets/ttrpg/textures/item/d6_base.png -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/textures/item/d8_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DqwertyC/datapacks/HEAD/Resource Packs/TTRPG/assets/ttrpg/textures/item/d8_base.png -------------------------------------------------------------------------------- /wall_phasing/data/custom_brewing/functions/start_brewing.mcfunction: -------------------------------------------------------------------------------- 1 | function custom_brewing:decrement_fuel 2 | tag @s add brewing 3 | scoreboard players set @s brew_time 400 -------------------------------------------------------------------------------- /wall_phasing/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 3, 4 | "description": "Adds new Potion of Intangibility" 5 | } 6 | } -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/textures/item/d10_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DqwertyC/datapacks/HEAD/Resource Packs/TTRPG/assets/ttrpg/textures/item/d10_base.png -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/textures/item/d10_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DqwertyC/datapacks/HEAD/Resource Packs/TTRPG/assets/ttrpg/textures/item/d10_color.png -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/textures/item/d12_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DqwertyC/datapacks/HEAD/Resource Packs/TTRPG/assets/ttrpg/textures/item/d12_base.png -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/textures/item/d12_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DqwertyC/datapacks/HEAD/Resource Packs/TTRPG/assets/ttrpg/textures/item/d12_color.png -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/textures/item/d20_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DqwertyC/datapacks/HEAD/Resource Packs/TTRPG/assets/ttrpg/textures/item/d20_base.png -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/textures/item/d20_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DqwertyC/datapacks/HEAD/Resource Packs/TTRPG/assets/ttrpg/textures/item/d20_color.png -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/textures/item/d4_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DqwertyC/datapacks/HEAD/Resource Packs/TTRPG/assets/ttrpg/textures/item/d4_color.png -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/textures/item/d6_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DqwertyC/datapacks/HEAD/Resource Packs/TTRPG/assets/ttrpg/textures/item/d6_color.png -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/textures/item/d8_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DqwertyC/datapacks/HEAD/Resource Packs/TTRPG/assets/ttrpg/textures/item/d8_color.png -------------------------------------------------------------------------------- /wall_phasing/readme.txt: -------------------------------------------------------------------------------- 1 | This datapack requires Cloud Wolf's Block Serializer datapack to function properly. 2 | Check it out here: https://www.youtube.com/watch?v=_W_ojAgI9oY -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/minecraft/textures/item/snowball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DqwertyC/datapacks/HEAD/Resource Packs/TTRPG/assets/minecraft/textures/item/snowball.png -------------------------------------------------------------------------------- /crouch_to_place/data/crouch_place/tags/entity_types/can_float.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:player", 5 | "minecraft:villager" 6 | ] 7 | } -------------------------------------------------------------------------------- /enders_reach/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 1, 4 | "description": "Enders Reach Enchantment. Requires Custom Enchanting Datapack" 5 | } 6 | } -------------------------------------------------------------------------------- /blazes_touch_final/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 1, 4 | "description": "Blaze Touch Enchantment. Requires Custom Enchanting Datapack" 5 | } 6 | } -------------------------------------------------------------------------------- /enders_reach/data/enders_reach/functions/create_scoreboards.mcfunction: -------------------------------------------------------------------------------- 1 | #scoreboard for the enchantment effect 2 | scoreboard objectives add sneaking minecraft.custom:minecraft.sneak_time -------------------------------------------------------------------------------- /rabbit_leap/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 1, 4 | "description": "Rabbit Leap Enchantments. Requires Custom Enchanting Datapack" 5 | } 6 | } -------------------------------------------------------------------------------- /tp_trident/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 1, 4 | "description": "Telportation Trident Enchantment. Requires Custom Enchanting Datapack" 5 | } 6 | } -------------------------------------------------------------------------------- /uuid_utils/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 1, 4 | "description": "Technical Datapack. Uses scoreboards to target entities based on UUID." 5 | } 6 | } -------------------------------------------------------------------------------- /BLANK_ENCHANTMENT/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 1, 4 | "description": "ENCHANTMENT_NAME Enchantment. Requires Custom Enchanting Datapack" 5 | } 6 | } -------------------------------------------------------------------------------- /custom_enchanting/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 1, 4 | "description": "Feature Datapack. Adds a way to add custom enchantments to items." 5 | } 6 | } -------------------------------------------------------------------------------- /ttrpg_utils/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 1, 4 | "description": "Technical Datapack. Uses scoreboards to target entities based on UUID." 5 | } 6 | } -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/minecraft/models/item/sunflower.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "minecraft:block/sunflower_front" 5 | } 6 | } -------------------------------------------------------------------------------- /blazes_touch_base/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 1, 4 | "description": "Blaze Touch Enchantment. Base pack for use with Custom Enchanting Tutorial" 5 | } 6 | } -------------------------------------------------------------------------------- /crouch_to_place/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 1, 4 | "description": "Utility Datapack. Allows blocks to be placed in midair while crouching" 5 | } 6 | } -------------------------------------------------------------------------------- /entity_grabber/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 1, 4 | "description": "Feature Datapack. Custom Carrot-On-A-Stick allows player to move entities" 5 | } 6 | } -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/minecraft/models/item/carrot_on_a_stick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "minecraft:item/carrot_on_a_stick" 5 | } 6 | } -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/models/item/d4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ttrpg:item/d4_color", 5 | "layer1": "ttrpg:item/d4_base" 6 | } 7 | } -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/models/item/d6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ttrpg:item/d6_color", 5 | "layer1": "ttrpg:item/d6_base" 6 | } 7 | } -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/models/item/d8.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ttrpg:item/d8_color", 5 | "layer1": "ttrpg:item/d8_base" 6 | } 7 | } -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/models/item/d10.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ttrpg:item/d10_color", 5 | "layer1": "ttrpg:item/d10_base" 6 | } 7 | } -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/models/item/d12.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ttrpg:item/d12_color", 5 | "layer1": "ttrpg:item/d12_base" 6 | } 7 | } -------------------------------------------------------------------------------- /Resource Packs/TTRPG/assets/ttrpg/models/item/d20.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ttrpg:item/d20_color", 5 | "layer1": "ttrpg:item/d20_base" 6 | } 7 | } -------------------------------------------------------------------------------- /rabbit_leap/data/minecraft/tags/functions/tick.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "ce_rabbit_leap_i:on_tick", 4 | "ce_rabbit_leap_ii:on_tick", 5 | "ce_rabbit_leap_iii:on_tick", 6 | "rabbit_leap:on_tick" 7 | ] 8 | } -------------------------------------------------------------------------------- /uuid_utils/data/uuid_utils/functions/teleport_owner.mcfunction: -------------------------------------------------------------------------------- 1 | # Function will teleport the entity's owner to it. 2 | function uuid_utils:get_owner 3 | tp @e[scores={target_0=0,target_1=0,target_2=0,target_3=0}] ~ ~ ~ 4 | -------------------------------------------------------------------------------- /crouch_to_place/data/crouch_place/tags/blocks/air.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:air", 5 | "minecraft:cave_air", 6 | "minecraft:void_air", 7 | "minecraft:structure_void" 8 | ] 9 | } -------------------------------------------------------------------------------- /wall_phasing/data/custom_brewing/functions/summon_stand_entity.mcfunction: -------------------------------------------------------------------------------- 1 | tag @s remove searching 2 | execute align xyz run summon minecraft:armor_stand ~0.5 ~0.25 ~0.5 {Small:1b,Marker:1b,Invisible:1b,Tags:["brewing_entity"]} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/solidify_block.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players operation block bsc = @s bsc 2 | function cw_serializer:write 3 | 4 | data modify block ~ ~ ~ {} merge from entity @s TileEntityData 5 | kill @s -------------------------------------------------------------------------------- /custom_enchanting/data/custom_enchanting/tags/blocks/air.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:air", 5 | "minecraft:cave_air", 6 | "minecraft:void_air", 7 | "minecraft:structure_void" 8 | ] 9 | } -------------------------------------------------------------------------------- /rabbit_leap/data/rabbit_leap/functions/create_scoreboards.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard objectives add rabbit_leap_lvl dummy 2 | scoreboard objectives add rabbit_sneaking minecraft.custom:minecraft.sneak_time 3 | scoreboard objectives add rabbit_sneak dummy -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_1.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 0..3 run function cw_serial_mods:falling_block/l6/l6_1 2 | execute if score block bsc matches 4..7 run function cw_serial_mods:falling_block/l6/l6_2 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_1.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 0..1 run function cw_serial_mods:falling_block/l7/l7_1 2 | execute if score block bsc matches 2..3 run function cw_serial_mods:falling_block/l7/l7_2 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_2.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4..5 run function cw_serial_mods:falling_block/l7/l7_3 2 | execute if score block bsc matches 6..7 run function cw_serial_mods:falling_block/l7/l7_4 3 | -------------------------------------------------------------------------------- /wall_phasing/data/custom_brewing/functions/decrement_fuel.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score @s counter run data get block ~ ~ ~ Fuel 2 | scoreboard players remove @s counter 1 3 | execute store result block ~ ~ ~ Fuel int 1 run scoreboard players get @s counter -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l2/l2_1.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 0..69 run function cw_serial_mods:falling_block/l3/l3_1 2 | execute if score block bsc matches 70..227 run function cw_serial_mods:falling_block/l3/l3_2 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_1.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 0..17 run function cw_serial_mods:falling_block/l4/l4_1 2 | execute if score block bsc matches 18..69 run function cw_serial_mods:falling_block/l4/l4_2 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_1.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 0..7 run function cw_serial_mods:falling_block/l5/l5_1 2 | execute if score block bsc matches 8..17 run function cw_serial_mods:falling_block/l5/l5_2 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_2.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 18..30 run function cw_serial_mods:falling_block/l5/l5_3 2 | execute if score block bsc matches 31..69 run function cw_serial_mods:falling_block/l5/l5_4 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_3.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 70..89 run function cw_serial_mods:falling_block/l5/l5_5 2 | execute if score block bsc matches 90..113 run function cw_serial_mods:falling_block/l5/l5_6 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_2.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8..13 run function cw_serial_mods:falling_block/l6/l6_3 2 | execute if score block bsc matches 14..17 run function cw_serial_mods:falling_block/l6/l6_4 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_3.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 18..22 run function cw_serial_mods:falling_block/l6/l6_5 2 | execute if score block bsc matches 23..30 run function cw_serial_mods:falling_block/l6/l6_6 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_4.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 31..65 run function cw_serial_mods:falling_block/l6/l6_7 2 | execute if score block bsc matches 66..69 run function cw_serial_mods:falling_block/l6/l6_8 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_5.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 70..77 run function cw_serial_mods:falling_block/l6/l6_9 2 | execute if score block bsc matches 78..89 run function cw_serial_mods:falling_block/l6/l6_10 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_3.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8..10 run function cw_serial_mods:falling_block/l7/l7_5 2 | execute if score block bsc matches 11..13 run function cw_serial_mods:falling_block/l7/l7_6 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_4.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 14..15 run function cw_serial_mods:falling_block/l7/l7_7 2 | execute if score block bsc matches 16..17 run function cw_serial_mods:falling_block/l7/l7_8 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_5.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 18..19 run function cw_serial_mods:falling_block/l7/l7_9 2 | execute if score block bsc matches 20..22 run function cw_serial_mods:falling_block/l7/l7_10 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l1/l1_1.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 0..227 run function cw_serial_mods:falling_block/l2/l2_1 2 | execute if score block bsc matches 228..1420 run function cw_serial_mods:falling_block/l2/l2_2 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_2.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 70..113 run function cw_serial_mods:falling_block/l4/l4_3 2 | execute if score block bsc matches 114..227 run function cw_serial_mods:falling_block/l4/l4_4 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_4.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 114..137 run function cw_serial_mods:falling_block/l5/l5_7 2 | execute if score block bsc matches 138..227 run function cw_serial_mods:falling_block/l5/l5_8 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_5.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 228..246 run function cw_serial_mods:falling_block/l5/l5_9 2 | execute if score block bsc matches 247..1143 run function cw_serial_mods:falling_block/l5/l5_10 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_6.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 90..101 run function cw_serial_mods:falling_block/l6/l6_11 2 | execute if score block bsc matches 102..113 run function cw_serial_mods:falling_block/l6/l6_12 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_7.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 114..125 run function cw_serial_mods:falling_block/l6/l6_13 2 | execute if score block bsc matches 126..137 run function cw_serial_mods:falling_block/l6/l6_14 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_8.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 138..171 run function cw_serial_mods:falling_block/l6/l6_15 2 | execute if score block bsc matches 172..227 run function cw_serial_mods:falling_block/l6/l6_16 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_9.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 228..231 run function cw_serial_mods:falling_block/l6/l6_17 2 | execute if score block bsc matches 232..246 run function cw_serial_mods:falling_block/l6/l6_18 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_10.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 78..83 run function cw_serial_mods:falling_block/l7/l7_19 2 | execute if score block bsc matches 84..89 run function cw_serial_mods:falling_block/l7/l7_20 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_11.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 90..95 run function cw_serial_mods:falling_block/l7/l7_21 2 | execute if score block bsc matches 96..101 run function cw_serial_mods:falling_block/l7/l7_22 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_6.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 23..26 run function cw_serial_mods:falling_block/l7/l7_11 2 | execute if score block bsc matches 27..30 run function cw_serial_mods:falling_block/l7/l7_12 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_7.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 31..33 run function cw_serial_mods:falling_block/l7/l7_13 2 | execute if score block bsc matches 34..65 run function cw_serial_mods:falling_block/l7/l7_14 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_8.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 66..67 run function cw_serial_mods:falling_block/l7/l7_15 2 | execute if score block bsc matches 68..69 run function cw_serial_mods:falling_block/l7/l7_16 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_9.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 70..71 run function cw_serial_mods:falling_block/l7/l7_17 2 | execute if score block bsc matches 72..77 run function cw_serial_mods:falling_block/l7/l7_18 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l1/l1_2.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1421..3997 run function cw_serial_mods:falling_block/l2/l2_3 2 | execute if score block bsc matches 3998..5137 run function cw_serial_mods:falling_block/l2/l2_4 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l1/l1_3.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5138..6081 run function cw_serial_mods:falling_block/l2/l2_5 2 | execute if score block bsc matches 6082..7330 run function cw_serial_mods:falling_block/l2/l2_6 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l1/l1_4.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7331..7787 run function cw_serial_mods:falling_block/l2/l2_7 2 | execute if score block bsc matches 7788..8801 run function cw_serial_mods:falling_block/l2/l2_8 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l1/l1_5.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8802..8979 run function cw_serial_mods:falling_block/l2/l2_9 2 | execute if score block bsc matches 8980..11336 run function cw_serial_mods:falling_block/l2/l2_10 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l2/l2_2.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 228..1342 run function cw_serial_mods:falling_block/l3/l3_3 2 | execute if score block bsc matches 1343..1420 run function cw_serial_mods:falling_block/l3/l3_4 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l2/l2_3.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1421..3634 run function cw_serial_mods:falling_block/l3/l3_5 2 | execute if score block bsc matches 3635..3997 run function cw_serial_mods:falling_block/l3/l3_6 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l2/l2_4.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3998..4483 run function cw_serial_mods:falling_block/l3/l3_7 2 | execute if score block bsc matches 4484..5137 run function cw_serial_mods:falling_block/l3/l3_8 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l2/l2_5.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5138..5783 run function cw_serial_mods:falling_block/l3/l3_9 2 | execute if score block bsc matches 5784..6081 run function cw_serial_mods:falling_block/l3/l3_10 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l2/l2_6.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6082..6358 run function cw_serial_mods:falling_block/l3/l3_11 2 | execute if score block bsc matches 6359..7330 run function cw_serial_mods:falling_block/l3/l3_12 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l2/l2_7.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7331..7488 run function cw_serial_mods:falling_block/l3/l3_13 2 | execute if score block bsc matches 7489..7787 run function cw_serial_mods:falling_block/l3/l3_14 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l2/l2_8.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7788..8393 run function cw_serial_mods:falling_block/l3/l3_15 2 | execute if score block bsc matches 8394..8801 run function cw_serial_mods:falling_block/l3/l3_16 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l2/l2_9.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8802..8911 run function cw_serial_mods:falling_block/l3/l3_17 2 | execute if score block bsc matches 8912..8979 run function cw_serial_mods:falling_block/l3/l3_18 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_10.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5784..5905 run function cw_serial_mods:falling_block/l4/l4_19 2 | execute if score block bsc matches 5906..6081 run function cw_serial_mods:falling_block/l4/l4_20 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_11.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6082..6311 run function cw_serial_mods:falling_block/l4/l4_21 2 | execute if score block bsc matches 6312..6358 run function cw_serial_mods:falling_block/l4/l4_22 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_12.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6359..6918 run function cw_serial_mods:falling_block/l4/l4_23 2 | execute if score block bsc matches 6919..7330 run function cw_serial_mods:falling_block/l4/l4_24 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_13.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7331..7346 run function cw_serial_mods:falling_block/l4/l4_25 2 | execute if score block bsc matches 7347..7488 run function cw_serial_mods:falling_block/l4/l4_26 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_14.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7489..7648 run function cw_serial_mods:falling_block/l4/l4_27 2 | execute if score block bsc matches 7649..7787 run function cw_serial_mods:falling_block/l4/l4_28 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_15.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7788..7878 run function cw_serial_mods:falling_block/l4/l4_29 2 | execute if score block bsc matches 7879..8393 run function cw_serial_mods:falling_block/l4/l4_30 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_16.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8394..8717 run function cw_serial_mods:falling_block/l4/l4_31 2 | execute if score block bsc matches 8718..8801 run function cw_serial_mods:falling_block/l4/l4_32 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_17.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8802..8877 run function cw_serial_mods:falling_block/l4/l4_33 2 | execute if score block bsc matches 8878..8911 run function cw_serial_mods:falling_block/l4/l4_34 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_18.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8912..8927 run function cw_serial_mods:falling_block/l4/l4_35 2 | execute if score block bsc matches 8928..8979 run function cw_serial_mods:falling_block/l4/l4_36 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_19.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8980..9007 run function cw_serial_mods:falling_block/l4/l4_37 2 | execute if score block bsc matches 9008..9087 run function cw_serial_mods:falling_block/l4/l4_38 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_3.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 228..1143 run function cw_serial_mods:falling_block/l4/l4_5 2 | execute if score block bsc matches 1144..1342 run function cw_serial_mods:falling_block/l4/l4_6 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_4.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1343..1393 run function cw_serial_mods:falling_block/l4/l4_7 2 | execute if score block bsc matches 1394..1420 run function cw_serial_mods:falling_block/l4/l4_8 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_5.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1421..1951 run function cw_serial_mods:falling_block/l4/l4_9 2 | execute if score block bsc matches 1952..3634 run function cw_serial_mods:falling_block/l4/l4_10 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_6.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3635..3878 run function cw_serial_mods:falling_block/l4/l4_11 2 | execute if score block bsc matches 3879..3997 run function cw_serial_mods:falling_block/l4/l4_12 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_7.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3998..4089 run function cw_serial_mods:falling_block/l4/l4_13 2 | execute if score block bsc matches 4090..4483 run function cw_serial_mods:falling_block/l4/l4_14 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_8.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4484..4763 run function cw_serial_mods:falling_block/l4/l4_15 2 | execute if score block bsc matches 4764..5137 run function cw_serial_mods:falling_block/l4/l4_16 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_9.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5138..5704 run function cw_serial_mods:falling_block/l4/l4_17 2 | execute if score block bsc matches 5705..5783 run function cw_serial_mods:falling_block/l4/l4_18 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_10.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1952..3370 run function cw_serial_mods:falling_block/l5/l5_19 2 | execute if score block bsc matches 3371..3634 run function cw_serial_mods:falling_block/l5/l5_20 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_11.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3635..3772 run function cw_serial_mods:falling_block/l5/l5_21 2 | execute if score block bsc matches 3773..3878 run function cw_serial_mods:falling_block/l5/l5_22 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_12.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3879..3927 run function cw_serial_mods:falling_block/l5/l5_23 2 | execute if score block bsc matches 3928..3997 run function cw_serial_mods:falling_block/l5/l5_24 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_13.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3998..4081 run function cw_serial_mods:falling_block/l5/l5_25 2 | execute if score block bsc matches 4082..4089 run function cw_serial_mods:falling_block/l5/l5_26 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_14.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4090..4160 run function cw_serial_mods:falling_block/l5/l5_27 2 | execute if score block bsc matches 4161..4483 run function cw_serial_mods:falling_block/l5/l5_28 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_15.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4484..4554 run function cw_serial_mods:falling_block/l5/l5_29 2 | execute if score block bsc matches 4555..4763 run function cw_serial_mods:falling_block/l5/l5_30 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_16.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4764..4999 run function cw_serial_mods:falling_block/l5/l5_31 2 | execute if score block bsc matches 5000..5137 run function cw_serial_mods:falling_block/l5/l5_32 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_17.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5138..5258 run function cw_serial_mods:falling_block/l5/l5_33 2 | execute if score block bsc matches 5259..5704 run function cw_serial_mods:falling_block/l5/l5_34 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_18.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5705..5775 run function cw_serial_mods:falling_block/l5/l5_35 2 | execute if score block bsc matches 5776..5783 run function cw_serial_mods:falling_block/l5/l5_36 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_19.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5784..5791 run function cw_serial_mods:falling_block/l5/l5_37 2 | execute if score block bsc matches 5792..5905 run function cw_serial_mods:falling_block/l5/l5_38 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_20.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5906..6013 run function cw_serial_mods:falling_block/l5/l5_39 2 | execute if score block bsc matches 6014..6081 run function cw_serial_mods:falling_block/l5/l5_40 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_21.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6082..6191 run function cw_serial_mods:falling_block/l5/l5_41 2 | execute if score block bsc matches 6192..6311 run function cw_serial_mods:falling_block/l5/l5_42 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_22.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6312..6319 run function cw_serial_mods:falling_block/l5/l5_43 2 | execute if score block bsc matches 6320..6358 run function cw_serial_mods:falling_block/l5/l5_44 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_23.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6359..6614 run function cw_serial_mods:falling_block/l5/l5_45 2 | execute if score block bsc matches 6615..6918 run function cw_serial_mods:falling_block/l5/l5_46 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_24.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6919..7147 run function cw_serial_mods:falling_block/l5/l5_47 2 | execute if score block bsc matches 7148..7330 run function cw_serial_mods:falling_block/l5/l5_48 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_25.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7331..7338 run function cw_serial_mods:falling_block/l5/l5_49 2 | execute if score block bsc matches 7339..7346 run function cw_serial_mods:falling_block/l5/l5_50 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_26.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7347..7360 run function cw_serial_mods:falling_block/l5/l5_51 2 | execute if score block bsc matches 7361..7488 run function cw_serial_mods:falling_block/l5/l5_52 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_27.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7489..7616 run function cw_serial_mods:falling_block/l5/l5_53 2 | execute if score block bsc matches 7617..7648 run function cw_serial_mods:falling_block/l5/l5_54 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_28.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7649..7680 run function cw_serial_mods:falling_block/l5/l5_55 2 | execute if score block bsc matches 7681..7787 run function cw_serial_mods:falling_block/l5/l5_56 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_29.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7788..7835 run function cw_serial_mods:falling_block/l5/l5_57 2 | execute if score block bsc matches 7836..7878 run function cw_serial_mods:falling_block/l5/l5_58 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_30.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7879..8041 run function cw_serial_mods:falling_block/l5/l5_59 2 | execute if score block bsc matches 8042..8393 run function cw_serial_mods:falling_block/l5/l5_60 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_31.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8394..8681 run function cw_serial_mods:falling_block/l5/l5_61 2 | execute if score block bsc matches 8682..8717 run function cw_serial_mods:falling_block/l5/l5_62 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_32.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8718..8753 run function cw_serial_mods:falling_block/l5/l5_63 2 | execute if score block bsc matches 8754..8801 run function cw_serial_mods:falling_block/l5/l5_64 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_33.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8802..8845 run function cw_serial_mods:falling_block/l5/l5_65 2 | execute if score block bsc matches 8846..8877 run function cw_serial_mods:falling_block/l5/l5_66 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_34.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8878..8903 run function cw_serial_mods:falling_block/l5/l5_67 2 | execute if score block bsc matches 8904..8911 run function cw_serial_mods:falling_block/l5/l5_68 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_35.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8912..8919 run function cw_serial_mods:falling_block/l5/l5_69 2 | execute if score block bsc matches 8920..8927 run function cw_serial_mods:falling_block/l5/l5_70 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_36.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8928..8960 run function cw_serial_mods:falling_block/l5/l5_71 2 | execute if score block bsc matches 8961..8979 run function cw_serial_mods:falling_block/l5/l5_72 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_37.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8980..8991 run function cw_serial_mods:falling_block/l5/l5_73 2 | execute if score block bsc matches 8992..9007 run function cw_serial_mods:falling_block/l5/l5_74 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_38.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9008..9023 run function cw_serial_mods:falling_block/l5/l5_75 2 | execute if score block bsc matches 9024..9087 run function cw_serial_mods:falling_block/l5/l5_76 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_39.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9088..9128 run function cw_serial_mods:falling_block/l5/l5_77 2 | execute if score block bsc matches 9129..9532 run function cw_serial_mods:falling_block/l5/l5_78 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_6.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1144..1271 run function cw_serial_mods:falling_block/l5/l5_11 2 | execute if score block bsc matches 1272..1342 run function cw_serial_mods:falling_block/l5/l5_12 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_7.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1343..1385 run function cw_serial_mods:falling_block/l5/l5_13 2 | execute if score block bsc matches 1386..1393 run function cw_serial_mods:falling_block/l5/l5_14 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_8.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1394..1412 run function cw_serial_mods:falling_block/l5/l5_15 2 | execute if score block bsc matches 1413..1420 run function cw_serial_mods:falling_block/l5/l5_16 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_9.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1421..1428 run function cw_serial_mods:falling_block/l5/l5_17 2 | execute if score block bsc matches 1429..1951 run function cw_serial_mods:falling_block/l5/l5_18 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_10.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 247..1079 run function cw_serial_mods:falling_block/l6/l6_19 2 | execute if score block bsc matches 1080..1143 run function cw_serial_mods:falling_block/l6/l6_20 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_11.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1144..1207 run function cw_serial_mods:falling_block/l6/l6_21 2 | execute if score block bsc matches 1208..1271 run function cw_serial_mods:falling_block/l6/l6_22 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_12.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1272..1327 run function cw_serial_mods:falling_block/l6/l6_23 2 | execute if score block bsc matches 1328..1342 run function cw_serial_mods:falling_block/l6/l6_24 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_13.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1343..1358 run function cw_serial_mods:falling_block/l6/l6_25 2 | execute if score block bsc matches 1359..1385 run function cw_serial_mods:falling_block/l6/l6_26 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_14.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1386..1389 run function cw_serial_mods:falling_block/l6/l6_27 2 | execute if score block bsc matches 1390..1393 run function cw_serial_mods:falling_block/l6/l6_28 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_15.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1394..1397 run function cw_serial_mods:falling_block/l6/l6_29 2 | execute if score block bsc matches 1398..1412 run function cw_serial_mods:falling_block/l6/l6_30 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_16.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1413..1416 run function cw_serial_mods:falling_block/l6/l6_31 2 | execute if score block bsc matches 1417..1420 run function cw_serial_mods:falling_block/l6/l6_32 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_17.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1421..1424 run function cw_serial_mods:falling_block/l6/l6_33 2 | execute if score block bsc matches 1425..1428 run function cw_serial_mods:falling_block/l6/l6_34 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_18.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1429..1433 run function cw_serial_mods:falling_block/l6/l6_35 2 | execute if score block bsc matches 1434..1951 run function cw_serial_mods:falling_block/l6/l6_36 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_19.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1952..3352 run function cw_serial_mods:falling_block/l6/l6_37 2 | execute if score block bsc matches 3353..3370 run function cw_serial_mods:falling_block/l6/l6_38 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_20.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3371..3474 run function cw_serial_mods:falling_block/l6/l6_39 2 | execute if score block bsc matches 3475..3634 run function cw_serial_mods:falling_block/l6/l6_40 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_21.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3635..3740 run function cw_serial_mods:falling_block/l6/l6_41 2 | execute if score block bsc matches 3741..3772 run function cw_serial_mods:falling_block/l6/l6_42 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_22.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3773..3870 run function cw_serial_mods:falling_block/l6/l6_43 2 | execute if score block bsc matches 3871..3878 run function cw_serial_mods:falling_block/l6/l6_44 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_23.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3879..3886 run function cw_serial_mods:falling_block/l6/l6_45 2 | execute if score block bsc matches 3887..3927 run function cw_serial_mods:falling_block/l6/l6_46 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_24.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3928..3961 run function cw_serial_mods:falling_block/l6/l6_47 2 | execute if score block bsc matches 3962..3997 run function cw_serial_mods:falling_block/l6/l6_48 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_25.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3998..4005 run function cw_serial_mods:falling_block/l6/l6_49 2 | execute if score block bsc matches 4006..4081 run function cw_serial_mods:falling_block/l6/l6_50 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_26.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4082..4085 run function cw_serial_mods:falling_block/l6/l6_51 2 | execute if score block bsc matches 4086..4089 run function cw_serial_mods:falling_block/l6/l6_52 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_27.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4090..4093 run function cw_serial_mods:falling_block/l6/l6_53 2 | execute if score block bsc matches 4094..4160 run function cw_serial_mods:falling_block/l6/l6_54 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_28.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4161..4416 run function cw_serial_mods:falling_block/l6/l6_55 2 | execute if score block bsc matches 4417..4483 run function cw_serial_mods:falling_block/l6/l6_56 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_29.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4484..4487 run function cw_serial_mods:falling_block/l6/l6_57 2 | execute if score block bsc matches 4488..4554 run function cw_serial_mods:falling_block/l6/l6_58 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_30.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4555..4746 run function cw_serial_mods:falling_block/l6/l6_59 2 | execute if score block bsc matches 4747..4763 run function cw_serial_mods:falling_block/l6/l6_60 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_31.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4764..4915 run function cw_serial_mods:falling_block/l6/l6_61 2 | execute if score block bsc matches 4916..4999 run function cw_serial_mods:falling_block/l6/l6_62 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_32.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5000..5116 run function cw_serial_mods:falling_block/l6/l6_63 2 | execute if score block bsc matches 5117..5137 run function cw_serial_mods:falling_block/l6/l6_64 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_33.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5138..5153 run function cw_serial_mods:falling_block/l6/l6_65 2 | execute if score block bsc matches 5154..5258 run function cw_serial_mods:falling_block/l6/l6_66 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_34.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5259..5547 run function cw_serial_mods:falling_block/l6/l6_67 2 | execute if score block bsc matches 5548..5704 run function cw_serial_mods:falling_block/l6/l6_68 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_35.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5705..5771 run function cw_serial_mods:falling_block/l6/l6_69 2 | execute if score block bsc matches 5772..5775 run function cw_serial_mods:falling_block/l6/l6_70 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_36.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5776..5779 run function cw_serial_mods:falling_block/l6/l6_71 2 | execute if score block bsc matches 5780..5783 run function cw_serial_mods:falling_block/l6/l6_72 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_37.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5784..5787 run function cw_serial_mods:falling_block/l6/l6_73 2 | execute if score block bsc matches 5788..5791 run function cw_serial_mods:falling_block/l6/l6_74 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_38.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5792..5809 run function cw_serial_mods:falling_block/l6/l6_75 2 | execute if score block bsc matches 5810..5905 run function cw_serial_mods:falling_block/l6/l6_76 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_39.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5906..5973 run function cw_serial_mods:falling_block/l6/l6_77 2 | execute if score block bsc matches 5974..6013 run function cw_serial_mods:falling_block/l6/l6_78 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_40.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6014..6053 run function cw_serial_mods:falling_block/l6/l6_79 2 | execute if score block bsc matches 6054..6081 run function cw_serial_mods:falling_block/l6/l6_80 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_41.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6082..6141 run function cw_serial_mods:falling_block/l6/l6_81 2 | execute if score block bsc matches 6142..6191 run function cw_serial_mods:falling_block/l6/l6_82 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_42.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6192..6206 run function cw_serial_mods:falling_block/l6/l6_83 2 | execute if score block bsc matches 6207..6311 run function cw_serial_mods:falling_block/l6/l6_84 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_43.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6312..6315 run function cw_serial_mods:falling_block/l6/l6_85 2 | execute if score block bsc matches 6316..6319 run function cw_serial_mods:falling_block/l6/l6_86 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_44.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6320..6323 run function cw_serial_mods:falling_block/l6/l6_87 2 | execute if score block bsc matches 6324..6358 run function cw_serial_mods:falling_block/l6/l6_88 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_45.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6359..6486 run function cw_serial_mods:falling_block/l6/l6_89 2 | execute if score block bsc matches 6487..6614 run function cw_serial_mods:falling_block/l6/l6_90 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_46.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6615..6742 run function cw_serial_mods:falling_block/l6/l6_91 2 | execute if score block bsc matches 6743..6918 run function cw_serial_mods:falling_block/l6/l6_92 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_47.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6919..7064 run function cw_serial_mods:falling_block/l6/l6_93 2 | execute if score block bsc matches 7065..7147 run function cw_serial_mods:falling_block/l6/l6_94 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_48.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7148..7319 run function cw_serial_mods:falling_block/l6/l6_95 2 | execute if score block bsc matches 7320..7330 run function cw_serial_mods:falling_block/l6/l6_96 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_49.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7331..7334 run function cw_serial_mods:falling_block/l6/l6_97 2 | execute if score block bsc matches 7335..7338 run function cw_serial_mods:falling_block/l6/l6_98 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_12.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 102..107 run function cw_serial_mods:falling_block/l7/l7_23 2 | execute if score block bsc matches 108..113 run function cw_serial_mods:falling_block/l7/l7_24 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_13.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 114..119 run function cw_serial_mods:falling_block/l7/l7_25 2 | execute if score block bsc matches 120..125 run function cw_serial_mods:falling_block/l7/l7_26 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_14.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 126..131 run function cw_serial_mods:falling_block/l7/l7_27 2 | execute if score block bsc matches 132..137 run function cw_serial_mods:falling_block/l7/l7_28 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_15.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 138..143 run function cw_serial_mods:falling_block/l7/l7_29 2 | execute if score block bsc matches 144..171 run function cw_serial_mods:falling_block/l7/l7_30 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_16.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 172..199 run function cw_serial_mods:falling_block/l7/l7_31 2 | execute if score block bsc matches 200..227 run function cw_serial_mods:falling_block/l7/l7_32 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_17.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 228..229 run function cw_serial_mods:falling_block/l7/l7_33 2 | execute if score block bsc matches 230..231 run function cw_serial_mods:falling_block/l7/l7_34 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_18.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 232..244 run function cw_serial_mods:falling_block/l7/l7_35 2 | execute if score block bsc matches 245..246 run function cw_serial_mods:falling_block/l7/l7_36 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_19.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 247..1047 run function cw_serial_mods:falling_block/l7/l7_37 2 | execute if score block bsc matches 1048..1079 run function cw_serial_mods:falling_block/l7/l7_38 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_20.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1080..1111 run function cw_serial_mods:falling_block/l7/l7_39 2 | execute if score block bsc matches 1112..1143 run function cw_serial_mods:falling_block/l7/l7_40 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_21.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1144..1175 run function cw_serial_mods:falling_block/l7/l7_41 2 | execute if score block bsc matches 1176..1207 run function cw_serial_mods:falling_block/l7/l7_42 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_22.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1208..1239 run function cw_serial_mods:falling_block/l7/l7_43 2 | execute if score block bsc matches 1240..1271 run function cw_serial_mods:falling_block/l7/l7_44 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_23.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1272..1303 run function cw_serial_mods:falling_block/l7/l7_45 2 | execute if score block bsc matches 1304..1327 run function cw_serial_mods:falling_block/l7/l7_46 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_24.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1328..1340 run function cw_serial_mods:falling_block/l7/l7_47 2 | execute if score block bsc matches 1341..1342 run function cw_serial_mods:falling_block/l7/l7_48 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_25.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1343..1344 run function cw_serial_mods:falling_block/l7/l7_49 2 | execute if score block bsc matches 1345..1358 run function cw_serial_mods:falling_block/l7/l7_50 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_26.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1359..1383 run function cw_serial_mods:falling_block/l7/l7_51 2 | execute if score block bsc matches 1384..1385 run function cw_serial_mods:falling_block/l7/l7_52 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_27.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1386..1387 run function cw_serial_mods:falling_block/l7/l7_53 2 | execute if score block bsc matches 1388..1389 run function cw_serial_mods:falling_block/l7/l7_54 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_28.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1390..1391 run function cw_serial_mods:falling_block/l7/l7_55 2 | execute if score block bsc matches 1392..1393 run function cw_serial_mods:falling_block/l7/l7_56 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_29.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1394..1395 run function cw_serial_mods:falling_block/l7/l7_57 2 | execute if score block bsc matches 1396..1397 run function cw_serial_mods:falling_block/l7/l7_58 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_30.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1398..1410 run function cw_serial_mods:falling_block/l7/l7_59 2 | execute if score block bsc matches 1411..1412 run function cw_serial_mods:falling_block/l7/l7_60 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_31.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1413..1414 run function cw_serial_mods:falling_block/l7/l7_61 2 | execute if score block bsc matches 1415..1416 run function cw_serial_mods:falling_block/l7/l7_62 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_32.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1417..1418 run function cw_serial_mods:falling_block/l7/l7_63 2 | execute if score block bsc matches 1419..1420 run function cw_serial_mods:falling_block/l7/l7_64 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_33.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1421..1422 run function cw_serial_mods:falling_block/l7/l7_65 2 | execute if score block bsc matches 1423..1424 run function cw_serial_mods:falling_block/l7/l7_66 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_34.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1425..1426 run function cw_serial_mods:falling_block/l7/l7_67 2 | execute if score block bsc matches 1427..1428 run function cw_serial_mods:falling_block/l7/l7_68 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_35.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1429..1431 run function cw_serial_mods:falling_block/l7/l7_69 2 | execute if score block bsc matches 1432..1433 run function cw_serial_mods:falling_block/l7/l7_70 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_36.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1434..1438 run function cw_serial_mods:falling_block/l7/l7_71 2 | execute if score block bsc matches 1439..1951 run function cw_serial_mods:falling_block/l7/l7_72 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_37.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1952..2055 run function cw_serial_mods:falling_block/l7/l7_73 2 | execute if score block bsc matches 2056..3352 run function cw_serial_mods:falling_block/l7/l7_74 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_38.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3353..3354 run function cw_serial_mods:falling_block/l7/l7_75 2 | execute if score block bsc matches 3355..3370 run function cw_serial_mods:falling_block/l7/l7_76 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_39.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3371..3410 run function cw_serial_mods:falling_block/l7/l7_77 2 | execute if score block bsc matches 3411..3474 run function cw_serial_mods:falling_block/l7/l7_78 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_40.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3475..3538 run function cw_serial_mods:falling_block/l7/l7_79 2 | execute if score block bsc matches 3539..3634 run function cw_serial_mods:falling_block/l7/l7_80 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_41.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3635..3652 run function cw_serial_mods:falling_block/l7/l7_81 2 | execute if score block bsc matches 3653..3740 run function cw_serial_mods:falling_block/l7/l7_82 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_42.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3741..3756 run function cw_serial_mods:falling_block/l7/l7_83 2 | execute if score block bsc matches 3757..3772 run function cw_serial_mods:falling_block/l7/l7_84 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_43.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3773..3804 run function cw_serial_mods:falling_block/l7/l7_85 2 | execute if score block bsc matches 3805..3870 run function cw_serial_mods:falling_block/l7/l7_86 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_44.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3871..3874 run function cw_serial_mods:falling_block/l7/l7_87 2 | execute if score block bsc matches 3875..3878 run function cw_serial_mods:falling_block/l7/l7_88 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_45.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3879..3882 run function cw_serial_mods:falling_block/l7/l7_89 2 | execute if score block bsc matches 3883..3886 run function cw_serial_mods:falling_block/l7/l7_90 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_46.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3887..3918 run function cw_serial_mods:falling_block/l7/l7_91 2 | execute if score block bsc matches 3919..3927 run function cw_serial_mods:falling_block/l7/l7_92 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_47.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3928..3944 run function cw_serial_mods:falling_block/l7/l7_93 2 | execute if score block bsc matches 3945..3961 run function cw_serial_mods:falling_block/l7/l7_94 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_48.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3962..3995 run function cw_serial_mods:falling_block/l7/l7_95 2 | execute if score block bsc matches 3996..3997 run function cw_serial_mods:falling_block/l7/l7_96 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_49.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3998..3999 run function cw_serial_mods:falling_block/l7/l7_97 2 | execute if score block bsc matches 4000..4005 run function cw_serial_mods:falling_block/l7/l7_98 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_20.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9088..9532 run function cw_serial_mods:falling_block/l4/l4_39 2 | execute if score block bsc matches 9533..10294 run function cw_serial_mods:falling_block/l4/l4_40 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l3/l3_21.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 10295..10970 run function cw_serial_mods:falling_block/l4/l4_41 2 | execute if score block bsc matches 10971..11336 run function cw_serial_mods:falling_block/l4/l4_42 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_40.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9533..10172 run function cw_serial_mods:falling_block/l5/l5_79 2 | execute if score block bsc matches 10173..10294 run function cw_serial_mods:falling_block/l5/l5_80 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_41.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 10295..10458 run function cw_serial_mods:falling_block/l5/l5_81 2 | execute if score block bsc matches 10459..10970 run function cw_serial_mods:falling_block/l5/l5_82 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_50.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7339..7342 run function cw_serial_mods:falling_block/l6/l6_99 2 | execute if score block bsc matches 7343..7346 run function cw_serial_mods:falling_block/l6/l6_100 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_51.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7347..7352 run function cw_serial_mods:falling_block/l6/l6_101 2 | execute if score block bsc matches 7353..7360 run function cw_serial_mods:falling_block/l6/l6_102 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_52.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7361..7424 run function cw_serial_mods:falling_block/l6/l6_103 2 | execute if score block bsc matches 7425..7488 run function cw_serial_mods:falling_block/l6/l6_104 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_53.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7489..7552 run function cw_serial_mods:falling_block/l6/l6_105 2 | execute if score block bsc matches 7553..7616 run function cw_serial_mods:falling_block/l6/l6_106 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_54.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7617..7632 run function cw_serial_mods:falling_block/l6/l6_107 2 | execute if score block bsc matches 7633..7648 run function cw_serial_mods:falling_block/l6/l6_108 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_55.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7649..7664 run function cw_serial_mods:falling_block/l6/l6_109 2 | execute if score block bsc matches 7665..7680 run function cw_serial_mods:falling_block/l6/l6_110 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_56.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7681..7763 run function cw_serial_mods:falling_block/l6/l6_111 2 | execute if score block bsc matches 7764..7787 run function cw_serial_mods:falling_block/l6/l6_112 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_57.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7788..7811 run function cw_serial_mods:falling_block/l6/l6_113 2 | execute if score block bsc matches 7812..7835 run function cw_serial_mods:falling_block/l6/l6_114 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_58.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7836..7859 run function cw_serial_mods:falling_block/l6/l6_115 2 | execute if score block bsc matches 7860..7878 run function cw_serial_mods:falling_block/l6/l6_116 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_59.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7879..7913 run function cw_serial_mods:falling_block/l6/l6_117 2 | execute if score block bsc matches 7914..8041 run function cw_serial_mods:falling_block/l6/l6_118 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_60.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8042..8169 run function cw_serial_mods:falling_block/l6/l6_119 2 | execute if score block bsc matches 8170..8393 run function cw_serial_mods:falling_block/l6/l6_120 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_61.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8394..8591 run function cw_serial_mods:falling_block/l6/l6_121 2 | execute if score block bsc matches 8592..8681 run function cw_serial_mods:falling_block/l6/l6_122 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_62.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8682..8688 run function cw_serial_mods:falling_block/l6/l6_123 2 | execute if score block bsc matches 8689..8717 run function cw_serial_mods:falling_block/l6/l6_124 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_63.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8718..8723 run function cw_serial_mods:falling_block/l6/l6_125 2 | execute if score block bsc matches 8724..8753 run function cw_serial_mods:falling_block/l6/l6_126 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_64.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8754..8777 run function cw_serial_mods:falling_block/l6/l6_127 2 | execute if score block bsc matches 8778..8801 run function cw_serial_mods:falling_block/l6/l6_128 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_65.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8802..8825 run function cw_serial_mods:falling_block/l6/l6_129 2 | execute if score block bsc matches 8826..8845 run function cw_serial_mods:falling_block/l6/l6_130 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_66.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8846..8861 run function cw_serial_mods:falling_block/l6/l6_131 2 | execute if score block bsc matches 8862..8877 run function cw_serial_mods:falling_block/l6/l6_132 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_67.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8878..8893 run function cw_serial_mods:falling_block/l6/l6_133 2 | execute if score block bsc matches 8894..8903 run function cw_serial_mods:falling_block/l6/l6_134 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_68.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8904..8907 run function cw_serial_mods:falling_block/l6/l6_135 2 | execute if score block bsc matches 8908..8911 run function cw_serial_mods:falling_block/l6/l6_136 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_69.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8912..8915 run function cw_serial_mods:falling_block/l6/l6_137 2 | execute if score block bsc matches 8916..8919 run function cw_serial_mods:falling_block/l6/l6_138 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_70.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8920..8923 run function cw_serial_mods:falling_block/l6/l6_139 2 | execute if score block bsc matches 8924..8927 run function cw_serial_mods:falling_block/l6/l6_140 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_71.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8928..8931 run function cw_serial_mods:falling_block/l6/l6_141 2 | execute if score block bsc matches 8932..8960 run function cw_serial_mods:falling_block/l6/l6_142 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_72.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8961..8975 run function cw_serial_mods:falling_block/l6/l6_143 2 | execute if score block bsc matches 8976..8979 run function cw_serial_mods:falling_block/l6/l6_144 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_73.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8980..8983 run function cw_serial_mods:falling_block/l6/l6_145 2 | execute if score block bsc matches 8984..8991 run function cw_serial_mods:falling_block/l6/l6_146 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_74.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8992..8999 run function cw_serial_mods:falling_block/l6/l6_147 2 | execute if score block bsc matches 9000..9007 run function cw_serial_mods:falling_block/l6/l6_148 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_75.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9008..9015 run function cw_serial_mods:falling_block/l6/l6_149 2 | execute if score block bsc matches 9016..9023 run function cw_serial_mods:falling_block/l6/l6_150 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_76.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9024..9055 run function cw_serial_mods:falling_block/l6/l6_151 2 | execute if score block bsc matches 9056..9087 run function cw_serial_mods:falling_block/l6/l6_152 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_77.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9088..9112 run function cw_serial_mods:falling_block/l6/l6_153 2 | execute if score block bsc matches 9113..9128 run function cw_serial_mods:falling_block/l6/l6_154 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_78.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9129..9212 run function cw_serial_mods:falling_block/l6/l6_155 2 | execute if score block bsc matches 9213..9532 run function cw_serial_mods:falling_block/l6/l6_156 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_79.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9533..9852 run function cw_serial_mods:falling_block/l6/l6_157 2 | execute if score block bsc matches 9853..10172 run function cw_serial_mods:falling_block/l6/l6_158 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_100.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7343..7344 run function cw_serial_mods:falling_block/l7/l7_199 2 | execute if score block bsc matches 7345..7346 run function cw_serial_mods:falling_block/l7/l7_200 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_101.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7347..7348 run function cw_serial_mods:falling_block/l7/l7_201 2 | execute if score block bsc matches 7349..7352 run function cw_serial_mods:falling_block/l7/l7_202 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_102.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7353..7356 run function cw_serial_mods:falling_block/l7/l7_203 2 | execute if score block bsc matches 7357..7360 run function cw_serial_mods:falling_block/l7/l7_204 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_103.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7361..7392 run function cw_serial_mods:falling_block/l7/l7_205 2 | execute if score block bsc matches 7393..7424 run function cw_serial_mods:falling_block/l7/l7_206 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_104.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7425..7456 run function cw_serial_mods:falling_block/l7/l7_207 2 | execute if score block bsc matches 7457..7488 run function cw_serial_mods:falling_block/l7/l7_208 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_105.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7489..7520 run function cw_serial_mods:falling_block/l7/l7_209 2 | execute if score block bsc matches 7521..7552 run function cw_serial_mods:falling_block/l7/l7_210 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_106.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7553..7584 run function cw_serial_mods:falling_block/l7/l7_211 2 | execute if score block bsc matches 7585..7616 run function cw_serial_mods:falling_block/l7/l7_212 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_107.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7617..7624 run function cw_serial_mods:falling_block/l7/l7_213 2 | execute if score block bsc matches 7625..7632 run function cw_serial_mods:falling_block/l7/l7_214 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_108.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7633..7640 run function cw_serial_mods:falling_block/l7/l7_215 2 | execute if score block bsc matches 7641..7648 run function cw_serial_mods:falling_block/l7/l7_216 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_109.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7649..7656 run function cw_serial_mods:falling_block/l7/l7_217 2 | execute if score block bsc matches 7657..7664 run function cw_serial_mods:falling_block/l7/l7_218 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_110.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7665..7672 run function cw_serial_mods:falling_block/l7/l7_219 2 | execute if score block bsc matches 7673..7680 run function cw_serial_mods:falling_block/l7/l7_220 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_111.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7681..7682 run function cw_serial_mods:falling_block/l7/l7_221 2 | execute if score block bsc matches 7683..7763 run function cw_serial_mods:falling_block/l7/l7_222 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_112.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7764..7775 run function cw_serial_mods:falling_block/l7/l7_223 2 | execute if score block bsc matches 7776..7787 run function cw_serial_mods:falling_block/l7/l7_224 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_113.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7788..7799 run function cw_serial_mods:falling_block/l7/l7_225 2 | execute if score block bsc matches 7800..7811 run function cw_serial_mods:falling_block/l7/l7_226 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_114.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7812..7823 run function cw_serial_mods:falling_block/l7/l7_227 2 | execute if score block bsc matches 7824..7835 run function cw_serial_mods:falling_block/l7/l7_228 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_115.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7836..7847 run function cw_serial_mods:falling_block/l7/l7_229 2 | execute if score block bsc matches 7848..7859 run function cw_serial_mods:falling_block/l7/l7_230 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_116.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7860..7871 run function cw_serial_mods:falling_block/l7/l7_231 2 | execute if score block bsc matches 7872..7878 run function cw_serial_mods:falling_block/l7/l7_232 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_117.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7879..7880 run function cw_serial_mods:falling_block/l7/l7_233 2 | execute if score block bsc matches 7881..7913 run function cw_serial_mods:falling_block/l7/l7_234 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_118.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7914..7977 run function cw_serial_mods:falling_block/l7/l7_235 2 | execute if score block bsc matches 7978..8041 run function cw_serial_mods:falling_block/l7/l7_236 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_119.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8042..8105 run function cw_serial_mods:falling_block/l7/l7_237 2 | execute if score block bsc matches 8106..8169 run function cw_serial_mods:falling_block/l7/l7_238 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_120.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8170..8265 run function cw_serial_mods:falling_block/l7/l7_239 2 | execute if score block bsc matches 8266..8393 run function cw_serial_mods:falling_block/l7/l7_240 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_121.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8394..8521 run function cw_serial_mods:falling_block/l7/l7_241 2 | execute if score block bsc matches 8522..8591 run function cw_serial_mods:falling_block/l7/l7_242 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_122.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8592..8598 run function cw_serial_mods:falling_block/l7/l7_243 2 | execute if score block bsc matches 8599..8681 run function cw_serial_mods:falling_block/l7/l7_244 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_123.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8682..8686 run function cw_serial_mods:falling_block/l7/l7_245 2 | execute if score block bsc matches 8687..8688 run function cw_serial_mods:falling_block/l7/l7_246 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_124.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8689..8712 run function cw_serial_mods:falling_block/l7/l7_247 2 | execute if score block bsc matches 8713..8717 run function cw_serial_mods:falling_block/l7/l7_248 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_125.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8718..8719 run function cw_serial_mods:falling_block/l7/l7_249 2 | execute if score block bsc matches 8720..8723 run function cw_serial_mods:falling_block/l7/l7_250 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_126.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8724..8741 run function cw_serial_mods:falling_block/l7/l7_251 2 | execute if score block bsc matches 8742..8753 run function cw_serial_mods:falling_block/l7/l7_252 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_127.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8754..8765 run function cw_serial_mods:falling_block/l7/l7_253 2 | execute if score block bsc matches 8766..8777 run function cw_serial_mods:falling_block/l7/l7_254 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_128.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8778..8789 run function cw_serial_mods:falling_block/l7/l7_255 2 | execute if score block bsc matches 8790..8801 run function cw_serial_mods:falling_block/l7/l7_256 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_129.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8802..8813 run function cw_serial_mods:falling_block/l7/l7_257 2 | execute if score block bsc matches 8814..8825 run function cw_serial_mods:falling_block/l7/l7_258 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_130.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8826..8837 run function cw_serial_mods:falling_block/l7/l7_259 2 | execute if score block bsc matches 8838..8845 run function cw_serial_mods:falling_block/l7/l7_260 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_131.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8846..8853 run function cw_serial_mods:falling_block/l7/l7_261 2 | execute if score block bsc matches 8854..8861 run function cw_serial_mods:falling_block/l7/l7_262 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_132.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8862..8869 run function cw_serial_mods:falling_block/l7/l7_263 2 | execute if score block bsc matches 8870..8877 run function cw_serial_mods:falling_block/l7/l7_264 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_133.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8878..8885 run function cw_serial_mods:falling_block/l7/l7_265 2 | execute if score block bsc matches 8886..8893 run function cw_serial_mods:falling_block/l7/l7_266 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_134.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8894..8901 run function cw_serial_mods:falling_block/l7/l7_267 2 | execute if score block bsc matches 8902..8903 run function cw_serial_mods:falling_block/l7/l7_268 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_135.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8904..8905 run function cw_serial_mods:falling_block/l7/l7_269 2 | execute if score block bsc matches 8906..8907 run function cw_serial_mods:falling_block/l7/l7_270 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_136.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8908..8909 run function cw_serial_mods:falling_block/l7/l7_271 2 | execute if score block bsc matches 8910..8911 run function cw_serial_mods:falling_block/l7/l7_272 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_137.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8912..8913 run function cw_serial_mods:falling_block/l7/l7_273 2 | execute if score block bsc matches 8914..8915 run function cw_serial_mods:falling_block/l7/l7_274 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_138.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8916..8917 run function cw_serial_mods:falling_block/l7/l7_275 2 | execute if score block bsc matches 8918..8919 run function cw_serial_mods:falling_block/l7/l7_276 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_139.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8920..8921 run function cw_serial_mods:falling_block/l7/l7_277 2 | execute if score block bsc matches 8922..8923 run function cw_serial_mods:falling_block/l7/l7_278 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_140.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8924..8925 run function cw_serial_mods:falling_block/l7/l7_279 2 | execute if score block bsc matches 8926..8927 run function cw_serial_mods:falling_block/l7/l7_280 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_141.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8928..8929 run function cw_serial_mods:falling_block/l7/l7_281 2 | execute if score block bsc matches 8930..8931 run function cw_serial_mods:falling_block/l7/l7_282 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_142.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8932..8933 run function cw_serial_mods:falling_block/l7/l7_283 2 | execute if score block bsc matches 8934..8960 run function cw_serial_mods:falling_block/l7/l7_284 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_143.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8961..8973 run function cw_serial_mods:falling_block/l7/l7_285 2 | execute if score block bsc matches 8974..8975 run function cw_serial_mods:falling_block/l7/l7_286 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_144.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8976..8977 run function cw_serial_mods:falling_block/l7/l7_287 2 | execute if score block bsc matches 8978..8979 run function cw_serial_mods:falling_block/l7/l7_288 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_145.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8980..8981 run function cw_serial_mods:falling_block/l7/l7_289 2 | execute if score block bsc matches 8982..8983 run function cw_serial_mods:falling_block/l7/l7_290 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_146.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8984..8987 run function cw_serial_mods:falling_block/l7/l7_291 2 | execute if score block bsc matches 8988..8991 run function cw_serial_mods:falling_block/l7/l7_292 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_147.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8992..8995 run function cw_serial_mods:falling_block/l7/l7_293 2 | execute if score block bsc matches 8996..8999 run function cw_serial_mods:falling_block/l7/l7_294 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_148.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9000..9003 run function cw_serial_mods:falling_block/l7/l7_295 2 | execute if score block bsc matches 9004..9007 run function cw_serial_mods:falling_block/l7/l7_296 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_149.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9008..9011 run function cw_serial_mods:falling_block/l7/l7_297 2 | execute if score block bsc matches 9012..9015 run function cw_serial_mods:falling_block/l7/l7_298 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_150.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9016..9019 run function cw_serial_mods:falling_block/l7/l7_299 2 | execute if score block bsc matches 9020..9023 run function cw_serial_mods:falling_block/l7/l7_300 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_151.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9024..9039 run function cw_serial_mods:falling_block/l7/l7_301 2 | execute if score block bsc matches 9040..9055 run function cw_serial_mods:falling_block/l7/l7_302 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_152.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9056..9071 run function cw_serial_mods:falling_block/l7/l7_303 2 | execute if score block bsc matches 9072..9087 run function cw_serial_mods:falling_block/l7/l7_304 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_153.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9088..9103 run function cw_serial_mods:falling_block/l7/l7_305 2 | execute if score block bsc matches 9104..9112 run function cw_serial_mods:falling_block/l7/l7_306 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_154.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9113..9115 run function cw_serial_mods:falling_block/l7/l7_307 2 | execute if score block bsc matches 9116..9128 run function cw_serial_mods:falling_block/l7/l7_308 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_155.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9129..9130 run function cw_serial_mods:falling_block/l7/l7_309 2 | execute if score block bsc matches 9131..9212 run function cw_serial_mods:falling_block/l7/l7_310 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_156.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9213..9372 run function cw_serial_mods:falling_block/l7/l7_311 2 | execute if score block bsc matches 9373..9532 run function cw_serial_mods:falling_block/l7/l7_312 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_157.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9533..9692 run function cw_serial_mods:falling_block/l7/l7_313 2 | execute if score block bsc matches 9693..9852 run function cw_serial_mods:falling_block/l7/l7_314 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_50.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4006..4016 run function cw_serial_mods:falling_block/l7/l7_99 2 | execute if score block bsc matches 4017..4081 run function cw_serial_mods:falling_block/l7/l7_100 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_51.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4082..4083 run function cw_serial_mods:falling_block/l7/l7_101 2 | execute if score block bsc matches 4084..4085 run function cw_serial_mods:falling_block/l7/l7_102 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_52.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4086..4087 run function cw_serial_mods:falling_block/l7/l7_103 2 | execute if score block bsc matches 4088..4089 run function cw_serial_mods:falling_block/l7/l7_104 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_53.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4090..4091 run function cw_serial_mods:falling_block/l7/l7_105 2 | execute if score block bsc matches 4092..4093 run function cw_serial_mods:falling_block/l7/l7_106 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_54.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4094..4095 run function cw_serial_mods:falling_block/l7/l7_107 2 | execute if score block bsc matches 4096..4160 run function cw_serial_mods:falling_block/l7/l7_108 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_55.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4161..4288 run function cw_serial_mods:falling_block/l7/l7_109 2 | execute if score block bsc matches 4289..4416 run function cw_serial_mods:falling_block/l7/l7_110 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_56.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4417..4481 run function cw_serial_mods:falling_block/l7/l7_111 2 | execute if score block bsc matches 4482..4483 run function cw_serial_mods:falling_block/l7/l7_112 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_57.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4484..4485 run function cw_serial_mods:falling_block/l7/l7_113 2 | execute if score block bsc matches 4486..4487 run function cw_serial_mods:falling_block/l7/l7_114 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_58.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4488..4489 run function cw_serial_mods:falling_block/l7/l7_115 2 | execute if score block bsc matches 4490..4554 run function cw_serial_mods:falling_block/l7/l7_116 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_59.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4555..4682 run function cw_serial_mods:falling_block/l7/l7_117 2 | execute if score block bsc matches 4683..4746 run function cw_serial_mods:falling_block/l7/l7_118 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_60.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4747..4751 run function cw_serial_mods:falling_block/l7/l7_119 2 | execute if score block bsc matches 4752..4763 run function cw_serial_mods:falling_block/l7/l7_120 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_61.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4764..4803 run function cw_serial_mods:falling_block/l7/l7_121 2 | execute if score block bsc matches 4804..4915 run function cw_serial_mods:falling_block/l7/l7_122 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_62.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4916..4997 run function cw_serial_mods:falling_block/l7/l7_123 2 | execute if score block bsc matches 4998..4999 run function cw_serial_mods:falling_block/l7/l7_124 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_63.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5000..5111 run function cw_serial_mods:falling_block/l7/l7_125 2 | execute if score block bsc matches 5112..5116 run function cw_serial_mods:falling_block/l7/l7_126 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_64.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5117..5128 run function cw_serial_mods:falling_block/l7/l7_127 2 | execute if score block bsc matches 5129..5137 run function cw_serial_mods:falling_block/l7/l7_128 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_65.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5138..5139 run function cw_serial_mods:falling_block/l7/l7_129 2 | execute if score block bsc matches 5140..5153 run function cw_serial_mods:falling_block/l7/l7_130 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_66.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5154..5234 run function cw_serial_mods:falling_block/l7/l7_131 2 | execute if score block bsc matches 5235..5258 run function cw_serial_mods:falling_block/l7/l7_132 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_67.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5259..5387 run function cw_serial_mods:falling_block/l7/l7_133 2 | execute if score block bsc matches 5388..5547 run function cw_serial_mods:falling_block/l7/l7_134 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_68.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5548..5639 run function cw_serial_mods:falling_block/l7/l7_135 2 | execute if score block bsc matches 5640..5704 run function cw_serial_mods:falling_block/l7/l7_136 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_69.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5705..5769 run function cw_serial_mods:falling_block/l7/l7_137 2 | execute if score block bsc matches 5770..5771 run function cw_serial_mods:falling_block/l7/l7_138 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_70.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5772..5773 run function cw_serial_mods:falling_block/l7/l7_139 2 | execute if score block bsc matches 5774..5775 run function cw_serial_mods:falling_block/l7/l7_140 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_71.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5776..5777 run function cw_serial_mods:falling_block/l7/l7_141 2 | execute if score block bsc matches 5778..5779 run function cw_serial_mods:falling_block/l7/l7_142 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_72.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5780..5781 run function cw_serial_mods:falling_block/l7/l7_143 2 | execute if score block bsc matches 5782..5783 run function cw_serial_mods:falling_block/l7/l7_144 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_73.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5784..5785 run function cw_serial_mods:falling_block/l7/l7_145 2 | execute if score block bsc matches 5786..5787 run function cw_serial_mods:falling_block/l7/l7_146 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_74.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5788..5789 run function cw_serial_mods:falling_block/l7/l7_147 2 | execute if score block bsc matches 5790..5791 run function cw_serial_mods:falling_block/l7/l7_148 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_75.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5792..5793 run function cw_serial_mods:falling_block/l7/l7_149 2 | execute if score block bsc matches 5794..5809 run function cw_serial_mods:falling_block/l7/l7_150 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_76.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5810..5857 run function cw_serial_mods:falling_block/l7/l7_151 2 | execute if score block bsc matches 5858..5905 run function cw_serial_mods:falling_block/l7/l7_152 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_77.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5906..5953 run function cw_serial_mods:falling_block/l7/l7_153 2 | execute if score block bsc matches 5954..5973 run function cw_serial_mods:falling_block/l7/l7_154 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_78.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5974..5993 run function cw_serial_mods:falling_block/l7/l7_155 2 | execute if score block bsc matches 5994..6013 run function cw_serial_mods:falling_block/l7/l7_156 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_79.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6014..6033 run function cw_serial_mods:falling_block/l7/l7_157 2 | execute if score block bsc matches 6034..6053 run function cw_serial_mods:falling_block/l7/l7_158 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_80.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6054..6073 run function cw_serial_mods:falling_block/l7/l7_159 2 | execute if score block bsc matches 6074..6081 run function cw_serial_mods:falling_block/l7/l7_160 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_81.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6082..6109 run function cw_serial_mods:falling_block/l7/l7_161 2 | execute if score block bsc matches 6110..6141 run function cw_serial_mods:falling_block/l7/l7_162 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_82.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6142..6189 run function cw_serial_mods:falling_block/l7/l7_163 2 | execute if score block bsc matches 6190..6191 run function cw_serial_mods:falling_block/l7/l7_164 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_83.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6192..6202 run function cw_serial_mods:falling_block/l7/l7_165 2 | execute if score block bsc matches 6203..6206 run function cw_serial_mods:falling_block/l7/l7_166 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_84.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6207..6298 run function cw_serial_mods:falling_block/l7/l7_167 2 | execute if score block bsc matches 6299..6311 run function cw_serial_mods:falling_block/l7/l7_168 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_85.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6312..6313 run function cw_serial_mods:falling_block/l7/l7_169 2 | execute if score block bsc matches 6314..6315 run function cw_serial_mods:falling_block/l7/l7_170 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_86.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6316..6317 run function cw_serial_mods:falling_block/l7/l7_171 2 | execute if score block bsc matches 6318..6319 run function cw_serial_mods:falling_block/l7/l7_172 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_87.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6320..6321 run function cw_serial_mods:falling_block/l7/l7_173 2 | execute if score block bsc matches 6322..6323 run function cw_serial_mods:falling_block/l7/l7_174 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_88.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6324..6325 run function cw_serial_mods:falling_block/l7/l7_175 2 | execute if score block bsc matches 6326..6358 run function cw_serial_mods:falling_block/l7/l7_176 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_89.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6359..6422 run function cw_serial_mods:falling_block/l7/l7_177 2 | execute if score block bsc matches 6423..6486 run function cw_serial_mods:falling_block/l7/l7_178 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_90.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6487..6550 run function cw_serial_mods:falling_block/l7/l7_179 2 | execute if score block bsc matches 6551..6614 run function cw_serial_mods:falling_block/l7/l7_180 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_91.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6615..6678 run function cw_serial_mods:falling_block/l7/l7_181 2 | execute if score block bsc matches 6679..6742 run function cw_serial_mods:falling_block/l7/l7_182 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_92.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6743..6806 run function cw_serial_mods:falling_block/l7/l7_183 2 | execute if score block bsc matches 6807..6918 run function cw_serial_mods:falling_block/l7/l7_184 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_93.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6919..6999 run function cw_serial_mods:falling_block/l7/l7_185 2 | execute if score block bsc matches 7000..7064 run function cw_serial_mods:falling_block/l7/l7_186 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_94.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7065..7066 run function cw_serial_mods:falling_block/l7/l7_187 2 | execute if score block bsc matches 7067..7147 run function cw_serial_mods:falling_block/l7/l7_188 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_95.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7148..7307 run function cw_serial_mods:falling_block/l7/l7_189 2 | execute if score block bsc matches 7308..7319 run function cw_serial_mods:falling_block/l7/l7_190 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_96.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7320..7326 run function cw_serial_mods:falling_block/l7/l7_191 2 | execute if score block bsc matches 7327..7330 run function cw_serial_mods:falling_block/l7/l7_192 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_97.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7331..7332 run function cw_serial_mods:falling_block/l7/l7_193 2 | execute if score block bsc matches 7333..7334 run function cw_serial_mods:falling_block/l7/l7_194 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_98.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7335..7336 run function cw_serial_mods:falling_block/l7/l7_195 2 | execute if score block bsc matches 7337..7338 run function cw_serial_mods:falling_block/l7/l7_196 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_99.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7339..7340 run function cw_serial_mods:falling_block/l7/l7_197 2 | execute if score block bsc matches 7341..7342 run function cw_serial_mods:falling_block/l7/l7_198 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_80.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 10173..10270 run function cw_serial_mods:falling_block/l6/l6_159 2 | execute if score block bsc matches 10271..10294 run function cw_serial_mods:falling_block/l6/l6_160 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_81.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 10295..10318 run function cw_serial_mods:falling_block/l6/l6_161 2 | execute if score block bsc matches 10319..10458 run function cw_serial_mods:falling_block/l6/l6_162 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_82.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 10459..10714 run function cw_serial_mods:falling_block/l6/l6_163 2 | execute if score block bsc matches 10715..10970 run function cw_serial_mods:falling_block/l6/l6_164 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_83.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 10971..11134 run function cw_serial_mods:falling_block/l6/l6_165 2 | execute if score block bsc matches 11135..11163 run function cw_serial_mods:falling_block/l6/l6_166 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_84.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 11164..11193 run function cw_serial_mods:falling_block/l6/l6_167 2 | execute if score block bsc matches 11194..11263 run function cw_serial_mods:falling_block/l6/l6_168 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l5/l5_85.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 11264..11286 run function cw_serial_mods:falling_block/l6/l6_169 2 | execute if score block bsc matches 11287..11336 run function cw_serial_mods:falling_block/l6/l6_170 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_158.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9853..10012 run function cw_serial_mods:falling_block/l7/l7_315 2 | execute if score block bsc matches 10013..10172 run function cw_serial_mods:falling_block/l7/l7_316 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_159.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 10173..10258 run function cw_serial_mods:falling_block/l7/l7_317 2 | execute if score block bsc matches 10259..10270 run function cw_serial_mods:falling_block/l7/l7_318 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_160.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 10271..10282 run function cw_serial_mods:falling_block/l7/l7_319 2 | execute if score block bsc matches 10283..10294 run function cw_serial_mods:falling_block/l7/l7_320 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_161.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 10295..10306 run function cw_serial_mods:falling_block/l7/l7_321 2 | execute if score block bsc matches 10307..10318 run function cw_serial_mods:falling_block/l7/l7_322 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_162.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 10319..10330 run function cw_serial_mods:falling_block/l7/l7_323 2 | execute if score block bsc matches 10331..10458 run function cw_serial_mods:falling_block/l7/l7_324 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_163.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 10459..10586 run function cw_serial_mods:falling_block/l7/l7_325 2 | execute if score block bsc matches 10587..10714 run function cw_serial_mods:falling_block/l7/l7_326 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_164.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 10715..10842 run function cw_serial_mods:falling_block/l7/l7_327 2 | execute if score block bsc matches 10843..10970 run function cw_serial_mods:falling_block/l7/l7_328 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_165.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 10971..11098 run function cw_serial_mods:falling_block/l7/l7_329 2 | execute if score block bsc matches 11099..11134 run function cw_serial_mods:falling_block/l7/l7_330 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_166.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 11135..11154 run function cw_serial_mods:falling_block/l7/l7_331 2 | execute if score block bsc matches 11155..11163 run function cw_serial_mods:falling_block/l7/l7_332 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_167.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 11164..11176 run function cw_serial_mods:falling_block/l7/l7_333 2 | execute if score block bsc matches 11177..11193 run function cw_serial_mods:falling_block/l7/l7_334 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_168.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 11194..11229 run function cw_serial_mods:falling_block/l7/l7_335 2 | execute if score block bsc matches 11230..11263 run function cw_serial_mods:falling_block/l7/l7_336 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_169.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 11264..11271 run function cw_serial_mods:falling_block/l7/l7_337 2 | execute if score block bsc matches 11272..11286 run function cw_serial_mods:falling_block/l7/l7_338 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l6/l6_170.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 11287..11334 run function cw_serial_mods:falling_block/l7/l7_339 2 | execute if score block bsc matches 11335..11336 run function cw_serial_mods:falling_block/l7/l7_340 3 | -------------------------------------------------------------------------------- /wall_phasing/data/glowing_ii/functions/repel.mcfunction: -------------------------------------------------------------------------------- 1 | tag @s add repulsor 2 | execute as @e[tag=!can_phase,tag=!repulsor,tag=!phased_block,distance=..1] at @e[tag=repulsor,limit=1] facing entity @s eyes rotated ~ 0 positioned ^ ^ ^1 rotated as @s run tp ~ ~ ~ 3 | tag @s remove repulsor -------------------------------------------------------------------------------- /blazes_touch_final/data/ce_blazes_touch/tags/items/can_enchant.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:wooden_pickaxe", 5 | "minecraft:stone_pickaxe", 6 | "minecraft:diamond_pickaxe", 7 | "minecraft:golden_pickaxe", 8 | "minecraft:netherite_pickaxe" 9 | ] 10 | } -------------------------------------------------------------------------------- /crouch_to_place/data/crouch_place/functions/scoreboard_check.mcfunction: -------------------------------------------------------------------------------- 1 | execute at @a run fill ~-5 ~-5 ~-5 ~5 ~5 ~5 minecraft:air replace minecraft:structure_void 2 | execute as @a[scores={sneaking=1..}] positioned as @s rotated as @s run function crouch_place:choose_position 3 | scoreboard players reset @a sneaking -------------------------------------------------------------------------------- /entity_grabber/data/grabber/functions/create_scoreboards.mcfunction: -------------------------------------------------------------------------------- 1 | # Track COS use 2 | scoreboard objectives add used_cos minecraft.used:minecraft.carrot_on_a_stick 3 | 4 | tag @e remove grabbed 5 | tag @a remove grabber_0 6 | tag @a remove grabber_1 7 | tag @a remove grabber_2 8 | 9 | tag @a add grabber_0 -------------------------------------------------------------------------------- /custom_enchanting/data/custom_enchanting/functions/kill_entities.mcfunction: -------------------------------------------------------------------------------- 1 | # Kill all the frames, kill the AEC, and make a deactivation sound 2 | execute as @e[type=item_frame,tag=enchanting_slot,distance=..1] at @s run function custom_enchanting:frame_drop_item 3 | playsound minecraft:block.beacon.deactivate master @a[distance=..10] ~ ~ ~ 2 1 4 | kill @s -------------------------------------------------------------------------------- /rabbit_leap/data/ce_rabbit_leap_i/tags/items/can_enchant.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:leather_leggings", 5 | "minecraft:chainmail_leggings", 6 | "minecraft:iron_leggings", 7 | "minecraft:diamond_leggings", 8 | "minecraft:golden_leggings", 9 | "minecraft:netherite_leggings" 10 | ] 11 | } -------------------------------------------------------------------------------- /rabbit_leap/data/ce_rabbit_leap_ii/tags/items/can_enchant.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:leather_leggings", 5 | "minecraft:chainmail_leggings", 6 | "minecraft:iron_leggings", 7 | "minecraft:diamond_leggings", 8 | "minecraft:golden_leggings", 9 | "minecraft:netherite_leggings" 10 | ] 11 | } -------------------------------------------------------------------------------- /rabbit_leap/data/ce_rabbit_leap_iii/tags/items/can_enchant.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:leather_leggings", 5 | "minecraft:chainmail_leggings", 6 | "minecraft:iron_leggings", 7 | "minecraft:diamond_leggings", 8 | "minecraft:golden_leggings", 9 | "minecraft:netherite_leggings" 10 | ] 11 | } -------------------------------------------------------------------------------- /enders_reach/data/ce_enders_reach/tags/items/can_enchant.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:leather_chestplate", 5 | "minecraft:chainmail_chestplate", 6 | "minecraft:iron_chestplate", 7 | "minecraft:golden_chestplate", 8 | "minecraft:diamond_chestplate", 9 | "minecraft:netherite_chestplate" 10 | ] 11 | } -------------------------------------------------------------------------------- /BLANK_ENCHANTMENT/data/ce_ENCHANT_NAME/tags/items/can_enchant.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:leather_chestplate", 5 | "minecraft:chainmail_chestplate", 6 | "minecraft:iron_chestplate", 7 | "minecraft:golden_chestplate", 8 | "minecraft:diamond_chestplate", 9 | "minecraft:netherite_chestplate" 10 | ] 11 | } -------------------------------------------------------------------------------- /wall_phasing/data/custom_brewing/functions/add_ingredient.mcfunction: -------------------------------------------------------------------------------- 1 | replaceitem block ~ ~ ~ container.3 minecraft:chorus_fruit 2 | data modify block ~ ~ ~ Items[{Slot:3b}].Count set from entity @e[type=item,nbt={Item:{id:"minecraft:chorus_fruit"}},sort=nearest,limit=1] Item.Count 3 | tag @e[type=item,nbt={Item:{id:"minecraft:chorus_fruit"}},sort=nearest,limit=1] add used -------------------------------------------------------------------------------- /enders_reach/data/ce_enders_reach/predicates/contains_enchantable.json: -------------------------------------------------------------------------------- 1 | { 2 | "condition": "minecraft:entity_properties", 3 | "entity":"this", 4 | "predicate": 5 | { 6 | "equipment": 7 | { 8 | "mainhand": 9 | { 10 | "tag":"ce_enders_reach:can_enchant" 11 | } 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /tp_trident/data/ce_teleportation/predicates/contains_enchantable.json: -------------------------------------------------------------------------------- 1 | { 2 | "condition": "minecraft:entity_properties", 3 | "entity":"this", 4 | "predicate": 5 | { 6 | "equipment": 7 | { 8 | "mainhand": 9 | { 10 | "tag":"ce_teleportation:can_enchant" 11 | } 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l2/l2_10.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8980..9087 run function cw_serial_mods:falling_block/l3/l3_19 2 | execute if score block bsc matches 9088..10294 run function cw_serial_mods:falling_block/l3/l3_20 3 | execute if score block bsc matches 10295..11336 run function cw_serial_mods:falling_block/l3/l3_21 4 | -------------------------------------------------------------------------------- /blazes_touch_final/data/ce_blazes_touch/predicates/contains_enchantable.json: -------------------------------------------------------------------------------- 1 | { 2 | "condition": "minecraft:entity_properties", 3 | "entity":"this", 4 | "predicate": 5 | { 6 | "equipment": 7 | { 8 | "mainhand": 9 | { 10 | "tag":"ce_blazes_touch:can_enchant" 11 | } 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l4/l4_42.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 10971..11163 run function cw_serial_mods:falling_block/l5/l5_83 2 | execute if score block bsc matches 11164..11263 run function cw_serial_mods:falling_block/l5/l5_84 3 | execute if score block bsc matches 11264..11336 run function cw_serial_mods:falling_block/l5/l5_85 4 | -------------------------------------------------------------------------------- /wall_phasing/data/glowing_ii/functions/convert_effect.mcfunction: -------------------------------------------------------------------------------- 1 | summon minecraft:area_effect_cloud ~ ~ ~ {Tags:["glow_convert"],Effects:[{Id:14,Duration:20,Amplifier:1}],WaitTime:0,Duration:6} 2 | execute store result entity @e[tag=glow_convert,limit=1] Effects[0].Duration int 1 run data get entity @s ActiveEffects[{Id:24b,Amplifier:1b}].Duration 3 | effect clear @s minecraft:glowing -------------------------------------------------------------------------------- /BLANK_ENCHANTMENT/data/ce_ENCHANT_NAME/predicates/contains_enchantable.json: -------------------------------------------------------------------------------- 1 | { 2 | "condition": "minecraft:entity_properties", 3 | "entity":"this", 4 | "predicate": 5 | { 6 | "equipment": 7 | { 8 | "mainhand": 9 | { 10 | "tag":"ce_ENCHANTMENT_NAME:can_enchant" 11 | } 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /rabbit_leap/data/ce_rabbit_leap_i/predicates/contains_enchantable.json: -------------------------------------------------------------------------------- 1 | { 2 | "condition": "minecraft:entity_properties", 3 | "entity":"this", 4 | "predicate": 5 | { 6 | "equipment": 7 | { 8 | "mainhand": 9 | { 10 | "tag":"ce_rabbit_leap_i:can_enchant" 11 | } 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /rabbit_leap/data/ce_rabbit_leap_ii/predicates/contains_enchantable.json: -------------------------------------------------------------------------------- 1 | { 2 | "condition": "minecraft:entity_properties", 3 | "entity":"this", 4 | "predicate": 5 | { 6 | "equipment": 7 | { 8 | "mainhand": 9 | { 10 | "tag":"ce_rabbit_leap_i:can_enchant" 11 | } 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /rabbit_leap/data/ce_rabbit_leap_iii/predicates/contains_enchantable.json: -------------------------------------------------------------------------------- 1 | { 2 | "condition": "minecraft:entity_properties", 3 | "entity":"this", 4 | "predicate": 5 | { 6 | "equipment": 7 | { 8 | "mainhand": 9 | { 10 | "tag":"ce_rabbit_leap_i:can_enchant" 11 | } 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /enders_reach/data/enders_reach/functions/on_tick.mcfunction: -------------------------------------------------------------------------------- 1 | # These lines are for the actual enchantment. 2 | execute at @a run fill ~-5 ~-5 ~-5 ~5 ~5 ~5 minecraft:air replace minecraft:structure_void 3 | execute as @a[scores={sneaking=1..},nbt={Inventory:[{Slot:102b,tag:{EnderReach:1b}}]}] positioned as @s rotated as @s run function enders_reach:choose_position 4 | scoreboard players reset @a sneaking -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_1.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 0 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:air"}} 2 | execute if score block bsc matches 1 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:stone"}} 3 | -------------------------------------------------------------------------------- /custom_enchanting/data/custom_enchanting/functions/frame_drop_item.mcfunction: -------------------------------------------------------------------------------- 1 | # Spawn in an item, change it to match the contents of the frame, then kill the frame. 2 | execute if data entity @s Item run summon minecraft:item ^ ^ ^0.5 {Item:{id:"minecraft:stone",Count:1b},Tags:["new"]} 3 | execute if data entity @s Item run data modify entity @e[type=item,sort=nearest,limit=1,tag=new] Item set from entity @s Item 4 | kill @s -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_15.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 66 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:sand"}} 2 | execute if score block bsc matches 67 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:red_sand"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_16.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 68 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:gravel"}} 2 | execute if score block bsc matches 69 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:gold_ore"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_17.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 70 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:iron_ore"}} 2 | execute if score block bsc matches 71 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:coal_ore"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_34.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 230 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:glass"}} 2 | execute if score block bsc matches 231 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:lapis_ore"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_48.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1341 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:grass"}} 2 | execute if score block bsc matches 1342 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:fern"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_2.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 2 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:granite"}} 2 | execute if score block bsc matches 3 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:polished_granite"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_3.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:diorite"}} 2 | execute if score block bsc matches 5 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:polished_diorite"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_309.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 9129 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:void_air"}} 2 | execute if score block bsc matches 9130 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:cave_air"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_33.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 228 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:sponge"}} 2 | execute if score block bsc matches 229 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:wet_sponge"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_4.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:andesite"}} 2 | execute if score block bsc matches 7 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:polished_andesite"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_49.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1343 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:dead_bush"}} 2 | execute if score block bsc matches 1344 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:seagrass"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_54.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1388 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:lime_wool"}} 2 | execute if score block bsc matches 1389 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:pink_wool"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_58.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1396 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:green_wool"}} 2 | execute if score block bsc matches 1397 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:red_wool"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_60.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1411 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:dandelion"}} 2 | execute if score block bsc matches 1412 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:poppy"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_61.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1413 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:blue_orchid"}} 2 | execute if score block bsc matches 1414 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:allium"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_68.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1427 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:iron_block"}} 2 | execute if score block bsc matches 1428 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:bricks"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_7.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 14 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:cobblestone"}} 2 | execute if score block bsc matches 15 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:oak_planks"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_96.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3996 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:pumpkin"}} 2 | execute if score block bsc matches 3997 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:netherrack"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_97.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3998 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:soul_sand"}} 2 | execute if score block bsc matches 3999 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:glowstone"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_124.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4998 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:lily_pad"}} 2 | execute if score block bsc matches 4999 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:nether_bricks"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_129.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5138 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:end_stone"}} 2 | execute if score block bsc matches 5139 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:dragon_egg"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_195.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7335 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:lime_carpet"}} 2 | execute if score block bsc matches 7336 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:pink_carpet"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_199.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7343 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:green_carpet"}} 2 | execute if score block bsc matches 7344 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:red_carpet"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_200.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7345 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:black_carpet"}} 2 | execute if score block bsc matches 7346 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:terracotta"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_201.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7347 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:coal_block"}} 2 | execute if score block bsc matches 7348 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:packed_ice"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_246.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8687 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:grass_path"}} 2 | execute if score block bsc matches 8688 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:end_gateway"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_52.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1384 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:orange_wool"}} 2 | execute if score block bsc matches 1385 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:magenta_wool"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_56.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1392 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:cyan_wool"}} 2 | execute if score block bsc matches 1393 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:purple_wool"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_57.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1394 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:blue_wool"}} 2 | execute if score block bsc matches 1395 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:brown_wool"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_62.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1415 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:azure_bluet"}} 2 | execute if score block bsc matches 1416 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:red_tulip"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_63.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1417 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:orange_tulip"}} 2 | execute if score block bsc matches 1418 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:white_tulip"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_64.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1419 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:pink_tulip"}} 2 | execute if score block bsc matches 1420 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:oxeye_daisy"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_65.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1421 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:cornflower"}} 2 | execute if score block bsc matches 1422 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:wither_rose"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_67.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1425 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:red_mushroom"}} 2 | execute if score block bsc matches 1426 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:gold_block"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_8.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 16 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:spruce_planks"}} 2 | execute if score block bsc matches 17 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:birch_planks"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_9.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 18 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:jungle_planks"}} 2 | execute if score block bsc matches 19 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:acacia_planks"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_141.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5776 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_fern"}} 2 | execute if score block bsc matches 5777 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_dandelion"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_187.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7065 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:prismarine"}} 2 | execute if score block bsc matches 7066 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:prismarine_bricks"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_193.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7331 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:orange_carpet"}} 2 | execute if score block bsc matches 7332 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:magenta_carpet"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_197.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7339 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:cyan_carpet"}} 2 | execute if score block bsc matches 7340 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:purple_carpet"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_198.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7341 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:blue_carpet"}} 2 | execute if score block bsc matches 7342 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:brown_carpet"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_271.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8908 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:pink_concrete"}} 2 | execute if score block bsc matches 8909 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:gray_concrete"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_275.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8916 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:red_concrete"}} 2 | execute if score block bsc matches 8917 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:black_concrete"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_36.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 245 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:sandstone"}} 2 | execute if score block bsc matches 246 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:chiseled_sandstone"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_53.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1386 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:light_blue_wool"}} 2 | execute if score block bsc matches 1387 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:yellow_wool"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_55.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1390 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:gray_wool"}} 2 | execute if score block bsc matches 1391 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:light_gray_wool"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_70.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1432 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:mossy_cobblestone"}} 2 | execute if score block bsc matches 1433 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:obsidian"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_75.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 3353 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:diamond_block"}} 2 | execute if score block bsc matches 3354 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:crafting_table"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_142.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5778 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_poppy"}} 2 | execute if score block bsc matches 5779 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_blue_orchid"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_143.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5780 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_allium"}} 2 | execute if score block bsc matches 5781 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_azure_bluet"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_149.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5792 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_dead_bush"}} 2 | execute if score block bsc matches 5793 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_cactus"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_164.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6190 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:redstone_block"}} 2 | execute if score block bsc matches 6191 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:nether_quartz_ore"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_171.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6316 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:lime_terracotta"}} 2 | execute if score block bsc matches 6317 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:pink_terracotta"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_173.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6320 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:cyan_terracotta"}} 2 | execute if score block bsc matches 6321 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:purple_terracotta"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_174.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6322 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:blue_terracotta"}} 2 | execute if score block bsc matches 6323 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:brown_terracotta"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_175.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6324 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:green_terracotta"}} 2 | execute if score block bsc matches 6325 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:red_terracotta"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_194.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7333 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:light_blue_carpet"}} 2 | execute if score block bsc matches 7334 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:yellow_carpet"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_196.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7337 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:gray_carpet"}} 2 | execute if score block bsc matches 7338 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:light_gray_carpet"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_233.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7879 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:smooth_sandstone"}} 2 | execute if score block bsc matches 7880 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:smooth_quartz"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_268.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8902 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:white_concrete"}} 2 | execute if score block bsc matches 8903 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:orange_concrete"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_270.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8906 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:yellow_concrete"}} 2 | execute if score block bsc matches 8907 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:lime_concrete"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_272.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8910 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:light_gray_concrete"}} 2 | execute if score block bsc matches 8911 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:cyan_concrete"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_273.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8912 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:purple_concrete"}} 2 | execute if score block bsc matches 8913 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:blue_concrete"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_274.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8914 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:brown_concrete"}} 2 | execute if score block bsc matches 8915 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:green_concrete"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_290.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8982 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:fire_coral_block"}} 2 | execute if score block bsc matches 8983 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:horn_coral_block"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_340.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 11335 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:honey_block"}} 2 | execute if score block bsc matches 11336 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:honeycomb_block"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_66.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 1423 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:lily_of_the_valley"}} 2 | execute if score block bsc matches 1424 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:brown_mushroom"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_103.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4086 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:lime_stained_glass"}} 2 | execute if score block bsc matches 4087 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:pink_stained_glass"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_106.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4092 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:blue_stained_glass"}} 2 | execute if score block bsc matches 4093 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:brown_stained_glass"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_107.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4094 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:green_stained_glass"}} 2 | execute if score block bsc matches 4095 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:red_stained_glass"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_113.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4484 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:chiseled_stone_bricks"}} 2 | execute if score block bsc matches 4485 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:infested_stone"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_144.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5782 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_red_tulip"}} 2 | execute if score block bsc matches 5783 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_orange_tulip"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_145.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5784 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_white_tulip"}} 2 | execute if score block bsc matches 5785 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_pink_tulip"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_146.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5786 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_oxeye_daisy"}} 2 | execute if score block bsc matches 5787 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_cornflower"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_169.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6312 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:orange_terracotta"}} 2 | execute if score block bsc matches 6313 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:magenta_terracotta"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_172.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6318 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:gray_terracotta"}} 2 | execute if score block bsc matches 6319 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:light_gray_terracotta"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_221.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 7681 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:red_sandstone"}} 2 | execute if score block bsc matches 7682 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:chiseled_red_sandstone"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_249.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8718 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:nether_wart_block"}} 2 | execute if score block bsc matches 8719 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:red_nether_bricks"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_269.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8904 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:magenta_concrete"}} 2 | execute if score block bsc matches 8905 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:light_blue_concrete"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_288.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8978 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:dead_horn_coral_block"}} 2 | execute if score block bsc matches 8979 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:tube_coral_block"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_289.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8980 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:brain_coral_block"}} 2 | execute if score block bsc matches 8981 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:bubble_coral_block"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_101.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4082 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:orange_stained_glass"}} 2 | execute if score block bsc matches 4083 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:magenta_stained_glass"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_104.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4088 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:gray_stained_glass"}} 2 | execute if score block bsc matches 4089 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:light_gray_stained_glass"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_105.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4090 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:cyan_stained_glass"}} 2 | execute if score block bsc matches 4091 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:purple_stained_glass"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_112.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4482 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:mossy_stone_bricks"}} 2 | execute if score block bsc matches 4483 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:cracked_stone_bricks"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_114.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4486 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:infested_cobblestone"}} 2 | execute if score block bsc matches 4487 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:infested_stone_bricks"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_138.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5770 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_oak_sapling"}} 2 | execute if score block bsc matches 5771 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_spruce_sapling"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_139.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5772 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_birch_sapling"}} 2 | execute if score block bsc matches 5773 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_jungle_sapling"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_148.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5790 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_red_mushroom"}} 2 | execute if score block bsc matches 5791 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_brown_mushroom"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_170.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 6314 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:light_blue_terracotta"}} 2 | execute if score block bsc matches 6315 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:yellow_terracotta"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_278.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8922 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:yellow_concrete_powder"}} 2 | execute if score block bsc matches 8923 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:lime_concrete_powder"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_279.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8924 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:pink_concrete_powder"}} 2 | execute if score block bsc matches 8925 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:gray_concrete_powder"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_281.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8928 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:purple_concrete_powder"}} 2 | execute if score block bsc matches 8929 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:blue_concrete_powder"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_282.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8930 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:brown_concrete_powder"}} 2 | execute if score block bsc matches 8931 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:green_concrete_powder"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_283.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8932 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:red_concrete_powder"}} 2 | execute if score block bsc matches 8933 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:black_concrete_powder"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_102.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 4084 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:light_blue_stained_glass"}} 2 | execute if score block bsc matches 4085 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:yellow_stained_glass"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_140.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5774 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_acacia_sapling"}} 2 | execute if score block bsc matches 5775 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_dark_oak_sapling"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_147.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 5788 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_lily_of_the_valley"}} 2 | execute if score block bsc matches 5789 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:potted_wither_rose"}} 3 | -------------------------------------------------------------------------------- /wall_phasing/data/cw_serial_mods/functions/falling_block/l7/l7_276.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score block bsc matches 8918 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:white_concrete_powder"}} 2 | execute if score block bsc matches 8919 run summon minecraft:falling_block ~ ~ ~ {Time:2,NoGravity:1b,Tags:["new_block","phased_block"],BlockState:{Name:"minecraft:orange_concrete_powder"}} 3 | --------------------------------------------------------------------------------