Update IC2 with recipes for vanilla items
This commit is contained in:
@@ -3084,24 +3084,110 @@ group: Tools: Painters
|
|||||||
input: Dandelion Yellow, Painter
|
input: Dandelion Yellow, Painter
|
||||||
pattern: ... 10. ...
|
pattern: ... 10. ...
|
||||||
|
|
||||||
update: Iron Ingot
|
update: Blaze Powder
|
||||||
recipe:
|
recipe:
|
||||||
input: Crushed Iron Ore, furnace fuel
|
input: Blaze Rod
|
||||||
pattern: .0. ... .1.
|
pattern: ... .0. ...
|
||||||
tools: Furnace
|
quantity: 5
|
||||||
|
tools: Macerator
|
||||||
|
|
||||||
|
update: Bone Meal
|
||||||
recipe:
|
recipe:
|
||||||
input: Purified Crushed Iron Ore, furnace fuel
|
input: Bone
|
||||||
pattern: .0. ... .1.
|
pattern: ... .0. ...
|
||||||
tools: Furnace
|
quantity: 4
|
||||||
|
tools: Macerator
|
||||||
|
|
||||||
|
update: Cobblestone
|
||||||
recipe:
|
recipe:
|
||||||
input: Iron Dust, furnace fuel
|
input: Stone
|
||||||
pattern: .0. ... .1.
|
pattern: ... .0. ...
|
||||||
tools: Furnace
|
tools: Macerator
|
||||||
|
|
||||||
update: Diamond
|
update: Diamond
|
||||||
recipe:
|
recipe:
|
||||||
input: Coal Chunk
|
input: Coal Chunk
|
||||||
pattern: ... .0. ...
|
pattern: ... .0. ...
|
||||||
tools: Compressor
|
tools: Compressor
|
||||||
|
|
||||||
|
update: Dirt
|
||||||
|
recipe:
|
||||||
|
input: Bio Chaff
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Macerator
|
||||||
|
|
||||||
|
update: Flint
|
||||||
|
recipe:
|
||||||
|
input: Gravel
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Macerator
|
||||||
|
|
||||||
|
update: Glowstone Dust
|
||||||
|
recipe:
|
||||||
|
input: Glowstone
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 4
|
||||||
|
tools: Macerator
|
||||||
|
|
||||||
|
update: Gold Ingot
|
||||||
|
recipe:
|
||||||
|
input: Crushed Gold Ore, furnace fuel
|
||||||
|
pattern: .0. ... .1.
|
||||||
|
tools: Furnace
|
||||||
|
recipe:
|
||||||
|
input: Purified Crushed Gold Ore, furnace fuel
|
||||||
|
pattern: .0. ... .1.
|
||||||
|
tools: Furnace
|
||||||
|
recipe:
|
||||||
|
input: Gold Dust, furnace fuel
|
||||||
|
pattern: .0. ... .1.
|
||||||
|
tools: Furnace
|
||||||
|
|
||||||
|
update: Iron Ingot
|
||||||
|
recipe:
|
||||||
|
input: Crushed Iron Ore, furnace fuel
|
||||||
|
pattern: .0. ... .1.
|
||||||
|
tools: Furnace
|
||||||
|
recipe:
|
||||||
|
input: Purified Crushed Iron Ore, furnace fuel
|
||||||
|
pattern: .0. ... .1.
|
||||||
|
tools: Furnace
|
||||||
|
recipe:
|
||||||
|
input: Iron Dust, furnace fuel
|
||||||
|
pattern: .0. ... .1.
|
||||||
|
tools: Furnace
|
||||||
|
|
||||||
|
update: Nether Quartz
|
||||||
|
recipe:
|
||||||
|
input: Quartz Stairs
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 6
|
||||||
|
tools: Macerator
|
||||||
|
recipe:
|
||||||
|
input: Block of Quartz
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 4
|
||||||
|
tools: Macerator
|
||||||
|
|
||||||
|
update: Sand
|
||||||
|
recipe:
|
||||||
|
input: Cobblestone
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Macerator
|
||||||
|
recipe:
|
||||||
|
input: Sandstone
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Macerator
|
||||||
|
|
||||||
|
update: Snowball
|
||||||
|
recipe:
|
||||||
|
input: Ice
|
||||||
|
pattern: ... .0. ...
|
||||||
|
tools: Macerator
|
||||||
|
|
||||||
|
update: String
|
||||||
|
recipe:
|
||||||
|
input: Wool
|
||||||
|
pattern: ... .0. ...
|
||||||
|
quantity: 2
|
||||||
|
tools: Macerator
|
||||||
@@ -211,11 +211,15 @@ module.exports = class ModVersionParserV1 extends CommandParserVersionBase
|
|||||||
modVersion.eachGroup (group)=>
|
modVersion.eachGroup (group)=>
|
||||||
@_unparseGroup builder, modVersion, group
|
@_unparseGroup builder, modVersion, group
|
||||||
|
|
||||||
for itemSlugText, recipeList of modVersion.findExternalRecipes()
|
externalRecipes = modVersion.findExternalRecipes()
|
||||||
|
keys = _.keys(externalRecipes).sort()
|
||||||
|
for itemSlugText in keys
|
||||||
|
recipeList = externalRecipes[itemSlugText]
|
||||||
|
|
||||||
builder
|
builder
|
||||||
.line 'update: ', modVersion.findName ItemSlug.slugify(itemSlugText)
|
.line 'update: ', modVersion.findName ItemSlug.slugify(itemSlugText)
|
||||||
.indent()
|
.indent()
|
||||||
.loop(recipeList, delimiter:'\n', onEach:(b, r)=> @_unparseRecipe(b, r))
|
.loop(recipeList, delimiter:'', onEach:(b, r)=> @_unparseRecipe(b, r))
|
||||||
.outdent()
|
.outdent()
|
||||||
.line()
|
.line()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user