Module:RecipesData

来自Don't Starve Wiki
跳转到导航 跳转到搜索

返回所有配方的列表

配方的格式:

{
    builder_tag="制作者所需的标签",

    ingredients={ "原材料prefab"=<原材料数量>, "原材料prefab"=<原材料数量>... }, -- 一般不超过三个,原版游戏唯一一个例外是蜂王冠,但是那个配方是拆解配方

    product={ "产物prefab"=<产物数量> },

    tech={ "需要的科技类型"=<所需等级> }, -- 可能为多个,但原版游戏中只有蓝图解锁才会遇到(比如龙鳞火炉)

    is_deconstruction_recipe=true -- 如果是无法合成,只能拆解的物品则为 true,否则为 nil
}


使用以下代码生成该列表(保存在 ~/.klei/DoNotStarveTogether/<your id>/client_save/recipes_data.lua 里):

local ingredients_tables = {
    "ingredients",
    "character_ingredients",
    "tech_ingredients",
}
local res = {}
for name, rec in pairs(AllRecipes) do
    local data = {
        product = {
            [rec.product] = rec.numtogive,
        },
        ingredients = {},
        builder_tag = rec.builder_tag
    }
    for _, ingredients in ipairs(ingredients_tables) do
        for _, ingredient in ipairs(rec[ingredients]) do
            data.ingredients[ingredient.type] = ingredient.amount
        end
    end
    for tech, level in pairs(rec.level) do
        if level > 0 then
            if not data.tech then
                data.tech = {}
            end
            data.tech[tech] = level
        end
    end
    if rec.is_deconstruction_recipe then
        data.is_deconstruction_recipe = true
    end
    res[name] = data
end
SavePersistentString("recipes_data.lua", DataDumper(res))

return {
  abigail_flower={
    builder_tag="ghostlyfriend",
    ingredients={ ghostflower=1, nightmarefuel=1 },
    product={ abigail_flower=1 } 
  },
  alterguardianhat={
    ingredients={ alterguardianhatshard=5 },
    is_deconstruction_recipe=true,
    product={ alterguardianhat=1 } 
  },
  amulet={
    ingredients={ goldnugget=3, nightmarefuel=2, redgem=1 },
    product={ amulet=1 },
    tech={ MAGIC=2 } 
  },
  anchor={
    ingredients={ boards=2, cutstone=3, rope=3 },
    is_deconstruction_recipe=true,
    product={ anchor=1 } 
  },
  anchor_item={
    ingredients={ boards=2, cutstone=3, rope=3 },
    product={ anchor_item=1 },
    tech={ SEAFARING=1 } 
  },
  antlionhat={
    ingredients={ beefalowool=5, pigskin=3, townportaltalisman=1 },
    product={ antlionhat=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  archive_resonator={
    ingredients={ moonrocknugget=1, thulecite=1 },
    is_deconstruction_recipe=true,
    product={ archive_resonator=1 } 
  },
  archive_resonator_item={
    ingredients={ moonrocknugget=1, thulecite=1 },
    product={ archive_resonator_item=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  armor_bramble={
    builder_tag="plantkin",
    ingredients={ livinglog=2, stinger=4 },
    product={ armor_bramble=1 } 
  },
  armor_lunarplant={
    ingredients={ lunarplant_husk=4, purebrilliance=4 },
    product={ armor_lunarplant=1 },
    tech={ LUNARFORGING=2 } 
  },
  armor_sanity={
    ingredients={ nightmarefuel=5, papyrus=3 },
    product={ armor_sanity=1 },
    tech={ MAGIC=3 } 
  },
  armor_voidcloth={
    ingredients={ horrorfuel=4, voidcloth=4 },
    product={ armor_voidcloth=1 },
    tech={ SHADOWFORGING=2 } 
  },
  armordragonfly={
    ingredients={ armorwood=1, dragon_scales=1, pigskin=3 },
    product={ armordragonfly=1 },
    tech={ SCIENCE=2 } 
  },
  armordreadstone={
    ingredients={ dreadstone=6, horrorfuel=4 },
    product={ armordreadstone=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  armorgrass={ ingredients={ cutgrass=10, twigs=2 }, product={ armorgrass=1 } },
  armormarble={
    ingredients={ marble=6, rope=2 },
    product={ armormarble=1 },
    tech={ SCIENCE=2 } 
  },
  armorruins={
    ingredients={ nightmarefuel=4, thulecite=6 },
    product={ armorruins=1 },
    tech={ ANCIENT=4 } 
  },
  armorskeleton={
    ingredients={ boneshard=10, nightmarefuel=6 },
    is_deconstruction_recipe=true,
    product={ armorskeleton=1 } 
  },
  armorslurper={
    ingredients={ nightmarefuel=2, rope=2, slurper_pelt=6 },
    product={ armorslurper=1 },
    tech={ MAGIC=3 } 
  },
  armorwood={ ingredients={ log=8, rope=2 }, product={ armorwood=1 }, tech={ SCIENCE=1 } },
  arrowsign_post={ ingredients={ boards=1 }, product={ arrowsign_post=1 }, tech={ SCIENCE=1 } },
  axe={ ingredients={ flint=1, twigs=1 }, product={ axe=1 } },
  backpack={
    ingredients={ cutgrass=4, twigs=4 },
    product={ backpack=1 },
    tech={ SCIENCE=1 } 
  },
  balloon={
    builder_tag="balloonomancer",
    ingredients={ balloons_empty=0, decrease_sanity=5 },
    product={ balloon=1 } 
  },
  balloonhat={
    builder_tag="balloonomancer",
    ingredients={ balloons_empty=0, decrease_sanity=5 },
    product={ balloonhat=1 } 
  },
  balloonparty={
    builder_tag="balloonomancer",
    ingredients={ balloons_empty=0, decrease_sanity=5 },
    product={ balloonparty=1 } 
  },
  balloons_empty={
    builder_tag="balloonomancer",
    ingredients={ waterballoon=4 },
    product={ balloons_empty=1 } 
  },
  balloonspeed={
    builder_tag="balloonomancer",
    ingredients={ balloons_empty=0, decrease_sanity=5 },
    product={ balloonspeed=1 } 
  },
  balloonvest={
    builder_tag="balloonomancer",
    ingredients={ balloons_empty=0, decrease_sanity=5 },
    product={ balloonvest=1 } 
  },
  bandage={ ingredients={ honey=2, papyrus=1 }, product={ bandage=1 }, tech={ SCIENCE=2 } },
  batbat={
    ingredients={ batwing=3, livinglog=2, purplegem=1 },
    product={ batbat=1 },
    tech={ MAGIC=3 } 
  },
  bathbomb={
    ingredients={ moon_tree_blossom=6, nitre=1 },
    product={ bathbomb=1 },
    tech={ CELESTIAL=3 } 
  },
  battlesong_durability={
    builder_tag="battlesinger",
    ingredients={ featherpencil=1, papyrus=1, sewing_kit=1 },
    product={ battlesong_durability=1 } 
  },
  battlesong_fireresistance={
    builder_tag="battlesinger",
    ingredients={ featherpencil=1, oceanfish_small_9_inv=1, papyrus=1 },
    product={ battlesong_fireresistance=1 } 
  },
  battlesong_healthgain={
    builder_tag="battlesinger",
    ingredients={ amulet=1, featherpencil=1, papyrus=1 },
    product={ battlesong_healthgain=1 } 
  },
  battlesong_instant_panic={
    builder_tag="battlesinger",
    ingredients={ featherpencil=1, papyrus=1, purplegem=1 },
    product={ battlesong_instant_panic=1 } 
  },
  battlesong_instant_taunt={
    builder_tag="battlesinger",
    ingredients={ featherpencil=1, papyrus=1, tomato=1 },
    product={ battlesong_instant_taunt=1 } 
  },
  battlesong_sanityaura={
    builder_tag="battlesinger",
    ingredients={ featherpencil=1, nightmare_timepiece=1, papyrus=1 },
    product={ battlesong_sanityaura=1 } 
  },
  battlesong_sanitygain={
    builder_tag="battlesinger",
    ingredients={ featherpencil=1, moonbutterflywings=1, papyrus=1 },
    product={ battlesong_sanitygain=1 } 
  },
  bearger_fur={ ingredients={ furtuft=90 }, product={ bearger_fur=3 }, tech={ SCIENCE=2 } },
  beargervest={
    ingredients={ bearger_fur=1, rope=2, sweatervest=1 },
    product={ beargervest=1 },
    tech={ SCIENCE=2 } 
  },
  bedroll_furry={
    ingredients={ bedroll_straw=1, manrabbit_tail=2 },
    product={ bedroll_furry=1 },
    tech={ SCIENCE=2 } 
  },
  bedroll_straw={
    ingredients={ cutgrass=6, rope=1 },
    product={ bedroll_straw=1 },
    tech={ SCIENCE=1 } 
  },
  beebox={
    ingredients={ bee=4, boards=2, honeycomb=1 },
    product={ beebox=1 },
    tech={ SCIENCE=2 } 
  },
  beef_bell={
    ingredients={ flint=1, goldnugget=3 },
    product={ beef_bell=1 },
    tech={ SCIENCE=1 } 
  },
  beefalo_groomer={
    ingredients={ beefalowool=2, boards=4 },
    product={ beefalo_groomer=1 },
    tech={ SCIENCE=2 } 
  },
  beefalohat={
    ingredients={ beefalowool=8, horn=1 },
    product={ beefalohat=1 },
    tech={ SCIENCE=1 } 
  },
  beehat={ ingredients={ rope=1, silk=8 }, product={ beehat=1 }, tech={ SCIENCE=2 } },
  beemine={
    ingredients={ bee=4, boards=1, flint=1 },
    product={ beemine=1 },
    tech={ SCIENCE=2 } 
  },
  beeswax={ ingredients={ honeycomb=1 }, product={ beeswax=1 }, tech={ SCIENCE=2 } },
  bernie_inactive={
    builder_tag="pyromaniac",
    ingredients={ beardhair=2, beefalowool=2, silk=2 },
    product={ bernie_inactive=1 } 
  },
  birdcage={
    ingredients={ goldnugget=6, papyrus=2, seeds=2 },
    product={ birdcage=1 },
    tech={ SCIENCE=2 } 
  },
  birdtrap={ ingredients={ silk=4, twigs=3 }, product={ birdtrap=1 }, tech={ SCIENCE=1 } },
  blowdart_fire={
    ingredients={ charcoal=1, cutreeds=2, feather_robin=1 },
    product={ blowdart_fire=1 },
    tech={ SCIENCE=2 } 
  },
  blowdart_pipe={
    ingredients={ cutreeds=2, feather_robin_winter=1, houndstooth=1 },
    product={ blowdart_pipe=1 },
    tech={ SCIENCE=2 } 
  },
  blowdart_sleep={
    ingredients={ cutreeds=2, feather_crow=1, stinger=1 },
    product={ blowdart_sleep=1 },
    tech={ SCIENCE=2 } 
  },
  blowdart_yellow={
    ingredients={ cutreeds=2, feather_canary=1, goldnugget=1 },
    product={ blowdart_yellow=1 },
    tech={ SCIENCE=2 } 
  },
  blue_mushroomhat={
    ingredients={ blue_cap=6 },
    product={ blue_mushroomhat=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  blueamulet={
    ingredients={ bluegem=1, goldnugget=3 },
    product={ blueamulet=1 },
    tech={ MAGIC=2 } 
  },
  bluemooneye={
    ingredients={ bluegem=1, moonrockcrater=1 },
    is_deconstruction_recipe=true,
    product={ bluemooneye=1 } 
  },
  blueprint_craftingset_ruins_builder={
    ingredients={ papyrus=3 },
    product={ blueprint_craftingset_ruins_builder=1 },
    tech={ ANCIENT=2 } 
  },
  blueprint_craftingset_ruinsglow_builder={
    ingredients={ papyrus=3 },
    product={ blueprint_craftingset_ruinsglow_builder=1 },
    tech={ ANCIENT=2 } 
  },
  boards={ ingredients={ log=4 }, product={ boards=1 }, tech={ SCIENCE=1 } },
  boat_bumper_kelp={
    ingredients={ cutgrass=3, kelp=3 },
    is_deconstruction_recipe=true,
    product={ boat_bumper_kelp=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  boat_bumper_kelp_kit={ ingredients={ cutgrass=3, kelp=3 }, product={ boat_bumper_kelp_kit=1 } },
  boat_bumper_shell={
    ingredients={ rope=1, slurtle_shellpieces=3 },
    is_deconstruction_recipe=true,
    product={ boat_bumper_shell=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  boat_bumper_shell_kit={
    ingredients={ rope=1, slurtle_shellpieces=3 },
    product={ boat_bumper_shell_kit=1 },
    tech={ SEAFARING=1 } 
  },
  boat_cannon={
    ingredients={ charcoal=4, palmcone_scale=4, rope=1 },
    is_deconstruction_recipe=true,
    product={ boat_cannon=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  boat_cannon_kit={
    ingredients={ charcoal=4, palmcone_scale=4, rope=1 },
    product={ boat_cannon_kit=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  boat_grass_item={ ingredients={ cutgrass=8, twigs=2 }, product={ boat_grass_item=1 } },
  boat_item={ ingredients={ boards=4 }, product={ boat_item=1 }, tech={ SEAFARING=1 } },
  boat_magnet={
    ingredients={ boards=2, cutstone=2, transistor=1, trinket_6=1 },
    is_deconstruction_recipe=true,
    product={ boat_magnet=1 } 
  },
  boat_magnet_beacon={
    ingredients={ cutstone=2, transistor=1, trinket_6=1 },
    product={ boat_magnet_beacon=1 },
    tech={ SEAFARING=1 } 
  },
  boat_magnet_kit={
    ingredients={ boards=2, cutstone=2, transistor=1, trinket_6=1 },
    product={ boat_magnet_kit=1 },
    tech={ SEAFARING=1 } 
  },
  boat_rotator={
    ingredients={ boards=2, gears=1, rope=1 },
    is_deconstruction_recipe=true,
    product={ boat_rotator=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  boat_rotator_kit={
    ingredients={ boards=2, gears=1, rope=1 },
    product={ boat_rotator_kit=1 },
    tech={ SEAFARING=1 } 
  },
  boatpatch={ ingredients={ log=2, stinger=1 }, product={ boatpatch=1 } },
  bodypillow_beefalowool={
    ingredients={ beefalowool=3, lucky_goldnugget=4, silk=2 },
    product={ bodypillow_beefalowool=1 },
    tech={ RABBITOFFERING=3 } 
  },
  bodypillow_kelp={
    ingredients={ kelp=3, lucky_goldnugget=3, silk=2 },
    product={ bodypillow_kelp=1 },
    tech={ RABBITOFFERING=3 } 
  },
  bodypillow_petals={
    ingredients={ petals=5, silk=2 },
    product={ bodypillow_petals=1 },
    tech={ RABBITOFFERING=3 } 
  },
  bodypillow_steelwool={
    ingredients={ lucky_goldnugget=6, silk=2, steelwool=2 },
    product={ bodypillow_steelwool=1 },
    tech={ RABBITOFFERING=3 } 
  },
  bomb_lunarplant={
    ingredients={ lunarplant_husk=4, moonglass_charged=1, purebrilliance=4 },
    product={ bomb_lunarplant=6 },
    tech={ LUNARFORGING=2 } 
  },
  book_bees={
    builder_tag="bookbuilder",
    ingredients={ honey=4, papyrus=2, stinger=8 },
    product={ book_bees=1 },
    tech={ BOOKCRAFT=1 } 
  },
  book_birds={
    builder_tag="bookbuilder",
    ingredients={ bird_egg=2, papyrus=2 },
    product={ book_birds=1 } 
  },
  book_brimstone={
    builder_tag="bookbuilder",
    ingredients={ papyrus=2, redgem=1 },
    product={ book_brimstone=1 },
    tech={ MAGIC=3 } 
  },
  book_fire={
    builder_tag="bookbuilder",
    ingredients={ book_brimstone=1, featherpencil=1, papyrus=2 },
    product={ book_fire=1 },
    tech={ BOOKCRAFT=1 } 
  },
  book_fish={
    builder_tag="bookbuilder",
    ingredients={ oceanfishingbobber_ball=2, papyrus=2 },
    product={ book_fish=1 } 
  },
  book_gardening={
    ingredients={ papyrus=2, poop=1, seeds=1 },
    is_deconstruction_recipe=true,
    product={ book_gardening=1 } 
  },
  book_horticulture={
    builder_tag="bookbuilder",
    ingredients={ papyrus=2, poop=5, seeds=5 },
    product={ book_horticulture=1 },
    tech={ SCIENCE=1 } 
  },
  book_horticulture_upgraded={
    builder_tag="bookbuilder",
    ingredients={ book_horticulture=1, featherpencil=1, papyrus=2 },
    product={ book_horticulture_upgraded=1 },
    tech={ BOOKCRAFT=1 } 
  },
  book_light={
    builder_tag="bookbuilder",
    ingredients={ lightbulb=2, papyrus=2 },
    product={ book_light=1 } 
  },
  book_light_upgraded={
    builder_tag="bookbuilder",
    ingredients={ book_light=1, featherpencil=1, papyrus=2 },
    product={ book_light_upgraded=1 },
    tech={ BOOKCRAFT=1 } 
  },
  book_moon={
    builder_tag="bookbuilder",
    ingredients={ moonbutterflywings=2, opalpreciousgem=1, papyrus=2 },
    product={ book_moon=1 },
    tech={ BOOKCRAFT=1 } 
  },
  book_rain={
    builder_tag="bookbuilder",
    ingredients={ goose_feather=2, papyrus=2 },
    product={ book_rain=1 } 
  },
  book_research_station={
    builder_tag="bookbuilder",
    ingredients={ papyrus=2, transistor=1 },
    product={ book_research_station=1 } 
  },
  book_silviculture={
    builder_tag="bookbuilder",
    ingredients={ livinglog=1, papyrus=2 },
    product={ book_silviculture=1 },
    tech={ SCIENCE=3 } 
  },
  book_sleep={
    builder_tag="bookbuilder",
    ingredients={ nightmarefuel=2, papyrus=2 },
    product={ book_sleep=1 },
    tech={ MAGIC=2 } 
  },
  book_temperature={
    builder_tag="bookbuilder",
    ingredients={ heatrock=1, papyrus=2 },
    product={ book_temperature=1 },
    tech={ BOOKCRAFT=1 } 
  },
  book_tentacles={
    builder_tag="bookbuilder",
    ingredients={ papyrus=2, tentaclespots=1 },
    product={ book_tentacles=1 },
    tech={ SCIENCE=3 } 
  },
  book_web={
    builder_tag="bookbuilder",
    ingredients={ papyrus=2, silk=8 },
    product={ book_web=1 },
    tech={ BOOKCRAFT=1 } 
  },
  bookstation={
    builder_tag="bookbuilder",
    ingredients={ featherpencil=1, livinglog=2, papyrus=4 },
    product={ bookstation=1 } 
  },
  boomerang={
    ingredients={ boards=1, charcoal=1, silk=1 },
    product={ boomerang=1 },
    tech={ SCIENCE=2 } 
  },
  brush={
    ingredients={ goldnugget=2, steelwool=1, walrus_tusk=1 },
    product={ brush=1 },
    tech={ SCIENCE=2 } 
  },
  bugnet={
    ingredients={ rope=1, silk=2, twigs=4 },
    product={ bugnet=1 },
    tech={ SCIENCE=1 } 
  },
  bundlewrap={
    ingredients={ rope=1, waxpaper=1 },
    product={ bundlewrap=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  bushhat={
    ingredients={ dug_berrybush=1, rope=1, strawhat=1 },
    product={ bushhat=1 },
    tech={ SCIENCE=2 } 
  },
  campfire={ ingredients={ cutgrass=3, log=2 }, product={ campfire=1 } },
  candybag={ ingredients={ cutgrass=6 }, product={ candybag=1 }, tech={ SCIENCE=10 } },
  cane={
    ingredients={ goldnugget=2, twigs=4, walrus_tusk=1 },
    product={ cane=1 },
    tech={ SCIENCE=2 } 
  },
  cannonball_rock_item={
    ingredients={ cutstone=2, gunpowder=1 },
    product={ cannonball_rock_item=4 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  carnival_gametoken={
    ingredients={ seeds=1 },
    product={ carnival_gametoken=1 },
    tech={ CARNIVAL_HOSTSHOP=3 } 
  },
  carnival_gametoken_multiple={
    ingredients={ goldnugget=1 },
    product={ carnival_gametoken=3 },
    tech={ CARNIVAL_HOSTSHOP=3 } 
  },
  carnival_plaza={
    ingredients={ carnival_plaza_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnival_plaza=1 } 
  },
  carnival_plaza_kit={
    ingredients={ goldnugget=1, seeds=3 },
    product={ carnival_plaza_kit=1 },
    tech={ CARNIVAL_HOSTSHOP=1 } 
  },
  carnival_popcorn={
    ingredients={ carnival_prizeticket=12 },
    product={ corn_cooked=3 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnival_prizebooth={
    ingredients={ carnival_prizebooth_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnival_prizebooth=1 } 
  },
  carnival_prizebooth_kit={
    ingredients={ goldnugget=1, seeds=3 },
    product={ carnival_prizebooth_kit=1 },
    tech={ CARNIVAL_HOSTSHOP=3 } 
  },
  carnival_seedpacket={
    ingredients={ carnival_prizeticket=12 },
    product={ carnival_seedpacket=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnival_vest_a={
    ingredients={ carnival_prizeticket=24 },
    product={ carnival_vest_a=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnival_vest_b={
    ingredients={ carnival_prizeticket=48 },
    product={ carnival_vest_b=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnival_vest_c={
    ingredients={ carnival_prizeticket=48 },
    product={ carnival_vest_c=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnivalcannon_confetti={
    ingredients={ carnivalcannon_confetti_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivalcannon_confetti=1 } 
  },
  carnivalcannon_confetti_kit={
    ingredients={ carnival_prizeticket=18 },
    product={ carnivalcannon_confetti_kit=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnivalcannon_sparkle={
    ingredients={ carnivalcannon_sparkle_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivalcannon_sparkle=1 } 
  },
  carnivalcannon_sparkle_kit={
    ingredients={ carnival_prizeticket=18 },
    product={ carnivalcannon_sparkle_kit=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnivalcannon_streamer={
    ingredients={ carnivalcannon_streamer_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivalcannon_streamer=1 } 
  },
  carnivalcannon_streamer_kit={
    ingredients={ carnival_prizeticket=18 },
    product={ carnivalcannon_streamer_kit=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnivaldecor_banner={
    ingredients={ carnivaldecor_banner_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivaldecor_banner=1 } 
  },
  carnivaldecor_banner_kit={
    ingredients={ carnival_prizeticket=24 },
    product={ carnivaldecor_banner_kit=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnivaldecor_eggride1={
    ingredients={ carnivaldecor_eggride1_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivaldecor_eggride1=1 } 
  },
  carnivaldecor_eggride1_kit={
    ingredients={ carnival_prizeticket=36 },
    product={ carnivaldecor_eggride1_kit=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnivaldecor_eggride2={
    ingredients={ carnivaldecor_eggride2_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivaldecor_eggride2=1 } 
  },
  carnivaldecor_eggride2_kit={
    ingredients={ carnival_prizeticket=36 },
    product={ carnivaldecor_eggride2_kit=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnivaldecor_eggride3={
    ingredients={ carnivaldecor_eggride3_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivaldecor_eggride3=1 } 
  },
  carnivaldecor_eggride3_kit={
    ingredients={ carnival_prizeticket=36 },
    product={ carnivaldecor_eggride3_kit=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnivaldecor_eggride4={
    ingredients={ carnivaldecor_eggride4_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivaldecor_eggride4=1 } 
  },
  carnivaldecor_eggride4_kit={
    ingredients={ carnival_prizeticket=36 },
    product={ carnivaldecor_eggride4_kit=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnivaldecor_figure={
    ingredients={ carnivaldecor_figure_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivaldecor_figure=1 } 
  },
  carnivaldecor_figure_kit={
    ingredients={ carnival_prizeticket=12 },
    product={ carnivaldecor_figure_kit=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnivaldecor_figure_kit_season2={
    ingredients={ carnival_prizeticket=12 },
    product={ carnivaldecor_figure_kit_season2=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnivaldecor_figure_season2={
    ingredients={ carnivaldecor_figure_kit_season2=1 },
    is_deconstruction_recipe=true,
    product={ carnivaldecor_figure_season2=1 } 
  },
  carnivaldecor_lamp={
    ingredients={ carnivaldecor_lamp_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivaldecor_lamp=1 } 
  },
  carnivaldecor_lamp_kit={
    ingredients={ carnival_prizeticket=48 },
    product={ carnivaldecor_lamp_kit=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnivaldecor_plant={
    ingredients={ carnivaldecor_plant_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivaldecor_plant=1 } 
  },
  carnivaldecor_plant_kit={
    ingredients={ carnival_prizeticket=24 },
    product={ carnivaldecor_plant_kit=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnivalfood_corntea={
    ingredients={ carnival_prizeticket=12 },
    product={ carnivalfood_corntea=1 },
    tech={ CARNIVAL_PRIZESHOP=1 } 
  },
  carnivalgame_feedchicks_kit={
    ingredients={ goldnugget=1, seeds=3 },
    product={ carnivalgame_feedchicks_kit=1 },
    tech={ CARNIVAL_HOSTSHOP=3 } 
  },
  carnivalgame_feedchicks_station={
    ingredients={ carnivalgame_feedchicks_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivalgame_feedchicks_station=1 } 
  },
  carnivalgame_herding_kit={
    ingredients={ goldnugget=1, seeds=3 },
    product={ carnivalgame_herding_kit=1 },
    tech={ CARNIVAL_HOSTSHOP=3 } 
  },
  carnivalgame_herding_station={
    ingredients={ carnivalgame_herding_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivalgame_herding_station=1 } 
  },
  carnivalgame_memory_kit={
    ingredients={ goldnugget=1, seeds=3 },
    product={ carnivalgame_memory_kit=1 },
    tech={ CARNIVAL_HOSTSHOP=3 } 
  },
  carnivalgame_memory_station={
    ingredients={ carnivalgame_memory_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivalgame_memory_station=1 } 
  },
  carnivalgame_puckdrop_kit={
    ingredients={ goldnugget=1, seeds=3 },
    product={ carnivalgame_puckdrop_kit=1 },
    tech={ CARNIVAL_HOSTSHOP=3 } 
  },
  carnivalgame_puckdrop_station={
    ingredients={ carnivalgame_puckdrop_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivalgame_puckdrop_station=1 } 
  },
  carnivalgame_shooting_kit={
    ingredients={ goldnugget=1, seeds=3 },
    product={ carnivalgame_shooting_kit=1 },
    tech={ CARNIVAL_HOSTSHOP=3 } 
  },
  carnivalgame_shooting_station={
    ingredients={ carnivalgame_shooting_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivalgame_shooting_station=1 } 
  },
  carnivalgame_wheelspin_kit={
    ingredients={ goldnugget=1, seeds=3 },
    product={ carnivalgame_wheelspin_kit=1 },
    tech={ CARNIVAL_HOSTSHOP=3 } 
  },
  carnivalgame_wheelspin_station={
    ingredients={ carnivalgame_wheelspin_kit=1 },
    is_deconstruction_recipe=true,
    product={ carnivalgame_wheelspin_station=1 } 
  },
  cartographydesk={
    ingredients={ boards=4, compass=1 },
    product={ cartographydesk=1 },
    tech={ SCIENCE=1 } 
  },
  catcoonhat={
    ingredients={ coontail=1, silk=4 },
    product={ catcoonhat=1 },
    tech={ SCIENCE=2 } 
  },
  cattoy_mouse={
    ingredients={ lucky_goldnugget=6 },
    product={ cattoy_mouse=1 },
    tech={ CATCOONOFFERING=3 } 
  },
  chesspiece_anchor_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_anchor_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_anchor_sketch={
    ingredients={ papyrus=1 },
    product={ chesspiece_anchor_sketch=1 },
    tech={ SEAFARING=2 } 
  },
  chesspiece_antlion_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_antlion_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_bearger_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_bearger_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_beefalo_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_beefalo_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_beefalo_sketch={
    ingredients={ lucky_goldnugget=8 },
    product={ chesspiece_beefalo_sketch=1 },
    tech={ BEEFOFFERING=3 } 
  },
  chesspiece_beequeen_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_beequeen_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_bishop_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_bishop_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_butterfly_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_butterfly_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_butterfly_sketch={
    ingredients={ papyrus=1 },
    product={ chesspiece_butterfly_sketch=1 },
    tech={ CELESTIAL=3 } 
  },
  chesspiece_carrat_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_carrat_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_carrat_sketch={
    ingredients={ lucky_goldnugget=8 },
    product={ chesspiece_carrat_sketch=1 },
    tech={ CARRATOFFERING=3 } 
  },
  chesspiece_catcoon_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_catcoon_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_catcoon_sketch={
    ingredients={ lucky_goldnugget=8 },
    product={ chesspiece_catcoon_sketch=1 },
    tech={ CATCOONOFFERING=3 } 
  },
  chesspiece_clayhound_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_clayhound_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_clayhound_sketch={
    ingredients={ lucky_goldnugget=8 },
    product={ chesspiece_clayhound_sketch=1 },
    tech={ WARGOFFERING=3 } 
  },
  chesspiece_claywarg_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_claywarg_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_claywarg_sketch={
    ingredients={ lucky_goldnugget=16 },
    product={ chesspiece_claywarg_sketch=1 },
    tech={ WARGOFFERING=3 } 
  },
  chesspiece_crabking_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_crabking_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_daywalker_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_daywalker_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_deerclops_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_deerclops_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_dragonfly_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_dragonfly_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_eyeofterror_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_eyeofterror_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_formal_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_formal_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_guardianphase3_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_guardianphase3_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_hornucopia_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_hornucopia_builder=1 },
    tech={ SCULPTING=1 } 
  },
  chesspiece_kitcoon_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_kitcoon_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_kitcoon_sketch={
    ingredients={ lucky_goldnugget=8 },
    product={ chesspiece_kitcoon_sketch=1 },
    tech={ CATCOONOFFERING=3 } 
  },
  chesspiece_klaus_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_klaus_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_knight_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_knight_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_malbatross_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_malbatross_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_manrabbit_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_manrabbit_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_manrabbit_sketch={
    ingredients={ lucky_goldnugget=8 },
    product={ chesspiece_manrabbit_sketch=1 },
    tech={ RABBITOFFERING=3 } 
  },
  chesspiece_minotaur_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_minotaur_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_moon_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_moon_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_moon_sketch={
    ingredients={ papyrus=1 },
    product={ chesspiece_moon_sketch=1 },
    tech={ CELESTIAL=3 } 
  },
  chesspiece_moosegoose_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_moosegoose_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_muse_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_muse_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_pawn_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_pawn_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_pipe_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_pipe_builder=1 },
    tech={ SCULPTING=1 } 
  },
  chesspiece_rook_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_rook_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_stalker_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_stalker_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_toadstool_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_toadstool_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chesspiece_twinsofterror_builder={
    ingredients={ rocks=2, sculpting_material=2 },
    product={ chesspiece_twinsofterror_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  chum={
    ingredients={ spoiled_food=2 },
    is_deconstruction_recipe=true,
    product={ chum=1 } 
  },
  coldfire={
    ingredients={ cutgrass=3, nitre=2 },
    product={ coldfire=1 },
    tech={ SCIENCE=1 } 
  },
  coldfirepit={
    ingredients={ cutstone=4, nitre=2, transistor=2 },
    product={ coldfirepit=1 },
    tech={ SCIENCE=2 } 
  },
  compass={ ingredients={ flint=1, goldnugget=1 }, product={ compass=1 } },
  compostingbin={
    ingredients={ boards=3, cutgrass=1, spoiled_food=1 },
    product={ compostingbin=1 },
    tech={ SCIENCE=2 } 
  },
  compostwrap={
    builder_tag="plantkin",
    ingredients={ nitre=1, poop=5, spoiled_food=2 },
    product={ compostwrap=1 } 
  },
  cookbook={
    ingredients={ carrot=1, papyrus=1 },
    product={ cookbook=1 },
    tech={ SCIENCE=1 } 
  },
  cookiecutterhat={
    ingredients={ cookiecuttershell=4, rope=1 },
    product={ cookiecutterhat=1 },
    tech={ SCIENCE=2 } 
  },
  cookpot={
    ingredients={ charcoal=6, cutstone=3, twigs=6 },
    product={ cookpot=1 },
    tech={ SCIENCE=1 } 
  },
  cotl_tabernacle_level1={
    ingredients={ log=2, rocks=10 },
    product={ cotl_tabernacle_level1=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  critter_dragonling_builder={
    ingredients={ hotchili=1, lavae_cocoon=1 },
    product={ critter_dragonling_builder=1 },
    tech={ ORPHANAGE=1 } 
  },
  critter_eyeofterror_builder={
    ingredients={ baconeggs=1, milkywhites=1 },
    product={ critter_eyeofterror_builder=1 },
    tech={ ORPHANAGE=1 } 
  },
  critter_glomling_builder={
    ingredients={ glommerfuel=1, taffy=1 },
    product={ critter_glomling_builder=1 },
    tech={ ORPHANAGE=1 } 
  },
  critter_kitten_builder={
    ingredients={ coontail=1, fishsticks=1 },
    product={ critter_kitten_builder=1 },
    tech={ ORPHANAGE=1 } 
  },
  critter_lamb_builder={
    ingredients={ guacamole=1, steelwool=1 },
    product={ critter_lamb_builder=1 },
    tech={ ORPHANAGE=1 } 
  },
  critter_lunarmothling_builder={
    ingredients={ flowersalad=1, moonbutterfly=1 },
    product={ critter_lunarmothling_builder=1 },
    tech={ ORPHANAGE=1 } 
  },
  critter_perdling_builder={
    ingredients={ featherhat=1, trailmix=1 },
    product={ critter_perdling_builder=1 },
    tech={ ORPHANAGE=1 } 
  },
  critter_puppy_builder={
    ingredients={ houndstooth=1, monsterlasagna=1 },
    product={ critter_puppy_builder=1 },
    tech={ ORPHANAGE=1 } 
  },
  cutstone={ ingredients={ rocks=3 }, product={ cutstone=1 }, tech={ SCIENCE=1 } },
  deserthat={
    ingredients={ goggleshat=1, pigskin=1 },
    product={ deserthat=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  dock_kit={
    ingredients={ boards=4, cutstone=1, palmcone_scale=1, stinger=2 },
    product={ dock_kit=4 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  dock_woodposts={
    ingredients={ log=2 },
    is_deconstruction_recipe=true,
    product={ dock_woodposts=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  dock_woodposts_item={
    ingredients={ log=2 },
    product={ dock_woodposts_item=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  dragonbodyhat={
    ingredients={ lucky_goldnugget=8 },
    product={ dragonbodyhat=1 },
    tech={ PERDOFFERING=1 } 
  },
  dragonflychest={
    ingredients={ boards=4, dragon_scales=1, goldnugget=10 },
    product={ dragonflychest=1 },
    tech={ SCIENCE=2 } 
  },
  dragonflyfurnace={
    ingredients={ charcoal=10, dragon_scales=1, redgem=2 },
    product={ dragonflyfurnace=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  dragonheadhat={
    ingredients={ lucky_goldnugget=8 },
    product={ dragonheadhat=1 },
    tech={ PERDOFFERING=1 } 
  },
  dragontailhat={
    ingredients={ lucky_goldnugget=8 },
    product={ dragontailhat=1 },
    tech={ PERDOFFERING=1 } 
  },
  dreadstonehat={
    ingredients={ dreadstone=4, horrorfuel=4 },
    product={ dreadstonehat=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  dumbbell={
    builder_tag="strongman",
    ingredients={ rocks=4, twigs=1 },
    product={ dumbbell=1 } 
  },
  dumbbell_bluegem={
    builder_tag="wolfgang_dumbbell_crafting",
    ingredients={ bluegem=1, thulecite=2, twigs=1 },
    product={ dumbbell_bluegem=1 } 
  },
  dumbbell_gem={
    builder_tag="strongman",
    ingredients={ purplegem=1, thulecite=2, twigs=1 },
    product={ dumbbell_gem=1 } 
  },
  dumbbell_golden={
    builder_tag="strongman",
    ingredients={ goldnugget=4, twigs=1 },
    product={ dumbbell_golden=1 } 
  },
  dumbbell_heat={
    builder_tag="wolfgang_dumbbell_crafting",
    ingredients={ flint=4, pickaxe=1, rocks=12 },
    product={ dumbbell_heat=1 } 
  },
  dumbbell_marble={
    builder_tag="strongman",
    ingredients={ marble=4, twigs=1 },
    product={ dumbbell_marble=1 } 
  },
  dumbbell_redgem={
    builder_tag="wolfgang_dumbbell_crafting",
    ingredients={ redgem=1, thulecite=2, twigs=1 },
    product={ dumbbell_redgem=1 } 
  },
  earmuffshat={ ingredients={ rabbit=2, twigs=1 }, product={ earmuffshat=1 } },
  endtable={
    ingredients={ boards=2, marble=2, turf_carpetfloor=2 },
    product={ endtable=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  eyebrellahat={
    ingredients={ boneshard=4, deerclops_eyeball=1, twigs=15 },
    product={ eyebrellahat=1 },
    tech={ SCIENCE=2 } 
  },
  eyemaskhat={
    ingredients={ milkywhites=3, monstermeat=2 },
    is_deconstruction_recipe=true,
    product={ eyemaskhat=1 } 
  },
  eyeturret_item={
    ingredients={ deerclops_eyeball=1, minotaurhorn=1, thulecite=5 },
    product={ eyeturret_item=1 },
    tech={ ANCIENT=4 } 
  },
  farm_hoe={ ingredients={ flint=2, twigs=2 }, product={ farm_hoe=1 }, tech={ SCIENCE=1 } },
  farm_plow_item={
    ingredients={ boards=3, flint=2, rope=2 },
    product={ farm_plow_item=1 },
    tech={ SCIENCE=1 } 
  },
  fast_farmplot={
    ingredients={ cutgrass=10, poop=6, rocks=4 },
    is_deconstruction_recipe=true,
    product={ fast_farmplot=1 } 
  },
  featherfan={
    ingredients={ cutreeds=2, goose_feather=5, rope=2 },
    product={ featherfan=1 },
    tech={ SCIENCE=2 } 
  },
  featherhat={
    ingredients={ feather_crow=3, feather_robin=2, tentaclespots=2 },
    product={ featherhat=1 },
    tech={ SCIENCE=2 } 
  },
  featherpencil={
    ingredients={ charcoal=1, feather_crow=1, twigs=1 },
    product={ featherpencil=1 },
    tech={ SCIENCE=1 } 
  },
  fence_gate_item={
    ingredients={ boards=2, rope=1 },
    product={ fence_gate_item=1 },
    tech={ SCIENCE=2 } 
  },
  fence_item={ ingredients={ rope=1, twigs=3 }, product={ fence_item=6 }, tech={ SCIENCE=1 } },
  fence_rotator={
    ingredients={ flint=2, spear=1 },
    product={ fence_rotator=1 },
    tech={ SCIENCE=2 } 
  },
  fertilizer={
    ingredients={ boneshard=2, log=4, poop=3 },
    product={ fertilizer=1 },
    tech={ SCIENCE=2 } 
  },
  firecrackers={
    ingredients={ lucky_goldnugget=1 },
    product={ firecrackers=3 },
    tech={ PERDOFFERING=1 } 
  },
  firepit={ ingredients={ log=2, rocks=12 }, product={ firepit=1 } },
  firestaff={
    ingredients={ nightmarefuel=2, redgem=1, spear=1 },
    product={ firestaff=1 },
    tech={ MAGIC=3 } 
  },
  firesuppressor={
    ingredients={ gears=2, ice=15, transistor=2 },
    product={ firesuppressor=1 },
    tech={ SCIENCE=2 } 
  },
  fish_box={
    ingredients={ cutstone=1, rope=3 },
    product={ fish_box=1 },
    tech={ SEAFARING=1 } 
  },
  fishingrod={ ingredients={ silk=2, twigs=2 }, product={ fishingrod=1 }, tech={ SCIENCE=1 } },
  flowerhat={ ingredients={ petals=12 }, product={ flowerhat=1 } },
  footballhat={
    ingredients={ pigskin=1, rope=1 },
    product={ footballhat=1 },
    tech={ SCIENCE=2 } 
  },
  ghostlyelixir_attack={
    builder_tag="elixirbrewer",
    ingredients={ ghostflower=3, stinger=1 },
    product={ ghostlyelixir_attack=1 } 
  },
  ghostlyelixir_fastregen={
    builder_tag="elixirbrewer",
    ingredients={ ghostflower=3, reviver=1 },
    product={ ghostlyelixir_fastregen=1 } 
  },
  ghostlyelixir_retaliation={
    builder_tag="elixirbrewer",
    ingredients={ ghostflower=3, livinglog=1 },
    product={ ghostlyelixir_retaliation=1 } 
  },
  ghostlyelixir_shield={
    builder_tag="elixirbrewer",
    ingredients={ ghostflower=1, log=1 },
    product={ ghostlyelixir_shield=1 } 
  },
  ghostlyelixir_slowregen={
    builder_tag="elixirbrewer",
    ingredients={ ghostflower=1, spidergland=1 },
    product={ ghostlyelixir_slowregen=1 } 
  },
  ghostlyelixir_speed={
    builder_tag="elixirbrewer",
    ingredients={ ghostflower=1, honey=1 },
    product={ ghostlyelixir_speed=1 } 
  },
  giftwrap={
    ingredients={ papyrus=1, petals=1 },
    product={ giftwrap=4 },
    tech={ SCIENCE=10 } 
  },
  glasscutter={
    ingredients={ boards=1, moonglass=6 },
    product={ glasscutter=1 },
    tech={ CELESTIAL=3 } 
  },
  goggleshat={
    ingredients={ goldnugget=1, pigskin=1 },
    product={ goggleshat=1 },
    tech={ SCIENCE=1 } 
  },
  golden_farm_hoe={
    ingredients={ goldnugget=2, twigs=4 },
    product={ golden_farm_hoe=1 },
    tech={ SCIENCE=2 } 
  },
  goldenaxe={
    ingredients={ goldnugget=2, twigs=4 },
    product={ goldenaxe=1 },
    tech={ SCIENCE=2 } 
  },
  goldenpickaxe={
    ingredients={ goldnugget=2, twigs=4 },
    product={ goldenpickaxe=1 },
    tech={ SCIENCE=2 } 
  },
  goldenpitchfork={
    ingredients={ goldnugget=2, twigs=4 },
    product={ goldenpitchfork=1 },
    tech={ SCIENCE=2 } 
  },
  goldenshovel={
    ingredients={ goldnugget=2, twigs=4 },
    product={ goldenshovel=1 },
    tech={ SCIENCE=2 } 
  },
  grass_umbrella={ ingredients={ cutgrass=3, petals=6, twigs=4 }, product={ grass_umbrella=1 } },
  green_mushroomhat={
    ingredients={ green_cap=6 },
    product={ green_mushroomhat=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  greenamulet={
    ingredients={ greengem=1, nightmarefuel=3, thulecite=2 },
    product={ greenamulet=1 },
    tech={ ANCIENT=2 } 
  },
  greenmooneye={
    ingredients={ greengem=1, moonrockcrater=1 },
    is_deconstruction_recipe=true,
    product={ greenmooneye=1 } 
  },
  greenstaff={
    ingredients={ greengem=2, livinglog=2, nightmarefuel=4 },
    product={ greenstaff=1 },
    tech={ ANCIENT=2 } 
  },
  gunpowder={
    ingredients={ charcoal=1, nitre=1, rottenegg=1 },
    product={ gunpowder=1 },
    tech={ SCIENCE=2 } 
  },
  halloween_experiment_bravery={
    ingredients={ decrease_sanity=10, froglegs=1, goldnugget=1 },
    product={ halloween_experiment_bravery=1 },
    tech={ MADSCIENCE=1 } 
  },
  halloween_experiment_health={
    ingredients={ decrease_sanity=10, mosquito=1, red_cap=1 },
    product={ halloween_experiment_health=1 },
    tech={ MADSCIENCE=1 } 
  },
  halloween_experiment_moon={
    ingredients={ decrease_sanity=10, moon_tree_blossom=1, moonbutterflywings=1 },
    product={ halloween_experiment_moon=1 },
    tech={ MADSCIENCE=1 } 
  },
  halloween_experiment_root={
    ingredients={ batwing=1, decrease_sanity=20, livinglog=1 },
    product={ halloween_experiment_root=1 },
    tech={ MADSCIENCE=1 } 
  },
  halloween_experiment_sanity={
    ingredients={ crow=1, decrease_sanity=10, petals_evil=1 },
    product={ halloween_experiment_sanity=1 },
    tech={ MADSCIENCE=1 } 
  },
  halloween_experiment_volatile={
    ingredients={ charcoal=1, decrease_sanity=10, rottenegg=1 },
    product={ halloween_experiment_volatile=1 },
    tech={ MADSCIENCE=1 } 
  },
  hambat={
    ingredients={ meat=2, pigskin=1, twigs=2 },
    product={ hambat=1 },
    tech={ SCIENCE=2 } 
  },
  hammer={ ingredients={ cutgrass=6, rocks=3, twigs=3 }, product={ hammer=1 } },
  handpillow_beefalowool={
    ingredients={ beefalowool=3, lucky_goldnugget=3, silk=2 },
    product={ handpillow_beefalowool=1 },
    tech={ RABBITOFFERING=3 } 
  },
  handpillow_kelp={
    ingredients={ kelp=3, lucky_goldnugget=2, silk=2 },
    product={ handpillow_kelp=1 },
    tech={ RABBITOFFERING=3 } 
  },
  handpillow_petals={
    ingredients={ petals=3, silk=2 },
    product={ handpillow_petals=1 },
    tech={ RABBITOFFERING=3 } 
  },
  handpillow_steelwool={
    ingredients={ lucky_goldnugget=5, silk=2, steelwool=2 },
    product={ handpillow_steelwool=1 },
    tech={ RABBITOFFERING=3 } 
  },
  hawaiianshirt={
    ingredients={ cactus_flower=5, papyrus=3, silk=3 },
    product={ hawaiianshirt=1 },
    tech={ SCIENCE=2 } 
  },
  healingsalve={
    ingredients={ ash=2, rocks=1, spidergland=1 },
    product={ healingsalve=1 },
    tech={ SCIENCE=1 } 
  },
  heatrock={
    ingredients={ flint=3, pickaxe=1, rocks=10 },
    product={ heatrock=1 },
    tech={ SCIENCE=2 } 
  },
  hermitshop_chum={
    ingredients={ messagebottleempty=1 },
    product={ chum=1 },
    tech={ HERMITCRABSHOP=7 } 
  },
  hermitshop_hermit_bundle_shells={
    ingredients={ messagebottleempty=1 },
    product={ hermit_bundle_shells=1 },
    tech={ HERMITCRABSHOP=1 } 
  },
  hermitshop_oceanfishingbobber_canary={
    ingredients={ messagebottleempty=1 },
    product={ oceanfishingbobber_canary=1 },
    tech={ HERMITCRABSHOP=3 } 
  },
  hermitshop_oceanfishingbobber_crow={
    ingredients={ messagebottleempty=1 },
    product={ oceanfishingbobber_crow=1 },
    tech={ HERMITCRABSHOP=3 } 
  },
  hermitshop_oceanfishingbobber_goose={
    ingredients={ messagebottleempty=1 },
    product={ oceanfishingbobber_goose=1 },
    tech={ HERMITCRABSHOP=7 } 
  },
  hermitshop_oceanfishingbobber_malbatross={
    ingredients={ messagebottleempty=1 },
    product={ oceanfishingbobber_malbatross=1 },
    tech={ HERMITCRABSHOP=7 } 
  },
  hermitshop_oceanfishingbobber_robin={
    ingredients={ messagebottleempty=1 },
    product={ oceanfishingbobber_robin=1 },
    tech={ HERMITCRABSHOP=3 } 
  },
  hermitshop_oceanfishingbobber_robin_winter={
    ingredients={ messagebottleempty=1 },
    product={ oceanfishingbobber_robin_winter=1 },
    tech={ HERMITCRABSHOP=3 } 
  },
  hermitshop_oceanfishinglure_hermit_drowsy={
    ingredients={ messagebottleempty=1 },
    product={ oceanfishinglure_hermit_drowsy=1 },
    tech={ HERMITCRABSHOP=5 } 
  },
  hermitshop_oceanfishinglure_hermit_heavy={
    ingredients={ messagebottleempty=1 },
    product={ oceanfishinglure_hermit_heavy=1 },
    tech={ HERMITCRABSHOP=5 } 
  },
  hermitshop_oceanfishinglure_hermit_rain={
    ingredients={ messagebottleempty=1 },
    product={ oceanfishinglure_hermit_rain=1 },
    tech={ HERMITCRABSHOP=5 } 
  },
  hermitshop_oceanfishinglure_hermit_snow={
    ingredients={ messagebottleempty=1 },
    product={ oceanfishinglure_hermit_snow=1 },
    tech={ HERMITCRABSHOP=5 } 
  },
  hermitshop_supertacklecontainer={
    ingredients={ messagebottleempty=6 },
    product={ supertacklecontainer=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  hermitshop_tacklecontainer={
    ingredients={ messagebottleempty=3 },
    product={ tacklecontainer=1 },
    tech={ HERMITCRABSHOP=3 } 
  },
  hermitshop_turf_shellbeach_blueprint={
    ingredients={ messagebottleempty=3 },
    product={ turf_shellbeach_blueprint=1 },
    tech={ HERMITCRABSHOP=1 } 
  },
  hermitshop_winch_blueprint={
    ingredients={ messagebottleempty=1 },
    product={ winch_blueprint=1 },
    tech={ HERMITCRABSHOP=1 } 
  },
  hermitshop_winter_ornament_boss_hermithouse={
    ingredients={ messagebottleempty=4 },
    product={ winter_ornament_boss_hermithouse=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  hermitshop_winter_ornament_boss_pearl={
    ingredients={ messagebottleempty=8 },
    product={ winter_ornament_boss_pearl=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  hivehat={
    ingredients={ bee=4, honey=3, honeycomb=4, royal_jelly=2 },
    is_deconstruction_recipe=true,
    product={ hivehat=1 } 
  },
  homesign={ ingredients={ boards=1 }, product={ homesign=1 }, tech={ SCIENCE=1 } },
  houndwhistle={
    ingredients={ lucky_goldnugget=3 },
    product={ houndwhistle=1 },
    tech={ WARGOFFERING=3 } 
  },
  icebox={
    ingredients={ cutstone=1, gears=1, goldnugget=2 },
    product={ icebox=1 },
    tech={ SCIENCE=2 } 
  },
  icehat={
    ingredients={ ice=10, rope=4, transistor=2 },
    product={ icehat=1 },
    tech={ SCIENCE=2 } 
  },
  icepack={
    ingredients={ bearger_fur=1, gears=1, transistor=1 },
    product={ icepack=1 },
    tech={ SCIENCE=2 } 
  },
  icestaff={ ingredients={ bluegem=1, spear=1 }, product={ icestaff=1 }, tech={ MAGIC=2 } },
  ipecacsyrup={
    builder_tag="syrupcrafter",
    ingredients={ honey=1, red_cap=1, spoiled_food=1 },
    product={ ipecacsyrup=1 } 
  },
  kelphat={ ingredients={ kelp=6 }, product={ kelphat=1 } },
  kitcoon_nametag={
    ingredients={ lucky_goldnugget=6 },
    product={ kitcoon_nametag=1 },
    tech={ CATCOONOFFERING=3 } 
  },
  kitcoondecor1={
    ingredients={ lucky_goldnugget=12 },
    is_deconstruction_recipe=true,
    product={ kitcoondecor1=1 } 
  },
  kitcoondecor1_kit={
    ingredients={ lucky_goldnugget=12 },
    product={ kitcoondecor1_kit=1 },
    tech={ CATCOONOFFERING=3 } 
  },
  kitcoondecor2={
    ingredients={ lucky_goldnugget=12 },
    is_deconstruction_recipe=true,
    product={ kitcoondecor2=1 } 
  },
  kitcoondecor2_kit={
    ingredients={ lucky_goldnugget=12 },
    product={ kitcoondecor2_kit=1 },
    tech={ CATCOONOFFERING=3 } 
  },
  kitcoonden={
    ingredients={ lucky_goldnugget=1 },
    is_deconstruction_recipe=true,
    product={ kitcoonden=1 } 
  },
  kitcoonden_kit={
    ingredients={ lucky_goldnugget=1 },
    product={ kitcoonden_kit=1 },
    tech={ CATCOONOFFERING=3 } 
  },
  lantern={
    ingredients={ lightbulb=2, rope=2, twigs=3 },
    product={ lantern=1 },
    tech={ SCIENCE=2 } 
  },
  leif_idol={
    builder_tag="leifidolcrafter",
    ingredients={ cutgrass=3, livinglog=2, nightmarefuel=5 },
    product={ leif_idol=1 } 
  },
  lifeinjector={
    ingredients={ nitre=2, spoiled_food=8, stinger=1 },
    product={ lifeinjector=1 },
    tech={ SCIENCE=2 } 
  },
  lighter={
    builder_tag="pyromaniac",
    ingredients={ goldnugget=1, petals=3, rope=1 },
    product={ lighter=1 } 
  },
  lightning_rod={
    ingredients={ cutstone=1, goldnugget=4 },
    product={ lightning_rod=1 },
    tech={ SCIENCE=1 } 
  },
  livinglog={
    builder_tag="plantkin",
    ingredients={ decrease_health=20 },
    product={ livinglog=1 } 
  },
  lunar_forge={
    ingredients={ moonglass=5, moonrocknugget=5, purebrilliance=1 },
    is_deconstruction_recipe=true,
    product={ lunar_forge=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  lunar_forge_kit={
    ingredients={ moonglass=5, moonrocknugget=5, purebrilliance=1 },
    product={ lunar_forge_kit=1 },
    tech={ CELESTIAL=1 } 
  },
  lunarplant_kit={
    ingredients={ lunarplant_husk=1, purebrilliance=1 },
    product={ lunarplant_kit=1 },
    tech={ LUNARFORGING=2 } 
  },
  lunarplanthat={
    ingredients={ lunarplant_husk=2, purebrilliance=4 },
    product={ lunarplanthat=1 },
    tech={ LUNARFORGING=2 } 
  },
  madscience_lab={
    ingredients={ cutstone=2, transistor=2 },
    product={ madscience_lab=1 },
    tech={ SCIENCE=10 } 
  },
  magician_chest={
    builder_tag="shadowmagic",
    ingredients={ boards=4, nightmarefuel=9, silk=1 },
    product={ magician_chest=1 } 
  },
  malbatross_feathered_weave={
    ingredients={ malbatross_feather=6, silk=1 },
    product={ malbatross_feathered_weave=1 },
    tech={ SCIENCE=2 } 
  },
  mapscroll={
    ingredients={ featherpencil=1, papyrus=1 },
    product={ mapscroll=1 },
    tech={ CARTOGRAPHY=2 } 
  },
  marblebean={ ingredients={ marble=1 }, product={ marblebean=1 }, tech={ SCIENCE=2 } },
  mast={
    ingredients={ boards=3, rope=3, silk=8 },
    is_deconstruction_recipe=true,
    product={ mast=1 } 
  },
  mast_item={
    ingredients={ boards=3, rope=3, silk=8 },
    product={ mast_item=1 },
    tech={ SEAFARING=1 } 
  },
  mast_malbatross={
    ingredients={ driftwood_log=3, malbatross_feathered_weave=4, rope=3 },
    is_deconstruction_recipe=true,
    product={ mast_malbatross=1 } 
  },
  mast_malbatross_item={
    ingredients={ driftwood_log=3, malbatross_feathered_weave=4, rope=3 },
    product={ mast_malbatross_item=1 },
    tech={ SEAFARING=1 } 
  },
  mastupgrade_lamp={
    ingredients={ boards=1, flint=4, rope=2 },
    is_deconstruction_recipe=true,
    product={ mastupgrade_lamp=1 } 
  },
  mastupgrade_lamp_item={
    ingredients={ boards=1, flint=4, rope=2 },
    product={ mastupgrade_lamp_item=1 },
    tech={ SEAFARING=1 } 
  },
  mastupgrade_lightningrod={
    ingredients={ goldnugget=5 },
    is_deconstruction_recipe=true,
    product={ mastupgrade_lightningrod=1 } 
  },
  mastupgrade_lightningrod_item={
    ingredients={ goldnugget=5 },
    product={ mastupgrade_lightningrod_item=1 },
    tech={ SEAFARING=1 } 
  },
  meatrack={
    ingredients={ charcoal=2, rope=3, twigs=3 },
    product={ meatrack=1 },
    tech={ SCIENCE=1 } 
  },
  megaflare={ ingredients={ glommerfuel=1, miniflare=3 }, product={ megaflare=1 } },
  mermhat={
    builder_tag="merm_builder",
    ingredients={ cutreeds=1, pondfish=1, twigs=2 },
    product={ mermhat=1 } 
  },
  mermhead={
    ingredients={ pondfish=1, spoiled_food=4, twigs=4 },
    is_deconstruction_recipe=true,
    product={ mermhead=1 } 
  },
  mermhouse_crafted={
    builder_tag="merm_builder",
    ingredients={ boards=4, cutreeds=3, pondfish=2 },
    product={ mermhouse_crafted=1 },
    tech={ SCIENCE=1 } 
  },
  mermthrone={
    ingredients={ beefalowool=15, kelp=20, pigskin=10 },
    is_deconstruction_recipe=true,
    product={ mermthrone=1 } 
  },
  mermthrone_construction={
    builder_tag="merm_builder",
    ingredients={ boards=5, rope=5 },
    product={ mermthrone_construction=1 },
    tech={ SCIENCE=1 } 
  },
  mermwatchtower={
    builder_tag="merm_builder",
    ingredients={ boards=5, spear=2, tentaclespots=1 },
    product={ mermwatchtower=1 },
    tech={ SCIENCE=1 } 
  },
  mighty_gym={
    builder_tag="strongman",
    ingredients={ boards=4, cutstone=2, rope=3 },
    product={ mighty_gym=1 },
    tech={ SCIENCE=1 } 
  },
  minerhat={
    ingredients={ fireflies=1, goldnugget=1, strawhat=1 },
    product={ minerhat=1 },
    tech={ SCIENCE=2 } 
  },
  miniboatlantern={
    ingredients={ lucky_goldnugget=3 },
    product={ miniboatlantern=1 },
    tech={ PERDOFFERING=1 } 
  },
  minifan={ ingredients={ petals=1, twigs=3 }, product={ minifan=1 } },
  miniflare={ ingredients={ cutgrass=1, nitre=1, twigs=1 }, product={ miniflare=1 } },
  minisign={
    ingredients={ boards=1 },
    is_deconstruction_recipe=true,
    product={ minisign=1 } 
  },
  minisign_item={ ingredients={ boards=1 }, product={ minisign_item=4 }, tech={ SCIENCE=1 } },
  molehat={
    ingredients={ mole=2, transistor=2, wormlight=1 },
    product={ molehat=1 },
    tech={ SCIENCE=2 } 
  },
  moon_device_construction1={
    ingredients={ moonstorm_spark=5, moonstorm_static_item=1, transistor=2 },
    product={ moon_device_construction1=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  moondial={
    ingredients={ bluemooneye=1, ice=2, moonrocknugget=2 },
    product={ moondial=1 },
    tech={ MAGIC=2 } 
  },
  moonglassaxe={
    ingredients={ moonglass=3, twigs=2 },
    product={ moonglassaxe=1 },
    tech={ CELESTIAL=3 } 
  },
  moonrockcrater={
    ingredients={ moonrocknugget=3 },
    product={ moonrockcrater=1 },
    tech={ SCIENCE=2 } 
  },
  moonrockidol={
    ingredients={ moonrocknugget=1, purplegem=1 },
    product={ moonrockidol=1 },
    tech={ CELESTIAL=1 } 
  },
  moonstorm_goggleshat={
    ingredients={ moonglass=2, potato=1 },
    product={ moonstorm_goggleshat=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  multiplayer_portal_moonrock_constr_plans={
    ingredients={ boards=1, rope=1 },
    product={ multiplayer_portal_moonrock_constr_plans=1 },
    tech={ CELESTIAL=1 } 
  },
  multitool_axe_pickaxe={
    ingredients={ goldenaxe=1, goldenpickaxe=1, thulecite=2 },
    product={ multitool_axe_pickaxe=1 },
    tech={ ANCIENT=4 } 
  },
  mushroom_farm={
    ingredients={ livinglog=2, poop=5, spoiled_food=8 },
    product={ mushroom_farm=1 },
    tech={ SCIENCE=2 } 
  },
  mushroom_light={
    ingredients={ fertilizer=1, shroom_skin=1 },
    product={ mushroom_light=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  mushroom_light2={
    ingredients={ boards=1, fertilizer=1, shroom_skin=1 },
    product={ mushroom_light2=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  mutator_dropper={
    builder_tag="spiderwhisperer",
    ingredients={ manrabbit_tail=1, monstermeat=1, silk=1 },
    product={ mutator_dropper=1 },
    tech={ SPIDERCRAFT=1 } 
  },
  mutator_healer={
    builder_tag="spiderwhisperer",
    ingredients={ honey=2, monstermeat=2, silk=2 },
    product={ mutator_healer=1 },
    tech={ SPIDERCRAFT=1 } 
  },
  mutator_hider={
    builder_tag="spiderwhisperer",
    ingredients={ cutstone=2, monstermeat=1, silk=2 },
    product={ mutator_hider=1 },
    tech={ SPIDERCRAFT=1 } 
  },
  mutator_moon={
    builder_tag="spiderwhisperer",
    ingredients={ monstermeat=2, moonglass=2, silk=3 },
    product={ mutator_moon=1 },
    tech={ SPIDERCRAFT=1 } 
  },
  mutator_spitter={
    builder_tag="spiderwhisperer",
    ingredients={ monstermeat=1, nitre=4, silk=2 },
    product={ mutator_spitter=1 },
    tech={ SPIDERCRAFT=1 } 
  },
  mutator_warrior={
    builder_tag="spiderwhisperer",
    ingredients={ monstermeat=2, pigskin=1, silk=1 },
    product={ mutator_warrior=1 },
    tech={ SPIDERCRAFT=1 } 
  },
  mutator_water={
    builder_tag="spiderwhisperer",
    ingredients={ fig=2, monstermeat=2, silk=2 },
    product={ mutator_water=1 },
    tech={ SPIDERCRAFT=1 } 
  },
  nightcaphat={
    ingredients={ lucky_goldnugget=4 },
    product={ nightcaphat=1 },
    tech={ RABBITOFFERING=3 } 
  },
  nightlight={
    ingredients={ goldnugget=8, nightmarefuel=2, redgem=1 },
    product={ nightlight=1 },
    tech={ MAGIC=2 } 
  },
  nightmare_timepiece={
    ingredients={ nightmarefuel=2, thulecite=2 },
    product={ nightmare_timepiece=1 },
    tech={ ANCIENT=2 } 
  },
  nightmarefuel={ ingredients={ petals_evil=4 }, product={ nightmarefuel=1 }, tech={ MAGIC=2 } },
  nightstick={
    ingredients={ lightninggoathorn=1, nitre=2, transistor=2 },
    product={ nightstick=1 },
    tech={ SCIENCE=2 } 
  },
  nightsword={
    ingredients={ livinglog=1, nightmarefuel=5 },
    product={ nightsword=1 },
    tech={ MAGIC=3 } 
  },
  nutrientsgoggleshat={
    ingredients={ plantregistryhat=1, purplegem=1, thulecite_pieces=4 },
    product={ nutrientsgoggleshat=1 },
    tech={ ANCIENT=2 } 
  },
  oar={ ingredients={ log=1 }, product={ oar=1 } },
  oar_driftwood={ ingredients={ driftwood_log=1 }, product={ oar_driftwood=1 } },
  oar_monkey={
    ingredients={ log=1, palmcone_scale=1 },
    is_deconstruction_recipe=true,
    product={ oar_monkey=1 } 
  },
  ocean_trawler={
    ingredients={ boards=2, rope=2, silk=6 },
    is_deconstruction_recipe=true,
    product={ ocean_trawler=1 } 
  },
  ocean_trawler_kit={
    ingredients={ boards=2, rope=2, silk=6 },
    product={ ocean_trawler_kit=1 },
    tech={ SEAFARING=1 } 
  },
  oceanfishingbobber_ball={
    ingredients={ log=1 },
    product={ oceanfishingbobber_ball=1 },
    tech={ FISHING=1 } 
  },
  oceanfishingbobber_canary={
    ingredients={ feather_canary=1 },
    product={ oceanfishingbobber_canary=1 },
    tech={ FISHING=1 } 
  },
  oceanfishingbobber_crow={
    ingredients={ feather_crow=1 },
    product={ oceanfishingbobber_crow=1 },
    tech={ FISHING=1 } 
  },
  oceanfishingbobber_goose={
    ingredients={ goose_feather=1 },
    product={ oceanfishingbobber_goose=1 },
    tech={ FISHING=1 } 
  },
  oceanfishingbobber_malbatross={
    ingredients={ malbatross_feather=1 },
    product={ oceanfishingbobber_malbatross=1 },
    tech={ FISHING=1 } 
  },
  oceanfishingbobber_oval={
    ingredients={ driftwood_log=1 },
    product={ oceanfishingbobber_oval=1 },
    tech={ FISHING=1 } 
  },
  oceanfishingbobber_robin={
    ingredients={ feather_robin=1 },
    product={ oceanfishingbobber_robin=1 },
    tech={ FISHING=1 } 
  },
  oceanfishingbobber_robin_winter={
    ingredients={ feather_robin_winter=1 },
    product={ oceanfishingbobber_robin_winter=1 },
    tech={ FISHING=1 } 
  },
  oceanfishinglure_hermit_drowsy={
    ingredients={ cookiecuttershell=1, stinger=1 },
    product={ oceanfishinglure_hermit_drowsy=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  oceanfishinglure_hermit_heavy={
    ingredients={ beefalowool=1, cookiecuttershell=1 },
    product={ oceanfishinglure_hermit_heavy=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  oceanfishinglure_hermit_rain={
    ingredients={ cookiecuttershell=1, mosquitosack=1 },
    product={ oceanfishinglure_hermit_rain=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  oceanfishinglure_hermit_snow={
    ingredients={ cookiecuttershell=1, ice=1 },
    product={ oceanfishinglure_hermit_snow=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  oceanfishinglure_spinner_blue={
    ingredients={ beefalowool=1, blue_cap=1, flint=1 },
    product={ oceanfishinglure_spinner_blue=1 },
    tech={ FISHING=1 } 
  },
  oceanfishinglure_spinner_green={
    ingredients={ beefalowool=1, flint=1, green_cap=1 },
    product={ oceanfishinglure_spinner_green=1 },
    tech={ FISHING=1 } 
  },
  oceanfishinglure_spinner_red={
    ingredients={ beefalowool=1, flint=1, red_cap=1 },
    product={ oceanfishinglure_spinner_red=1 },
    tech={ FISHING=1 } 
  },
  oceanfishinglure_spoon_blue={
    ingredients={ blue_cap=1, flint=2 },
    product={ oceanfishinglure_spoon_blue=1 },
    tech={ FISHING=1 } 
  },
  oceanfishinglure_spoon_green={
    ingredients={ flint=2, green_cap=1 },
    product={ oceanfishinglure_spoon_green=1 },
    tech={ FISHING=1 } 
  },
  oceanfishinglure_spoon_red={
    ingredients={ flint=2, red_cap=1 },
    product={ oceanfishinglure_spoon_red=1 },
    tech={ FISHING=1 } 
  },
  oceanfishingrod={
    ingredients={ boards=1, silk=3 },
    product={ oceanfishingrod=1 },
    tech={ SCIENCE=1 } 
  },
  onemanband={
    ingredients={ goldnugget=2, nightmarefuel=4, pigskin=2 },
    product={ onemanband=1 },
    tech={ MAGIC=2 } 
  },
  opalstaff={
    ingredients={ livinglog=2, nightmarefuel=4, opalpreciousgem=1 },
    is_deconstruction_recipe=true,
    product={ opalstaff=1 } 
  },
  orangeamulet={
    ingredients={ nightmarefuel=3, orangegem=1, thulecite=2 },
    product={ orangeamulet=1 },
    tech={ ANCIENT=4 } 
  },
  orangemooneye={
    ingredients={ moonrockcrater=1, orangegem=1 },
    is_deconstruction_recipe=true,
    product={ orangemooneye=1 } 
  },
  orangestaff={
    ingredients={ cane=1, nightmarefuel=2, orangegem=2 },
    product={ orangestaff=1 },
    tech={ ANCIENT=4 } 
  },
  panflute={
    ingredients={ cutreeds=5, mandrake=1, rope=1 },
    product={ panflute=1 },
    tech={ MAGIC=2 } 
  },
  papyrus={ ingredients={ cutreeds=4 }, product={ papyrus=1 }, tech={ SCIENCE=1 } },
  perdfan={
    ingredients={ lucky_goldnugget=3 },
    product={ perdfan=1 },
    tech={ PERDOFFERING=3 } 
  },
  perdshrine={
    ingredients={ boards=2, goldnugget=4 },
    product={ perdshrine=1 },
    tech={ SCIENCE=10 } 
  },
  pickaxe={ ingredients={ flint=2, twigs=2 }, product={ pickaxe=1 } },
  pickaxe_lunarplant={
    ingredients={ lunarplant_husk=2, purebrilliance=1 },
    product={ pickaxe_lunarplant=1 },
    tech={ LUNARFORGING=2 } 
  },
  piggyback={
    ingredients={ pigskin=4, rope=2, silk=6 },
    product={ piggyback=1 },
    tech={ SCIENCE=2 } 
  },
  pighead={
    ingredients={ pigskin=4, twigs=4 },
    is_deconstruction_recipe=true,
    product={ pighead=1 } 
  },
  pighouse={
    ingredients={ boards=4, cutstone=3, pigskin=4 },
    product={ pighouse=1 },
    tech={ SCIENCE=2 } 
  },
  pigshrine={
    ingredients={ boards=2, goldnugget=4 },
    product={ pigshrine=1 },
    tech={ SCIENCE=10 } 
  },
  pirate_flag_pole={
    ingredients={ blackflag=1, log=2 },
    product={ pirate_flag_pole=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  pitchfork={ ingredients={ flint=2, twigs=2 }, product={ pitchfork=1 }, tech={ SCIENCE=1 } },
  plantregistryhat={
    ingredients={ fertilizer=1, seeds=3, transistor=1 },
    product={ plantregistryhat=1 },
    tech={ SCIENCE=2 } 
  },
  pocket_scale={
    ingredients={ cutstone=1, goldnugget=1, log=1 },
    product={ pocket_scale=1 },
    tech={ SCIENCE=1 } 
  },
  pocketwatch_dismantler={
    builder_tag="clockmaker",
    ingredients={ flint=1, goldnugget=1, twigs=3 },
    product={ pocketwatch_dismantler=1 } 
  },
  pocketwatch_heal={
    builder_tag="clockmaker",
    ingredients={ marble=2, pocketwatch_parts=1, redgem=1 },
    product={ pocketwatch_heal=1 } 
  },
  pocketwatch_parts={
    builder_tag="clockmaker",
    ingredients={ nightmarefuel=2, pocketwatch_dismantler=0, thulecite_pieces=8 },
    product={ pocketwatch_parts=1 } 
  },
  pocketwatch_portal={
    builder_tag="clockmaker",
    ingredients={ pocketwatch_recall=1, purplegem=1 },
    product={ pocketwatch_portal=1 },
    tech={ MAGIC=2 } 
  },
  pocketwatch_recall={
    builder_tag="clockmaker",
    ingredients={ goldnugget=2, pocketwatch_parts=2, walrus_tusk=1 },
    product={ pocketwatch_recall=1 },
    tech={ MAGIC=2 } 
  },
  pocketwatch_revive={
    builder_tag="clockmaker",
    ingredients={ boneshard=4, livinglog=2, pocketwatch_parts=1 },
    product={ pocketwatch_revive=1 } 
  },
  pocketwatch_warp={
    builder_tag="clockmaker",
    ingredients={ goldnugget=2, pocketwatch_parts=1 },
    product={ pocketwatch_warp=1 } 
  },
  pocketwatch_weapon={
    builder_tag="clockmaker",
    ingredients={ marble=4, nightmarefuel=8, pocketwatch_parts=3 },
    product={ pocketwatch_weapon=1 },
    tech={ MAGIC=3 } 
  },
  polly_rogershat={
    ingredients={ blackflag=1, feather_canary=1, monkey_mediumhat=1 },
    product={ polly_rogershat=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  portableblender={
    ingredients={ goldnugget=2, transistor=2, twigs=4 },
    is_deconstruction_recipe=true,
    product={ portableblender=1 } 
  },
  portableblender_item={
    builder_tag="masterchef",
    ingredients={ goldnugget=2, transistor=2, twigs=4 },
    product={ portableblender_item=1 } 
  },
  portablecookpot={
    ingredients={ charcoal=6, goldnugget=2, twigs=6 },
    is_deconstruction_recipe=true,
    product={ portablecookpot=1 } 
  },
  portablecookpot_item={
    builder_tag="masterchef",
    ingredients={ charcoal=6, goldnugget=2, twigs=6 },
    product={ portablecookpot_item=1 } 
  },
  portablespicer={
    ingredients={ cutstone=3, goldnugget=2, twigs=6 },
    is_deconstruction_recipe=true,
    product={ portablespicer=1 } 
  },
  portablespicer_item={
    builder_tag="masterchef",
    ingredients={ cutstone=3, goldnugget=2, twigs=6 },
    product={ portablespicer_item=1 } 
  },
  portabletent_item={
    builder_tag="pinetreepioneer",
    ingredients={ bedroll_straw=1, rope=2, twigs=4 },
    product={ portabletent_item=1 },
    tech={ SCIENCE=1 } 
  },
  potatosack={
    ingredients={ cutgrass=2, rocks=3 },
    is_deconstruction_recipe=true,
    product={ potatosack=1 } 
  },
  pottedfern={
    ingredients={ foliage=2, slurtle_shellpieces=1 },
    product={ pottedfern=1 },
    tech={ SCIENCE=2 } 
  },
  premiumwateringcan={
    ingredients={ driftwood_log=2, malbatross_beak=1, rope=1 },
    product={ premiumwateringcan=1 },
    tech={ SCIENCE=2 } 
  },
  pumpkin_lantern={
    ingredients={ fireflies=1, pumpkin=1 },
    product={ pumpkin_lantern=1 },
    tech={ SCIENCE=1 } 
  },
  punchingbag={
    ingredients={ boards=1, cutgrass=3 },
    product={ punchingbag=1 },
    tech={ SCIENCE=1 } 
  },
  punchingbag_lunar={
    ingredients={ boards=1, cutgrass=3, purebrilliance=1 },
    product={ punchingbag_lunar=1 },
    tech={ MAGIC=2 } 
  },
  punchingbag_shadow={
    ingredients={ boards=1, cutgrass=3, horrorfuel=1 },
    product={ punchingbag_shadow=1 },
    tech={ MAGIC=2 } 
  },
  purpleamulet={
    ingredients={ goldnugget=6, nightmarefuel=4, purplegem=2 },
    product={ purpleamulet=1 },
    tech={ MAGIC=3 } 
  },
  purplegem={ ingredients={ bluegem=1, redgem=1 }, product={ purplegem=1 }, tech={ MAGIC=2 } },
  purplemooneye={
    ingredients={ moonrockcrater=1, purplegem=1 },
    is_deconstruction_recipe=true,
    product={ purplemooneye=1 } 
  },
  rabbithouse={
    ingredients={ boards=4, carrot=10, manrabbit_tail=4 },
    product={ rabbithouse=1 },
    tech={ SCIENCE=2 } 
  },
  raincoat={
    ingredients={ boneshard=2, rope=2, tentaclespots=2 },
    product={ raincoat=1 },
    tech={ SCIENCE=1 } 
  },
  rainhat={
    ingredients={ boneshard=1, mole=2, strawhat=1 },
    product={ rainhat=1 },
    tech={ SCIENCE=2 } 
  },
  rainometer={
    ingredients={ boards=2, goldnugget=2, rope=2 },
    product={ rainometer=1 },
    tech={ SCIENCE=1 } 
  },
  razor={ ingredients={ flint=2, twigs=2 }, product={ razor=1 }, tech={ SCIENCE=1 } },
  red_mushroomhat={
    ingredients={ red_cap=6 },
    product={ red_mushroomhat=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  redlantern={
    ingredients={ lucky_goldnugget=3 },
    product={ redlantern=1 },
    tech={ PERDOFFERING=1 } 
  },
  redmooneye={
    ingredients={ moonrockcrater=1, redgem=1 },
    is_deconstruction_recipe=true,
    product={ redmooneye=1 } 
  },
  refined_dust={
    ingredients={ nitre=1, rocks=2, saltrock=1 },
    product={ refined_dust=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  reflectivevest={
    ingredients={ feather_robin=3, pigskin=2, rope=1 },
    product={ reflectivevest=1 },
    tech={ SCIENCE=1 } 
  },
  researchlab={ ingredients={ goldnugget=1, log=4, rocks=4 }, product={ researchlab=1 } },
  researchlab2={
    ingredients={ boards=4, cutstone=2, transistor=2 },
    product={ researchlab2=1 },
    tech={ SCIENCE=1 } 
  },
  researchlab3={
    ingredients={ livinglog=3, nightmarefuel=7, purplegem=1 },
    product={ researchlab3=1 },
    tech={ MAGIC=2 } 
  },
  researchlab4={
    ingredients={ boards=4, rabbit=4, tophat=1 },
    product={ researchlab4=1 },
    tech={ SCIENCE=1 } 
  },
  reskin_tool={
    ingredients={ petals=4, twigs=1 },
    product={ reskin_tool=1 },
    tech={ SCIENCE=2 } 
  },
  resurrectionstatue={
    ingredients={ beardhair=4, boards=4, decrease_health=40 },
    product={ resurrectionstatue=1 },
    tech={ MAGIC=2 } 
  },
  reviver={
    ingredients={ cutgrass=3, decrease_health=40, spidergland=1 },
    product={ reviver=1 } 
  },
  rope={ ingredients={ cutgrass=3 }, product={ rope=1 }, tech={ SCIENCE=1 } },
  ruins_bat={
    ingredients={ livinglog=3, nightmarefuel=4, thulecite=4 },
    product={ ruins_bat=1 },
    tech={ ANCIENT=4 } 
  },
  ruinshat={
    ingredients={ nightmarefuel=4, thulecite=4 },
    product={ ruinshat=1 },
    tech={ ANCIENT=4 } 
  },
  ruinsrelic_bowl={
    ingredients={ cutstone=2 },
    product={ ruinsrelic_bowl=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  ruinsrelic_chair={
    ingredients={ cutstone=1 },
    product={ ruinsrelic_chair=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  ruinsrelic_chipbowl={
    ingredients={ cutstone=1 },
    product={ ruinsrelic_chipbowl=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  ruinsrelic_plate={
    ingredients={ cutstone=1 },
    product={ ruinsrelic_plate=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  ruinsrelic_table={
    ingredients={ cutstone=1 },
    product={ ruinsrelic_table=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  ruinsrelic_vase={
    ingredients={ cutstone=2 },
    product={ ruinsrelic_vase=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  saddle_basic={
    ingredients={ beefalowool=4, goldnugget=4, pigskin=4 },
    product={ saddle_basic=1 },
    tech={ SCIENCE=2 } 
  },
  saddle_race={
    ingredients={ butterflywings=68, livinglog=2, silk=4 },
    product={ saddle_race=1 },
    tech={ SCIENCE=2 } 
  },
  saddle_war={
    ingredients={ log=10, rabbit=4, steelwool=4 },
    product={ saddle_war=1 },
    tech={ SCIENCE=2 } 
  },
  saddlehorn={
    ingredients={ boneshard=2, feather_crow=1, twigs=2 },
    product={ saddlehorn=1 },
    tech={ SCIENCE=2 } 
  },
  saltbox={
    ingredients={ bluegem=1, cutstone=1, saltrock=10 },
    product={ saltbox=1 },
    tech={ SCIENCE=2 } 
  },
  saltlick={ ingredients={ boards=2, nitre=4 }, product={ saltlick=1 }, tech={ SCIENCE=2 } },
  scarecrow={
    ingredients={ boards=3, cutgrass=3, pumpkin=1 },
    product={ scarecrow=1 },
    tech={ SCIENCE=1 } 
  },
  sculptingtable={
    ingredients={ boards=2, cutstone=2, twigs=4 },
    product={ sculptingtable=1 },
    tech={ SCIENCE=1 } 
  },
  seafaring_prototyper={
    ingredients={ boards=4 },
    product={ seafaring_prototyper=1 },
    tech={ SCIENCE=1 } 
  },
  seedpouch={
    ingredients={ cutgrass=4, seeds=2, slurtle_shellpieces=2 },
    product={ seedpouch=1 },
    tech={ SCIENCE=2 } 
  },
  sentryward={
    ingredients={ boards=2, compass=1, purplemooneye=1 },
    product={ sentryward=1 },
    tech={ MAGIC=2 } 
  },
  sewing_kit={
    ingredients={ houndstooth=2, log=1, silk=8 },
    product={ sewing_kit=1 },
    tech={ SCIENCE=2 } 
  },
  sewing_mannequin={
    ingredients={ boards=2, cutgrass=3, silk=2 },
    product={ sewing_mannequin=1 },
    tech={ SCIENCE=1 } 
  },
  sewing_tape={
    builder_tag="handyperson",
    ingredients={ cutgrass=3, silk=1 },
    product={ sewing_tape=1 } 
  },
  shadow_forge={
    ingredients={ dreadstone=2, horrorfuel=1, nightmarefuel=5 },
    is_deconstruction_recipe=true,
    product={ shadow_forge=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  shadow_forge_kit={
    ingredients={ dreadstone=2, horrorfuel=1, nightmarefuel=5 },
    product={ shadow_forge_kit=1 },
    tech={ ANCIENT=4 } 
  },
  shadowdigger_builder={
    builder_tag="shadowmagic",
    ingredients={ half_sanity=0.2, nightmarefuel=2, shovel=1 },
    is_deconstruction_recipe=true,
    product={ shadowdigger_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  shadowduelist_builder={
    builder_tag="shadowmagic",
    ingredients={ half_sanity=0.35, nightmarefuel=2, spear=1 },
    is_deconstruction_recipe=true,
    product={ shadowduelist_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  shadowlumber_builder={
    builder_tag="shadowmagic",
    ingredients={ axe=1, half_sanity=0.2, nightmarefuel=2 },
    is_deconstruction_recipe=true,
    product={ shadowlumber_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  shadowminer_builder={
    builder_tag="shadowmagic",
    ingredients={ half_sanity=0.2, nightmarefuel=2, pickaxe=1 },
    is_deconstruction_recipe=true,
    product={ shadowminer_builder=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  shieldofterror={
    ingredients={ gears=2, nightmarefuel=3 },
    is_deconstruction_recipe=true,
    product={ shieldofterror=1 } 
  },
  shovel={ ingredients={ flint=2, twigs=2 }, product={ shovel=1 }, tech={ SCIENCE=1 } },
  shovel_lunarplant={
    ingredients={ lunarplant_husk=2, purebrilliance=1 },
    product={ shovel_lunarplant=1 },
    tech={ LUNARFORGING=2 } 
  },
  siestahut={
    ingredients={ boards=4, rope=3, silk=2 },
    product={ siestahut=1 },
    tech={ SCIENCE=2 } 
  },
  sisturn={
    builder_tag="ghostlyfriend",
    ingredients={ ash=1, boards=3, cutstone=3 },
    product={ sisturn=1 } 
  },
  skeletonhat={
    ingredients={ boneshard=10, nightmarefuel=4 },
    is_deconstruction_recipe=true,
    product={ skeletonhat=1 } 
  },
  sleepbomb={
    ingredients={ canary_poisoned=1, shroom_skin=1 },
    product={ sleepbomb=4 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  slingshot={
    builder_tag="pebblemaker",
    ingredients={ mosquitosack=2, twigs=1 },
    product={ slingshot=1 } 
  },
  slingshotammo_freeze={
    builder_tag="pebblemaker",
    ingredients={ bluegem=1, moonrocknugget=1 },
    product={ slingshotammo_freeze=10 },
    tech={ MAGIC=2 } 
  },
  slingshotammo_gold={
    builder_tag="pebblemaker",
    ingredients={ goldnugget=1 },
    product={ slingshotammo_gold=10 },
    tech={ SCIENCE=1 } 
  },
  slingshotammo_marble={
    builder_tag="pebblemaker",
    ingredients={ marble=1 },
    product={ slingshotammo_marble=10 },
    tech={ SCIENCE=2 } 
  },
  slingshotammo_poop={
    builder_tag="pebblemaker",
    ingredients={ poop=1 },
    product={ slingshotammo_poop=10 },
    tech={ SCIENCE=1 } 
  },
  slingshotammo_rock={
    builder_tag="pebblemaker",
    ingredients={ rocks=1 },
    product={ slingshotammo_rock=10 } 
  },
  slingshotammo_slow={
    builder_tag="pebblemaker",
    ingredients={ moonrocknugget=1, purplegem=1 },
    product={ slingshotammo_slow=10 },
    tech={ MAGIC=3 } 
  },
  slingshotammo_thulecite={
    builder_tag="pebblemaker",
    ingredients={ nightmarefuel=1, thulecite_pieces=1 },
    product={ slingshotammo_thulecite=10 },
    tech={ ANCIENT=2 } 
  },
  slow_farmplot={
    ingredients={ cutgrass=8, log=4, poop=4 },
    is_deconstruction_recipe=true,
    product={ slow_farmplot=1 } 
  },
  soil_amender={
    ingredients={ ash=1, kelp=1, messagebottleempty=1 },
    product={ soil_amender=1 },
    tech={ SCIENCE=2 } 
  },
  spear={
    ingredients={ flint=1, rope=1, twigs=2 },
    product={ spear=1 },
    tech={ SCIENCE=1 } 
  },
  spear_wathgrithr={
    builder_tag="valkyrie",
    ingredients={ flint=2, goldnugget=2, twigs=2 },
    product={ spear_wathgrithr=1 } 
  },
  spice_chili={
    builder_tag="professionalchef",
    ingredients={ pepper=3 },
    product={ spice_chili=2 },
    tech={ FOODPROCESSING=1 } 
  },
  spice_garlic={
    builder_tag="professionalchef",
    ingredients={ garlic=3 },
    product={ spice_garlic=2 },
    tech={ FOODPROCESSING=1 } 
  },
  spice_salt={
    builder_tag="professionalchef",
    ingredients={ saltrock=3 },
    product={ spice_salt=2 },
    tech={ FOODPROCESSING=1 } 
  },
  spice_sugar={
    builder_tag="professionalchef",
    ingredients={ honey=3 },
    product={ spice_sugar=2 },
    tech={ FOODPROCESSING=1 } 
  },
  spicepack={
    builder_tag="masterchef",
    ingredients={ cutgrass=4, nitre=2, twigs=4 },
    product={ spicepack=1 } 
  },
  spider_healer_item={
    builder_tag="spiderwhisperer",
    ingredients={ ash=2, honey=2, silk=2 },
    product={ spider_healer_item=1 } 
  },
  spider_repellent={
    builder_tag="spiderwhisperer",
    ingredients={ boards=2, goldnugget=2, rope=1 },
    product={ spider_repellent=1 } 
  },
  spider_whistle={
    builder_tag="spiderwhisperer",
    ingredients={ silk=3, twigs=2 },
    product={ spider_whistle=1 } 
  },
  spiderden_bedazzler={
    builder_tag="spiderwhisperer",
    ingredients={ boards=2, papyrus=1, silk=1 },
    product={ spiderden_bedazzler=1 } 
  },
  spidereggsack={
    builder_tag="spiderwhisperer",
    ingredients={ papyrus=3, silk=12, spidergland=4 },
    product={ spidereggsack=1 } 
  },
  spiderhat={
    ingredients={ monstermeat=1, silk=4, spidergland=2 },
    is_deconstruction_recipe=true,
    product={ spiderhat=1 } 
  },
  staff_lunarplant={
    ingredients={ lunarplant_husk=6, purebrilliance=3 },
    product={ staff_lunarplant=1 },
    tech={ LUNARFORGING=2 } 
  },
  staff_tornado={
    ingredients={ gears=1, goose_feather=10, lightninggoathorn=1 },
    product={ staff_tornado=1 },
    tech={ SCIENCE=2 } 
  },
  steeringwheel={
    ingredients={ boards=2, rope=1 },
    is_deconstruction_recipe=true,
    product={ steeringwheel=1 } 
  },
  steeringwheel_item={
    ingredients={ boards=2, rope=1 },
    product={ steeringwheel_item=1 },
    tech={ SEAFARING=1 } 
  },
  strawhat={ ingredients={ cutgrass=12 }, product={ strawhat=1 } },
  succulent_potted={
    ingredients={ cutstone=1, succulent_picked=2 },
    product={ succulent_potted=1 },
    tech={ SCIENCE=2 } 
  },
  sunkenchest={
    ingredients={ slurtle_shellpieces=5 },
    is_deconstruction_recipe=true,
    product={ sunkenchest=1 } 
  },
  supertacklecontainer={
    ingredients={ cookiecuttershell=3, rope=2 },
    is_deconstruction_recipe=true,
    product={ supertacklecontainer=1 } 
  },
  support_pillar_dreadstone_scaffold={
    ingredients={ boards=2, dreadstone=4 },
    product={ support_pillar_dreadstone_scaffold=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  support_pillar_scaffold={
    ingredients={ boards=2, cutstone=1 },
    product={ support_pillar_scaffold=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  sweatervest={
    ingredients={ houndstooth=8, silk=6 },
    product={ sweatervest=1 },
    tech={ SCIENCE=2 } 
  },
  sword_lunarplant={
    ingredients={ lunarplant_husk=3, purebrilliance=4 },
    product={ sword_lunarplant=1 },
    tech={ LUNARFORGING=2 } 
  },
  table_winters_feast={
    ingredients={ beefalowool=1, boards=1 },
    product={ table_winters_feast=1 },
    tech={ SCIENCE=10 } 
  },
  tacklecontainer={
    ingredients={ cookiecuttershell=2, rope=1 },
    is_deconstruction_recipe=true,
    product={ tacklecontainer=1 } 
  },
  tacklestation={
    ingredients={ boneshard=1, driftwood_log=1, transistor=1 },
    product={ tacklestation=1 },
    tech={ SCIENCE=1 } 
  },
  telebase={
    ingredients={ goldnugget=8, livinglog=4, nightmarefuel=4 },
    product={ telebase=1 },
    tech={ MAGIC=3 } 
  },
  telestaff={
    ingredients={ livinglog=2, nightmarefuel=4, purplegem=2 },
    product={ telestaff=1 },
    tech={ MAGIC=3 } 
  },
  tent={
    ingredients={ rope=3, silk=6, twigs=4 },
    product={ tent=1 },
    tech={ SCIENCE=2 } 
  },
  terrariumchest={
    ingredients={ boards=3 },
    is_deconstruction_recipe=true,
    product={ terrariumchest=1 } 
  },
  thulecite={
    ingredients={ thulecite_pieces=6 },
    product={ thulecite=1 },
    tech={ ANCIENT=2 } 
  },
  thurible={
    ingredients={ ash=1, cutstone=2, nightmarefuel=6 },
    is_deconstruction_recipe=true,
    product={ thurible=1 } 
  },
  ticoon_builder={
    ingredients={ lucky_goldnugget=1 },
    product={ ticoon_builder=1 },
    tech={ CATCOONOFFERING=3 } 
  },
  tillweedsalve={
    ingredients={ charcoal=1, petals=4, tillweed=4 },
    product={ tillweedsalve=1 },
    tech={ SCIENCE=2 } 
  },
  tophat={ ingredients={ silk=6 }, product={ tophat=1 }, tech={ SCIENCE=1 } },
  tophat_magician={
    builder_tag="shadowmagic",
    ingredients={ nightmarefuel=2, tophat=1 },
    product={ tophat=1 } 
  },
  torch={ ingredients={ cutgrass=2, twigs=2 }, product={ torch=1 } },
  townportal={
    ingredients={ cutstone=3, orangemooneye=1, townportaltalisman=1 },
    product={ townportal=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  transistor={
    ingredients={ cutstone=1, goldnugget=2 },
    product={ transistor=1 },
    tech={ SCIENCE=1 } 
  },
  transmute_beardhair={
    builder_tag="ick_alchemistII",
    ingredients={ beefalowool=2 },
    product={ beardhair=1 } 
  },
  transmute_beefalowool={
    builder_tag="ick_alchemistII",
    ingredients={ beardhair=2 },
    product={ beefalowool=1 } 
  },
  transmute_bluegem={ builder_tag="gem_alchemistI", ingredients={ redgem=2 }, product={ bluegem=1 } },
  transmute_boneshard={
    builder_tag="ick_alchemistIII",
    ingredients={ houndstooth=2 },
    product={ boneshard=1 } 
  },
  transmute_cutstone={
    builder_tag="ore_alchemistIII",
    ingredients={ marble=1 },
    product={ cutstone=1 } 
  },
  transmute_dreadstone={
    builder_tag="skill_wilson_allegiance_shadow",
    ingredients={ horrorfuel=3 },
    product={ dreadstone=1 } 
  },
  transmute_flint={ builder_tag="ore_alchemistI", ingredients={ rocks=3 }, product={ flint=1 } },
  transmute_goldnugget={
    builder_tag="ore_alchemistII",
    ingredients={ nitre=3 },
    product={ goldnugget=1 } 
  },
  transmute_greengem={
    builder_tag="gem_alchemistIII",
    ingredients={ yellowgem=3 },
    product={ greengem=1 } 
  },
  transmute_horrorfuel={
    builder_tag="skill_wilson_allegiance_shadow",
    ingredients={ dreadstone=1 },
    product={ horrorfuel=2 } 
  },
  transmute_houndstooth={
    builder_tag="ick_alchemistIII",
    ingredients={ boneshard=2 },
    product={ houndstooth=1 } 
  },
  transmute_log={ builder_tag="alchemist", ingredients={ twigs=3 }, product={ log=1 } },
  transmute_marble={
    builder_tag="ore_alchemistIII",
    ingredients={ cutstone=2 },
    product={ marble=1 } 
  },
  transmute_meat={ builder_tag="ick_alchemistI", ingredients={ smallmeat=3 }, product={ meat=1 } },
  transmute_moonglass_charged={
    builder_tag="skill_wilson_allegiance_lunar",
    ingredients={ purebrilliance=1 },
    product={ moonglass_charged=2 } 
  },
  transmute_moonrocknugget={
    builder_tag="ore_alchemistIII",
    ingredients={ marble=2 },
    product={ moonrocknugget=1 } 
  },
  transmute_nightmarefuel={
    builder_tag="skill_wilson_allegiance_shadow",
    ingredients={ horrorfuel=1 },
    product={ nightmarefuel=2 } 
  },
  transmute_nitre={
    builder_tag="ore_alchemistII",
    ingredients={ goldnugget=2 },
    product={ nitre=1 } 
  },
  transmute_opalpreciousgem={
    builder_tag="gem_alchemistIII",
    ingredients={ bluegem=1, greengem=1, orangegem=1, purplegem=1, redgem=1, yellowgem=1 },
    product={ opalpreciousgem=1 } 
  },
  transmute_orangegem={
    builder_tag="gem_alchemistII",
    ingredients={ purplegem=3 },
    product={ orangegem=1 } 
  },
  transmute_poop={
    builder_tag="ick_alchemistIII",
    ingredients={ spoiled_food=6 },
    product={ poop=1 } 
  },
  transmute_purebrilliance={
    builder_tag="skill_wilson_allegiance_lunar",
    ingredients={ moonglass_charged=3 },
    product={ purebrilliance=1 } 
  },
  transmute_purplegem={
    builder_tag="gem_alchemistI",
    ingredients={ bluegem=1, redgem=1 },
    product={ purplegem=1 } 
  },
  transmute_redgem={ builder_tag="gem_alchemistI", ingredients={ bluegem=2 }, product={ redgem=1 } },
  transmute_rocks={ builder_tag="ore_alchemistI", ingredients={ flint=2 }, product={ rocks=1 } },
  transmute_smallmeat={ builder_tag="ick_alchemistI", ingredients={ meat=1 }, product={ smallmeat=2 } },
  transmute_twigs={ builder_tag="alchemist", ingredients={ log=1 }, product={ twigs=2 } },
  transmute_yellowgem={
    builder_tag="gem_alchemistII",
    ingredients={ orangegem=3 },
    product={ yellowgem=1 } 
  },
  trap={ ingredients={ cutgrass=6, twigs=2 }, product={ trap=1 } },
  trap_bramble={
    builder_tag="plantkin",
    ingredients={ livinglog=1, stinger=1 },
    product={ trap_bramble=1 } 
  },
  trap_teeth={
    ingredients={ houndstooth=1, log=1, rope=1 },
    product={ trap_teeth=1 },
    tech={ SCIENCE=2 } 
  },
  treasurechest={ ingredients={ boards=3 }, product={ treasurechest=1 }, tech={ SCIENCE=1 } },
  treegrowthsolution={
    ingredients={ fig=2, glommerfuel=1 },
    product={ treegrowthsolution=1 },
    tech={ SCIENCE=2 } 
  },
  trident={
    ingredients={ gnarwail_horn=3, kelp=4, twigs=2 },
    product={ trident=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  trophyscale_fish={
    ingredients={ boards=2, cutstone=1, ice=4 },
    product={ trophyscale_fish=1 },
    tech={ SCIENCE=2 } 
  },
  trophyscale_oversizedveggies={
    ingredients={ boards=4, cutgrass=4 },
    product={ trophyscale_oversizedveggies=1 },
    tech={ SCIENCE=2 } 
  },
  trunkvest_summer={
    ingredients={ silk=8, trunk_summer=1 },
    product={ trunkvest_summer=1 },
    tech={ SCIENCE=2 } 
  },
  trunkvest_winter={
    ingredients={ beefalowool=2, silk=8, trunk_winter=1 },
    product={ trunkvest_winter=1 },
    tech={ SCIENCE=2 } 
  },
  turf_archive={
    ingredients={ moonrocknugget=1, thulecite_pieces=1 },
    product={ turf_archive=4 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  turf_beard_rug={
    ingredients={ beardhair=2, cutgrass=2 },
    product={ turf_beard_rug=4 },
    tech={ SCIENCE=2 } 
  },
  turf_carpetfloor={
    ingredients={ beefalowool=1, boards=1 },
    product={ turf_carpetfloor=4 },
    tech={ SCIENCE=2 } 
  },
  turf_carpetfloor2={
    ingredients={ beefalowool=1, boards=1 },
    product={ turf_carpetfloor2=4 },
    tech={ SCIENCE=2 } 
  },
  turf_cave={ ingredients={ guano=2 }, product={ turf_cave=4 }, tech={ TURFCRAFTING=2 } },
  turf_checkerfloor={ ingredients={ marble=1 }, product={ turf_checkerfloor=4 }, tech={ SCIENCE=2 } },
  turf_cotl_brick={
    ingredients={ cutstone=1, flint=2 },
    product={ turf_cotl_brick=4 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  turf_cotl_gold={
    ingredients={ goldnugget=1, rocks=1 },
    product={ turf_cotl_gold=4 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  turf_deciduous={
    ingredients={ acorn=1, twigs=1 },
    product={ turf_deciduous=4 },
    tech={ TURFCRAFTING=2 } 
  },
  turf_desertdirt={
    ingredients={ boneshard=1, rocks=1 },
    product={ turf_desertdirt=4 },
    tech={ TURFCRAFTING=2 } 
  },
  turf_dragonfly={
    ingredients={ cutstone=1, dragon_scales=1 },
    product={ turf_dragonfly=4 },
    tech={ SCIENCE=2 } 
  },
  turf_forest={
    ingredients={ pinecone=1, twigs=1 },
    product={ turf_forest=4 },
    tech={ TURFCRAFTING=2 } 
  },
  turf_fungus={
    ingredients={ cutlichen=1, spore_tall=1 },
    product={ turf_fungus=4 },
    tech={ TURFCRAFTING=2 } 
  },
  turf_fungus_green={
    ingredients={ cutlichen=1, spore_small=1 },
    product={ turf_fungus_green=4 },
    tech={ TURFCRAFTING=2 } 
  },
  turf_fungus_moon={
    ingredients={ moon_cap=2, moonrocknugget=1 },
    product={ turf_fungus_moon=4 },
    tech={ CELESTIAL=3 } 
  },
  turf_fungus_red={
    ingredients={ cutlichen=1, spore_medium=1 },
    product={ turf_fungus_red=4 },
    tech={ TURFCRAFTING=2 } 
  },
  turf_grass={
    ingredients={ cutgrass=1, petals=1 },
    product={ turf_grass=4 },
    tech={ TURFCRAFTING=2 } 
  },
  turf_marsh={
    ingredients={ cutreeds=1, spoiled_food=2 },
    product={ turf_marsh=4 },
    tech={ MASHTURFCRAFTING=2 } 
  },
  turf_meteor={
    ingredients={ moonglass=2, moonrocknugget=1 },
    product={ turf_meteor=4 },
    tech={ CELESTIAL=3 } 
  },
  turf_monkey_ground={
    ingredients={ marble=1, rocks=1 },
    product={ turf_monkey_ground=4 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  turf_mosaic_blue={ ingredients={ marble=1 }, product={ turf_mosaic_blue=4 }, tech={ SCIENCE=2 } },
  turf_mosaic_grey={ ingredients={ marble=1 }, product={ turf_mosaic_grey=4 }, tech={ SCIENCE=2 } },
  turf_mosaic_red={ ingredients={ marble=1 }, product={ turf_mosaic_red=4 }, tech={ SCIENCE=2 } },
  turf_mud={
    ingredients={ ice=1, rocks=1 },
    product={ turf_mud=4 },
    tech={ TURFCRAFTING=2 } 
  },
  turf_pebblebeach={
    ingredients={ driftwood_log=1, rocks=1 },
    product={ turf_pebblebeach=4 },
    tech={ TURFCRAFTING=2 } 
  },
  turf_road={
    ingredients={ cutstone=1, flint=2 },
    product={ turf_road=4 },
    tech={ SCIENCE=2 } 
  },
  turf_rocky={
    ingredients={ flint=1, rocks=1 },
    product={ turf_rocky=4 },
    tech={ TURFCRAFTING=2 } 
  },
  turf_ruinsbrick={
    ingredients={ nightmarefuel=1, rocks=2 },
    product={ turf_ruinsbrick=4 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  turf_ruinsbrick_glow={
    ingredients={ rocks=2 },
    product={ turf_ruinsbrick_glow=4 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  turf_ruinstiles={
    ingredients={ nightmarefuel=1, rocks=2 },
    product={ turf_ruinstiles=4 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  turf_ruinstiles_glow={
    ingredients={ rocks=2 },
    product={ turf_ruinstiles_glow=4 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  turf_ruinstrim={
    ingredients={ nightmarefuel=1, rocks=2 },
    product={ turf_ruinstrim=4 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  turf_ruinstrim_glow={
    ingredients={ rocks=2 },
    product={ turf_ruinstrim_glow=4 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  turf_savanna={
    ingredients={ cutgrass=1, poop=1 },
    product={ turf_savanna=4 },
    tech={ TURFCRAFTING=2 } 
  },
  turf_shellbeach={
    ingredients={ rocks=1, slurtle_shellpieces=1 },
    product={ turf_shellbeach=4 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  turf_sinkhole={
    ingredients={ cutgrass=1, foliage=1 },
    product={ turf_sinkhole=4 },
    tech={ TURFCRAFTING=2 } 
  },
  turf_underrock={ ingredients={ rocks=3 }, product={ turf_underrock=4 }, tech={ TURFCRAFTING=2 } },
  turf_woodfloor={ ingredients={ boards=1 }, product={ turf_woodfloor=4 }, tech={ SCIENCE=2 } },
  turfcraftingstation={
    ingredients={ cutstone=3, thulecite=1, wetgoop=1 },
    product={ turfcraftingstation=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  umbrella={
    ingredients={ pigskin=1, silk=2, twigs=6 },
    product={ umbrella=1 },
    tech={ SCIENCE=1 } 
  },
  voidcloth_kit={
    ingredients={ horrorfuel=1, voidcloth=1 },
    product={ voidcloth_kit=1 },
    tech={ SHADOWFORGING=2 } 
  },
  voidcloth_scythe={
    ingredients={ horrorfuel=3, voidcloth=1 },
    product={ voidcloth_scythe=1 },
    tech={ SHADOWFORGING=2 } 
  },
  voidcloth_umbrella={
    ingredients={ horrorfuel=5, voidcloth=1 },
    product={ voidcloth_umbrella=1 },
    tech={ SHADOWFORGING=2 } 
  },
  voidclothhat={
    ingredients={ horrorfuel=4, voidcloth=2 },
    product={ voidclothhat=1 },
    tech={ SHADOWFORGING=2 } 
  },
  walking_stick={
    builder_tag="woodcarver3",
    ingredients={ charcoal=1, log=3, lucy=0 },
    product={ walking_stick=1 } 
  },
  wall_dreadstone_item={
    ingredients={ dreadstone=4 },
    product={ wall_dreadstone_item=4 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  wall_hay_item={
    ingredients={ cutgrass=4, twigs=2 },
    product={ wall_hay_item=4 },
    tech={ SCIENCE=1 } 
  },
  wall_moonrock_item={
    ingredients={ moonrocknugget=4 },
    product={ wall_moonrock_item=4 },
    tech={ SCIENCE=2 } 
  },
  wall_ruins_2_item={
    ingredients={ thulecite=1 },
    is_deconstruction_recipe=true,
    product={ wall_ruins_2_item=1 } 
  },
  wall_ruins_item={ ingredients={ thulecite=1 }, product={ wall_ruins_item=6 }, tech={ ANCIENT=2 } },
  wall_stone_2_item={
    ingredients={ cutstone=2 },
    is_deconstruction_recipe=true,
    product={ wall_stone_2_item=1 } 
  },
  wall_stone_item={ ingredients={ cutstone=2 }, product={ wall_stone_item=6 }, tech={ SCIENCE=2 } },
  wall_wood_item={
    ingredients={ boards=2, rope=1 },
    product={ wall_wood_item=8 },
    tech={ SCIENCE=1 } 
  },
  walterhat={ builder_tag="pinetreepioneer", ingredients={ silk=4 }, product={ walterhat=1 } },
  wardrobe={
    ingredients={ boards=4, cutgrass=3 },
    product={ wardrobe=1 },
    tech={ SCIENCE=2 } 
  },
  wargshrine={
    ingredients={ boards=2, goldnugget=4 },
    product={ wargshrine=1 },
    tech={ SCIENCE=10 } 
  },
  waterballoon={
    ingredients={ ice=1, mosquitosack=2 },
    product={ waterballoon=4 },
    tech={ SCIENCE=1 } 
  },
  wateringcan={
    ingredients={ boards=2, rope=1 },
    product={ wateringcan=1 },
    tech={ SCIENCE=1 } 
  },
  watermelonhat={
    ingredients={ twigs=3, watermelon=1 },
    product={ watermelonhat=1 },
    tech={ SCIENCE=1 } 
  },
  waterpump={
    ingredients={ boards=2, oceanfish_small_9_inv=1 },
    product={ waterpump=1 },
    tech={ SEAFARING=1 } 
  },
  wathgrithrhat={
    builder_tag="valkyrie",
    ingredients={ goldnugget=2, rocks=2 },
    product={ wathgrithrhat=1 } 
  },
  waxpaper={
    ingredients={ beeswax=1, papyrus=1 },
    product={ waxpaper=1 },
    tech={ SCIENCE=2 } 
  },
  waxwelljournal={
    builder_tag="shadowmagic",
    ingredients={ decrease_health=50, nightmarefuel=2, papyrus=2 },
    product={ waxwelljournal=1 } 
  },
  wereitem_beaver={
    builder_tag="werehuman",
    ingredients={ log=2, monstermeat=3 },
    product={ wereitem_beaver=1 } 
  },
  wereitem_goose={
    builder_tag="werehuman",
    ingredients={ monstermeat=3, seeds=3 },
    product={ wereitem_goose=1 } 
  },
  wereitem_moose={
    builder_tag="werehuman",
    ingredients={ cutgrass=2, monstermeat=3 },
    product={ wereitem_moose=1 } 
  },
  whip={
    ingredients={ coontail=3, tentaclespots=1 },
    product={ whip=1 },
    tech={ SCIENCE=2 } 
  },
  winch={
    ingredients={ boards=2, cutstone=1, rope=2 },
    product={ winch=1 },
    tech={ ANCIENT=10, MAGIC=10, SCIENCE=10 } 
  },
  winona_battery_high={
    builder_tag="handyperson",
    ingredients={ boards=2, sewing_tape=1, transistor=2 },
    product={ winona_battery_high=1 } 
  },
  winona_battery_low={
    builder_tag="handyperson",
    ingredients={ log=2, nitre=2, sewing_tape=1 },
    product={ winona_battery_low=1 } 
  },
  winona_catapult={
    builder_tag="handyperson",
    ingredients={ rocks=15, sewing_tape=1, twigs=3 },
    product={ winona_catapult=1 } 
  },
  winona_spotlight={
    builder_tag="handyperson",
    ingredients={ fireflies=1, goldnugget=2, sewing_tape=1 },
    product={ winona_spotlight=1 } 
  },
  winter_treestand={
    ingredients={ boards=1, poop=2 },
    product={ winter_treestand=1 },
    tech={ SCIENCE=10 } 
  },
  wintercooking_berrysauce={
    ingredients={ mosquitosack=2, wintersfeastfuel=1 },
    product={ wintercooking_berrysauce=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_bibingka={
    ingredients={ foliage=2, wintersfeastfuel=1 },
    product={ wintercooking_bibingka=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_cabbagerolls={
    ingredients={ cutreeds=2, wintersfeastfuel=1 },
    product={ wintercooking_cabbagerolls=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_festivefish={
    ingredients={ petals=1, spoiled_fish_small=1, wintersfeastfuel=1 },
    product={ wintercooking_festivefish=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_gravy={
    ingredients={ boneshard=1, spoiled_food=1, wintersfeastfuel=1 },
    product={ wintercooking_gravy=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_latkes={
    ingredients={ cutgrass=1, twigs=1, wintersfeastfuel=1 },
    product={ wintercooking_latkes=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_lutefisk={
    ingredients={ driftwood_log=1, spoiled_fish=1, wintersfeastfuel=1 },
    product={ wintercooking_lutefisk=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_mulleddrink={
    ingredients={ ice=1, petals_evil=1, wintersfeastfuel=1 },
    product={ wintercooking_mulleddrink=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_panettone={
    ingredients={ rock_avocado_fruit=2, wintersfeastfuel=1 },
    product={ wintercooking_panettone=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_pavlova={
    ingredients={ moon_tree_blossom=2, wintersfeastfuel=1 },
    product={ wintercooking_pavlova=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_pickledherring={
    ingredients={ flint=1, saltrock=1, wintersfeastfuel=1 },
    product={ wintercooking_pickledherring=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_polishcookie={
    ingredients={ butterflywings=2, wintersfeastfuel=1 },
    product={ wintercooking_polishcookie=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_pumpkinpie={
    ingredients={ ash=1, phlegm=1, wintersfeastfuel=1 },
    product={ wintercooking_pumpkinpie=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_roastturkey={
    ingredients={ charcoal=1, log=1, wintersfeastfuel=1 },
    product={ wintercooking_roastturkey=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_stuffing={
    ingredients={ beardhair=2, wintersfeastfuel=1 },
    product={ wintercooking_stuffing=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_sweetpotato={
    ingredients={ rocks=2, wintersfeastfuel=1 },
    product={ wintercooking_sweetpotato=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_tamales={
    ingredients={ stinger=2, wintersfeastfuel=1 },
    product={ wintercooking_tamales=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  wintercooking_tourtiere={
    ingredients={ acorn=1, pinecone=1, wintersfeastfuel=1 },
    product={ wintercooking_tourtiere=1 },
    tech={ WINTERSFEASTCOOKING=1 } 
  },
  winterhat={
    ingredients={ beefalowool=4, silk=4 },
    product={ winterhat=1 },
    tech={ SCIENCE=2 } 
  },
  winterometer={
    ingredients={ boards=2, goldnugget=2 },
    product={ winterometer=1 },
    tech={ SCIENCE=1 } 
  },
  wintersfeastoven={
    ingredients={ cutstone=1, log=1, marble=1 },
    product={ wintersfeastoven=1 },
    tech={ SCIENCE=10 } 
  },
  wolfgang_whistle={
    builder_tag="wolfgang_coach",
    ingredients={ flint=1, rope=1 },
    product={ wolfgang_whistle=1 } 
  },
  woodcarvedhat={
    builder_tag="woodcarver2",
    ingredients={ log=6, lucy=0, pinecone=1 },
    product={ woodcarvedhat=1 } 
  },
  woodie_boards={ builder_tag="woodcarver1", ingredients={ log=3, lucy=0 }, product={ boards=1 } },
  wormwood_berrybush={
    builder_tag="berrybushcrafter",
    ingredients={ berries_juicy=8, decrease_health=10, spoiled_food=3 },
    product={ dug_berrybush=1 } 
  },
  wormwood_berrybush2={
    builder_tag="berrybushcrafter",
    ingredients={ berries_juicy=8, decrease_health=10, spoiled_food=3 },
    product={ dug_berrybush2=1 } 
  },
  wormwood_carrat={
    builder_tag="carratcrafter",
    ingredients={ carrot=1, decrease_health=5 },
    product={ wormwood_mutantproxy_carrat=1 } 
  },
  wormwood_fruitdragon={
    builder_tag="fruitdragoncrafter",
    ingredients={ decrease_health=25, dragonfruit=1 },
    product={ wormwood_mutantproxy_fruitdragon=1 } 
  },
  wormwood_juicyberrybush={
    builder_tag="juicyberrybushcrafter",
    ingredients={ berries=8, decrease_health=10, spoiled_food=3 },
    product={ dug_berrybush_juicy=1 } 
  },
  wormwood_lightflier={
    builder_tag="lightfliercrafter",
    ingredients={ decrease_health=10, lightbulb=1 },
    product={ wormwood_mutantproxy_lightflier=1 } 
  },
  wormwood_lureplant={
    builder_tag="lureplantcrafter",
    ingredients={ compostwrap=2, decrease_health=25, plantmeat=5 },
    product={ lureplantbulb=1 } 
  },
  wormwood_reeds={
    builder_tag="reedscrafter",
    ingredients={ cave_banana=1, cutreeds=4, decrease_health=15 },
    product={ dug_monkeytail=1 } 
  },
  wormwood_sapling={
    builder_tag="saplingcrafter",
    ingredients={ decrease_health=5, twigs=5 },
    product={ dug_sapling_moon=1 } 
  },
  wurt_turf_marsh={
    builder_tag="merm_builder",
    ingredients={ cutreeds=1, spoiled_food=2 },
    product={ turf_marsh=4 } 
  },
  wx78_moduleremover={
    builder_tag="upgrademoduleowner",
    ingredients={ rocks=2, twigs=2 },
    product={ wx78_moduleremover=1 } 
  },
  wx78_scanner_item={
    builder_tag="upgrademoduleowner",
    ingredients={ silk=1, transistor=1 },
    product={ wx78_scanner_item=1 } 
  },
  wx78module_bee={
    builder_tag="upgrademoduleowner",
    ingredients={ royal_jelly=1, scandata=8, wx78module_maxsanity=1 },
    product={ wx78module_bee=1 },
    tech={ ROBOTMODULECRAFT=1 } 
  },
  wx78module_cold={
    builder_tag="upgrademoduleowner",
    ingredients={ bluegem=1, scandata=4 },
    product={ wx78module_cold=1 },
    tech={ ROBOTMODULECRAFT=1 } 
  },
  wx78module_heat={
    builder_tag="upgrademoduleowner",
    ingredients={ redgem=1, scandata=4 },
    product={ wx78module_heat=1 },
    tech={ ROBOTMODULECRAFT=1 } 
  },
  wx78module_light={
    builder_tag="upgrademoduleowner",
    ingredients={ lightbulb=1, scandata=6 },
    product={ wx78module_light=1 },
    tech={ ROBOTMODULECRAFT=1 } 
  },
  wx78module_maxhealth={
    builder_tag="upgrademoduleowner",
    ingredients={ scandata=2, spidergland=1 },
    product={ wx78module_maxhealth=1 },
    tech={ ROBOTMODULECRAFT=1 } 
  },
  wx78module_maxhealth2={
    builder_tag="upgrademoduleowner",
    ingredients={ scandata=4, spidergland=2, wx78module_maxhealth=1 },
    product={ wx78module_maxhealth2=1 },
    tech={ ROBOTMODULECRAFT=1 } 
  },
  wx78module_maxhunger={
    builder_tag="upgrademoduleowner",
    ingredients={ scandata=3, slurper_pelt=1, wx78module_maxhunger1=1 },
    product={ wx78module_maxhunger=1 },
    tech={ ROBOTMODULECRAFT=1 } 
  },
  wx78module_maxhunger1={
    builder_tag="upgrademoduleowner",
    ingredients={ houndstooth=1, scandata=2 },
    product={ wx78module_maxhunger1=1 },
    tech={ ROBOTMODULECRAFT=1 } 
  },
  wx78module_maxsanity={
    builder_tag="upgrademoduleowner",
    ingredients={ nightmarefuel=1, scandata=3, wx78module_maxsanity1=1 },
    product={ wx78module_maxsanity=1 },
    tech={ ROBOTMODULECRAFT=1 } 
  },
  wx78module_maxsanity1={
    builder_tag="upgrademoduleowner",
    ingredients={ petals=1, scandata=1 },
    product={ wx78module_maxsanity1=1 },
    tech={ ROBOTMODULECRAFT=1 } 
  },
  wx78module_movespeed={
    builder_tag="upgrademoduleowner",
    ingredients={ rabbit=1, scandata=2 },
    product={ wx78module_movespeed=1 },
    tech={ ROBOTMODULECRAFT=1 } 
  },
  wx78module_movespeed2={
    builder_tag="upgrademoduleowner",
    ingredients={ gears=1, scandata=6, wx78module_movespeed=1 },
    product={ wx78module_movespeed2=1 },
    tech={ ROBOTMODULECRAFT=1 } 
  },
  wx78module_music={
    builder_tag="upgrademoduleowner",
    ingredients={ scandata=4, singingshell_octave3=1 },
    product={ wx78module_music=1 },
    tech={ ROBOTMODULECRAFT=1 } 
  },
  wx78module_nightvision={
    builder_tag="upgrademoduleowner",
    ingredients={ fireflies=1, mole=1, scandata=4 },
    product={ wx78module_nightvision=1 },
    tech={ ROBOTMODULECRAFT=1 } 
  },
  wx78module_taser={
    builder_tag="upgrademoduleowner",
    ingredients={ goatmilk=1, scandata=5 },
    product={ wx78module_taser=1 },
    tech={ ROBOTMODULECRAFT=1 } 
  },
  yellowamulet={
    ingredients={ nightmarefuel=3, thulecite=2, yellowgem=1 },
    product={ yellowamulet=1 },
    tech={ ANCIENT=2 } 
  },
  yellowmooneye={
    ingredients={ moonrockcrater=1, yellowgem=1 },
    is_deconstruction_recipe=true,
    product={ yellowmooneye=1 } 
  },
  yellowstaff={
    ingredients={ livinglog=2, nightmarefuel=4, yellowgem=2 },
    product={ yellowstaff=1 },
    tech={ ANCIENT=2 } 
  },
  yot_catcoonshrine={
    ingredients={ boards=2, goldnugget=4 },
    product={ yot_catcoonshrine=1 },
    tech={ SCIENCE=10 } 
  },
  yotb_beefaloshrine={
    ingredients={ boards=2, goldnugget=4 },
    product={ yotb_beefaloshrine=1 },
    tech={ SCIENCE=10 } 
  },
  yotb_pattern_fragment_1={
    ingredients={ lucky_goldnugget=5 },
    product={ yotb_pattern_fragment_1=1 },
    tech={ BEEFOFFERING=3 } 
  },
  yotb_pattern_fragment_2={
    ingredients={ lucky_goldnugget=5 },
    product={ yotb_pattern_fragment_2=1 },
    tech={ BEEFOFFERING=3 } 
  },
  yotb_pattern_fragment_3={
    ingredients={ lucky_goldnugget=5 },
    product={ yotb_pattern_fragment_3=1 },
    tech={ BEEFOFFERING=3 } 
  },
  yotb_post={
    ingredients={ boards=2, goldnugget=1 },
    is_deconstruction_recipe=true,
    product={ yotb_post=1 } 
  },
  yotb_post_item={
    ingredients={ boards=2, goldnugget=1 },
    product={ yotb_post_item=1 },
    tech={ BEEFOFFERING=3 } 
  },
  yotb_sewingmachine_item={
    ingredients={ goldnugget=1, silk=2, stinger=1 },
    product={ yotb_sewingmachine_item=1 },
    tech={ BEEFOFFERING=3 } 
  },
  yotb_stage_item={
    ingredients={ beefalowool=2, boards=4, goldnugget=2 },
    product={ yotb_stage_item=1 },
    tech={ BEEFOFFERING=3 } 
  },
  yotc_carrat_gym_direction={
    ingredients={ lucky_goldnugget=4 },
    is_deconstruction_recipe=true,
    product={ yotc_carrat_gym_direction=1 } 
  },
  yotc_carrat_gym_direction_item={
    ingredients={ lucky_goldnugget=4 },
    product={ yotc_carrat_gym_direction_item=1 },
    tech={ CARRATOFFERING=3 } 
  },
  yotc_carrat_gym_reaction={
    ingredients={ lucky_goldnugget=4 },
    is_deconstruction_recipe=true,
    product={ yotc_carrat_gym_reaction=1 } 
  },
  yotc_carrat_gym_reaction_item={
    ingredients={ lucky_goldnugget=4 },
    product={ yotc_carrat_gym_reaction_item=1 },
    tech={ CARRATOFFERING=3 } 
  },
  yotc_carrat_gym_speed={
    ingredients={ lucky_goldnugget=4 },
    is_deconstruction_recipe=true,
    product={ yotc_carrat_gym_speed=1 } 
  },
  yotc_carrat_gym_speed_item={
    ingredients={ lucky_goldnugget=4 },
    product={ yotc_carrat_gym_speed_item=1 },
    tech={ CARRATOFFERING=3 } 
  },
  yotc_carrat_gym_stamina={
    ingredients={ lucky_goldnugget=4 },
    is_deconstruction_recipe=true,
    product={ yotc_carrat_gym_stamina=1 } 
  },
  yotc_carrat_gym_stamina_item={
    ingredients={ lucky_goldnugget=4 },
    product={ yotc_carrat_gym_stamina_item=1 },
    tech={ CARRATOFFERING=3 } 
  },
  yotc_carrat_race_checkpoint={
    ingredients={ lucky_goldnugget=1 },
    is_deconstruction_recipe=true,
    product={ yotc_carrat_race_checkpoint=1 } 
  },
  yotc_carrat_race_checkpoint_item={
    ingredients={ lucky_goldnugget=2 },
    product={ yotc_carrat_race_checkpoint_item=1 },
    tech={ CARRATOFFERING=3 } 
  },
  yotc_carrat_race_finish={
    ingredients={ goldnugget=1 },
    is_deconstruction_recipe=true,
    product={ yotc_carrat_race_finish=1 } 
  },
  yotc_carrat_race_finish_item={
    ingredients={ goldnugget=1 },
    product={ yotc_carrat_race_finish_item=1 },
    tech={ CARRATOFFERING=3 } 
  },
  yotc_carrat_race_start={
    ingredients={ goldnugget=1 },
    is_deconstruction_recipe=true,
    product={ yotc_carrat_race_start=1 } 
  },
  yotc_carrat_race_start_item={
    ingredients={ goldnugget=1 },
    product={ yotc_carrat_race_start_item=1 },
    tech={ CARRATOFFERING=3 } 
  },
  yotc_carrat_scale={
    ingredients={ lucky_goldnugget=1 },
    is_deconstruction_recipe=true,
    product={ yotc_carrat_scale=1 } 
  },
  yotc_carrat_scale_item={
    ingredients={ lucky_goldnugget=1 },
    product={ yotc_carrat_scale_item=1 },
    tech={ CARRATOFFERING=3 } 
  },
  yotc_carratshrine={
    ingredients={ boards=2, goldnugget=4 },
    product={ yotc_carratshrine=1 },
    tech={ SCIENCE=10 } 
  },
  yotc_seedpacket={
    ingredients={ lucky_goldnugget=2 },
    product={ yotc_seedpacket=1 },
    tech={ CARRATOFFERING=3 } 
  },
  yotc_seedpacket_rare={
    ingredients={ lucky_goldnugget=4 },
    product={ yotc_seedpacket_rare=1 },
    tech={ CARRATOFFERING=3 } 
  },
  yotc_shrinecarrat={ ingredients={ goldnugget=4 }, product={ carrat=1 }, tech={ CARRATOFFERING=3 } },
  yotp_food1={
    ingredients={ lucky_goldnugget=6 },
    product={ yotp_food1=1 },
    tech={ PIGOFFERING=3 } 
  },
  yotp_food2={
    ingredients={ lucky_goldnugget=1 },
    product={ yotp_food2=1 },
    tech={ PIGOFFERING=3 } 
  },
  yotp_food3={
    ingredients={ lucky_goldnugget=4 },
    product={ yotp_food3=1 },
    tech={ PIGOFFERING=3 } 
  },
  yotr_decor_1_item={
    ingredients={ lucky_goldnugget=5 },
    product={ yotr_decor_1_item=1 },
    tech={ RABBITOFFERING=3 } 
  },
  yotr_decor_2_item={
    ingredients={ lucky_goldnugget=5 },
    product={ yotr_decor_2_item=1 },
    tech={ RABBITOFFERING=3 } 
  },
  yotr_fightring_kit={
    ingredients={ boards=2 },
    product={ yotr_fightring_kit=1 },
    tech={ RABBITOFFERING=3 } 
  },
  yotr_food1={
    ingredients={ lucky_goldnugget=5 },
    product={ yotr_food1=1 },
    tech={ RABBITOFFERING=3 } 
  },
  yotr_food2={
    ingredients={ lucky_goldnugget=5 },
    product={ yotr_food2=1 },
    tech={ RABBITOFFERING=3 } 
  },
  yotr_food3={
    ingredients={ lucky_goldnugget=5 },
    product={ yotr_food3=1 },
    tech={ RABBITOFFERING=3 } 
  },
  yotr_food4={
    ingredients={ lucky_goldnugget=5 },
    product={ yotr_food4=1 },
    tech={ RABBITOFFERING=3 } 
  },
  yotr_rabbitshrine={
    ingredients={ boards=2, goldnugget=4 },
    product={ yotr_rabbitshrine=1 },
    tech={ SCIENCE=10 } 
  },
  yotr_token={
    ingredients={ goldnugget=1 },
    product={ yotr_token=1 },
    tech={ RABBITOFFERING=3 } 
  } 
}