morechems

This commit is contained in:
Emiliathewolf 2025-09-28 14:58:49 +01:00
parent 01fbf138f9
commit 0d92351296
9 changed files with 108 additions and 5 deletions

View file

@ -0,0 +1,62 @@
# Cryoxadone
# Authored by: rncwnd
# B1 Water, 73+
# B2 Plasma, 33+
# B3 Nitrogen, 33+
# B4 Platinum 20+
# B9 Cryostylane output (49 of)
# B10 Cryoxadone output (50 of)
# Preheat everything
temp 1, 320
temp 2, 320
temp 3, 320
temp 4, 320
# Makes 99 Cryostylane in B9
mov 33, 1, 9
mov 33, 2, 9
mov 33, 3, 9
# Preheat cryo
temp 9, 320
# Make Cryoxadone
# 3:1:2 -> 2 ratio Stylane, plat, water
# The sfor loop doesn't work properly, for some reason it skips the first mov.
# As such, we unroll the loop here.
mov 10, 1, 10
mov 10, 9, 10
mov 5, 4, 10
temp 10, 320
wait 2
mov 10, 1, 10
mov 10, 9, 10
mov 5, 4, 10
temp 10, 320
wait 2
mov 10, 1, 10
mov 10, 9, 10
mov 5, 4, 10
temp 10, 320
wait 2
mov 10, 1, 10
mov 10, 9, 10
mov 5, 4, 10
temp 10, 320
wait 2
mov 10, 1, 10
mov 10, 9, 10
mov 5, 4, 10
temp 10, 320
wait 2
# Final heating step, removes any ice formed by the endothermic
sfor 20
temp 10, 320
wait 2
end