From e06ca510810a1c58a92cb97a085b259d808ecb31 Mon Sep 17 00:00:00 2001 From: GameStar <56610486+BlueBoat29@users.noreply.github.com> Date: Sun, 14 Dec 2025 16:03:41 -0600 Subject: [PATCH] New Active Transformer (#2424) * textures and stuff * recipes * looks a little better * got texture thing to be * probably good enough * cooling tower touchup --- .../block/machine/active_transformer.json | 82 +++++++++++++++++ .../blockstates/active_power_transformer.json | 19 ++++ .../machine_casing_power_casing.json | 7 ++ .../casings/machine_casing_power_casing.json | 1 + .../machines/active_power_transformer.json | 86 ++++++++++++++++++ .../models/item/active_power_transformer.json | 3 + .../item/machine_casing_power_casing.json | 3 + .../casings/machine_casing_power_casing.png | Bin 0 -> 526 bytes .../machine_casing_power_casing.png.mcmeta | 5 + .../machine_casing_power_casing_ctm.png | Bin 0 -> 1200 bytes .../machine_casing_power_casing_ctm_n.png | Bin 0 -> 347 bytes .../machine_casing_power_casing_ctm_s.png | Bin 0 -> 217 bytes .../casings/machine_casing_power_casing_n.png | Bin 0 -> 235 bytes .../casings/machine_casing_power_casing_s.png | Bin 0 -> 144 bytes .../tfg/machines/recipes.casings.js | 9 +- .../tfg/machines/recipes.multiblocks.js | 11 +++ kubejs/server_scripts/tfg/tags.js | 1 + .../tfg/mars/materials.mars.js | 1 + kubejs/startup_scripts/tfg/materials.js | 4 +- .../tfg/nuclear/blocks.nuclear.js | 4 +- 20 files changed, 232 insertions(+), 4 deletions(-) create mode 100644 kubejs/assets/gtceu/models/block/machine/active_transformer.json create mode 100644 kubejs/assets/tfg/blockstates/active_power_transformer.json create mode 100644 kubejs/assets/tfg/blockstates/machine_casing_power_casing.json create mode 100644 kubejs/assets/tfg/models/block/casings/machine_casing_power_casing.json create mode 100644 kubejs/assets/tfg/models/block/machines/active_power_transformer.json create mode 100644 kubejs/assets/tfg/models/item/active_power_transformer.json create mode 100644 kubejs/assets/tfg/models/item/machine_casing_power_casing.json create mode 100644 kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing.png create mode 100644 kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing.png.mcmeta create mode 100644 kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_ctm.png create mode 100644 kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_ctm_n.png create mode 100644 kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_ctm_s.png create mode 100644 kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_n.png create mode 100644 kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_s.png diff --git a/kubejs/assets/gtceu/models/block/machine/active_transformer.json b/kubejs/assets/gtceu/models/block/machine/active_transformer.json new file mode 100644 index 000000000..852f3edb9 --- /dev/null +++ b/kubejs/assets/gtceu/models/block/machine/active_transformer.json @@ -0,0 +1,82 @@ +{ + "parent": "minecraft:block/block", + "loader": "gtceu:machine", + "machine": "gtceu:active_transformer", + "texture_overrides": { + "all": "tfg:item/deprecated" + }, + "variants": { + "is_formed=false,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:item/deprecated", + "overlay_front": "tfg:item/deprecated" + } + } + }, + "is_formed=false,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:item/deprecated", + "overlay_front": "tfg:item/deprecated" + } + } + }, + "is_formed=false,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:item/deprecated", + "overlay_front": "tfg:item/deprecated_active" + } + } + }, + "is_formed=false,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:item/deprecated", + "overlay_front": "tfg:item/deprecated_active" + } + } + }, + "is_formed=true,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:item/deprecated", + "overlay_front": "tfg:item/deprecated" + } + } + }, + "is_formed=true,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:item/deprecated", + "overlay_front": "tfg:item/deprecated" + } + } + }, + "is_formed=true,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:item/deprecated", + "overlay_front": "tfg:item/deprecated_active" + } + } + }, + "is_formed=true,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:item/deprecated", + "overlay_front": "tfg:item/deprecated_active" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/active_power_transformer.json b/kubejs/assets/tfg/blockstates/active_power_transformer.json new file mode 100644 index 000000000..9a0e2d7bb --- /dev/null +++ b/kubejs/assets/tfg/blockstates/active_power_transformer.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "tfg:block/machines/active_power_transformer", + "y": 90 + }, + "facing=north": { + "model": "tfg:block/machines/active_power_transformer" + }, + "facing=south": { + "model": "tfg:block/machines/active_power_transformer", + "y": 180 + }, + "facing=west": { + "model": "tfg:block/machines/active_power_transformer", + "y": 270 + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/machine_casing_power_casing.json b/kubejs/assets/tfg/blockstates/machine_casing_power_casing.json new file mode 100644 index 000000000..4d1dfb56f --- /dev/null +++ b/kubejs/assets/tfg/blockstates/machine_casing_power_casing.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "tfg:block/casings/machine_casing_power_casing" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/casings/machine_casing_power_casing.json b/kubejs/assets/tfg/models/block/casings/machine_casing_power_casing.json new file mode 100644 index 000000000..18d68ef40 --- /dev/null +++ b/kubejs/assets/tfg/models/block/casings/machine_casing_power_casing.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/cube_all","textures":{"all":"tfg:block/casings/machine_casing_power_casing"}} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/machines/active_power_transformer.json b/kubejs/assets/tfg/models/block/machines/active_power_transformer.json new file mode 100644 index 000000000..c2960ee1c --- /dev/null +++ b/kubejs/assets/tfg/models/block/machines/active_power_transformer.json @@ -0,0 +1,86 @@ +{ + "parent": "minecraft:block/block", + "loader": "gtceu:machine", + "machine": "tfg:active_power_transformer", + "texture_overrides": { + "all": "tfg:block/casings/machine_casing_power_casing" + }, + "variants": { + "is_formed=false,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_power_casing", + "overlay_front": "gtceu:block/multiblock/power_substation/overlay_front" + } + } + }, + "is_formed=false,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_power_casing", + "overlay_front": "gtceu:block/multiblock/power_substation/overlay_front" + } + } + }, + "is_formed=false,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_power_casing", + "overlay_front": "gtceu:block/multiblock/power_substation/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/power_substation/overlay_front_active_emissive" + } + } + }, + "is_formed=false,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_power_casing", + "overlay_front": "gtceu:block/multiblock/power_substation/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/power_substation/overlay_front_active_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=idle": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_power_casing", + "overlay_front": "gtceu:block/multiblock/power_substation/overlay_front" + } + } + }, + "is_formed=true,recipe_logic_status=suspend": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_power_casing", + "overlay_front": "gtceu:block/multiblock/power_substation/overlay_front" + } + } + }, + "is_formed=true,recipe_logic_status=waiting": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_power_casing", + "overlay_front": "gtceu:block/multiblock/power_substation/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/power_substation/overlay_front_active_emissive" + } + } + }, + "is_formed=true,recipe_logic_status=working": { + "model": { + "parent": "gtceu:block/machine/template/cube_all/sided", + "textures": { + "all": "tfg:block/casings/machine_casing_power_casing", + "overlay_front": "gtceu:block/multiblock/power_substation/overlay_front_active", + "overlay_front_emissive": "gtceu:block/multiblock/power_substation/overlay_front_active_emissive" + } + } + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/active_power_transformer.json b/kubejs/assets/tfg/models/item/active_power_transformer.json new file mode 100644 index 000000000..b3073fdff --- /dev/null +++ b/kubejs/assets/tfg/models/item/active_power_transformer.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/machines/active_power_transformer" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/machine_casing_power_casing.json b/kubejs/assets/tfg/models/item/machine_casing_power_casing.json new file mode 100644 index 000000000..a77205b25 --- /dev/null +++ b/kubejs/assets/tfg/models/item/machine_casing_power_casing.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/casings/machine_casing_power_casing" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing.png new file mode 100644 index 0000000000000000000000000000000000000000..651e8d468f8c7febc01070b1fc21587d556692c7 GIT binary patch literal 526 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7uX?&ThFJ9GPClD=*+Hb$ ze*3hhxk8Ge3oJD39n4pTi01zhxOZgroe%PBhHqfhG89Zn49$~GOrH{w zHt}2v*PN?Y=N6}(J7b$18?z^q!Ae%TL4kuoz{z0#dBz!M(==2(nH&OT7&c6e;M}aU zc$L> zGRH42XResH+;!D*3$8E`SKn!=Rl=I8mtRi#pSUsNLe|y-8TZe*p$t)f-aY0me{I_S zci!!frjM@sv+dpP)A+RLXHWj@ZzAumWygjW9p9$&^UquDYm-m3Y>iqw%cAdNt^E1V z9gk(j&*r?ZTmDMv+3x$+hYV6S-<+^aGf`rm+{Ghrf6VfFw}RjF`8Uh(!-Bcj zpPpWR)jmeMYtgZsAN%}^e|Ak@=l$=;iK_)i{yLxArnB*#yvOB`;#Pq|IkKxVZ^`}Y?$Ako$DK5RTT>R)mi(~uE k0|WL4S_U1O%=VALQC0b~@&xrM3=9kmp00i_>zopr09*;~J^%m! literal 0 HcmV?d00001 diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing.png.mcmeta b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing.png.mcmeta new file mode 100644 index 000000000..eaf3aa63d --- /dev/null +++ b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing.png.mcmeta @@ -0,0 +1,5 @@ +{ + "ldlib": { + "connection": "tfg:block/casings/machine_casing_power_casing_ctm" + } +} diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_ctm.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_ctm.png new file mode 100644 index 0000000000000000000000000000000000000000..65abe574f43960e1260e96be231d054941638813 GIT binary patch literal 1200 zcmeAS@N?(olHy`uVBq!ia0y~yU{C;I4kiW$hCdQ-7c(%hlzX~3hIn*N4U6{(P89k7 z?w!YWOX+`_v1^YNEsB`gr6ba$^kU)ie;Uj|CHMW-VAL_Du&O>HW=dfn94_HBvP?%li9)z$B}?+d$r&B*T4-)ir_ zAN%_HrcRyu^y$-i^W=o*_MNrh_J0wfnEXk*&192Gw*tIlUX=d+4#TZtfP-VP7va2-@5m<>jxt@V}@x5`6U>dOJ#oM8WP&&<3JQg$c5U(R!IpWJ)yTbXyHCA(PByPVZ~W?suw_x!og+34RD z&+P}9g?IDUO<vYcSWzxe}&kzHdTx7uE!oDVu2q z3!V(nXn89-wd`1URIbv@X@+SRl)i}E`+Pd9Ro_9_a*LCT^6@*dTb)iF3b1%nB%5AS zV|%S+%e?pM8Ye`U-`)vXwe(+-yrr%naDU9qFUq|4?1r+3VX zw{P9rBAsCNQFG27Hpe43Y^Hqt_;KmdrDxBcJ-ydlfH~Zkw_K`Y_1BUwkJE3kE!)5U zeoXxS=nB_Jttahs4!m@dPcMjX3%z>fkEdF>r}y$$z3Gz7)9x*tlH}PZtq~Owv7_X( z)ZD(Gj%VAJF8(Sr>FV8UzpCD(DhLFWm6iRtefjy~7w@Ck%~n1Tsb!nm8MU|iwOR5z z-h0O{CLDWb(Q`R4KI5fKv)EqofP+eM4Vu6IhbtD@esuW3e7<@AuHL_or(O&fZe0>w ze>`=i`z4!(rYxs@@*MRKDjlA@k)JRAq_LgfU~A^ONAI0H{C$u7^jja#x9Nhgh$QFJ zmd_GRJZZD`#<56hcNm8WeZ1cizHHgDisF?)6K0EVs?NxGapoxZ3$7C$3(YI}jNUZP znRzqv%Lj4)Hg`9-Z?7DtXs|keR+`DX=cw?_o@SSSe;VFTeBj=6_UzfGTe*aGCZ6zZ zV$Ef^%od*c@{{7t)nCFKKQky#^I7E2v3LEOtzAJnl57m;zW)B3oSb|?eO_*Bp`;^N|k7wf%bV$=?m TtS(_-U|{fc^>bP0l+XkKOYBUS literal 0 HcmV?d00001 diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_ctm_n.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_ctm_n.png new file mode 100644 index 0000000000000000000000000000000000000000..f618836e2bc8bed89a2c1f292cd90b443e60cfce GIT binary patch literal 347 zcmeAS@N?(olHy`uVBq!ia0y~yU{C;I4mJh`hT^KKFANNfN}eu`ArY-_!yP9vD{|xn z|KpAm)Be11>hzuLiH|1v>~!O|yfOWv<18`VHcri{O`HY|JPr&?(tN~UOB`^1%k#iY zxQ2CGgKh%%4JI(v@xZc)=?ec}^?f`?{O9s6I&W=1d!n}AqhnJTPdeC0syVEj)TyO( zpKqmF6~h{{hgSU_pP8K4{_UQ4X`MHB-vN)_?|0wvIx%>@Wp|Zr%J*`OllEfPJQ;uO zm_<`C!|ruE+@A#7O5IT86ZT>I^5c-x6l=M~uXi)aG!{G;`qiM85z_Ii^^5WMY_^cZ z_Fiiz4`%sS+n4aMNN-5{&~&+J`_n28s>kSdn`1Z1g0$MwYcN!aw0nYj9hEZcJ)BksLfyt NJzf1=);T3K0RUD#R`37- literal 0 HcmV?d00001 diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_n.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_n.png new file mode 100644 index 0000000000000000000000000000000000000000..17163a5b1a19d29c918948961743c063a2c84158 GIT binary patch literal 235 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7HhH=@hFJ72oqSM`Ns-6Z z-iy&JLDw_=_D!#>jg0)&rH>fPcmxt;{%aoipMPi)?{DYO3*HO?r%Vgus^>{eD!!EQ zZ0DNC#XA`ULu^+wJh^+2*~3t1=H8&{30x0a!zZj@l6jvV7yCZ%hLcA_^8a6lx2^0` z&i?zC>mpyL?7WFl^|l^79Q}$%mKr?2Dtc~#fz{l^%m;VPKPW6VU^r5z?fj;=J*3q3 p{e$qMpY-?7*(`l3;H-`ObY|O&ciycJWME)m@O1TaS?83{1OTEeUeEvl literal 0 HcmV?d00001 diff --git a/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_s.png b/kubejs/assets/tfg/textures/block/casings/machine_casing_power_casing_s.png new file mode 100644 index 0000000000000000000000000000000000000000..a9472dbe1351bc2e3d8fb6461b6c02d9dfab7d61 GIT binary patch literal 144 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7!aZFaLo9mlPTt6Mz=6Yg z{?gNbOW5meVy$BMnOWPL*^DHedL$YQPNWyL1|N9net*M#1q~~Y%U!RXjDtNEr@dOs wdL`~*Nug|5tu^DDcMEEdT}m+h^;7>&(hJ8}|Kbf=3=9kmp00i_>zopr0BqYc!2kdN literal 0 HcmV?d00001 diff --git a/kubejs/server_scripts/tfg/machines/recipes.casings.js b/kubejs/server_scripts/tfg/machines/recipes.casings.js index 08dcf5c8a..ecdc8cdaa 100644 --- a/kubejs/server_scripts/tfg/machines/recipes.casings.js +++ b/kubejs/server_scripts/tfg/machines/recipes.casings.js @@ -178,5 +178,12 @@ function registerTFGCasingRecipes(event) { .EUt(GTValues.VH[GTValues.LV]) .circuit(2) - + event.recipes.gtceu.assembler('tfg:casings/machine_casing_power_casing') + .itemInputs('gtceu:ostrum_frame', '4x #forge:plates/titanium_tungsten_carbide', '16x #forge:fine_wires/copper', + '16x #forge:fine_wires/tungsten_bismuth_oxide_composite') + .inputFluids(Fluid.of('gtceu:reinforced_epoxy_resin', 288)) + .itemOutputs('2x tfg:machine_casing_power_casing') + .circuit(6) + .duration(2.5 * 20) + .EUt(GTValues.VA[GTValues.EV]) } \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/machines/recipes.multiblocks.js b/kubejs/server_scripts/tfg/machines/recipes.multiblocks.js index 2d6a21215..29dc5e567 100644 --- a/kubejs/server_scripts/tfg/machines/recipes.multiblocks.js +++ b/kubejs/server_scripts/tfg/machines/recipes.multiblocks.js @@ -187,4 +187,15 @@ function registerTFGMultiblockRecipes(event) { F: 'gtceu:mv_electric_piston' }).addMaterialInfo().id('gtceu:shaped/coal_liquefaction_tower') + event.remove({output: 'gtceu:active_transformer'}) + + event.recipes.gtceu.assembler('tfg:active_power_transformer') + .itemInputs('1x gtceu:iv_transformer_1a', '1x #gtceu:circuits/iv', '8x gtceu:uranium_triplatinum_single_wire', + '2x gtceu:hpic_chip') + .inputFluids(Fluid.of('gtceu:ostrum_iodide', 288)) + .itemOutputs('tfg:active_power_transformer') + .duration(300) + .EUt(GTValues.VA[GTValues.EV]) + .circuit(2) + } \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/tags.js b/kubejs/server_scripts/tfg/tags.js index 0362ce7d9..e9344dd39 100644 --- a/kubejs/server_scripts/tfg/tags.js +++ b/kubejs/server_scripts/tfg/tags.js @@ -123,6 +123,7 @@ const registerTFGBlockTags = (event) => { event.add('forge:mineable/wrench', 'tfg:electromagnetic_accelerator') event.add('forge:mineable/wrench', 'tfg:reflector') event.add('forge:mineable/wrench', 'tfg:machine_casing_aluminium_plated_steel') + event.add('forge:mineable/wrench', 'tfg:machine_casing_power_casing') event.add('minecraft:mineable/pickaxe', 'tfg:mars_ice') event.add('minecraft:mineable/pickaxe', 'tfg:dry_ice') diff --git a/kubejs/startup_scripts/tfg/mars/materials.mars.js b/kubejs/startup_scripts/tfg/mars/materials.mars.js index e03e5dc76..58eeab18a 100644 --- a/kubejs/startup_scripts/tfg/mars/materials.mars.js +++ b/kubejs/startup_scripts/tfg/mars/materials.mars.js @@ -96,6 +96,7 @@ function registerTFGMarsMaterials(event) { event.create("ostrum_iodide") .ingot() + .liquid() .components('2x ostrum', 'iodine') .blastTemp(3700, 'mid', GTValues.VA[GTValues.IV], (20*120)) .iconSet(GTMaterialIconSet.BRIGHT) diff --git a/kubejs/startup_scripts/tfg/materials.js b/kubejs/startup_scripts/tfg/materials.js index 107407e83..47c0f10df 100644 --- a/kubejs/startup_scripts/tfg/materials.js +++ b/kubejs/startup_scripts/tfg/materials.js @@ -113,7 +113,9 @@ const registerTFGMaterials = (event) => { GTMaterialFlags.GENERATE_ROD, GTMaterialFlags.GENERATE_BOLT_SCREW, GTMaterialFlags.EXCLUDE_BLOCK_CRAFTING_BY_HAND_RECIPES, - GTMaterialFlags.GENERATE_GEAR + GTMaterialFlags.GENERATE_GEAR, + GTMaterialFlags.GENERATE_FOIL, + GTMaterialFlags.GENERATE_FINE_WIRE ) .fluidPipeProperties(4250, 1700, true, false, false, false) diff --git a/kubejs/startup_scripts/tfg/nuclear/blocks.nuclear.js b/kubejs/startup_scripts/tfg/nuclear/blocks.nuclear.js index fdb862127..ca75d5ef3 100644 --- a/kubejs/startup_scripts/tfg/nuclear/blocks.nuclear.js +++ b/kubejs/startup_scripts/tfg/nuclear/blocks.nuclear.js @@ -51,10 +51,10 @@ function registerTFGNuclearBlocks(event) { .tagBlock('gtceu:mineable/pickaxe_or_wrench') .mapColor('color_black') .speedFactor(1.1) - .activeOffset(3.5, 2, 3.5) + .activeOffset(2, 2, 2) .activeVelocity(0.0, 0.0, 0.0) .activeParticle('tfg:cooling_steam') - .activeBase(0.0, 12.5, 0.0) + .activeBase(0.0, 13.5, 0.0) .activeCount(2) .activeForced(false) .hasTicker(true)