Advertisement
Zeldaboy111

Ingots ]|[ Skript #354

Oct 11th, 2020
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.43 KB | None | 0 0
  1. #multiblock structure
  2. #rename function
  3.  
  4. #requires: SkQuery, SkRayFall, Skellett, SkBee, TuSKe
  5.  
  6.  
  7. options:
  8. logo: &6&lBS&8:&7
  9.  
  10. function updateItemInSlot(furnaceId: Location, type: String, slot: Integer, furnaceTier: String, typeId: integer):
  11. set {_typeLower} to {_type} in lower case
  12. loop {inventoryList.%{_furnaceId}%.furnace%{_furnaceTier}%::*}:
  13. set slot {_slot} of loop-value's current inventory to ("%{furnace%{_typeId}%.%{_furnaceId}%.contents.%{_typeLower}%}% %{furnace%{_typeId}%.%{_furnaceId}%.contents.%{_typeLower}%Type}%" parsed as an item)
  14. if {furnace%{_typeId}%.%{_furnaceId}%.contents.%{_typeLower}%} <= 0:
  15. set slot {_slot} of loop-value's current inventory to lime stained glass pane named "&a&l%{_type}%"
  16.  
  17. function updateItemAndRemoveFromLoop(p: Player, item: Item, slot: Number, furnaceTier: Integer, furnaceTierString: String, itemName: String):
  18. set {_nameLower} to {_name} in lower case
  19. set {_p}'s cursor slot to {_item}
  20. set {furnace1.%{inventory.%{_p}%.current}%.contents.%{_nameLower}%} to 0
  21. delete {furnace1.%{inventory.%{_p}%.current}%.contents.%{_nameLower}%Type}
  22. resetFuelIndicator({inventory.%{_p}%.current}, {_furnaceTierString})
  23. set slot ({_slot}) of {_p}'s current inventory to lime stained glass pane named "&a&l%{_itemName}%"
  24.  
  25. function updateInventoryFuelIndicator(furnaceId: Location, progressBar: Integer, furnaceTier: String):
  26. if {_progressBar} <= 4:
  27. if {_progressBar} >= 0:
  28. loop {inventoryList.%{_furnaceId}%.furnace%{_furnaceTier}%::*}:
  29. set slot 20+{_progressBar} of loop-value's current inventory to gray stained glass pane named "&f%20*({_progressBar}+1)%%%"
  30. if {_progressBar} > 0:
  31. set slot 20+{_progressBar}-1 of loop-value's current inventory to lime stained glass pane named "&f%20*{_progressBar}%%%"
  32. loop 4-{_progressBar} times:
  33. set slot 25-loop-value-2 of loop-value-1's current inventory to dark gray stained glass pane named "&f%100 - 20*((loop-value-2)-1)%%%"
  34.  
  35. function resetFuelIndicator(furnaceId: Location, furnaceTier: String):
  36. set {furnace1.%{_furnaceId}%.smeltTime} to 0
  37. loop {inventoryList.%{_furnaceId}%.furnace%{_furnaceTier}%::*}:
  38. loop 5 times:
  39. set slot 19 + loop-value-2 of loop-value-1's current inventory to gray stained glass pane named "&f%20*loop-value-2%%%"
  40. if {_furnaceTier} is " I":
  41. removeFurnaceFromLoop({_furnaceId}, 1)
  42. else:
  43. removeFurnaceFromLoop({_furnaceId}, 2)
  44.  
  45. function setIngotType(furnaceId: String, tier: Number):
  46. broadcast "%{furnace%{_tier}%.%{_furnaceId}%.contents.ingotType}% asdf"
  47. delete {furnace%{_tier}%.%{_furnaceId}%.contents.ingotType}
  48. if {furnace%{_tier}%.%{_furnaceId}%.contents.ingotType} is set:
  49. stop
  50. set {_type} to {furnace%{_tier}%.%{_furnaceId}%.contents.oreType}
  51. broadcast "%{_type}% asfd"
  52. if {_tier} is 2:
  53. if {_type} is "diamond ore", "emerald ore" or "nether quartz ore":
  54. replace all " ore" in {_type} with ""
  55. set {furnace2.%{_furnaceId}%.contents.ingotType} to {_type} parsed as an item
  56. stop
  57. if {_type} is "iron ore", "gold ore", "lapis ore", "redstone ore" or "coal ore":
  58. replace all " ore" in {_type} with " ingot"
  59. set {furnace%{_tier}%.%{_furnaceId}%.contents.ingotType} to {_type} parsed as an item
  60.  
  61. function removeFurnaceFromLoop(furnaceId: Location, typeId: integer):
  62. delete {furnace.%{_furnaceId}%.isAddedToLoop}
  63. remove {_furnaceId} from {furnace%{_typeId}%.loopList::*}
  64.  
  65.  
  66. function loop_furnace1():
  67. set {furnace1.looping} to false
  68. if {furnace1.looping} is not true:
  69. set {furnace1.looping} to true
  70. while {furnace1.looping} is true:
  71. if size of {furnace1.loopList::*} is 0:
  72. set {furnace1.looping} to false
  73. stop loop
  74. else:
  75. loop {furnace1.loopList::*}:
  76. if {furnace1.%loop-value%.contents.ore} < 1:
  77. updateInventoryFuelIndicator(loop-value, 0, " I")
  78. removeFurnaceFromLoop(loop-value, 1)
  79.  
  80. else:
  81. if {furnace1.%loop-value%.contents.fuelingTime} is not set:
  82. remove 1 from {furnace1.%loop-value%.contents.fuel}
  83. updateItemInSlot(loop-value, "Fuel", 40, " I", 1)
  84.  
  85. add 1 to {furnace1.%loop-value%.smeltTime}
  86. add 1 to {furnace1.%loop-value%.fuelingTime}
  87. if "%{furnace1.%loop-value%.smeltTime}/2.0%" doesn't contain ".":
  88. if {furnace1.%loop-value%.smeltTime}/2 > 4:
  89. updateInventoryFuelIndicator(loop-value, 0, " I")
  90. else:
  91. updateInventoryFuelIndicator(loop-value, "%{furnace1.%loop-value%.smeltTime}/2%" parsed as an integer, " I")
  92. if {furnace1.%loop-value%.smeltTime} > 9:
  93. delete {furnace1.%loop-value%.smeltTime}
  94. remove 1 from {furnace1.%loop-value%.contents.ore}
  95. add 1 to {furnace1.%loop-value%.contents.ingot}
  96. setIngotType(loop-value, 1)
  97. updateItemInSlot(loop-value, "Ore", 38, " I", 1)
  98. updateItemInSlot(loop-value, "Ingot", 42, " I", 1)
  99. updateInventoryFuelIndicator(loop-value, 0, " I")
  100.  
  101.  
  102. if {furnace1.%loop-value%.fuelingTime} >= {furnace1.%Loop-value%.fuelingTimeMax}:
  103. if {furnace1.%loop-value%.contents.fuel} <= 0:
  104. delete {furnace1.%loop-value%.smeltTime}
  105. removeFurnaceFromLoop(loop-value, 1)
  106. updateInventoryFuelIndicator(loop-value, 0, " I")
  107. else:
  108. delete {furnace1.%loop-value%.fuelingTime}
  109. wait 1 second
  110.  
  111. #function loop_furnace2():
  112. #if {furnace2.looping} is not true
  113.  
  114. # Returns how many ticks an item gives fuel
  115. function getFuelingTime(type: Item) :: integer:
  116. if {_type} is lava:
  117. return 20000
  118. else if {_type} is block of coal:
  119. return 16000
  120. else if {_type} is dried kelp block:
  121. return 4000
  122. else if {_type} is blaze rod:
  123. return 2400
  124. else if {_type} is coal or charcoal:
  125. return 1600
  126. else if {_type} is any boat or scaffolding:
  127. return 1200
  128. else if {_type} is any log or any planks or any wood slab or oak wood stairs or spruce wood stairs or birch wood stairs or jungle wood stairs or acacia wood stairs or dark oak wood stairs or any wooden button or any wooden trapdoor or any fence gate or any fence or ladder or crafting table or cartography table or fletching table or smithing table or loom or bookshelf or lectern or composter or chest or trapped chest or barrel or daylight detector or jukebox or note block or red mushroom block or brown mushroom block or mushroom stem or banner or bow or fishing rod:
  129. return 300
  130. else if {_type} is any wooden door or any sign or wooden pickaxe or wooden shovel or wooden hoe or wooden axe or wooden sword:
  131. return 200
  132. else if {_type} is bowl or any sapling or stick or any wool:
  133. return 100
  134. else if {_type} is any carpet:
  135. return 67
  136. else if {_type} is bamboo:
  137. return 50
  138. return 0
  139.  
  140. # Returns if the item can be smelted in the furnace, every smelt takes 10 seconds in a normal furnace
  141. function canSmelt(type: Item, tier: Integer) :: boolean:
  142. if {_type} is iron ore or gold ore or lapis ore or redstone ore or coal ore:
  143. return true
  144. else if {_tier} is 2:
  145. if {_type} is diamond ore or emerald ore or nether quartz ore:
  146. return true
  147.  
  148. return false
  149.  
  150. function outlineGui(p: Player):
  151. loop 9 times:
  152. set slot loop-value - 1 of {_p}'s current inventory to gray stained glass pane named "&8"
  153. set slot 54-loop-value of {_p}'s current inventory to gray stained glass pane named "&8"
  154.  
  155. loop 5 times:
  156. set slot loop-value * 9 of {_p}'s current inventory to gray stained glass pane named "&8"
  157. set slot loop-value * 9-1 of {_p}'s current inventory to gray stained glass pane named "&8"
  158.  
  159. function openGuiOutlined(p: Player, loc: Location, rows: integer, name: String):
  160. open chest with {_rows} rows named {_name} to {_p}
  161. set {inventory.%{_p}%.name} to uncolored {_name}
  162. set {inventory.%{_p}%.current} to {_loc}
  163. add {_p} to {inventoryList.%{_loc}%.%{inventory.%{_p}%.name}%::*}
  164. wait 2 ticks
  165. outlineGui({_p})
  166.  
  167. function guiFurnace1(p: Player, loc: Location):
  168. openGuiOutlined({_p}, {_loc}, 6, "&8Furnace I")
  169.  
  170. if {furnace1.%{_loc}%.contents.fuel} is not set:
  171. set {furnace1.%{_loc}%.contents.fuel} to 0
  172. if {furnace1.%{_loc}%.contents.ore} is not set:
  173. set {furnace1.%{_loc}%.contents.ore} to 0
  174. if {furnace1.%{_loc}%.contents.ingot} is not set:
  175. set {furnace1.%{_loc}%.contents.ingot} to 0
  176.  
  177. if {furnace1.%{_loc}%.contents.ingotType} is not set:
  178. set {furnace1.%{_loc}%.contents.ingot} to 0
  179. if {furnace1.%{_loc}%.contents.oreType} is not set:
  180. set {furnace1.%{_loc}%.contents.ore} to 0
  181. if {furnace1.%{_loc}%.contents.fuelType} is not set:
  182. set {furnace1.%{_loc}%.contents.fuel} to 0
  183.  
  184. set {furnace1.%{_loc}%.fuelingTimeMax} to 0
  185. if {furnace1.%{_loc}%.contents.fuelType} is set:
  186. set {furnace1.%{_loc}%.fuelingTimeMax} to getFuelingTime({furnace1.%{_loc}%.contents.fuelType}) / 20
  187.  
  188. set slot 38 of {_p}'s current inventory to lime stained glass pane named "&a&lOre"
  189. set slot 40 of {_p}'s current inventory to lime stained glass pane named "&a&lFuel"
  190. set slot 42 of {_p}'s current inventory to lime stained glass pane named "&a&lIngot"
  191.  
  192. if {furnace1.%{_loc}%.contents.ore} > 0:
  193. set slot 38 of {_p}'s current inventory to ("%{furnace1.%{_loc}%.contents.ore}% %{furnace1.%{_loc}%.contents.oreType}%" parsed as an item)
  194.  
  195. if {furnace1.%{_loc}%.contents.fuel} > 0:
  196. set slot 40 of {_p}'s current inventory to ("%{furnace1.%{_loc}%.contents.fuel}% %{furnace1.%{_loc}%.contents.fuelType}%" parsed as an item)
  197.  
  198. if {furnace1.%{_loc}%.contents.ingot} > 0:
  199. set slot 42 of {_p}'s current inventory to ("%{furnace1.%{_loc}%.contents.ingot}% %{furnace1.%{_loc}%.contents.ingotType}%" parsed as an item)
  200.  
  201. loop 5 times:
  202. set slot 19 + loop-value of {_p}'s current inventory to gray stained glass pane named "&f%20*loop-value%%%"
  203.  
  204. set {_progressBar} to "%{furnace1.%{_loc}%.smeltTime}/2.0%"
  205. if {_progressBar} contains ".":
  206. set {_progressBar::*} to {_progressBar} split at "."
  207. set {_progressBar} to {_progressBar::1}
  208.  
  209. loop ({_progressBar} parsed as an integer) times:
  210. set slot 20+loop-value -1 of {_p}'s current inventory to lime stained glass pane named "&f%20*loop-value%%%"
  211.  
  212. # U T I L I T I E S
  213.  
  214. function getNextNumber(base: number, addToDefault: number, max: number) :: number:
  215. set {_value} to {_base} + {_addToDefault}
  216. if {_value} > {_max}:
  217. set {_value} to {_addToDefault} - ({_max} - {_base})
  218.  
  219. return {_value}
  220.  
  221. function detectStair(facing: number, loc: Location, startValue: String) :: boolean:
  222. set {_list::*} to "westward red brick stair", "red brick stair", "eastward red brick stair" and "southward red brick stair"
  223. set {_dir} to {_facing}/2 + 1
  224.  
  225. if {_dir} > 4:
  226. remove 4 from {_dir}
  227.  
  228. if "%block at location of {_loc}%" is "%{_startValue}%%{_list::%{_dir}%}%":
  229. return true
  230. return false
  231.  
  232. function setItemInSlot(p: Player, type: String, slot: number, clickedItem: Item, item: Item, startLoop: Boolean):
  233. if {_type} is "ore" or "fuel" or "ingot":
  234. set {_p}'s cursor slot to {_clickedItem}
  235. set slot {_slot} of {_p}'s current inventory to {_item}
  236. set {_itemStack::*} to ("%{_item}%") split at " "
  237. if ({_itemStack::1} parsed as a number) is not set:
  238. set {_itemStack::3} to {_itemStack::2}
  239. set {_itemStack::2} to {_itemStack::1}
  240. set {_itemStack::1} to "1"
  241. set {furnace1.%{inventory.%{_p}%.current}%.contents.%{_type}%} to {_itemStack::1} parsed as a number
  242. set {furnace1.%{inventory.%{_p}%.current}%.contents.%{_type}%Type} to type of {_item}
  243.  
  244. if {_startLoop}:
  245. if {furnace.%{inventory.%{_p}%.current}%.isAddedToLoop} is not true:
  246. add {inventory.%{_p}%.current} to {furnace1.loopList::*}
  247. loop_furnace1()
  248. # ingots
  249.  
  250.  
  251. # F U R N A C E D E T E C T S
  252.  
  253. function isFurnace1(below: Location) :: boolean:
  254. if block at {_below} is campfire:
  255. set {_xAdjust::*} to 1, 1, 1, 0, 0, -1, -1 and -1
  256. set {_zAdjust::*} to 1, 0, -1, 1, -1, 1, 0 and -1
  257. loop 8 times:
  258. set {_checkLoc} to location at x-coordinate of {_below}+{_xAdjust::%loop-value%}, y-coordinate of {_below}, z-coordinate of {_below}+{_zAdjust::%loop-value%} in world of {_below}
  259. if block at {_checkLoc} is not red brick block:
  260. return false
  261. else:
  262. return false
  263. return true
  264.  
  265.  
  266. function isFurnace2(loc: Location) :: boolean:
  267. if block at {_loc} is not blast furnace:
  268. return false
  269.  
  270. set {_layer1::*} to air, brick slab, red brick block, air, red brick block, air, red brick block and brick slab
  271. set {_layer2::*} to air, red brick stair, eastward red brick stair and southward red brick stair
  272. set {_x::*} to 1, 1, 0, -1, -1, -1, 0 and 1
  273. set {_z::*} to 0, 1, 1, 1, 0, -1, -1 and -1
  274.  
  275. set {_base} to -2
  276. if block at location at x-coordinate of {_loc} + {_x::1}, y-coordinate of {_loc}, z-coordinate of {_loc} + {_z::1} in world of {_loc} is {_layer1::1}:
  277. set {_base} to 0
  278.  
  279. else if block at location at x-coordinate of {_loc} + {_x::3}, y-coordinate of {_loc}, z-coordinate of {_loc} + {_z::3} in world of {_loc} is {_layer1::1}:
  280. set {_base} to 2
  281.  
  282. else if block at location at x-coordinate of {_loc} + {_x::5}, y-coordinate of {_loc}, z-coordinate of {_loc} + {_z::5} in world of {_loc} is {_layer1::1}:
  283. set {_base} to 4
  284.  
  285. else if block at location at x-coordinate of {_loc} + {_x::7}, y-coordinate of {_loc}, z-coordinate of {_loc} + {_z::7} in world of {_loc} is {_layer1::1}:
  286. set {_base} to 6
  287.  
  288. set {_size} to size of {_x::*}
  289. if {_base} is not -2:
  290. loop 7 times:
  291. set {_value} to getNextNumber({_base}, loop-value, {_size})
  292. if block at location at x-coordinate of {_loc} + {_x::%{_value}%}, y-coordinate of {_loc}, z-coordinate of {_loc} + {_z::%{_value}%} in world of {_loc} is not {_layer1::%loop-value%}:
  293. return false
  294.  
  295.  
  296. set {_facingAdjust::*} to 0, 4, 6 and 8
  297. if detectStair({_base}, location 1 meters above {_loc}, "top "):
  298. loop 4 times:
  299. set {_value} to getNextNumber({_base}, loop-value*2, {_size}) - 1
  300. set {_check} to location at x-coordinate of {_loc} + {_x::%{_value}%}, y-coordinate of {_loc} + 1, z-coordinate of {_loc} + {_z::%{_value}%} in world of {_loc}
  301. set {_facing} to {_base}
  302. if {_facing} - {_facingAdjust::%loop-value%} >= 2:
  303. remove {_facingAdjust::%loop-value%} from {_facing}
  304. else:
  305. add {_facingAdjust::%loop-value%} to {_facing}
  306.  
  307. if loop-value is 1:
  308. if block at {_check} is not {_layer2::%loop-value%}:
  309. return false
  310. else if detectStair({_facing} - 2, {_check}, "") is false:
  311. return false
  312.  
  313. if block at location 2 meters above {_loc} is not red brick block:
  314. return false
  315. else:
  316. return false
  317. else:
  318. return false
  319. return true
  320.  
  321. # C L I C K E V E N T S
  322.  
  323. on rightclick on smooth stone:
  324. if player is not sneaking:
  325. if {anvil.%location of clicked block%} is true:
  326. #gui(player)
  327. cancel event
  328.  
  329. on rightclick on cauldron:
  330. if {furnace.%location of event-block%} is true:
  331. if isFurnace1(location 1 meters below clicked block):
  332. cancel event
  333. guiFurnace1(player, location of clicked block)
  334.  
  335. else:
  336. delete {furnace1.%location of clicked block%.contents.fuel}
  337. delete {furnace1.%location of clicked block%.contents.ore}
  338. delete {furnace1.%location of clicked block%.contents.ingot}
  339. delete {furnace.%location of event-block%}
  340.  
  341. on rightclick on blast furnace:
  342. if {furnace2.%location of event-block%} is true:
  343. if isFurnace2(location of clicked block):
  344. cancel event
  345. send "WIP"
  346. else:
  347. delete {furnace2.%location of event-block%}
  348.  
  349. on rightclick holding stone axe:
  350. if clicked block is smooth stone or iron block or diamond block:
  351. if {anvil.%location of event-block%} is not true:
  352. set {anvil.%location of event-block%} to true
  353. set {_tier} to "Tier I"
  354. if clicked block is smooth stone:
  355. set {anvil.%location of event-block%.tier} to 1
  356. else if clicked block is iron block:
  357. set {anvil.%location of event-block%.tier} to 2
  358. set {_tier} to "Tier II"
  359. else:
  360. set {anvil.%location of event-block%.tier} to 3
  361. set {_tier} to "Tier III"
  362.  
  363. set {_s} to 6
  364. loop all players in radius 6 around event-block:
  365. set {_v} to ({_s} - distance between loop-player and event-block)
  366. play sound "block.anvil.place" with volume {_v} and pitch 0 to loop-player
  367.  
  368. send "{@logo} Successfully created an anvil of %{_tier}%."
  369. summon armor stand at location 0.6 meters below event-block
  370. set name of last spawned armor stand to "&7Anvil"
  371. add "{Invisible:1b,NoGravity:1b,NoAI:1b,CustomNameVisible:1}" to NBT of last spawned armor stand
  372.  
  373. summon armor stand at location 0.9 meters below event-block
  374. set name of last spawned armor stand to "&7%{_tier}%"
  375. add "{Invisible:1b,NoGravity:1b,NoAI:1b,CustomNameVisible:1}" to NBT of last spawned armor stand
  376.  
  377. else if clicked block is cauldron:
  378. if {furnace.%location of event-block%} is not true:
  379. if isFurnace1(location 1 meters below clicked block):
  380. set {furnace.%location of event-block%} to true
  381. cancel event
  382.  
  383. else if clicked block is blast furnace:
  384. if {furnace.%location of event-block%} is not true:
  385. if isFurnace2(location of clicked block):
  386. set {furnace2.%location of event-block%} to true
  387. cancel event
  388. send "WIP"
  389.  
  390. on break of smooth stone or iron block or diamond block:
  391. if {anvil.%location of event-block%} is true:
  392. set {_s} to 6
  393. loop all players in radius 6 around event-block:
  394. set {_v} to ({_s} - distance between loop-player and event-block)
  395. play sound "block.anvil.place" with volume {_v} and pitch 0 to loop-player
  396. delete {anvil.%location of event-block%}
  397. delete {anvil.%location of event-block%.tier}
  398. loop entities in radius 1 around event-block:
  399. if type of loop-entity is armor stand:
  400. kill loop-entity
  401.  
  402.  
  403. on inventory click:
  404. if type of clicked inventory is chest inventory:
  405. if inventory name of player's current inventory is "&8Anvil":
  406. cancel event
  407.  
  408. else if inventory name of player's current inventory is "&8Furnace I":
  409. cancel event
  410. if clicked slot is set:
  411. if clicked item is not air:
  412. set {_item} to player's cursor slot
  413. if {_item} is not air:
  414. if name of clicked item is "&a&lOre":
  415. if canSmelt({_item}, 1):
  416. setItemInSlot(player, "ore", clicked slot, clicked item, {_item}, true)
  417. set player's cursor to air
  418. else if name of clicked item is "&a&lFuel":
  419. if getFuelingTime({_item}) > 0:
  420. setItemInSlot(player, "fuel", clicked slot, clicked item, {_item}, true)
  421. set player's cursor to air
  422. else if getFuelingTime(clicked item) > 0:
  423. if getFuelingTime({_item}) > 0:
  424. setItemInSlot(player, "fuel", clicked slot, clicked item, {_item}, false)
  425. else if canSmelt(clicked item, 1) is true:
  426. if canSmelt({_item}, 1):
  427. setItemInSlot(player, "ore", clicked slot, clicked item, {_item}, false)
  428. else if getFuelingTime(clicked item) > 0:
  429. updateItemAndRemoveFromLoop(player, clicked item, clicked slot, 1, " I", "Fuel")
  430. else if canSmelt(clicked item, 1) is true:
  431. updateItemAndRemoveFromLoop(player, clicked item, clicked slot, 1, " I", "Ore")
  432.  
  433. #ingot check
  434.  
  435. on inventory close:
  436. if {inventory.%player%.name} is set:
  437. remove player from {inventoryList.%{inventory.%player%.current}%.%{inventory.%player%.name}%::*}
  438. delete {inventory.%player%.name}
  439. delete {inventory.%player%.current}
  440.  
  441. on inventory drag:
  442. if {inventory.%player%.name} is "Anvil" or "Furnace I" or "Furnace II":
  443. cancel event
  444.  
  445.  
  446. on disable:
  447. if {furnace1.looping} is true:
  448. set {furnace1.looping} to false
  449. set {furnace1.loopStopped} to true
  450.  
  451. on enable:
  452. wait 1 second
  453. if {furnace1.loopStopped} is true:
  454. set {furnace1.looping} to true
  455. set {furnace1.loopStopped} to false
  456. #Cancel in crafting table or below
  457. #register new shaped recipe for air using iron ingot, air, iron ingot, iron ingot, chest, iron ingot, air, iron ingot, air
  458.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement