Advertisement
Guest User

Untitled

a guest
Apr 18th, 2015
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. local sortkey = -7889
  2. local wormspider_recipe = Recipe("wormspider", {Ingredient("petals", 3), Ingredient("pinecone", 3), Ingredient("goldnugget", 1)}, CUSTOM_RECIPETABS.WORM_EGGS, TECH.NONE, nil, nil, nil, nil, "wormcommander")
  3. wormspider_recipe.atlas = resolvefilepath("images/inventoryimages/wormspider.xml")
  4. wormspider_recipe.sortkey = sortkey
  5. local wormfighter_recipe = Recipe("worm_fighter", {Ingredient("log", 5), Ingredient("smallmeat", 3), Ingredient("corn", 1)}, CUSTOM_RECIPETABS.WORM_EGGS, {SCIENCE = 1}, nil, nil, nil, nil, "wormcommander")
  6. wormfighter_recipe.atlas = resolvefilepath("images/inventoryimages/worm_fighter.xml")
  7. wormfighter_recipe.sortkey = sortkey + 1
  8. local wormspiderling_recipe = Recipe("worm_spiderling", {Ingredient("seeds", 5), Ingredient("silk", 3), Ingredient("rope", 1)}, CUSTOM_RECIPETABS.WORM_EGGS, {SCIENCE = 1}, nil, nil, nil, nil, "wormcommander")
  9. wormspiderling_recipe.atlas = resolvefilepath("images/inventoryimages/worm_spiderling.xml")
  10. wormspiderling_recipe.sortkey = sortkey + 2
  11. local wormrocky_recipe = Recipe("worm_rocky", {Ingredient("cutstone", 5), Ingredient("nitre", 3), Ingredient("flint", 3)}, CUSTOM_RECIPETABS.WORM_EGGS, {SCIENCE = 2}, nil, nil, nil, nil, "wormcommander")
  12. wormrocky_recipe.atlas = resolvefilepath("images/inventoryimages/worm_rocky.xml")
  13. wormrocky_recipe.sortkey = sortkey + 3
  14. local wormflying_recipe = Recipe("worm_flying", {Ingredient("silk", 6), Ingredient("spidergland", 3), Ingredient("papyrus", 2)}, CUSTOM_RECIPETABS.WORM_EGGS, {SCIENCE = 2}, nil, nil, nil, nil, "wormcommander")
  15. wormflying_recipe.atlas = resolvefilepath("images/inventoryimages/worm_flying.xml")
  16. wormflying_recipe.sortkey = sortkey + 4
  17. local wormwarrior_recipe = Recipe("worm_warrior", {Ingredient("stinger", 5), Ingredient("beefalowool", 5), Ingredient("trap_teeth", 1)}, CUSTOM_RECIPETABS.WORM_EGGS, {MAGIC = 2}, nil, nil, nil, nil, "wormcommander")
  18. wormwarrior_recipe.atlas = resolvefilepath("images/inventoryimages/worm_warrior.xml")
  19. wormwarrior_recipe.sortkey = sortkey + 5
  20. local wormassassin_recipe = Recipe("worm_assassin", {Ingredient("nightmarefuel", 5), Ingredient("monstermeat_dried", 5), Ingredient("tentaclespike", 1)}, CUSTOM_RECIPETABS.WORM_EGGS, {MAGIC = 2}, nil, nil, nil, nil, "wormcommander")
  21. wormassassin_recipe.atlas = resolvefilepath("images/inventoryimages/worm_assassin.xml")
  22. wormassassin_recipe.sortkey = sortkey + 6
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement