|
23 | 23 | return result; |
24 | 24 | } |
25 | 25 |
|
| 26 | + let gtMachines = getGregtechMachines("multiblock"); |
| 27 | + let stargateBlocks = [ |
| 28 | + "sgjourney:classic_stargate", |
| 29 | + "sgjourney:classic_stargate_base_block", |
| 30 | + "sgjourney:classic_stargate_chevron_block", |
| 31 | + "sgjourney:classic_stargate_ring_block", |
| 32 | + "sgjourney:crystal_interface", |
| 33 | + "sgjourney:classic_dhd", |
| 34 | + ]; |
| 35 | + |
26 | 36 | Ponder.tags((event) => { |
27 | 37 | event.createTag( |
28 | 38 | "kubejs:gtceu", |
29 | 39 | "gtceu:electric_blast_furnace", |
30 | 40 | "GregTech Multiblocks", |
31 | 41 | "Informations on how to use GregTech Multiblocks", |
32 | | - getGregtechMachines("multiblock") |
| 42 | + gtMachines |
| 43 | + ); |
| 44 | + |
| 45 | + event.createTag( |
| 46 | + "kubejs:stargate", |
| 47 | + "Stargate Travel", |
| 48 | + "Informations on how to use the Stargates of this modpack", |
| 49 | + stargateBlocks |
33 | 50 | ); |
34 | 51 | }); |
35 | 52 |
|
36 | 53 | Ponder.registry((event) => { |
37 | 54 | event |
38 | | - .create([ |
39 | | - "sgjourney:classic_stargate_base_block", |
40 | | - "sgjourney:classic_stargate_chevron_block", |
41 | | - "sgjourney:classic_stargate_ring_block", |
42 | | - "sgjourney:crystal_interface", |
43 | | - "sgjourney:classic_dhd", |
44 | | - ]) |
| 55 | + .create(stargateBlocks) |
45 | 56 | .scene( |
46 | 57 | "classic_stargate", |
47 | 58 | "Classic Stargate", |
48 | 59 | ponderScenes["classic_stargate"] |
49 | 60 | ); |
50 | 61 |
|
51 | 62 | event |
52 | | - .create(getGregtechMachines("multiblock")) |
| 63 | + .create(gtMachines) |
53 | 64 | .scene( |
54 | 65 | "multiblock_introduction", |
55 | 66 | "Multiblock Introduction", |
|
0 commit comments