diff --git a/.env.example b/.env
similarity index 89%
rename from .env.example
rename to .env
index 1435b5a..c1b59fc 100644
--- a/.env.example
+++ b/.env
@@ -4,10 +4,10 @@
# ----------------------------
# PostgreSQL connection details (database is expected to run on the Docker host)
-PSQL_HOST=127.0.0.1
+PSQL_HOST=10.0.0.199
PSQL_PORT=5432
PSQL_USER=postgres
-PSQL_PASSWORD=postgres
+PSQL_PASSWORD=DP3Wv*QM#t8bY*N
PSQL_DBNAME=ffxi_items
# Host ports to expose the containers (edit if they clash)
diff --git a/.env copy.example b/.env copy.example
new file mode 100644
index 0000000..cd9edf6
--- /dev/null
+++ b/.env copy.example
@@ -0,0 +1,15 @@
+# ----------------------------
+# Example environment file for MOG APP Docker deployment
+# Copy this file to `.env` at the project root and adjust the values
+# ----------------------------
+
+# PostgreSQL connection details (database is expected to run on the Docker host)
+PSQL_HOST=10.0.0.199
+PSQL_PORT=5432
+PSQL_USER=postgres
+PSQL_PASSWORD='DP3Wv*QM#t8bY*N'
+PSQL_DBNAME=ffxi_items
+
+# Host ports to expose the containers (edit if they clash)
+API_PORT=8000
+WEB_PORT=3050
diff --git a/README.md b/README.md
index 24f66ac..4874a70 100644
--- a/README.md
+++ b/README.md
@@ -20,6 +20,7 @@
## Key Features
* **Crafting Recipes** – colour-coded craft tabs (woodworking brown, smithing grey, etc.), full filters, icons, ingredients, HQ yields, and cross-links to inventory.
+* **Desynthesis Recipes** – quickly find items to break down. Craft-coloured tabs and new "Owned / Partially owned" filters work off **ingredient ownership**, just like crafting recipes.
* **Inventory Manager** – grid view with sorting (slot ▶ default, name, type), duplicate-item indicator (orange bar on top), tooltips, quantity badges, and direct wiki links.
* **Item Explorer** – fast, fuzzy search across all items with type sub-tabs and recipe cross-navigation.
* **Item Detail Dialog** – centred modal with icon, description, usage breakdown, and craft-coloured section headers.
diff --git a/TODO.md b/TODO.md
index 0ef4592..bceb1d1 100644
--- a/TODO.md
+++ b/TODO.md
@@ -32,6 +32,17 @@
- [X] Display item icons where available
- [X] Display item descriptions where available
+### Desynthesis UI
+
+- [x] Owned / Partially owned ingredient filters
+- [x] Craft-coloured sub-tabs consistent with Recipes page
+- [ ] Display crystal icons
+
+- [X] Filter for recipes whose ingredients are **fully** or **partially** owned
+- [X] Show which inventory tab contains each owned ingredient
+- [X] Display item icons where available
+- [X] Display item descriptions where available
+
## Performance
- [ ] Speed up loading of data (consider table joins)
diff --git a/backend/app/main.py b/backend/app/main.py
index 082b458..6d83494 100644
--- a/backend/app/main.py
+++ b/backend/app/main.py
@@ -51,10 +51,21 @@ async def ensure_view():
"""),
{"table": t},
)
+ stack_exists = await conn.scalar(
+ text(
+ """
+ SELECT EXISTS (
+ SELECT 1 FROM information_schema.columns
+ WHERE table_name=:table AND column_name='stack_size'
+ )
+ """),
+ {"table": t},
+ )
desc_col = "description" if desc_exists else "NULL"
icon_col = "icon_id" if icon_exists else "NULL"
+ stack_col = "stack_size" if stack_exists else "NULL"
selects.append(
- f"SELECT id, name, {desc_col} AS description, {icon_col} AS icon_id, type_description FROM {t}"
+ f"SELECT id, name, {desc_col} AS description, {icon_col} AS icon_id, type_description, {stack_col} AS stack_size FROM {t}"
)
union_sql = " UNION ALL ".join(selects)
diff --git a/backend/app/models.py b/backend/app/models.py
index 950a86c..818b368 100644
--- a/backend/app/models.py
+++ b/backend/app/models.py
@@ -15,10 +15,21 @@ class Inventory(Base):
character_name = Column(String)
storage_type = Column(String)
item_name = Column(String)
+ item_id = Column(Integer, nullable=True)
quantity = Column(Integer)
last_updated = Column(DateTime, default=datetime.utcnow)
+class ItemIcon(Base):
+ __tablename__ = "item_icons"
+
+ id = Column(Integer, primary_key=True)
+ category = Column(String, nullable=False)
+ image_data = Column(String, nullable=False)
+ image_format = Column(String, nullable=True)
+ image_encoding = Column(String, nullable=True)
+
+
class Spell(Base):
"""Spell table with job level columns (selected jobs only)."""
diff --git a/backend/app/recipes_router.py b/backend/app/recipes_router.py
index dfc6f4b..054be51 100644
--- a/backend/app/recipes_router.py
+++ b/backend/app/recipes_router.py
@@ -15,6 +15,7 @@ from .database import get_session
# Map craft names -> table names in Postgres
ALLOWED_CRAFTS = {
+ "desynthesis": "recipes_desynthesis",
"woodworking": "recipes_woodworking",
"smithing": "recipes_smithing",
"alchemy": "recipes_alchemy",
@@ -33,6 +34,17 @@ class RecipeUsageSummary(BaseModel):
name: str
level: int
+class DesynthRecipe(BaseModel):
+ id: int
+ craft: str
+ cap: Optional[int] | None = None
+ item: str
+ crystal: str
+ ingredients: str # raw text, quantity assumed 1 each
+ hq1: Optional[str] | None = None
+ hq2: Optional[str] | None = None
+ hq3: Optional[str] | None = None
+
class ItemRecipeUsage(BaseModel):
crafted: list[RecipeUsageSummary] = []
ingredient: list[RecipeUsageSummary] = []
@@ -60,6 +72,29 @@ def _craft_table(craft: str) -> str:
return ALLOWED_CRAFTS[craft_lower]
+@router.get("/recipes/desynthesis", response_model=List[DesynthRecipe])
+async def list_desynth_recipes(session: AsyncSession = Depends(get_session)):
+ q = text("SELECT * FROM recipes_desynthesis ORDER BY item")
+ result = await session.execute(q)
+ rows = result.fetchall()
+ out: list[DesynthRecipe] = []
+ for r in rows:
+ out.append(
+ DesynthRecipe(
+ id=r.id,
+ craft=r.craft,
+ cap=r.cap,
+ item=r.item,
+ crystal=r.crystal,
+ ingredients=r.ingredients,
+ hq1=r.hq1,
+ hq2=r.hq2,
+ hq3=r.hq3,
+ )
+ )
+ return out
+
+
@router.get("/recipes/{craft}", response_model=List[RecipeDetail])
async def list_recipes(
craft: str = Path(..., description="Craft name, e.g. woodworking"),
@@ -134,10 +169,15 @@ async def item_recipe_usage(item_name: str, session: AsyncSession = Depends(get_
)
# As ingredient (simple text match in JSON/array column)
+ # Match exact ingredient name by looking for the item quoted in the JSON text.
+ # Using the surrounding double quotes prevents partial matches, e.g. "Chestnut" will not
+ # match the ingredient string "Chestnut Lumber".
+ quoted = f'"{item_name}"'
q2 = text(
- f"SELECT id, name, level FROM {table} WHERE ingredients::text ILIKE :pat LIMIT 50"
+ f"SELECT id, name, level FROM {table} "
+ f"WHERE ingredients::text ILIKE :pat LIMIT 50"
)
- res2 = await session.execute(q2, {"pat": f"%{item_name}%"})
+ res2 = await session.execute(q2, {"pat": f"%{quoted}%"})
for r in res2.fetchall():
if not any(c.id == r.id and c.craft == craft for c in crafted) and not any(
i.id == r.id and i.craft == craft for i in ingredient
diff --git a/backend/app/router.py b/backend/app/router.py
index 1799fe0..86df1c2 100644
--- a/backend/app/router.py
+++ b/backend/app/router.py
@@ -33,13 +33,13 @@ async def import_inventory_csv(
raise HTTPException(status_code=400, detail="CSV must be UTF-8 encoded")
reader = csv.DictReader(io.StringIO(text_data), delimiter=";", quotechar='"')
- rows = []
+ raw_rows = []
for r in reader:
try:
qty = int(r["quantity"].strip()) if r["quantity"].strip() else 0
except (KeyError, ValueError):
raise HTTPException(status_code=400, detail="Invalid CSV schema or quantity value")
- rows.append(
+ raw_rows.append(
{
"character_name": r["char"].strip(),
"storage_type": r["storage"].strip(),
@@ -48,6 +48,57 @@ async def import_inventory_csv(
}
)
+ # ---------------------------------------------------------------------
+ # Resolve stack sizes and split quantities across inventory slots
+ # ---------------------------------------------------------------------
+ item_names = {r["item_name"] for r in raw_rows}
+ stack_sizes: dict[str, int] = {}
+ if item_names:
+ # Discover item tables that have a stack_size column ( *_items )
+ tbl_res = await session.execute(
+ text(
+ """
+ SELECT table_name
+ FROM information_schema.columns
+ WHERE table_schema = 'public'
+ AND column_name = 'stack_size'
+ AND table_name LIKE '%_items'
+ """
+ )
+ )
+ item_tables = [row[0] for row in tbl_res.fetchall()]
+
+ # Query each table for name ▸ stack_size entries we need
+ for t in item_tables:
+ q = text(f"SELECT name, stack_size FROM {t} WHERE name = ANY(:names)")
+ res = await session.execute(q, {"names": list(item_names)})
+ for name, stack in res.fetchall():
+ # Prefer the first non-null value encountered
+ if name not in stack_sizes or not stack_sizes[name]:
+ stack_sizes[name] = (stack or 1) if stack and stack > 0 else 1
+
+ def _stack_for(item_name: str) -> int:
+ return stack_sizes.get(item_name, 1) or 1
+
+ # Resolve item_ids via all_items once
+ id_rows = await session.execute(text("SELECT id,name FROM all_items WHERE name = ANY(:names)"), {"names": list(item_names)})
+ id_map = {n: i for i, n in id_rows.fetchall()}
+
+ rows: list[dict] = []
+ for r in raw_rows:
+ qty = r["quantity"]
+ if qty <= 0:
+ continue
+ stack = _stack_for(r["item_name"])
+ # Split into multiple slot-rows respecting stack size
+ while qty > 0:
+ take = min(stack, qty)
+ slot_row = r.copy()
+ slot_row["quantity"] = take
+ slot_row["item_id"] = id_map.get(r["item_name"]) # may be None
+ rows.append(slot_row)
+ qty -= take
+
# Replace table contents inside a transaction
try:
await session.execute(text("TRUNCATE TABLE inventory;"))
@@ -105,6 +156,7 @@ class InventoryItem(BaseModel):
description: Optional[str]
icon_id: Optional[str]
type_description: Optional[str]
+ stack_size: Optional[int]
last_updated: Optional[datetime]
class Config:
@@ -119,7 +171,7 @@ async def inventory(
):
"""Return items for a character, optionally filtered by storage_type."""
base_sql = """
- SELECT i.*, ai.description, ai.icon_id, ai.type_description
+ SELECT i.*, ai.description, ai.icon_id, ai.type_description, ai.stack_size
FROM inventory i
LEFT JOIN all_items ai ON ai.name = i.item_name
WHERE i.character_name = :char
@@ -139,6 +191,7 @@ async def inventory(
description=r.description,
icon_id=r.icon_id,
type_description=r.type_description,
+ stack_size=r.stack_size,
last_updated=r.last_updated,
) for r in rows]
@@ -217,6 +270,7 @@ class ItemDetail(BaseModel):
description: Optional[str]
icon_id: Optional[str]
type_description: Optional[str]
+ icon_b64: Optional[str] = None
@router.get("/icon/{icon_id}")
@@ -238,32 +292,66 @@ async def get_icon(icon_id: str, session: AsyncSession = Depends(get_session)):
@router.get("/items/by-name/{item_name}", response_model=ItemDetail)
async def item_detail_by_name(item_name: str, session: AsyncSession = Depends(get_session)):
- q = text("SELECT * FROM all_items WHERE name = :n LIMIT 1")
+ q = text("""
+ SELECT a.*, ic.image_data, ic.image_encoding
+ FROM all_items a
+ LEFT JOIN item_icons ic ON ic.id = a.icon_id
+ WHERE a.name = :n
+ LIMIT 1
+ """)
row = (await session.execute(q, {"n": item_name})).fetchone()
if not row:
raise HTTPException(status_code=404, detail="Item not found")
+ import base64
+ icon_b64: str | None = None
+ if row.image_data is not None:
+ if row.image_encoding == "base64":
+ icon_b64 = row.image_data
+ else:
+ try:
+ icon_b64 = base64.b64encode(row.image_data).decode()
+ except Exception:
+ icon_b64 = None
return ItemDetail(
id=row.id,
name=row.name,
description=row.description,
icon_id=row.icon_id,
type_description=row.type_description,
+ icon_b64=icon_b64,
)
@router.get("/items/{item_id}", response_model=ItemDetail)
-async def item_detail(item_id: int, session: AsyncSession = Depends(get_session)):
- """Fetch full item record from all_items view."""
- q = text("SELECT * FROM all_items WHERE id = :id LIMIT 1")
- result = await session.execute(q, {"id": item_id})
- row = result.fetchone()
+async def item_detail(item_id: int = Path(..., ge=1), session: AsyncSession = Depends(get_session)):
+ """Retrieve item metadata and icon by numeric ID."""
+ q = text(
+ """
+ SELECT a.*, ic.image_data, ic.image_encoding
+ FROM all_items a
+ LEFT JOIN item_icons ic ON ic.id = a.icon_id
+ WHERE a.id = :id
+ LIMIT 1
+ """
+ )
+ row = (await session.execute(q, {"id": item_id})).fetchone()
if not row:
raise HTTPException(status_code=404, detail="Item not found")
-
+ import base64
+ icon_b64: str | None = None
+ if row.image_data is not None:
+ if row.image_encoding == "base64":
+ icon_b64 = row.image_data
+ else:
+ try:
+ icon_b64 = base64.b64encode(row.image_data).decode()
+ except Exception:
+ icon_b64 = None
return ItemDetail(
id=row.id,
name=row.name,
description=row.description,
icon_id=row.icon_id,
type_description=row.type_description,
+ icon_b64=icon_b64,
)
diff --git a/datasets/Alchemy.txt b/datasets/Alchemy.txt
index 487601f..5dcc51f 100644
--- a/datasets/Alchemy.txt
+++ b/datasets/Alchemy.txt
@@ -1,7 +1,5 @@
Alchemy Crafted Items
-Amateur (1-10)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Orchestrion
@@ -659,9 +657,7 @@ Main Craft: Alchemy - (10)
Alchemy Kit 10
-Recruit (11-20)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Coffee Beans
@@ -1180,9 +1176,7 @@ Main Craft: Alchemy - (20)
Alchemy Kit 20
-Initiate (21-30)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Poison Arrowheads x6
@@ -1699,9 +1693,7 @@ Main Craft: Alchemy - (30)
Alchemy Kit 30
-Novice (31-40)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Minnow
@@ -2318,9 +2310,7 @@ Main Craft: Alchemy - (40)
Alchemy Kit 40
-Apprentice (41-50)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Bullet x33
@@ -3156,9 +3146,7 @@ Main Craft: Alchemy - (50)
Alchemy Kit 50
-Journeyman (51-60)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Holy Water
@@ -4133,9 +4121,7 @@ Main Craft: Alchemy - (60)
Alchemy Kit 60
-Craftsman (61-70)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Bastokan Finger Gauntlets
@@ -5081,9 +5067,7 @@ Main Craft: Alchemy - (70)
Alchemy Kit 70
-Artisan (71-80)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Spartan Bullet x33
@@ -6034,9 +6018,7 @@ Main Craft: Alchemy - (80)
Alchemy Kit 80
-Adept (81-90)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Bloody Bolt Heads x6
@@ -6756,9 +6738,7 @@ Main Craft: Alchemy - (90)
Alchemy Kit 90
-Veteran (91-100)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Urushi x2
@@ -7461,9 +7441,7 @@ Sub Craft(s): Goldsmithing - (60)
Flint Glass Sheet x3
-Expert (101-110)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Gold Algol
@@ -7812,9 +7790,7 @@ Sub Craft(s): Bonecraft - (55)
Moldy Charm
-Authority (111-120)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Bewitched Greaves
diff --git a/datasets/Alchemy_v2.csv b/datasets/Alchemy_v2.csv
index beffb10..b3a314a 100644
--- a/datasets/Alchemy_v2.csv
+++ b/datasets/Alchemy_v2.csv
@@ -1,557 +1,557 @@
category,level,subcrafts,name,crystal,key_item,ingredients,hq_yields
-Amateur,1,[],Orchestrion,Earth,,"[[""Copy of Melodious Plans"", 1], [""Timbre Case Kit"", 1], [""Musichinery Kit"", 1]]","[null, null, null]"
-Amateur,1,[],Frosty Cap,Earth,,"[[""Brilliant Snow"", 1], [""Snowman Cap"", 1]]","[null, null, null]"
-Amateur,1,[],Celestial Globe,Earth,,"[[""Comet Fragment"", 1], [""Puny Planet Kit"", 1], [""Cosmic Designs"", 1]]","[null, null, null]"
-Amateur,2,[],Distilled WaterVerification Needed,Lightning,,"[[""Tahrongi Cactus"", 1]]","[[""Distilled Water"", 6], [""Distilled Water"", 9], [""Distilled Water"", 12]]"
-Amateur,1,[],M. Counteragent,Water,Miasmal counteragent recipe,"[[""Seashell"", 1], [""Salinator"", 1], [""Distilled Water"", 2]]","[[""M. Counteragent"", 3], [""M. Counteragent"", 4], null]"
-Amateur,3,[],Antidote,Water,,"[[""Distilled Water"", 1], [""San d'Orian Grape"", 1], [""Wijnruit"", 1]]","[[""Antidote"", 2], [""Antidote"", 3], [""Antidote"", 4]]"
-Amateur,3,[],Antidote,Water,Trituration,"[[""Distilled Water"", 1], [""San d'Orian Grape"", 3], [""Wijnruit"", 3], [""Triturator"", 1]]","[[""Antidote"", 6], [""Antidote"", 9], [""Antidote"", 12]]"
-Amateur,4,[],Black Ink,Dark,,"[[""Nebimonite"", 1], [""Distilled Water"", 1], [""Windurstian Tea Leaves"", 2]]","[[""Black Ink"", 4], [""Black Ink"", 6], [""Black Ink"", 8]]"
-Amateur,4,[],Black Ink,Dark,,"[[""Nebimonite"", 1], [""Distilled Water"", 1], [""Willow Log"", 1]]","[[""Black Ink"", 2], [""Black Ink"", 4], [""Black Ink"", 6]]"
-Amateur,4,[],Black Ink,Dark,,"[[""Cone Calamary"", 2], [""Distilled Water"", 1], [""Willow Log"", 1]]","[[""Black Ink"", 4], [""Black Ink"", 6], [""Black Ink"", 8]]"
-Amateur,4,[],Black Ink,Dark,,"[[""Cone Calamary"", 2], [""Distilled Water"", 1], [""Windurstian Tea Leaves"", 1]]","[[""Black Ink"", 4], [""Black Ink"", 6], [""Black Ink"", 8]]"
-Amateur,4,[],Black Ink,Dark,,"[[""Kalamar"", 2], [""Distilled Water"", 1], [""Imperial Tea Leaves"", 1]]","[[""Black Ink"", 4], [""Black Ink"", 6], [""Black Ink"", 8]]"
-Amateur,4,[],Black Ink,Dark,,"[[""Kalamar"", 2], [""Distilled Water"", 1], [""Willow Log"", 1]]","[[""Black Ink"", 4], [""Black Ink"", 6], [""Black Ink"", 8]]"
-Amateur,5,[],Beeswax,Fire,,"[[""Beehive Chip"", 3], [""Distilled Water"", 1]]","[[""Beeswax"", 2], [""Beeswax"", 3], [""Beeswax"", 4]]"
-Amateur,5,[],Beeswax,Fire,Trituration,"[[""Beehive Chip"", 6], [""Distilled Water"", 1], [""Triturator"", 1]]","[[""Beeswax"", 4], [""Beeswax"", 6], [""Beeswax"", 8]]"
-Amateur,5,[],Beeswax,Fire,,"[[""Distilled Water"", 1], [""Pephredo Hive Chip"", 2]]","[[""Beeswax"", 3], [""Beeswax"", 4], [""Beeswax"", 5]]"
-Amateur,5,[],Beeswax,Fire,Trituration,"[[""Distilled Water"", 1], [""Pephredo Hive Chip"", 4], [""Triturator"", 1]]","[[""Beeswax"", 6], [""Beeswax"", 8], [""Beeswax"", 10]]"
-Amateur,5,[],Black Ink,Dark,,"[[""Grimmonite"", 1], [""Distilled Water"", 1], [""Windurstian Tea Leaves"", 2]]","[[""Black Ink"", 4], [""Black Ink"", 6], [""Black Ink"", 8]]"
-Amateur,5,[],Black Ink,Dark,,"[[""Ahtapot"", 1], [""Distilled Water"", 1], [""Imperial Tea Leaves"", 2]]","[[""Black Ink"", 4], [""Black Ink"", 6], [""Black Ink"", 8]]"
-Amateur,5,[],Black Ink,Dark,,"[[""Alchemy Kit 5"", 1]]","[null, null, null]"
-Amateur,5,[],Enchanted Ink,Dark,,"[[""Black Ink"", 1], [""Magicked Blood"", 1]]","[null, null, null]"
-Amateur,6,[],Tsurara,Ice,,"[[""Distilled Water"", 2], [""Rock Salt"", 1]]","[[""Tsurara"", 20], [""Tsurara"", 50], [""Tsurara"", 99]]"
-Amateur,6,"[[""Leathercraft"", 1]]",Water Tank,Earth,,"[[""Brass Tank"", 1], [""Sheep Leather"", 1], [""Water Cluster"", 1]]","[null, null, null]"
-Amateur,6,"[[""Leathercraft"", 1]]",Water Tank,Earth,,"[[""Brass Tank"", 1], [""Karakul Leather"", 1], [""Water Cluster"", 1]]","[null, null, null]"
-Amateur,7,[],Animal Glue,Fire,,"[[""Bone Chip"", 2], [""Distilled Water"", 1], [""Rabbit Hide"", 1]]","[[""Animal Glue"", 2], [""Animal Glue"", 3], [""Animal Glue"", 4]]"
-Amateur,7,[],Animal Glue,Fire,Trituration,"[[""Bone Chip"", 4], [""Distilled Water"", 1], [""Rabbit Hide"", 2], [""Triturator"", 1]]","[[""Animal Glue"", 4], [""Animal Glue"", 6], [""Animal Glue"", 8]]"
-Amateur,7,[],Silencing Potion,Water,,"[[""Kazham Peppers"", 1], [""Scream Fungus"", 1], [""Two-Leaf Mandragora Bud"", 1]]","[[""Silencing Potion"", 2], [""Silencing Potion"", 3], [""Silencing Potion"", 4]]"
-Amateur,7,[],Muting Potion,Water,Alchemic Ensorcellment,"[[""Dark Anima"", 1], [""Kazham Peppers"", 1], [""Scream Fungus"", 1], [""Two-Leaf Mandragora Bud"", 1], [""Water Anima"", 1], [""Wind Anima"", 1]]","[[""Muting Potion"", 2], [""Muting Potion"", 3], [""Muting Potion"", 4]]"
-Amateur,8,[],Silencing Potion,Water,,"[[""Kazham Peppers"", 1], [""Scream Fungus"", 1], [""Lycopodium Flower"", 1]]","[[""Silencing Potion"", 2], [""Silencing Potion"", 3], [""Silencing Potion"", 4]]"
-Amateur,8,[],Silencing Potion,Lightning,,"[[""Distilled Water"", 1], [""Sobbing Fungus"", 2]]","[[""Silencing Potion"", 2], [""Silencing Potion"", 3], [""Silencing Potion"", 4]]"
-Amateur,8,[],Muting Potion,Lightning,Alchemic Ensorcellment,"[[""Dark Anima"", 1], [""Distilled Water"", 1], [""Sobbing Fungus"", 2], [""Water Anima"", 1], [""Wind Anima"", 1]]","[[""Muting Potion"", 2], [""Muting Potion"", 3], [""Muting Potion"", 4]]"
-Amateur,8,[],Silencing Potion,Lightning,,"[[""Cobalt Jellyfish"", 1], [""Mercury"", 1]]","[[""Silencing Potion"", 4], [""Silencing Potion"", 6], [""Silencing Potion"", 8]]"
-Amateur,8,[],Silencing Potion,Lightning,,"[[""Denizanasi"", 1], [""Mercury"", 1]]","[[""Silencing Potion"", 4], [""Silencing Potion"", 6], [""Silencing Potion"", 8]]"
-Amateur,9,[],Wax Sword,Water,,"[[""Beeswax"", 1], [""Bronze Sword"", 1]]","[[""Wax Sword +1"", 1], null, null]"
-Amateur,8,[],Enfeeblement Kit of Silence,Earth,,"[[""Padded Box"", 1], [""Fine Parchment"", 2], [""Enchanted Ink"", 2], [""Silencing Potion"", 1]]","[null, null, null]"
-Amateur,8,[],Enfeeblement Kit of Sleep,Earth,,"[[""Padded Box"", 1], [""Fine Parchment"", 2], [""Enchanted Ink"", 2], [""Sleeping Potion"", 1]]","[null, null, null]"
-Amateur,8,[],Enfeeblement Kit of Poison,Earth,,"[[""Padded Box"", 1], [""Fine Parchment"", 2], [""Enchanted Ink"", 2], [""Poison Potion"", 1]]","[null, null, null]"
-Amateur,8,[],Enfeeblement Kit of Blindness,Earth,,"[[""Padded Box"", 1], [""Fine Parchment"", 2], [""Enchanted Ink"", 2], [""Blinding Potion"", 1]]","[null, null, null]"
-Amateur,9,[],Cornstarch,Lightning,,"[[""Millioncorn"", 2]]","[[""Cornstarch"", 2], [""Cornstarch"", 3], [""Cornstarch"", 4]]"
-Amateur,9,[],Poison Dust,Lightning,,"[[""Deathball"", 2]]","[[""Poison Dust"", 2], [""Poison Dust"", 3], [""Poison Dust"", 4]]"
-Amateur,10,[],Deodorizer,Wind,,"[[""Chamomile"", 1], [""Olive Oil"", 1], [""Sage"", 1]]","[[""Deodorizer"", 2], [""Deodorizer"", 3], [""Deodorizer"", 4]]"
-Amateur,10,[],Deodorizer,Wind,Trituration,"[[""Chamomile"", 2], [""Olive Oil"", 2], [""Sage"", 2], [""Triturator"", 1]]","[[""Deodorizer"", 4], [""Deodorizer"", 6], [""Deodorizer"", 8]]"
-Amateur,10,[],Black Ink,Dark,,"[[""Distilled Water"", 1], [""Gigant Squid"", 1], [""Windurstian Tea Leaves"", 2]]","[[""Black Ink"", 8], [""Black Ink"", 10], [""Black Ink"", 12]]"
-Amateur,10,[],Deodorizer,Wind,,"[[""Alchemy Kit 10"", 1], [""Recruit (11-20)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,11,[],Coffee Beans,Wind,,"[[""Coffee Cherries"", 1]]","[null, null, null]"
-Amateur,11,[],Copper Nugget,Fire,,"[[""Meteorite"", 1], [""Panacea"", 1]]","[[""Iron Nugget"", 9], [""Silver Nugget"", 6], [""Gold Nugget"", 3]]"
-Amateur,11,[],Poison Dust,Lightning,,"[[""Giant Stinger"", 2]]","[[""Poison Dust"", 2], [""Poison Dust"", 3], [""Poison Dust"", 4]]"
-Amateur,12,[],Poison Dust,Lightning,,"[[""Yellow Globe"", 2]]","[[""Poison Dust"", 2], [""Poison Dust"", 3], [""Poison Dust"", 4]]"
-Amateur,13,[],Silence Dagger,Water,,"[[""Animal Glue"", 1], [""Brass Dagger"", 1], [""Silencing Potion"", 1]]","[null, null, null]"
-Amateur,13,[],Miracle Mulch,Dark,,"[[""Dung"", 1], [""Chocobo Bedding"", 1]]","[[""Miracle Mulch"", 4], [""Miracle Mulch"", 6], [""Miracle Mulch"", 8]]"
-Amateur,14,[],Bee Spatha,Water,,"[[""Beeswax"", 2], [""Spatha"", 1]]","[null, null, null]"
-Amateur,14,[],Movalpolos Water,Wind,,"[[""Carbon Dioxide"", 1], [""Distilled Water"", 4]]","[[""Movalpolos Water"", 2], [""Movalpolos Water"", 3], [""Movalpolos Water"", 4]]"
-Amateur,15,[],Cracker,Earth,,"[[""Bast Parchment"", 2], [""Firesand"", 1]]","[[""Cracker"", 66], [""Cracker"", 99], [""Cracker"", 99]]"
-Amateur,15,[],Chocotonic,Water,,"[[""Attohwa Ginseng"", 1], [""Distilled Water"", 1], [""Gysahl Greens"", 1]]","[[""Chocotonic"", 6], [""Chocotonic"", 9], [""Chocotonic"", 12]]"
-Amateur,15,[],Gysahl Bomb,Earth,,"[[""Bast Parchment"", 1], [""Firesand"", 1], [""Gysahl Greens"", 1]]","[[""Gysahl Bomb"", 6], [""Gysahl Bomb"", 9], [""Gysahl Bomb"", 12]]"
-Amateur,15,[],Spore Bomb,Earth,,"[[""Bast Parchment"", 1], [""Firesand"", 1], [""Danceshroom"", 1]]","[[""Spore Bomb"", 6], [""Spore Bomb"", 9], [""Spore Bomb"", 12]]"
-Amateur,15,[],Cracker,Earth,,"[[""Alchemy Kit 15"", 1]]","[null, null, null]"
-Amateur,16,[],Mercury,Lightning,,"[[""Cobalt Jellyfish"", 4]]","[[""Mercury"", 2], [""Mercury"", 3], [""Mercury"", 4]]"
-Amateur,17,[],Hushed Dagger,Water,,"[[""Animal Glue"", 1], [""Muting Potion"", 1], [""Silence Dagger"", 1]]","[null, null, null]"
-Amateur,17,[],Mercury,Lightning,,"[[""Denizanasi"", 4]]","[[""Mercury"", 2], [""Mercury"", 3], [""Mercury"", 4]]"
-Amateur,17,[],Silence Baghnakhs,Water,,"[[""Animal Glue"", 1], [""Brass Baghnakhs"", 1], [""Silencing Potion"", 1]]","[[""Silence Baghnakhs +1"", 1], null, null]"
-Amateur,17,[],Fire Card,Light,,"[[""Fire Cluster"", 1], [""Mercury"", 1], [""Polyflan Paper"", 1]]","[[""Fire Card"", 66], [""Fire Card"", 99], [""Fire Card"", 99]]"
-Amateur,17,[],Ice Card,Light,,"[[""Ice Cluster"", 1], [""Mercury"", 1], [""Polyflan Paper"", 1]]","[[""Ice Card"", 66], [""Ice Card"", 99], [""Ice Card"", 99]]"
-Amateur,17,[],Wind Card,Light,,"[[""Wind Cluster"", 1], [""Mercury"", 1], [""Polyflan Paper"", 1]]","[[""Wind Card"", 66], [""Wind Card"", 99], [""Wind Card"", 99]]"
-Amateur,17,[],Earth Card,Light,,"[[""Earth Cluster"", 1], [""Mercury"", 1], [""Polyflan Paper"", 1]]","[[""Earth Card"", 66], [""Earth Card"", 99], [""Earth Card"", 99]]"
-Amateur,17,[],Thunder Card,Light,,"[[""Lightning Cluster"", 1], [""Mercury"", 1], [""Polyflan Paper"", 1]]","[[""Thunder Card"", 66], [""Thunder Card"", 99], [""Thunder Card"", 99]]"
-Amateur,17,[],Water Card,Light,,"[[""Water Cluster"", 1], [""Mercury"", 1], [""Polyflan Paper"", 1]]","[[""Water Card"", 66], [""Water Card"", 99], [""Water Card"", 99]]"
-Amateur,17,[],Light Card,Light,,"[[""Light Cluster"", 1], [""Mercury"", 1], [""Polyflan Paper"", 1]]","[[""Light Card"", 66], [""Light Card"", 99], [""Light Card"", 99]]"
-Amateur,17,[],Dark Card,Light,,"[[""Dark Cluster"", 1], [""Mercury"", 1], [""Polyflan Paper"", 1]]","[[""Dark Card"", 66], [""Dark Card"", 99], [""Dark Card"", 99]]"
-Amateur,18,[],Poison Potion,Water,,"[[""Mercury"", 1], [""Poison Dust"", 1]]","[null, null, null]"
-Amateur,18,[],Poison Potion,Water,Trituration,"[[""Mercury"", 3], [""Poison Dust"", 3], [""Triturator"", 1]]","[null, null, null]"
-Amateur,18,[],Matka,Fire,,"[[""Karugo Clay"", 5]]","[null, null, null]"
-Amateur,19,[],Kodoku,Dark,,"[[""Elshimo Frog"", 1], [""Lugworm"", 1], [""Shell Bug"", 1]]","[[""Kodoku"", 66], [""Kodoku"", 99], [""Kodoku"", 99]]"
-Amateur,19,[],Coffee Powder,Wind,,"[[""Roast Coffee Beans"", 1]]","[[""Coffee Powder"", 2], [""Coffee Powder"", 3], [""Coffee Powder"", 4]]"
-Amateur,19,[],Kodoku,Dark,,"[[""Caedarva Frog"", 1], [""Lugworm"", 1], [""Shell Bug"", 1]]","[[""Kodoku"", 66], [""Kodoku"", 99], [""Kodoku"", 99]]"
-Amateur,20,[],Echo Drops,Water,,"[[""Distilled Water"", 1], [""Honey"", 1], [""Sage"", 1]]","[[""Echo Drops"", 2], [""Echo Drops"", 3], [""Echo Drops"", 4]]"
-Amateur,20,[],Echo Drops,Water,Trituration,"[[""Distilled Water"", 1], [""Honey"", 3], [""Sage"", 3], [""Triturator"", 1]]","[[""Echo Drops"", 6], [""Echo Drops"", 9], [""Echo Drops"", 12]]"
-Amateur,20,[],Hushed Baghnakhs,Water,,"[[""Animal Glue"", 1], [""Muting Potion"", 1], [""Silence Baghnakhs"", 1]]","[null, null, null]"
-Amateur,20,[],Bittern,Fire,,"[[""Distilled Water"", 1], [""Salinator"", 1]]","[[""Bittern"", 8], [""Bittern"", 10], [""Bittern"", 12]]"
-Amateur,20,[],Hushed Baghnakhs,Water,,"[[""Alchemy Kit 20"", 1], [""Initiate (21-30)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,21,"[[""Smithing"", 20]]",Poison Arrowheads,Wind,,"[[""Animal Glue"", 1], [""Copper Ingot"", 1], [""Iron Ingot"", 1], [""Poison Potion"", 1]]","[[""Poison Arrowheads"", 8], [""Poison Arrowheads"", 10], [""Poison Arrowheads"", 12]]"
-Amateur,21,[],Glass Fiber,Lightning,,"[[""Goblin Mask"", 1]]","[[""Glass Fiber"", 4], [""Glass Fiber"", 6], [""Glass Fiber"", 8]]"
-Amateur,21,[],Carbon Dioxide,Fire,,"[[""Trumpet Shell"", 1]]","[[""Carbon Dioxide"", 8], [""Carbon Dioxide"", 10], [""Carbon Dioxide"", 12]]"
-Amateur,22,[],Poison Dagger,Water,,"[[""Animal Glue"", 1], [""Dagger"", 1], [""Poison Potion"", 1]]","[null, null, null]"
-Amateur,22,[],Baking Soda,Lightning,,"[[""Movalpolos Water"", 1], [""Rock Salt"", 1]]","[[""Baking Soda"", 8], [""Baking Soda"", 10], [""Baking Soda"", 12]]"
-Amateur,23,[],Poison Knife,Water,,"[[""Animal Glue"", 1], [""Knife"", 1], [""Poison Potion"", 1]]","[null, null, null]"
-Amateur,23,[],Mokuto,Water,,"[[""Animal Glue"", 1], [""Shinobi-Gatana"", 1], [""Silencing Potion"", 1]]","[null, null, null]"
-Amateur,24,[],Silent Oil,Water,,"[[""Beeswax"", 2], [""Slime Oil"", 1]]","[[""Silent Oil"", 8], [""Silent Oil"", 10], [""Silent Oil"", 12]]"
-Amateur,24,[],Vermilion Lacquer,Fire,,"[[""Mercury"", 1], [""Sulfur"", 1]]","[null, null, null]"
-Amateur,25,[],Ethereal Vermilion Lacquer,Fire,Alchemic Ensorcellment,"[[""Mercury"", 1], [""Sulfur"", 1], [""Light Anima"", 1], [""Lightning Anima"", 1], [""Water Anima"", 1]]","[null, null, null]"
-Amateur,25,[],Glass Fiber Fishing Rod,Light,,"[[""Broken Glass Fiber Fishing Rod"", 1]]","[null, null, null]"
-Amateur,25,[],Poison Baselard,Water,,"[[""Animal Glue"", 1], [""Baselard"", 1], [""Poison Potion"", 1]]","[[""Python Baselard"", 1], null, null]"
-Amateur,25,[],Twinkle Shower,Earth,,"[[""Bast Parchment"", 1], [""Firesand"", 1], [""Twinkle Powder"", 1]]","[[""Twinkle Shower"", 66], [""Twinkle Shower"", 99], [""Twinkle Shower"", 99]]"
-Amateur,25,[],Poison Baselard,Water,,"[[""Alchemy Kit 25"", 1]]","[null, null, null]"
-Amateur,25,[],Bathtub,Fire,,"[[""Angelstone"", 1], [""Marble Slab"", 1], [""Sieglinde Putty"", 1], [""Kaolin"", 2], [""White Textile Dye"", 1]]","[null, null, null]"
-Amateur,26,"[[""Goldsmithing"", 10]]",Minnow,Fire,,"[[""Brass Ingot"", 1], [""Glass Fiber"", 1]]","[[""Sinking Minnow"", 1], null, null]"
-Amateur,26,[],Seito,Water,,"[[""Animal Glue"", 1], [""Mokuto"", 1], [""Muting Potion"", 1]]","[null, null, null]"
-Amateur,26,"[[""Goldsmithing"", 6]]",Copper Bullet,Fire,,"[[""Copper Ingot"", 1], [""Firesand"", 1]]","[[""Copper Bullet"", 99], null, null]"
-Amateur,27,[],Blinding Potion,Water,,"[[""Crying Mustard"", 1], [""Poison Flour"", 1], [""Sleepshroom"", 1]]","[[""Blinding Potion"", 2], [""Blinding Potion"", 3], [""Blinding Potion"", 4]]"
-Amateur,27,[],Blinding Potion,Water,Trituration,"[[""Crying Mustard"", 2], [""Poison Flour"", 2], [""Sleepshroom"", 2], [""Triturator"", 1]]","[[""Blinding Potion"", 4], [""Blinding Potion"", 6], [""Blinding Potion"", 8]]"
-Amateur,28,[],Blinding Potion,Lightning,,"[[""Mercury"", 1], [""Nebimonite"", 1]]","[[""Blinding Potion"", 4], [""Blinding Potion"", 6], [""Blinding Potion"", 8]]"
-Amateur,28,"[[""Cooking"", 11]]",Sairui-Ran,Earth,,"[[""Bast Parchment"", 1], [""Bird Egg"", 1], [""Bomb Ash"", 1], [""Kazham Peppers"", 1]]","[[""Sairui-Ran"", 66], [""Sairui-Ran"", 99], null]"
-Amateur,28,[],Automaton Oil,Water,,"[[""Olive Oil"", 1], [""Plasma Oil"", 1], [""Polyflan Paper"", 1]]","[[""Automaton Oil +1"", 6], [""Automaton Oil +2"", 6], [""Automaton Oil +3"", 6]]"
-Amateur,28,[],Pet Roborant,Water,,"[[""Boyahda Moss"", 1], [""Hecteyes Eye"", 1], [""Beast Blood"", 1], [""Scream Fungus"", 1], [""Ca Cuong"", 1]]","[[""Pet Roborant"", 66], [""Pet Roborant"", 66], [""Pet Roborant"", 99]]"
-Amateur,29,"[[""Cooking"", 11]]",Sairui-Ran,Earth,,"[[""Bast Parchment"", 1], [""Bird Egg"", 1], [""Djinn Ash"", 1], [""Kazham Peppers"", 1]]","[[""Sairui-Ran"", 66], [""Sairui-Ran"", 99], null]"
-Amateur,29,[],Silent Oil,Water,,"[[""Beeswax"", 2], [""Olive Oil"", 1]]","[[""Silent Oil"", 4], [""Silent Oil"", 6], [""Silent Oil"", 8]]"
-Amateur,29,[],Glass Fiber Fishing Rod,Fire,,"[[""Cotton Thread"", 1], [""Glass Fiber"", 4]]","[null, null, null]"
-Amateur,29,[],Glass Fiber,Lightning,,"[[""Moblin Mask"", 1]]","[[""Glass Fiber"", 4], [""Glass Fiber"", 6], [""Glass Fiber"", 8]]"
-Amateur,29,[],Blue Textile Dye,Water,,"[[""Dyer's Woad"", 1]]","[null, null, null]"
-Amateur,29,[],Green Textile Dye,Water,,"[[""Imperial Tea Leaves"", 1]]","[null, null, null]"
-Amateur,29,[],Yellow Textile Dye,Water,,"[[""Turmeric"", 1]]","[null, null, null]"
-Amateur,29,[],White Textile Dye,Water,,"[[""Baking Soda"", 1]]","[null, null, null]"
-Amateur,29,[],Red Textile Dye,Water,,"[[""Nopales"", 1]]","[null, null, null]"
-Amateur,30,[],Eye Drops,Water,,"[[""Ahriman Tears"", 1], [""Chamomile"", 1], [""Distilled Water"", 1]]","[[""Eye Drops"", 4], [""Eye Drops"", 6], [""Eye Drops"", 8]]"
-Amateur,30,[],Eye Drops,Water,Trituration,"[[""Ahriman Tears"", 2], [""Chamomile"", 2], [""Distilled Water"", 1], [""Triturator"", 1]]","[[""Eye Drops"", 8], [""Eye Drops"", 12], [""Eye Drops"", 12]]"
-Amateur,30,[],Sieglinde Putty,Earth,,"[[""Flaxseed Oil"", 2], [""Shell Powder"", 2], [""Zinc Oxide"", 1]]","[null, null, null]"
-Amateur,30,[],Sieglinde Putty,Earth,,"[[""Alchemy Kit 30"", 1], [""Novice (31-40)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,31,"[[""Goldsmithing"", 14]]",Minnow,Fire,,"[[""Copper Ingot"", 1], [""Glass Fiber"", 1]]","[[""Sinking Minnow"", 1], null, null]"
-Amateur,31,"[[""Smithing"", 14]]",Blind Bolt Heads,Wind,,"[[""Animal Glue"", 1], [""Blinding Potion"", 1], [""Bronze Ingot"", 1]]","[[""Blind Bolt Heads"", 8], [""Blind Bolt Heads"", 10], [""Blind Bolt Heads"", 12]]"
-Amateur,31,[],Poison Kukri,Water,,"[[""Animal Glue"", 1], [""Kukri"", 1], [""Poison Potion"", 1]]","[[""Poison Kukri +1"", 1], null, null]"
-Amateur,32,[],Blind Dagger,Water,,"[[""Animal Glue"", 1], [""Bronze Dagger"", 1], [""Blinding Potion"", 1]]","[[""Blind Dagger +1"", 1], null, null]"
-Amateur,33,[],Busuto,Water,,"[[""Animal Glue"", 1], [""Shinobi-Gatana"", 1], [""Poison Potion"", 1]]","[[""Busuto +1"", 1], null, null]"
-Amateur,33,[],Poison Cesti,Water,,"[[""Animal Glue"", 1], [""Lizard Cesti"", 1], [""Poison Potion"", 1]]","[[""Poison Cesti +1"", 1], null, null]"
-Amateur,33,[],Moblin Putty,Earth,,"[[""Flaxseed Oil"", 2], [""Shell Powder"", 2], [""Zincite"", 3]]","[null, null, null]"
-Amateur,33,"[[""Bonecraft"", 27]]",Volant Serum,Water,,"[[""Bat Fang"", 2], [""Mercury"", 1]]","[[""Volant Serum"", 6], [""Volant Serum"", 9], [""Volant Serum"", 12]]"
-Amateur,34,[],Blind Knife,Water,,"[[""Animal Glue"", 1], [""Bronze Knife"", 1], [""Blinding Potion"", 1]]","[[""Blind Knife +1"", 1], null, null]"
-Amateur,34,[],Artificial Lens,Fire,,"[[""Glass Fiber"", 2]]","[null, null, null]"
-Amateur,35,[],Poison Baghnakhs,Water,,"[[""Animal Glue"", 1], [""Baghnakhs"", 1], [""Poison Potion"", 1]]","[[""Poison Baghnakhs +1"", 1], null, null]"
-Amateur,35,[],Little Comet,Earth,,"[[""Bast Parchment"", 2], [""Firesand"", 1], [""Rain Lily"", 1]]","[[""Little Comet"", 66], [""Little Comet"", 99], [""Little Comet"", 99]]"
-Amateur,35,[],Fire Fewell,Fire,,"[[""Slime Oil"", 1], [""Red Rock"", 1], [""Catalytic Oil"", 1]]","[[""Fire Fewell"", 6], [""Fire Fewell"", 9], [""Fire Fewell"", 12]]"
-Amateur,35,[],Ice Fewell,Ice,,"[[""Slime Oil"", 1], [""Translucent Rock"", 1], [""Catalytic Oil"", 1]]","[[""Ice Fewell"", 6], [""Ice Fewell"", 9], [""Ice Fewell"", 12]]"
-Amateur,35,[],Wind Fewell,Wind,,"[[""Slime Oil"", 1], [""Green Rock"", 1], [""Catalytic Oil"", 1]]","[[""Wind Fewell"", 6], [""Wind Fewell"", 9], [""Wind Fewell"", 12]]"
-Amateur,35,[],Earth Fewell,Earth,,"[[""Slime Oil"", 1], [""Yellow Rock"", 1], [""Catalytic Oil"", 1]]","[[""Earth Fewell"", 6], [""Earth Fewell"", 9], [""Earth Fewell"", 12]]"
-Amateur,35,[],Lightning Fewell,Lightning,,"[[""Slime Oil"", 1], [""Purple Rock"", 1], [""Catalytic Oil"", 1]]","[[""Lightning Fewell"", 6], [""Lightning Fewell"", 9], [""Lightning Fewell"", 12]]"
-Amateur,35,[],Water Fewell,Water,,"[[""Slime Oil"", 1], [""Blue Rock"", 1], [""Catalytic Oil"", 1]]","[[""Water Fewell"", 6], [""Water Fewell"", 9], [""Water Fewell"", 12]]"
-Amateur,35,[],Light Fewell,Light,,"[[""Slime Oil"", 1], [""White Rock"", 1], [""Catalytic Oil"", 1]]","[[""Light Fewell"", 6], [""Light Fewell"", 9], [""Light Fewell"", 12]]"
-Amateur,35,[],Dark Fewell,Dark,,"[[""Slime Oil"", 1], [""Black Rock"", 1], [""Catalytic Oil"", 1]]","[[""Dark Fewell"", 6], [""Dark Fewell"", 9], [""Dark Fewell"", 12]]"
-Amateur,35,[],Poison Baghnakhs,Water,,"[[""Alchemy Kit 35"", 1]]","[null, null, null]"
-Amateur,36,[],Prism Powder,Light,,"[[""Ahriman Lens"", 1], [""Glass Fiber"", 2]]","[[""Prism Powder"", 10], [""Prism Powder"", 11], [""Prism Powder"", 12]]"
-Amateur,36,[],Polyflan Paper,Earth,,"[[""Polyflan"", 1]]","[[""Polyflan Paper"", 66], [""Polyflan Paper"", 99], [""Polyflan Paper"", 99]]"
-Amateur,37,[],Jusatsu,Dark,,"[[""Bast Parchment"", 1], [""Beastman Blood"", 1], [""Black Ink"", 1]]","[[""Jusatsu"", 66], [""Jusatsu"", 99], [""Jusatsu"", 99]]"
-Amateur,38,[],Chimera Blood,Lightning,,"[[""Lesser Chigoe"", 1]]","[[""Chimera Blood"", 2], [""Chimera Blood x4 Verification Needed"", 1], [""Chimera Blood x4 Verification Needed"", 1]]"
-Amateur,38,[],Chimera Blood,Lightning,Trituration,"[[""Lesser Chigoe"", 3], [""Triturator"", 1]]","[[""Chimera Blood"", 6], [""Chimera Blood x9 Verification Needed"", 1], [""Chimera Blood x9 Verification Needed"", 1]]"
-Amateur,38,"[[""Smithing"", 13]]",Bronze Bullet,Fire,,"[[""Bronze Ingot"", 1], [""Firesand"", 1]]","[[""Bronze Bullet"", 99], null, null]"
-Amateur,38,"[[""Woodworking"", 31]]",Kongou Inaho,Earth,,"[[""Bamboo Stick"", 1], [""Copper Nugget"", 1], [""Firesand"", 1]]","[[""Kongou Inaho"", 99], [""Kongou Inaho"", 99], [""Kongou Inaho"", 99]]"
-Amateur,38,[],Poison Claws,Water,,"[[""Animal Glue"", 1], [""Claws"", 1], [""Poison Potion"", 1]]","[[""Poison Claws +1"", 1], null, null]"
-Amateur,38,[],Automaton Oil +1,Water,,"[[""Olive Oil"", 2], [""Plasma Oil"", 1], [""Polyflan Paper"", 1]]","[[""Automaton Oil +1"", 9], [""Automaton Oil +2 x9 Verification Needed"", 1], [""Automaton Oil +3 x9 Verification Needed"", 1]]"
-Amateur,39,[],Firesand,Earth,,"[[""Bomb Ash"", 2], [""Yuhtunga Sulfur"", 1]]","[[""Firesand"", 6], [""Firesand"", 9], [""Firesand"", 12]]"
-Amateur,39,[],Inferno Sword,Earth,,"[[""Firesand"", 1], [""Slime Oil"", 1], [""Two-Handed Sword"", 1]]","[[""Hellfire Sword"", 1], null, null]"
-Amateur,39,[],Living Key,Water,,"[[""Beeswax"", 1], [""Malboro Vine"", 1], [""Slime Oil"", 1]]","[[""Living Key"", 4], [""Living Key"", 6], [""Living Key"", 8]]"
-Amateur,39,[],Plasma Oil,Water,Iatrochemistry,"[[""Flan Meat"", 2], [""Mercury"", 1]]","[[""Plasma Oil"", 66], [""Plasma Oil"", 99], [""Plasma Oil"", 99]]"
-Amateur,39,[],Living Key,Water,,"[[""Beeswax"", 1], [""Rafflesia Vine"", 1], [""Slime Oil"", 1]]","[[""Living Key"", 6], [""Living Key"", 9], [""Living Key"", 12]]"
-Amateur,40,[],Firesand,Earth,,"[[""Bomb Ash"", 2], [""Sulfur"", 1]]","[[""Firesand"", 4], [""Firesand"", 6], [""Firesand"", 8]]"
-Amateur,40,[],Firesand,Earth,Trituration,"[[""Bomb Ash"", 4], [""Sulfur"", 2], [""Triturator"", 1]]","[[""Firesand"", 8], [""Firesand"", 12], [""Firesand"", 12]]"
-Amateur,40,[],Potion,Water,,"[[""Sage"", 1], [""Lizard Tail"", 1], [""Distilled Water"", 1]]","[[""Potion +1"", 1], [""Potion +2"", 1], [""Potion +3"", 1]]"
-Amateur,40,[],Potion Drop,Fire,Concoction,"[[""Sage"", 1], [""Lizard Tail"", 1], [""Distilled Water"", 1]]","[[""Potion Drop"", 2], [""Potion Drop"", 3], [""Potion Drop"", 4]]"
-Amateur,40,[],Brimsand,Earth,Alchemic Ensorcellment,"[[""Bomb Ash"", 2], [""Sulfur"", 1], [""Dark Anima"", 1], [""Fire Anima"", 1], [""Water Anima"", 1]]","[[""Brimsand"", 4], [""Brimsand"", 6], [""Brimsand"", 8]]"
-Amateur,40,[],Firesand,Earth,,"[[""Alchemy Kit 40"", 1], [""Apprentice (41-50)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,41,"[[""Goldsmithing"", 18]]",Bullet,Fire,,"[[""Brass Ingot"", 1], [""Firesand"", 1]]","[[""Bullet"", 99], null, null]"
-Amateur,41,[],Prism Powder,Light,,"[[""Artificial Lens"", 1], [""Glass Fiber"", 2]]","[[""Prism Powder"", 8], [""Prism Powder"", 10], [""Prism Powder"", 12]]"
-Amateur,41,[],Prism Powder,Light,Trituration,"[[""Artificial Lens"", 2], [""Glass Fiber"", 4], [""Triturator"", 1]]","[null, null, null]"
-Amateur,41,[],Firesand,Earth,,"[[""Cluster Ash"", 1], [""Sulfur"", 1]]","[[""Firesand"", 4], [""Firesand"", 6], [""Firesand"", 8]]"
-Amateur,41,[],Brimsand,Earth,Alchemic Ensorcellment,"[[""Cluster Ash"", 1], [""Sulfur"", 1], [""Dark Anima"", 1], [""Fire Anima"", 1], [""Water Anima"", 1]]","[[""Brimsand"", 4], [""Brimsand"", 6], [""Brimsand"", 8]]"
-Amateur,42,[],Inferno Axe,Earth,,"[[""Butterfly Axe"", 1], [""Firesand"", 1], [""Slime Oil"", 1]]","[[""Hellfire Axe"", 1], null, null]"
-Amateur,42,[],Bokuto,Water,,"[[""Animal Glue"", 1], [""Blinding Potion"", 1], [""Shinobi-Gatana"", 1]]","[[""Bokuto +1"", 1], null, null]"
-Amateur,42,[],Prominence Sword,Earth,,"[[""Brimsand"", 1], [""Inferno Sword"", 1], [""Slime Oil"", 1]]","[null, null, null]"
-Amateur,42,[],Firesand,Earth,,"[[""Sulfur"", 1], [""Djinn Ash"", 1]]","[[""Firesand"", 8], [""Firesand"", 12], null]"
-Amateur,42,[],Vitriol,Water,,"[[""Dhalmel Saliva"", 1]]","[[""Vitriol"", 2], [""Vitriol"", 3], [""Vitriol"", 4]]"
-Amateur,43,[],Vitriol,Water,,"[[""Treant Bulb"", 2]]","[[""Vitriol"", 2], [""Vitriol"", 3], [""Vitriol"", 4]]"
-Amateur,43,[],Vitriol,Water,Trituration,"[[""Treant Bulb"", 6], [""Triturator"", 1]]","[[""Vitriol"", 6], [""Vitriol"", 9], [""Vitriol"", 12]]"
-Amateur,43,[],Invitriol,Water,Alchemic Ensorcellment,"[[""Treant Bulb"", 2], [""Dark Anima"", 1], [""Fire Anima"", 1], [""Water Anima"", 1]]","[[""Invitriol"", 2], [""Invitriol"", 3], [""Invitriol"", 4]]"
-Amateur,43,[],Poison Katars,Water,,"[[""Animal Glue"", 1], [""Katars"", 1], [""Poison Potion"", 1]]","[[""Poison Katars +1"", 1], null, null]"
-Amateur,43,"[[""Goldsmithing"", 19]]",Sparkling Hand,Light,,"[[""Silver Ingot"", 1], [""Parchment"", 1], [""Twinkle Powder"", 1], [""Prism Powder"", 1]]","[[""Sparkling Hand"", 66], [""Sparkling Hand"", 66], [""Sparkling Hand"", 99]]"
-Amateur,43,"[[""Smithing"", 16]]",Tin Bullet,Fire,,"[[""Tin Ingot"", 1], [""Firesand"", 1]]","[[""Tin Bullet"", 99], null, null]"
-Amateur,43,"[[""Bonecraft"", 27]]",Osseous Serum,Water,,"[[""Bone Chip"", 4], [""Mercury"", 1]]","[[""Osseous Serum"", 6], [""Osseous Serum"", 9], [""Osseous Serum"", 9]]"
-Amateur,43,[],Fictile Pot,Fire,,"[[""Holly Lumber"", 1], [""Kaolin"", 2]]","[null, null, null]"
-Amateur,44,"[[""Smithing"", 23]]",Fire Arrowheads,Fire,,"[[""Grass Cloth"", 1], [""Iron Ingot"", 1], [""Slime Oil"", 1]]","[[""Fire Arrowheads"", 8], [""Fire Arrowheads"", 10], [""Fire Arrowheads"", 12]]"
-Amateur,44,[],Flame Claymore,Earth,,"[[""Claymore"", 1], [""Iron Ingot"", 1], [""Slime Oil"", 1]]","[[""Burning Claymore"", 1], null, null]"
-Amateur,44,"[[""Leathercraft"", 1]]",Potion Tank,Earth,,"[[""Brass Tank"", 1], [""Potion"", 4], [""Sheep Leather"", 1]]","[null, null, null]"
-Amateur,44,"[[""Goldsmithing"", 4]]",Strobe,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Orobon Lure"", 1], [""Plasma Oil"", 1], [""Polyflan"", 1], [""Silver Sheet"", 1]]","[null, null, null]"
-Amateur,45,"[[""Smithing"", 14]]",Acid Bolt Heads,Wind,,"[[""Animal Glue"", 1], [""Bronze Ingot"", 1], [""Vitriol"", 1]]","[[""Acid Bolt Heads"", 8], [""Acid Bolt Heads"", 10], [""Acid Bolt Heads"", 12]]"
-Amateur,45,[],Carbon Fiber,Lightning,,"[[""Bomb Ash"", 4]]","[[""Carbon Fiber"", 6], [""Carbon Fiber"", 9], [""Carbon Fiber"", 12]]"
-Amateur,45,[],Acid Dagger,Water,,"[[""Animal Glue"", 1], [""Mythril Dagger"", 1], [""Vitriol"", 1]]","[[""Corrosive Dagger"", 1], null, null]"
-Amateur,45,[],Prominence Axe,Earth,,"[[""Brimsand"", 1], [""Inferno Axe"", 1], [""Slime Oil"", 1]]","[null, null, null]"
-Amateur,45,[],Iron Bullet,Fire,,"[[""Firesand"", 1], [""Iron Ingot"", 1]]","[[""Iron Bullet"", 99], null, null]"
-Amateur,45,[],Carbon Fiber,Lightning,,"[[""Alchemy Kit 45"", 1]]","[null, null, null]"
-Amateur,46,"[[""Goldsmithing"", 12]]",Worm Lure,Fire,,"[[""Brass Ingot"", 1], [""Glass Fiber"", 1], [""Little Worm"", 1]]","[null, null, null]"
-Amateur,46,[],Fire Sword,Earth,,"[[""Firesand"", 1], [""Iron Sword"", 1], [""Slime Oil"", 1]]","[[""Flame Sword"", 1], null, null]"
-Amateur,46,[],Carbon Fiber,Lightning,,"[[""Bomb Ash"", 1], [""Cluster Ash"", 1]]","[[""Carbon Fiber"", 6], [""Carbon Fiber"", 9], [""Carbon Fiber"", 12]]"
-Amateur,46,"[[""Goldsmithing"", 25]]",Stabilizer,Fire,Iatrochemistry,"[[""Black Ghost"", 1], [""Ebonite"", 1], [""Mythril Sheet"", 1], [""Sieglinde Putty"", 1], [""Water Tank"", 1]]","[null, null, null]"
-Amateur,46,"[[""Smithing"", 9]]",Worm Lure,Fire,,"[[""Animal Glue"", 1], [""Glass Fiber"", 1], [""Iron Ingot"", 1]]","[[""Frog Lure"", 1], [""Shrimp Lure"", 1], [""Lizard Lure"", 1]]"
-Amateur,47,"[[""Goldsmithing"", 12]]",Frog Lure,Fire,,"[[""Brass Ingot"", 1], [""Copper Frog"", 1], [""Glass Fiber"", 1]]","[null, null, null]"
-Amateur,47,[],Flame Degen,Earth,,"[[""Degen"", 1], [""Firesand"", 1], [""Slime Oil"", 1]]","[[""Flame Degen +1"", 1], null, null]"
-Amateur,47,[],Acid Knife,Water,,"[[""Animal Glue"", 1], [""Mythril Knife"", 1], [""Vitriol"", 1]]","[[""Corrosive Knife"", 1], null, null]"
-Amateur,47,[],Vulcan Claymore,Earth,,"[[""Brimsand"", 1], [""Flame Claymore"", 1], [""Slime Oil"", 1]]","[null, null, null]"
-Amateur,47,[],Carbon Fiber,Lightning,,"[[""Djinn Ash"", 1]]","[[""Carbon Fiber"", 6], [""Carbon Fiber"", 9], [""Carbon Fiber"", 12]]"
-Amateur,48,[],Melt Dagger,Water,,"[[""Acid Dagger"", 1], [""Invitriol"", 1]]","[null, null, null]"
-Amateur,48,"[[""Goldsmithing"", 21]]",Shrimp Lure,Fire,,"[[""Crayfish"", 1], [""Glass Fiber"", 1], [""Silver Ingot"", 1]]","[null, null, null]"
-Amateur,48,"[[""Smithing"", 12], [""Woodworking"", 8]]",Fire Arrow,Wind,,"[[""Ash Lumber"", 1], [""Bird Feather"", 2], [""Grass Cloth"", 1], [""Iron Ingot"", 1], [""Slime Oil"", 1]]","[[""Fire Arrow"", 66], [""Fire Arrow"", 99], [""Fire Arrow"", 99]]"
-Amateur,48,[],Flashbulb,Fire,Iatrochemistry,"[[""Glass Fiber"", 1], [""Glass Sheet"", 1], [""Lamp Marimo"", 1], [""Sieglinde Putty"", 1], [""Water Tank"", 1]]","[null, null, null]"
-Amateur,48,"[[""Bonecraft"", 22]]",Loudspeaker,Fire,Iatrochemistry,"[[""Baking Soda"", 1], [""Colibri Beak"", 1], [""Glass Sheet"", 1], [""Treant Bulb"", 1], [""Water Tank"", 1]]","[null, null, null]"
-Amateur,48,"[[""Smithing"", 30]]",Steel Bullet,Fire,,"[[""Firesand"", 1], [""Steel Ingot"", 1]]","[[""Steel Bullet"", 99], null, null]"
-Amateur,48,"[[""Clothcraft"", 33]]",Spectral Serum,Water,,"[[""Luminicloth"", 2], [""Mercury"", 1]]","[[""Spectral Serum"", 6], [""Spectral Serum"", 9], [""Spectral Serum"", 12]]"
-Amateur,48,[],Automaton Oil +2,Water,,"[[""Olive Oil"", 3], [""Plasma Oil"", 1], [""Polyflan Paper"", 1]]","[[""Automaton Oil +2"", 9], [""Automaton Oil +2"", 12], [""Automaton Oil +3 x12 Verification Needed"", 1]]"
-Amateur,49,[],Carbon Fishing Rod,Light,,"[[""Broken Carbon Rod"", 1]]","[null, null, null]"
-Amateur,49,[],Flame Blade,Earth,,"[[""Falchion"", 1], [""Firesand"", 1], [""Slime Oil"", 1]]","[[""Flame Blade +1"", 1], null, null]"
-Amateur,49,[],Vulcan Sword,Earth,,"[[""Brimsand"", 1], [""Fire Sword"", 1], [""Slime Oil"", 1]]","[null, null, null]"
-Amateur,49,"[[""Goldsmithing"", 6]]",Mana Converter,Earth,Iatrochemistry,"[[""Mercury"", 1], [""Coeurl Whisker"", 1], [""Brass Tank"", 2], [""Imperial Cermet"", 1]]","[null, null, null]"
-Amateur,49,"[[""Goldsmithing"", 3]]",Mana Booster,Earth,Iatrochemistry,"[[""Brass Tank"", 1], [""Fiend Blood"", 1], [""Imperial Cermet"", 1], [""Mana Wand"", 1], [""Mercury"", 1]]","[null, null, null]"
-Amateur,49,"[[""Goldsmithing"", 4]]",Strobe II,Fire,Iatrochemistry,"[[""Gold Sheet"", 1], [""Orobon Lure"", 1], [""Polyflan"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
-Amateur,50,[],Melt Knife,Water,,"[[""Acid Knife"", 1], [""Invitriol"", 1]]","[null, null, null]"
-Amateur,50,[],Ether,Water,,"[[""Bat Wing"", 2], [""Distilled Water"", 1], [""Dried Marjoram"", 1], [""Dryad Root"", 1]]","[[""Ether +1"", 1], [""Ether +2"", 1], [""Ether +3"", 1]]"
-Amateur,50,[],Vulcan Degen,Earth,,"[[""Brimsand"", 1], [""Flame Degen"", 1], [""Slime Oil"", 1]]","[null, null, null]"
-Amateur,50,[],Ether Drop,Fire,Concoction,"[[""Bat Wing"", 2], [""Distilled Water"", 1], [""Dried Marjoram"", 1], [""Dryad Root"", 1]]","[[""Ether Drop"", 2], [""Ether Drop"", 3], [""Ether Drop"", 4]]"
-Amateur,50,[],Kabenro,Earth,,"[[""Beeswax"", 1], [""Water Lily"", 2]]","[[""Kabenro"", 66], [""Kabenro"", 66], [""Kabenro"", 99]]"
-Amateur,50,[],Ether,Water,,"[[""Alchemy Kit 50"", 1], [""Journeyman (51-60)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,51,[],Holy Water,Light,,"[[""Distilled Water"", 1]]","[[""Holy Water"", 2], [""Holy Water"", 3], [""Holy Water"", 4]]"
-Amateur,51,[],Holy Water,Light,Trituration,"[[""Distilled Water"", 3], [""Triturator"", 1]]","[[""Holy Water"", 6], [""Holy Water"", 9], [""Holy Water"", 12]]"
-Amateur,51,[],Hallowed Water,Light,Alchemic Purification,"[[""Distilled Water"", 1], [""Fire Anima"", 1], [""Ice Anima"", 1], [""Light Anima"", 1]]","[[""Hallowed Water"", 2], [""Hallowed Water"", 3], [""Hallowed Water"", 4]]"
-Amateur,51,[],Acid Claws,Water,,"[[""Animal Glue"", 1], [""Mythril Claws"", 1], [""Vitriol"", 1]]","[[""Corrosive Claws"", 1], null, null]"
-Amateur,52,"[[""Goldsmithing"", 24]]",Silver Bullet,Fire,,"[[""Firesand"", 1], [""Silver Ingot"", 1]]","[[""Silver Bullet"", 99], null, null]"
-Amateur,52,[],Blessed Mythril Sheet,Light,,"[[""Holy Water"", 1], [""Mythril Sheet"", 1]]","[null, null, null]"
-Amateur,52,[],Vulcan Blade,Fire,,"[[""Brimsand"", 1], [""Flame Blade"", 1], [""Slime Oil"", 1]]","[null, null, null]"
-Amateur,52,[],Ranka,Earth,,"[[""Queen Of The Night"", 2]]","[[""Ranka"", 66], [""Ranka"", 66], [""Ranka"", 99]]"
-Amateur,53,"[[""Smithing"", 14]]",Holy Bolt Heads,Wind,,"[[""Bronze Ingot"", 1], [""Holy Water"", 2]]","[[""Holy Bolt Heads"", 8], [""Holy Bolt Heads"", 10], [""Holy Bolt Heads"", 12]]"
-Amateur,53,"[[""Smithing"", 24], [""Woodworking"", 3]]",Grenade,Earth,,"[[""Ash Lumber"", 1], [""Bomb Ash"", 1], [""Firesand"", 1], [""Iron Ingot"", 1], [""Yuhtunga Sulfur"", 1]]","[[""Grenade"", 6], [""Grenade"", 9], [""Grenade"", 12]]"
-Amateur,53,"[[""Smithing"", 24], [""Woodworking"", 3]]",Grenade,Earth,,"[[""Ash Lumber"", 1], [""Bomb Ash"", 1], [""Firesand"", 1], [""Iron Ingot"", 1], [""Sulfur"", 1]]","[[""Grenade"", 6], [""Grenade"", 9], [""Grenade"", 12]]"
-Amateur,53,[],Carbon Fishing Rod,Fire,,"[[""Carbon Fiber"", 4], [""Glass Fiber"", 1]]","[null, null, null]"
-Amateur,54,[],Melt Claws,Water,,"[[""Acid Claws"", 1], [""Invitriol"", 1]]","[null, null, null]"
-Amateur,54,[],Holy Sword,Light,,"[[""Holy Water"", 1], [""Mythril Sword"", 1]]","[[""Holy Sword +1"", 1], null, null]"
-Amateur,54,[],Popstar,Light,,"[[""Bast Parchment"", 1], [""Firesand"", 1], [""Prism Powder"", 1], [""Twinkle Powder"", 2]]","[[""Popstar"", 66], [""Popstar"", 99], [""Popstar"", 99]]"
-Amateur,54,"[[""Leathercraft"", 1]]",Ether Tank,Earth,,"[[""Brass Tank"", 1], [""Ether"", 4], [""Sheep Leather"", 1]]","[null, null, null]"
-Amateur,54,"[[""Smithing"", 24], [""Woodworking"", 3]]",Grenade,Earth,,"[[""Ash Lumber"", 1], [""Cluster Ash"", 1], [""Firesand"", 2], [""Iron Ingot"", 1]]","[[""Grenade"", 6], [""Grenade"", 9], [""Grenade"", 12]]"
-Amateur,54,[],Arcanic Cell,Fire,Iatrochemistry,"[[""Mercury"", 1], [""Carbon Fiber"", 1], [""Light Anima"", 1], [""Plasma Oil"", 1], [""Glass Sheet"", 1]]","[null, null, null]"
-Amateur,55,[],Holy Mace,Light,,"[[""Holy Water"", 1], [""Mythril Mace"", 1]]","[[""Holy Mace +1"", 1], null, null]"
-Amateur,55,[],Yoto,Water,,"[[""Animal Glue"", 1], [""Shinobi-Gatana"", 1], [""Vitriol"", 1]]","[[""Yoto +1"", 1], null, null]"
-Amateur,55,[],Inhibitor,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Hecteyes Eye"", 1], [""Homunculus Nerves"", 1], [""Fire Anima"", 1], [""Plasma Oil"", 1]]","[null, null, null]"
-Amateur,55,[],Scanner,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Hecteyes Eye"", 1], [""Homunculus Nerves"", 1], [""Ice Anima"", 1], [""Plasma Oil"", 1]]","[null, null, null]"
-Amateur,55,[],Pattern Reader,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Hecteyes Eye"", 1], [""Homunculus Nerves"", 1], [""Wind Anima"", 1], [""Plasma Oil"", 1]]","[null, null, null]"
-Amateur,55,[],Analyzer,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Hecteyes Eye"", 1], [""Homunculus Nerves"", 1], [""Earth Anima"", 1], [""Plasma Oil"", 1]]","[null, null, null]"
-Amateur,55,[],Heat Seeker,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Hecteyes Eye"", 1], [""Homunculus Nerves"", 1], [""Lightning Anima"", 1], [""Plasma Oil"", 1]]","[null, null, null]"
-Amateur,55,[],Stealth Screen,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Hecteyes Eye"", 1], [""Homunculus Nerves"", 1], [""Water Anima"", 1], [""Plasma Oil"", 1]]","[null, null, null]"
-Amateur,55,[],Damage Gauge,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Hecteyes Eye"", 1], [""Homunculus Nerves"", 1], [""Light Anima"", 1], [""Plasma Oil"", 1]]","[null, null, null]"
-Amateur,55,[],Mana Conserver,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Hecteyes Eye"", 1], [""Homunculus Nerves"", 1], [""Dark Anima"", 1], [""Plasma Oil"", 1]]","[null, null, null]"
-Amateur,55,[],Yoto,Water,,"[[""Alchemy Kit 55"", 1]]","[null, null, null]"
-Amateur,56,[],Cermet Chunk,Fire,,"[[""Magic Pot Shard"", 4]]","[[""Cermet Chunk"", 2], [""Cermet Chunk"", 3], [""Cermet Chunk"", 4]]"
-Amateur,56,[],Sleeping Potion,Water,,"[[""Chamomile"", 1], [""Poison Flour"", 1], [""Sleepshroom"", 1]]","[[""Sleeping Potion"", 2], [""Sleeping Potion"", 3], [""Sleeping Potion"", 4]]"
-Amateur,56,[],Sleeping Potion,Water,Trituration,"[[""Chamomile"", 2], [""Poison Flour"", 2], [""Sleepshroom"", 2], [""Triturator"", 1]]","[[""Sleeping Potion"", 4], [""Sleeping Potion"", 6], [""Sleeping Potion"", 8]]"
-Amateur,56,[],Glass Sheet,Fire,,"[[""Rock Salt"", 1], [""Shell Powder"", 1], [""Silica"", 6]]","[[""Glass Sheet"", 2], [""Glass Sheet"", 3], [""Glass Sheet"", 4]]"
-Amateur,56,"[[""Goldsmithing"", 23]]",Stabilizer II,Fire,Iatrochemistry,"[[""Black Ghost"", 1], [""High Ebonite"", 1], [""Mythril Sheet"", 1], [""Sieglinde Putty"", 1], [""Water Tank"", 1]]","[null, null, null]"
-Amateur,57,[],Sacred Sword,Light,,"[[""Hallowed Water"", 1], [""Holy Sword"", 1]]","[null, null, null]"
-Amateur,57,"[[""Smithing"", 33]]",Lightning Arrowheads,Lightning,,"[[""Copper Ingot"", 1], [""Steel Ingot"", 1]]","[[""Lightning Arrowheads"", 8], [""Lightning Arrowheads"", 10], [""Lightning Arrowheads"", 12]]"
-Amateur,57,[],Ice Arrowheads,Ice,,"[[""Copper Ingot"", 1], [""Cermet Chunk"", 1]]","[[""Ice Arrowheads"", 8], [""Ice Arrowheads"", 10], [""Ice Arrowheads"", 12]]"
-Amateur,57,"[[""Bonecraft"", 33]]",Water Arrowheads,Water,,"[[""Copper Ingot"", 1], [""Merrow Scale"", 1]]","[[""Water Arrowheads"", 8], [""Water Arrowheads"", 10], [""Water Arrowheads"", 12]]"
-Amateur,57,"[[""Bonecraft"", 35]]",Wind Arrowheads,Wind,,"[[""Copper Ingot"", 1], [""Colibri Beak"", 1]]","[[""Wind Arrowheads"", 8], [""Wind Arrowheads"", 10], [""Wind Arrowheads"", 12]]"
-Amateur,57,"[[""Bonecraft"", 44]]",Earth Arrowheads,Earth,,"[[""Copper Ingot"", 1], [""Marid Tusk"", 1]]","[[""Earth Arrowheads"", 8], [""Earth Arrowheads"", 10], [""Earth Arrowheads"", 12]]"
-Amateur,57,[],Spirit Sword,Light,Alchemic Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Holy Sword"", 1]]","[null, null, null]"
-Amateur,58,[],Sacred Mace,Light,,"[[""Hallowed Water"", 1], [""Holy Mace"", 1]]","[null, null, null]"
-Amateur,58,[],Melt Katana,Water,,"[[""Invitriol"", 1], [""Yoto"", 1]]","[null, null, null]"
-Amateur,58,"[[""Smithing"", 29]]",Quake Grenade,Earth,,"[[""Bomb Ash"", 3], [""Firesand"", 2], [""Iron Ingot"", 2], [""Yuhtunga Sulfur"", 1]]","[[""Quake Grenade"", 6], [""Quake Grenade"", 9], [""Quake Grenade"", 12]]"
-Amateur,58,"[[""Smithing"", 29]]",Quake Grenade,Earth,,"[[""Bomb Ash"", 3], [""Firesand"", 2], [""Iron Ingot"", 2], [""Sulfur"", 1]]","[[""Quake Grenade"", 6], [""Quake Grenade"", 9], [""Quake Grenade"", 12]]"
-Amateur,58,[],Holy Degen,Light,,"[[""Holy Water"", 1], [""Mythril Degen"", 1]]","[[""Holy Degen +1"", 1], null, null]"
-Amateur,58,"[[""Smithing"", 29]]",Quake Grenade,Earth,,"[[""Cluster Ash"", 1], [""Firesand"", 2], [""Iron Ingot"", 2], [""Sulfur"", 1]]","[[""Quake Grenade"", 6], [""Quake Grenade"", 9], [""Quake Grenade"", 12]]"
-Amateur,58,[],Automaton Oil +3,Water,,"[[""Olive Oil"", 4], [""Plasma Oil"", 1], [""Polyflan Paper"", 1]]","[[""Automaton Oil +3"", 9], [""Automaton Oil +3"", 12], [""Automaton Oil +3"", 12]]"
-Amateur,59,[],Bastokan Visor,Light,,"[[""Centurion's Visor"", 1], [""Cermet Chunk"", 1]]","[[""Republic Visor"", 1], null, null]"
-Amateur,59,[],Cermet Chunk,Fire,,"[[""Golem Shard"", 2]]","[[""Cermet Chunk"", 2], [""Cermet Chunk"", 3], [""Cermet Chunk"", 4]]"
-Amateur,59,[],Loudspeaker II,Fire,Iatrochemistry,"[[""Baking Soda"", 2], [""Colibri Beak"", 1], [""Glass Sheet"", 1], [""Treant Bulb"", 2], [""Water Tank"", 1]]","[null, null, null]"
-Amateur,59,[],Homura,Earth,,"[[""Firesand"", 1], [""Nodachi"", 1], [""Slime Oil"", 1], [""Toad Oil"", 1]]","[[""Homura +1"", 1], null, null]"
-Amateur,59,"[[""Goldsmithing"", 48], [""Woodworking"", 9]]",Leucous Voulge,Earth,,"[[""Cermet Chunk"", 1], [""Holly Lumber"", 1], [""Platinum Ingot"", 1], [""Super Cermet"", 2]]","[[""Leucous Voulge +1"", 1], null, null]"
-Amateur,59,[],Arcanic Cell II,Fire,Iatrochemistry,"[[""Mercury"", 1], [""Carbon Fiber"", 1], [""Light Anima"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
-Amateur,60,[],Stealth Screen II,Fire,Iatrochemistry,"[[""Hecteyes Eye"", 1], [""Water Anima"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
-Amateur,60,"[[""Smithing"", 11]]",Riot Grenade,Earth,,"[[""Bomb Ash"", 3], [""Bronze Sheet"", 1], [""Firesand"", 2], [""Paralysis Dust"", 1], [""Yuhtunga Sulfur"", 1]]","[[""Riot Grenade"", 6], [""Riot Grenade"", 9], [""Riot Grenade"", 12]]"
-Amateur,60,[],Cermet Chunk,Fire,,"[[""Doll Shard"", 2]]","[[""Cermet Chunk"", 2], [""Cermet Chunk"", 3], [""Cermet Chunk"", 4]]"
-Amateur,60,[],Hi-Potion,Water,,"[[""Distilled Water"", 1], [""Malboro Vine"", 1], [""Sage"", 2]]","[[""Hi-Potion +1"", 1], [""Hi-Potion +2"", 1], [""Hi-Potion +3"", 1]]"
-Amateur,60,[],Hi-Potion Drop,Fire,Concoction,"[[""Distilled Water"", 1], [""Malboro Vine"", 1], [""Sage"", 2]]","[[""Hi-Potion Drop"", 2], [""Hi-Potion Drop"", 3], [""Hi-Potion Drop"", 4]]"
-Amateur,60,[],Hi-Potion,Water,,"[[""Distilled Water"", 1], [""Ameretat Vine"", 1], [""Sage"", 2]]","[[""Hi-Potion +1"", 1], [""Hi-Potion +2"", 1], [""Hi-Potion +3"", 1]]"
-Amateur,60,[],Hi-Potion Drop,Fire,Concoction,"[[""Distilled Water"", 1], [""Ameretat Vine"", 1], [""Sage"", 2]]","[[""Hi-Potion Drop"", 2], [""Hi-Potion Drop"", 3], [""Hi-Potion Drop"", 4]]"
-Amateur,60,[],Hi-Potion,Water,,"[[""Distilled Water"", 1], [""Rafflesia Vine"", 1], [""Sage"", 2]]","[[""Hi-Potion +1"", 1], [""Hi-Potion +2"", 1], [""Hi-Potion +3"", 1]]"
-Amateur,60,[],Hi-Potion Drop,Fire,Concoction,"[[""Distilled Water"", 1], [""Rafflesia Vine"", 1], [""Sage"", 2]]","[[""Hi-Potion Drop"", 2], [""Hi-Potion Drop"", 3], [""Hi-Potion Drop"", 4]]"
-Amateur,60,[],Inhibitor II,Fire,Iatrochemistry,"[[""Hecteyes Eye"", 1], [""Fire Anima"", 1], [""Glass Sheet"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
-Amateur,60,[],Hi-Potion,Water,,"[[""Alchemy Kit 60"", 1], [""Craftsman (61-70)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,61,[],Bastokan Finger Gauntlets,Fire,,"[[""Centurion's Finger Gauntlets"", 1], [""Cermet Chunk"", 1]]","[[""Republic Finger Gauntlets"", 1], null, null]"
-Amateur,61,[],Sacred Degen,Light,,"[[""Hallowed Water"", 1], [""Holy Degen"", 1]]","[null, null, null]"
-Amateur,61,[],Porcelain Flowerpot,Fire,,"[[""Cermet Chunk"", 1]]","[null, null, null]"
-Amateur,61,[],Glass Fiber,Fire,,"[[""Flint Stone"", 8]]","[[""Glass Fiber"", 2], [""Glass Fiber"", 3], [""Glass Fiber"", 4]]"
-Amateur,61,[],Venom Dust,Lightning,,"[[""Scorpion Claw"", 2]]","[[""Venom Dust"", 2], [""Venom Dust"", 3], [""Venom Dust"", 4]]"
-Amateur,61,[],Stabilizer III,Fire,Iatrochemistry,"[[""Gold Sheet"", 1], [""Sieglinde Putty"", 1], [""High Ebonite"", 1], [""Black Ghost"", 1], [""Water Tank"", 1]]","[null, null, null]"
-Amateur,62,[],Cermet Knife,Fire,,"[[""Cermet Chunk"", 1], [""Oak Lumber"", 1]]","[[""Cermet Knife +1"", 1], null, null]"
-Amateur,62,[],Acid Baselard,Water,,"[[""Animal Glue"", 1], [""Mythril Baselard"", 1], [""Vitriol"", 1]]","[[""Corrosive Baselard"", 1], null, null]"
-Amateur,62,[],Koen,Earth,,"[[""Brimsand"", 1], [""Homura"", 1], [""Slime Oil"", 1], [""Toad Oil"", 1]]","[null, null, null]"
-Amateur,62,[],Glass Fiber,Fire,,"[[""Meteorite"", 1]]","[[""Glass Fiber"", 6], [""Glass Fiber"", 9], [""Glass Fiber"", 12]]"
-Amateur,62,[],Venom Dust,Lightning,,"[[""Istavrit"", 1]]","[[""Venom Dust"", 2], [""Venom Dust"", 3], [""Venom Dust"", 4]]"
-Amateur,62,[],Venom Dust,Lightning,,"[[""Ogre Eel"", 2]]","[[""Venom Dust"", 2], [""Venom Dust"", 3], [""Venom Dust"", 4]]"
-Amateur,62,[],Venom Dust,Lightning,,"[[""Monke-Onke"", 1]]","[[""Venom Dust"", 4], [""Venom Dust"", 6], [""Venom Dust"", 8]]"
-Amateur,62,[],Venom Dust,Lightning,,"[[""Peiste Stinger"", 1]]","[[""Venom Dust"", 4], [""Venom Dust"", 6], [""Venom Dust"", 8]]"
-Amateur,62,[],Amplifier,Fire,Iatrochemistry,"[[""Hecteyes Eye"", 1], [""Ice Anima"", 1], [""Glass Sheet"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
-Amateur,63,"[[""Smithing"", 11]]",Riot Grenade,Earth,,"[[""Bomb Ash"", 3], [""Bronze Sheet"", 1], [""Firesand"", 2], [""Paralysis Dust"", 1], [""Sulfur"", 1]]","[[""Riot Grenade"", 6], [""Riot Grenade"", 9], [""Riot Grenade"", 12]]"
-Amateur,63,"[[""Bonecraft"", 16]]",Cermet Claws,Fire,,"[[""Beetle Jaw"", 1], [""Cermet Chunk"", 1]]","[[""Cermet Claws +1"", 1], null, null]"
-Amateur,63,[],Ebonite,Lightning,,"[[""Flan Meat"", 2], [""Sulfur"", 1]]","[null, null, null]"
-Amateur,63,[],Loudspeaker III,Fire,Iatrochemistry,"[[""Treant Bulb"", 2], [""Baking Soda"", 2], [""Colibri Beak"", 1], [""Flint Glass Sheet"", 1], [""Water Tank"", 1]]","[null, null, null]"
-Amateur,64,"[[""Bonecraft"", 43]]",Sleep Arrowheads,Wind,,"[[""Animal Glue"", 1], [""Bone Chip"", 1], [""Ram Horn"", 1], [""Sleeping Potion"", 1]]","[[""Sleep Arrowheads"", 8], [""Sleep Arrowheads"", 10], [""Sleep Arrowheads"", 12]]"
-Amateur,64,[],Divine Sword,Light,,"[[""Broadsword"", 1], [""Holy Water"", 2]]","[[""Divine Sword +1"", 1], null, null]"
-Amateur,64,"[[""Smithing"", 11]]",Riot Grenade,Earth,,"[[""Bronze Sheet"", 1], [""Cluster Ash"", 1], [""Firesand"", 2], [""Paralysis Dust"", 1], [""Sulfur"", 1]]","[[""Riot Grenade"", 6], [""Riot Grenade"", 9], [""Riot Grenade"", 12]]"
-Amateur,64,"[[""Leathercraft"", 37]]",Flame Holder,Fire,Iatrochemistry,"[[""Beeswax"", 1], [""Cotton Thread"", 1], [""Cluster Arm"", 1], [""Slime Oil"", 1], [""Super Cermet"", 1], [""Wyvern Skin"", 1]]","[null, null, null]"
-Amateur,64,[],Ice Maker,Fire,Iatrochemistry,"[[""Flan Meat"", 1], [""Karakul Wool"", 1], [""Mega Battery"", 1], [""Mythril Sheet"", 1], [""Snoll Arm"", 1], [""Super Cermet"", 1]]","[null, null, null]"
-Amateur,64,[],Twitherym Scale,Lightning,,"[[""Twitherym Wing"", 2]]","[[""Twitherym Scale"", 2], [""Twitherym Scale"", 3], [""Twitherym Scale"", 4]]"
-Amateur,65,[],Bastokan Cuisses,Fire,,"[[""Centurion's Cuisses"", 1], [""Cermet Chunk"", 1]]","[[""Republic Cuisses"", 1], null, null]"
-Amateur,65,[],Melt Baselard,Water,,"[[""Acid Baselard"", 1], [""Invitriol"", 1]]","[null, null, null]"
-Amateur,65,"[[""Woodworking"", 28]]",Konron Hassen,Earth,,"[[""Bast Parchment"", 1], [""Bomb Ash"", 1], [""Copper Nugget"", 1], [""Firesand"", 1]]","[[""Konron Hassen"", 66], [""Konron Hassen"", 99], [""Konron Hassen"", 99]]"
-Amateur,65,[],Silver Nugget,Fire,,"[[""Panacea"", 1], [""Silver Leaf"", 1]]","[[""Silver Nugget"", 12], null, null]"
-Amateur,65,[],Chocotonic,Water,,"[[""Distilled Water"", 1], [""Gysahl Greens"", 1], [""Yellow Ginseng"", 1]]","[[""Chocotonic"", 6], [""Chocotonic"", 9], [""Chocotonic"", 12]]"
-Amateur,65,"[[""Woodworking"", 8]]",Ice Arrow,Ice,,"[[""Maple Lumber"", 1], [""Insect Wing"", 2], [""Cermet Chunk"", 1]]","[[""Ice Arrow"", 66], [""Ice Arrow"", 99], [""Ice Arrow"", 99]]"
-Amateur,65,"[[""Woodworking"", 8]]",Lightning Arrow,Lightning,,"[[""Arrowwood Lumber"", 1], [""Insect Wing"", 2], [""Steel Ingot"", 1]]","[[""Lightning Arrow"", 66], [""Lightning Arrow"", 99], [""Lightning Arrow"", 99]]"
-Amateur,65,"[[""Woodworking"", 8]]",Lightning Arrow,Lightning,,"[[""Maple Lumber"", 1], [""Insect Wing"", 2], [""Steel Ingot"", 1]]","[[""Lightning Arrow"", 66], [""Lightning Arrow"", 99], [""Lightning Arrow"", 99]]"
-Amateur,65,[],Single Hook Fishing Rod,Light,,"[[""Broken Single-Hook Fishing Rod"", 1]]","[null, null, null]"
-Amateur,65,[],Tranquilizer II,Fire,Iatrochemistry,"[[""Gold Sheet"", 1], [""Sieglinde Putty"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
-Amateur,65,[],Melt Baselard,Water,,"[[""Alchemy Kit 65"", 1]]","[null, null, null]"
-Amateur,66,[],Bastokan Greaves,Fire,,"[[""Centurion's Greaves"", 1], [""Cermet Chunk"", 1]]","[[""Republic Greaves"", 1], null, null]"
-Amateur,66,"[[""Smithing"", 6]]",Battery,Fire,,"[[""Cermet Chunk"", 1], [""Copper Ingot"", 1], [""Distilled Water"", 1], [""Lightning Cluster"", 1], [""Rock Salt"", 1], [""Tin Ingot"", 1]]","[null, null, null]"
-Amateur,66,"[[""Goldsmithing"", 39]]",Hanger,Fire,,"[[""Cermet Chunk"", 2], [""Gold Ingot"", 1]]","[[""Hanger +1"", 1], null, null]"
-Amateur,66,[],Remedy Ointment,Fire,,"[[""Distilled Water"", 1], [""Dried Marjoram"", 1], [""Qutrub Bandage"", 1], [""White Honey"", 1]]","[[""Remedy Ointment"", 6], [""Remedy Ointment"", 9], [""Remedy Ointment"", 12]]"
-Amateur,66,[],Hallowed Sword,Light,,"[[""Divine Sword"", 1], [""Hallowed Water"", 1]]","[null, null, null]"
-Amateur,67,"[[""Smithing"", 14]]",Sleep Bolt Heads,Wind,,"[[""Animal Glue"", 1], [""Bronze Ingot"", 1], [""Sleeping Potion"", 1]]","[[""Sleep Bolt Heads"", 8], [""Sleep Bolt Heads"", 10], [""Sleep Bolt Heads"", 12]]"
-Amateur,67,[],Acid Kukri,Water,,"[[""Animal Glue"", 1], [""Mythril Kukri"", 1], [""Vitriol"", 1]]","[[""Corrosive Kukri"", 1], null, null]"
-Amateur,67,[],Bastokan Scale Mail,Water,,"[[""Centurion's Scale Mail"", 1], [""Cermet Chunk"", 1]]","[[""Republic Scale Mail"", 1], null, null]"
-Amateur,67,[],Stabilizer IV,Fire,Iatrochemistry,"[[""Platinum Sheet"", 1], [""Sieglinde Putty"", 1], [""High Ebonite"", 1], [""Black Ghost"", 1], [""Water Tank"", 1]]","[null, null, null]"
-Amateur,67,[],Amplifier II,Fire,Iatrochemistry,"[[""Hecteyes Eye"", 1], [""Ice Anima"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 2]]","[null, null, null]"
-Amateur,68,[],Venom Potion,Water,,"[[""Mercury"", 1], [""Venom Dust"", 1]]","[null, null, null]"
-Amateur,68,[],Venom Potion,Water,Trituration,"[[""Mercury"", 3], [""Venom Dust"", 3], [""Triturator"", 1]]","[null, null, null]"
-Amateur,68,[],Cermet Sword,Fire,,"[[""Cermet Chunk"", 2], [""Tiger Leather"", 1]]","[[""Cermet Sword +1"", 1], null, null]"
-Amateur,68,[],Hyper Potion,Water,,"[[""Flytrap Leaf"", 1], [""Hecteyes Eye"", 1], [""Movalpolos Water"", 1], [""Sage"", 2]]","[null, null, null]"
-Amateur,68,[],Coiler II,Fire,Iatrochemistry,"[[""Carbon Fiber"", 1], [""Super Cermet"", 1], [""Imperial Cermet"", 1], [""Plasma Oil"", 1], [""High Ebonite"", 1]]","[null, null, null]"
-Amateur,68,[],Loudspeaker IV,Fire,Iatrochemistry,"[[""Treant Bulb"", 2], [""Baking Soda"", 1], [""Colibri Beak"", 1], [""Flint Glass Sheet"", 2], [""Water Tank"", 1]]","[null, null, null]"
-Amateur,69,[],Remedy,Water,,"[[""Boyahda Moss"", 1], [""Chamomile"", 1], [""Distilled Water"", 1], [""Dried Marjoram"", 1], [""Honey"", 1], [""Mistletoe"", 1], [""Sage"", 1], [""Wijnruit"", 1]]","[[""Remedy"", 4], [""Remedy"", 6], [""Remedy"", 8]]"
-Amateur,69,[],Single Hook Fishing Rod,Fire,,"[[""Carbon Fiber"", 5], [""Glass Fiber"", 2]]","[null, null, null]"
-Amateur,69,[],Hi-Ether,Water,,"[[""Bat Wing"", 4], [""Distilled Water"", 1], [""Dried Marjoram"", 2], [""Dryad Root"", 1]]","[[""Hi-Ether +1"", 1], [""Hi-Ether +2"", 1], [""Hi-Ether +3"", 1]]"
-Amateur,69,[],Hi-Ether Drop,Fire,Concoction,"[[""Bat Wing"", 4], [""Distilled Water"", 1], [""Dried Marjoram"", 2], [""Dryad Root"", 1]]","[[""Hi-Ether Drop"", 2], [""Hi-Ether Drop"", 3], [""Hi-Ether Drop"", 4]]"
-Amateur,69,[],Hi-Ether,Water,,"[[""Soulflayer Tentacle"", 1], [""Distilled Water"", 1], [""Dried Marjoram"", 2], [""Dryad Root"", 1]]","[[""Hi-Ether +1"", 1], [""Hi-Ether +2"", 1], [""Hi-Ether +3"", 1]]"
-Amateur,69,[],Hi-Ether Drop,Fire,Concoction,"[[""Soulflayer Tentacle"", 1], [""Distilled Water"", 1], [""Dried Marjoram"", 2], [""Dryad Root"", 1]]","[[""Hi-Ether Drop"", 2], [""Hi-Ether Drop"", 3], [""Hi-Ether Drop"", 4]]"
-Amateur,69,[],Melt Kukri,Water,,"[[""Acid Kukri"", 1], [""Invitriol"", 1]]","[null, null, null]"
-Amateur,70,[],Saber,Fire,,"[[""Cermet Chunk"", 3], [""Tiger Leather"", 1]]","[[""Saber +1"", 1], null, null]"
-Amateur,70,[],Venom Knife,Water,,"[[""Animal Glue"", 1], [""Darksteel Knife"", 1], [""Venom Potion"", 1]]","[[""Venom Knife +1"", 1], null, null]"
-Amateur,70,"[[""Leathercraft"", 10]]",Brilliant Snow,Ice,,"[[""Distilled Water"", 1], [""Glass Fiber"", 1], [""Holy Water"", 1], [""Sheep Leather"", 1], [""Rock Salt"", 1]]","[[""Brilliant Snow"", 66], [""Brilliant Snow"", 99], [""Brilliant Snow"", 99]]"
-Amateur,70,[],Repeater,Fire,Iatrochemistry,"[[""Glass Fiber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Homunculus Nerves"", 1], [""High Ebonite"", 1]]","[null, null, null]"
-Amateur,70,[],Tranquilizer III,Fire,Iatrochemistry,"[[""Platinum Sheet"", 1], [""Sieglinde Putty"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
-Amateur,70,[],Saber,Fire,,"[[""Alchemy Kit 70"", 1], [""Artisan (71-80)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,71,"[[""Smithing"", 13]]",Spartan Bullet,Fire,,"[[""Bronze Ingot"", 1], [""Copper Ingot"", 1], [""Firesand"", 1], [""Twinkle Powder"", 1]]","[[""Spartan Bullet"", 99], null, null]"
-Amateur,71,[],Holy Maul,Light,,"[[""Holy Water"", 1], [""Maul"", 1]]","[[""Holy Maul +1"", 1], null, null]"
-Amateur,71,[],Imperial Cermet,Fire,,"[[""Silica"", 1], [""Cermet Chunk"", 2]]","[[""Imperial Cermet"", 2], [""Imperial Cermet"", 3], [""Imperial Cermet"", 4]]"
-Amateur,71,[],Rainbow Powder,Light,,"[[""Glass Fiber"", 2], [""Wamoura Scale"", 1]]","[[""Rainbow Powder"", 8], [""Rainbow Powder"", 10], [""Rainbow Powder"", 12]]"
-Amateur,71,[],Rainbow Powder,Light,Trituration,"[[""Glass Fiber"", 4], [""Wamoura Scale"", 2], [""Triturator"", 1]]","[null, null, null]"
-Amateur,71,[],Stabilizer V,Fire,Iatrochemistry,"[[""Orichalcum Sheet"", 1], [""Sieglinde Putty"", 1], [""High Ebonite"", 1], [""Black Ghost"", 1], [""Water Tank"", 1]]","[null, null, null]"
-Amateur,72,[],Halcyon Rod,Light,,"[[""Bkn. Halcyon Rod"", 1]]","[null, null, null]"
-Amateur,72,[],Venom Claws,Water,,"[[""Animal Glue"", 1], [""Darksteel Claws"", 1], [""Venom Potion"", 1]]","[[""Venom Claws +1"", 1], null, null]"
-Amateur,72,[],Paralysis Dust,Lightning,,"[[""Puffball"", 2]]","[[""Paralysis Dust"", 2], [""Paralysis Dust"", 3], [""Paralysis Dust"", 4]]"
-Amateur,72,[],Paralysis Dust,Lightning,,"[[""Three-eyed Fish"", 1]]","[[""Paralysis Dust"", 4], [""Paralysis Dust"", 6], [""Paralysis Dust"", 8]]"
-Amateur,72,"[[""Goldsmithing"", 42]]",Replicator,Fire,Iatrochemistry,"[[""Mythril Sheet"", 1], [""Sieglinde Putty"", 1], [""Polyflan Paper"", 2], [""Wind Fan"", 1]]","[null, null, null]"
-Amateur,72,"[[""Smithing"", 19]]",Paktong Bullet,Fire,,"[[""Firesand"", 1], [""Paktong Ingot"", 1]]","[[""Paktong Bullet"", 99], null, null]"
-Amateur,72,"[[""Smithing"", 14]]",Darkling Bolt Heads,Wind,,"[[""Bronze Ingot"", 1], [""Revival Tree Root"", 1], [""Imp Wing"", 1]]","[[""Darkling Bolt Heads"", 8], [""Darkling Bolt Heads"", 10], [""Darkling Bolt Heads"", 12]]"
-Amateur,73,"[[""Clothcraft"", 41], [""Woodworking"", 26]]",Airborne,Earth,,"[[""Bast Parchment"", 1], [""Bomb Ash"", 1], [""Firesand"", 2], [""Goblin Doll"", 1], [""Silk Cloth"", 1]]","[[""Airborne"", 66], [""Airborne"", 99], [""Airborne"", 99]]"
-Amateur,73,"[[""Smithing"", 45]]",Cutlass,Fire,,"[[""Cermet Chunk"", 3], [""Darksteel Ingot"", 1]]","[[""Cutlass +1"", 1], null, null]"
-Amateur,73,[],High Ebonite,Lightning,,"[[""Flan Meat"", 3], [""Sulfur"", 1]]","[[""High Ebonite"", 4], [""High Ebonite"", 6], [""High Ebonite"", 8]]"
-Amateur,73,[],Vermin Slayer,Dark,,"[[""Ameretat Vine"", 1], [""Darksteel Kilij"", 1], [""Lizard Blood"", 1]]","[[""Insect Slayer"", 1], null, null]"
-Amateur,73,[],Aquan Slayer,Dark,,"[[""Ameretat Vine"", 1], [""Bird Blood"", 1], [""Darksteel Kilij"", 1]]","[[""Marine Slayer"", 1], null, null]"
-Amateur,73,[],Resolution Ring,Light,Alchemic Purification,"[[""Fiend Blood"", 1], [""Dragon Blood"", 1], [""Avatar Blood"", 1], [""Lizard Blood"", 1], [""Bird Blood"", 1], [""Chimera Blood"", 1], [""Demon Blood"", 1], [""Platinum Ring"", 1]]","[null, null, null]"
-Amateur,73,[],Dynamo II,Fire,Iatrochemistry,"[[""Platinum Sheet"", 1], [""Sieglinde Putty"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""High Ebonite"", 1]]","[null, null, null]"
-Amateur,73,[],Dynamo III,Fire,Iatrochemistry,"[[""Orichalcum Sheet"", 1], [""Sieglinde Putty"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""High Ebonite"", 1]]","[null, null, null]"
-Amateur,73,[],Loudspeaker V,Fire,Iatrochemistry,"[[""Treant Bulb"", 2], [""Baking Soda"", 1], [""Colibri Beak"", 1], [""Flint Glass Sheet"", 3], [""Water Tank"", 1]]","[null, null, null]"
-Amateur,74,[],Sacred Maul,Light,,"[[""Hallowed Water"", 1], [""Holy Maul"", 1]]","[null, null, null]"
-Amateur,74,[],Venom Baselard,Water,,"[[""Animal Glue"", 1], [""Darksteel Baselard"", 1], [""Venom Potion"", 1]]","[[""Venom Baselard +1"", 1], null, null]"
-Amateur,74,[],Mythril Nugget,Fire,,"[[""Mythril Leaf"", 1], [""Panacea"", 1]]","[[""Mythril Nugget"", 12], null, null]"
-Amateur,74,[],Spirit Maul,Light,Alchemic Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Holy Maul"", 1]]","[null, null, null]"
-Amateur,74,[],Tranquilizer IV,Fire,Iatrochemistry,"[[""Orichalcum Sheet"", 1], [""Sieglinde Putty"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
-Amateur,75,[],Venom Kukri,Water,,"[[""Animal Glue"", 1], [""Darksteel Kukri"", 1], [""Venom Potion"", 1]]","[[""Venom Kukri +1"", 1], null, null]"
-Amateur,75,[],Fire Anima,Fire,Anima Synthesis,"[[""Burning Memory"", 4], [""Mercury"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Fire Anima"", 20], [""Fire Anima"", 30], [""Fire Anima"", 40]]"
-Amateur,75,[],Ice Anima,Ice,Anima Synthesis,"[[""Bitter Memory"", 4], [""Mercury"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Ice Anima"", 20], [""Ice Anima"", 30], [""Ice Anima"", 40]]"
-Amateur,75,[],Wind Anima,Wind,Anima Synthesis,"[[""Fleeting Memory"", 4], [""Mercury"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Wind Anima"", 20], [""Wind Anima"", 30], [""Wind Anima"", 40]]"
-Amateur,75,[],Earth Anima,Earth,Anima Synthesis,"[[""Profane Memory"", 4], [""Mercury"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Earth Anima"", 20], [""Earth Anima"", 30], [""Earth Anima"", 40]]"
-Amateur,75,[],Lightning Anima,Lightning,Anima Synthesis,"[[""Startling Memory"", 4], [""Mercury"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Lightning Anima"", 20], [""Lightning Anima"", 30], [""Lightning Anima"", 40]]"
-Amateur,75,[],Water Anima,Water,Anima Synthesis,"[[""Somber Memory"", 4], [""Mercury"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Water Anima"", 20], [""Water Anima"", 30], [""Water Anima"", 40]]"
-Amateur,75,[],Light Anima,Light,Anima Synthesis,"[[""Radiant Memory"", 4], [""Mercury"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Light Anima"", 20], [""Light Anima"", 30], [""Light Anima"", 40]]"
-Amateur,75,[],Dark Anima,Dark,Anima Synthesis,"[[""Malevolent Mem."", 4], [""Mercury"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Dark Anima"", 20], [""Dark Anima"", 30], [""Dark Anima"", 40]]"
-Amateur,75,"[[""Goldsmithing"", 31]]",Electrum Bullet,Fire,,"[[""Firesand"", 1], [""Electrum Ingot"", 1]]","[[""Electrum Bullet"", 99], null, null]"
-Amateur,75,[],Venom Kukri,Water,,"[[""Alchemy Kit 75"", 1]]","[null, null, null]"
-Amateur,76,"[[""Smithing"", 14]]",Venom Bolt Heads,Wind,,"[[""Animal Glue"", 1], [""Bronze Ingot"", 1], [""Venom Potion"", 1]]","[[""Venom Bolt Heads"", 8], [""Venom Bolt Heads"", 10], [""Venom Bolt Heads"", 12]]"
-Amateur,76,"[[""Goldsmithing"", 18]]",Kilo Battery,Water,,"[[""Cermet Chunk"", 1], [""Distilled Water"", 1], [""Lightning Cluster"", 1], [""Rock Salt"", 1], [""Silver Ingot"", 1], [""Tin Ingot"", 1]]","[null, null, null]"
-Amateur,76,[],Cermet Kukri,Fire,,"[[""Cermet Chunk"", 1], [""Ebony Lumber"", 1], [""Wyvern Skin"", 1]]","[[""Cermet Kukri +1"", 1], null, null]"
-Amateur,76,[],Halcyon Rod,Fire,,"[[""Carbon Fiber"", 4], [""Cermet Chunk"", 1], [""Glass Fiber"", 2]]","[null, null, null]"
-Amateur,76,[],Regulator,Fire,Iatrochemistry,"[[""Brass Tank"", 1], [""Spectral Goldenrod"", 1], [""Chimera Blood"", 1], [""Imperial Cermet"", 1], [""Umbril Ooze"", 1]]","[null, null, null]"
-Amateur,77,[],X-Potion,Water,,"[[""Sage"", 2], [""Hecteyes Eye"", 1], [""Distilled Water"", 1], [""Reishi Mushroom"", 1]]","[[""X-Potion +1"", 1], [""X-Potion +2"", 1], [""X-Potion +3"", 1]]"
-Amateur,77,[],Freshwater Set,Water,,"[[""Desalinator"", 1], [""Holy Water"", 1], [""River Foliage"", 1], [""Silica"", 1]]","[null, null, null]"
-Amateur,77,[],Paralysis Arrowheads,Wind,,"[[""Animal Glue"", 1], [""Copper Ingot"", 1], [""Imperial Cermet"", 1], [""Paralyze Potion"", 1]]","[[""Paralysis Arrowheads"", 8], [""Paralysis Arrowheads"", 10], [""Paralysis Arrowheads"", 12]]"
-Amateur,77,"[[""Goldsmithing"", 23]]",Bread Crock,Fire,,"[[""Jadeite"", 1], [""Grass Thread"", 2], [""Kaolin"", 2]]","[null, null, null]"
-Amateur,78,"[[""Smithing"", 29]]",Jamadhars,Fire,,"[[""Cermet Chunk"", 2], [""Coeurl Leather"", 1], [""Iron Sheet"", 1]]","[[""Jamadhars +1"", 1], null, null]"
-Amateur,78,[],Paralyze Potion,Water,,"[[""Mercury"", 1], [""Paralysis Dust"", 1]]","[null, null, null]"
-Amateur,78,[],Paralyze Potion,Water,Trituration,"[[""Mercury"", 3], [""Paralysis Dust"", 3], [""Triturator"", 1]]","[null, null, null]"
-Amateur,78,"[[""Woodworking"", 45]]",Air Rider,Fire,,"[[""Bast Parchment"", 1], [""Firesand"", 2], [""Goblin Doll"", 1], [""Lauan Lumber"", 1], [""Twinkle Powder"", 1]]","[[""Air Rider"", 66], [""Air Rider"", 99], null]"
-Amateur,79,[],Venom Katars,Water,,"[[""Animal Glue"", 1], [""Darksteel Katars"", 1], [""Venom Potion"", 1]]","[[""Venom Katars +1"", 1], null, null]"
-Amateur,79,[],Holy Shield,Light,,"[[""Hard Shield"", 1], [""Holy Water"", 2], [""Mana Barrel"", 1]]","[[""Divine Shield"", 1], null, null]"
-Amateur,79,[],Hyper Ether,Water,,"[[""Dried Marjoram"", 2], [""Movalpolos Water"", 1], [""Taurus Wing"", 2], [""Treant Bulb"", 1]]","[null, null, null]"
-Amateur,79,"[[""Clothcraft"", 47], [""Goldsmithing"", 19]]",Red Storm Lantern,Fire,,"[[""Olive Oil"", 1], [""Brass Ingot"", 1], [""Silver Ingot"", 1], [""Silk Cloth"", 1], [""Glass Sheet"", 1], [""Sailcloth"", 1], [""Red Textile Dye"", 1]]","[null, null, null]"
-Amateur,79,"[[""Clothcraft"", 47], [""Goldsmithing"", 19]]",Blue Storm Lantern,Fire,,"[[""Olive Oil"", 1], [""Brass Ingot"", 1], [""Silver Ingot"", 1], [""Silk Cloth"", 1], [""Glass Sheet"", 1], [""Sailcloth"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
-Amateur,79,"[[""Clothcraft"", 47], [""Goldsmithing"", 19]]",Green Storm Lantern,Fire,,"[[""Olive Oil"", 1], [""Brass Ingot"", 1], [""Silver Ingot"", 1], [""Silk Cloth"", 1], [""Glass Sheet"", 1], [""Sailcloth"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
-Amateur,79,"[[""Clothcraft"", 47], [""Goldsmithing"", 19]]",Yellow Storm Lantern,Fire,,"[[""Olive Oil"", 1], [""Brass Ingot"", 1], [""Silver Ingot"", 1], [""Silk Cloth"", 1], [""Glass Sheet"", 1], [""Sailcloth"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
-Amateur,79,"[[""Clothcraft"", 47], [""Goldsmithing"", 19]]",White Storm Lantern,Fire,,"[[""Olive Oil"", 1], [""Brass Ingot"", 1], [""Silver Ingot"", 1], [""Silk Cloth"", 1], [""Glass Sheet"", 1], [""Sailcloth"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
-Amateur,80,[],Kororito,Water,,"[[""Animal Glue"", 1], [""Shinobi-Gatana"", 1], [""Venom Potion"", 1]]","[[""Kororito +1"", 1], null, null]"
-Amateur,80,[],Stun Knife,Water,,"[[""Animal Glue"", 1], [""Cermet Knife"", 1], [""Paralyze Potion"", 1]]","[[""Stun Knife +1"", 1], null, null]"
-Amateur,80,"[[""Goldsmithing"", 41]]",Fluoro-flora,Water,,"[[""Tufa"", 1], [""Red Gravel"", 1], [""Orobon Lure"", 1], [""Wildgrass Seeds"", 1], [""Super Ether"", 1], [""Humus"", 1]]","[null, null, null]"
-Amateur,80,[],Stun Knife,Water,,"[[""Alchemy Kit 80"", 1], [""Adept (81-90)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,81,"[[""Smithing"", 14]]",Bloody Bolt Heads,Wind,,"[[""Beastman Blood"", 1], [""Bronze Ingot"", 1], [""Revival Tree Root"", 1]]","[[""Bloody Bolt Heads"", 8], [""Bloody Bolt Heads"", 10], [""Bloody Bolt Heads"", 12]]"
-Amateur,81,[],Holy Wand,Light,,"[[""Holy Water"", 1], [""Mythic Wand"", 1]]","[[""Holy Wand +1"", 1], null, null]"
-Amateur,81,[],Hawker's Knife,Wind,,"[[""Archer's Knife"", 1], [""Beastman Blood"", 1], [""Dragon Blood"", 1], [""Fiend Blood"", 1]]","[[""Hawker's Knife +1"", 1], null, null]"
-Amateur,81,"[[""Woodworking"", 33]]",Gallipot,Fire,,"[[""Walnut Log"", 1], [""Bamboo Stick"", 1], [""Silica"", 1], [""Djinn Ash"", 1], [""Karugo-Narugo Clay"", 4]]","[null, null, null]"
-Amateur,82,[],Stun Claws,Water,,"[[""Animal Glue"", 1], [""Cermet Claws"", 1], [""Paralyze Potion"", 1]]","[[""Stun Claws +1"", 1], null, null]"
-Amateur,82,[],Saltwater Set,Water,,"[[""Holy Water"", 1], [""Salinator"", 1], [""Sea Foliage"", 1], [""White Sand"", 1]]","[null, null, null]"
-Amateur,82,[],Chocolixir,Light,,"[[""Distilled Water"", 1], [""Gold Leaf"", 1], [""Mistletoe"", 1], [""Revival Tree Root"", 1], [""Royal Jelly"", 1]]","[[""Hi-Chocolixir"", 1], null, null]"
-Amateur,82,[],Viper Dust,Lightning,,"[[""Khimaira Tail"", 1]]","[null, null, null]"
-Amateur,83,[],Bloody Blade,Dark,,"[[""Beastman Blood"", 1], [""Darksteel Falchion"", 1], [""Revival Tree Root"", 1]]","[[""Carnage Blade"", 1], null, null]"
-Amateur,83,[],Holy Lance,Light,,"[[""Holy Water"", 2], [""Mythril Lance"", 1]]","[[""Holy Lance +1"", 1], null, null]"
-Amateur,83,[],Polyflan,Lightning,,"[[""Chimera Blood"", 1], [""Flan Meat"", 1]]","[[""Polyflan"", 4], null, null]"
-Amateur,83,[],Dandy Spectacles,Wind,,"[[""Flint Glass Sheet"", 1]]","[[""Fancy Spectacles"", 1], null, null]"
-Amateur,83,[],Magniplug,Fire,Iatrochemistry,"[[""Mythril Sheet"", 1], [""Fire Bead"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""High Ebonite"", 1]]","[null, null, null]"
-Amateur,83,[],Arcanoclutch,Fire,Iatrochemistry,"[[""Mythril Sheet"", 1], [""Ice Bead"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""High Ebonite"", 1]]","[null, null, null]"
-Amateur,84,[],Sacred Wand,Light,,"[[""Hallowed Water"", 1], [""Holy Wand"", 1]]","[null, null, null]"
-Amateur,84,[],Dragon Blood,Lightning,,"[[""Dragon Heart"", 1]]","[[""Dragon Blood"", 6], null, null]"
-Amateur,84,"[[""Woodworking"", 23]]",Ouka Ranman,Earth,,"[[""Amaryllis"", 1], [""Bast Parchment"", 2], [""Firesand"", 1]]","[[""Ouka Ranman"", 66], [""Ouka Ranman"", 99], [""Ouka Ranman"", 99]]"
-Amateur,84,"[[""Goldsmithing"", 47], [""Woodworking"", 45]]",Cermet Kilij,Fire,,"[[""Mythril Ingot"", 2], [""Garnet"", 1], [""Sunstone"", 1], [""Marid Leather"", 1], [""Teak Lumber"", 1]]","[[""Cermet Kilij +1"", 1], null, null]"
-Amateur,84,[],Hakutaku Eye Cluster,Light,,"[[""Fiend Blood"", 1], [""Burning Hakutaku Eye"", 1], [""Damp Hakutaku Eye"", 1], [""Earthen Hakutaku Eye"", 1], [""Golden Hakutaku Eye"", 1], [""Wooden Hakutaku Eye"", 1]]","[null, null, null]"
-Amateur,85,[],Bloody Rapier,Dark,,"[[""Beastman Blood"", 1], [""Revival Tree Root"", 1], [""Schlaeger"", 1]]","[[""Carnage Rapier"", 1], null, null]"
-Amateur,85,[],Composite Fishing Rod,Light,,"[[""Broken Comp. Rod"", 1]]","[null, null, null]"
-Amateur,85,[],Photoanima,Fire,Anima Synthesis,"[[""Dark Anima"", 1], [""Earth Anima"", 1], [""Fire Anima"", 1], [""Ice Anima"", 1], [""Light Anima"", 1], [""Lightning Anima"", 1], [""Water Anima"", 1], [""Wind Anima"", 1]]","[null, null, null]"
-Amateur,85,"[[""Goldsmithing"", 38]]",Gold Bullet,Fire,,"[[""Firesand"", 1], [""Gold Ingot"", 1]]","[[""Gold Bullet"", 99], null, null]"
-Amateur,85,[],Bloody Rapier,Dark,,"[[""Alchemy Kit 85"", 1]]","[null, null, null]"
-Amateur,86,[],Sacred Lance,Light,,"[[""Hallowed Water"", 1], [""Holy Lance"", 1]]","[null, null, null]"
-Amateur,86,"[[""Smithing"", 31], [""Goldsmithing"", 16]]",Mega Battery,Water,,"[[""Cermet Chunk"", 1], [""Distilled Water"", 1], [""Iron Ingot"", 1], [""Lightning Cluster"", 1], [""Rock Salt"", 1], [""Silver Ingot"", 1]]","[null, null, null]"
-Amateur,86,[],Stun Kukri,Water,,"[[""Animal Glue"", 1], [""Cermet Kukri"", 1], [""Paralyze Potion"", 1]]","[[""Stun Kukri +1"", 1], null, null]"
-Amateur,86,[],Alchemist's Water,Dark,,"[[""Beastman Blood"", 1], [""Dryad Root"", 1], [""Mercury"", 1], [""Philosopher's Stone"", 1]]","[[""Alchemist's Water"", 12], null, null]"
-Amateur,86,[],Flint Glass Sheet,Fire,,"[[""Rock Salt"", 1], [""Shell Powder"", 1], [""Silica"", 4], [""Minium"", 2]]","[[""Flint Glass Sheet"", 2], [""Flint Glass Sheet"", 3], [""Flint Glass Sheet"", 4]]"
-Amateur,87,"[[""Woodworking"", 57]]",Garden Bangles,Dark,,"[[""Dryad Root"", 1], [""Fiend Blood"", 1], [""Four-Leaf Korringan Bud"", 1], [""Great Boyahda Moss"", 1], [""Mercury"", 1]]","[[""Feronia's Bangles"", 1], null, null]"
-Amateur,87,[],Venom Kris,Water,,"[[""Animal Glue"", 1], [""Darksteel Kris"", 1], [""Venom Potion"", 1]]","[[""Venom Kris +1"", 1], null, null]"
-Amateur,87,[],Holy Leather,Light,,"[[""Holy Water"", 1], [""Ram Leather"", 1]]","[null, null, null]"
-Amateur,88,[],Bloody Sword,Dark,,"[[""Bastard Sword"", 1], [""Beastman Blood"", 1], [""Revival Tree Root"", 1]]","[[""Carnage Sword"", 1], null, null]"
-Amateur,88,[],Gold Nugget,Fire,,"[[""Gold Leaf"", 1], [""Panacea"", 1]]","[[""Gold Nugget"", 12], null, null]"
-Amateur,88,[],Elixir Vitae,Light,,"[[""Chimera Blood"", 1], [""Distilled Water"", 1], [""Imp Wing"", 1], [""Mistletoe"", 1], [""Revival Tree Root"", 1]]","[null, null, null]"
-Amateur,88,[],Viper Potion,Water,,"[[""Mercury"", 1], [""Viper Dust"", 1]]","[null, null, null]"
-Amateur,88,[],Viper Potion,Water,Trituration,"[[""Mercury"", 3], [""Viper Dust"", 3], [""Triturator"", 1]]","[null, null, null]"
-Amateur,88,[],Arcanoclutch II,Fire,Iatrochemistry,"[[""Platinum Sheet"", 1], [""Ice Bead"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""High Ebonite"", 1]]","[null, null, null]"
-Amateur,88,[],Magniplug II,Fire,Iatrochemistry,"[[""Platinum Sheet"", 1], [""Fire Bead"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""High Ebonite"", 1]]","[null, null, null]"
-Amateur,88,[],Truesights,Fire,Iatrochemistry,"[[""Platinum Sheet"", 1], [""Wind Bead"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""High Ebonite"", 1]]","[null, null, null]"
-Amateur,89,[],Super Ether,Water,,"[[""Ahriman Wing"", 1], [""Distilled Water"", 1], [""Dried Marjoram"", 3], [""Treant Bulb"", 1]]","[[""Super Ether +1"", 1], [""Super Ether +2"", 1], [""Super Ether +3"", 1]]"
-Amateur,89,[],Composite Fishing Rod,Fire,,"[[""Carbon Fiber"", 3], [""Cermet Chunk"", 2], [""Glass Fiber"", 2]]","[null, null, null]"
-Amateur,89,[],Stun Jamadhars,Water,,"[[""Animal Glue"", 1], [""Jamadhars"", 1], [""Paralyze Potion"", 1]]","[[""Stun Jamadhars +1"", 1], null, null]"
-Amateur,89,[],Alchemist's Tools,Fire,,"[[""Iron Ingot"", 1], [""Parchment"", 1], [""Glass Sheet"", 1], [""Triturator"", 1], [""Colibri Feather"", 1], [""Aht Urhgan Brass Ingot"", 1], [""Aht Urhgan Brass Sheet"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
-Amateur,90,[],Bloody Lance,Dark,,"[[""Beastman Blood"", 2], [""Darksteel Lance"", 1], [""Revival Tree Root"", 1]]","[[""Carnage Lance"", 1], null, null]"
-Amateur,90,[],Elixir,Light,,"[[""Distilled Water"", 1], [""Dragon Blood"", 1], [""Mistletoe"", 1], [""Revival Tree Root"", 1], [""Royal Jelly"", 1]]","[[""Hi-Elixir"", 1], null, null]"
-Amateur,90,[],Espadon,Fire,,"[[""Cermet Chunk"", 3], [""Coeurl Leather"", 1]]","[[""Espadon +1"", 1], null, null]"
-Amateur,90,[],Adder Jambiya,Water,,"[[""Animal Glue"", 1], [""Viper Potion"", 1], [""Khimaira Jambiya"", 1]]","[[""Adder Jambiya +1"", 1], null, null]"
-Amateur,90,[],Oxidant Baselard,Water,,"[[""Animal Glue"", 1], [""Rhodium Ingot"", 1], [""Umbril Ooze"", 1], [""Acuex Poison"", 1], [""Mythril Baselard"", 1]]","[[""Nitric Baselard"", 1], null, null]"
-Amateur,90,[],Nakajimarai,Water,,"[[""Animal Glue"", 1], [""Rhodium Ingot"", 1], [""Umbril Ooze"", 1], [""Acuex Poison"", 1], [""Shinobi-Gatana"", 1]]","[[""Nakajimarai +1"", 1], null, null]"
-Amateur,90,[],Bloody Lance,Dark,,"[[""Alchemy Kit 90"", 1], [""Veteran (91-100)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,91,"[[""Woodworking"", 59], [""Smithing"", 21]]",Urushi,Fire,,"[[""Honey"", 1], [""Iron Ore"", 1], [""Lacquer Tree Sap"", 4]]","[[""Urushi"", 4], [""Urushi"", 6], [""Urushi"", 8]]"
-Amateur,91,[],Mamushito,Water,,"[[""Animal Glue"", 1], [""Paralyze Potion"", 1], [""Shinobi-Gatana"", 1]]","[[""Mamushito +1"", 1], null, null]"
-Amateur,91,[],Ether Leather,Water,,"[[""Ahriman Wing"", 1], [""Ram Leather"", 1], [""Distilled Water"", 1], [""Dried Marjoram"", 3], [""Treant Bulb"", 1]]","[null, null, null]"
-Amateur,91,[],Ether Cotton,Water,,"[[""Ahriman Wing"", 1], [""Cotton Cloth"", 1], [""Distilled Water"", 1], [""Dried Marjoram"", 3], [""Treant Bulb"", 1]]","[null, null, null]"
-Amateur,91,[],Ether Holly,Water,,"[[""Ahriman Wing"", 1], [""Holly Lumber"", 1], [""Distilled Water"", 1], [""Dried Marjoram"", 3], [""Treant Bulb"", 1]]","[null, null, null]"
-Amateur,91,[],Bewitched Greaves,Dark,,"[[""Cursed Greaves -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Greaves"", 1], null, null]"
-Amateur,91,[],Vexed Nails,Dark,,"[[""Hexed Nails -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Nails"", 1], null, null]"
-Amateur,92,[],Strength Potion,Water,,"[[""Distilled Water"", 1], [""Dried Mugwort"", 1], [""Boyahda Moss"", 1], [""Honey"", 1], [""Red Rose"", 1]]","[null, null, null]"
-Amateur,92,[],Dexterity Potion,Water,,"[[""Distilled Water"", 1], [""Dried Mugwort"", 1], [""Malboro Vine"", 1], [""Honey"", 1], [""Sweet William"", 1]]","[null, null, null]"
-Amateur,92,[],Vitality Potion,Water,,"[[""Distilled Water"", 1], [""Dried Mugwort"", 1], [""Lizard Tail"", 1], [""Honey"", 1], [""Chamomile"", 1]]","[null, null, null]"
-Amateur,92,[],Agility Potion,Water,,"[[""Distilled Water"", 1], [""Dried Mugwort"", 1], [""Hecteyes Eye"", 1], [""Honey"", 1], [""Phalaenopsis"", 1]]","[null, null, null]"
-Amateur,92,[],Intelligence Potion,Water,,"[[""Distilled Water"", 1], [""Dried Mugwort"", 1], [""Coeurl Whisker"", 1], [""Honey"", 1], [""Olive Flower"", 1]]","[null, null, null]"
-Amateur,92,[],Mind Potion,Water,,"[[""Distilled Water"", 1], [""Dried Mugwort"", 1], [""Bat Wing"", 1], [""Honey"", 1], [""Casablanca"", 1]]","[null, null, null]"
-Amateur,92,[],Charisma Potion,Water,,"[[""Distilled Water"", 1], [""Dried Mugwort"", 1], [""Two-Leaf Mandragora Bud"", 1], [""Honey"", 1], [""Cattleya"", 1]]","[null, null, null]"
-Amateur,92,[],Cursed Cuisses,Dark,,"[[""Revival Tree Root"", 1], [""Dragon Blood"", 1], [""Dragon Cuisses"", 1]]","[[""Cursed Cuisses -1"", 1], null, null]"
-Amateur,92,"[[""Woodworking"", 60]]",Sekishitsu,Fire,,"[[""Honey"", 1], [""Vermilion Lacquer"", 1], [""Lacquer Tree Sap"", 4]]","[[""Sekishitsu"", 4], [""Sekishitsu"", 6], [""Sekishitsu"", 8]]"
-Amateur,92,[],Bewitched Finger Gauntlets,Dark,,"[[""Cursed Finger Gauntlets -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Finger Gauntlets"", 1], null, null]"
-Amateur,92,[],Vexed Gages,Dark,,"[[""Hexed Gages -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Gages"", 1], null, null]"
-Amateur,93,"[[""Cooking"", 43]]",Antacid,Earth,,"[[""Chamomile"", 1], [""Distilled Water"", 1], [""Dried Marjoram"", 1], [""Dried Mugwort"", 1], [""Maple Sugar"", 1]]","[null, null, null]"
-Amateur,93,[],Ice Lance,Ice,,"[[""Cermet Lance"", 1], [""Distilled Water"", 1], [""Rock Salt"", 1]]","[[""Ice Lance +1"", 1], null, null]"
-Amateur,93,[],Icarus Wing,Wind,,"[[""Beeswax"", 2], [""Giant Bird Feather"", 6]]","[null, null, null]"
-Amateur,93,[],Cursed Finger Gauntlets,Dark,,"[[""Revival Tree Root"", 1], [""Dragon Blood"", 1], [""Dragon Finger Gauntlets"", 1]]","[[""Cursed Finger Gauntlets -1"", 1], null, null]"
-Amateur,93,[],Hermes Quencher,Water,,"[[""Dried Mugwort"", 1], [""Flytrap Leaf"", 1], [""Jacknife"", 1], [""Honey"", 1], [""Movalpolos Water"", 1]]","[null, null, null]"
-Amateur,93,[],Bewitched Cuisses,Dark,,"[[""Cursed Cuisses -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Cuisses"", 1], null, null]"
-Amateur,93,[],Vexed Slops,Dark,,"[[""Hexed Slops -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Slops"", 1], null, null]"
-Amateur,94,"[[""Goldsmithing"", 18], [""Smithing"", 34]]",Cannon Shell,Fire,,"[[""Bomb Arm"", 1], [""Brass Ingot"", 1], [""Firesand"", 2], [""Iron Ingot"", 1]]","[[""Cannon Shell"", 8], [""Cannon Shell"", 10], [""Cannon Shell"", 12]]"
-Amateur,94,[],Cursed Greaves,Dark,,"[[""Revival Tree Root"", 1], [""Dragon Blood"", 1], [""Dragon Greaves"", 1]]","[[""Cursed Greaves -1"", 1], null, null]"
-Amateur,94,"[[""Leathercraft"", 1]]",Elixir Tank,Fire,,"[[""Sheep Leather"", 1], [""Brass Tank"", 1], [""Elixir"", 4]]","[null, null, null]"
-Amateur,94,[],Bewitched Mask,Dark,,"[[""Cursed Mask -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Mask"", 1], null, null]"
-Amateur,94,[],Vexed Coif,Dark,,"[[""Hexed Coif -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Coif"", 1], null, null]"
-Amateur,95,[],Max-Potion,Water,,"[[""Distilled Water"", 1], [""Dragon Blood"", 1], [""Reishi Mushroom"", 1], [""Sage"", 4]]","[[""Max-Potion +1"", 1], [""Max-Potion +2"", 1], [""Max-Potion +3"", 1]]"
-Amateur,95,[],Marksman's Oil,Water,,"[[""Goblin Grease"", 1], [""Slime Juice"", 1]]","[null, null, null]"
-Amateur,95,"[[""Goldsmithing"", 48]]",Platinum Bullet,Fire,,"[[""Platinum Ingot"", 1], [""Firesand"", 1]]","[[""Platinum Bullet"", 66], [""Platinum Bullet"", 99], [""Platinum Bullet"", 99]]"
-Amateur,95,[],Bewitched Mail,Dark,,"[[""Cursed Mail -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Mail"", 1], null, null]"
-Amateur,95,[],Vexed Doublet,Dark,,"[[""Hexed Doublet -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Doublet"", 1], null, null]"
-Amateur,95,[],Max-Potion,Water,,"[[""Alchemy Kit 95"", 1]]","[null, null, null]"
-Amateur,96,[],Platinum Nugget,Fire,,"[[""Panacea"", 1], [""Platinum Leaf"", 1]]","[[""Platinum Nugget"", 12], null, null]"
-Amateur,96,[],Cursed Mask,Dark,,"[[""Revival Tree Root"", 1], [""Dragon Blood"", 1], [""Dragon Mask"", 1]]","[[""Cursed Mask -1"", 1], null, null]"
-Amateur,97,[],Ice Shield,Ice,,"[[""Diamond Shield"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Ice Shield +1"", 1], null, null]"
-Amateur,97,[],Papillion,Light,,"[[""Artificial Lens"", 1], [""Insect Wing"", 2], [""Prism Powder"", 1], [""Rainbow Thread"", 1]]","[[""Papillion"", 66], [""Papillion"", 99], [""Papillion"", 99]]"
-Amateur,98,[],Panacea,Light,,"[[""Mercury"", 1], [""Philosopher's Stone"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Panacea"", 2], [""Panacea"", 3], [""Panacea"", 4]]"
-Amateur,98,[],Dragon Slayer,Dark,,"[[""Demon Blood"", 1], [""Ameretat Vine"", 1], [""Adaman Kilij"", 1]]","[[""Wyrm Slayer"", 1], null, null]"
-Amateur,98,[],Demon Slayer,Dark,,"[[""Dragon Blood"", 1], [""Ameretat Vine"", 1], [""Adaman Kilij"", 1]]","[[""Devil Slayer"", 1], null, null]"
-Amateur,99,[],Cursed Mail,Dark,,"[[""Revival Tree Root"", 1], [""Dragon Blood"", 2], [""Dragon Mail"", 1]]","[[""Cursed Mail -1"", 1], null, null]"
-Amateur,99,[],Cantarella,Dark,,"[[""Distilled Water"", 1], [""Fresh Orc Liver"", 1], [""Mercury"", 1], [""Paralysis Dust"", 1], [""Venom Dust"", 1]]","[null, null, null]"
-Amateur,99,[],San d'Orian Tea Set,Fire,,"[[""Silver Ingot"", 1], [""Angelstone"", 1], [""Kaolin"", 2]]","[null, null, null]"
-Amateur,99,[],Ephedra Ring,Light,,"[[""Holy Water"", 2], [""Hallowed Water"", 1], [""Mythril Ring"", 1]]","[[""Haoma's Ring"", 1], null, null]"
-Amateur,99,[],Saida Ring,Light,,"[[""Holy Water"", 2], [""Hallowed Water"", 1], [""Orichalcum Ring"", 1]]","[[""Eshmun's Ring"", 1], null, null]"
-Amateur,100,[],Pro-Ether,Water,,"[[""Ahriman Wing"", 2], [""Distilled Water"", 1], [""Dried Marjoram"", 3], [""Treant Bulb"", 1], [""Wyvern Wing"", 1]]","[[""Pro-Ether +1"", 1], [""Pro-Ether +2"", 1], [""Pro-Ether +3"", 1]]"
-Amateur,100,"[[""Goldsmithing"", 60]]",Crystal Rose,Fire,,"[[""Scintillant Ingot"", 1], [""Flint Glass Sheet"", 3], [""Expert (101-110)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,101,"[[""Goldsmithing"", 60]]",Gold Algol,Fire,,"[[""Divine Lumber"", 1], [""Gold Ingot"", 2], [""Scintillant Ingot"", 1], [""Super Cermet"", 4]]","[[""Gold Algol +1"", 1], null, null]"
-Amateur,102,[],Sun Water,Light,,"[[""Beastman Blood"", 1], [""Cactuar Root"", 1], [""Mercury"", 1], [""Philosopher's Stone"", 1]]","[[""Sun Water"", 4], null, null]"
-Amateur,102,[],Pungent Powder,Light,,"[[""Glass Fiber x 2"", 1], [""Ahriman Lens"", 1], [""Gelatin"", 1], [""Cornstarch"", 1], [""Saruta Cotton"", 1], [""Silk Cloth"", 1], [""Pagodite"", 1]]","[null, null, null]"
-Amateur,102,[],Pungent Powder II,Light,,"[[""Glass Fiber x 2"", 1], [""Ahriman Lens"", 1], [""Revival Root"", 1], [""Cornstarch"", 1], [""Saruta Cotton"", 1], [""Silk Cloth"", 1], [""Pagodite"", 1]]","[null, null, null]"
-Amateur,102,[],Pungent Powder III,Light,,"[[""Glass Fiber x 2"", 1], [""Ahriman Lens"", 1], [""unknown Question"", 1], [""Cornstarch"", 1], [""Saruta Cotton"", 1], [""Silk Cloth"", 1], [""Pagodite"", 1]]","[null, null, null]"
-Amateur,103,[],Turbo Charger II,Fire,Iatrochemistry,"[[""Mythril Sheet"", 1], [""Glass Fiber"", 1], [""Glass Sheet"", 1], [""Scroll of Haste"", 1], [""Mega Fan"", 1], [""Vanir Battery"", 1]]","[null, null, null]"
-Amateur,103,[],Vivi-Valve II,Fire,Iatrochemistry,"[[""Mythril Sheet"", 1], [""Glass Fiber"", 1], [""Light Bead"", 1], [""Vanir Battery"", 1]]","[null, null, null]"
-Amateur,104,[],Saline Broth,Dark,,"[[""Mercury"", 1], [""Beastman Blood"", 1], [""Philosopher's Stone"", 1], [""Buried Vestige"", 1]]","[[""Saline Broth"", 6], [""Saline Broth"", 8], [""Saline Broth"", 10]]"
-Amateur,104,[],Abrasion Bolt Heads,Wind,,"[[""Mercury"", 1], [""Animal Glue"", 1], [""Belladonna Sap"", 1], [""Acuex Poison"", 1], [""Ra'Kaznar Ingot"", 1]]","[[""Abrasion Bolt Heads"", 8], [""Abrasion Bolt Heads"", 10], [""Abrasion Bolt Heads"", 12]]"
-Amateur,104,[],Righteous Bolt Heads,Wind,,"[[""Animal Glue"", 1], [""Avatar Blood"", 1], [""Hallowed Water"", 2], [""Ra'Kaznar Ingot"", 1]]","[[""Righteous Bolt Heads"", 8], [""Righteous Bolt Heads"", 10], [""Righteous Bolt Heads"", 12]]"
-Amateur,105,[],Hexed Nails,Dark,,"[[""Revival Tree Root"", 1], [""Ethereal Squama"", 1], [""Belladonna Sap"", 1], [""Ebony Sabots"", 1]]","[[""Hexed Nails -1"", 1], null, null]"
-Amateur,105,[],Azure Cermet,Fire,,"[[""Cermet Chunk"", 1], [""Panacea"", 1], [""Azure Leaf"", 1]]","[[""Azure Cermet"", 2], [""Azure Cermet"", 3], [""Azure Cermet"", 4]]"
-Amateur,106,[],Hexed Slops,Dark,,"[[""Revival Tree Root"", 1], [""Ethereal Squama"", 1], [""Belladonna Sap"", 1], [""Velvet Slops"", 1]]","[[""Hexed Slops -1"", 1], null, null]"
-Amateur,106,"[[""Goldsmithing"", 25]]",Malison Medallion,Earth,,"[[""Silver Chain"", 2], [""Heliodor"", 1], [""Neutralizing Silver Ingot"", 1], [""Holy Water"", 2], [""Hallowed Water"", 1]]","[[""Debilis Medallion"", 1], null, null]"
-Amateur,107,[],Hexed Coif,Dark,,"[[""Revival Tree Root"", 1], [""Ethereal Squama"", 1], [""Belladonna Sap"", 1], [""Velvet Hat"", 1]]","[[""Hexed Coif -1"", 1], null, null]"
-Amateur,108,[],Hexed Gages,Dark,,"[[""Revival Tree Root"", 1], [""Ethereal Squama"", 1], [""Belladonna Sap"", 1], [""Velvet Cuffs"", 1]]","[[""Hexed Gages -1"", 1], null, null]"
-Amateur,110,[],Hexed Doublet,Dark,,"[[""Revival Tree Root"", 1], [""Ethereal Squama"", 1], [""Belladonna Sap"", 2], [""Velvet Robe"", 1]]","[[""Hexed Doublet -1"", 1], null, null]"
-Amateur,110,[],Killer's Kilij,Dark,,"[[""Fiend Blood"", 1], [""Demon Blood"", 1], [""Dragon Blood"", 1], [""Avatar Blood"", 1], [""Beast Blood"", 1], [""Chimera Blood"", 1], [""Ameretat Vine"", 1], [""Adaman Kilij"", 1]]","[[""Eradicator's Kilij"", 1], null, null]"
-Amateur,110,"[[""Bonecraft"", 55]]",Bagua Charm,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Charm"", 1]]","[[""Bagua Charm +1"", 1], [""Bagua Charm +2"", 1], null]"
-Amateur,110,"[[""Bonecraft"", 55]]",Bard's Charm,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Charm"", 1]]","[[""Bard's Charm +1"", 1], [""Bard's Charm +2"", 1], null]"
-Amateur,110,"[[""Bonecraft"", 55]]",Commodore Charm,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Charm"", 1], [""Authority (111-120)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Commodore Charm +1"", 1], [""Commodore Charm +2"", 1], null]"
-Amateur,111,"[[""Bonecraft"", 70]]",Bewitched Greaves,Dark,,"[[""Cursed Greaves"", 1], [""Emperor Arthro's Shell"", 1], [""Plovid Effluvium"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Greaves"", 1], null, null]"
-Amateur,111,"[[""Clothcraft"", 70]]",Vexed Nails,Dark,,"[[""Sif's Macrame"", 1], [""Defiant Sweat"", 1], [""Eschite Ore"", 1], [""Hexed Nails"", 1]]","[[""Jinxed Nails"", 1], null, null]"
-Amateur,111,[],Futhark Claymore,Light,Alchemist's aurum tome,"[[""Smithing - (Information Needed)"", 1], [""Defiant Scarf"", 1], [""Dark Matter"", 1], [""Niobium Ore"", 1], [""Moldy G. Sword"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Peord Claymore"", 1], [""Morgelai"", 1], null]"
-Amateur,111,[],Wyrm Lance,Light,Alchemist's aurum tome,"[[""Woodworking - (Information Needed)"", 1], [""Defiant Scarf"", 1], [""Dark Matter"", 1], [""Cypress Log"", 1], [""Moldy Polearm"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Pteroslaver Lance"", 1], [""Aram"", 1], null]"
-Amateur,112,"[[""Bonecraft"", 70]]",Bewitched Finger Gauntlets,Dark,,"[[""Cursed Finger Gauntlets"", 1], [""Emperor Arthro's Shell"", 1], [""Plovid Effluvium"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Finger Gauntlets"", 1], null, null]"
-Amateur,112,"[[""Clothcraft"", 70]]",Vexed Gages,Dark,,"[[""Sif's Macrame"", 1], [""Defiant Sweat"", 1], [""Eschite Ore"", 1], [""Hexed Gages"", 1]]","[[""Jinxed Gages"", 1], null, null]"
-Amateur,113,[],Dija Sword,Dark,,"[[""Dragon Blood"", 1], [""Yggdreant Root"", 1], [""Bastard Sword"", 1]]","[[""Dija Sword +1"", 1], null, null]"
-Amateur,113,"[[""Bonecraft"", 70]]",Bewitched Cuisses,Dark,,"[[""Cursed Cuisses"", 1], [""Emperor Arthro's Shell"", 1], [""Plovid Effluvium"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Cuisses"", 1], null, null]"
-Amateur,113,"[[""Clothcraft"", 70]]",Vexed Slops,Dark,,"[[""Sif's Macrame"", 1], [""Defiant Sweat"", 1], [""Eschite Ore"", 1], [""Hexed Slops"", 1]]","[[""Jinxed Slops"", 1], null, null]"
-Amateur,114,"[[""Bonecraft"", 70]]",Bewitched Mask,Dark,,"[[""Cursed Mask"", 1], [""Emperor Arthro's Shell"", 1], [""Plovid Effluvium"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Mask"", 1], null, null]"
-Amateur,114,"[[""Clothcraft"", 70]]",Vexed Coif,Dark,,"[[""Sif's Macrame"", 1], [""Defiant Sweat"", 1], [""Eschite Ore"", 1], [""Hexed Coif"", 1]]","[[""Jinxed Coif"", 1], null, null]"
-Amateur,115,"[[""Bonecraft"", 70]]",Bewitched Mail,Dark,,"[[""Cursed Mail"", 1], [""Emperor Arthro's Shell"", 1], [""Plovid Effluvium"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Mail"", 1], null, null]"
-Amateur,115,"[[""Clothcraft"", 70]]",Vexed Doublet,Dark,,"[[""Sif's Macrame"", 1], [""Defiant Sweat"", 1], [""Eschite Ore"", 1], [""Hexed Doublet"", 1]]","[[""Jinxed Doublet"", 1], null, null]"
-Amateur,115,[],Pinga Pumps,Fire,Alchemist's argentum tome,"[[""Darksteel Sheet"", 1], [""Rockfin Tooth"", 1], [""Defiant Scarf"", 1], [""Azure Cermet"", 2]]","[[""Pinga Pumps +1"", 1], null, null]"
-Amateur,115,[],Ratri Sollerets,Fire,Alchemist's argentum tome,"[[""Gold Sheet"", 1], [""Cehuetzi Claw"", 1], [""Macuil Plating"", 1], [""Azure Cermet"", 2]]","[[""Ratri Sollerets +1"", 1], null, null]"
-Amateur,115,[],Pinga Mittens,Fire,Alchemist's argentum tome,"[[""Darksteel Sheet"", 2], [""Rockfin Tooth"", 1], [""Defiant Scarf"", 1], [""Azure Cermet"", 2]]","[[""Pinga Mittens +1"", 1], null, null]"
-Amateur,115,[],Ratri Gadlings,Fire,Alchemist's argentum tome,"[[""Gold Sheet"", 2], [""Cehuetzi Claw"", 1], [""Macuil Plating"", 1], [""Azure Cermet"", 2]]","[[""Ratri Gadlings +1"", 1], null, null]"
-Amateur,115,[],Pinga Crown,Fire,Alchemist's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Rockfin Tooth"", 1], [""Defiant Scarf"", 1], [""Azure Cermet"", 2]]","[[""Pinga Crown +1"", 1], null, null]"
-Amateur,115,[],Ratri Sallet,Fire,Alchemist's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Cehuetzi Claw"", 1], [""Macuil Plating"", 1], [""Azure Cermet"", 2]]","[[""Ratri Sallet +1"", 1], null, null]"
-Amateur,115,[],Pinga Pants,Fire,Alchemist's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Rockfin Tooth"", 1], [""Defiant Scarf"", 1], [""Azure Cermet"", 3]]","[[""Pinga Pants +1"", 1], null, null]"
-Amateur,115,[],Ratri Cuisses,Fire,Alchemist's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Cehuetzi Claw"", 1], [""Macuil Plating"", 1], [""Azure Cermet"", 3]]","[[""Ratri Cuisses +1"", 1], null, null]"
-Amateur,115,[],Pinga Tunic,Fire,Alchemist's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Rockfin Tooth"", 1], [""Defiant Scarf"", 2], [""Azure Cermet"", 3]]","[[""Pinga Tunic +1"", 1], null, null]"
-Amateur,115,[],Ratri Breastplate,Fire,Alchemist's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Cehuetzi Claw"", 1], [""Macuil Plating"", 2], [""Azure Cermet"", 3]]","[[""Ratri Breastplate +1"", 1], null, null]"
-Amateur,115,[],Raetic Algol,Fire,Alchemist's argentum tome,"[[""Azure Cermet"", 1], [""Rune Algol"", 1]]","[[""Raetic Algol +1"", 1], null, null]"
-Amateur,118,[],Chirich Ring,Fire,,"[[""Plovid Effluvium"", 1], [""Macuil Plating"", 1], [""Defiant Sweat"", 1], [""Dark Matter"", 1]]","[[""Chirich Ring +1"", 1], null, null]"
+,1,[],Orchestrion,Earth,,"[[""Copy of Melodious Plans"", 1], [""Timbre Case Kit"", 1], [""Musichinery Kit"", 1]]","[null, null, null]"
+,1,[],Frosty Cap,Earth,,"[[""Brilliant Snow"", 1], [""Snowman Cap"", 1]]","[null, null, null]"
+,1,[],Celestial Globe,Earth,,"[[""Comet Fragment"", 1], [""Puny Planet Kit"", 1], [""Cosmic Designs"", 1]]","[null, null, null]"
+,2,[],Distilled WaterVerification Needed,Lightning,,"[[""Tahrongi Cactus"", 1]]","[[""Distilled Water"", 6], [""Distilled Water"", 9], [""Distilled Water"", 12]]"
+,1,[],M. Counteragent,Water,Miasmal counteragent recipe,"[[""Seashell"", 1], [""Salinator"", 1], [""Distilled Water"", 2]]","[[""M. Counteragent"", 3], [""M. Counteragent"", 4], null]"
+,3,[],Antidote,Water,,"[[""Distilled Water"", 1], [""San d'Orian Grape"", 1], [""Wijnruit"", 1]]","[[""Antidote"", 2], [""Antidote"", 3], [""Antidote"", 4]]"
+,3,[],Antidote,Water,Trituration,"[[""Distilled Water"", 1], [""San d'Orian Grape"", 3], [""Wijnruit"", 3], [""Triturator"", 1]]","[[""Antidote"", 6], [""Antidote"", 9], [""Antidote"", 12]]"
+,4,[],Black Ink,Dark,,"[[""Nebimonite"", 1], [""Distilled Water"", 1], [""Windurstian Tea Leaves"", 2]]","[[""Black Ink"", 4], [""Black Ink"", 6], [""Black Ink"", 8]]"
+,4,[],Black Ink,Dark,,"[[""Nebimonite"", 1], [""Distilled Water"", 1], [""Willow Log"", 1]]","[[""Black Ink"", 2], [""Black Ink"", 4], [""Black Ink"", 6]]"
+,4,[],Black Ink,Dark,,"[[""Cone Calamary"", 2], [""Distilled Water"", 1], [""Willow Log"", 1]]","[[""Black Ink"", 4], [""Black Ink"", 6], [""Black Ink"", 8]]"
+,4,[],Black Ink,Dark,,"[[""Cone Calamary"", 2], [""Distilled Water"", 1], [""Windurstian Tea Leaves"", 1]]","[[""Black Ink"", 4], [""Black Ink"", 6], [""Black Ink"", 8]]"
+,4,[],Black Ink,Dark,,"[[""Kalamar"", 2], [""Distilled Water"", 1], [""Imperial Tea Leaves"", 1]]","[[""Black Ink"", 4], [""Black Ink"", 6], [""Black Ink"", 8]]"
+,4,[],Black Ink,Dark,,"[[""Kalamar"", 2], [""Distilled Water"", 1], [""Willow Log"", 1]]","[[""Black Ink"", 4], [""Black Ink"", 6], [""Black Ink"", 8]]"
+,5,[],Beeswax,Fire,,"[[""Beehive Chip"", 3], [""Distilled Water"", 1]]","[[""Beeswax"", 2], [""Beeswax"", 3], [""Beeswax"", 4]]"
+,5,[],Beeswax,Fire,Trituration,"[[""Beehive Chip"", 6], [""Distilled Water"", 1], [""Triturator"", 1]]","[[""Beeswax"", 4], [""Beeswax"", 6], [""Beeswax"", 8]]"
+,5,[],Beeswax,Fire,,"[[""Distilled Water"", 1], [""Pephredo Hive Chip"", 2]]","[[""Beeswax"", 3], [""Beeswax"", 4], [""Beeswax"", 5]]"
+,5,[],Beeswax,Fire,Trituration,"[[""Distilled Water"", 1], [""Pephredo Hive Chip"", 4], [""Triturator"", 1]]","[[""Beeswax"", 6], [""Beeswax"", 8], [""Beeswax"", 10]]"
+,5,[],Black Ink,Dark,,"[[""Grimmonite"", 1], [""Distilled Water"", 1], [""Windurstian Tea Leaves"", 2]]","[[""Black Ink"", 4], [""Black Ink"", 6], [""Black Ink"", 8]]"
+,5,[],Black Ink,Dark,,"[[""Ahtapot"", 1], [""Distilled Water"", 1], [""Imperial Tea Leaves"", 2]]","[[""Black Ink"", 4], [""Black Ink"", 6], [""Black Ink"", 8]]"
+,5,[],Black Ink,Dark,,"[[""Alchemy Kit 5"", 1]]","[null, null, null]"
+,5,[],Enchanted Ink,Dark,,"[[""Black Ink"", 1], [""Magicked Blood"", 1]]","[null, null, null]"
+,6,[],Tsurara,Ice,,"[[""Distilled Water"", 2], [""Rock Salt"", 1]]","[[""Tsurara"", 20], [""Tsurara"", 50], [""Tsurara"", 99]]"
+,6,"[[""Leathercraft"", 1]]",Water Tank,Earth,,"[[""Brass Tank"", 1], [""Sheep Leather"", 1], [""Water Cluster"", 1]]","[null, null, null]"
+,6,"[[""Leathercraft"", 1]]",Water Tank,Earth,,"[[""Brass Tank"", 1], [""Karakul Leather"", 1], [""Water Cluster"", 1]]","[null, null, null]"
+,7,[],Animal Glue,Fire,,"[[""Bone Chip"", 2], [""Distilled Water"", 1], [""Rabbit Hide"", 1]]","[[""Animal Glue"", 2], [""Animal Glue"", 3], [""Animal Glue"", 4]]"
+,7,[],Animal Glue,Fire,Trituration,"[[""Bone Chip"", 4], [""Distilled Water"", 1], [""Rabbit Hide"", 2], [""Triturator"", 1]]","[[""Animal Glue"", 4], [""Animal Glue"", 6], [""Animal Glue"", 8]]"
+,7,[],Silencing Potion,Water,,"[[""Kazham Peppers"", 1], [""Scream Fungus"", 1], [""Two-Leaf Mandragora Bud"", 1]]","[[""Silencing Potion"", 2], [""Silencing Potion"", 3], [""Silencing Potion"", 4]]"
+,7,[],Muting Potion,Water,Alchemic Ensorcellment,"[[""Dark Anima"", 1], [""Kazham Peppers"", 1], [""Scream Fungus"", 1], [""Two-Leaf Mandragora Bud"", 1], [""Water Anima"", 1], [""Wind Anima"", 1]]","[[""Muting Potion"", 2], [""Muting Potion"", 3], [""Muting Potion"", 4]]"
+,8,[],Silencing Potion,Water,,"[[""Kazham Peppers"", 1], [""Scream Fungus"", 1], [""Lycopodium Flower"", 1]]","[[""Silencing Potion"", 2], [""Silencing Potion"", 3], [""Silencing Potion"", 4]]"
+,8,[],Silencing Potion,Lightning,,"[[""Distilled Water"", 1], [""Sobbing Fungus"", 2]]","[[""Silencing Potion"", 2], [""Silencing Potion"", 3], [""Silencing Potion"", 4]]"
+,8,[],Muting Potion,Lightning,Alchemic Ensorcellment,"[[""Dark Anima"", 1], [""Distilled Water"", 1], [""Sobbing Fungus"", 2], [""Water Anima"", 1], [""Wind Anima"", 1]]","[[""Muting Potion"", 2], [""Muting Potion"", 3], [""Muting Potion"", 4]]"
+,8,[],Silencing Potion,Lightning,,"[[""Cobalt Jellyfish"", 1], [""Mercury"", 1]]","[[""Silencing Potion"", 4], [""Silencing Potion"", 6], [""Silencing Potion"", 8]]"
+,8,[],Silencing Potion,Lightning,,"[[""Denizanasi"", 1], [""Mercury"", 1]]","[[""Silencing Potion"", 4], [""Silencing Potion"", 6], [""Silencing Potion"", 8]]"
+,9,[],Wax Sword,Water,,"[[""Beeswax"", 1], [""Bronze Sword"", 1]]","[[""Wax Sword +1"", 1], null, null]"
+,8,[],Enfeeblement Kit of Silence,Earth,,"[[""Padded Box"", 1], [""Fine Parchment"", 2], [""Enchanted Ink"", 2], [""Silencing Potion"", 1]]","[null, null, null]"
+,8,[],Enfeeblement Kit of Sleep,Earth,,"[[""Padded Box"", 1], [""Fine Parchment"", 2], [""Enchanted Ink"", 2], [""Sleeping Potion"", 1]]","[null, null, null]"
+,8,[],Enfeeblement Kit of Poison,Earth,,"[[""Padded Box"", 1], [""Fine Parchment"", 2], [""Enchanted Ink"", 2], [""Poison Potion"", 1]]","[null, null, null]"
+,8,[],Enfeeblement Kit of Blindness,Earth,,"[[""Padded Box"", 1], [""Fine Parchment"", 2], [""Enchanted Ink"", 2], [""Blinding Potion"", 1]]","[null, null, null]"
+,9,[],Cornstarch,Lightning,,"[[""Millioncorn"", 2]]","[[""Cornstarch"", 2], [""Cornstarch"", 3], [""Cornstarch"", 4]]"
+,9,[],Poison Dust,Lightning,,"[[""Deathball"", 2]]","[[""Poison Dust"", 2], [""Poison Dust"", 3], [""Poison Dust"", 4]]"
+,10,[],Deodorizer,Wind,,"[[""Chamomile"", 1], [""Olive Oil"", 1], [""Sage"", 1]]","[[""Deodorizer"", 2], [""Deodorizer"", 3], [""Deodorizer"", 4]]"
+,10,[],Deodorizer,Wind,Trituration,"[[""Chamomile"", 2], [""Olive Oil"", 2], [""Sage"", 2], [""Triturator"", 1]]","[[""Deodorizer"", 4], [""Deodorizer"", 6], [""Deodorizer"", 8]]"
+,10,[],Black Ink,Dark,,"[[""Distilled Water"", 1], [""Gigant Squid"", 1], [""Windurstian Tea Leaves"", 2]]","[[""Black Ink"", 8], [""Black Ink"", 10], [""Black Ink"", 12]]"
+,10,[],Deodorizer,Wind,,"[[""Alchemy Kit 10"", 1]]","[null, null, null]"
+,11,[],Coffee Beans,Wind,,"[[""Coffee Cherries"", 1]]","[null, null, null]"
+,11,[],Copper Nugget,Fire,,"[[""Meteorite"", 1], [""Panacea"", 1]]","[[""Iron Nugget"", 9], [""Silver Nugget"", 6], [""Gold Nugget"", 3]]"
+,11,[],Poison Dust,Lightning,,"[[""Giant Stinger"", 2]]","[[""Poison Dust"", 2], [""Poison Dust"", 3], [""Poison Dust"", 4]]"
+,12,[],Poison Dust,Lightning,,"[[""Yellow Globe"", 2]]","[[""Poison Dust"", 2], [""Poison Dust"", 3], [""Poison Dust"", 4]]"
+,13,[],Silence Dagger,Water,,"[[""Animal Glue"", 1], [""Brass Dagger"", 1], [""Silencing Potion"", 1]]","[null, null, null]"
+,13,[],Miracle Mulch,Dark,,"[[""Dung"", 1], [""Chocobo Bedding"", 1]]","[[""Miracle Mulch"", 4], [""Miracle Mulch"", 6], [""Miracle Mulch"", 8]]"
+,14,[],Bee Spatha,Water,,"[[""Beeswax"", 2], [""Spatha"", 1]]","[null, null, null]"
+,14,[],Movalpolos Water,Wind,,"[[""Carbon Dioxide"", 1], [""Distilled Water"", 4]]","[[""Movalpolos Water"", 2], [""Movalpolos Water"", 3], [""Movalpolos Water"", 4]]"
+,15,[],Cracker,Earth,,"[[""Bast Parchment"", 2], [""Firesand"", 1]]","[[""Cracker"", 66], [""Cracker"", 99], [""Cracker"", 99]]"
+,15,[],Chocotonic,Water,,"[[""Attohwa Ginseng"", 1], [""Distilled Water"", 1], [""Gysahl Greens"", 1]]","[[""Chocotonic"", 6], [""Chocotonic"", 9], [""Chocotonic"", 12]]"
+,15,[],Gysahl Bomb,Earth,,"[[""Bast Parchment"", 1], [""Firesand"", 1], [""Gysahl Greens"", 1]]","[[""Gysahl Bomb"", 6], [""Gysahl Bomb"", 9], [""Gysahl Bomb"", 12]]"
+,15,[],Spore Bomb,Earth,,"[[""Bast Parchment"", 1], [""Firesand"", 1], [""Danceshroom"", 1]]","[[""Spore Bomb"", 6], [""Spore Bomb"", 9], [""Spore Bomb"", 12]]"
+,15,[],Cracker,Earth,,"[[""Alchemy Kit 15"", 1]]","[null, null, null]"
+,16,[],Mercury,Lightning,,"[[""Cobalt Jellyfish"", 4]]","[[""Mercury"", 2], [""Mercury"", 3], [""Mercury"", 4]]"
+,17,[],Hushed Dagger,Water,,"[[""Animal Glue"", 1], [""Muting Potion"", 1], [""Silence Dagger"", 1]]","[null, null, null]"
+,17,[],Mercury,Lightning,,"[[""Denizanasi"", 4]]","[[""Mercury"", 2], [""Mercury"", 3], [""Mercury"", 4]]"
+,17,[],Silence Baghnakhs,Water,,"[[""Animal Glue"", 1], [""Brass Baghnakhs"", 1], [""Silencing Potion"", 1]]","[[""Silence Baghnakhs +1"", 1], null, null]"
+,17,[],Fire Card,Light,,"[[""Fire Cluster"", 1], [""Mercury"", 1], [""Polyflan Paper"", 1]]","[[""Fire Card"", 66], [""Fire Card"", 99], [""Fire Card"", 99]]"
+,17,[],Ice Card,Light,,"[[""Ice Cluster"", 1], [""Mercury"", 1], [""Polyflan Paper"", 1]]","[[""Ice Card"", 66], [""Ice Card"", 99], [""Ice Card"", 99]]"
+,17,[],Wind Card,Light,,"[[""Wind Cluster"", 1], [""Mercury"", 1], [""Polyflan Paper"", 1]]","[[""Wind Card"", 66], [""Wind Card"", 99], [""Wind Card"", 99]]"
+,17,[],Earth Card,Light,,"[[""Earth Cluster"", 1], [""Mercury"", 1], [""Polyflan Paper"", 1]]","[[""Earth Card"", 66], [""Earth Card"", 99], [""Earth Card"", 99]]"
+,17,[],Thunder Card,Light,,"[[""Lightning Cluster"", 1], [""Mercury"", 1], [""Polyflan Paper"", 1]]","[[""Thunder Card"", 66], [""Thunder Card"", 99], [""Thunder Card"", 99]]"
+,17,[],Water Card,Light,,"[[""Water Cluster"", 1], [""Mercury"", 1], [""Polyflan Paper"", 1]]","[[""Water Card"", 66], [""Water Card"", 99], [""Water Card"", 99]]"
+,17,[],Light Card,Light,,"[[""Light Cluster"", 1], [""Mercury"", 1], [""Polyflan Paper"", 1]]","[[""Light Card"", 66], [""Light Card"", 99], [""Light Card"", 99]]"
+,17,[],Dark Card,Light,,"[[""Dark Cluster"", 1], [""Mercury"", 1], [""Polyflan Paper"", 1]]","[[""Dark Card"", 66], [""Dark Card"", 99], [""Dark Card"", 99]]"
+,18,[],Poison Potion,Water,,"[[""Mercury"", 1], [""Poison Dust"", 1]]","[null, null, null]"
+,18,[],Poison Potion,Water,Trituration,"[[""Mercury"", 3], [""Poison Dust"", 3], [""Triturator"", 1]]","[null, null, null]"
+,18,[],Matka,Fire,,"[[""Karugo Clay"", 5]]","[null, null, null]"
+,19,[],Kodoku,Dark,,"[[""Elshimo Frog"", 1], [""Lugworm"", 1], [""Shell Bug"", 1]]","[[""Kodoku"", 66], [""Kodoku"", 99], [""Kodoku"", 99]]"
+,19,[],Coffee Powder,Wind,,"[[""Roast Coffee Beans"", 1]]","[[""Coffee Powder"", 2], [""Coffee Powder"", 3], [""Coffee Powder"", 4]]"
+,19,[],Kodoku,Dark,,"[[""Caedarva Frog"", 1], [""Lugworm"", 1], [""Shell Bug"", 1]]","[[""Kodoku"", 66], [""Kodoku"", 99], [""Kodoku"", 99]]"
+,20,[],Echo Drops,Water,,"[[""Distilled Water"", 1], [""Honey"", 1], [""Sage"", 1]]","[[""Echo Drops"", 2], [""Echo Drops"", 3], [""Echo Drops"", 4]]"
+,20,[],Echo Drops,Water,Trituration,"[[""Distilled Water"", 1], [""Honey"", 3], [""Sage"", 3], [""Triturator"", 1]]","[[""Echo Drops"", 6], [""Echo Drops"", 9], [""Echo Drops"", 12]]"
+,20,[],Hushed Baghnakhs,Water,,"[[""Animal Glue"", 1], [""Muting Potion"", 1], [""Silence Baghnakhs"", 1]]","[null, null, null]"
+,20,[],Bittern,Fire,,"[[""Distilled Water"", 1], [""Salinator"", 1]]","[[""Bittern"", 8], [""Bittern"", 10], [""Bittern"", 12]]"
+,20,[],Hushed Baghnakhs,Water,,"[[""Alchemy Kit 20"", 1]]","[null, null, null]"
+,21,"[[""Smithing"", 20]]",Poison Arrowheads,Wind,,"[[""Animal Glue"", 1], [""Copper Ingot"", 1], [""Iron Ingot"", 1], [""Poison Potion"", 1]]","[[""Poison Arrowheads"", 8], [""Poison Arrowheads"", 10], [""Poison Arrowheads"", 12]]"
+,21,[],Glass Fiber,Lightning,,"[[""Goblin Mask"", 1]]","[[""Glass Fiber"", 4], [""Glass Fiber"", 6], [""Glass Fiber"", 8]]"
+,21,[],Carbon Dioxide,Fire,,"[[""Trumpet Shell"", 1]]","[[""Carbon Dioxide"", 8], [""Carbon Dioxide"", 10], [""Carbon Dioxide"", 12]]"
+,22,[],Poison Dagger,Water,,"[[""Animal Glue"", 1], [""Dagger"", 1], [""Poison Potion"", 1]]","[null, null, null]"
+,22,[],Baking Soda,Lightning,,"[[""Movalpolos Water"", 1], [""Rock Salt"", 1]]","[[""Baking Soda"", 8], [""Baking Soda"", 10], [""Baking Soda"", 12]]"
+,23,[],Poison Knife,Water,,"[[""Animal Glue"", 1], [""Knife"", 1], [""Poison Potion"", 1]]","[null, null, null]"
+,23,[],Mokuto,Water,,"[[""Animal Glue"", 1], [""Shinobi-Gatana"", 1], [""Silencing Potion"", 1]]","[null, null, null]"
+,24,[],Silent Oil,Water,,"[[""Beeswax"", 2], [""Slime Oil"", 1]]","[[""Silent Oil"", 8], [""Silent Oil"", 10], [""Silent Oil"", 12]]"
+,24,[],Vermilion Lacquer,Fire,,"[[""Mercury"", 1], [""Sulfur"", 1]]","[null, null, null]"
+,25,[],Ethereal Vermilion Lacquer,Fire,Alchemic Ensorcellment,"[[""Mercury"", 1], [""Sulfur"", 1], [""Light Anima"", 1], [""Lightning Anima"", 1], [""Water Anima"", 1]]","[null, null, null]"
+,25,[],Glass Fiber Fishing Rod,Light,,"[[""Broken Glass Fiber Fishing Rod"", 1]]","[null, null, null]"
+,25,[],Poison Baselard,Water,,"[[""Animal Glue"", 1], [""Baselard"", 1], [""Poison Potion"", 1]]","[[""Python Baselard"", 1], null, null]"
+,25,[],Twinkle Shower,Earth,,"[[""Bast Parchment"", 1], [""Firesand"", 1], [""Twinkle Powder"", 1]]","[[""Twinkle Shower"", 66], [""Twinkle Shower"", 99], [""Twinkle Shower"", 99]]"
+,25,[],Poison Baselard,Water,,"[[""Alchemy Kit 25"", 1]]","[null, null, null]"
+,25,[],Bathtub,Fire,,"[[""Angelstone"", 1], [""Marble Slab"", 1], [""Sieglinde Putty"", 1], [""Kaolin"", 2], [""White Textile Dye"", 1]]","[null, null, null]"
+,26,"[[""Goldsmithing"", 10]]",Minnow,Fire,,"[[""Brass Ingot"", 1], [""Glass Fiber"", 1]]","[[""Sinking Minnow"", 1], null, null]"
+,26,[],Seito,Water,,"[[""Animal Glue"", 1], [""Mokuto"", 1], [""Muting Potion"", 1]]","[null, null, null]"
+,26,"[[""Goldsmithing"", 6]]",Copper Bullet,Fire,,"[[""Copper Ingot"", 1], [""Firesand"", 1]]","[[""Copper Bullet"", 99], null, null]"
+,27,[],Blinding Potion,Water,,"[[""Crying Mustard"", 1], [""Poison Flour"", 1], [""Sleepshroom"", 1]]","[[""Blinding Potion"", 2], [""Blinding Potion"", 3], [""Blinding Potion"", 4]]"
+,27,[],Blinding Potion,Water,Trituration,"[[""Crying Mustard"", 2], [""Poison Flour"", 2], [""Sleepshroom"", 2], [""Triturator"", 1]]","[[""Blinding Potion"", 4], [""Blinding Potion"", 6], [""Blinding Potion"", 8]]"
+,28,[],Blinding Potion,Lightning,,"[[""Mercury"", 1], [""Nebimonite"", 1]]","[[""Blinding Potion"", 4], [""Blinding Potion"", 6], [""Blinding Potion"", 8]]"
+,28,"[[""Cooking"", 11]]",Sairui-Ran,Earth,,"[[""Bast Parchment"", 1], [""Bird Egg"", 1], [""Bomb Ash"", 1], [""Kazham Peppers"", 1]]","[[""Sairui-Ran"", 66], [""Sairui-Ran"", 99], null]"
+,28,[],Automaton Oil,Water,,"[[""Olive Oil"", 1], [""Plasma Oil"", 1], [""Polyflan Paper"", 1]]","[[""Automaton Oil +1"", 6], [""Automaton Oil +2"", 6], [""Automaton Oil +3"", 6]]"
+,28,[],Pet Roborant,Water,,"[[""Boyahda Moss"", 1], [""Hecteyes Eye"", 1], [""Beast Blood"", 1], [""Scream Fungus"", 1], [""Ca Cuong"", 1]]","[[""Pet Roborant"", 66], [""Pet Roborant"", 66], [""Pet Roborant"", 99]]"
+,29,"[[""Cooking"", 11]]",Sairui-Ran,Earth,,"[[""Bast Parchment"", 1], [""Bird Egg"", 1], [""Djinn Ash"", 1], [""Kazham Peppers"", 1]]","[[""Sairui-Ran"", 66], [""Sairui-Ran"", 99], null]"
+,29,[],Silent Oil,Water,,"[[""Beeswax"", 2], [""Olive Oil"", 1]]","[[""Silent Oil"", 4], [""Silent Oil"", 6], [""Silent Oil"", 8]]"
+,29,[],Glass Fiber Fishing Rod,Fire,,"[[""Cotton Thread"", 1], [""Glass Fiber"", 4]]","[null, null, null]"
+,29,[],Glass Fiber,Lightning,,"[[""Moblin Mask"", 1]]","[[""Glass Fiber"", 4], [""Glass Fiber"", 6], [""Glass Fiber"", 8]]"
+,29,[],Blue Textile Dye,Water,,"[[""Dyer's Woad"", 1]]","[null, null, null]"
+,29,[],Green Textile Dye,Water,,"[[""Imperial Tea Leaves"", 1]]","[null, null, null]"
+,29,[],Yellow Textile Dye,Water,,"[[""Turmeric"", 1]]","[null, null, null]"
+,29,[],White Textile Dye,Water,,"[[""Baking Soda"", 1]]","[null, null, null]"
+,29,[],Red Textile Dye,Water,,"[[""Nopales"", 1]]","[null, null, null]"
+,30,[],Eye Drops,Water,,"[[""Ahriman Tears"", 1], [""Chamomile"", 1], [""Distilled Water"", 1]]","[[""Eye Drops"", 4], [""Eye Drops"", 6], [""Eye Drops"", 8]]"
+,30,[],Eye Drops,Water,Trituration,"[[""Ahriman Tears"", 2], [""Chamomile"", 2], [""Distilled Water"", 1], [""Triturator"", 1]]","[[""Eye Drops"", 8], [""Eye Drops"", 12], [""Eye Drops"", 12]]"
+,30,[],Sieglinde Putty,Earth,,"[[""Flaxseed Oil"", 2], [""Shell Powder"", 2], [""Zinc Oxide"", 1]]","[null, null, null]"
+,30,[],Sieglinde Putty,Earth,,"[[""Alchemy Kit 30"", 1]]","[null, null, null]"
+,31,"[[""Goldsmithing"", 14]]",Minnow,Fire,,"[[""Copper Ingot"", 1], [""Glass Fiber"", 1]]","[[""Sinking Minnow"", 1], null, null]"
+,31,"[[""Smithing"", 14]]",Blind Bolt Heads,Wind,,"[[""Animal Glue"", 1], [""Blinding Potion"", 1], [""Bronze Ingot"", 1]]","[[""Blind Bolt Heads"", 8], [""Blind Bolt Heads"", 10], [""Blind Bolt Heads"", 12]]"
+,31,[],Poison Kukri,Water,,"[[""Animal Glue"", 1], [""Kukri"", 1], [""Poison Potion"", 1]]","[[""Poison Kukri +1"", 1], null, null]"
+,32,[],Blind Dagger,Water,,"[[""Animal Glue"", 1], [""Bronze Dagger"", 1], [""Blinding Potion"", 1]]","[[""Blind Dagger +1"", 1], null, null]"
+,33,[],Busuto,Water,,"[[""Animal Glue"", 1], [""Shinobi-Gatana"", 1], [""Poison Potion"", 1]]","[[""Busuto +1"", 1], null, null]"
+,33,[],Poison Cesti,Water,,"[[""Animal Glue"", 1], [""Lizard Cesti"", 1], [""Poison Potion"", 1]]","[[""Poison Cesti +1"", 1], null, null]"
+,33,[],Moblin Putty,Earth,,"[[""Flaxseed Oil"", 2], [""Shell Powder"", 2], [""Zincite"", 3]]","[null, null, null]"
+,33,"[[""Bonecraft"", 27]]",Volant Serum,Water,,"[[""Bat Fang"", 2], [""Mercury"", 1]]","[[""Volant Serum"", 6], [""Volant Serum"", 9], [""Volant Serum"", 12]]"
+,34,[],Blind Knife,Water,,"[[""Animal Glue"", 1], [""Bronze Knife"", 1], [""Blinding Potion"", 1]]","[[""Blind Knife +1"", 1], null, null]"
+,34,[],Artificial Lens,Fire,,"[[""Glass Fiber"", 2]]","[null, null, null]"
+,35,[],Poison Baghnakhs,Water,,"[[""Animal Glue"", 1], [""Baghnakhs"", 1], [""Poison Potion"", 1]]","[[""Poison Baghnakhs +1"", 1], null, null]"
+,35,[],Little Comet,Earth,,"[[""Bast Parchment"", 2], [""Firesand"", 1], [""Rain Lily"", 1]]","[[""Little Comet"", 66], [""Little Comet"", 99], [""Little Comet"", 99]]"
+,35,[],Fire Fewell,Fire,,"[[""Slime Oil"", 1], [""Red Rock"", 1], [""Catalytic Oil"", 1]]","[[""Fire Fewell"", 6], [""Fire Fewell"", 9], [""Fire Fewell"", 12]]"
+,35,[],Ice Fewell,Ice,,"[[""Slime Oil"", 1], [""Translucent Rock"", 1], [""Catalytic Oil"", 1]]","[[""Ice Fewell"", 6], [""Ice Fewell"", 9], [""Ice Fewell"", 12]]"
+,35,[],Wind Fewell,Wind,,"[[""Slime Oil"", 1], [""Green Rock"", 1], [""Catalytic Oil"", 1]]","[[""Wind Fewell"", 6], [""Wind Fewell"", 9], [""Wind Fewell"", 12]]"
+,35,[],Earth Fewell,Earth,,"[[""Slime Oil"", 1], [""Yellow Rock"", 1], [""Catalytic Oil"", 1]]","[[""Earth Fewell"", 6], [""Earth Fewell"", 9], [""Earth Fewell"", 12]]"
+,35,[],Lightning Fewell,Lightning,,"[[""Slime Oil"", 1], [""Purple Rock"", 1], [""Catalytic Oil"", 1]]","[[""Lightning Fewell"", 6], [""Lightning Fewell"", 9], [""Lightning Fewell"", 12]]"
+,35,[],Water Fewell,Water,,"[[""Slime Oil"", 1], [""Blue Rock"", 1], [""Catalytic Oil"", 1]]","[[""Water Fewell"", 6], [""Water Fewell"", 9], [""Water Fewell"", 12]]"
+,35,[],Light Fewell,Light,,"[[""Slime Oil"", 1], [""White Rock"", 1], [""Catalytic Oil"", 1]]","[[""Light Fewell"", 6], [""Light Fewell"", 9], [""Light Fewell"", 12]]"
+,35,[],Dark Fewell,Dark,,"[[""Slime Oil"", 1], [""Black Rock"", 1], [""Catalytic Oil"", 1]]","[[""Dark Fewell"", 6], [""Dark Fewell"", 9], [""Dark Fewell"", 12]]"
+,35,[],Poison Baghnakhs,Water,,"[[""Alchemy Kit 35"", 1]]","[null, null, null]"
+,36,[],Prism Powder,Light,,"[[""Ahriman Lens"", 1], [""Glass Fiber"", 2]]","[[""Prism Powder"", 10], [""Prism Powder"", 11], [""Prism Powder"", 12]]"
+,36,[],Polyflan Paper,Earth,,"[[""Polyflan"", 1]]","[[""Polyflan Paper"", 66], [""Polyflan Paper"", 99], [""Polyflan Paper"", 99]]"
+,37,[],Jusatsu,Dark,,"[[""Bast Parchment"", 1], [""Beastman Blood"", 1], [""Black Ink"", 1]]","[[""Jusatsu"", 66], [""Jusatsu"", 99], [""Jusatsu"", 99]]"
+,38,[],Chimera Blood,Lightning,,"[[""Lesser Chigoe"", 1]]","[[""Chimera Blood"", 2], [""Chimera Blood x4 Verification Needed"", 1], [""Chimera Blood x4 Verification Needed"", 1]]"
+,38,[],Chimera Blood,Lightning,Trituration,"[[""Lesser Chigoe"", 3], [""Triturator"", 1]]","[[""Chimera Blood"", 6], [""Chimera Blood x9 Verification Needed"", 1], [""Chimera Blood x9 Verification Needed"", 1]]"
+,38,"[[""Smithing"", 13]]",Bronze Bullet,Fire,,"[[""Bronze Ingot"", 1], [""Firesand"", 1]]","[[""Bronze Bullet"", 99], null, null]"
+,38,"[[""Woodworking"", 31]]",Kongou Inaho,Earth,,"[[""Bamboo Stick"", 1], [""Copper Nugget"", 1], [""Firesand"", 1]]","[[""Kongou Inaho"", 99], [""Kongou Inaho"", 99], [""Kongou Inaho"", 99]]"
+,38,[],Poison Claws,Water,,"[[""Animal Glue"", 1], [""Claws"", 1], [""Poison Potion"", 1]]","[[""Poison Claws +1"", 1], null, null]"
+,38,[],Automaton Oil +1,Water,,"[[""Olive Oil"", 2], [""Plasma Oil"", 1], [""Polyflan Paper"", 1]]","[[""Automaton Oil +1"", 9], [""Automaton Oil +2 x9 Verification Needed"", 1], [""Automaton Oil +3 x9 Verification Needed"", 1]]"
+,39,[],Firesand,Earth,,"[[""Bomb Ash"", 2], [""Yuhtunga Sulfur"", 1]]","[[""Firesand"", 6], [""Firesand"", 9], [""Firesand"", 12]]"
+,39,[],Inferno Sword,Earth,,"[[""Firesand"", 1], [""Slime Oil"", 1], [""Two-Handed Sword"", 1]]","[[""Hellfire Sword"", 1], null, null]"
+,39,[],Living Key,Water,,"[[""Beeswax"", 1], [""Malboro Vine"", 1], [""Slime Oil"", 1]]","[[""Living Key"", 4], [""Living Key"", 6], [""Living Key"", 8]]"
+,39,[],Plasma Oil,Water,Iatrochemistry,"[[""Flan Meat"", 2], [""Mercury"", 1]]","[[""Plasma Oil"", 66], [""Plasma Oil"", 99], [""Plasma Oil"", 99]]"
+,39,[],Living Key,Water,,"[[""Beeswax"", 1], [""Rafflesia Vine"", 1], [""Slime Oil"", 1]]","[[""Living Key"", 6], [""Living Key"", 9], [""Living Key"", 12]]"
+,40,[],Firesand,Earth,,"[[""Bomb Ash"", 2], [""Sulfur"", 1]]","[[""Firesand"", 4], [""Firesand"", 6], [""Firesand"", 8]]"
+,40,[],Firesand,Earth,Trituration,"[[""Bomb Ash"", 4], [""Sulfur"", 2], [""Triturator"", 1]]","[[""Firesand"", 8], [""Firesand"", 12], [""Firesand"", 12]]"
+,40,[],Potion,Water,,"[[""Sage"", 1], [""Lizard Tail"", 1], [""Distilled Water"", 1]]","[[""Potion +1"", 1], [""Potion +2"", 1], [""Potion +3"", 1]]"
+,40,[],Potion Drop,Fire,Concoction,"[[""Sage"", 1], [""Lizard Tail"", 1], [""Distilled Water"", 1]]","[[""Potion Drop"", 2], [""Potion Drop"", 3], [""Potion Drop"", 4]]"
+,40,[],Brimsand,Earth,Alchemic Ensorcellment,"[[""Bomb Ash"", 2], [""Sulfur"", 1], [""Dark Anima"", 1], [""Fire Anima"", 1], [""Water Anima"", 1]]","[[""Brimsand"", 4], [""Brimsand"", 6], [""Brimsand"", 8]]"
+,40,[],Firesand,Earth,,"[[""Alchemy Kit 40"", 1]]","[null, null, null]"
+,41,"[[""Goldsmithing"", 18]]",Bullet,Fire,,"[[""Brass Ingot"", 1], [""Firesand"", 1]]","[[""Bullet"", 99], null, null]"
+,41,[],Prism Powder,Light,,"[[""Artificial Lens"", 1], [""Glass Fiber"", 2]]","[[""Prism Powder"", 8], [""Prism Powder"", 10], [""Prism Powder"", 12]]"
+,41,[],Prism Powder,Light,Trituration,"[[""Artificial Lens"", 2], [""Glass Fiber"", 4], [""Triturator"", 1]]","[null, null, null]"
+,41,[],Firesand,Earth,,"[[""Cluster Ash"", 1], [""Sulfur"", 1]]","[[""Firesand"", 4], [""Firesand"", 6], [""Firesand"", 8]]"
+,41,[],Brimsand,Earth,Alchemic Ensorcellment,"[[""Cluster Ash"", 1], [""Sulfur"", 1], [""Dark Anima"", 1], [""Fire Anima"", 1], [""Water Anima"", 1]]","[[""Brimsand"", 4], [""Brimsand"", 6], [""Brimsand"", 8]]"
+,42,[],Inferno Axe,Earth,,"[[""Butterfly Axe"", 1], [""Firesand"", 1], [""Slime Oil"", 1]]","[[""Hellfire Axe"", 1], null, null]"
+,42,[],Bokuto,Water,,"[[""Animal Glue"", 1], [""Blinding Potion"", 1], [""Shinobi-Gatana"", 1]]","[[""Bokuto +1"", 1], null, null]"
+,42,[],Prominence Sword,Earth,,"[[""Brimsand"", 1], [""Inferno Sword"", 1], [""Slime Oil"", 1]]","[null, null, null]"
+,42,[],Firesand,Earth,,"[[""Sulfur"", 1], [""Djinn Ash"", 1]]","[[""Firesand"", 8], [""Firesand"", 12], null]"
+,42,[],Vitriol,Water,,"[[""Dhalmel Saliva"", 1]]","[[""Vitriol"", 2], [""Vitriol"", 3], [""Vitriol"", 4]]"
+,43,[],Vitriol,Water,,"[[""Treant Bulb"", 2]]","[[""Vitriol"", 2], [""Vitriol"", 3], [""Vitriol"", 4]]"
+,43,[],Vitriol,Water,Trituration,"[[""Treant Bulb"", 6], [""Triturator"", 1]]","[[""Vitriol"", 6], [""Vitriol"", 9], [""Vitriol"", 12]]"
+,43,[],Invitriol,Water,Alchemic Ensorcellment,"[[""Treant Bulb"", 2], [""Dark Anima"", 1], [""Fire Anima"", 1], [""Water Anima"", 1]]","[[""Invitriol"", 2], [""Invitriol"", 3], [""Invitriol"", 4]]"
+,43,[],Poison Katars,Water,,"[[""Animal Glue"", 1], [""Katars"", 1], [""Poison Potion"", 1]]","[[""Poison Katars +1"", 1], null, null]"
+,43,"[[""Goldsmithing"", 19]]",Sparkling Hand,Light,,"[[""Silver Ingot"", 1], [""Parchment"", 1], [""Twinkle Powder"", 1], [""Prism Powder"", 1]]","[[""Sparkling Hand"", 66], [""Sparkling Hand"", 66], [""Sparkling Hand"", 99]]"
+,43,"[[""Smithing"", 16]]",Tin Bullet,Fire,,"[[""Tin Ingot"", 1], [""Firesand"", 1]]","[[""Tin Bullet"", 99], null, null]"
+,43,"[[""Bonecraft"", 27]]",Osseous Serum,Water,,"[[""Bone Chip"", 4], [""Mercury"", 1]]","[[""Osseous Serum"", 6], [""Osseous Serum"", 9], [""Osseous Serum"", 9]]"
+,43,[],Fictile Pot,Fire,,"[[""Holly Lumber"", 1], [""Kaolin"", 2]]","[null, null, null]"
+,44,"[[""Smithing"", 23]]",Fire Arrowheads,Fire,,"[[""Grass Cloth"", 1], [""Iron Ingot"", 1], [""Slime Oil"", 1]]","[[""Fire Arrowheads"", 8], [""Fire Arrowheads"", 10], [""Fire Arrowheads"", 12]]"
+,44,[],Flame Claymore,Earth,,"[[""Claymore"", 1], [""Iron Ingot"", 1], [""Slime Oil"", 1]]","[[""Burning Claymore"", 1], null, null]"
+,44,"[[""Leathercraft"", 1]]",Potion Tank,Earth,,"[[""Brass Tank"", 1], [""Potion"", 4], [""Sheep Leather"", 1]]","[null, null, null]"
+,44,"[[""Goldsmithing"", 4]]",Strobe,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Orobon Lure"", 1], [""Plasma Oil"", 1], [""Polyflan"", 1], [""Silver Sheet"", 1]]","[null, null, null]"
+,45,"[[""Smithing"", 14]]",Acid Bolt Heads,Wind,,"[[""Animal Glue"", 1], [""Bronze Ingot"", 1], [""Vitriol"", 1]]","[[""Acid Bolt Heads"", 8], [""Acid Bolt Heads"", 10], [""Acid Bolt Heads"", 12]]"
+,45,[],Carbon Fiber,Lightning,,"[[""Bomb Ash"", 4]]","[[""Carbon Fiber"", 6], [""Carbon Fiber"", 9], [""Carbon Fiber"", 12]]"
+,45,[],Acid Dagger,Water,,"[[""Animal Glue"", 1], [""Mythril Dagger"", 1], [""Vitriol"", 1]]","[[""Corrosive Dagger"", 1], null, null]"
+,45,[],Prominence Axe,Earth,,"[[""Brimsand"", 1], [""Inferno Axe"", 1], [""Slime Oil"", 1]]","[null, null, null]"
+,45,[],Iron Bullet,Fire,,"[[""Firesand"", 1], [""Iron Ingot"", 1]]","[[""Iron Bullet"", 99], null, null]"
+,45,[],Carbon Fiber,Lightning,,"[[""Alchemy Kit 45"", 1]]","[null, null, null]"
+,46,"[[""Goldsmithing"", 12]]",Worm Lure,Fire,,"[[""Brass Ingot"", 1], [""Glass Fiber"", 1], [""Little Worm"", 1]]","[null, null, null]"
+,46,[],Fire Sword,Earth,,"[[""Firesand"", 1], [""Iron Sword"", 1], [""Slime Oil"", 1]]","[[""Flame Sword"", 1], null, null]"
+,46,[],Carbon Fiber,Lightning,,"[[""Bomb Ash"", 1], [""Cluster Ash"", 1]]","[[""Carbon Fiber"", 6], [""Carbon Fiber"", 9], [""Carbon Fiber"", 12]]"
+,46,"[[""Goldsmithing"", 25]]",Stabilizer,Fire,Iatrochemistry,"[[""Black Ghost"", 1], [""Ebonite"", 1], [""Mythril Sheet"", 1], [""Sieglinde Putty"", 1], [""Water Tank"", 1]]","[null, null, null]"
+,46,"[[""Smithing"", 9]]",Worm Lure,Fire,,"[[""Animal Glue"", 1], [""Glass Fiber"", 1], [""Iron Ingot"", 1]]","[[""Frog Lure"", 1], [""Shrimp Lure"", 1], [""Lizard Lure"", 1]]"
+,47,"[[""Goldsmithing"", 12]]",Frog Lure,Fire,,"[[""Brass Ingot"", 1], [""Copper Frog"", 1], [""Glass Fiber"", 1]]","[null, null, null]"
+,47,[],Flame Degen,Earth,,"[[""Degen"", 1], [""Firesand"", 1], [""Slime Oil"", 1]]","[[""Flame Degen +1"", 1], null, null]"
+,47,[],Acid Knife,Water,,"[[""Animal Glue"", 1], [""Mythril Knife"", 1], [""Vitriol"", 1]]","[[""Corrosive Knife"", 1], null, null]"
+,47,[],Vulcan Claymore,Earth,,"[[""Brimsand"", 1], [""Flame Claymore"", 1], [""Slime Oil"", 1]]","[null, null, null]"
+,47,[],Carbon Fiber,Lightning,,"[[""Djinn Ash"", 1]]","[[""Carbon Fiber"", 6], [""Carbon Fiber"", 9], [""Carbon Fiber"", 12]]"
+,48,[],Melt Dagger,Water,,"[[""Acid Dagger"", 1], [""Invitriol"", 1]]","[null, null, null]"
+,48,"[[""Goldsmithing"", 21]]",Shrimp Lure,Fire,,"[[""Crayfish"", 1], [""Glass Fiber"", 1], [""Silver Ingot"", 1]]","[null, null, null]"
+,48,"[[""Smithing"", 12], [""Woodworking"", 8]]",Fire Arrow,Wind,,"[[""Ash Lumber"", 1], [""Bird Feather"", 2], [""Grass Cloth"", 1], [""Iron Ingot"", 1], [""Slime Oil"", 1]]","[[""Fire Arrow"", 66], [""Fire Arrow"", 99], [""Fire Arrow"", 99]]"
+,48,[],Flashbulb,Fire,Iatrochemistry,"[[""Glass Fiber"", 1], [""Glass Sheet"", 1], [""Lamp Marimo"", 1], [""Sieglinde Putty"", 1], [""Water Tank"", 1]]","[null, null, null]"
+,48,"[[""Bonecraft"", 22]]",Loudspeaker,Fire,Iatrochemistry,"[[""Baking Soda"", 1], [""Colibri Beak"", 1], [""Glass Sheet"", 1], [""Treant Bulb"", 1], [""Water Tank"", 1]]","[null, null, null]"
+,48,"[[""Smithing"", 30]]",Steel Bullet,Fire,,"[[""Firesand"", 1], [""Steel Ingot"", 1]]","[[""Steel Bullet"", 99], null, null]"
+,48,"[[""Clothcraft"", 33]]",Spectral Serum,Water,,"[[""Luminicloth"", 2], [""Mercury"", 1]]","[[""Spectral Serum"", 6], [""Spectral Serum"", 9], [""Spectral Serum"", 12]]"
+,48,[],Automaton Oil +2,Water,,"[[""Olive Oil"", 3], [""Plasma Oil"", 1], [""Polyflan Paper"", 1]]","[[""Automaton Oil +2"", 9], [""Automaton Oil +2"", 12], [""Automaton Oil +3 x12 Verification Needed"", 1]]"
+,49,[],Carbon Fishing Rod,Light,,"[[""Broken Carbon Rod"", 1]]","[null, null, null]"
+,49,[],Flame Blade,Earth,,"[[""Falchion"", 1], [""Firesand"", 1], [""Slime Oil"", 1]]","[[""Flame Blade +1"", 1], null, null]"
+,49,[],Vulcan Sword,Earth,,"[[""Brimsand"", 1], [""Fire Sword"", 1], [""Slime Oil"", 1]]","[null, null, null]"
+,49,"[[""Goldsmithing"", 6]]",Mana Converter,Earth,Iatrochemistry,"[[""Mercury"", 1], [""Coeurl Whisker"", 1], [""Brass Tank"", 2], [""Imperial Cermet"", 1]]","[null, null, null]"
+,49,"[[""Goldsmithing"", 3]]",Mana Booster,Earth,Iatrochemistry,"[[""Brass Tank"", 1], [""Fiend Blood"", 1], [""Imperial Cermet"", 1], [""Mana Wand"", 1], [""Mercury"", 1]]","[null, null, null]"
+,49,"[[""Goldsmithing"", 4]]",Strobe II,Fire,Iatrochemistry,"[[""Gold Sheet"", 1], [""Orobon Lure"", 1], [""Polyflan"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
+,50,[],Melt Knife,Water,,"[[""Acid Knife"", 1], [""Invitriol"", 1]]","[null, null, null]"
+,50,[],Ether,Water,,"[[""Bat Wing"", 2], [""Distilled Water"", 1], [""Dried Marjoram"", 1], [""Dryad Root"", 1]]","[[""Ether +1"", 1], [""Ether +2"", 1], [""Ether +3"", 1]]"
+,50,[],Vulcan Degen,Earth,,"[[""Brimsand"", 1], [""Flame Degen"", 1], [""Slime Oil"", 1]]","[null, null, null]"
+,50,[],Ether Drop,Fire,Concoction,"[[""Bat Wing"", 2], [""Distilled Water"", 1], [""Dried Marjoram"", 1], [""Dryad Root"", 1]]","[[""Ether Drop"", 2], [""Ether Drop"", 3], [""Ether Drop"", 4]]"
+,50,[],Kabenro,Earth,,"[[""Beeswax"", 1], [""Water Lily"", 2]]","[[""Kabenro"", 66], [""Kabenro"", 66], [""Kabenro"", 99]]"
+,50,[],Ether,Water,,"[[""Alchemy Kit 50"", 1]]","[null, null, null]"
+,51,[],Holy Water,Light,,"[[""Distilled Water"", 1]]","[[""Holy Water"", 2], [""Holy Water"", 3], [""Holy Water"", 4]]"
+,51,[],Holy Water,Light,Trituration,"[[""Distilled Water"", 3], [""Triturator"", 1]]","[[""Holy Water"", 6], [""Holy Water"", 9], [""Holy Water"", 12]]"
+,51,[],Hallowed Water,Light,Alchemic Purification,"[[""Distilled Water"", 1], [""Fire Anima"", 1], [""Ice Anima"", 1], [""Light Anima"", 1]]","[[""Hallowed Water"", 2], [""Hallowed Water"", 3], [""Hallowed Water"", 4]]"
+,51,[],Acid Claws,Water,,"[[""Animal Glue"", 1], [""Mythril Claws"", 1], [""Vitriol"", 1]]","[[""Corrosive Claws"", 1], null, null]"
+,52,"[[""Goldsmithing"", 24]]",Silver Bullet,Fire,,"[[""Firesand"", 1], [""Silver Ingot"", 1]]","[[""Silver Bullet"", 99], null, null]"
+,52,[],Blessed Mythril Sheet,Light,,"[[""Holy Water"", 1], [""Mythril Sheet"", 1]]","[null, null, null]"
+,52,[],Vulcan Blade,Fire,,"[[""Brimsand"", 1], [""Flame Blade"", 1], [""Slime Oil"", 1]]","[null, null, null]"
+,52,[],Ranka,Earth,,"[[""Queen Of The Night"", 2]]","[[""Ranka"", 66], [""Ranka"", 66], [""Ranka"", 99]]"
+,53,"[[""Smithing"", 14]]",Holy Bolt Heads,Wind,,"[[""Bronze Ingot"", 1], [""Holy Water"", 2]]","[[""Holy Bolt Heads"", 8], [""Holy Bolt Heads"", 10], [""Holy Bolt Heads"", 12]]"
+,53,"[[""Smithing"", 24], [""Woodworking"", 3]]",Grenade,Earth,,"[[""Ash Lumber"", 1], [""Bomb Ash"", 1], [""Firesand"", 1], [""Iron Ingot"", 1], [""Yuhtunga Sulfur"", 1]]","[[""Grenade"", 6], [""Grenade"", 9], [""Grenade"", 12]]"
+,53,"[[""Smithing"", 24], [""Woodworking"", 3]]",Grenade,Earth,,"[[""Ash Lumber"", 1], [""Bomb Ash"", 1], [""Firesand"", 1], [""Iron Ingot"", 1], [""Sulfur"", 1]]","[[""Grenade"", 6], [""Grenade"", 9], [""Grenade"", 12]]"
+,53,[],Carbon Fishing Rod,Fire,,"[[""Carbon Fiber"", 4], [""Glass Fiber"", 1]]","[null, null, null]"
+,54,[],Melt Claws,Water,,"[[""Acid Claws"", 1], [""Invitriol"", 1]]","[null, null, null]"
+,54,[],Holy Sword,Light,,"[[""Holy Water"", 1], [""Mythril Sword"", 1]]","[[""Holy Sword +1"", 1], null, null]"
+,54,[],Popstar,Light,,"[[""Bast Parchment"", 1], [""Firesand"", 1], [""Prism Powder"", 1], [""Twinkle Powder"", 2]]","[[""Popstar"", 66], [""Popstar"", 99], [""Popstar"", 99]]"
+,54,"[[""Leathercraft"", 1]]",Ether Tank,Earth,,"[[""Brass Tank"", 1], [""Ether"", 4], [""Sheep Leather"", 1]]","[null, null, null]"
+,54,"[[""Smithing"", 24], [""Woodworking"", 3]]",Grenade,Earth,,"[[""Ash Lumber"", 1], [""Cluster Ash"", 1], [""Firesand"", 2], [""Iron Ingot"", 1]]","[[""Grenade"", 6], [""Grenade"", 9], [""Grenade"", 12]]"
+,54,[],Arcanic Cell,Fire,Iatrochemistry,"[[""Mercury"", 1], [""Carbon Fiber"", 1], [""Light Anima"", 1], [""Plasma Oil"", 1], [""Glass Sheet"", 1]]","[null, null, null]"
+,55,[],Holy Mace,Light,,"[[""Holy Water"", 1], [""Mythril Mace"", 1]]","[[""Holy Mace +1"", 1], null, null]"
+,55,[],Yoto,Water,,"[[""Animal Glue"", 1], [""Shinobi-Gatana"", 1], [""Vitriol"", 1]]","[[""Yoto +1"", 1], null, null]"
+,55,[],Inhibitor,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Hecteyes Eye"", 1], [""Homunculus Nerves"", 1], [""Fire Anima"", 1], [""Plasma Oil"", 1]]","[null, null, null]"
+,55,[],Scanner,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Hecteyes Eye"", 1], [""Homunculus Nerves"", 1], [""Ice Anima"", 1], [""Plasma Oil"", 1]]","[null, null, null]"
+,55,[],Pattern Reader,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Hecteyes Eye"", 1], [""Homunculus Nerves"", 1], [""Wind Anima"", 1], [""Plasma Oil"", 1]]","[null, null, null]"
+,55,[],Analyzer,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Hecteyes Eye"", 1], [""Homunculus Nerves"", 1], [""Earth Anima"", 1], [""Plasma Oil"", 1]]","[null, null, null]"
+,55,[],Heat Seeker,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Hecteyes Eye"", 1], [""Homunculus Nerves"", 1], [""Lightning Anima"", 1], [""Plasma Oil"", 1]]","[null, null, null]"
+,55,[],Stealth Screen,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Hecteyes Eye"", 1], [""Homunculus Nerves"", 1], [""Water Anima"", 1], [""Plasma Oil"", 1]]","[null, null, null]"
+,55,[],Damage Gauge,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Hecteyes Eye"", 1], [""Homunculus Nerves"", 1], [""Light Anima"", 1], [""Plasma Oil"", 1]]","[null, null, null]"
+,55,[],Mana Conserver,Fire,Iatrochemistry,"[[""Glass Sheet"", 1], [""Hecteyes Eye"", 1], [""Homunculus Nerves"", 1], [""Dark Anima"", 1], [""Plasma Oil"", 1]]","[null, null, null]"
+,55,[],Yoto,Water,,"[[""Alchemy Kit 55"", 1]]","[null, null, null]"
+,56,[],Cermet Chunk,Fire,,"[[""Magic Pot Shard"", 4]]","[[""Cermet Chunk"", 2], [""Cermet Chunk"", 3], [""Cermet Chunk"", 4]]"
+,56,[],Sleeping Potion,Water,,"[[""Chamomile"", 1], [""Poison Flour"", 1], [""Sleepshroom"", 1]]","[[""Sleeping Potion"", 2], [""Sleeping Potion"", 3], [""Sleeping Potion"", 4]]"
+,56,[],Sleeping Potion,Water,Trituration,"[[""Chamomile"", 2], [""Poison Flour"", 2], [""Sleepshroom"", 2], [""Triturator"", 1]]","[[""Sleeping Potion"", 4], [""Sleeping Potion"", 6], [""Sleeping Potion"", 8]]"
+,56,[],Glass Sheet,Fire,,"[[""Rock Salt"", 1], [""Shell Powder"", 1], [""Silica"", 6]]","[[""Glass Sheet"", 2], [""Glass Sheet"", 3], [""Glass Sheet"", 4]]"
+,56,"[[""Goldsmithing"", 23]]",Stabilizer II,Fire,Iatrochemistry,"[[""Black Ghost"", 1], [""High Ebonite"", 1], [""Mythril Sheet"", 1], [""Sieglinde Putty"", 1], [""Water Tank"", 1]]","[null, null, null]"
+,57,[],Sacred Sword,Light,,"[[""Hallowed Water"", 1], [""Holy Sword"", 1]]","[null, null, null]"
+,57,"[[""Smithing"", 33]]",Lightning Arrowheads,Lightning,,"[[""Copper Ingot"", 1], [""Steel Ingot"", 1]]","[[""Lightning Arrowheads"", 8], [""Lightning Arrowheads"", 10], [""Lightning Arrowheads"", 12]]"
+,57,[],Ice Arrowheads,Ice,,"[[""Copper Ingot"", 1], [""Cermet Chunk"", 1]]","[[""Ice Arrowheads"", 8], [""Ice Arrowheads"", 10], [""Ice Arrowheads"", 12]]"
+,57,"[[""Bonecraft"", 33]]",Water Arrowheads,Water,,"[[""Copper Ingot"", 1], [""Merrow Scale"", 1]]","[[""Water Arrowheads"", 8], [""Water Arrowheads"", 10], [""Water Arrowheads"", 12]]"
+,57,"[[""Bonecraft"", 35]]",Wind Arrowheads,Wind,,"[[""Copper Ingot"", 1], [""Colibri Beak"", 1]]","[[""Wind Arrowheads"", 8], [""Wind Arrowheads"", 10], [""Wind Arrowheads"", 12]]"
+,57,"[[""Bonecraft"", 44]]",Earth Arrowheads,Earth,,"[[""Copper Ingot"", 1], [""Marid Tusk"", 1]]","[[""Earth Arrowheads"", 8], [""Earth Arrowheads"", 10], [""Earth Arrowheads"", 12]]"
+,57,[],Spirit Sword,Light,Alchemic Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Holy Sword"", 1]]","[null, null, null]"
+,58,[],Sacred Mace,Light,,"[[""Hallowed Water"", 1], [""Holy Mace"", 1]]","[null, null, null]"
+,58,[],Melt Katana,Water,,"[[""Invitriol"", 1], [""Yoto"", 1]]","[null, null, null]"
+,58,"[[""Smithing"", 29]]",Quake Grenade,Earth,,"[[""Bomb Ash"", 3], [""Firesand"", 2], [""Iron Ingot"", 2], [""Yuhtunga Sulfur"", 1]]","[[""Quake Grenade"", 6], [""Quake Grenade"", 9], [""Quake Grenade"", 12]]"
+,58,"[[""Smithing"", 29]]",Quake Grenade,Earth,,"[[""Bomb Ash"", 3], [""Firesand"", 2], [""Iron Ingot"", 2], [""Sulfur"", 1]]","[[""Quake Grenade"", 6], [""Quake Grenade"", 9], [""Quake Grenade"", 12]]"
+,58,[],Holy Degen,Light,,"[[""Holy Water"", 1], [""Mythril Degen"", 1]]","[[""Holy Degen +1"", 1], null, null]"
+,58,"[[""Smithing"", 29]]",Quake Grenade,Earth,,"[[""Cluster Ash"", 1], [""Firesand"", 2], [""Iron Ingot"", 2], [""Sulfur"", 1]]","[[""Quake Grenade"", 6], [""Quake Grenade"", 9], [""Quake Grenade"", 12]]"
+,58,[],Automaton Oil +3,Water,,"[[""Olive Oil"", 4], [""Plasma Oil"", 1], [""Polyflan Paper"", 1]]","[[""Automaton Oil +3"", 9], [""Automaton Oil +3"", 12], [""Automaton Oil +3"", 12]]"
+,59,[],Bastokan Visor,Light,,"[[""Centurion's Visor"", 1], [""Cermet Chunk"", 1]]","[[""Republic Visor"", 1], null, null]"
+,59,[],Cermet Chunk,Fire,,"[[""Golem Shard"", 2]]","[[""Cermet Chunk"", 2], [""Cermet Chunk"", 3], [""Cermet Chunk"", 4]]"
+,59,[],Loudspeaker II,Fire,Iatrochemistry,"[[""Baking Soda"", 2], [""Colibri Beak"", 1], [""Glass Sheet"", 1], [""Treant Bulb"", 2], [""Water Tank"", 1]]","[null, null, null]"
+,59,[],Homura,Earth,,"[[""Firesand"", 1], [""Nodachi"", 1], [""Slime Oil"", 1], [""Toad Oil"", 1]]","[[""Homura +1"", 1], null, null]"
+,59,"[[""Goldsmithing"", 48], [""Woodworking"", 9]]",Leucous Voulge,Earth,,"[[""Cermet Chunk"", 1], [""Holly Lumber"", 1], [""Platinum Ingot"", 1], [""Super Cermet"", 2]]","[[""Leucous Voulge +1"", 1], null, null]"
+,59,[],Arcanic Cell II,Fire,Iatrochemistry,"[[""Mercury"", 1], [""Carbon Fiber"", 1], [""Light Anima"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
+,60,[],Stealth Screen II,Fire,Iatrochemistry,"[[""Hecteyes Eye"", 1], [""Water Anima"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
+,60,"[[""Smithing"", 11]]",Riot Grenade,Earth,,"[[""Bomb Ash"", 3], [""Bronze Sheet"", 1], [""Firesand"", 2], [""Paralysis Dust"", 1], [""Yuhtunga Sulfur"", 1]]","[[""Riot Grenade"", 6], [""Riot Grenade"", 9], [""Riot Grenade"", 12]]"
+,60,[],Cermet Chunk,Fire,,"[[""Doll Shard"", 2]]","[[""Cermet Chunk"", 2], [""Cermet Chunk"", 3], [""Cermet Chunk"", 4]]"
+,60,[],Hi-Potion,Water,,"[[""Distilled Water"", 1], [""Malboro Vine"", 1], [""Sage"", 2]]","[[""Hi-Potion +1"", 1], [""Hi-Potion +2"", 1], [""Hi-Potion +3"", 1]]"
+,60,[],Hi-Potion Drop,Fire,Concoction,"[[""Distilled Water"", 1], [""Malboro Vine"", 1], [""Sage"", 2]]","[[""Hi-Potion Drop"", 2], [""Hi-Potion Drop"", 3], [""Hi-Potion Drop"", 4]]"
+,60,[],Hi-Potion,Water,,"[[""Distilled Water"", 1], [""Ameretat Vine"", 1], [""Sage"", 2]]","[[""Hi-Potion +1"", 1], [""Hi-Potion +2"", 1], [""Hi-Potion +3"", 1]]"
+,60,[],Hi-Potion Drop,Fire,Concoction,"[[""Distilled Water"", 1], [""Ameretat Vine"", 1], [""Sage"", 2]]","[[""Hi-Potion Drop"", 2], [""Hi-Potion Drop"", 3], [""Hi-Potion Drop"", 4]]"
+,60,[],Hi-Potion,Water,,"[[""Distilled Water"", 1], [""Rafflesia Vine"", 1], [""Sage"", 2]]","[[""Hi-Potion +1"", 1], [""Hi-Potion +2"", 1], [""Hi-Potion +3"", 1]]"
+,60,[],Hi-Potion Drop,Fire,Concoction,"[[""Distilled Water"", 1], [""Rafflesia Vine"", 1], [""Sage"", 2]]","[[""Hi-Potion Drop"", 2], [""Hi-Potion Drop"", 3], [""Hi-Potion Drop"", 4]]"
+,60,[],Inhibitor II,Fire,Iatrochemistry,"[[""Hecteyes Eye"", 1], [""Fire Anima"", 1], [""Glass Sheet"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
+,60,[],Hi-Potion,Water,,"[[""Alchemy Kit 60"", 1]]","[null, null, null]"
+,61,[],Bastokan Finger Gauntlets,Fire,,"[[""Centurion's Finger Gauntlets"", 1], [""Cermet Chunk"", 1]]","[[""Republic Finger Gauntlets"", 1], null, null]"
+,61,[],Sacred Degen,Light,,"[[""Hallowed Water"", 1], [""Holy Degen"", 1]]","[null, null, null]"
+,61,[],Porcelain Flowerpot,Fire,,"[[""Cermet Chunk"", 1]]","[null, null, null]"
+,61,[],Glass Fiber,Fire,,"[[""Flint Stone"", 8]]","[[""Glass Fiber"", 2], [""Glass Fiber"", 3], [""Glass Fiber"", 4]]"
+,61,[],Venom Dust,Lightning,,"[[""Scorpion Claw"", 2]]","[[""Venom Dust"", 2], [""Venom Dust"", 3], [""Venom Dust"", 4]]"
+,61,[],Stabilizer III,Fire,Iatrochemistry,"[[""Gold Sheet"", 1], [""Sieglinde Putty"", 1], [""High Ebonite"", 1], [""Black Ghost"", 1], [""Water Tank"", 1]]","[null, null, null]"
+,62,[],Cermet Knife,Fire,,"[[""Cermet Chunk"", 1], [""Oak Lumber"", 1]]","[[""Cermet Knife +1"", 1], null, null]"
+,62,[],Acid Baselard,Water,,"[[""Animal Glue"", 1], [""Mythril Baselard"", 1], [""Vitriol"", 1]]","[[""Corrosive Baselard"", 1], null, null]"
+,62,[],Koen,Earth,,"[[""Brimsand"", 1], [""Homura"", 1], [""Slime Oil"", 1], [""Toad Oil"", 1]]","[null, null, null]"
+,62,[],Glass Fiber,Fire,,"[[""Meteorite"", 1]]","[[""Glass Fiber"", 6], [""Glass Fiber"", 9], [""Glass Fiber"", 12]]"
+,62,[],Venom Dust,Lightning,,"[[""Istavrit"", 1]]","[[""Venom Dust"", 2], [""Venom Dust"", 3], [""Venom Dust"", 4]]"
+,62,[],Venom Dust,Lightning,,"[[""Ogre Eel"", 2]]","[[""Venom Dust"", 2], [""Venom Dust"", 3], [""Venom Dust"", 4]]"
+,62,[],Venom Dust,Lightning,,"[[""Monke-Onke"", 1]]","[[""Venom Dust"", 4], [""Venom Dust"", 6], [""Venom Dust"", 8]]"
+,62,[],Venom Dust,Lightning,,"[[""Peiste Stinger"", 1]]","[[""Venom Dust"", 4], [""Venom Dust"", 6], [""Venom Dust"", 8]]"
+,62,[],Amplifier,Fire,Iatrochemistry,"[[""Hecteyes Eye"", 1], [""Ice Anima"", 1], [""Glass Sheet"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
+,63,"[[""Smithing"", 11]]",Riot Grenade,Earth,,"[[""Bomb Ash"", 3], [""Bronze Sheet"", 1], [""Firesand"", 2], [""Paralysis Dust"", 1], [""Sulfur"", 1]]","[[""Riot Grenade"", 6], [""Riot Grenade"", 9], [""Riot Grenade"", 12]]"
+,63,"[[""Bonecraft"", 16]]",Cermet Claws,Fire,,"[[""Beetle Jaw"", 1], [""Cermet Chunk"", 1]]","[[""Cermet Claws +1"", 1], null, null]"
+,63,[],Ebonite,Lightning,,"[[""Flan Meat"", 2], [""Sulfur"", 1]]","[null, null, null]"
+,63,[],Loudspeaker III,Fire,Iatrochemistry,"[[""Treant Bulb"", 2], [""Baking Soda"", 2], [""Colibri Beak"", 1], [""Flint Glass Sheet"", 1], [""Water Tank"", 1]]","[null, null, null]"
+,64,"[[""Bonecraft"", 43]]",Sleep Arrowheads,Wind,,"[[""Animal Glue"", 1], [""Bone Chip"", 1], [""Ram Horn"", 1], [""Sleeping Potion"", 1]]","[[""Sleep Arrowheads"", 8], [""Sleep Arrowheads"", 10], [""Sleep Arrowheads"", 12]]"
+,64,[],Divine Sword,Light,,"[[""Broadsword"", 1], [""Holy Water"", 2]]","[[""Divine Sword +1"", 1], null, null]"
+,64,"[[""Smithing"", 11]]",Riot Grenade,Earth,,"[[""Bronze Sheet"", 1], [""Cluster Ash"", 1], [""Firesand"", 2], [""Paralysis Dust"", 1], [""Sulfur"", 1]]","[[""Riot Grenade"", 6], [""Riot Grenade"", 9], [""Riot Grenade"", 12]]"
+,64,"[[""Leathercraft"", 37]]",Flame Holder,Fire,Iatrochemistry,"[[""Beeswax"", 1], [""Cotton Thread"", 1], [""Cluster Arm"", 1], [""Slime Oil"", 1], [""Super Cermet"", 1], [""Wyvern Skin"", 1]]","[null, null, null]"
+,64,[],Ice Maker,Fire,Iatrochemistry,"[[""Flan Meat"", 1], [""Karakul Wool"", 1], [""Mega Battery"", 1], [""Mythril Sheet"", 1], [""Snoll Arm"", 1], [""Super Cermet"", 1]]","[null, null, null]"
+,64,[],Twitherym Scale,Lightning,,"[[""Twitherym Wing"", 2]]","[[""Twitherym Scale"", 2], [""Twitherym Scale"", 3], [""Twitherym Scale"", 4]]"
+,65,[],Bastokan Cuisses,Fire,,"[[""Centurion's Cuisses"", 1], [""Cermet Chunk"", 1]]","[[""Republic Cuisses"", 1], null, null]"
+,65,[],Melt Baselard,Water,,"[[""Acid Baselard"", 1], [""Invitriol"", 1]]","[null, null, null]"
+,65,"[[""Woodworking"", 28]]",Konron Hassen,Earth,,"[[""Bast Parchment"", 1], [""Bomb Ash"", 1], [""Copper Nugget"", 1], [""Firesand"", 1]]","[[""Konron Hassen"", 66], [""Konron Hassen"", 99], [""Konron Hassen"", 99]]"
+,65,[],Silver Nugget,Fire,,"[[""Panacea"", 1], [""Silver Leaf"", 1]]","[[""Silver Nugget"", 12], null, null]"
+,65,[],Chocotonic,Water,,"[[""Distilled Water"", 1], [""Gysahl Greens"", 1], [""Yellow Ginseng"", 1]]","[[""Chocotonic"", 6], [""Chocotonic"", 9], [""Chocotonic"", 12]]"
+,65,"[[""Woodworking"", 8]]",Ice Arrow,Ice,,"[[""Maple Lumber"", 1], [""Insect Wing"", 2], [""Cermet Chunk"", 1]]","[[""Ice Arrow"", 66], [""Ice Arrow"", 99], [""Ice Arrow"", 99]]"
+,65,"[[""Woodworking"", 8]]",Lightning Arrow,Lightning,,"[[""Arrowwood Lumber"", 1], [""Insect Wing"", 2], [""Steel Ingot"", 1]]","[[""Lightning Arrow"", 66], [""Lightning Arrow"", 99], [""Lightning Arrow"", 99]]"
+,65,"[[""Woodworking"", 8]]",Lightning Arrow,Lightning,,"[[""Maple Lumber"", 1], [""Insect Wing"", 2], [""Steel Ingot"", 1]]","[[""Lightning Arrow"", 66], [""Lightning Arrow"", 99], [""Lightning Arrow"", 99]]"
+,65,[],Single Hook Fishing Rod,Light,,"[[""Broken Single-Hook Fishing Rod"", 1]]","[null, null, null]"
+,65,[],Tranquilizer II,Fire,Iatrochemistry,"[[""Gold Sheet"", 1], [""Sieglinde Putty"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
+,65,[],Melt Baselard,Water,,"[[""Alchemy Kit 65"", 1]]","[null, null, null]"
+,66,[],Bastokan Greaves,Fire,,"[[""Centurion's Greaves"", 1], [""Cermet Chunk"", 1]]","[[""Republic Greaves"", 1], null, null]"
+,66,"[[""Smithing"", 6]]",Battery,Fire,,"[[""Cermet Chunk"", 1], [""Copper Ingot"", 1], [""Distilled Water"", 1], [""Lightning Cluster"", 1], [""Rock Salt"", 1], [""Tin Ingot"", 1]]","[null, null, null]"
+,66,"[[""Goldsmithing"", 39]]",Hanger,Fire,,"[[""Cermet Chunk"", 2], [""Gold Ingot"", 1]]","[[""Hanger +1"", 1], null, null]"
+,66,[],Remedy Ointment,Fire,,"[[""Distilled Water"", 1], [""Dried Marjoram"", 1], [""Qutrub Bandage"", 1], [""White Honey"", 1]]","[[""Remedy Ointment"", 6], [""Remedy Ointment"", 9], [""Remedy Ointment"", 12]]"
+,66,[],Hallowed Sword,Light,,"[[""Divine Sword"", 1], [""Hallowed Water"", 1]]","[null, null, null]"
+,67,"[[""Smithing"", 14]]",Sleep Bolt Heads,Wind,,"[[""Animal Glue"", 1], [""Bronze Ingot"", 1], [""Sleeping Potion"", 1]]","[[""Sleep Bolt Heads"", 8], [""Sleep Bolt Heads"", 10], [""Sleep Bolt Heads"", 12]]"
+,67,[],Acid Kukri,Water,,"[[""Animal Glue"", 1], [""Mythril Kukri"", 1], [""Vitriol"", 1]]","[[""Corrosive Kukri"", 1], null, null]"
+,67,[],Bastokan Scale Mail,Water,,"[[""Centurion's Scale Mail"", 1], [""Cermet Chunk"", 1]]","[[""Republic Scale Mail"", 1], null, null]"
+,67,[],Stabilizer IV,Fire,Iatrochemistry,"[[""Platinum Sheet"", 1], [""Sieglinde Putty"", 1], [""High Ebonite"", 1], [""Black Ghost"", 1], [""Water Tank"", 1]]","[null, null, null]"
+,67,[],Amplifier II,Fire,Iatrochemistry,"[[""Hecteyes Eye"", 1], [""Ice Anima"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 2]]","[null, null, null]"
+,68,[],Venom Potion,Water,,"[[""Mercury"", 1], [""Venom Dust"", 1]]","[null, null, null]"
+,68,[],Venom Potion,Water,Trituration,"[[""Mercury"", 3], [""Venom Dust"", 3], [""Triturator"", 1]]","[null, null, null]"
+,68,[],Cermet Sword,Fire,,"[[""Cermet Chunk"", 2], [""Tiger Leather"", 1]]","[[""Cermet Sword +1"", 1], null, null]"
+,68,[],Hyper Potion,Water,,"[[""Flytrap Leaf"", 1], [""Hecteyes Eye"", 1], [""Movalpolos Water"", 1], [""Sage"", 2]]","[null, null, null]"
+,68,[],Coiler II,Fire,Iatrochemistry,"[[""Carbon Fiber"", 1], [""Super Cermet"", 1], [""Imperial Cermet"", 1], [""Plasma Oil"", 1], [""High Ebonite"", 1]]","[null, null, null]"
+,68,[],Loudspeaker IV,Fire,Iatrochemistry,"[[""Treant Bulb"", 2], [""Baking Soda"", 1], [""Colibri Beak"", 1], [""Flint Glass Sheet"", 2], [""Water Tank"", 1]]","[null, null, null]"
+,69,[],Remedy,Water,,"[[""Boyahda Moss"", 1], [""Chamomile"", 1], [""Distilled Water"", 1], [""Dried Marjoram"", 1], [""Honey"", 1], [""Mistletoe"", 1], [""Sage"", 1], [""Wijnruit"", 1]]","[[""Remedy"", 4], [""Remedy"", 6], [""Remedy"", 8]]"
+,69,[],Single Hook Fishing Rod,Fire,,"[[""Carbon Fiber"", 5], [""Glass Fiber"", 2]]","[null, null, null]"
+,69,[],Hi-Ether,Water,,"[[""Bat Wing"", 4], [""Distilled Water"", 1], [""Dried Marjoram"", 2], [""Dryad Root"", 1]]","[[""Hi-Ether +1"", 1], [""Hi-Ether +2"", 1], [""Hi-Ether +3"", 1]]"
+,69,[],Hi-Ether Drop,Fire,Concoction,"[[""Bat Wing"", 4], [""Distilled Water"", 1], [""Dried Marjoram"", 2], [""Dryad Root"", 1]]","[[""Hi-Ether Drop"", 2], [""Hi-Ether Drop"", 3], [""Hi-Ether Drop"", 4]]"
+,69,[],Hi-Ether,Water,,"[[""Soulflayer Tentacle"", 1], [""Distilled Water"", 1], [""Dried Marjoram"", 2], [""Dryad Root"", 1]]","[[""Hi-Ether +1"", 1], [""Hi-Ether +2"", 1], [""Hi-Ether +3"", 1]]"
+,69,[],Hi-Ether Drop,Fire,Concoction,"[[""Soulflayer Tentacle"", 1], [""Distilled Water"", 1], [""Dried Marjoram"", 2], [""Dryad Root"", 1]]","[[""Hi-Ether Drop"", 2], [""Hi-Ether Drop"", 3], [""Hi-Ether Drop"", 4]]"
+,69,[],Melt Kukri,Water,,"[[""Acid Kukri"", 1], [""Invitriol"", 1]]","[null, null, null]"
+,70,[],Saber,Fire,,"[[""Cermet Chunk"", 3], [""Tiger Leather"", 1]]","[[""Saber +1"", 1], null, null]"
+,70,[],Venom Knife,Water,,"[[""Animal Glue"", 1], [""Darksteel Knife"", 1], [""Venom Potion"", 1]]","[[""Venom Knife +1"", 1], null, null]"
+,70,"[[""Leathercraft"", 10]]",Brilliant Snow,Ice,,"[[""Distilled Water"", 1], [""Glass Fiber"", 1], [""Holy Water"", 1], [""Sheep Leather"", 1], [""Rock Salt"", 1]]","[[""Brilliant Snow"", 66], [""Brilliant Snow"", 99], [""Brilliant Snow"", 99]]"
+,70,[],Repeater,Fire,Iatrochemistry,"[[""Glass Fiber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Homunculus Nerves"", 1], [""High Ebonite"", 1]]","[null, null, null]"
+,70,[],Tranquilizer III,Fire,Iatrochemistry,"[[""Platinum Sheet"", 1], [""Sieglinde Putty"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
+,70,[],Saber,Fire,,"[[""Alchemy Kit 70"", 1]]","[null, null, null]"
+,71,"[[""Smithing"", 13]]",Spartan Bullet,Fire,,"[[""Bronze Ingot"", 1], [""Copper Ingot"", 1], [""Firesand"", 1], [""Twinkle Powder"", 1]]","[[""Spartan Bullet"", 99], null, null]"
+,71,[],Holy Maul,Light,,"[[""Holy Water"", 1], [""Maul"", 1]]","[[""Holy Maul +1"", 1], null, null]"
+,71,[],Imperial Cermet,Fire,,"[[""Silica"", 1], [""Cermet Chunk"", 2]]","[[""Imperial Cermet"", 2], [""Imperial Cermet"", 3], [""Imperial Cermet"", 4]]"
+,71,[],Rainbow Powder,Light,,"[[""Glass Fiber"", 2], [""Wamoura Scale"", 1]]","[[""Rainbow Powder"", 8], [""Rainbow Powder"", 10], [""Rainbow Powder"", 12]]"
+,71,[],Rainbow Powder,Light,Trituration,"[[""Glass Fiber"", 4], [""Wamoura Scale"", 2], [""Triturator"", 1]]","[null, null, null]"
+,71,[],Stabilizer V,Fire,Iatrochemistry,"[[""Orichalcum Sheet"", 1], [""Sieglinde Putty"", 1], [""High Ebonite"", 1], [""Black Ghost"", 1], [""Water Tank"", 1]]","[null, null, null]"
+,72,[],Halcyon Rod,Light,,"[[""Bkn. Halcyon Rod"", 1]]","[null, null, null]"
+,72,[],Venom Claws,Water,,"[[""Animal Glue"", 1], [""Darksteel Claws"", 1], [""Venom Potion"", 1]]","[[""Venom Claws +1"", 1], null, null]"
+,72,[],Paralysis Dust,Lightning,,"[[""Puffball"", 2]]","[[""Paralysis Dust"", 2], [""Paralysis Dust"", 3], [""Paralysis Dust"", 4]]"
+,72,[],Paralysis Dust,Lightning,,"[[""Three-eyed Fish"", 1]]","[[""Paralysis Dust"", 4], [""Paralysis Dust"", 6], [""Paralysis Dust"", 8]]"
+,72,"[[""Goldsmithing"", 42]]",Replicator,Fire,Iatrochemistry,"[[""Mythril Sheet"", 1], [""Sieglinde Putty"", 1], [""Polyflan Paper"", 2], [""Wind Fan"", 1]]","[null, null, null]"
+,72,"[[""Smithing"", 19]]",Paktong Bullet,Fire,,"[[""Firesand"", 1], [""Paktong Ingot"", 1]]","[[""Paktong Bullet"", 99], null, null]"
+,72,"[[""Smithing"", 14]]",Darkling Bolt Heads,Wind,,"[[""Bronze Ingot"", 1], [""Revival Tree Root"", 1], [""Imp Wing"", 1]]","[[""Darkling Bolt Heads"", 8], [""Darkling Bolt Heads"", 10], [""Darkling Bolt Heads"", 12]]"
+,73,"[[""Clothcraft"", 41], [""Woodworking"", 26]]",Airborne,Earth,,"[[""Bast Parchment"", 1], [""Bomb Ash"", 1], [""Firesand"", 2], [""Goblin Doll"", 1], [""Silk Cloth"", 1]]","[[""Airborne"", 66], [""Airborne"", 99], [""Airborne"", 99]]"
+,73,"[[""Smithing"", 45]]",Cutlass,Fire,,"[[""Cermet Chunk"", 3], [""Darksteel Ingot"", 1]]","[[""Cutlass +1"", 1], null, null]"
+,73,[],High Ebonite,Lightning,,"[[""Flan Meat"", 3], [""Sulfur"", 1]]","[[""High Ebonite"", 4], [""High Ebonite"", 6], [""High Ebonite"", 8]]"
+,73,[],Vermin Slayer,Dark,,"[[""Ameretat Vine"", 1], [""Darksteel Kilij"", 1], [""Lizard Blood"", 1]]","[[""Insect Slayer"", 1], null, null]"
+,73,[],Aquan Slayer,Dark,,"[[""Ameretat Vine"", 1], [""Bird Blood"", 1], [""Darksteel Kilij"", 1]]","[[""Marine Slayer"", 1], null, null]"
+,73,[],Resolution Ring,Light,Alchemic Purification,"[[""Fiend Blood"", 1], [""Dragon Blood"", 1], [""Avatar Blood"", 1], [""Lizard Blood"", 1], [""Bird Blood"", 1], [""Chimera Blood"", 1], [""Demon Blood"", 1], [""Platinum Ring"", 1]]","[null, null, null]"
+,73,[],Dynamo II,Fire,Iatrochemistry,"[[""Platinum Sheet"", 1], [""Sieglinde Putty"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""High Ebonite"", 1]]","[null, null, null]"
+,73,[],Dynamo III,Fire,Iatrochemistry,"[[""Orichalcum Sheet"", 1], [""Sieglinde Putty"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""High Ebonite"", 1]]","[null, null, null]"
+,73,[],Loudspeaker V,Fire,Iatrochemistry,"[[""Treant Bulb"", 2], [""Baking Soda"", 1], [""Colibri Beak"", 1], [""Flint Glass Sheet"", 3], [""Water Tank"", 1]]","[null, null, null]"
+,74,[],Sacred Maul,Light,,"[[""Hallowed Water"", 1], [""Holy Maul"", 1]]","[null, null, null]"
+,74,[],Venom Baselard,Water,,"[[""Animal Glue"", 1], [""Darksteel Baselard"", 1], [""Venom Potion"", 1]]","[[""Venom Baselard +1"", 1], null, null]"
+,74,[],Mythril Nugget,Fire,,"[[""Mythril Leaf"", 1], [""Panacea"", 1]]","[[""Mythril Nugget"", 12], null, null]"
+,74,[],Spirit Maul,Light,Alchemic Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Holy Maul"", 1]]","[null, null, null]"
+,74,[],Tranquilizer IV,Fire,Iatrochemistry,"[[""Orichalcum Sheet"", 1], [""Sieglinde Putty"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
+,75,[],Venom Kukri,Water,,"[[""Animal Glue"", 1], [""Darksteel Kukri"", 1], [""Venom Potion"", 1]]","[[""Venom Kukri +1"", 1], null, null]"
+,75,[],Fire Anima,Fire,Anima Synthesis,"[[""Burning Memory"", 4], [""Mercury"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Fire Anima"", 20], [""Fire Anima"", 30], [""Fire Anima"", 40]]"
+,75,[],Ice Anima,Ice,Anima Synthesis,"[[""Bitter Memory"", 4], [""Mercury"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Ice Anima"", 20], [""Ice Anima"", 30], [""Ice Anima"", 40]]"
+,75,[],Wind Anima,Wind,Anima Synthesis,"[[""Fleeting Memory"", 4], [""Mercury"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Wind Anima"", 20], [""Wind Anima"", 30], [""Wind Anima"", 40]]"
+,75,[],Earth Anima,Earth,Anima Synthesis,"[[""Profane Memory"", 4], [""Mercury"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Earth Anima"", 20], [""Earth Anima"", 30], [""Earth Anima"", 40]]"
+,75,[],Lightning Anima,Lightning,Anima Synthesis,"[[""Startling Memory"", 4], [""Mercury"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Lightning Anima"", 20], [""Lightning Anima"", 30], [""Lightning Anima"", 40]]"
+,75,[],Water Anima,Water,Anima Synthesis,"[[""Somber Memory"", 4], [""Mercury"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Water Anima"", 20], [""Water Anima"", 30], [""Water Anima"", 40]]"
+,75,[],Light Anima,Light,Anima Synthesis,"[[""Radiant Memory"", 4], [""Mercury"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Light Anima"", 20], [""Light Anima"", 30], [""Light Anima"", 40]]"
+,75,[],Dark Anima,Dark,Anima Synthesis,"[[""Malevolent Mem."", 4], [""Mercury"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Dark Anima"", 20], [""Dark Anima"", 30], [""Dark Anima"", 40]]"
+,75,"[[""Goldsmithing"", 31]]",Electrum Bullet,Fire,,"[[""Firesand"", 1], [""Electrum Ingot"", 1]]","[[""Electrum Bullet"", 99], null, null]"
+,75,[],Venom Kukri,Water,,"[[""Alchemy Kit 75"", 1]]","[null, null, null]"
+,76,"[[""Smithing"", 14]]",Venom Bolt Heads,Wind,,"[[""Animal Glue"", 1], [""Bronze Ingot"", 1], [""Venom Potion"", 1]]","[[""Venom Bolt Heads"", 8], [""Venom Bolt Heads"", 10], [""Venom Bolt Heads"", 12]]"
+,76,"[[""Goldsmithing"", 18]]",Kilo Battery,Water,,"[[""Cermet Chunk"", 1], [""Distilled Water"", 1], [""Lightning Cluster"", 1], [""Rock Salt"", 1], [""Silver Ingot"", 1], [""Tin Ingot"", 1]]","[null, null, null]"
+,76,[],Cermet Kukri,Fire,,"[[""Cermet Chunk"", 1], [""Ebony Lumber"", 1], [""Wyvern Skin"", 1]]","[[""Cermet Kukri +1"", 1], null, null]"
+,76,[],Halcyon Rod,Fire,,"[[""Carbon Fiber"", 4], [""Cermet Chunk"", 1], [""Glass Fiber"", 2]]","[null, null, null]"
+,76,[],Regulator,Fire,Iatrochemistry,"[[""Brass Tank"", 1], [""Spectral Goldenrod"", 1], [""Chimera Blood"", 1], [""Imperial Cermet"", 1], [""Umbril Ooze"", 1]]","[null, null, null]"
+,77,[],X-Potion,Water,,"[[""Sage"", 2], [""Hecteyes Eye"", 1], [""Distilled Water"", 1], [""Reishi Mushroom"", 1]]","[[""X-Potion +1"", 1], [""X-Potion +2"", 1], [""X-Potion +3"", 1]]"
+,77,[],Freshwater Set,Water,,"[[""Desalinator"", 1], [""Holy Water"", 1], [""River Foliage"", 1], [""Silica"", 1]]","[null, null, null]"
+,77,[],Paralysis Arrowheads,Wind,,"[[""Animal Glue"", 1], [""Copper Ingot"", 1], [""Imperial Cermet"", 1], [""Paralyze Potion"", 1]]","[[""Paralysis Arrowheads"", 8], [""Paralysis Arrowheads"", 10], [""Paralysis Arrowheads"", 12]]"
+,77,"[[""Goldsmithing"", 23]]",Bread Crock,Fire,,"[[""Jadeite"", 1], [""Grass Thread"", 2], [""Kaolin"", 2]]","[null, null, null]"
+,78,"[[""Smithing"", 29]]",Jamadhars,Fire,,"[[""Cermet Chunk"", 2], [""Coeurl Leather"", 1], [""Iron Sheet"", 1]]","[[""Jamadhars +1"", 1], null, null]"
+,78,[],Paralyze Potion,Water,,"[[""Mercury"", 1], [""Paralysis Dust"", 1]]","[null, null, null]"
+,78,[],Paralyze Potion,Water,Trituration,"[[""Mercury"", 3], [""Paralysis Dust"", 3], [""Triturator"", 1]]","[null, null, null]"
+,78,"[[""Woodworking"", 45]]",Air Rider,Fire,,"[[""Bast Parchment"", 1], [""Firesand"", 2], [""Goblin Doll"", 1], [""Lauan Lumber"", 1], [""Twinkle Powder"", 1]]","[[""Air Rider"", 66], [""Air Rider"", 99], null]"
+,79,[],Venom Katars,Water,,"[[""Animal Glue"", 1], [""Darksteel Katars"", 1], [""Venom Potion"", 1]]","[[""Venom Katars +1"", 1], null, null]"
+,79,[],Holy Shield,Light,,"[[""Hard Shield"", 1], [""Holy Water"", 2], [""Mana Barrel"", 1]]","[[""Divine Shield"", 1], null, null]"
+,79,[],Hyper Ether,Water,,"[[""Dried Marjoram"", 2], [""Movalpolos Water"", 1], [""Taurus Wing"", 2], [""Treant Bulb"", 1]]","[null, null, null]"
+,79,"[[""Clothcraft"", 47], [""Goldsmithing"", 19]]",Red Storm Lantern,Fire,,"[[""Olive Oil"", 1], [""Brass Ingot"", 1], [""Silver Ingot"", 1], [""Silk Cloth"", 1], [""Glass Sheet"", 1], [""Sailcloth"", 1], [""Red Textile Dye"", 1]]","[null, null, null]"
+,79,"[[""Clothcraft"", 47], [""Goldsmithing"", 19]]",Blue Storm Lantern,Fire,,"[[""Olive Oil"", 1], [""Brass Ingot"", 1], [""Silver Ingot"", 1], [""Silk Cloth"", 1], [""Glass Sheet"", 1], [""Sailcloth"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
+,79,"[[""Clothcraft"", 47], [""Goldsmithing"", 19]]",Green Storm Lantern,Fire,,"[[""Olive Oil"", 1], [""Brass Ingot"", 1], [""Silver Ingot"", 1], [""Silk Cloth"", 1], [""Glass Sheet"", 1], [""Sailcloth"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
+,79,"[[""Clothcraft"", 47], [""Goldsmithing"", 19]]",Yellow Storm Lantern,Fire,,"[[""Olive Oil"", 1], [""Brass Ingot"", 1], [""Silver Ingot"", 1], [""Silk Cloth"", 1], [""Glass Sheet"", 1], [""Sailcloth"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
+,79,"[[""Clothcraft"", 47], [""Goldsmithing"", 19]]",White Storm Lantern,Fire,,"[[""Olive Oil"", 1], [""Brass Ingot"", 1], [""Silver Ingot"", 1], [""Silk Cloth"", 1], [""Glass Sheet"", 1], [""Sailcloth"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
+,80,[],Kororito,Water,,"[[""Animal Glue"", 1], [""Shinobi-Gatana"", 1], [""Venom Potion"", 1]]","[[""Kororito +1"", 1], null, null]"
+,80,[],Stun Knife,Water,,"[[""Animal Glue"", 1], [""Cermet Knife"", 1], [""Paralyze Potion"", 1]]","[[""Stun Knife +1"", 1], null, null]"
+,80,"[[""Goldsmithing"", 41]]",Fluoro-flora,Water,,"[[""Tufa"", 1], [""Red Gravel"", 1], [""Orobon Lure"", 1], [""Wildgrass Seeds"", 1], [""Super Ether"", 1], [""Humus"", 1]]","[null, null, null]"
+,80,[],Stun Knife,Water,,"[[""Alchemy Kit 80"", 1]]","[null, null, null]"
+,81,"[[""Smithing"", 14]]",Bloody Bolt Heads,Wind,,"[[""Beastman Blood"", 1], [""Bronze Ingot"", 1], [""Revival Tree Root"", 1]]","[[""Bloody Bolt Heads"", 8], [""Bloody Bolt Heads"", 10], [""Bloody Bolt Heads"", 12]]"
+,81,[],Holy Wand,Light,,"[[""Holy Water"", 1], [""Mythic Wand"", 1]]","[[""Holy Wand +1"", 1], null, null]"
+,81,[],Hawker's Knife,Wind,,"[[""Archer's Knife"", 1], [""Beastman Blood"", 1], [""Dragon Blood"", 1], [""Fiend Blood"", 1]]","[[""Hawker's Knife +1"", 1], null, null]"
+,81,"[[""Woodworking"", 33]]",Gallipot,Fire,,"[[""Walnut Log"", 1], [""Bamboo Stick"", 1], [""Silica"", 1], [""Djinn Ash"", 1], [""Karugo-Narugo Clay"", 4]]","[null, null, null]"
+,82,[],Stun Claws,Water,,"[[""Animal Glue"", 1], [""Cermet Claws"", 1], [""Paralyze Potion"", 1]]","[[""Stun Claws +1"", 1], null, null]"
+,82,[],Saltwater Set,Water,,"[[""Holy Water"", 1], [""Salinator"", 1], [""Sea Foliage"", 1], [""White Sand"", 1]]","[null, null, null]"
+,82,[],Chocolixir,Light,,"[[""Distilled Water"", 1], [""Gold Leaf"", 1], [""Mistletoe"", 1], [""Revival Tree Root"", 1], [""Royal Jelly"", 1]]","[[""Hi-Chocolixir"", 1], null, null]"
+,82,[],Viper Dust,Lightning,,"[[""Khimaira Tail"", 1]]","[null, null, null]"
+,83,[],Bloody Blade,Dark,,"[[""Beastman Blood"", 1], [""Darksteel Falchion"", 1], [""Revival Tree Root"", 1]]","[[""Carnage Blade"", 1], null, null]"
+,83,[],Holy Lance,Light,,"[[""Holy Water"", 2], [""Mythril Lance"", 1]]","[[""Holy Lance +1"", 1], null, null]"
+,83,[],Polyflan,Lightning,,"[[""Chimera Blood"", 1], [""Flan Meat"", 1]]","[[""Polyflan"", 4], null, null]"
+,83,[],Dandy Spectacles,Wind,,"[[""Flint Glass Sheet"", 1]]","[[""Fancy Spectacles"", 1], null, null]"
+,83,[],Magniplug,Fire,Iatrochemistry,"[[""Mythril Sheet"", 1], [""Fire Bead"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""High Ebonite"", 1]]","[null, null, null]"
+,83,[],Arcanoclutch,Fire,Iatrochemistry,"[[""Mythril Sheet"", 1], [""Ice Bead"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""High Ebonite"", 1]]","[null, null, null]"
+,84,[],Sacred Wand,Light,,"[[""Hallowed Water"", 1], [""Holy Wand"", 1]]","[null, null, null]"
+,84,[],Dragon Blood,Lightning,,"[[""Dragon Heart"", 1]]","[[""Dragon Blood"", 6], null, null]"
+,84,"[[""Woodworking"", 23]]",Ouka Ranman,Earth,,"[[""Amaryllis"", 1], [""Bast Parchment"", 2], [""Firesand"", 1]]","[[""Ouka Ranman"", 66], [""Ouka Ranman"", 99], [""Ouka Ranman"", 99]]"
+,84,"[[""Goldsmithing"", 47], [""Woodworking"", 45]]",Cermet Kilij,Fire,,"[[""Mythril Ingot"", 2], [""Garnet"", 1], [""Sunstone"", 1], [""Marid Leather"", 1], [""Teak Lumber"", 1]]","[[""Cermet Kilij +1"", 1], null, null]"
+,84,[],Hakutaku Eye Cluster,Light,,"[[""Fiend Blood"", 1], [""Burning Hakutaku Eye"", 1], [""Damp Hakutaku Eye"", 1], [""Earthen Hakutaku Eye"", 1], [""Golden Hakutaku Eye"", 1], [""Wooden Hakutaku Eye"", 1]]","[null, null, null]"
+,85,[],Bloody Rapier,Dark,,"[[""Beastman Blood"", 1], [""Revival Tree Root"", 1], [""Schlaeger"", 1]]","[[""Carnage Rapier"", 1], null, null]"
+,85,[],Composite Fishing Rod,Light,,"[[""Broken Comp. Rod"", 1]]","[null, null, null]"
+,85,[],Photoanima,Fire,Anima Synthesis,"[[""Dark Anima"", 1], [""Earth Anima"", 1], [""Fire Anima"", 1], [""Ice Anima"", 1], [""Light Anima"", 1], [""Lightning Anima"", 1], [""Water Anima"", 1], [""Wind Anima"", 1]]","[null, null, null]"
+,85,"[[""Goldsmithing"", 38]]",Gold Bullet,Fire,,"[[""Firesand"", 1], [""Gold Ingot"", 1]]","[[""Gold Bullet"", 99], null, null]"
+,85,[],Bloody Rapier,Dark,,"[[""Alchemy Kit 85"", 1]]","[null, null, null]"
+,86,[],Sacred Lance,Light,,"[[""Hallowed Water"", 1], [""Holy Lance"", 1]]","[null, null, null]"
+,86,"[[""Smithing"", 31], [""Goldsmithing"", 16]]",Mega Battery,Water,,"[[""Cermet Chunk"", 1], [""Distilled Water"", 1], [""Iron Ingot"", 1], [""Lightning Cluster"", 1], [""Rock Salt"", 1], [""Silver Ingot"", 1]]","[null, null, null]"
+,86,[],Stun Kukri,Water,,"[[""Animal Glue"", 1], [""Cermet Kukri"", 1], [""Paralyze Potion"", 1]]","[[""Stun Kukri +1"", 1], null, null]"
+,86,[],Alchemist's Water,Dark,,"[[""Beastman Blood"", 1], [""Dryad Root"", 1], [""Mercury"", 1], [""Philosopher's Stone"", 1]]","[[""Alchemist's Water"", 12], null, null]"
+,86,[],Flint Glass Sheet,Fire,,"[[""Rock Salt"", 1], [""Shell Powder"", 1], [""Silica"", 4], [""Minium"", 2]]","[[""Flint Glass Sheet"", 2], [""Flint Glass Sheet"", 3], [""Flint Glass Sheet"", 4]]"
+,87,"[[""Woodworking"", 57]]",Garden Bangles,Dark,,"[[""Dryad Root"", 1], [""Fiend Blood"", 1], [""Four-Leaf Korringan Bud"", 1], [""Great Boyahda Moss"", 1], [""Mercury"", 1]]","[[""Feronia's Bangles"", 1], null, null]"
+,87,[],Venom Kris,Water,,"[[""Animal Glue"", 1], [""Darksteel Kris"", 1], [""Venom Potion"", 1]]","[[""Venom Kris +1"", 1], null, null]"
+,87,[],Holy Leather,Light,,"[[""Holy Water"", 1], [""Ram Leather"", 1]]","[null, null, null]"
+,88,[],Bloody Sword,Dark,,"[[""Bastard Sword"", 1], [""Beastman Blood"", 1], [""Revival Tree Root"", 1]]","[[""Carnage Sword"", 1], null, null]"
+,88,[],Gold Nugget,Fire,,"[[""Gold Leaf"", 1], [""Panacea"", 1]]","[[""Gold Nugget"", 12], null, null]"
+,88,[],Elixir Vitae,Light,,"[[""Chimera Blood"", 1], [""Distilled Water"", 1], [""Imp Wing"", 1], [""Mistletoe"", 1], [""Revival Tree Root"", 1]]","[null, null, null]"
+,88,[],Viper Potion,Water,,"[[""Mercury"", 1], [""Viper Dust"", 1]]","[null, null, null]"
+,88,[],Viper Potion,Water,Trituration,"[[""Mercury"", 3], [""Viper Dust"", 3], [""Triturator"", 1]]","[null, null, null]"
+,88,[],Arcanoclutch II,Fire,Iatrochemistry,"[[""Platinum Sheet"", 1], [""Ice Bead"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""High Ebonite"", 1]]","[null, null, null]"
+,88,[],Magniplug II,Fire,Iatrochemistry,"[[""Platinum Sheet"", 1], [""Fire Bead"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""High Ebonite"", 1]]","[null, null, null]"
+,88,[],Truesights,Fire,Iatrochemistry,"[[""Platinum Sheet"", 1], [""Wind Bead"", 1], [""Homunculus Nerves"", 1], [""Plasma Oil"", 1], [""High Ebonite"", 1]]","[null, null, null]"
+,89,[],Super Ether,Water,,"[[""Ahriman Wing"", 1], [""Distilled Water"", 1], [""Dried Marjoram"", 3], [""Treant Bulb"", 1]]","[[""Super Ether +1"", 1], [""Super Ether +2"", 1], [""Super Ether +3"", 1]]"
+,89,[],Composite Fishing Rod,Fire,,"[[""Carbon Fiber"", 3], [""Cermet Chunk"", 2], [""Glass Fiber"", 2]]","[null, null, null]"
+,89,[],Stun Jamadhars,Water,,"[[""Animal Glue"", 1], [""Jamadhars"", 1], [""Paralyze Potion"", 1]]","[[""Stun Jamadhars +1"", 1], null, null]"
+,89,[],Alchemist's Tools,Fire,,"[[""Iron Ingot"", 1], [""Parchment"", 1], [""Glass Sheet"", 1], [""Triturator"", 1], [""Colibri Feather"", 1], [""Aht Urhgan Brass Ingot"", 1], [""Aht Urhgan Brass Sheet"", 1], [""Flint Glass Sheet"", 1]]","[null, null, null]"
+,90,[],Bloody Lance,Dark,,"[[""Beastman Blood"", 2], [""Darksteel Lance"", 1], [""Revival Tree Root"", 1]]","[[""Carnage Lance"", 1], null, null]"
+,90,[],Elixir,Light,,"[[""Distilled Water"", 1], [""Dragon Blood"", 1], [""Mistletoe"", 1], [""Revival Tree Root"", 1], [""Royal Jelly"", 1]]","[[""Hi-Elixir"", 1], null, null]"
+,90,[],Espadon,Fire,,"[[""Cermet Chunk"", 3], [""Coeurl Leather"", 1]]","[[""Espadon +1"", 1], null, null]"
+,90,[],Adder Jambiya,Water,,"[[""Animal Glue"", 1], [""Viper Potion"", 1], [""Khimaira Jambiya"", 1]]","[[""Adder Jambiya +1"", 1], null, null]"
+,90,[],Oxidant Baselard,Water,,"[[""Animal Glue"", 1], [""Rhodium Ingot"", 1], [""Umbril Ooze"", 1], [""Acuex Poison"", 1], [""Mythril Baselard"", 1]]","[[""Nitric Baselard"", 1], null, null]"
+,90,[],Nakajimarai,Water,,"[[""Animal Glue"", 1], [""Rhodium Ingot"", 1], [""Umbril Ooze"", 1], [""Acuex Poison"", 1], [""Shinobi-Gatana"", 1]]","[[""Nakajimarai +1"", 1], null, null]"
+,90,[],Bloody Lance,Dark,,"[[""Alchemy Kit 90"", 1]]","[null, null, null]"
+,91,"[[""Woodworking"", 59], [""Smithing"", 21]]",Urushi,Fire,,"[[""Honey"", 1], [""Iron Ore"", 1], [""Lacquer Tree Sap"", 4]]","[[""Urushi"", 4], [""Urushi"", 6], [""Urushi"", 8]]"
+,91,[],Mamushito,Water,,"[[""Animal Glue"", 1], [""Paralyze Potion"", 1], [""Shinobi-Gatana"", 1]]","[[""Mamushito +1"", 1], null, null]"
+,91,[],Ether Leather,Water,,"[[""Ahriman Wing"", 1], [""Ram Leather"", 1], [""Distilled Water"", 1], [""Dried Marjoram"", 3], [""Treant Bulb"", 1]]","[null, null, null]"
+,91,[],Ether Cotton,Water,,"[[""Ahriman Wing"", 1], [""Cotton Cloth"", 1], [""Distilled Water"", 1], [""Dried Marjoram"", 3], [""Treant Bulb"", 1]]","[null, null, null]"
+,91,[],Ether Holly,Water,,"[[""Ahriman Wing"", 1], [""Holly Lumber"", 1], [""Distilled Water"", 1], [""Dried Marjoram"", 3], [""Treant Bulb"", 1]]","[null, null, null]"
+,91,[],Bewitched Greaves,Dark,,"[[""Cursed Greaves -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Greaves"", 1], null, null]"
+,91,[],Vexed Nails,Dark,,"[[""Hexed Nails -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Nails"", 1], null, null]"
+,92,[],Strength Potion,Water,,"[[""Distilled Water"", 1], [""Dried Mugwort"", 1], [""Boyahda Moss"", 1], [""Honey"", 1], [""Red Rose"", 1]]","[null, null, null]"
+,92,[],Dexterity Potion,Water,,"[[""Distilled Water"", 1], [""Dried Mugwort"", 1], [""Malboro Vine"", 1], [""Honey"", 1], [""Sweet William"", 1]]","[null, null, null]"
+,92,[],Vitality Potion,Water,,"[[""Distilled Water"", 1], [""Dried Mugwort"", 1], [""Lizard Tail"", 1], [""Honey"", 1], [""Chamomile"", 1]]","[null, null, null]"
+,92,[],Agility Potion,Water,,"[[""Distilled Water"", 1], [""Dried Mugwort"", 1], [""Hecteyes Eye"", 1], [""Honey"", 1], [""Phalaenopsis"", 1]]","[null, null, null]"
+,92,[],Intelligence Potion,Water,,"[[""Distilled Water"", 1], [""Dried Mugwort"", 1], [""Coeurl Whisker"", 1], [""Honey"", 1], [""Olive Flower"", 1]]","[null, null, null]"
+,92,[],Mind Potion,Water,,"[[""Distilled Water"", 1], [""Dried Mugwort"", 1], [""Bat Wing"", 1], [""Honey"", 1], [""Casablanca"", 1]]","[null, null, null]"
+,92,[],Charisma Potion,Water,,"[[""Distilled Water"", 1], [""Dried Mugwort"", 1], [""Two-Leaf Mandragora Bud"", 1], [""Honey"", 1], [""Cattleya"", 1]]","[null, null, null]"
+,92,[],Cursed Cuisses,Dark,,"[[""Revival Tree Root"", 1], [""Dragon Blood"", 1], [""Dragon Cuisses"", 1]]","[[""Cursed Cuisses -1"", 1], null, null]"
+,92,"[[""Woodworking"", 60]]",Sekishitsu,Fire,,"[[""Honey"", 1], [""Vermilion Lacquer"", 1], [""Lacquer Tree Sap"", 4]]","[[""Sekishitsu"", 4], [""Sekishitsu"", 6], [""Sekishitsu"", 8]]"
+,92,[],Bewitched Finger Gauntlets,Dark,,"[[""Cursed Finger Gauntlets -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Finger Gauntlets"", 1], null, null]"
+,92,[],Vexed Gages,Dark,,"[[""Hexed Gages -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Gages"", 1], null, null]"
+,93,"[[""Cooking"", 43]]",Antacid,Earth,,"[[""Chamomile"", 1], [""Distilled Water"", 1], [""Dried Marjoram"", 1], [""Dried Mugwort"", 1], [""Maple Sugar"", 1]]","[null, null, null]"
+,93,[],Ice Lance,Ice,,"[[""Cermet Lance"", 1], [""Distilled Water"", 1], [""Rock Salt"", 1]]","[[""Ice Lance +1"", 1], null, null]"
+,93,[],Icarus Wing,Wind,,"[[""Beeswax"", 2], [""Giant Bird Feather"", 6]]","[null, null, null]"
+,93,[],Cursed Finger Gauntlets,Dark,,"[[""Revival Tree Root"", 1], [""Dragon Blood"", 1], [""Dragon Finger Gauntlets"", 1]]","[[""Cursed Finger Gauntlets -1"", 1], null, null]"
+,93,[],Hermes Quencher,Water,,"[[""Dried Mugwort"", 1], [""Flytrap Leaf"", 1], [""Jacknife"", 1], [""Honey"", 1], [""Movalpolos Water"", 1]]","[null, null, null]"
+,93,[],Bewitched Cuisses,Dark,,"[[""Cursed Cuisses -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Cuisses"", 1], null, null]"
+,93,[],Vexed Slops,Dark,,"[[""Hexed Slops -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Slops"", 1], null, null]"
+,94,"[[""Goldsmithing"", 18], [""Smithing"", 34]]",Cannon Shell,Fire,,"[[""Bomb Arm"", 1], [""Brass Ingot"", 1], [""Firesand"", 2], [""Iron Ingot"", 1]]","[[""Cannon Shell"", 8], [""Cannon Shell"", 10], [""Cannon Shell"", 12]]"
+,94,[],Cursed Greaves,Dark,,"[[""Revival Tree Root"", 1], [""Dragon Blood"", 1], [""Dragon Greaves"", 1]]","[[""Cursed Greaves -1"", 1], null, null]"
+,94,"[[""Leathercraft"", 1]]",Elixir Tank,Fire,,"[[""Sheep Leather"", 1], [""Brass Tank"", 1], [""Elixir"", 4]]","[null, null, null]"
+,94,[],Bewitched Mask,Dark,,"[[""Cursed Mask -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Mask"", 1], null, null]"
+,94,[],Vexed Coif,Dark,,"[[""Hexed Coif -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Coif"", 1], null, null]"
+,95,[],Max-Potion,Water,,"[[""Distilled Water"", 1], [""Dragon Blood"", 1], [""Reishi Mushroom"", 1], [""Sage"", 4]]","[[""Max-Potion +1"", 1], [""Max-Potion +2"", 1], [""Max-Potion +3"", 1]]"
+,95,[],Marksman's Oil,Water,,"[[""Goblin Grease"", 1], [""Slime Juice"", 1]]","[null, null, null]"
+,95,"[[""Goldsmithing"", 48]]",Platinum Bullet,Fire,,"[[""Platinum Ingot"", 1], [""Firesand"", 1]]","[[""Platinum Bullet"", 66], [""Platinum Bullet"", 99], [""Platinum Bullet"", 99]]"
+,95,[],Bewitched Mail,Dark,,"[[""Cursed Mail -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Mail"", 1], null, null]"
+,95,[],Vexed Doublet,Dark,,"[[""Hexed Doublet -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Doublet"", 1], null, null]"
+,95,[],Max-Potion,Water,,"[[""Alchemy Kit 95"", 1]]","[null, null, null]"
+,96,[],Platinum Nugget,Fire,,"[[""Panacea"", 1], [""Platinum Leaf"", 1]]","[[""Platinum Nugget"", 12], null, null]"
+,96,[],Cursed Mask,Dark,,"[[""Revival Tree Root"", 1], [""Dragon Blood"", 1], [""Dragon Mask"", 1]]","[[""Cursed Mask -1"", 1], null, null]"
+,97,[],Ice Shield,Ice,,"[[""Diamond Shield"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Ice Shield +1"", 1], null, null]"
+,97,[],Papillion,Light,,"[[""Artificial Lens"", 1], [""Insect Wing"", 2], [""Prism Powder"", 1], [""Rainbow Thread"", 1]]","[[""Papillion"", 66], [""Papillion"", 99], [""Papillion"", 99]]"
+,98,[],Panacea,Light,,"[[""Mercury"", 1], [""Philosopher's Stone"", 1], [""Rock Salt"", 1], [""Sulfur"", 1]]","[[""Panacea"", 2], [""Panacea"", 3], [""Panacea"", 4]]"
+,98,[],Dragon Slayer,Dark,,"[[""Demon Blood"", 1], [""Ameretat Vine"", 1], [""Adaman Kilij"", 1]]","[[""Wyrm Slayer"", 1], null, null]"
+,98,[],Demon Slayer,Dark,,"[[""Dragon Blood"", 1], [""Ameretat Vine"", 1], [""Adaman Kilij"", 1]]","[[""Devil Slayer"", 1], null, null]"
+,99,[],Cursed Mail,Dark,,"[[""Revival Tree Root"", 1], [""Dragon Blood"", 2], [""Dragon Mail"", 1]]","[[""Cursed Mail -1"", 1], null, null]"
+,99,[],Cantarella,Dark,,"[[""Distilled Water"", 1], [""Fresh Orc Liver"", 1], [""Mercury"", 1], [""Paralysis Dust"", 1], [""Venom Dust"", 1]]","[null, null, null]"
+,99,[],San d'Orian Tea Set,Fire,,"[[""Silver Ingot"", 1], [""Angelstone"", 1], [""Kaolin"", 2]]","[null, null, null]"
+,99,[],Ephedra Ring,Light,,"[[""Holy Water"", 2], [""Hallowed Water"", 1], [""Mythril Ring"", 1]]","[[""Haoma's Ring"", 1], null, null]"
+,99,[],Saida Ring,Light,,"[[""Holy Water"", 2], [""Hallowed Water"", 1], [""Orichalcum Ring"", 1]]","[[""Eshmun's Ring"", 1], null, null]"
+,100,[],Pro-Ether,Water,,"[[""Ahriman Wing"", 2], [""Distilled Water"", 1], [""Dried Marjoram"", 3], [""Treant Bulb"", 1], [""Wyvern Wing"", 1]]","[[""Pro-Ether +1"", 1], [""Pro-Ether +2"", 1], [""Pro-Ether +3"", 1]]"
+,100,"[[""Goldsmithing"", 60]]",Crystal Rose,Fire,,"[[""Scintillant Ingot"", 1], [""Flint Glass Sheet"", 3]]","[null, null, null]"
+,101,"[[""Goldsmithing"", 60]]",Gold Algol,Fire,,"[[""Divine Lumber"", 1], [""Gold Ingot"", 2], [""Scintillant Ingot"", 1], [""Super Cermet"", 4]]","[[""Gold Algol +1"", 1], null, null]"
+,102,[],Sun Water,Light,,"[[""Beastman Blood"", 1], [""Cactuar Root"", 1], [""Mercury"", 1], [""Philosopher's Stone"", 1]]","[[""Sun Water"", 4], null, null]"
+,102,[],Pungent Powder,Light,,"[[""Glass Fiber x 2"", 1], [""Ahriman Lens"", 1], [""Gelatin"", 1], [""Cornstarch"", 1], [""Saruta Cotton"", 1], [""Silk Cloth"", 1], [""Pagodite"", 1]]","[null, null, null]"
+,102,[],Pungent Powder II,Light,,"[[""Glass Fiber x 2"", 1], [""Ahriman Lens"", 1], [""Revival Root"", 1], [""Cornstarch"", 1], [""Saruta Cotton"", 1], [""Silk Cloth"", 1], [""Pagodite"", 1]]","[null, null, null]"
+,102,[],Pungent Powder III,Light,,"[[""Glass Fiber x 2"", 1], [""Ahriman Lens"", 1], [""unknown Question"", 1], [""Cornstarch"", 1], [""Saruta Cotton"", 1], [""Silk Cloth"", 1], [""Pagodite"", 1]]","[null, null, null]"
+,103,[],Turbo Charger II,Fire,Iatrochemistry,"[[""Mythril Sheet"", 1], [""Glass Fiber"", 1], [""Glass Sheet"", 1], [""Scroll of Haste"", 1], [""Mega Fan"", 1], [""Vanir Battery"", 1]]","[null, null, null]"
+,103,[],Vivi-Valve II,Fire,Iatrochemistry,"[[""Mythril Sheet"", 1], [""Glass Fiber"", 1], [""Light Bead"", 1], [""Vanir Battery"", 1]]","[null, null, null]"
+,104,[],Saline Broth,Dark,,"[[""Mercury"", 1], [""Beastman Blood"", 1], [""Philosopher's Stone"", 1], [""Buried Vestige"", 1]]","[[""Saline Broth"", 6], [""Saline Broth"", 8], [""Saline Broth"", 10]]"
+,104,[],Abrasion Bolt Heads,Wind,,"[[""Mercury"", 1], [""Animal Glue"", 1], [""Belladonna Sap"", 1], [""Acuex Poison"", 1], [""Ra'Kaznar Ingot"", 1]]","[[""Abrasion Bolt Heads"", 8], [""Abrasion Bolt Heads"", 10], [""Abrasion Bolt Heads"", 12]]"
+,104,[],Righteous Bolt Heads,Wind,,"[[""Animal Glue"", 1], [""Avatar Blood"", 1], [""Hallowed Water"", 2], [""Ra'Kaznar Ingot"", 1]]","[[""Righteous Bolt Heads"", 8], [""Righteous Bolt Heads"", 10], [""Righteous Bolt Heads"", 12]]"
+,105,[],Hexed Nails,Dark,,"[[""Revival Tree Root"", 1], [""Ethereal Squama"", 1], [""Belladonna Sap"", 1], [""Ebony Sabots"", 1]]","[[""Hexed Nails -1"", 1], null, null]"
+,105,[],Azure Cermet,Fire,,"[[""Cermet Chunk"", 1], [""Panacea"", 1], [""Azure Leaf"", 1]]","[[""Azure Cermet"", 2], [""Azure Cermet"", 3], [""Azure Cermet"", 4]]"
+,106,[],Hexed Slops,Dark,,"[[""Revival Tree Root"", 1], [""Ethereal Squama"", 1], [""Belladonna Sap"", 1], [""Velvet Slops"", 1]]","[[""Hexed Slops -1"", 1], null, null]"
+,106,"[[""Goldsmithing"", 25]]",Malison Medallion,Earth,,"[[""Silver Chain"", 2], [""Heliodor"", 1], [""Neutralizing Silver Ingot"", 1], [""Holy Water"", 2], [""Hallowed Water"", 1]]","[[""Debilis Medallion"", 1], null, null]"
+,107,[],Hexed Coif,Dark,,"[[""Revival Tree Root"", 1], [""Ethereal Squama"", 1], [""Belladonna Sap"", 1], [""Velvet Hat"", 1]]","[[""Hexed Coif -1"", 1], null, null]"
+,108,[],Hexed Gages,Dark,,"[[""Revival Tree Root"", 1], [""Ethereal Squama"", 1], [""Belladonna Sap"", 1], [""Velvet Cuffs"", 1]]","[[""Hexed Gages -1"", 1], null, null]"
+,110,[],Hexed Doublet,Dark,,"[[""Revival Tree Root"", 1], [""Ethereal Squama"", 1], [""Belladonna Sap"", 2], [""Velvet Robe"", 1]]","[[""Hexed Doublet -1"", 1], null, null]"
+,110,[],Killer's Kilij,Dark,,"[[""Fiend Blood"", 1], [""Demon Blood"", 1], [""Dragon Blood"", 1], [""Avatar Blood"", 1], [""Beast Blood"", 1], [""Chimera Blood"", 1], [""Ameretat Vine"", 1], [""Adaman Kilij"", 1]]","[[""Eradicator's Kilij"", 1], null, null]"
+,110,"[[""Bonecraft"", 55]]",Bagua Charm,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Charm"", 1]]","[[""Bagua Charm +1"", 1], [""Bagua Charm +2"", 1], null]"
+,110,"[[""Bonecraft"", 55]]",Bard's Charm,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Charm"", 1]]","[[""Bard's Charm +1"", 1], [""Bard's Charm +2"", 1], null]"
+,110,"[[""Bonecraft"", 55]]",Commodore Charm,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Charm"", 1]]","[[""Commodore Charm +1"", 1], [""Commodore Charm +2"", 1], null]"
+,111,"[[""Bonecraft"", 70]]",Bewitched Greaves,Dark,,"[[""Cursed Greaves"", 1], [""Emperor Arthro's Shell"", 1], [""Plovid Effluvium"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Greaves"", 1], null, null]"
+,111,"[[""Clothcraft"", 70]]",Vexed Nails,Dark,,"[[""Sif's Macrame"", 1], [""Defiant Sweat"", 1], [""Eschite Ore"", 1], [""Hexed Nails"", 1]]","[[""Jinxed Nails"", 1], null, null]"
+,111,[],Futhark Claymore,Light,Alchemist's aurum tome,"[[""Smithing - (Information Needed)"", 1], [""Defiant Scarf"", 1], [""Dark Matter"", 1], [""Niobium Ore"", 1], [""Moldy G. Sword"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Peord Claymore"", 1], [""Morgelai"", 1], null]"
+,111,[],Wyrm Lance,Light,Alchemist's aurum tome,"[[""Woodworking - (Information Needed)"", 1], [""Defiant Scarf"", 1], [""Dark Matter"", 1], [""Cypress Log"", 1], [""Moldy Polearm"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Pteroslaver Lance"", 1], [""Aram"", 1], null]"
+,112,"[[""Bonecraft"", 70]]",Bewitched Finger Gauntlets,Dark,,"[[""Cursed Finger Gauntlets"", 1], [""Emperor Arthro's Shell"", 1], [""Plovid Effluvium"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Finger Gauntlets"", 1], null, null]"
+,112,"[[""Clothcraft"", 70]]",Vexed Gages,Dark,,"[[""Sif's Macrame"", 1], [""Defiant Sweat"", 1], [""Eschite Ore"", 1], [""Hexed Gages"", 1]]","[[""Jinxed Gages"", 1], null, null]"
+,113,[],Dija Sword,Dark,,"[[""Dragon Blood"", 1], [""Yggdreant Root"", 1], [""Bastard Sword"", 1]]","[[""Dija Sword +1"", 1], null, null]"
+,113,"[[""Bonecraft"", 70]]",Bewitched Cuisses,Dark,,"[[""Cursed Cuisses"", 1], [""Emperor Arthro's Shell"", 1], [""Plovid Effluvium"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Cuisses"", 1], null, null]"
+,113,"[[""Clothcraft"", 70]]",Vexed Slops,Dark,,"[[""Sif's Macrame"", 1], [""Defiant Sweat"", 1], [""Eschite Ore"", 1], [""Hexed Slops"", 1]]","[[""Jinxed Slops"", 1], null, null]"
+,114,"[[""Bonecraft"", 70]]",Bewitched Mask,Dark,,"[[""Cursed Mask"", 1], [""Emperor Arthro's Shell"", 1], [""Plovid Effluvium"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Mask"", 1], null, null]"
+,114,"[[""Clothcraft"", 70]]",Vexed Coif,Dark,,"[[""Sif's Macrame"", 1], [""Defiant Sweat"", 1], [""Eschite Ore"", 1], [""Hexed Coif"", 1]]","[[""Jinxed Coif"", 1], null, null]"
+,115,"[[""Bonecraft"", 70]]",Bewitched Mail,Dark,,"[[""Cursed Mail"", 1], [""Emperor Arthro's Shell"", 1], [""Plovid Effluvium"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Mail"", 1], null, null]"
+,115,"[[""Clothcraft"", 70]]",Vexed Doublet,Dark,,"[[""Sif's Macrame"", 1], [""Defiant Sweat"", 1], [""Eschite Ore"", 1], [""Hexed Doublet"", 1]]","[[""Jinxed Doublet"", 1], null, null]"
+,115,[],Pinga Pumps,Fire,Alchemist's argentum tome,"[[""Darksteel Sheet"", 1], [""Rockfin Tooth"", 1], [""Defiant Scarf"", 1], [""Azure Cermet"", 2]]","[[""Pinga Pumps +1"", 1], null, null]"
+,115,[],Ratri Sollerets,Fire,Alchemist's argentum tome,"[[""Gold Sheet"", 1], [""Cehuetzi Claw"", 1], [""Macuil Plating"", 1], [""Azure Cermet"", 2]]","[[""Ratri Sollerets +1"", 1], null, null]"
+,115,[],Pinga Mittens,Fire,Alchemist's argentum tome,"[[""Darksteel Sheet"", 2], [""Rockfin Tooth"", 1], [""Defiant Scarf"", 1], [""Azure Cermet"", 2]]","[[""Pinga Mittens +1"", 1], null, null]"
+,115,[],Ratri Gadlings,Fire,Alchemist's argentum tome,"[[""Gold Sheet"", 2], [""Cehuetzi Claw"", 1], [""Macuil Plating"", 1], [""Azure Cermet"", 2]]","[[""Ratri Gadlings +1"", 1], null, null]"
+,115,[],Pinga Crown,Fire,Alchemist's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Rockfin Tooth"", 1], [""Defiant Scarf"", 1], [""Azure Cermet"", 2]]","[[""Pinga Crown +1"", 1], null, null]"
+,115,[],Ratri Sallet,Fire,Alchemist's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Cehuetzi Claw"", 1], [""Macuil Plating"", 1], [""Azure Cermet"", 2]]","[[""Ratri Sallet +1"", 1], null, null]"
+,115,[],Pinga Pants,Fire,Alchemist's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Rockfin Tooth"", 1], [""Defiant Scarf"", 1], [""Azure Cermet"", 3]]","[[""Pinga Pants +1"", 1], null, null]"
+,115,[],Ratri Cuisses,Fire,Alchemist's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Cehuetzi Claw"", 1], [""Macuil Plating"", 1], [""Azure Cermet"", 3]]","[[""Ratri Cuisses +1"", 1], null, null]"
+,115,[],Pinga Tunic,Fire,Alchemist's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Rockfin Tooth"", 1], [""Defiant Scarf"", 2], [""Azure Cermet"", 3]]","[[""Pinga Tunic +1"", 1], null, null]"
+,115,[],Ratri Breastplate,Fire,Alchemist's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Cehuetzi Claw"", 1], [""Macuil Plating"", 2], [""Azure Cermet"", 3]]","[[""Ratri Breastplate +1"", 1], null, null]"
+,115,[],Raetic Algol,Fire,Alchemist's argentum tome,"[[""Azure Cermet"", 1], [""Rune Algol"", 1]]","[[""Raetic Algol +1"", 1], null, null]"
+,118,[],Chirich Ring,Fire,,"[[""Plovid Effluvium"", 1], [""Macuil Plating"", 1], [""Defiant Sweat"", 1], [""Dark Matter"", 1]]","[[""Chirich Ring +1"", 1], null, null]"
diff --git a/datasets/Bonecraft.txt b/datasets/Bonecraft.txt
index ae18fb6..47913c8 100644
--- a/datasets/Bonecraft.txt
+++ b/datasets/Bonecraft.txt
@@ -1,7 +1,5 @@
Bonecrafting Crafted Items
-Amateur (1-10)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Shell Powder
@@ -201,9 +199,7 @@ Main Craft: Bonecraft - (10)
Bonecraft Kit 10
-Recruit (11-20)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Bone Earring
@@ -424,9 +420,7 @@ Main Craft: Bonecraft - (20)
Bonecraft Kit 20
-Initiate (21-30)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Carapace Powder
@@ -706,9 +700,7 @@ Main Craft: Bonecraft - (30)
Bonecraft Kit 30
-Novice (31-40)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Beetle Gorget
@@ -996,9 +988,7 @@ Main Craft: Bonecraft - (40)
Bonecraft Kit 40
-Apprentice (41-50)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Bone Knife
@@ -1383,9 +1373,7 @@ Main Craft: Bonecraft - (50)
Bonecraft Kit 50
-Journeyman (51-60)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Shock Subligar
@@ -1726,9 +1714,7 @@ Main Craft: Bonecraft - (60)
Bonecraft Kit 60
-Craftsman (61-70)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Fang Earring
@@ -2105,9 +2091,7 @@ Main Craft: Bonecraft - (70)
Bonecraft Kit 70
-Artisan (71-80)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Hornet Fleuret
@@ -2629,9 +2613,7 @@ Main Craft: Bonecraft - (80)
Bonecraft Kit 80
-Adept (81-90)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Darksteel Shield
@@ -3248,9 +3230,7 @@ Main Craft: Bonecraft - (90)
Bonecraft Kit 90
-Veteran (91-100)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Cursed Subligar
@@ -4256,9 +4236,7 @@ Sub Craft(s): Leathercraft - (??), Clothcraft - (??)
Emperor Arthro's Shell
-Expert (101-110)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Hydra Mask
@@ -4716,9 +4694,7 @@ Sub Craft(s): Leathercraft - (55)
Moldy Gorget
-Authority (111-120)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Ej Necklace
diff --git a/datasets/Bonecraft_v2.csv b/datasets/Bonecraft_v2.csv
index f107e73..fced0fe 100644
--- a/datasets/Bonecraft_v2.csv
+++ b/datasets/Bonecraft_v2.csv
@@ -1,360 +1,360 @@
category,level,subcrafts,name,crystal,key_item,ingredients,hq_yields
-Amateur,1,[],Shell Powder,Wind,,"[[""Seashell"", 3]]","[[""Shell Powder"", 2], [""Shell Powder"", 3], [""Shell Powder"", 4]]"
-Amateur,1,[],Wailing Bone Chip,Wind,Bone Ensorcellment,"[[""Bone Chip"", 1], [""Ice Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
-Amateur,3,[],Shell Earring,Wind,,"[[""Seashell"", 2]]","[[""Shell Earring +1"", 1], null, null]"
-Amateur,4,[],Bone Hairpin,Wind,,"[[""Bone Chip"", 1]]","[[""Bone Hairpin +1"", 1], null, null]"
-Amateur,5,[],Shell Powder,Wind,,"[[""Vongola Clam"", 2]]","[[""Shell Powder"", 2], [""Shell Powder"", 3], [""Shell Powder"", 4]]"
-Amateur,5,[],Shell Powder,Wind,,"[[""Bonecraft Kit 5"", 1]]","[null, null, null]"
-Amateur,7,[],Eldritch Bone Hairpin,Wind,,"[[""Wailing Bone Chip"", 1], [""Bone Hairpin"", 1]]","[null, null, null]"
-Amateur,7,[],Shell Ring,Wind,,"[[""Fish Scales"", 1], [""Seashell"", 1]]","[[""Shell Ring +1"", 1], null, null]"
-Amateur,8,[],Wailing Shell,Wind,Bone Ensorcellment,"[[""Seashell"", 1], [""Ice Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
-Amateur,9,"[[""Smithing"", 3]]",Cat Baghnakhs,Earth,,"[[""Bronze Sheet"", 1], [""Rabbit Hide"", 1], [""Bone Chip"", 3]]","[[""Cat Baghnakhs +1"", 1], null, null]"
-Amateur,10,[],Bone Arrowheads,Wind,,"[[""Bone Chip"", 2]]","[[""Bone Arrowheads"", 8], [""Bone Arrowheads"", 10], [""Bone Arrowheads"", 12]]"
-Amateur,10,[],Bone Arrowheads,Wind,Filing,"[[""Bone Chip"", 6], [""Shagreen File"", 1]]","[[""Bone Arrowheads"", 24], [""Bone Arrowheads"", 30], [""Bone Arrowheads"", 36]]"
-Amateur,10,[],Manashell Ring,Wind,,"[[""Wailing Shell"", 1], [""Shell Ring"", 1]]","[null, null, null]"
-Amateur,10,"[[""Woodworking"", 2]]",Bone Arrow,Wind,,"[[""Arrowwood Lumber"", 1], [""Yagudo Feather"", 2], [""Bone Chip"", 3]]","[[""Bone Arrow"", 66], [""Bone Arrow"", 99], [""Bone Arrow"", 99]]"
-Amateur,10,[],Bone Arrowheads,Wind,,"[[""Bonecraft Kit 10"", 1], [""Recruit (11-20)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,12,"[[""Goldsmithing"", 3]]",Bone Earring,Wind,,"[[""Bone Chip"", 2], [""Brass Ingot"", 1]]","[[""Bone Earring +1"", 1], null, null]"
-Amateur,13,[],Gelatin,Fire,,"[[""Chicken Bone"", 2], [""Distilled Water"", 1]]","[[""Gelatin"", 2], [""Gelatin"", 3], [""Gelatin"", 4]]"
-Amateur,14,"[[""Goldsmithing"", 14]]",Cornette,Wind,,"[[""Brass Ingot"", 1], [""Bone Chip"", 1]]","[[""Cornette +1"", 1], [""Cornette +1"", 1], [""Cornette +2"", 1]]"
-Amateur,14,[],Windurstian Baghnakhs,Earth,,"[[""Freesword's Baghnakhs"", 1], [""Bone Chip"", 1]]","[[""Federation Baghnakh"", 1], null, null]"
-Amateur,15,[],Fang Necklace,Earth,,"[[""Bat Fang"", 4], [""Black Tiger Fang"", 1], [""Bone Chip"", 2], [""Grass Thread"", 1]]","[[""Spike Necklace"", 1], null, null]"
-Amateur,15,[],Fang Necklace,Earth,,"[[""Bonecraft Kit 15"", 1]]","[null, null, null]"
-Amateur,16,[],Fish Scales,Lightning,,"[[""Gavial Fish"", 1]]","[[""High-Quality Pugil Scales"", 1], [""High-Quality Pugil Scales"", 2], [""High-Quality Pugil Scales"", 3]]"
-Amateur,16,[],Vivio Femur,Wind,Bone Purification,"[[""Giant Femur"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,16,[],Gelatin,Fire,,"[[""Bone Chip"", 4], [""Distilled Water"", 1]]","[[""Gelatin"", 2], [""Gelatin"", 3], [""Gelatin"", 4]]"
-Amateur,17,[],Bone Ring,Wind,,"[[""Sheep Tooth"", 1], [""Bone Chip"", 1]]","[[""Bone Ring +1"", 1], null, null]"
-Amateur,18,[],Bone Mask,Earth,,"[[""Giant Femur"", 1], [""Bone Chip"", 1], [""Sheep Leather"", 1]]","[[""Bone Mask +1"", 1], null, null]"
-Amateur,19,[],Pearl,Wind,,"[[""Shall Shell"", 1]]","[[""Black Pearl"", 1], [""Black Pearl"", 1], [""Black Pearl"", 1]]"
-Amateur,19,[],Pearl,Wind,,"[[""Istiridye"", 1]]","[[""Black Pearl"", 1], [""Black Pearl"", 1], [""Black Pearl"", 1]]"
-Amateur,20,[],Bone Axe,Wind,,"[[""Giant Femur"", 1], [""Ram Horn"", 2]]","[[""Bone Axe +1"", 1], null, null]"
-Amateur,20,"[[""Leathercraft"", 5]]",Bone Mittens,Earth,,"[[""Bone Chip"", 2], [""Sheep Leather"", 2]]","[[""Bone Mittens +1"", 1], null, null]"
-Amateur,20,[],Bone Axe,Wind,,"[[""Bonecraft Kit 20"", 1], [""Initiate (21-30)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,21,[],Carapace Powder,Wind,,"[[""Beetle Shell"", 2]]","[null, null, null]"
-Amateur,22,"[[""Leathercraft"", 5]]",Bone Leggings,Earth,,"[[""Giant Femur"", 1], [""Bone Chip"", 1], [""Sheep Leather"", 2]]","[[""Bone Leggings +1"", 1], null, null]"
-Amateur,23,"[[""Woodworking"", 6]]",Bone Pick,Wind,,"[[""Ash Lumber"", 1], [""Giant Femur"", 1]]","[[""Bone Pick +1"", 1], null, null]"
-Amateur,24,"[[""Leathercraft"", 6]]",Bone Subligar,Earth,,"[[""Bone Chip"", 1], [""Grass Cloth"", 1], [""Sheep Leather"", 2]]","[[""Bone Subligar +1"", 1], null, null]"
-Amateur,24,[],Gemshorn,Wind,,"[[""Giant Femur"", 1], [""Beetle Jaw"", 1]]","[[""Gemshorn +1"", 1], null, null]"
-Amateur,24,[],Jolt Axe,Wind,Bone Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Bone Axe"", 1]]","[null, null, null]"
-Amateur,25,[],Beetle Ring,Wind,,"[[""Beetle Jaw"", 1]]","[[""Beetle Ring +1"", 1], null, null]"
-Amateur,25,[],Smooth Beetle Jaw,Wind,Bone Purification,"[[""Beetle Jaw"", 1], [""Wind Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,25,[],Beetle Ring,Wind,,"[[""Bonecraft Kit 25"", 1]]","[null, null, null]"
-Amateur,26,"[[""Leathercraft"", 7]]",Bone Harness,Earth,,"[[""Pugil Scales"", 1], [""Sheep Leather"", 2], [""Giant Femur"", 1], [""Bone Chip"", 1]]","[[""Bone Harness +1"", 1], null, null]"
-Amateur,26,"[[""Leathercraft"", 11]]",Mettle Leggings,Earth,,"[[""Samwell's Shank"", 1], [""Sheep Leather"", 2], [""Bone Chip"", 1]]","[[""Mettle Leggings +1"", 1], null, null]"
-Amateur,27,[],Beetle Earring,Earth,,"[[""Beetle Jaw"", 1], [""Silver Earring"", 1]]","[[""Beetle Earring +1"", 1], null, null]"
-Amateur,27,[],Wailing Ram Horn,Wind,Bone Ensorcellment,"[[""Ram Horn"", 1], [""Ice Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
-Amateur,28,[],Gelatin,Fire,,"[[""Giant Femur"", 1], [""Distilled Water"", 1]]","[[""Gelatin"", 6], [""Gelatin"", 8], [""Gelatin"", 10]]"
-Amateur,29,[],Horn Hairpin,Wind,,"[[""Ram Horn"", 1]]","[[""Horn Hairpin +1"", 1], null, null]"
-Amateur,29,[],San d'Orian Horn,Wind,,"[[""Royal Spearman's Horn"", 1], [""Giant Femur"", 1]]","[[""Kingdom Horn"", 1], null, null]"
-Amateur,29,"[[""Leathercraft"", 20]]",Seer's Crown,Earth,,"[[""Linen Thread"", 1], [""Lizard Molt"", 1], [""Bone Chip"", 1], [""Coeurl Whisker"", 1]]","[[""Seer's Crown +1"", 1], null, null]"
-Amateur,29,[],Healing Harness,Earth,,"[[""Vivio Femur"", 1], [""Bone Harness"", 1]]","[null, null, null]"
-Amateur,30,[],Beetle Mask,Earth,,"[[""Lizard Skin"", 1], [""Beetle Jaw"", 1]]","[[""Beetle Mask +1"", 1], null, null]"
-Amateur,30,"[[""Leathercraft"", 8]]",Beetle Mittens,Earth,,"[[""Lizard Skin"", 2], [""Beetle Shell"", 1]]","[[""Beetle Mittens +1"", 1], null, null]"
-Amateur,30,[],Beetle Mask,Earth,,"[[""Bonecraft Kit 30"", 1], [""Novice (31-40)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,31,[],Beetle Gorget,Earth,,"[[""Beetle Jaw"", 2], [""Beetle Shell"", 1]]","[[""Green Gorget"", 1], null, null]"
-Amateur,32,"[[""Leathercraft"", 8]]",Beetle Leggings,Earth,,"[[""Lizard Skin"", 2], [""Beetle Jaw"", 1], [""Beetle Shell"", 1]]","[[""Beetle Leggings +1"", 1], null, null]"
-Amateur,32,[],Eldritch Horn Hairpin,Wind,,"[[""Wailing Ram Horn"", 1], [""Horn Hairpin"", 1]]","[null, null, null]"
-Amateur,33,[],Beetle Arrowheads,Wind,,"[[""Beetle Jaw"", 1], [""Bone Chip"", 1]]","[[""Beetle Arrowheads"", 8], [""Beetle Arrowheads"", 10], [""Beetle Arrowheads"", 12]]"
-Amateur,33,[],Beetle Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Beetle Jaw"", 3], [""Shagreen File"", 1]]","[[""Beetle Arrowheads"", 24], [""Beetle Arrowheads"", 30], [""Beetle Arrowheads"", 36]]"
-Amateur,34,"[[""Leathercraft"", 9]]",Beetle Subligar,Earth,,"[[""Cotton Cloth"", 1], [""Lizard Skin"", 1], [""Beetle Jaw"", 1]]","[[""Beetle Subligar +1"", 1], null, null]"
-Amateur,35,[],Turtle Shield,Earth,,"[[""Turtle Shell"", 1], [""Beetle Shell"", 1]]","[[""Turtle Shield +1"", 1], null, null]"
-Amateur,35,[],Turtle Shield,Earth,,"[[""Bonecraft Kit 35"", 1]]","[null, null, null]"
-Amateur,36,"[[""Leathercraft"", 9]]",Beetle Harness,Earth,,"[[""Lizard Skin"", 3], [""Beetle Shell"", 2]]","[[""Beetle Harness +1"", 1], null, null]"
-Amateur,37,[],Horn Ring,Wind,,"[[""Fish Scales"", 1], [""Ram Horn"", 1]]","[[""Horn Ring +1"", 1], null, null]"
-Amateur,37,"[[""Leathercraft"", 24]]",Shade Tiara,Earth,,"[[""Uragnite Shell"", 1], [""Eft Skin"", 1], [""Photoanima"", 1]]","[[""Shade Tiara +1"", 1], null, null]"
-Amateur,38,[],Fang Arrowheads,Wind,,"[[""Black Tiger Fang"", 1], [""Bone Chip"", 1]]","[[""Fang Arrowheads"", 8], [""Fang Arrowheads"", 10], [""Fang Arrowheads"", 12]]"
-Amateur,38,[],Fang Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Black Tiger Fang"", 3], [""Shagreen File"", 1]]","[[""Fang Arrowheads"", 24], [""Fang Arrowheads"", 30], [""Fang Arrowheads"", 36]]"
-Amateur,38,"[[""Clothcraft"", 21], [""Leathercraft"", 24]]",Shade Mittens,Earth,,"[[""Luminicloth"", 1], [""Sheep Leather"", 1], [""Tiger Leather"", 1], [""Uragnite Shell"", 1], [""Eft Skin"", 1], [""Photoanima"", 1]]","[[""Shade Mittens +1"", 1], null, null]"
-Amateur,39,"[[""Clothcraft"", 23], [""Leathercraft"", 24]]",Shade Tights,Earth,,"[[""Luminicloth"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""Uragnite Shell"", 1], [""Eft Skin"", 1], [""Photoanima"", 1]]","[[""Shade Tights +1"", 1], null, null]"
-Amateur,40,[],Titanictus Shell,Lightning,,"[[""Titanictus"", 1]]","[[""Titanictus Shell"", 2], [""Titanictus Shell"", 3], [""Titanictus Shell"", 4]]"
-Amateur,40,"[[""Clothcraft"", 22], [""Leathercraft"", 24]]",Shade Leggings,Earth,,"[[""Luminicloth"", 1], [""Lizard Skin"", 1], [""Tiger Leather"", 2], [""Uragnite Shell"", 1], [""Eft Skin"", 1], [""Photoanima"", 1]]","[[""Shade Leggings +1"", 1], null, null]"
-Amateur,40,[],Titanictus Shell,Lightning,,"[[""Armored Pisces"", 1]]","[null, null, null]"
-Amateur,40,[],Bone Cudgel,Wind,,"[[""Bone Chip"", 6], [""Grass Cloth"", 1], [""Giant Femur"", 1]]","[[""Bone Cudgel +1"", 1], null, null]"
-Amateur,40,[],Bone Cudgel,Wind,,"[[""Bonecraft Kit 40"", 1], [""Apprentice (41-50)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,41,[],Bone Knife,Wind,,"[[""Walnut Lumber"", 1], [""Giant Femur"", 1]]","[[""Bone Knife +1"", 1], null, null]"
-Amateur,41,"[[""Leathercraft"", 13]]",Garish Crown,Earth,,"[[""Lizard Molt"", 1], [""Beetle Jaw"", 1], [""Coeurl Whisker"", 1], [""Bloodthread"", 1]]","[[""Rubious Crown"", 1], null, null]"
-Amateur,41,[],Luminous Shell,Wind,Bone Ensorcellment,"[[""Crab Shell"", 1], [""Lightning Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
-Amateur,41,[],Vivio Crab Shell,Wind,Bone Purification,"[[""Crab Shell"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,42,"[[""Goldsmithing"", 11]]",Carapace Ring,Wind,,"[[""Mythril Ingot"", 1], [""Crab Shell"", 1]]","[[""Carapace Ring +1"", 1], null, null]"
-Amateur,42,"[[""Clothcraft"", 24], [""Leathercraft"", 25]]",Shade Harness,Earth,,"[[""Luminicloth"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""Uragnite Shell"", 2], [""Eft Skin"", 2], [""Photoanima"", 1]]","[[""Shade Harness +1"", 1], null, null]"
-Amateur,43,[],Horn Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Ram Horn"", 1]]","[[""Horn Arrowheads"", 8], [""Horn Arrowheads"", 10], [""Horn Arrowheads"", 12]]"
-Amateur,43,[],Horn Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Ram Horn"", 3], [""Shagreen File"", 1]]","[[""Horn Arrowheads"", 24], [""Horn Arrowheads"", 30], [""Horn Arrowheads"", 36]]"
-Amateur,43,"[[""Alchemy"", 31]]",Skeleton Key,Earth,,"[[""Carbon Fiber"", 1], [""Chicken Bone"", 1], [""Glass Fiber"", 1], [""Bat Fang"", 2], [""Animal Glue"", 1], [""Hecteyes Eye"", 1], [""Sheep Tooth"", 1]]","[[""Skeleton Key"", 4], [""Skeleton Key"", 6], [""Skeleton Key"", 8]]"
-Amateur,44,"[[""Leathercraft"", 11]]",Carapace Mittens,Earth,,"[[""Dhalmel Leather"", 1], [""Fish Scales"", 1], [""Crab Shell"", 1]]","[[""Carapace Mittens +1"", 1], null, null]"
-Amateur,44,[],Mist Crown,Earth,,"[[""Smooth Beetle Jaw"", 1], [""Garish Crown"", 1]]","[null, null, null]"
-Amateur,44,[],Deathbone Knife,Wind,Bone Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Bone Knife"", 1]]","[null, null, null]"
-Amateur,45,[],Carapace Mask,Earth,,"[[""Crab Shell"", 1], [""Dhalmel Leather"", 1]]","[[""Carapace Mask +1"", 1], null, null]"
-Amateur,45,"[[""Woodworking"", 6]]",Serpette,Wind,,"[[""Ash Lumber"", 1], [""Grass Cloth"", 1], [""Giant Femur"", 2], [""Bukktooth"", 1]]","[[""Serpette +1"", 1], null, null]"
-Amateur,45,[],Carapace Mask,Earth,,"[[""Bonecraft Kit 45"", 1]]","[null, null, null]"
-Amateur,46,"[[""Leathercraft"", 12]]",Carapace Leggings,Earth,,"[[""Crab Shell"", 1], [""Fish Scales"", 1], [""Dhalmel Leather"", 2]]","[[""Carapace Leggings +1"", 1], null, null]"
-Amateur,47,[],Horn,Wind,,"[[""Beetle Jaw"", 1], [""Ram Horn"", 1]]","[[""Horn +1"", 1], null, null]"
-Amateur,47,"[[""Smithing"", 45], [""Woodworking"", 33]]",Mandibular Sickle,Wind,,"[[""Darksteel Ingot"", 1], [""Ebony Lumber"", 1], [""Ram Leather"", 1], [""Antlion Jaw"", 1]]","[[""Antlion Sickle"", 1], null, null]"
-Amateur,47,[],Thunder Mittens,Earth,,"[[""Luminous Shell"", 1], [""Carapace Mittens"", 1]]","[null, null, null]"
-Amateur,48,"[[""Leathercraft"", 12]]",Carapace Subligar,Earth,,"[[""Linen Cloth"", 1], [""Dhalmel Leather"", 1], [""Crab Shell"", 1]]","[[""Carapace Subligar +1"", 1], null, null]"
-Amateur,49,[],Carapace Gorget,Earth,,"[[""Iron Chain"", 1], [""Crab Shell"", 2]]","[[""Blue Gorget"", 1], null, null]"
-Amateur,49,"[[""Blacksmithing"", 42], [""Goldsmithing"", 28]]",Thug's Jambiya,Fire,,"[[""Brass Ingot"", 1], [""Mythril Ingot"", 1], [""Turquoise"", 1], [""Wivre Horn"", 1]]","[[""Thug's Jambiya +1"", 1], null, null]"
-Amateur,50,[],Bone Rod,Fire,,"[[""Giant Femur"", 1], [""Ram Horn"", 2]]","[[""Bone Rod +1"", 1], null, null]"
-Amateur,50,"[[""Leathercraft"", 13]]",Carapace Harness,Earth,,"[[""Dhalmel Leather"", 2], [""Crab Shell"", 2]]","[[""Carapace Harness +1"", 1], null, null]"
-Amateur,50,[],Vivio Scorpion Claw,Wind,Bone Purification,"[[""Scorpion Claw"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,50,[],Jet Sickle,Wind,Bone Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Mandibular Sickle"", 1]]","[null, null, null]"
-Amateur,50,[],Bone Rod,Fire,,"[[""Bonecraft Kit 50"", 1], [""Journeyman (51-60)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,51,[],Shock Subligar,Earth,,"[[""Luminous Shell"", 1], [""Carapace Subligar"", 1]]","[null, null, null]"
-Amateur,52,"[[""Smithing"", 47]]",Bandit's Gun,Fire,,"[[""Steel Ingot"", 2], [""Giant Femur"", 1]]","[[""Bandit's Gun +1"", 1], null, null]"
-Amateur,52,[],Spirit Shell,Wind,Bone Ensorcellment,"[[""Turtle Shell"", 1], [""Earth Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
-Amateur,53,[],High Healing Harness,Earth,,"[[""Vivio Crab Shell"", 1], [""Carapace Harness"", 1]]","[null, null, null]"
-Amateur,53,[],Scorpion Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Scorpion Claw"", 1]]","[[""Scorpion Arrowheads"", 8], [""Scorpion Arrowheads"", 10], [""Scorpion Arrowheads"", 12]]"
-Amateur,53,[],Scorpion Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Scorpion Claw"", 3], [""Shagreen File"", 1]]","[[""Scorpion Arrowheads"", 24], [""Scorpion Arrowheads"", 30], [""Scorpion Arrowheads"", 36]]"
-Amateur,53,[],Shell Hairpin,Wind,,"[[""Turtle Shell"", 1]]","[[""Shell Hairpin +1"", 1], null, null]"
-Amateur,54,[],Turtle Bangles,Wind,,"[[""Turtle Shell"", 2], [""Giant Femur"", 1]]","[[""Turtle Bangles +1"", 1], null, null]"
-Amateur,55,[],Tortoise Earring,Wind,,"[[""Gold Chain"", 1], [""Turtle Shell"", 1]]","[[""Tortoise Earring +1"", 1], null, null]"
-Amateur,55,[],Tortoise Earring,Wind,,"[[""Bonecraft Kit 55"", 1]]","[null, null, null]"
-Amateur,56,"[[""Clothcraft"", 26]]",Justaucorps,Earth,,"[[""Wool Robe"", 1], [""Gold Thread"", 1], [""Beetle Shell"", 1], [""Scorpion Claw"", 2]]","[[""Justaucorps +1"", 1], null, null]"
-Amateur,57,[],Blood Stone,Wind,,"[[""Giant Femur"", 1], [""Grass Thread"", 1], [""Fiend Blood"", 1]]","[[""Blood Stone +1"", 1], null, null]"
-Amateur,57,"[[""Woodworking"", 19]]",Bone Scythe,Wind,,"[[""Yew Lumber"", 1], [""Giant Femur"", 2], [""Grass Cloth"", 1], [""Sheep Tooth"", 1]]","[[""Bone Scythe +1"", 1], null, null]"
-Amateur,57,[],Stone Bangles,Earth,,"[[""Spirit Shell"", 1], [""Turtle Bangles"", 1]]","[null, null, null]"
-Amateur,58,"[[""Smithing"", 55]]",Armored Arrowheads,Wind,,"[[""Steel Ingot"", 1], [""Taurus Horn"", 1]]","[[""Armored Arrowheads"", 8], [""Armored Arrowheads"", 10], [""Armored Arrowheads"", 12]]"
-Amateur,58,"[[""Smithing"", 55]]",Armored Arrowheads,Wind,,"[[""Steel Ingot"", 3], [""Taurus Horn"", 3], [""Shagreen File"", 1]]","[[""Armored Arrowheads"", 24], [""Armored Arrowheads"", 30], [""Armored Arrowheads"", 36]]"
-Amateur,58,[],Astragalos,Wind,,"[[""Giant Femur"", 1], [""Black Ink"", 1], [""Beastman Blood"", 1]]","[[""Astragalos"", 12], [""Astragalos"", 16], [""Astragalos"", 20]]"
-Amateur,59,[],Beetle Knife,Wind,,"[[""Oak Lumber"", 1], [""Beetle Jaw"", 1]]","[[""Beetle Knife +1"", 1], null, null]"
-Amateur,59,[],Healing Justaucorps,Earth,,"[[""Vivio Scorpion Claw"", 1], [""Justaucorps"", 1]]","[null, null, null]"
-Amateur,59,[],Macuahuitl,Wind,,"[[""Bugard Tusk"", 1], [""Rhinochimera"", 1], [""Macuahuitl -1"", 1]]","[[""Macuahuitl +1"", 1], null, null]"
-Amateur,60,[],Beak Necklace,Earth,,"[[""High-Quality Crab Shell"", 1], [""Oxblood"", 1], [""Colibri Beak"", 4], [""Mohbwa Thread"", 1], [""Wivre Maul"", 1]]","[[""Beak Necklace +1"", 1], null, null]"
-Amateur,60,[],Scorpion Ring,Wind,,"[[""Scorpion Shell"", 1]]","[[""Scorpion Ring +1"", 1], null, null]"
-Amateur,60,[],Ranging Knife,Wind,,"[[""Walnut Lumber"", 1], [""Stately Crab Shell"", 1]]","[[""Ranging Knife +1"", 1], null, null]"
-Amateur,60,[],Barnacle,Lightning,,"[[""Carrier Crab Carapace"", 1]]","[[""Barnacle"", 2], [""Barnacle"", 3], [""Barnacle"", 4]]"
-Amateur,60,[],Scorpion Ring,Wind,,"[[""Bonecraft Kit 60"", 1], [""Craftsman (61-70)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,61,[],Fang Earring,Wind,,"[[""Silver Chain"", 1], [""Black Tiger Fang"", 2]]","[[""Spike Earring"", 1], null, null]"
-Amateur,61,[],Wind Fan,Earth,,"[[""Beetle Shell"", 1], [""Giant Femur"", 1], [""Beeswax"", 1], [""Bat Wing"", 1], [""Wind Cluster"", 1]]","[[""Wind Fan"", 99], null, null]"
-Amateur,62,"[[""Smithing"", 49]]",Pirate's Gun,Fire,,"[[""Steel Ingot"", 1], [""Darksteel Ingot"", 1], [""Turtle Shell"", 1]]","[[""Pirate's Gun +1"", 1], null, null]"
-Amateur,62,[],Coral Horn,Wind,,"[[""Oxblood"", 1]]","[null, null, null]"
-Amateur,62,"[[""Smithing"", 50], [""Goldsmithing"", 33]]",Darksteel Jambiya,Fire,,"[[""Darksteel Ingot"", 1], [""Silver Ingot"", 1], [""Sunstone"", 1], [""Mercury"", 1], [""Ladybug Wing"", 1]]","[null, null, null]"
-Amateur,62,"[[""Smithing"", 50], [""Goldsmithing"", 33]]",Ogre Jambiya,Fire,,"[[""Darksteel Ingot"", 1], [""Silver Ingot"", 1], [""Sunstone"", 1], [""Mercury"", 1], [""Buggane Horn"", 1]]","[null, null, null]"
-Amateur,63,[],Demon Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Demon Horn"", 1]]","[[""Demon Arrowheads"", 8], [""Demon Arrowheads"", 10], [""Demon Arrowheads"", 12]]"
-Amateur,63,[],Demon Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Demon Horn"", 3], [""Shagreen File"", 1]]","[[""Demon Arrowheads"", 24], [""Demon Arrowheads"", 30], [""Demon Arrowheads"", 36]]"
-Amateur,63,"[[""Leathercraft"", 31]]",Scorpion Mittens,Earth,,"[[""Scorpion Shell"", 1], [""Ram Leather"", 1], [""Pugil Scales"", 1]]","[[""Scorpion Mittens +1"", 1], null, null]"
-Amateur,64,"[[""Leathercraft"", 21]]",Marid Mittens,Earth,,"[[""Karakul Leather"", 1], [""Merrow Scale"", 1], [""Marid Tusk"", 1]]","[[""Marid Mittens +1"", 1], null, null]"
-Amateur,64,[],Scorpion Mask,Earth,,"[[""Ram Leather"", 1], [""Scorpion Shell"", 1]]","[[""Scorpion Mask +1"", 1], null, null]"
-Amateur,65,[],Scapegoat,Wind,,"[[""Phoenix Feather"", 1], [""Marid Tusk"", 1]]","[null, null, null]"
-Amateur,65,[],Ladybug Ring,Wind,,"[[""Ladybug Wing"", 2]]","[[""Ladybug Ring +1"", 1], null, null]"
-Amateur,65,"[[""Leathercraft"", 32]]",Scorpion Leggings,Earth,,"[[""Scorpion Shell"", 1], [""Ram Leather"", 2], [""Pugil Scales"", 1]]","[[""Scorpion Leggings +1"", 1], null, null]"
-Amateur,65,[],Ladybug Ring,Wind,,"[[""Bonecraft Kit 65"", 1]]","[null, null, null]"
-Amateur,66,[],Crumhorn,Wind,,"[[""Beetle Jaw"", 1], [""Demon Horn"", 1]]","[[""Crumhorn +1"", 1], [""Crumhorn +1"", 1], [""Crumhorn +2"", 1]]"
-Amateur,66,"[[""Leathercraft"", 22]]",Marid Leggings,Earth,,"[[""Karakul Leather"", 2], [""Merrow Scale"", 1], [""Marid Tusk"", 1]]","[[""Marid Leggings +1"", 1], null, null]"
-Amateur,66,"[[""Smithing"", 45], [""Woodworking"", 33]]",Ogre Sickle,Wind,,"[[""Darksteel Ingot"", 1], [""Ebony Lumber"", 1], [""Ruszor Leather"", 1], [""Buggane Horn"", 1]]","[null, null, null]"
-Amateur,67,"[[""Goldsmithing"", 53], [""Woodworking"", 31]]",Ivory Sickle,Wind,,"[[""Mahogany Lumber"", 1], [""Platinum Ingot"", 1], [""Ram Leather"", 1], [""Oversized Fang"", 1]]","[[""Ivory Sickle +1"", 1], null, null]"
-Amateur,67,"[[""Leathercraft"", 32]]",Scorpion Subligar,Earth,,"[[""Linen Cloth"", 1], [""Scorpion Shell"", 1], [""Ram Leather"", 1]]","[[""Scorpion Subligar +1"", 1], null, null]"
-Amateur,68,[],Bone Patas,Fire,,"[[""Crab Shell"", 1], [""Giant Femur"", 2], [""Carbon Fiber"", 1]]","[[""Bone Patas +1"", 1], null, null]"
-Amateur,68,"[[""Smithing"", 43]]",Seadog Gun,Fire,,"[[""Steel Ingot"", 2], [""Coral Fragment"", 2]]","[[""Seadog Gun +1"", 1], null, null]"
-Amateur,69,[],Beast Horn,Wind,,"[[""Ram Horn"", 2]]","[null, null, null]"
-Amateur,69,"[[""Leathercraft"", 33]]",Scorpion Harness,Earth,,"[[""Venomous Claw"", 1], [""Scorpion Shell"", 2], [""Ram Leather"", 2]]","[[""Scorpion Harness +1"", 1], null, null]"
-Amateur,70,[],Antlion Trap,Earth,,"[[""Coeurl Whisker"", 1], [""Animal Glue"", 1], [""Antican Pauldron"", 1], [""Antican Robe"", 1], [""High-Quality Antlion Jaw"", 2]]","[null, null, null]"
-Amateur,70,[],Demon's Ring,Wind,,"[[""Fish Scales"", 1], [""Demon Horn"", 1]]","[[""Demon's Ring +1"", 1], null, null]"
-Amateur,70,[],Demon's Ring,Wind,,"[[""Bonecraft Kit 70"", 1], [""Artisan (71-80)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,71,"[[""Goldsmithing"", 52]]",Hornet Fleuret,Fire,,"[[""Brass Ingot"", 1], [""Moonstone"", 1], [""Giant Femur"", 1], [""Pearl"", 1], [""Giant Stinger"", 1]]","[[""Wasp Fleuret"", 1], null, null]"
-Amateur,71,[],Kilo Fan,Earth,,"[[""Crab Shell"", 1], [""Giant Femur"", 1], [""Beeswax"", 1], [""Bat Wing"", 1], [""Wind Cluster"", 1]]","[[""Kilo Fan"", 99], null, null]"
-Amateur,71,[],Vivified Coral,Wind,Bone Purification,"[[""Coral Fragment"", 1], [""Lightning Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,72,"[[""Leathercraft"", 5]]",Coral Cuisses,Earth,,"[[""Leather Trousers"", 1], [""Coral Fragment"", 2], [""Rainbow Thread"", 1]]","[[""Coral Cuisses +1"", 1], null, null]"
-Amateur,72,"[[""Leathercraft"", 46]]",Coral Subligar,Earth,,"[[""Coeurl Leather"", 1], [""Linen Cloth"", 1], [""Coral Fragment"", 1]]","[[""Merman's Subligar"", 1], null, null]"
-Amateur,72,[],Gnole Sainti,Wind,,"[[""Brass Ingot"", 1], [""Steel Ingot"", 1], [""Gnole Claw"", 2], [""Teak Lumber"", 1]]","[[""Gnole Sainti +1"", 1], null, null]"
-Amateur,73,[],Demon's Knife,Wind,,"[[""Ebony Lumber"", 1], [""Demon Horn"", 1]]","[[""Demon's Knife +1"", 1], null, null]"
-Amateur,73,[],Lithic Wyvern Scale,Wind,Bone Purification,"[[""Wyvern Scales"", 1], [""Earth Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,73,[],Tactician Magician's Hooks +1,Earth,,"[[""Tactician Magician's Hooks"", 1], [""Demon Horn"", 1]]","[[""Tactician Magician's Hooks +2"", 1], null, null]"
-Amateur,73,[],Vivio Wyvern Scale,Wind,Bone Purification,"[[""Wyvern Scales"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,74,[],Coral Finger Gauntlets,Earth,,"[[""Leather Gloves"", 1], [""Coral Fragment"", 2], [""Rainbow Thread"", 1]]","[[""Coral Finger Gauntlets +1"", 1], null, null]"
-Amateur,74,"[[""Leathercraft"", 48]]",Coral Mittens,Earth,,"[[""Coeurl Leather"", 1], [""Coral Fragment"", 1], [""Wyvern Scales"", 1]]","[[""Merman's Mittens"", 1], null, null]"
-Amateur,74,[],Oxblood Orb,Wind,,"[[""Silver Chain"", 1], [""Oxblood"", 1]]","[[""Oxblood Orb"", 8], [""Oxblood Orb"", 10], [""Oxblood Orb"", 12]]"
-Amateur,74,[],Angel Skin Orb,Wind,,"[[""Silver Chain"", 1], [""Angel Skin"", 1]]","[[""Angel Skin Orb"", 8], [""Angel Skin Orb"", 10], [""Angel Skin Orb"", 12]]"
-Amateur,75,"[[""Leathercraft"", 35]]",Clown's Subligar,Earth,,"[[""Lindwurm Skin"", 1], [""Linen Cloth"", 1], [""Coral Fragment"", 1]]","[[""Clown's Subligar +1"", 1], null, null]"
-Amateur,75,[],Ladybug Earring,Wind,,"[[""Ladybug Wing"", 1], [""Electrum Chain"", 1]]","[[""Ladybug Earring +1"", 1], null, null]"
-Amateur,75,"[[""Smithing"", 53]]",Corsair's Gun,Fire,,"[[""Demon Horn"", 1], [""Darksteel Ingot"", 2]]","[[""Corsair's Gun +1"", 1], null, null]"
-Amateur,75,[],Ladybug Earring,Wind,,"[[""Bonecraft Kit 75"", 1]]","[null, null, null]"
-Amateur,76,"[[""Leathercraft"", 49]]",Coral Leggings,Earth,,"[[""Coeurl Leather"", 2], [""Coral Fragment"", 1], [""Wyvern Scales"", 1]]","[[""Merman's Leggings"", 1], null, null]"
-Amateur,76,[],Coral Greaves,Earth,,"[[""Leather Highboots"", 1], [""Coral Fragment"", 2], [""Rainbow Thread"", 1]]","[[""Coral Greaves +1"", 1], null, null]"
-Amateur,77,[],Coral Hairpin,Wind,,"[[""Black Pearl"", 1], [""Coral Fragment"", 1], [""Pearl"", 1]]","[[""Merman's Hairpin"", 1], null, null]"
-Amateur,77,[],Coral Visor,Wind,,"[[""Coral Fragment"", 2], [""Sheep Leather"", 1]]","[[""Coral Visor +1"", 1], null, null]"
-Amateur,78,[],Coral Cap,Earth,,"[[""Darksteel Cap"", 1], [""Coral Fragment"", 1]]","[[""Merman's Cap"", 1], null, null]"
-Amateur,78,[],Marid Tusk Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Marid Tusk"", 1]]","[[""Marid Tusk Arrowheads"", 8], [""Marid Tusk Arrowheads"", 10], [""Marid Tusk Arrowheads"", 12]]"
-Amateur,78,[],Marid Tusk Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Marid Tusk"", 3], [""Shagreen File"", 1]]","[[""Marid Tusk Arrowheads"", 24], [""Marid Tusk Arrowheads"", 30], [""Marid Tusk Arrowheads"", 36]]"
-Amateur,78,[],Zeal Cap,Earth,,"[[""Thunder Coral"", 1], [""Darksteel Cap"", 1]]","[[""Zeal Cap +1"", 1], null, null]"
-Amateur,78,"[[""Clothcraft"", 43], [""Leathercraft"", 33]]",Quadav Barbut,Earth,,"[[""Quadav Parts"", 1], [""Tiger Leather"", 1], [""Lizard Molt"", 1], [""Bugard Tusk"", 1], [""Wool Thread"", 1], [""Red Grass Cloth"", 1], [""Black Pearl"", 2]]","[null, null, null]"
-Amateur,79,[],Coral Gorget,Wind,,"[[""Coral Fragment"", 1], [""Sheep Leather"", 1]]","[[""Merman's Gorget"", 1], null, null]"
-Amateur,79,[],Tigerfangs,Fire,,"[[""Carbon Fiber"", 1], [""Black Tiger Fang"", 2], [""Scorpion Shell"", 1]]","[[""Feral Fangs"", 1], null, null]"
-Amateur,79,"[[""Woodworking"", 50]]",Horn Trophy,Earth,,"[[""Wool Thread"", 1], [""Buffalo Horn"", 2], [""Sheep Chammy"", 1], [""Teak Lumber"", 1]]","[null, null, null]"
-Amateur,79,[],Nuna Gorget,Wind,,"[[""Sheep Leather"", 1], [""Craklaw Pincer"", 1]]","[[""Nuna Gorget +1"", 1], null, null]"
-Amateur,80,"[[""Leathercraft"", 50]]",Coral Harness,Earth,,"[[""Coeurl Leather"", 2], [""Coral Fragment"", 2]]","[[""Merman's Harness"", 1], null, null]"
-Amateur,80,[],Coral Ring,Wind,,"[[""Coral Fragment"", 2]]","[[""Merman's Ring"", 1], null, null]"
-Amateur,80,[],Coral Scale Mail,Earth,,"[[""Leather Vest"", 1], [""Coral Fragment"", 4], [""Sheep Leather"", 1], [""Rainbow Thread"", 1]]","[[""Coral Scale Mail +1"", 1], null, null]"
-Amateur,80,[],Reraise Hairpin,Wind,,"[[""Vivified Coral"", 1], [""Coral Hairpin"", 1]]","[null, null, null]"
-Amateur,80,[],Vela Justaucorps,Earth,,"[[""Gold Thread"", 1], [""Beetle Shell"", 1], [""Bastet Fang"", 2], [""Wool Robe"", 1]]","[[""Vela Justaucorps +1"", 1], null, null]"
-Amateur,80,[],Coral Ring,Wind,,"[[""Bonecraft Kit 80"", 1], [""Adept (81-90)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,81,"[[""Smithing"", 58]]",Darksteel Shield,Earth,,"[[""Ash Lumber"", 1], [""Darksteel Sheet"", 3], [""Wyvern Scales"", 4]]","[[""Darksteel Shield +1"", 1], null, null]"
-Amateur,81,[],Marid Ring,Wind,,"[[""Marid Tusk"", 2]]","[[""Marid Ring +1"", 1], null, null]"
-Amateur,81,[],Saintly Ring,Earth,,"[[""Ascetic's Ring"", 1], [""Fish Scales"", 1]]","[[""Saintly Ring +1"", 1], null, null]"
-Amateur,82,"[[""Leathercraft"", 5]]",Dragon Cuisses,Earth,,"[[""Leather Trousers"", 1], [""Silver Thread"", 1], [""Wyvern Scales"", 2]]","[[""Dragon Cuisses +1"", 1], null, null]"
-Amateur,82,[],Eremite's Ring,Earth,,"[[""Hermit's Ring"", 1], [""Sheep Tooth"", 1]]","[[""Eremite's Ring +1"", 1], null, null]"
-Amateur,82,[],Reraise Gorget,Wind,,"[[""Vivified Coral"", 1], [""Coral Gorget"", 1]]","[null, null, null]"
-Amateur,82,[],Antlion Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Antlion Jaw"", 1]]","[[""Antlion Arrowheads"", 8], [""Antlion Arrowheads"", 10], [""Antlion Arrowheads"", 12]]"
-Amateur,82,[],Antlion Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Antlion Jaw"", 3], [""Shagreen File"", 1]]","[[""Antlion Arrowheads"", 24], [""Antlion Arrowheads"", 30], [""Antlion Arrowheads"", 36]]"
-Amateur,83,[],Coral Earring,Wind,,"[[""Silver Chain"", 1], [""Coral Fragment"", 2]]","[[""Merman's Earring"", 1], null, null]"
-Amateur,83,[],Mega Fan,Earth,,"[[""Scorpion Shell"", 1], [""Giant Femur"", 1], [""Beeswax"", 1], [""Bat Wing"", 1], [""Wind Cluster"", 1]]","[[""Mega Fan"", 99], null, null]"
-Amateur,83,"[[""Goldsmithing"", 49], [""Leathercraft"", 31]]",Lamia Garland,Wind,,"[[""Brass Chain"", 1], [""Garnet"", 1], [""Manta Leather"", 1], [""Uragnite Shell"", 1], [""Aht Urhgan Brass Ingot"", 1]]","[null, null, null]"
-Amateur,84,[],Behemoth Knife,Wind,,"[[""Behemoth Horn"", 1], [""Mahogany Lumber"", 1]]","[[""Behemoth Knife +1"", 1], null, null]"
-Amateur,84,[],Dragon Finger Gauntlets,Earth,,"[[""Leather Gloves"", 1], [""Silver Thread"", 1], [""Wyvern Scales"", 2]]","[[""Dragon Finger Gauntlets +1"", 1], null, null]"
-Amateur,84,[],Chapuli Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Chapuli Horn"", 1]]","[[""Chapuli Arrowheads"", 8], [""Chapuli Arrowheads"", 10], [""Chapuli Arrowheads"", 12]]"
-Amateur,84,[],Chapuli Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Chapuli Horn"", 3], [""Shagreen File"", 1]]","[[""Chapuli Arrowheads"", 24], [""Chapuli Arrowheads"", 30], [""Chapuli Arrowheads"", 36]]"
-Amateur,85,[],Eris' Earring,Earth,,"[[""Nemesis Earring"", 1], [""Seashell"", 1]]","[[""Eris' Earring +1"", 1], null, null]"
-Amateur,85,[],Hellish Bugle,Earth,,"[[""Imp Horn"", 1], [""Colibri Beak"", 1]]","[[""Hellish Bugle +1"", 1], null, null]"
-Amateur,85,[],Wivre Hairpin,Wind,,"[[""Wivre Maul"", 1]]","[[""Wivre Hairpin +1"", 1], null, null]"
-Amateur,85,[],Ruszor Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Ruszor Fang"", 1]]","[[""Ruszor Arrowheads"", 8], [""Ruszor Arrowheads"", 10], [""Ruszor Arrowheads"", 12]]"
-Amateur,85,[],Ruszor Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Ruszor Fang"", 3], [""Shagreen File"", 1]]","[[""Ruszor Arrowheads"", 24], [""Ruszor Arrowheads"", 30], [""Ruszor Arrowheads"", 36]]"
-Amateur,85,[],Hellish Bugle,Earth,,"[[""Bonecraft Kit 85"", 1]]","[null, null, null]"
-Amateur,86,[],Shofar,Wind,,"[[""Behemoth Horn"", 1], [""Beetle Jaw"", 1]]","[[""Shofar +1"", 1], null, null]"
-Amateur,86,[],Wivre Gorget,Wind,,"[[""Karakul Leather"", 1], [""Wivre Horn"", 1]]","[[""Wivre Gorget +1"", 1], null, null]"
-Amateur,86,[],Dragon Greaves,Earth,,"[[""Leather Highboots"", 1], [""Silver Thread"", 1], [""Wyvern Scales"", 2]]","[[""Dragon Greaves +1"", 1], null, null]"
-Amateur,87,[],Coral Bangles,Wind,,"[[""Giant Femur"", 1], [""Coral Fragment"", 2]]","[[""Merman's Bangles"", 1], null, null]"
-Amateur,87,[],Dragon Mask,Wind,,"[[""Sheep Leather"", 1], [""Wyvern Scales"", 2]]","[[""Dragon Mask +1"", 1], null, null]"
-Amateur,87,[],Snakeeye,Wind,,"[[""Hydra Fang"", 2], [""Wamoura Silk"", 1]]","[[""Snakeeye +1"", 1], null, null]"
-Amateur,88,[],Coral Sword,Earth,,"[[""Katzbalger"", 1], [""Coral Fragment"", 4]]","[[""Merman's Sword"", 1], null, null]"
-Amateur,88,[],Lamian Kaman,Earth,,"[[""Scorpion Claw"", 1], [""Marid Tusk"", 1], [""Lamian Kaman -1"", 1]]","[[""Lamian Kaman +1"", 1], null, null]"
-Amateur,88,"[[""Goldsmithing"", 60], [""Smithing"", 55]]",Naigama,Wind,,"[[""Bloodwood Lumber"", 1], [""Karakul Leather"", 1], [""Relic Steel"", 1], [""Marid Tusk"", 1], [""Scintillant Ingot"", 1]]","[[""Naigama +1"", 1], null, null]"
-Amateur,88,[],Gargouille Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Gargouille Horn"", 1]]","[[""Gargouille Arrowheads"", 8], [""Gargouille Arrowheads"", 10], [""Gargouille Arrowheads"", 12]]"
-Amateur,88,[],Gargouille Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Gargouille Horn"", 3], [""Shagreen File"", 1]]","[[""Gargouille Arrowheads"", 24], [""Gargouille Arrowheads"", 30], [""Gargouille Arrowheads"", 36]]"
-Amateur,88,"[[""Goldsmithing"", 33]]",Ghillie Earring,Wind,,"[[""Silver Chain"", 1], [""Ruszor Fang"", 2]]","[[""Ghillie Earring +1"", 1], null, null]"
-Amateur,89,[],Behemoth Ring,Wind,,"[[""Behemoth Horn"", 2]]","[[""Behemoth Ring +1"", 1], null, null]"
-Amateur,89,[],Earth Greaves,Earth,,"[[""Lithic Wyvern Scale"", 1], [""Dragon Greaves"", 1]]","[null, null, null]"
-Amateur,89,[],Inferno Sabots,Earth,,"[[""Ebony Sabots"", 1], [""Namtar Bone"", 1]]","[[""Inferno Sabots +1"", 1], null, null]"
-Amateur,90,"[[""Leathercraft"", 59]]",Demon's Harness,Earth,,"[[""Behemoth Leather"", 2], [""Demon Skull"", 2]]","[[""Demon's Harness +1"", 1], null, null]"
-Amateur,90,[],Dragon Claws,Earth,,"[[""Beetle Jaw"", 1], [""Dragon Talon"", 2]]","[[""Dragon Claws +1"", 1], null, null]"
-Amateur,90,"[[""Smithing"", 42]]",Dragon Mail,Earth,,"[[""Darksteel Chain"", 1], [""Darksteel Sheet"", 1], [""Leather Vest"", 1], [""Silver Thread"", 1], [""Wyvern Scales"", 3], [""Dragon Scales"", 1]]","[[""Dragon Mail +1"", 1], null, null]"
-Amateur,90,"[[""Goldsmithing"", 40]]",Airmid's Gorget,Earth,,"[[""Silver Chain"", 3], [""Vivified Coral"", 1], [""Vivified Mythril"", 1]]","[null, null, null]"
-Amateur,90,[],Mantid Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Mantid Foreleg"", 1]]","[[""Mantid Arrowheads"", 8], [""Mantid Arrowheads"", 10], [""Mantid Arrowheads"", 12]]"
-Amateur,90,[],Mantid Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Mantid Foreleg"", 3], [""Shagreen File"", 1]]","[[""Mantid Arrowheads"", 24], [""Mantid Arrowheads"", 30], [""Mantid Arrowheads"", 36]]"
-Amateur,90,[],Vexer Ring,Wind,,"[[""Coral Fragment"", 2], [""Twitherym Scale"", 1], [""Matamata Shell"", 1]]","[[""Vexer Ring +1"", 1], null, null]"
-Amateur,90,[],Dragon Claws,Earth,,"[[""Bonecraft Kit 90"", 1], [""Veteran (91-100)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,91,"[[""Leathercraft"", 41]]",Cursed Subligar,Earth,,"[[""Angel Skin"", 1], [""Silk Cloth"", 1], [""Tiger Leather"", 1]]","[[""Cursed Subligar -1"", 1], null, null]"
-Amateur,91,[],Demon Helm,Dark,,"[[""Sheep Leather"", 1], [""Demon Skull"", 1], [""Demon Horn"", 2]]","[[""Demon Helm +1"", 1], null, null]"
-Amateur,91,"[[""Leathercraft"", 38]]",Igqira Tiara,Earth,,"[[""Coral Fragment"", 3], [""Garnet"", 1], [""Coeurl Leather"", 1], [""Manticore Hair"", 1]]","[[""Genie Tiara"", 1], null, null]"
-Amateur,91,"[[""Goldsmithing"", 60], [""Smithing"", 39]]",Jambiya,Fire,,"[[""Steel Ingot"", 1], [""Mercury"", 1], [""Pigeon's Blood Ruby"", 1], [""Marid Tusk"", 1], [""Scintillant Ingot"", 1]]","[[""Jambiya +1"", 1], null, null]"
-Amateur,91,[],Matamata Shield,Earth,,"[[""Craklaw Pincer"", 1], [""Matamata Shell"", 1]]","[[""Matamata Shield +1"", 1], null, null]"
-Amateur,91,[],Bewitched Leggings,Earth,,"[[""Cursed Leggings -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Leggings"", 1], null, null]"
-Amateur,91,[],Vexed Gamashes,Earth,,"[[""Hexed Gamashes -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Gamashes"", 1], null, null]"
-Amateur,92,[],Carapace Gauntlets,Earth,,"[[""Leather Gloves"", 2], [""High-Quality Crab Shell"", 2]]","[[""Carapace Gauntlets +1"", 1], null, null]"
-Amateur,92,"[[""Leathercraft"", 43]]",Cursed Gloves,Earth,,"[[""Angel Skin"", 1], [""Tiger Leather"", 1], [""Wyvern Scales"", 1]]","[[""Cursed Gloves -1"", 1], null, null]"
-Amateur,92,"[[""Leathercraft"", 53]]",Dragon Subligar,Earth,,"[[""Sarcenet Cloth"", 1], [""Buffalo Leather"", 1], [""Dragon Bone"", 1]]","[[""Dragon Subligar +1"", 1], null, null]"
-Amateur,92,"[[""Goldsmithing"", 31]]",Wivre Ring,Wind,,"[[""Aht Urhgan Brass Ingot"", 1], [""Wivre Horn"", 2]]","[[""Wivre Ring +1"", 1], null, null]"
-Amateur,92,"[[""Leathercraft"", 58]]",Unicorn Subligar,Earth,,"[[""Behemoth Leather"", 1], [""Taffeta Cloth"", 1], [""Unicorn Horn"", 1]]","[[""Unicorn Subligar +1"", 1], null, null]"
-Amateur,92,[],Raaz Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Raaz Tusk"", 1]]","[[""Raaz Arrowheads"", 8], [""Raaz Arrowheads"", 10], [""Raaz Arrowheads"", 12]]"
-Amateur,92,[],Raaz Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Raaz Tusk"", 3], [""Shagreen File"", 1]]","[[""Raaz Arrowheads"", 24], [""Raaz Arrowheads"", 30], [""Raaz Arrowheads"", 36]]"
-Amateur,92,[],Bewitched Gloves,Earth,,"[[""Cursed Gloves -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Gloves"", 1], null, null]"
-Amateur,92,[],Vexed Wristbands,Earth,,"[[""Hexed Wristbands -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Wristbands"", 1], null, null]"
-Amateur,93,[],Carapace Helm,Earth,,"[[""Copper Ingot"", 1], [""High-Quality Crab Shell"", 2], [""Sheep Leather"", 1], [""Ram Leather"", 1]]","[[""Carapace Helm +1"", 1], null, null]"
-Amateur,93,"[[""Alchemy"", 41]]",Igqira Manillas,Earth,,"[[""Garnet"", 1], [""Bugard Tusk"", 1], [""Manticore Hair"", 1], [""Uragnite Shell"", 1], [""Avatar Blood"", 1]]","[[""Genie Manillas"", 1], null, null]"
-Amateur,93,[],Healing Mail,Earth,,"[[""Vivio Wyvern Scale"", 1], [""Dragon Mail"", 1]]","[null, null, null]"
-Amateur,93,[],Marath Baghnakhs,Earth,,"[[""Molybdenum Sheet"", 1], [""Marid Leather"", 1], [""Gargouille Horn"", 3]]","[[""Shivaji Baghnakhs"", 1], null, null]"
-Amateur,93,[],Bewitched Subligar,Earth,,"[[""Cursed Subligar -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Subligar"", 1], null, null]"
-Amateur,93,[],Shadow Throne,Dark,,"[[""Demon Skull"", 1], [""Demon Horn"", 2], [""Giant Femur"", 2], [""Fiend Blood"", 1], [""Demon Blood"", 1], [""Necropsyche"", 1]]","[null, null, null]"
-Amateur,94,"[[""Leathercraft"", 44]]",Cursed Leggings,Earth,,"[[""Angel Skin"", 1], [""Tiger Leather"", 2], [""Wyvern Scales"", 1]]","[[""Cursed Leggings -1"", 1], null, null]"
-Amateur,94,[],Mammoth Tusk,Wind,,"[[""Giant Frozen Head"", 1]]","[null, null, null]"
-Amateur,94,"[[""Alchemy"", 42]]",Shell Lamp,Wind,,"[[""Uragnite Shell"", 1], [""Flint Glass Sheet"", 1], [""Kaolin"", 2], [""Bomb Arm"", 1]]","[null, null, null]"
-Amateur,94,"[[""Leathercraft"", 52]]",Dragon Mittens,Earth,,"[[""Wyvern Scales"", 1], [""Buffalo Leather"", 1], [""Dragon Bone"", 1]]","[[""Dragon Mittens +1"", 1], null, null]"
-Amateur,94,[],Bewitched Cap,Earth,,"[[""Cursed Cap -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Cap"", 1], null, null]"
-Amateur,95,[],Carapace Breastplate,Earth,,"[[""Sheep Leather"", 1], [""Ram Leather"", 2], [""High-Quality Crab Shell"", 4]]","[[""Carapace Breastplate +1"", 1], null, null]"
-Amateur,95,[],Gavial Cuisses,Earth,,"[[""Titanictus Shell"", 1], [""High-Quality Pugil Scales"", 1], [""Rainbow Thread"", 1], [""Leather Trousers"", 1]]","[[""Gavial Cuisses +1"", 1], null, null]"
-Amateur,95,"[[""Leathercraft"", 50]]",Igqira Huaraches,Earth,,"[[""Coeurl Whisker"", 1], [""Coeurl Leather"", 1], [""Bugard Tusk"", 1], [""High-Quality Bugard Skin"", 1], [""Harajnite Shell"", 1]]","[[""Genie Huaraches"", 1], null, null]"
-Amateur,95,"[[""Leathercraft"", 54]]",Unicorn Mittens,Earth,,"[[""Gold Thread"", 1], [""Behemoth Leather"", 1], [""Wyvern Scales"", 1], [""Unicorn Horn"", 1]]","[[""Unicorn Mittens +1"", 1], null, null]"
-Amateur,95,"[[""Woodworking"", 48], [""Goldsmithing"", 30]]",Buzbaz Sainti,Wind,,"[[""Light Steel Ingot"", 2], [""Oak Lumber"", 1], [""Ruszor Fang"", 2]]","[[""Buzbaz Sainti +1"", 1], null, null]"
-Amateur,95,[],Bewitched Harness,Earth,,"[[""Cursed Harness -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Harness"", 1], null, null]"
-Amateur,95,[],Vexed Jacket,Earth,,"[[""Hexed Jacket -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Jacket"", 1], null, null]"
-Amateur,95,[],Carapace Breastplate,Earth,,"[[""Bonecraft Kit 95"", 1]]","[null, null, null]"
-Amateur,96,[],Acheron Shield,Earth,,"[[""Adamantoise Shell"", 2], [""Ram Leather"", 1]]","[[""Acheron Shield +1"", 1], null, null]"
-Amateur,96,"[[""Leathercraft"", 53]]",Dragon Leggings,Earth,,"[[""Wyvern Scales"", 1], [""Buffalo Leather"", 2], [""Dragon Bone"", 1]]","[[""Dragon Leggings +1"", 1], null, null]"
-Amateur,96,[],Scorpion Gauntlets,Earth,,"[[""High-Quality Scorpion Shell"", 2], [""Leather Gloves"", 2]]","[[""Scorpion Gauntlets +1"", 1], null, null]"
-Amateur,96,[],Hydra Cuisses,Earth,,"[[""Hydra Scale"", 1], [""Leather Trousers"", 1], [""Rainbow Thread"", 1], [""Titanictus Shell"", 1]]","[[""Hydra Cuisses +1"", 1], null, null]"
-Amateur,96,[],Trumpet Ring,Wind,,"[[""Trumpet Shell"", 2]]","[[""Nereid Ring"", 1], null, null]"
-Amateur,97,[],Cursed Cap,Earth,,"[[""Angel Skin"", 1], [""Darksteel Cap"", 1]]","[[""Cursed Cap -1"", 1], null, null]"
-Amateur,97,[],Gavial Finger Gauntlets,Earth,,"[[""Titanictus Shell"", 1], [""High-Quality Pugil Scales"", 1], [""Rainbow Thread"", 1], [""Leather Gloves"", 1]]","[[""Gavial Finger Gauntlets +1"", 1], null, null]"
-Amateur,97,"[[""Leathercraft"", 46]]",Igqira Lappa,Earth,,"[[""Coeurl Whisker"", 1], [""Coeurl Leather"", 1], [""Manticore Leather"", 1], [""Uragnite Shell"", 1], [""High-Quality Bugard Skin"", 1], [""Megalobugard Tusk"", 1]]","[[""Genie Lappa"", 1], null, null]"
-Amateur,97,[],Scorpion Helm,Earth,,"[[""High-Quality Scorpion Shell"", 2], [""Ram Leather"", 1], [""Sheep Leather"", 1], [""Copper Ingot"", 1]]","[[""Scorpion Helm +1"", 1], null, null]"
-Amateur,97,"[[""Leathercraft"", 55]]",Unicorn Leggings,Earth,,"[[""Gold Thread"", 1], [""Behemoth Leather"", 2], [""Wyvern Scales"", 1], [""Unicorn Horn"", 1]]","[[""Unicorn Leggings +1"", 1], null, null]"
-Amateur,97,"[[""Leathercraft"", 60]]",Sombra Tiara,Earth,,"[[""Intuila's Hide"", 1], [""Emperor Arthro's Shell"", 1]]","[[""Sombra Tiara +1"", 1], null, null]"
-Amateur,98,"[[""Leathercraft"", 41]]",Wyvern Helm,Dark,,"[[""Guivre's Skull"", 1], [""Tiger Leather"", 1], [""Sheep Leather"", 1], [""Beeswax"", 1]]","[[""Wyvern Helm +1"", 1], null, null]"
-Amateur,98,[],Cerberus Ring,Wind,,"[[""Cerberus Claw"", 2]]","[[""Cerberus Ring +1"", 1], null, null]"
-Amateur,98,[],Dragon Cap,Earth,,"[[""Dragon Bone"", 1], [""Darksteel Cap"", 1]]","[[""Dragon Cap +1"", 1], null, null]"
-Amateur,98,[],Orochi Nodowa,Earth,,"[[""Hydra Scale"", 1], [""Wamoura Silk"", 1]]","[[""Orochi Nodowa +1"", 1], null, null]"
-Amateur,98,[],Hydra Finger Gauntlets,Earth,,"[[""Rainbow Thread"", 1], [""Titanictus Shell"", 1], [""Hydra Scale"", 1], [""Leather Gloves"", 1]]","[[""Hydra Finger Gauntlets +1"", 1], null, null]"
-Amateur,98,[],Sombra Mittens,Earth,,"[[""Damascene Cloth"", 1], [""Buffalo Leather"", 1], [""Raaz Leather"", 1], [""Intuila's Hide"", 1], [""Emperor Arthro's Shell"", 1]]","[[""Sombra Mittens +1"", 1], null, null]"
-Amateur,99,[],Dragon Ring,Wind,,"[[""Dragon Talon"", 2]]","[[""Dragon Ring +1"", 1], null, null]"
-Amateur,99,[],Gavial Greaves,Earth,,"[[""Titanictus Shell"", 1], [""High-Quality Pugil Scales"", 1], [""Rainbow Thread"", 1], [""Leather Highboots"", 1]]","[[""Gavial Greaves +1"", 1], null, null]"
-Amateur,99,"[[""Leathercraft"", 55], [""Alchemy"", 44]]",Igqira Weskit,Earth,,"[[""Coeurl Leather"", 1], [""Lapis Lazuli"", 1], [""Dhalmel Leather"", 1], [""Dragon Talon"", 1], [""Manticore Hair"", 1], [""Avatar Blood"", 1], [""High-Quality Bugard Skin"", 1], [""Bugard Tusk"", 1]]","[[""Genie Weskit"", 1], null, null]"
-Amateur,99,[],Scorpion Breastplate,Earth,,"[[""High-Quality Scorpion Shell"", 4], [""Ram Leather"", 2], [""Sheep Leather"", 1]]","[[""Scorpion Breastplate +1"", 1], null, null]"
-Amateur,99,"[[""Leathercraft"", 52], [""Smithing"", 47]]",Unicorn Cap,Earth,,"[[""Darksteel Sheet"", 1], [""Gold Thread"", 1], [""Tiger Leather"", 1], [""Behemoth Leather"", 1], [""Unicorn Horn"", 1]]","[[""Unicorn Cap +1"", 1], null, null]"
-Amateur,99,"[[""Leathercraft"", 41]]",Wyvern Helm,Dark,,"[[""Wyvern Skull"", 1], [""Tiger Leather"", 1], [""Sheep Leather"", 1], [""Beeswax"", 1]]","[[""Wyvern Helm +1"", 1], null, null]"
-Amateur,99,"[[""Goldsmithing"", 40], [""Smithing"", 39]]",Khimaira Jambiya,Fire,,"[[""Steel Ingot"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Star Sapphire"", 1], [""Khimaira Horn"", 1]]","[[""Amir Jambiya"", 1], null, null]"
-Amateur,99,[],Sombra Tights,Earth,,"[[""Rainbow Cloth"", 1], [""Damascene Cloth"", 1], [""Raaz Leather"", 1], [""Intuila's Hide"", 1], [""Emperor Arthro's Shell"", 1]]","[[""Sombra Tights +1"", 1], null, null]"
-Amateur,100,[],Chronos Tooth,Wind,,"[[""Colossal Skull"", 1]]","[null, null, null]"
-Amateur,100,"[[""Leathercraft"", 41]]",Cursed Harness,Earth,,"[[""Tiger Leather"", 2], [""Coral Fragment"", 1], [""Oxblood"", 1], [""Angel Skin"", 1]]","[[""Cursed Harness -1"", 1], null, null]"
-Amateur,100,[],Gavial Mask,Wind,,"[[""Titanictus Shell"", 1], [""High-Quality Pugil Scales"", 1], [""Sheep Leather"", 1]]","[[""Gavial Mask +1"", 1], null, null]"
-Amateur,100,"[[""Leathercraft"", 58]]",Dragon Harness,Earth,,"[[""Buffalo Leather"", 2], [""Dragon Bone"", 1], [""Wyrm Horn"", 1]]","[[""Dragon Harness +1"", 1], null, null]"
-Amateur,100,[],Hydra Greaves,Earth,,"[[""Rainbow Thread"", 1], [""Titanictus Shell"", 1], [""Hydra Scale"", 1], [""Leather Highboots"", 1]]","[[""Hydra Greaves +1"", 1], null, null]"
-Amateur,100,"[[""Smithing"", 60]]",Handgonne,Earth,,"[[""Darksteel Ingot"", 1], [""Thokcha Ingot"", 1], [""Wyrm Horn"", 1]]","[[""Handgonne +1"", 1], null, null]"
-Amateur,100,[],Hajduk Ring,Wind,,"[[""Khimaira Horn"", 2]]","[[""Hajduk Ring +1"", 1], null, null]"
-Amateur,100,[],Dux Greaves,Earth,,"[[""Gold Thread"", 1], [""Dragon Scales"", 1], [""Turtle Shell"", 1], [""Squamous Hide"", 1], [""Leather Highboots"", 1]]","[[""Dux Greaves +1"", 1], null, null]"
-Amateur,100,[],Sombra Leggings,Earth,,"[[""Damascene Cloth"", 1], [""Behemoth Hide"", 1], [""Raaz Leather"", 2], [""Intuila's Hide"", 1], [""Emperor Arthro's Shell"", 1], [""Expert (101-110)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Sombra Leggings +1"", 1], null, null]"
-Amateur,101,[],Hydra Mask,Wind,,"[[""Titanictus Shell"", 1], [""Hydra Scale"", 1], [""Karakul Leather"", 1]]","[[""Hydra Mask +1"", 1], null, null]"
-Amateur,101,"[[""Woodworking"", 49], [""Smithing"", 37]]",Hades Sainti,Wind,,"[[""Iron Ingot"", 2], [""Bloodwood Lumber"", 1], [""Cerberus Claw"", 2]]","[[""Hades Sainti +1"", 1], null, null]"
-Amateur,102,"[[""Alchemy"", 50]]",Blenmot's Ring,Wind,,"[[""Oxblood"", 1], [""Vivified Coral"", 1], [""Holy Water"", 2], [""Hallowed Water"", 1]]","[[""Blenmot's Ring +1"", 1], null, null]"
-Amateur,102,[],Sombra Harness,Earth,,"[[""Rainbow Cloth"", 1], [""Damascene Cloth"", 1], [""Raaz Leather"", 1], [""Intuila's Hide"", 2], [""Emperor Arthro's Shell"", 2]]","[[""Sombra Harness +1"", 1], null, null]"
-Amateur,103,"[[""Leathercraft"", 60]]",Unicorn Harness,Earth,,"[[""Gold Thread"", 1], [""Tiger Leather"", 1], [""Behemoth Leather"", 1], [""Unicorn Horn"", 2]]","[[""Unicorn Harness +1"", 1], null, null]"
-Amateur,103,[],Gavial Mail,Earth,,"[[""Titanictus Shell"", 2], [""High-Quality Pugil Scales"", 2], [""Rainbow Thread"", 1], [""Sheep Leather"", 1], [""Leather Vest"", 1]]","[[""Gavial Mail +1"", 1], null, null]"
-Amateur,103,[],Dux Cuisses,Earth,,"[[""Gold Thread"", 1], [""Sheep Leather"", 1], [""Dragon Scales"", 1], [""Turtle Shell"", 1], [""Hahava's Mail"", 1], [""Squamous Hide"", 1]]","[[""Dux Cuisses +1"", 1], null, null]"
-Amateur,104,[],Hydra Mail,Earth,,"[[""Titanictus Shell"", 2], [""Hydra Scale"", 2], [""Karakul Leather"", 1], [""Leather Vest"", 1], [""Rainbow Thread"", 1]]","[[""Hydra Mail +1"", 1], null, null]"
-Amateur,104,[],Dark Ixion Ferrule,Wind,,"[[""Dark Ixion Horn"", 1]]","[[""Dark Ixion Ferrule"", 2], [""Dark Ixion Ferrule x3 Verification Needed"", 1], [""Dark Ixion Ferrule x4 Verification Needed"", 1]]"
-Amateur,104,[],Dux Visor,Wind,,"[[""Dragon Scales"", 1], [""Turtle Shell"", 1], [""Hahava's Mail"", 1], [""Squamous Hide"", 1]]","[[""Dux Visor +1"", 1], null, null]"
-Amateur,104,[],Revealer's Crown,Earth,,"[[""Linen Thread"", 1], [""Lizard Molt"", 1], [""Ironhorn Baldurno's Horn"", 1], [""Abyssdiver's Feather"", 1]]","[[""Revealer's Crown +1"", 1], null, null]"
-Amateur,105,[],Winged Balance,Wind,,"[[""Orichalcum Chain"", 1], [""Pearl"", 1], [""Nidhogg Scales"", 1], [""Southern Pearl"", 1], [""Angel Skin"", 1], [""Marid Tusk"", 1], [""Wivre Horn"", 1], [""Trumpet Shell"", 1]]","[null, null, null]"
-Amateur,105,[],Dux Finger Gauntlets,Earth,,"[[""Gold Thread"", 1], [""Dragon Scales"", 1], [""Turtle Shell"", 1], [""Squamous Hide"", 1], [""Leather Gloves"", 1]]","[[""Dux Finger Gauntlets +1"", 1], null, null]"
-Amateur,105,[],Blutkrallen,Earth,,"[[""Iron Ingot"", 1], [""Bloodwood Lumber"", 1], [""Linen Thread"", 1], [""Scintillant Ingot"", 1], [""Meeble Claw"", 3]]","[[""Blutklauen"", 1], null, null]"
-Amateur,105,[],Maliyakaleya Orb,Wind,,"[[""Silver Chain"", 1], [""Maliyakaleya Coral"", 1]]","[[""Maliyakaleya Orb"", 8], [""Maliyakaleya Orb"", 10], [""Maliyakaleya Orb"", 12]]"
-Amateur,105,[],Cyan Orb,Wind,,"[[""Silver Chain"", 1], [""Cyan Coral"", 1]]","[[""Cyan Orb"", 8], [""Cyan Orb"", 10], [""Cyan Orb"", 12]]"
-Amateur,106,"[[""Leathercraft"", 56], [""Goldsmithing"", 30]]",Hexed Gamashes,Earth,,"[[""Malboro Fiber"", 1], [""Marid Leather"", 1], [""Befouled Silver"", 1], [""Staghorn Coral"", 2]]","[[""Hexed Gamashes -1"", 1], null, null]"
-Amateur,106,"[[""Leathercraft"", 56], [""Goldsmithing"", 30]]",Hexed Wristbands,Earth,,"[[""Velvet Cloth"", 1], [""Marid Leather"", 1], [""Befouled Silver"", 1], [""Staghorn Coral"", 1], [""Sealord Leather"", 1]]","[[""Hexed Wristbands -1"", 1], null, null]"
-Amateur,106,[],Yacuruna Ring,Wind,,"[[""Yggdreant Root"", 1], [""Maliyakaleya Coral"", 2]]","[[""Yacuruna Ring +1"", 1], null, null]"
-Amateur,106,[],Maliya Sickle,Wind,,"[[""Urunday Lumber"", 1], [""Raaz Leather"", 1], [""Maliyakaleya Coral"", 1], [""Ra'Kaznar Ingot"", 1]]","[[""Maliya Sickle +1"", 1], null, null]"
-Amateur,107,[],Dux Scale Mail,Earth,,"[[""Gold Thread"", 1], [""Dragon Scales"", 1], [""Turtle Shell"", 3], [""Hahava's Mail"", 1], [""Squamous Hide"", 1], [""Leather Vest"", 1]]","[[""Dux Scale Mail +1"", 1], null, null]"
-Amateur,108,[],Oxossi Facon,Wind,,"[[""Manta Leather"", 1], [""Cassia Lumber"", 1], [""Simian Horn"", 1]]","[[""Oxossi Facon +1"", 1], null, null]"
-Amateur,109,[],Brioso Whistle,Earth,,"[[""Cyan Coral"", 1], [""Cyan Orb"", 2]]","[null, null, null]"
-Amateur,109,[],Brioso Whistle,Earth,,"[[""Cyan Coral"", 1], [""Cyan Orb"", 2]]","[null, null, null]"
-Amateur,109,[],Brioso Whistle,Earth,,"[[""Cyan Coral"", 1], [""Cyan Orb"", 2]]","[null, null, null]"
-Amateur,110,"[[""Leathercraft"", 60], [""Clothcraft"", 30]]",Hexed Jacket,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 2], [""Malboro Fiber"", 1], [""Befouled Silver"", 1], [""Penelope's Cloth"", 1], [""Staghorn Coral"", 1], [""Sealord Leather"", 1]]","[[""Hexed Jacket -1"", 1], null, null]"
-Amateur,110,"[[""Leathercraft"", 55]]",Assassin's Gorget,Light,,"[[""Cehuetzi Pelt"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Gorget"", 1]]","[[""Assassin's Gorget +1"", 1], [""Assassin's Gorget +2"", 1], null]"
-Amateur,110,"[[""Leathercraft"", 55]]",Etoile Gorget,Light,,"[[""Cehuetzi Pelt"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Gorget"", 1]]","[[""Etoile Gorget +1"", 1], [""Etoile Gorget +2"", 1], null]"
-Amateur,110,"[[""Leathercraft"", 55]]",Scout's Gorget,Light,,"[[""Cehuetzi Pelt"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Gorget"", 1], [""Authority (111-120)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Scout's Gorget +1"", 1], [""Scout's Gorget +2"", 1], null]"
-Amateur,111,[],Ej Necklace,Earth,,"[[""Oxblood"", 1], [""Siren's Macrame"", 1], [""Wivre Maul"", 1], [""Carrier Crab Carapace"", 1], [""Rockfin Tooth"", 2]]","[[""Ej Necklace +1"", 1], null, null]"
-Amateur,111,[],Tati Earring,Wind,,"[[""Silver Chain"", 1], [""Gabbrath Horn"", 2]]","[[""Tati Earring +1"", 1], null, null]"
-Amateur,111,"[[""Leathercraft"", 70]]",Bewitched Leggings,Earth,,"[[""Cursed Leggings"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Immanibugard's Hide"", 1]]","[[""Voodoo Leggings"", 1], null, null]"
-Amateur,111,"[[""Alchemy"", 70]]",Vexed Gamashes,Earth,,"[[""Hexed Gamashes"", 1], [""Eschite Ore"", 1], [""Macuil Horn"", 1], [""Sybaritic Samantha's Vine"", 1]]","[[""Jinxed Gamashes"", 1], null, null]"
-Amateur,111,[],Monster Axe,Light,Boneworker's aurum tome,"[[""Macuil Plating"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Axe"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Ankusa Axe"", 1], [""Pangu"", 1], null]"
-Amateur,111,[],Abyss Scythe,Light,Boneworker's aurum tome,"[[""Tartarian Chain"", 1], [""Dark Matter"", 1], [""Cypress Log"", 1], [""Moldy Scythe"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Fallen's Scythe"", 1], [""Father Time"", 1], null]"
-Amateur,112,[],Bhakazi Sainti,Wind,,"[[""Guatambu Lumber"", 1], [""Titanium Ingot"", 1], [""Bismuth Ingot"", 1], [""Cehuetzi Claw"", 2]]","[[""Bhakazi Sainti +1"", 1], null, null]"
-Amateur,112,"[[""Leathercraft"", 70]]",Bewitched Gloves,Earth,,"[[""Cursed Gloves"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Immanibugard's Hide"", 1]]","[[""Voodoo Gloves"", 1], null, null]"
-Amateur,112,"[[""Leathercraft"", 70]]",Vexed Wristbands,Earth,,"[[""Hexed Wristbands"", 1], [""Eschite Ore"", 1], [""Macuil Horn"", 1], [""Warblade Beak's Hide"", 1]]","[[""Jinxed Wristbands"", 1], null, null]"
-Amateur,113,[],Nanti Knife,Wind,,"[[""Waktza Rostrum"", 1], [""Guatambu Lumber"", 1]]","[[""Nanti Knife +1"", 1], null, null]"
-Amateur,113,[],Budliqa,Wind,,"[[""Waktza Rostrum"", 1], [""Guatambu Lumber"", 1], [""Bismuth Ingot"", 1]]","[[""Budliqa +1"", 1], null, null]"
-Amateur,113,[],Killedar Shield,Earth,,"[[""Adamantoise Shell"", 1], [""Eltoro Leather"", 1], [""Gabbrath Horn"", 1]]","[[""Killedar Shield +1"", 1], null, null]"
-Amateur,113,[],Lacryma Sickle,Wind,,"[[""Woodworking - (??)"", 1], [""Ormolu Ingot"", 1], [""Ram Leather"", 1], [""Urunday Lumber"", 1], [""Rockfin Tooth"", 1]]","[[""Lacryma Sickle +1"", 1], null, null]"
-Amateur,113,[],Donderbuss,Fire,,"[[""Ormolu Ingot"", 1], [""Damascus Ingot"", 1], [""Rockfin Tooth"", 1]]","[[""Donderbuss +1"", 1], null, null]"
-Amateur,113,"[[""Leathercraft"", 70]]",Bewitched Subligar,Earth,,"[[""Cursed Subligar"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Immanibugard's Hide"", 1]]","[[""Voodoo Subligar"", 1], null, null]"
-Amateur,114,"[[""Smithing"", 70]]",Bewitched Cap,Earth,,"[[""Cursed Cap"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Largantua's Shard"", 1]]","[[""Voodoo Cap"", 1], null, null]"
-Amateur,115,"[[""Leathercraft"", 70]]",Bewitched Harness,Earth,,"[[""Cursed Harness"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Immanibugard's Hide"", 1]]","[[""Voodoo Harness"", 1], null, null]"
-Amateur,115,"[[""Leathercraft"", 70]]",Vexed Jacket,Earth,,"[[""Hexed Jacket"", 1], [""Eschite Ore"", 1], [""Warblade Beak's Hide"", 1], [""Macuil Horn"", 1]]","[[""Jinxed Jacket"", 1], null, null]"
-Amateur,115,[],Aurgelmir Orb,Wind,,"[[""Black Ink"", 1], [""Beastman Blood"", 1], [""Cyan Coral"", 3], [""Wyrm Ash"", 1]]","[[""Aurgelmir Orb +1"", 1], null, null]"
-Amateur,115,[],Raetic Scythe,Fire,Boneworker's argentum tome,"[[""Cyan Coral"", 2], [""Cyan Orb"", 3], [""Rune Scythe"", 1]]","[[""Raetic Scythe +1"", 1], null, null]"
-Amateur,115,[],Raetic Bangles,Fire,Boneworker's argentum tome,"[[""Cyan Coral"", 2], [""Cyan Orb"", 3], [""Rune Bangles"", 1]]","[[""Raetic Bangles +1"", 1], null, null]"
-Amateur,116,[],Moonbeam Ring,Wind,,"[[""Moonbow Stone"", 1], [""Moonlight Coral"", 1], [""Cyan Coral"", 1]]","[[""Moonlight Ring"", 1], null, null]"
-Amateur,116,[],Mousai Gages,Earth,Boneworker's argentum tome,"[[""Cashmere Thread"", 2], [""Cyan Orb"", 2], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 1], [""Hades' Claw"", 1]]","[[""Mousai Gages +1"", 1], null, null]"
-Amateur,116,[],Mousai Crackows,Earth,Boneworker's argentum tome,"[[""Cashmere Thread"", 1], [""Cyan Orb"", 2], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 1], [""Hades' Claw"", 1]]","[[""Mousai Crackows +1"", 1], null, null]"
-Amateur,116,[],Mousai Turban,Earth,Boneworker's argentum tome,"[[""Cashmere Cloth"", 1], [""Cyan Orb"", 2], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 1], [""Hades' Claw"", 1]]","[[""Mousai Turban +1"", 1], null, null]"
-Amateur,116,[],Mousai Seraweels,Earth,Boneworker's argentum tome,"[[""Cashmere Cloth"", 1], [""Cyan Orb"", 3], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 1], [""Hades' Claw"", 1]]","[[""Mousai Seraweels +1"", 1], null, null]"
-Amateur,116,[],Mousai Manteel,Earth,Boneworker's argentum tome,"[[""Cashmere Cloth"", 1], [""Cyan Orb"", 3], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 2], [""Hades' Claw"", 1]]","[[""Mousai Manteel +1"", 1], null, null]"
-Amateur,117,[],Staunch Tathlum,Earth,,"[[""Macuil Horn"", 1], [""Plovid Flesh"", 1], [""Defiant Scarf"", 1], [""Hades' Claw"", 1]]","[[""Staunch Tathlum +1"", 1], null, null]"
-Amateur,117,[],Moonbow Whistle,Earth,,"[[""Brioso Whistle"", 1], [""Moonbow Urushi"", 1], [""Moonbow Stone"", 1]]","[[""Moonbow Whistle +1"", 1], null, null]"
+,1,[],Shell Powder,Wind,,"[[""Seashell"", 3]]","[[""Shell Powder"", 2], [""Shell Powder"", 3], [""Shell Powder"", 4]]"
+,1,[],Wailing Bone Chip,Wind,Bone Ensorcellment,"[[""Bone Chip"", 1], [""Ice Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
+,3,[],Shell Earring,Wind,,"[[""Seashell"", 2]]","[[""Shell Earring +1"", 1], null, null]"
+,4,[],Bone Hairpin,Wind,,"[[""Bone Chip"", 1]]","[[""Bone Hairpin +1"", 1], null, null]"
+,5,[],Shell Powder,Wind,,"[[""Vongola Clam"", 2]]","[[""Shell Powder"", 2], [""Shell Powder"", 3], [""Shell Powder"", 4]]"
+,5,[],Shell Powder,Wind,,"[[""Bonecraft Kit 5"", 1]]","[null, null, null]"
+,7,[],Eldritch Bone Hairpin,Wind,,"[[""Wailing Bone Chip"", 1], [""Bone Hairpin"", 1]]","[null, null, null]"
+,7,[],Shell Ring,Wind,,"[[""Fish Scales"", 1], [""Seashell"", 1]]","[[""Shell Ring +1"", 1], null, null]"
+,8,[],Wailing Shell,Wind,Bone Ensorcellment,"[[""Seashell"", 1], [""Ice Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
+,9,"[[""Smithing"", 3]]",Cat Baghnakhs,Earth,,"[[""Bronze Sheet"", 1], [""Rabbit Hide"", 1], [""Bone Chip"", 3]]","[[""Cat Baghnakhs +1"", 1], null, null]"
+,10,[],Bone Arrowheads,Wind,,"[[""Bone Chip"", 2]]","[[""Bone Arrowheads"", 8], [""Bone Arrowheads"", 10], [""Bone Arrowheads"", 12]]"
+,10,[],Bone Arrowheads,Wind,Filing,"[[""Bone Chip"", 6], [""Shagreen File"", 1]]","[[""Bone Arrowheads"", 24], [""Bone Arrowheads"", 30], [""Bone Arrowheads"", 36]]"
+,10,[],Manashell Ring,Wind,,"[[""Wailing Shell"", 1], [""Shell Ring"", 1]]","[null, null, null]"
+,10,"[[""Woodworking"", 2]]",Bone Arrow,Wind,,"[[""Arrowwood Lumber"", 1], [""Yagudo Feather"", 2], [""Bone Chip"", 3]]","[[""Bone Arrow"", 66], [""Bone Arrow"", 99], [""Bone Arrow"", 99]]"
+,10,[],Bone Arrowheads,Wind,,"[[""Bonecraft Kit 10"", 1]]","[null, null, null]"
+,12,"[[""Goldsmithing"", 3]]",Bone Earring,Wind,,"[[""Bone Chip"", 2], [""Brass Ingot"", 1]]","[[""Bone Earring +1"", 1], null, null]"
+,13,[],Gelatin,Fire,,"[[""Chicken Bone"", 2], [""Distilled Water"", 1]]","[[""Gelatin"", 2], [""Gelatin"", 3], [""Gelatin"", 4]]"
+,14,"[[""Goldsmithing"", 14]]",Cornette,Wind,,"[[""Brass Ingot"", 1], [""Bone Chip"", 1]]","[[""Cornette +1"", 1], [""Cornette +1"", 1], [""Cornette +2"", 1]]"
+,14,[],Windurstian Baghnakhs,Earth,,"[[""Freesword's Baghnakhs"", 1], [""Bone Chip"", 1]]","[[""Federation Baghnakh"", 1], null, null]"
+,15,[],Fang Necklace,Earth,,"[[""Bat Fang"", 4], [""Black Tiger Fang"", 1], [""Bone Chip"", 2], [""Grass Thread"", 1]]","[[""Spike Necklace"", 1], null, null]"
+,15,[],Fang Necklace,Earth,,"[[""Bonecraft Kit 15"", 1]]","[null, null, null]"
+,16,[],Fish Scales,Lightning,,"[[""Gavial Fish"", 1]]","[[""High-Quality Pugil Scales"", 1], [""High-Quality Pugil Scales"", 2], [""High-Quality Pugil Scales"", 3]]"
+,16,[],Vivio Femur,Wind,Bone Purification,"[[""Giant Femur"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
+,16,[],Gelatin,Fire,,"[[""Bone Chip"", 4], [""Distilled Water"", 1]]","[[""Gelatin"", 2], [""Gelatin"", 3], [""Gelatin"", 4]]"
+,17,[],Bone Ring,Wind,,"[[""Sheep Tooth"", 1], [""Bone Chip"", 1]]","[[""Bone Ring +1"", 1], null, null]"
+,18,[],Bone Mask,Earth,,"[[""Giant Femur"", 1], [""Bone Chip"", 1], [""Sheep Leather"", 1]]","[[""Bone Mask +1"", 1], null, null]"
+,19,[],Pearl,Wind,,"[[""Shall Shell"", 1]]","[[""Black Pearl"", 1], [""Black Pearl"", 1], [""Black Pearl"", 1]]"
+,19,[],Pearl,Wind,,"[[""Istiridye"", 1]]","[[""Black Pearl"", 1], [""Black Pearl"", 1], [""Black Pearl"", 1]]"
+,20,[],Bone Axe,Wind,,"[[""Giant Femur"", 1], [""Ram Horn"", 2]]","[[""Bone Axe +1"", 1], null, null]"
+,20,"[[""Leathercraft"", 5]]",Bone Mittens,Earth,,"[[""Bone Chip"", 2], [""Sheep Leather"", 2]]","[[""Bone Mittens +1"", 1], null, null]"
+,20,[],Bone Axe,Wind,,"[[""Bonecraft Kit 20"", 1]]","[null, null, null]"
+,21,[],Carapace Powder,Wind,,"[[""Beetle Shell"", 2]]","[null, null, null]"
+,22,"[[""Leathercraft"", 5]]",Bone Leggings,Earth,,"[[""Giant Femur"", 1], [""Bone Chip"", 1], [""Sheep Leather"", 2]]","[[""Bone Leggings +1"", 1], null, null]"
+,23,"[[""Woodworking"", 6]]",Bone Pick,Wind,,"[[""Ash Lumber"", 1], [""Giant Femur"", 1]]","[[""Bone Pick +1"", 1], null, null]"
+,24,"[[""Leathercraft"", 6]]",Bone Subligar,Earth,,"[[""Bone Chip"", 1], [""Grass Cloth"", 1], [""Sheep Leather"", 2]]","[[""Bone Subligar +1"", 1], null, null]"
+,24,[],Gemshorn,Wind,,"[[""Giant Femur"", 1], [""Beetle Jaw"", 1]]","[[""Gemshorn +1"", 1], null, null]"
+,24,[],Jolt Axe,Wind,Bone Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Bone Axe"", 1]]","[null, null, null]"
+,25,[],Beetle Ring,Wind,,"[[""Beetle Jaw"", 1]]","[[""Beetle Ring +1"", 1], null, null]"
+,25,[],Smooth Beetle Jaw,Wind,Bone Purification,"[[""Beetle Jaw"", 1], [""Wind Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
+,25,[],Beetle Ring,Wind,,"[[""Bonecraft Kit 25"", 1]]","[null, null, null]"
+,26,"[[""Leathercraft"", 7]]",Bone Harness,Earth,,"[[""Pugil Scales"", 1], [""Sheep Leather"", 2], [""Giant Femur"", 1], [""Bone Chip"", 1]]","[[""Bone Harness +1"", 1], null, null]"
+,26,"[[""Leathercraft"", 11]]",Mettle Leggings,Earth,,"[[""Samwell's Shank"", 1], [""Sheep Leather"", 2], [""Bone Chip"", 1]]","[[""Mettle Leggings +1"", 1], null, null]"
+,27,[],Beetle Earring,Earth,,"[[""Beetle Jaw"", 1], [""Silver Earring"", 1]]","[[""Beetle Earring +1"", 1], null, null]"
+,27,[],Wailing Ram Horn,Wind,Bone Ensorcellment,"[[""Ram Horn"", 1], [""Ice Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
+,28,[],Gelatin,Fire,,"[[""Giant Femur"", 1], [""Distilled Water"", 1]]","[[""Gelatin"", 6], [""Gelatin"", 8], [""Gelatin"", 10]]"
+,29,[],Horn Hairpin,Wind,,"[[""Ram Horn"", 1]]","[[""Horn Hairpin +1"", 1], null, null]"
+,29,[],San d'Orian Horn,Wind,,"[[""Royal Spearman's Horn"", 1], [""Giant Femur"", 1]]","[[""Kingdom Horn"", 1], null, null]"
+,29,"[[""Leathercraft"", 20]]",Seer's Crown,Earth,,"[[""Linen Thread"", 1], [""Lizard Molt"", 1], [""Bone Chip"", 1], [""Coeurl Whisker"", 1]]","[[""Seer's Crown +1"", 1], null, null]"
+,29,[],Healing Harness,Earth,,"[[""Vivio Femur"", 1], [""Bone Harness"", 1]]","[null, null, null]"
+,30,[],Beetle Mask,Earth,,"[[""Lizard Skin"", 1], [""Beetle Jaw"", 1]]","[[""Beetle Mask +1"", 1], null, null]"
+,30,"[[""Leathercraft"", 8]]",Beetle Mittens,Earth,,"[[""Lizard Skin"", 2], [""Beetle Shell"", 1]]","[[""Beetle Mittens +1"", 1], null, null]"
+,30,[],Beetle Mask,Earth,,"[[""Bonecraft Kit 30"", 1]]","[null, null, null]"
+,31,[],Beetle Gorget,Earth,,"[[""Beetle Jaw"", 2], [""Beetle Shell"", 1]]","[[""Green Gorget"", 1], null, null]"
+,32,"[[""Leathercraft"", 8]]",Beetle Leggings,Earth,,"[[""Lizard Skin"", 2], [""Beetle Jaw"", 1], [""Beetle Shell"", 1]]","[[""Beetle Leggings +1"", 1], null, null]"
+,32,[],Eldritch Horn Hairpin,Wind,,"[[""Wailing Ram Horn"", 1], [""Horn Hairpin"", 1]]","[null, null, null]"
+,33,[],Beetle Arrowheads,Wind,,"[[""Beetle Jaw"", 1], [""Bone Chip"", 1]]","[[""Beetle Arrowheads"", 8], [""Beetle Arrowheads"", 10], [""Beetle Arrowheads"", 12]]"
+,33,[],Beetle Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Beetle Jaw"", 3], [""Shagreen File"", 1]]","[[""Beetle Arrowheads"", 24], [""Beetle Arrowheads"", 30], [""Beetle Arrowheads"", 36]]"
+,34,"[[""Leathercraft"", 9]]",Beetle Subligar,Earth,,"[[""Cotton Cloth"", 1], [""Lizard Skin"", 1], [""Beetle Jaw"", 1]]","[[""Beetle Subligar +1"", 1], null, null]"
+,35,[],Turtle Shield,Earth,,"[[""Turtle Shell"", 1], [""Beetle Shell"", 1]]","[[""Turtle Shield +1"", 1], null, null]"
+,35,[],Turtle Shield,Earth,,"[[""Bonecraft Kit 35"", 1]]","[null, null, null]"
+,36,"[[""Leathercraft"", 9]]",Beetle Harness,Earth,,"[[""Lizard Skin"", 3], [""Beetle Shell"", 2]]","[[""Beetle Harness +1"", 1], null, null]"
+,37,[],Horn Ring,Wind,,"[[""Fish Scales"", 1], [""Ram Horn"", 1]]","[[""Horn Ring +1"", 1], null, null]"
+,37,"[[""Leathercraft"", 24]]",Shade Tiara,Earth,,"[[""Uragnite Shell"", 1], [""Eft Skin"", 1], [""Photoanima"", 1]]","[[""Shade Tiara +1"", 1], null, null]"
+,38,[],Fang Arrowheads,Wind,,"[[""Black Tiger Fang"", 1], [""Bone Chip"", 1]]","[[""Fang Arrowheads"", 8], [""Fang Arrowheads"", 10], [""Fang Arrowheads"", 12]]"
+,38,[],Fang Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Black Tiger Fang"", 3], [""Shagreen File"", 1]]","[[""Fang Arrowheads"", 24], [""Fang Arrowheads"", 30], [""Fang Arrowheads"", 36]]"
+,38,"[[""Clothcraft"", 21], [""Leathercraft"", 24]]",Shade Mittens,Earth,,"[[""Luminicloth"", 1], [""Sheep Leather"", 1], [""Tiger Leather"", 1], [""Uragnite Shell"", 1], [""Eft Skin"", 1], [""Photoanima"", 1]]","[[""Shade Mittens +1"", 1], null, null]"
+,39,"[[""Clothcraft"", 23], [""Leathercraft"", 24]]",Shade Tights,Earth,,"[[""Luminicloth"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""Uragnite Shell"", 1], [""Eft Skin"", 1], [""Photoanima"", 1]]","[[""Shade Tights +1"", 1], null, null]"
+,40,[],Titanictus Shell,Lightning,,"[[""Titanictus"", 1]]","[[""Titanictus Shell"", 2], [""Titanictus Shell"", 3], [""Titanictus Shell"", 4]]"
+,40,"[[""Clothcraft"", 22], [""Leathercraft"", 24]]",Shade Leggings,Earth,,"[[""Luminicloth"", 1], [""Lizard Skin"", 1], [""Tiger Leather"", 2], [""Uragnite Shell"", 1], [""Eft Skin"", 1], [""Photoanima"", 1]]","[[""Shade Leggings +1"", 1], null, null]"
+,40,[],Titanictus Shell,Lightning,,"[[""Armored Pisces"", 1]]","[null, null, null]"
+,40,[],Bone Cudgel,Wind,,"[[""Bone Chip"", 6], [""Grass Cloth"", 1], [""Giant Femur"", 1]]","[[""Bone Cudgel +1"", 1], null, null]"
+,40,[],Bone Cudgel,Wind,,"[[""Bonecraft Kit 40"", 1]]","[null, null, null]"
+,41,[],Bone Knife,Wind,,"[[""Walnut Lumber"", 1], [""Giant Femur"", 1]]","[[""Bone Knife +1"", 1], null, null]"
+,41,"[[""Leathercraft"", 13]]",Garish Crown,Earth,,"[[""Lizard Molt"", 1], [""Beetle Jaw"", 1], [""Coeurl Whisker"", 1], [""Bloodthread"", 1]]","[[""Rubious Crown"", 1], null, null]"
+,41,[],Luminous Shell,Wind,Bone Ensorcellment,"[[""Crab Shell"", 1], [""Lightning Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
+,41,[],Vivio Crab Shell,Wind,Bone Purification,"[[""Crab Shell"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
+,42,"[[""Goldsmithing"", 11]]",Carapace Ring,Wind,,"[[""Mythril Ingot"", 1], [""Crab Shell"", 1]]","[[""Carapace Ring +1"", 1], null, null]"
+,42,"[[""Clothcraft"", 24], [""Leathercraft"", 25]]",Shade Harness,Earth,,"[[""Luminicloth"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""Uragnite Shell"", 2], [""Eft Skin"", 2], [""Photoanima"", 1]]","[[""Shade Harness +1"", 1], null, null]"
+,43,[],Horn Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Ram Horn"", 1]]","[[""Horn Arrowheads"", 8], [""Horn Arrowheads"", 10], [""Horn Arrowheads"", 12]]"
+,43,[],Horn Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Ram Horn"", 3], [""Shagreen File"", 1]]","[[""Horn Arrowheads"", 24], [""Horn Arrowheads"", 30], [""Horn Arrowheads"", 36]]"
+,43,"[[""Alchemy"", 31]]",Skeleton Key,Earth,,"[[""Carbon Fiber"", 1], [""Chicken Bone"", 1], [""Glass Fiber"", 1], [""Bat Fang"", 2], [""Animal Glue"", 1], [""Hecteyes Eye"", 1], [""Sheep Tooth"", 1]]","[[""Skeleton Key"", 4], [""Skeleton Key"", 6], [""Skeleton Key"", 8]]"
+,44,"[[""Leathercraft"", 11]]",Carapace Mittens,Earth,,"[[""Dhalmel Leather"", 1], [""Fish Scales"", 1], [""Crab Shell"", 1]]","[[""Carapace Mittens +1"", 1], null, null]"
+,44,[],Mist Crown,Earth,,"[[""Smooth Beetle Jaw"", 1], [""Garish Crown"", 1]]","[null, null, null]"
+,44,[],Deathbone Knife,Wind,Bone Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Bone Knife"", 1]]","[null, null, null]"
+,45,[],Carapace Mask,Earth,,"[[""Crab Shell"", 1], [""Dhalmel Leather"", 1]]","[[""Carapace Mask +1"", 1], null, null]"
+,45,"[[""Woodworking"", 6]]",Serpette,Wind,,"[[""Ash Lumber"", 1], [""Grass Cloth"", 1], [""Giant Femur"", 2], [""Bukktooth"", 1]]","[[""Serpette +1"", 1], null, null]"
+,45,[],Carapace Mask,Earth,,"[[""Bonecraft Kit 45"", 1]]","[null, null, null]"
+,46,"[[""Leathercraft"", 12]]",Carapace Leggings,Earth,,"[[""Crab Shell"", 1], [""Fish Scales"", 1], [""Dhalmel Leather"", 2]]","[[""Carapace Leggings +1"", 1], null, null]"
+,47,[],Horn,Wind,,"[[""Beetle Jaw"", 1], [""Ram Horn"", 1]]","[[""Horn +1"", 1], null, null]"
+,47,"[[""Smithing"", 45], [""Woodworking"", 33]]",Mandibular Sickle,Wind,,"[[""Darksteel Ingot"", 1], [""Ebony Lumber"", 1], [""Ram Leather"", 1], [""Antlion Jaw"", 1]]","[[""Antlion Sickle"", 1], null, null]"
+,47,[],Thunder Mittens,Earth,,"[[""Luminous Shell"", 1], [""Carapace Mittens"", 1]]","[null, null, null]"
+,48,"[[""Leathercraft"", 12]]",Carapace Subligar,Earth,,"[[""Linen Cloth"", 1], [""Dhalmel Leather"", 1], [""Crab Shell"", 1]]","[[""Carapace Subligar +1"", 1], null, null]"
+,49,[],Carapace Gorget,Earth,,"[[""Iron Chain"", 1], [""Crab Shell"", 2]]","[[""Blue Gorget"", 1], null, null]"
+,49,"[[""Blacksmithing"", 42], [""Goldsmithing"", 28]]",Thug's Jambiya,Fire,,"[[""Brass Ingot"", 1], [""Mythril Ingot"", 1], [""Turquoise"", 1], [""Wivre Horn"", 1]]","[[""Thug's Jambiya +1"", 1], null, null]"
+,50,[],Bone Rod,Fire,,"[[""Giant Femur"", 1], [""Ram Horn"", 2]]","[[""Bone Rod +1"", 1], null, null]"
+,50,"[[""Leathercraft"", 13]]",Carapace Harness,Earth,,"[[""Dhalmel Leather"", 2], [""Crab Shell"", 2]]","[[""Carapace Harness +1"", 1], null, null]"
+,50,[],Vivio Scorpion Claw,Wind,Bone Purification,"[[""Scorpion Claw"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
+,50,[],Jet Sickle,Wind,Bone Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Mandibular Sickle"", 1]]","[null, null, null]"
+,50,[],Bone Rod,Fire,,"[[""Bonecraft Kit 50"", 1]]","[null, null, null]"
+,51,[],Shock Subligar,Earth,,"[[""Luminous Shell"", 1], [""Carapace Subligar"", 1]]","[null, null, null]"
+,52,"[[""Smithing"", 47]]",Bandit's Gun,Fire,,"[[""Steel Ingot"", 2], [""Giant Femur"", 1]]","[[""Bandit's Gun +1"", 1], null, null]"
+,52,[],Spirit Shell,Wind,Bone Ensorcellment,"[[""Turtle Shell"", 1], [""Earth Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
+,53,[],High Healing Harness,Earth,,"[[""Vivio Crab Shell"", 1], [""Carapace Harness"", 1]]","[null, null, null]"
+,53,[],Scorpion Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Scorpion Claw"", 1]]","[[""Scorpion Arrowheads"", 8], [""Scorpion Arrowheads"", 10], [""Scorpion Arrowheads"", 12]]"
+,53,[],Scorpion Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Scorpion Claw"", 3], [""Shagreen File"", 1]]","[[""Scorpion Arrowheads"", 24], [""Scorpion Arrowheads"", 30], [""Scorpion Arrowheads"", 36]]"
+,53,[],Shell Hairpin,Wind,,"[[""Turtle Shell"", 1]]","[[""Shell Hairpin +1"", 1], null, null]"
+,54,[],Turtle Bangles,Wind,,"[[""Turtle Shell"", 2], [""Giant Femur"", 1]]","[[""Turtle Bangles +1"", 1], null, null]"
+,55,[],Tortoise Earring,Wind,,"[[""Gold Chain"", 1], [""Turtle Shell"", 1]]","[[""Tortoise Earring +1"", 1], null, null]"
+,55,[],Tortoise Earring,Wind,,"[[""Bonecraft Kit 55"", 1]]","[null, null, null]"
+,56,"[[""Clothcraft"", 26]]",Justaucorps,Earth,,"[[""Wool Robe"", 1], [""Gold Thread"", 1], [""Beetle Shell"", 1], [""Scorpion Claw"", 2]]","[[""Justaucorps +1"", 1], null, null]"
+,57,[],Blood Stone,Wind,,"[[""Giant Femur"", 1], [""Grass Thread"", 1], [""Fiend Blood"", 1]]","[[""Blood Stone +1"", 1], null, null]"
+,57,"[[""Woodworking"", 19]]",Bone Scythe,Wind,,"[[""Yew Lumber"", 1], [""Giant Femur"", 2], [""Grass Cloth"", 1], [""Sheep Tooth"", 1]]","[[""Bone Scythe +1"", 1], null, null]"
+,57,[],Stone Bangles,Earth,,"[[""Spirit Shell"", 1], [""Turtle Bangles"", 1]]","[null, null, null]"
+,58,"[[""Smithing"", 55]]",Armored Arrowheads,Wind,,"[[""Steel Ingot"", 1], [""Taurus Horn"", 1]]","[[""Armored Arrowheads"", 8], [""Armored Arrowheads"", 10], [""Armored Arrowheads"", 12]]"
+,58,"[[""Smithing"", 55]]",Armored Arrowheads,Wind,,"[[""Steel Ingot"", 3], [""Taurus Horn"", 3], [""Shagreen File"", 1]]","[[""Armored Arrowheads"", 24], [""Armored Arrowheads"", 30], [""Armored Arrowheads"", 36]]"
+,58,[],Astragalos,Wind,,"[[""Giant Femur"", 1], [""Black Ink"", 1], [""Beastman Blood"", 1]]","[[""Astragalos"", 12], [""Astragalos"", 16], [""Astragalos"", 20]]"
+,59,[],Beetle Knife,Wind,,"[[""Oak Lumber"", 1], [""Beetle Jaw"", 1]]","[[""Beetle Knife +1"", 1], null, null]"
+,59,[],Healing Justaucorps,Earth,,"[[""Vivio Scorpion Claw"", 1], [""Justaucorps"", 1]]","[null, null, null]"
+,59,[],Macuahuitl,Wind,,"[[""Bugard Tusk"", 1], [""Rhinochimera"", 1], [""Macuahuitl -1"", 1]]","[[""Macuahuitl +1"", 1], null, null]"
+,60,[],Beak Necklace,Earth,,"[[""High-Quality Crab Shell"", 1], [""Oxblood"", 1], [""Colibri Beak"", 4], [""Mohbwa Thread"", 1], [""Wivre Maul"", 1]]","[[""Beak Necklace +1"", 1], null, null]"
+,60,[],Scorpion Ring,Wind,,"[[""Scorpion Shell"", 1]]","[[""Scorpion Ring +1"", 1], null, null]"
+,60,[],Ranging Knife,Wind,,"[[""Walnut Lumber"", 1], [""Stately Crab Shell"", 1]]","[[""Ranging Knife +1"", 1], null, null]"
+,60,[],Barnacle,Lightning,,"[[""Carrier Crab Carapace"", 1]]","[[""Barnacle"", 2], [""Barnacle"", 3], [""Barnacle"", 4]]"
+,60,[],Scorpion Ring,Wind,,"[[""Bonecraft Kit 60"", 1]]","[null, null, null]"
+,61,[],Fang Earring,Wind,,"[[""Silver Chain"", 1], [""Black Tiger Fang"", 2]]","[[""Spike Earring"", 1], null, null]"
+,61,[],Wind Fan,Earth,,"[[""Beetle Shell"", 1], [""Giant Femur"", 1], [""Beeswax"", 1], [""Bat Wing"", 1], [""Wind Cluster"", 1]]","[[""Wind Fan"", 99], null, null]"
+,62,"[[""Smithing"", 49]]",Pirate's Gun,Fire,,"[[""Steel Ingot"", 1], [""Darksteel Ingot"", 1], [""Turtle Shell"", 1]]","[[""Pirate's Gun +1"", 1], null, null]"
+,62,[],Coral Horn,Wind,,"[[""Oxblood"", 1]]","[null, null, null]"
+,62,"[[""Smithing"", 50], [""Goldsmithing"", 33]]",Darksteel Jambiya,Fire,,"[[""Darksteel Ingot"", 1], [""Silver Ingot"", 1], [""Sunstone"", 1], [""Mercury"", 1], [""Ladybug Wing"", 1]]","[null, null, null]"
+,62,"[[""Smithing"", 50], [""Goldsmithing"", 33]]",Ogre Jambiya,Fire,,"[[""Darksteel Ingot"", 1], [""Silver Ingot"", 1], [""Sunstone"", 1], [""Mercury"", 1], [""Buggane Horn"", 1]]","[null, null, null]"
+,63,[],Demon Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Demon Horn"", 1]]","[[""Demon Arrowheads"", 8], [""Demon Arrowheads"", 10], [""Demon Arrowheads"", 12]]"
+,63,[],Demon Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Demon Horn"", 3], [""Shagreen File"", 1]]","[[""Demon Arrowheads"", 24], [""Demon Arrowheads"", 30], [""Demon Arrowheads"", 36]]"
+,63,"[[""Leathercraft"", 31]]",Scorpion Mittens,Earth,,"[[""Scorpion Shell"", 1], [""Ram Leather"", 1], [""Pugil Scales"", 1]]","[[""Scorpion Mittens +1"", 1], null, null]"
+,64,"[[""Leathercraft"", 21]]",Marid Mittens,Earth,,"[[""Karakul Leather"", 1], [""Merrow Scale"", 1], [""Marid Tusk"", 1]]","[[""Marid Mittens +1"", 1], null, null]"
+,64,[],Scorpion Mask,Earth,,"[[""Ram Leather"", 1], [""Scorpion Shell"", 1]]","[[""Scorpion Mask +1"", 1], null, null]"
+,65,[],Scapegoat,Wind,,"[[""Phoenix Feather"", 1], [""Marid Tusk"", 1]]","[null, null, null]"
+,65,[],Ladybug Ring,Wind,,"[[""Ladybug Wing"", 2]]","[[""Ladybug Ring +1"", 1], null, null]"
+,65,"[[""Leathercraft"", 32]]",Scorpion Leggings,Earth,,"[[""Scorpion Shell"", 1], [""Ram Leather"", 2], [""Pugil Scales"", 1]]","[[""Scorpion Leggings +1"", 1], null, null]"
+,65,[],Ladybug Ring,Wind,,"[[""Bonecraft Kit 65"", 1]]","[null, null, null]"
+,66,[],Crumhorn,Wind,,"[[""Beetle Jaw"", 1], [""Demon Horn"", 1]]","[[""Crumhorn +1"", 1], [""Crumhorn +1"", 1], [""Crumhorn +2"", 1]]"
+,66,"[[""Leathercraft"", 22]]",Marid Leggings,Earth,,"[[""Karakul Leather"", 2], [""Merrow Scale"", 1], [""Marid Tusk"", 1]]","[[""Marid Leggings +1"", 1], null, null]"
+,66,"[[""Smithing"", 45], [""Woodworking"", 33]]",Ogre Sickle,Wind,,"[[""Darksteel Ingot"", 1], [""Ebony Lumber"", 1], [""Ruszor Leather"", 1], [""Buggane Horn"", 1]]","[null, null, null]"
+,67,"[[""Goldsmithing"", 53], [""Woodworking"", 31]]",Ivory Sickle,Wind,,"[[""Mahogany Lumber"", 1], [""Platinum Ingot"", 1], [""Ram Leather"", 1], [""Oversized Fang"", 1]]","[[""Ivory Sickle +1"", 1], null, null]"
+,67,"[[""Leathercraft"", 32]]",Scorpion Subligar,Earth,,"[[""Linen Cloth"", 1], [""Scorpion Shell"", 1], [""Ram Leather"", 1]]","[[""Scorpion Subligar +1"", 1], null, null]"
+,68,[],Bone Patas,Fire,,"[[""Crab Shell"", 1], [""Giant Femur"", 2], [""Carbon Fiber"", 1]]","[[""Bone Patas +1"", 1], null, null]"
+,68,"[[""Smithing"", 43]]",Seadog Gun,Fire,,"[[""Steel Ingot"", 2], [""Coral Fragment"", 2]]","[[""Seadog Gun +1"", 1], null, null]"
+,69,[],Beast Horn,Wind,,"[[""Ram Horn"", 2]]","[null, null, null]"
+,69,"[[""Leathercraft"", 33]]",Scorpion Harness,Earth,,"[[""Venomous Claw"", 1], [""Scorpion Shell"", 2], [""Ram Leather"", 2]]","[[""Scorpion Harness +1"", 1], null, null]"
+,70,[],Antlion Trap,Earth,,"[[""Coeurl Whisker"", 1], [""Animal Glue"", 1], [""Antican Pauldron"", 1], [""Antican Robe"", 1], [""High-Quality Antlion Jaw"", 2]]","[null, null, null]"
+,70,[],Demon's Ring,Wind,,"[[""Fish Scales"", 1], [""Demon Horn"", 1]]","[[""Demon's Ring +1"", 1], null, null]"
+,70,[],Demon's Ring,Wind,,"[[""Bonecraft Kit 70"", 1]]","[null, null, null]"
+,71,"[[""Goldsmithing"", 52]]",Hornet Fleuret,Fire,,"[[""Brass Ingot"", 1], [""Moonstone"", 1], [""Giant Femur"", 1], [""Pearl"", 1], [""Giant Stinger"", 1]]","[[""Wasp Fleuret"", 1], null, null]"
+,71,[],Kilo Fan,Earth,,"[[""Crab Shell"", 1], [""Giant Femur"", 1], [""Beeswax"", 1], [""Bat Wing"", 1], [""Wind Cluster"", 1]]","[[""Kilo Fan"", 99], null, null]"
+,71,[],Vivified Coral,Wind,Bone Purification,"[[""Coral Fragment"", 1], [""Lightning Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
+,72,"[[""Leathercraft"", 5]]",Coral Cuisses,Earth,,"[[""Leather Trousers"", 1], [""Coral Fragment"", 2], [""Rainbow Thread"", 1]]","[[""Coral Cuisses +1"", 1], null, null]"
+,72,"[[""Leathercraft"", 46]]",Coral Subligar,Earth,,"[[""Coeurl Leather"", 1], [""Linen Cloth"", 1], [""Coral Fragment"", 1]]","[[""Merman's Subligar"", 1], null, null]"
+,72,[],Gnole Sainti,Wind,,"[[""Brass Ingot"", 1], [""Steel Ingot"", 1], [""Gnole Claw"", 2], [""Teak Lumber"", 1]]","[[""Gnole Sainti +1"", 1], null, null]"
+,73,[],Demon's Knife,Wind,,"[[""Ebony Lumber"", 1], [""Demon Horn"", 1]]","[[""Demon's Knife +1"", 1], null, null]"
+,73,[],Lithic Wyvern Scale,Wind,Bone Purification,"[[""Wyvern Scales"", 1], [""Earth Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
+,73,[],Tactician Magician's Hooks +1,Earth,,"[[""Tactician Magician's Hooks"", 1], [""Demon Horn"", 1]]","[[""Tactician Magician's Hooks +2"", 1], null, null]"
+,73,[],Vivio Wyvern Scale,Wind,Bone Purification,"[[""Wyvern Scales"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
+,74,[],Coral Finger Gauntlets,Earth,,"[[""Leather Gloves"", 1], [""Coral Fragment"", 2], [""Rainbow Thread"", 1]]","[[""Coral Finger Gauntlets +1"", 1], null, null]"
+,74,"[[""Leathercraft"", 48]]",Coral Mittens,Earth,,"[[""Coeurl Leather"", 1], [""Coral Fragment"", 1], [""Wyvern Scales"", 1]]","[[""Merman's Mittens"", 1], null, null]"
+,74,[],Oxblood Orb,Wind,,"[[""Silver Chain"", 1], [""Oxblood"", 1]]","[[""Oxblood Orb"", 8], [""Oxblood Orb"", 10], [""Oxblood Orb"", 12]]"
+,74,[],Angel Skin Orb,Wind,,"[[""Silver Chain"", 1], [""Angel Skin"", 1]]","[[""Angel Skin Orb"", 8], [""Angel Skin Orb"", 10], [""Angel Skin Orb"", 12]]"
+,75,"[[""Leathercraft"", 35]]",Clown's Subligar,Earth,,"[[""Lindwurm Skin"", 1], [""Linen Cloth"", 1], [""Coral Fragment"", 1]]","[[""Clown's Subligar +1"", 1], null, null]"
+,75,[],Ladybug Earring,Wind,,"[[""Ladybug Wing"", 1], [""Electrum Chain"", 1]]","[[""Ladybug Earring +1"", 1], null, null]"
+,75,"[[""Smithing"", 53]]",Corsair's Gun,Fire,,"[[""Demon Horn"", 1], [""Darksteel Ingot"", 2]]","[[""Corsair's Gun +1"", 1], null, null]"
+,75,[],Ladybug Earring,Wind,,"[[""Bonecraft Kit 75"", 1]]","[null, null, null]"
+,76,"[[""Leathercraft"", 49]]",Coral Leggings,Earth,,"[[""Coeurl Leather"", 2], [""Coral Fragment"", 1], [""Wyvern Scales"", 1]]","[[""Merman's Leggings"", 1], null, null]"
+,76,[],Coral Greaves,Earth,,"[[""Leather Highboots"", 1], [""Coral Fragment"", 2], [""Rainbow Thread"", 1]]","[[""Coral Greaves +1"", 1], null, null]"
+,77,[],Coral Hairpin,Wind,,"[[""Black Pearl"", 1], [""Coral Fragment"", 1], [""Pearl"", 1]]","[[""Merman's Hairpin"", 1], null, null]"
+,77,[],Coral Visor,Wind,,"[[""Coral Fragment"", 2], [""Sheep Leather"", 1]]","[[""Coral Visor +1"", 1], null, null]"
+,78,[],Coral Cap,Earth,,"[[""Darksteel Cap"", 1], [""Coral Fragment"", 1]]","[[""Merman's Cap"", 1], null, null]"
+,78,[],Marid Tusk Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Marid Tusk"", 1]]","[[""Marid Tusk Arrowheads"", 8], [""Marid Tusk Arrowheads"", 10], [""Marid Tusk Arrowheads"", 12]]"
+,78,[],Marid Tusk Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Marid Tusk"", 3], [""Shagreen File"", 1]]","[[""Marid Tusk Arrowheads"", 24], [""Marid Tusk Arrowheads"", 30], [""Marid Tusk Arrowheads"", 36]]"
+,78,[],Zeal Cap,Earth,,"[[""Thunder Coral"", 1], [""Darksteel Cap"", 1]]","[[""Zeal Cap +1"", 1], null, null]"
+,78,"[[""Clothcraft"", 43], [""Leathercraft"", 33]]",Quadav Barbut,Earth,,"[[""Quadav Parts"", 1], [""Tiger Leather"", 1], [""Lizard Molt"", 1], [""Bugard Tusk"", 1], [""Wool Thread"", 1], [""Red Grass Cloth"", 1], [""Black Pearl"", 2]]","[null, null, null]"
+,79,[],Coral Gorget,Wind,,"[[""Coral Fragment"", 1], [""Sheep Leather"", 1]]","[[""Merman's Gorget"", 1], null, null]"
+,79,[],Tigerfangs,Fire,,"[[""Carbon Fiber"", 1], [""Black Tiger Fang"", 2], [""Scorpion Shell"", 1]]","[[""Feral Fangs"", 1], null, null]"
+,79,"[[""Woodworking"", 50]]",Horn Trophy,Earth,,"[[""Wool Thread"", 1], [""Buffalo Horn"", 2], [""Sheep Chammy"", 1], [""Teak Lumber"", 1]]","[null, null, null]"
+,79,[],Nuna Gorget,Wind,,"[[""Sheep Leather"", 1], [""Craklaw Pincer"", 1]]","[[""Nuna Gorget +1"", 1], null, null]"
+,80,"[[""Leathercraft"", 50]]",Coral Harness,Earth,,"[[""Coeurl Leather"", 2], [""Coral Fragment"", 2]]","[[""Merman's Harness"", 1], null, null]"
+,80,[],Coral Ring,Wind,,"[[""Coral Fragment"", 2]]","[[""Merman's Ring"", 1], null, null]"
+,80,[],Coral Scale Mail,Earth,,"[[""Leather Vest"", 1], [""Coral Fragment"", 4], [""Sheep Leather"", 1], [""Rainbow Thread"", 1]]","[[""Coral Scale Mail +1"", 1], null, null]"
+,80,[],Reraise Hairpin,Wind,,"[[""Vivified Coral"", 1], [""Coral Hairpin"", 1]]","[null, null, null]"
+,80,[],Vela Justaucorps,Earth,,"[[""Gold Thread"", 1], [""Beetle Shell"", 1], [""Bastet Fang"", 2], [""Wool Robe"", 1]]","[[""Vela Justaucorps +1"", 1], null, null]"
+,80,[],Coral Ring,Wind,,"[[""Bonecraft Kit 80"", 1]]","[null, null, null]"
+,81,"[[""Smithing"", 58]]",Darksteel Shield,Earth,,"[[""Ash Lumber"", 1], [""Darksteel Sheet"", 3], [""Wyvern Scales"", 4]]","[[""Darksteel Shield +1"", 1], null, null]"
+,81,[],Marid Ring,Wind,,"[[""Marid Tusk"", 2]]","[[""Marid Ring +1"", 1], null, null]"
+,81,[],Saintly Ring,Earth,,"[[""Ascetic's Ring"", 1], [""Fish Scales"", 1]]","[[""Saintly Ring +1"", 1], null, null]"
+,82,"[[""Leathercraft"", 5]]",Dragon Cuisses,Earth,,"[[""Leather Trousers"", 1], [""Silver Thread"", 1], [""Wyvern Scales"", 2]]","[[""Dragon Cuisses +1"", 1], null, null]"
+,82,[],Eremite's Ring,Earth,,"[[""Hermit's Ring"", 1], [""Sheep Tooth"", 1]]","[[""Eremite's Ring +1"", 1], null, null]"
+,82,[],Reraise Gorget,Wind,,"[[""Vivified Coral"", 1], [""Coral Gorget"", 1]]","[null, null, null]"
+,82,[],Antlion Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Antlion Jaw"", 1]]","[[""Antlion Arrowheads"", 8], [""Antlion Arrowheads"", 10], [""Antlion Arrowheads"", 12]]"
+,82,[],Antlion Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Antlion Jaw"", 3], [""Shagreen File"", 1]]","[[""Antlion Arrowheads"", 24], [""Antlion Arrowheads"", 30], [""Antlion Arrowheads"", 36]]"
+,83,[],Coral Earring,Wind,,"[[""Silver Chain"", 1], [""Coral Fragment"", 2]]","[[""Merman's Earring"", 1], null, null]"
+,83,[],Mega Fan,Earth,,"[[""Scorpion Shell"", 1], [""Giant Femur"", 1], [""Beeswax"", 1], [""Bat Wing"", 1], [""Wind Cluster"", 1]]","[[""Mega Fan"", 99], null, null]"
+,83,"[[""Goldsmithing"", 49], [""Leathercraft"", 31]]",Lamia Garland,Wind,,"[[""Brass Chain"", 1], [""Garnet"", 1], [""Manta Leather"", 1], [""Uragnite Shell"", 1], [""Aht Urhgan Brass Ingot"", 1]]","[null, null, null]"
+,84,[],Behemoth Knife,Wind,,"[[""Behemoth Horn"", 1], [""Mahogany Lumber"", 1]]","[[""Behemoth Knife +1"", 1], null, null]"
+,84,[],Dragon Finger Gauntlets,Earth,,"[[""Leather Gloves"", 1], [""Silver Thread"", 1], [""Wyvern Scales"", 2]]","[[""Dragon Finger Gauntlets +1"", 1], null, null]"
+,84,[],Chapuli Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Chapuli Horn"", 1]]","[[""Chapuli Arrowheads"", 8], [""Chapuli Arrowheads"", 10], [""Chapuli Arrowheads"", 12]]"
+,84,[],Chapuli Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Chapuli Horn"", 3], [""Shagreen File"", 1]]","[[""Chapuli Arrowheads"", 24], [""Chapuli Arrowheads"", 30], [""Chapuli Arrowheads"", 36]]"
+,85,[],Eris' Earring,Earth,,"[[""Nemesis Earring"", 1], [""Seashell"", 1]]","[[""Eris' Earring +1"", 1], null, null]"
+,85,[],Hellish Bugle,Earth,,"[[""Imp Horn"", 1], [""Colibri Beak"", 1]]","[[""Hellish Bugle +1"", 1], null, null]"
+,85,[],Wivre Hairpin,Wind,,"[[""Wivre Maul"", 1]]","[[""Wivre Hairpin +1"", 1], null, null]"
+,85,[],Ruszor Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Ruszor Fang"", 1]]","[[""Ruszor Arrowheads"", 8], [""Ruszor Arrowheads"", 10], [""Ruszor Arrowheads"", 12]]"
+,85,[],Ruszor Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Ruszor Fang"", 3], [""Shagreen File"", 1]]","[[""Ruszor Arrowheads"", 24], [""Ruszor Arrowheads"", 30], [""Ruszor Arrowheads"", 36]]"
+,85,[],Hellish Bugle,Earth,,"[[""Bonecraft Kit 85"", 1]]","[null, null, null]"
+,86,[],Shofar,Wind,,"[[""Behemoth Horn"", 1], [""Beetle Jaw"", 1]]","[[""Shofar +1"", 1], null, null]"
+,86,[],Wivre Gorget,Wind,,"[[""Karakul Leather"", 1], [""Wivre Horn"", 1]]","[[""Wivre Gorget +1"", 1], null, null]"
+,86,[],Dragon Greaves,Earth,,"[[""Leather Highboots"", 1], [""Silver Thread"", 1], [""Wyvern Scales"", 2]]","[[""Dragon Greaves +1"", 1], null, null]"
+,87,[],Coral Bangles,Wind,,"[[""Giant Femur"", 1], [""Coral Fragment"", 2]]","[[""Merman's Bangles"", 1], null, null]"
+,87,[],Dragon Mask,Wind,,"[[""Sheep Leather"", 1], [""Wyvern Scales"", 2]]","[[""Dragon Mask +1"", 1], null, null]"
+,87,[],Snakeeye,Wind,,"[[""Hydra Fang"", 2], [""Wamoura Silk"", 1]]","[[""Snakeeye +1"", 1], null, null]"
+,88,[],Coral Sword,Earth,,"[[""Katzbalger"", 1], [""Coral Fragment"", 4]]","[[""Merman's Sword"", 1], null, null]"
+,88,[],Lamian Kaman,Earth,,"[[""Scorpion Claw"", 1], [""Marid Tusk"", 1], [""Lamian Kaman -1"", 1]]","[[""Lamian Kaman +1"", 1], null, null]"
+,88,"[[""Goldsmithing"", 60], [""Smithing"", 55]]",Naigama,Wind,,"[[""Bloodwood Lumber"", 1], [""Karakul Leather"", 1], [""Relic Steel"", 1], [""Marid Tusk"", 1], [""Scintillant Ingot"", 1]]","[[""Naigama +1"", 1], null, null]"
+,88,[],Gargouille Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Gargouille Horn"", 1]]","[[""Gargouille Arrowheads"", 8], [""Gargouille Arrowheads"", 10], [""Gargouille Arrowheads"", 12]]"
+,88,[],Gargouille Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Gargouille Horn"", 3], [""Shagreen File"", 1]]","[[""Gargouille Arrowheads"", 24], [""Gargouille Arrowheads"", 30], [""Gargouille Arrowheads"", 36]]"
+,88,"[[""Goldsmithing"", 33]]",Ghillie Earring,Wind,,"[[""Silver Chain"", 1], [""Ruszor Fang"", 2]]","[[""Ghillie Earring +1"", 1], null, null]"
+,89,[],Behemoth Ring,Wind,,"[[""Behemoth Horn"", 2]]","[[""Behemoth Ring +1"", 1], null, null]"
+,89,[],Earth Greaves,Earth,,"[[""Lithic Wyvern Scale"", 1], [""Dragon Greaves"", 1]]","[null, null, null]"
+,89,[],Inferno Sabots,Earth,,"[[""Ebony Sabots"", 1], [""Namtar Bone"", 1]]","[[""Inferno Sabots +1"", 1], null, null]"
+,90,"[[""Leathercraft"", 59]]",Demon's Harness,Earth,,"[[""Behemoth Leather"", 2], [""Demon Skull"", 2]]","[[""Demon's Harness +1"", 1], null, null]"
+,90,[],Dragon Claws,Earth,,"[[""Beetle Jaw"", 1], [""Dragon Talon"", 2]]","[[""Dragon Claws +1"", 1], null, null]"
+,90,"[[""Smithing"", 42]]",Dragon Mail,Earth,,"[[""Darksteel Chain"", 1], [""Darksteel Sheet"", 1], [""Leather Vest"", 1], [""Silver Thread"", 1], [""Wyvern Scales"", 3], [""Dragon Scales"", 1]]","[[""Dragon Mail +1"", 1], null, null]"
+,90,"[[""Goldsmithing"", 40]]",Airmid's Gorget,Earth,,"[[""Silver Chain"", 3], [""Vivified Coral"", 1], [""Vivified Mythril"", 1]]","[null, null, null]"
+,90,[],Mantid Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Mantid Foreleg"", 1]]","[[""Mantid Arrowheads"", 8], [""Mantid Arrowheads"", 10], [""Mantid Arrowheads"", 12]]"
+,90,[],Mantid Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Mantid Foreleg"", 3], [""Shagreen File"", 1]]","[[""Mantid Arrowheads"", 24], [""Mantid Arrowheads"", 30], [""Mantid Arrowheads"", 36]]"
+,90,[],Vexer Ring,Wind,,"[[""Coral Fragment"", 2], [""Twitherym Scale"", 1], [""Matamata Shell"", 1]]","[[""Vexer Ring +1"", 1], null, null]"
+,90,[],Dragon Claws,Earth,,"[[""Bonecraft Kit 90"", 1]]","[null, null, null]"
+,91,"[[""Leathercraft"", 41]]",Cursed Subligar,Earth,,"[[""Angel Skin"", 1], [""Silk Cloth"", 1], [""Tiger Leather"", 1]]","[[""Cursed Subligar -1"", 1], null, null]"
+,91,[],Demon Helm,Dark,,"[[""Sheep Leather"", 1], [""Demon Skull"", 1], [""Demon Horn"", 2]]","[[""Demon Helm +1"", 1], null, null]"
+,91,"[[""Leathercraft"", 38]]",Igqira Tiara,Earth,,"[[""Coral Fragment"", 3], [""Garnet"", 1], [""Coeurl Leather"", 1], [""Manticore Hair"", 1]]","[[""Genie Tiara"", 1], null, null]"
+,91,"[[""Goldsmithing"", 60], [""Smithing"", 39]]",Jambiya,Fire,,"[[""Steel Ingot"", 1], [""Mercury"", 1], [""Pigeon's Blood Ruby"", 1], [""Marid Tusk"", 1], [""Scintillant Ingot"", 1]]","[[""Jambiya +1"", 1], null, null]"
+,91,[],Matamata Shield,Earth,,"[[""Craklaw Pincer"", 1], [""Matamata Shell"", 1]]","[[""Matamata Shield +1"", 1], null, null]"
+,91,[],Bewitched Leggings,Earth,,"[[""Cursed Leggings -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Leggings"", 1], null, null]"
+,91,[],Vexed Gamashes,Earth,,"[[""Hexed Gamashes -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Gamashes"", 1], null, null]"
+,92,[],Carapace Gauntlets,Earth,,"[[""Leather Gloves"", 2], [""High-Quality Crab Shell"", 2]]","[[""Carapace Gauntlets +1"", 1], null, null]"
+,92,"[[""Leathercraft"", 43]]",Cursed Gloves,Earth,,"[[""Angel Skin"", 1], [""Tiger Leather"", 1], [""Wyvern Scales"", 1]]","[[""Cursed Gloves -1"", 1], null, null]"
+,92,"[[""Leathercraft"", 53]]",Dragon Subligar,Earth,,"[[""Sarcenet Cloth"", 1], [""Buffalo Leather"", 1], [""Dragon Bone"", 1]]","[[""Dragon Subligar +1"", 1], null, null]"
+,92,"[[""Goldsmithing"", 31]]",Wivre Ring,Wind,,"[[""Aht Urhgan Brass Ingot"", 1], [""Wivre Horn"", 2]]","[[""Wivre Ring +1"", 1], null, null]"
+,92,"[[""Leathercraft"", 58]]",Unicorn Subligar,Earth,,"[[""Behemoth Leather"", 1], [""Taffeta Cloth"", 1], [""Unicorn Horn"", 1]]","[[""Unicorn Subligar +1"", 1], null, null]"
+,92,[],Raaz Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Raaz Tusk"", 1]]","[[""Raaz Arrowheads"", 8], [""Raaz Arrowheads"", 10], [""Raaz Arrowheads"", 12]]"
+,92,[],Raaz Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Raaz Tusk"", 3], [""Shagreen File"", 1]]","[[""Raaz Arrowheads"", 24], [""Raaz Arrowheads"", 30], [""Raaz Arrowheads"", 36]]"
+,92,[],Bewitched Gloves,Earth,,"[[""Cursed Gloves -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Gloves"", 1], null, null]"
+,92,[],Vexed Wristbands,Earth,,"[[""Hexed Wristbands -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Wristbands"", 1], null, null]"
+,93,[],Carapace Helm,Earth,,"[[""Copper Ingot"", 1], [""High-Quality Crab Shell"", 2], [""Sheep Leather"", 1], [""Ram Leather"", 1]]","[[""Carapace Helm +1"", 1], null, null]"
+,93,"[[""Alchemy"", 41]]",Igqira Manillas,Earth,,"[[""Garnet"", 1], [""Bugard Tusk"", 1], [""Manticore Hair"", 1], [""Uragnite Shell"", 1], [""Avatar Blood"", 1]]","[[""Genie Manillas"", 1], null, null]"
+,93,[],Healing Mail,Earth,,"[[""Vivio Wyvern Scale"", 1], [""Dragon Mail"", 1]]","[null, null, null]"
+,93,[],Marath Baghnakhs,Earth,,"[[""Molybdenum Sheet"", 1], [""Marid Leather"", 1], [""Gargouille Horn"", 3]]","[[""Shivaji Baghnakhs"", 1], null, null]"
+,93,[],Bewitched Subligar,Earth,,"[[""Cursed Subligar -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Subligar"", 1], null, null]"
+,93,[],Shadow Throne,Dark,,"[[""Demon Skull"", 1], [""Demon Horn"", 2], [""Giant Femur"", 2], [""Fiend Blood"", 1], [""Demon Blood"", 1], [""Necropsyche"", 1]]","[null, null, null]"
+,94,"[[""Leathercraft"", 44]]",Cursed Leggings,Earth,,"[[""Angel Skin"", 1], [""Tiger Leather"", 2], [""Wyvern Scales"", 1]]","[[""Cursed Leggings -1"", 1], null, null]"
+,94,[],Mammoth Tusk,Wind,,"[[""Giant Frozen Head"", 1]]","[null, null, null]"
+,94,"[[""Alchemy"", 42]]",Shell Lamp,Wind,,"[[""Uragnite Shell"", 1], [""Flint Glass Sheet"", 1], [""Kaolin"", 2], [""Bomb Arm"", 1]]","[null, null, null]"
+,94,"[[""Leathercraft"", 52]]",Dragon Mittens,Earth,,"[[""Wyvern Scales"", 1], [""Buffalo Leather"", 1], [""Dragon Bone"", 1]]","[[""Dragon Mittens +1"", 1], null, null]"
+,94,[],Bewitched Cap,Earth,,"[[""Cursed Cap -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Cap"", 1], null, null]"
+,95,[],Carapace Breastplate,Earth,,"[[""Sheep Leather"", 1], [""Ram Leather"", 2], [""High-Quality Crab Shell"", 4]]","[[""Carapace Breastplate +1"", 1], null, null]"
+,95,[],Gavial Cuisses,Earth,,"[[""Titanictus Shell"", 1], [""High-Quality Pugil Scales"", 1], [""Rainbow Thread"", 1], [""Leather Trousers"", 1]]","[[""Gavial Cuisses +1"", 1], null, null]"
+,95,"[[""Leathercraft"", 50]]",Igqira Huaraches,Earth,,"[[""Coeurl Whisker"", 1], [""Coeurl Leather"", 1], [""Bugard Tusk"", 1], [""High-Quality Bugard Skin"", 1], [""Harajnite Shell"", 1]]","[[""Genie Huaraches"", 1], null, null]"
+,95,"[[""Leathercraft"", 54]]",Unicorn Mittens,Earth,,"[[""Gold Thread"", 1], [""Behemoth Leather"", 1], [""Wyvern Scales"", 1], [""Unicorn Horn"", 1]]","[[""Unicorn Mittens +1"", 1], null, null]"
+,95,"[[""Woodworking"", 48], [""Goldsmithing"", 30]]",Buzbaz Sainti,Wind,,"[[""Light Steel Ingot"", 2], [""Oak Lumber"", 1], [""Ruszor Fang"", 2]]","[[""Buzbaz Sainti +1"", 1], null, null]"
+,95,[],Bewitched Harness,Earth,,"[[""Cursed Harness -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Harness"", 1], null, null]"
+,95,[],Vexed Jacket,Earth,,"[[""Hexed Jacket -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Jacket"", 1], null, null]"
+,95,[],Carapace Breastplate,Earth,,"[[""Bonecraft Kit 95"", 1]]","[null, null, null]"
+,96,[],Acheron Shield,Earth,,"[[""Adamantoise Shell"", 2], [""Ram Leather"", 1]]","[[""Acheron Shield +1"", 1], null, null]"
+,96,"[[""Leathercraft"", 53]]",Dragon Leggings,Earth,,"[[""Wyvern Scales"", 1], [""Buffalo Leather"", 2], [""Dragon Bone"", 1]]","[[""Dragon Leggings +1"", 1], null, null]"
+,96,[],Scorpion Gauntlets,Earth,,"[[""High-Quality Scorpion Shell"", 2], [""Leather Gloves"", 2]]","[[""Scorpion Gauntlets +1"", 1], null, null]"
+,96,[],Hydra Cuisses,Earth,,"[[""Hydra Scale"", 1], [""Leather Trousers"", 1], [""Rainbow Thread"", 1], [""Titanictus Shell"", 1]]","[[""Hydra Cuisses +1"", 1], null, null]"
+,96,[],Trumpet Ring,Wind,,"[[""Trumpet Shell"", 2]]","[[""Nereid Ring"", 1], null, null]"
+,97,[],Cursed Cap,Earth,,"[[""Angel Skin"", 1], [""Darksteel Cap"", 1]]","[[""Cursed Cap -1"", 1], null, null]"
+,97,[],Gavial Finger Gauntlets,Earth,,"[[""Titanictus Shell"", 1], [""High-Quality Pugil Scales"", 1], [""Rainbow Thread"", 1], [""Leather Gloves"", 1]]","[[""Gavial Finger Gauntlets +1"", 1], null, null]"
+,97,"[[""Leathercraft"", 46]]",Igqira Lappa,Earth,,"[[""Coeurl Whisker"", 1], [""Coeurl Leather"", 1], [""Manticore Leather"", 1], [""Uragnite Shell"", 1], [""High-Quality Bugard Skin"", 1], [""Megalobugard Tusk"", 1]]","[[""Genie Lappa"", 1], null, null]"
+,97,[],Scorpion Helm,Earth,,"[[""High-Quality Scorpion Shell"", 2], [""Ram Leather"", 1], [""Sheep Leather"", 1], [""Copper Ingot"", 1]]","[[""Scorpion Helm +1"", 1], null, null]"
+,97,"[[""Leathercraft"", 55]]",Unicorn Leggings,Earth,,"[[""Gold Thread"", 1], [""Behemoth Leather"", 2], [""Wyvern Scales"", 1], [""Unicorn Horn"", 1]]","[[""Unicorn Leggings +1"", 1], null, null]"
+,97,"[[""Leathercraft"", 60]]",Sombra Tiara,Earth,,"[[""Intuila's Hide"", 1], [""Emperor Arthro's Shell"", 1]]","[[""Sombra Tiara +1"", 1], null, null]"
+,98,"[[""Leathercraft"", 41]]",Wyvern Helm,Dark,,"[[""Guivre's Skull"", 1], [""Tiger Leather"", 1], [""Sheep Leather"", 1], [""Beeswax"", 1]]","[[""Wyvern Helm +1"", 1], null, null]"
+,98,[],Cerberus Ring,Wind,,"[[""Cerberus Claw"", 2]]","[[""Cerberus Ring +1"", 1], null, null]"
+,98,[],Dragon Cap,Earth,,"[[""Dragon Bone"", 1], [""Darksteel Cap"", 1]]","[[""Dragon Cap +1"", 1], null, null]"
+,98,[],Orochi Nodowa,Earth,,"[[""Hydra Scale"", 1], [""Wamoura Silk"", 1]]","[[""Orochi Nodowa +1"", 1], null, null]"
+,98,[],Hydra Finger Gauntlets,Earth,,"[[""Rainbow Thread"", 1], [""Titanictus Shell"", 1], [""Hydra Scale"", 1], [""Leather Gloves"", 1]]","[[""Hydra Finger Gauntlets +1"", 1], null, null]"
+,98,[],Sombra Mittens,Earth,,"[[""Damascene Cloth"", 1], [""Buffalo Leather"", 1], [""Raaz Leather"", 1], [""Intuila's Hide"", 1], [""Emperor Arthro's Shell"", 1]]","[[""Sombra Mittens +1"", 1], null, null]"
+,99,[],Dragon Ring,Wind,,"[[""Dragon Talon"", 2]]","[[""Dragon Ring +1"", 1], null, null]"
+,99,[],Gavial Greaves,Earth,,"[[""Titanictus Shell"", 1], [""High-Quality Pugil Scales"", 1], [""Rainbow Thread"", 1], [""Leather Highboots"", 1]]","[[""Gavial Greaves +1"", 1], null, null]"
+,99,"[[""Leathercraft"", 55], [""Alchemy"", 44]]",Igqira Weskit,Earth,,"[[""Coeurl Leather"", 1], [""Lapis Lazuli"", 1], [""Dhalmel Leather"", 1], [""Dragon Talon"", 1], [""Manticore Hair"", 1], [""Avatar Blood"", 1], [""High-Quality Bugard Skin"", 1], [""Bugard Tusk"", 1]]","[[""Genie Weskit"", 1], null, null]"
+,99,[],Scorpion Breastplate,Earth,,"[[""High-Quality Scorpion Shell"", 4], [""Ram Leather"", 2], [""Sheep Leather"", 1]]","[[""Scorpion Breastplate +1"", 1], null, null]"
+,99,"[[""Leathercraft"", 52], [""Smithing"", 47]]",Unicorn Cap,Earth,,"[[""Darksteel Sheet"", 1], [""Gold Thread"", 1], [""Tiger Leather"", 1], [""Behemoth Leather"", 1], [""Unicorn Horn"", 1]]","[[""Unicorn Cap +1"", 1], null, null]"
+,99,"[[""Leathercraft"", 41]]",Wyvern Helm,Dark,,"[[""Wyvern Skull"", 1], [""Tiger Leather"", 1], [""Sheep Leather"", 1], [""Beeswax"", 1]]","[[""Wyvern Helm +1"", 1], null, null]"
+,99,"[[""Goldsmithing"", 40], [""Smithing"", 39]]",Khimaira Jambiya,Fire,,"[[""Steel Ingot"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Star Sapphire"", 1], [""Khimaira Horn"", 1]]","[[""Amir Jambiya"", 1], null, null]"
+,99,[],Sombra Tights,Earth,,"[[""Rainbow Cloth"", 1], [""Damascene Cloth"", 1], [""Raaz Leather"", 1], [""Intuila's Hide"", 1], [""Emperor Arthro's Shell"", 1]]","[[""Sombra Tights +1"", 1], null, null]"
+,100,[],Chronos Tooth,Wind,,"[[""Colossal Skull"", 1]]","[null, null, null]"
+,100,"[[""Leathercraft"", 41]]",Cursed Harness,Earth,,"[[""Tiger Leather"", 2], [""Coral Fragment"", 1], [""Oxblood"", 1], [""Angel Skin"", 1]]","[[""Cursed Harness -1"", 1], null, null]"
+,100,[],Gavial Mask,Wind,,"[[""Titanictus Shell"", 1], [""High-Quality Pugil Scales"", 1], [""Sheep Leather"", 1]]","[[""Gavial Mask +1"", 1], null, null]"
+,100,"[[""Leathercraft"", 58]]",Dragon Harness,Earth,,"[[""Buffalo Leather"", 2], [""Dragon Bone"", 1], [""Wyrm Horn"", 1]]","[[""Dragon Harness +1"", 1], null, null]"
+,100,[],Hydra Greaves,Earth,,"[[""Rainbow Thread"", 1], [""Titanictus Shell"", 1], [""Hydra Scale"", 1], [""Leather Highboots"", 1]]","[[""Hydra Greaves +1"", 1], null, null]"
+,100,"[[""Smithing"", 60]]",Handgonne,Earth,,"[[""Darksteel Ingot"", 1], [""Thokcha Ingot"", 1], [""Wyrm Horn"", 1]]","[[""Handgonne +1"", 1], null, null]"
+,100,[],Hajduk Ring,Wind,,"[[""Khimaira Horn"", 2]]","[[""Hajduk Ring +1"", 1], null, null]"
+,100,[],Dux Greaves,Earth,,"[[""Gold Thread"", 1], [""Dragon Scales"", 1], [""Turtle Shell"", 1], [""Squamous Hide"", 1], [""Leather Highboots"", 1]]","[[""Dux Greaves +1"", 1], null, null]"
+,100,[],Sombra Leggings,Earth,,"[[""Damascene Cloth"", 1], [""Behemoth Hide"", 1], [""Raaz Leather"", 2], [""Intuila's Hide"", 1], [""Emperor Arthro's Shell"", 1]]","[[""Sombra Leggings +1"", 1], null, null]"
+,101,[],Hydra Mask,Wind,,"[[""Titanictus Shell"", 1], [""Hydra Scale"", 1], [""Karakul Leather"", 1]]","[[""Hydra Mask +1"", 1], null, null]"
+,101,"[[""Woodworking"", 49], [""Smithing"", 37]]",Hades Sainti,Wind,,"[[""Iron Ingot"", 2], [""Bloodwood Lumber"", 1], [""Cerberus Claw"", 2]]","[[""Hades Sainti +1"", 1], null, null]"
+,102,"[[""Alchemy"", 50]]",Blenmot's Ring,Wind,,"[[""Oxblood"", 1], [""Vivified Coral"", 1], [""Holy Water"", 2], [""Hallowed Water"", 1]]","[[""Blenmot's Ring +1"", 1], null, null]"
+,102,[],Sombra Harness,Earth,,"[[""Rainbow Cloth"", 1], [""Damascene Cloth"", 1], [""Raaz Leather"", 1], [""Intuila's Hide"", 2], [""Emperor Arthro's Shell"", 2]]","[[""Sombra Harness +1"", 1], null, null]"
+,103,"[[""Leathercraft"", 60]]",Unicorn Harness,Earth,,"[[""Gold Thread"", 1], [""Tiger Leather"", 1], [""Behemoth Leather"", 1], [""Unicorn Horn"", 2]]","[[""Unicorn Harness +1"", 1], null, null]"
+,103,[],Gavial Mail,Earth,,"[[""Titanictus Shell"", 2], [""High-Quality Pugil Scales"", 2], [""Rainbow Thread"", 1], [""Sheep Leather"", 1], [""Leather Vest"", 1]]","[[""Gavial Mail +1"", 1], null, null]"
+,103,[],Dux Cuisses,Earth,,"[[""Gold Thread"", 1], [""Sheep Leather"", 1], [""Dragon Scales"", 1], [""Turtle Shell"", 1], [""Hahava's Mail"", 1], [""Squamous Hide"", 1]]","[[""Dux Cuisses +1"", 1], null, null]"
+,104,[],Hydra Mail,Earth,,"[[""Titanictus Shell"", 2], [""Hydra Scale"", 2], [""Karakul Leather"", 1], [""Leather Vest"", 1], [""Rainbow Thread"", 1]]","[[""Hydra Mail +1"", 1], null, null]"
+,104,[],Dark Ixion Ferrule,Wind,,"[[""Dark Ixion Horn"", 1]]","[[""Dark Ixion Ferrule"", 2], [""Dark Ixion Ferrule x3 Verification Needed"", 1], [""Dark Ixion Ferrule x4 Verification Needed"", 1]]"
+,104,[],Dux Visor,Wind,,"[[""Dragon Scales"", 1], [""Turtle Shell"", 1], [""Hahava's Mail"", 1], [""Squamous Hide"", 1]]","[[""Dux Visor +1"", 1], null, null]"
+,104,[],Revealer's Crown,Earth,,"[[""Linen Thread"", 1], [""Lizard Molt"", 1], [""Ironhorn Baldurno's Horn"", 1], [""Abyssdiver's Feather"", 1]]","[[""Revealer's Crown +1"", 1], null, null]"
+,105,[],Winged Balance,Wind,,"[[""Orichalcum Chain"", 1], [""Pearl"", 1], [""Nidhogg Scales"", 1], [""Southern Pearl"", 1], [""Angel Skin"", 1], [""Marid Tusk"", 1], [""Wivre Horn"", 1], [""Trumpet Shell"", 1]]","[null, null, null]"
+,105,[],Dux Finger Gauntlets,Earth,,"[[""Gold Thread"", 1], [""Dragon Scales"", 1], [""Turtle Shell"", 1], [""Squamous Hide"", 1], [""Leather Gloves"", 1]]","[[""Dux Finger Gauntlets +1"", 1], null, null]"
+,105,[],Blutkrallen,Earth,,"[[""Iron Ingot"", 1], [""Bloodwood Lumber"", 1], [""Linen Thread"", 1], [""Scintillant Ingot"", 1], [""Meeble Claw"", 3]]","[[""Blutklauen"", 1], null, null]"
+,105,[],Maliyakaleya Orb,Wind,,"[[""Silver Chain"", 1], [""Maliyakaleya Coral"", 1]]","[[""Maliyakaleya Orb"", 8], [""Maliyakaleya Orb"", 10], [""Maliyakaleya Orb"", 12]]"
+,105,[],Cyan Orb,Wind,,"[[""Silver Chain"", 1], [""Cyan Coral"", 1]]","[[""Cyan Orb"", 8], [""Cyan Orb"", 10], [""Cyan Orb"", 12]]"
+,106,"[[""Leathercraft"", 56], [""Goldsmithing"", 30]]",Hexed Gamashes,Earth,,"[[""Malboro Fiber"", 1], [""Marid Leather"", 1], [""Befouled Silver"", 1], [""Staghorn Coral"", 2]]","[[""Hexed Gamashes -1"", 1], null, null]"
+,106,"[[""Leathercraft"", 56], [""Goldsmithing"", 30]]",Hexed Wristbands,Earth,,"[[""Velvet Cloth"", 1], [""Marid Leather"", 1], [""Befouled Silver"", 1], [""Staghorn Coral"", 1], [""Sealord Leather"", 1]]","[[""Hexed Wristbands -1"", 1], null, null]"
+,106,[],Yacuruna Ring,Wind,,"[[""Yggdreant Root"", 1], [""Maliyakaleya Coral"", 2]]","[[""Yacuruna Ring +1"", 1], null, null]"
+,106,[],Maliya Sickle,Wind,,"[[""Urunday Lumber"", 1], [""Raaz Leather"", 1], [""Maliyakaleya Coral"", 1], [""Ra'Kaznar Ingot"", 1]]","[[""Maliya Sickle +1"", 1], null, null]"
+,107,[],Dux Scale Mail,Earth,,"[[""Gold Thread"", 1], [""Dragon Scales"", 1], [""Turtle Shell"", 3], [""Hahava's Mail"", 1], [""Squamous Hide"", 1], [""Leather Vest"", 1]]","[[""Dux Scale Mail +1"", 1], null, null]"
+,108,[],Oxossi Facon,Wind,,"[[""Manta Leather"", 1], [""Cassia Lumber"", 1], [""Simian Horn"", 1]]","[[""Oxossi Facon +1"", 1], null, null]"
+,109,[],Brioso Whistle,Earth,,"[[""Cyan Coral"", 1], [""Cyan Orb"", 2]]","[null, null, null]"
+,109,[],Brioso Whistle,Earth,,"[[""Cyan Coral"", 1], [""Cyan Orb"", 2]]","[null, null, null]"
+,109,[],Brioso Whistle,Earth,,"[[""Cyan Coral"", 1], [""Cyan Orb"", 2]]","[null, null, null]"
+,110,"[[""Leathercraft"", 60], [""Clothcraft"", 30]]",Hexed Jacket,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 2], [""Malboro Fiber"", 1], [""Befouled Silver"", 1], [""Penelope's Cloth"", 1], [""Staghorn Coral"", 1], [""Sealord Leather"", 1]]","[[""Hexed Jacket -1"", 1], null, null]"
+,110,"[[""Leathercraft"", 55]]",Assassin's Gorget,Light,,"[[""Cehuetzi Pelt"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Gorget"", 1]]","[[""Assassin's Gorget +1"", 1], [""Assassin's Gorget +2"", 1], null]"
+,110,"[[""Leathercraft"", 55]]",Etoile Gorget,Light,,"[[""Cehuetzi Pelt"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Gorget"", 1]]","[[""Etoile Gorget +1"", 1], [""Etoile Gorget +2"", 1], null]"
+,110,"[[""Leathercraft"", 55]]",Scout's Gorget,Light,,"[[""Cehuetzi Pelt"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Gorget"", 1]]","[[""Scout's Gorget +1"", 1], [""Scout's Gorget +2"", 1], null]"
+,111,[],Ej Necklace,Earth,,"[[""Oxblood"", 1], [""Siren's Macrame"", 1], [""Wivre Maul"", 1], [""Carrier Crab Carapace"", 1], [""Rockfin Tooth"", 2]]","[[""Ej Necklace +1"", 1], null, null]"
+,111,[],Tati Earring,Wind,,"[[""Silver Chain"", 1], [""Gabbrath Horn"", 2]]","[[""Tati Earring +1"", 1], null, null]"
+,111,"[[""Leathercraft"", 70]]",Bewitched Leggings,Earth,,"[[""Cursed Leggings"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Immanibugard's Hide"", 1]]","[[""Voodoo Leggings"", 1], null, null]"
+,111,"[[""Alchemy"", 70]]",Vexed Gamashes,Earth,,"[[""Hexed Gamashes"", 1], [""Eschite Ore"", 1], [""Macuil Horn"", 1], [""Sybaritic Samantha's Vine"", 1]]","[[""Jinxed Gamashes"", 1], null, null]"
+,111,[],Monster Axe,Light,Boneworker's aurum tome,"[[""Macuil Plating"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Axe"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Ankusa Axe"", 1], [""Pangu"", 1], null]"
+,111,[],Abyss Scythe,Light,Boneworker's aurum tome,"[[""Tartarian Chain"", 1], [""Dark Matter"", 1], [""Cypress Log"", 1], [""Moldy Scythe"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Fallen's Scythe"", 1], [""Father Time"", 1], null]"
+,112,[],Bhakazi Sainti,Wind,,"[[""Guatambu Lumber"", 1], [""Titanium Ingot"", 1], [""Bismuth Ingot"", 1], [""Cehuetzi Claw"", 2]]","[[""Bhakazi Sainti +1"", 1], null, null]"
+,112,"[[""Leathercraft"", 70]]",Bewitched Gloves,Earth,,"[[""Cursed Gloves"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Immanibugard's Hide"", 1]]","[[""Voodoo Gloves"", 1], null, null]"
+,112,"[[""Leathercraft"", 70]]",Vexed Wristbands,Earth,,"[[""Hexed Wristbands"", 1], [""Eschite Ore"", 1], [""Macuil Horn"", 1], [""Warblade Beak's Hide"", 1]]","[[""Jinxed Wristbands"", 1], null, null]"
+,113,[],Nanti Knife,Wind,,"[[""Waktza Rostrum"", 1], [""Guatambu Lumber"", 1]]","[[""Nanti Knife +1"", 1], null, null]"
+,113,[],Budliqa,Wind,,"[[""Waktza Rostrum"", 1], [""Guatambu Lumber"", 1], [""Bismuth Ingot"", 1]]","[[""Budliqa +1"", 1], null, null]"
+,113,[],Killedar Shield,Earth,,"[[""Adamantoise Shell"", 1], [""Eltoro Leather"", 1], [""Gabbrath Horn"", 1]]","[[""Killedar Shield +1"", 1], null, null]"
+,113,[],Lacryma Sickle,Wind,,"[[""Woodworking - (??)"", 1], [""Ormolu Ingot"", 1], [""Ram Leather"", 1], [""Urunday Lumber"", 1], [""Rockfin Tooth"", 1]]","[[""Lacryma Sickle +1"", 1], null, null]"
+,113,[],Donderbuss,Fire,,"[[""Ormolu Ingot"", 1], [""Damascus Ingot"", 1], [""Rockfin Tooth"", 1]]","[[""Donderbuss +1"", 1], null, null]"
+,113,"[[""Leathercraft"", 70]]",Bewitched Subligar,Earth,,"[[""Cursed Subligar"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Immanibugard's Hide"", 1]]","[[""Voodoo Subligar"", 1], null, null]"
+,114,"[[""Smithing"", 70]]",Bewitched Cap,Earth,,"[[""Cursed Cap"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Largantua's Shard"", 1]]","[[""Voodoo Cap"", 1], null, null]"
+,115,"[[""Leathercraft"", 70]]",Bewitched Harness,Earth,,"[[""Cursed Harness"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Immanibugard's Hide"", 1]]","[[""Voodoo Harness"", 1], null, null]"
+,115,"[[""Leathercraft"", 70]]",Vexed Jacket,Earth,,"[[""Hexed Jacket"", 1], [""Eschite Ore"", 1], [""Warblade Beak's Hide"", 1], [""Macuil Horn"", 1]]","[[""Jinxed Jacket"", 1], null, null]"
+,115,[],Aurgelmir Orb,Wind,,"[[""Black Ink"", 1], [""Beastman Blood"", 1], [""Cyan Coral"", 3], [""Wyrm Ash"", 1]]","[[""Aurgelmir Orb +1"", 1], null, null]"
+,115,[],Raetic Scythe,Fire,Boneworker's argentum tome,"[[""Cyan Coral"", 2], [""Cyan Orb"", 3], [""Rune Scythe"", 1]]","[[""Raetic Scythe +1"", 1], null, null]"
+,115,[],Raetic Bangles,Fire,Boneworker's argentum tome,"[[""Cyan Coral"", 2], [""Cyan Orb"", 3], [""Rune Bangles"", 1]]","[[""Raetic Bangles +1"", 1], null, null]"
+,116,[],Moonbeam Ring,Wind,,"[[""Moonbow Stone"", 1], [""Moonlight Coral"", 1], [""Cyan Coral"", 1]]","[[""Moonlight Ring"", 1], null, null]"
+,116,[],Mousai Gages,Earth,Boneworker's argentum tome,"[[""Cashmere Thread"", 2], [""Cyan Orb"", 2], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 1], [""Hades' Claw"", 1]]","[[""Mousai Gages +1"", 1], null, null]"
+,116,[],Mousai Crackows,Earth,Boneworker's argentum tome,"[[""Cashmere Thread"", 1], [""Cyan Orb"", 2], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 1], [""Hades' Claw"", 1]]","[[""Mousai Crackows +1"", 1], null, null]"
+,116,[],Mousai Turban,Earth,Boneworker's argentum tome,"[[""Cashmere Cloth"", 1], [""Cyan Orb"", 2], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 1], [""Hades' Claw"", 1]]","[[""Mousai Turban +1"", 1], null, null]"
+,116,[],Mousai Seraweels,Earth,Boneworker's argentum tome,"[[""Cashmere Cloth"", 1], [""Cyan Orb"", 3], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 1], [""Hades' Claw"", 1]]","[[""Mousai Seraweels +1"", 1], null, null]"
+,116,[],Mousai Manteel,Earth,Boneworker's argentum tome,"[[""Cashmere Cloth"", 1], [""Cyan Orb"", 3], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 2], [""Hades' Claw"", 1]]","[[""Mousai Manteel +1"", 1], null, null]"
+,117,[],Staunch Tathlum,Earth,,"[[""Macuil Horn"", 1], [""Plovid Flesh"", 1], [""Defiant Scarf"", 1], [""Hades' Claw"", 1]]","[[""Staunch Tathlum +1"", 1], null, null]"
+,117,[],Moonbow Whistle,Earth,,"[[""Brioso Whistle"", 1], [""Moonbow Urushi"", 1], [""Moonbow Stone"", 1]]","[[""Moonbow Whistle +1"", 1], null, null]"
diff --git a/datasets/Clothcraft.txt b/datasets/Clothcraft.txt
index 6ea986e..25fc6a7 100644
--- a/datasets/Clothcraft.txt
+++ b/datasets/Clothcraft.txt
@@ -1,7 +1,5 @@
Clothcraft Crafted Items
-Amateur (1-10)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Love Chocolate
@@ -196,9 +194,7 @@ Main Craft: Clothcraft - (10)
Clothcraft Kit 10
-Recruit (11-20)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Cotton Thread
@@ -706,9 +702,7 @@ Main Craft: Clothcraft - (20)
Clothcraft Kit 20
-Initiate (21-30)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Cotton Hachimaki
@@ -1416,9 +1410,7 @@ Main Craft: Clothcraft - (30)
Clothcraft Kit 30
-Novice (31-40)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Linen Mitts
@@ -1896,9 +1888,7 @@ Main Craft: Clothcraft - (40)
Clothcraft Kit 40
-Apprentice (41-50)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Mohbwa Thread
@@ -2380,9 +2370,7 @@ Main Craft: Clothcraft - (50)
Clothcraft Kit 50
-Journeyman (51-60)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Silk Thread
@@ -3026,9 +3014,7 @@ Main Craft: Clothcraft - (60)
Clothcraft Kit 60
-Craftsman (61-70)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Velvet Cuffs
@@ -3786,9 +3772,7 @@ Main Craft: Clothcraft - (70)
Clothcraft Kit 70
-Artisan (71-80)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Shinobi Hachigane
@@ -4636,9 +4620,7 @@ Main Craft: Clothcraft - (80)
Clothcraft Kit 80
-Adept (81-90)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Arhat's Jinpachi
@@ -5380,9 +5362,7 @@ Main Craft: Clothcraft - (90)
Clothcraft Kit 90
-Veteran (91-100)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Rasetsu Jinpachi
@@ -6414,9 +6394,7 @@ Key Item: Fletching
Zephyr Thread
-Expert (101-110)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Errant Cape
@@ -6919,9 +6897,7 @@ Sub Craft(s): Woodworking - (55)
Moldy Stole
-Authority (111-120)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Ogapepo Cape
diff --git a/datasets/Clothcraft_v2.csv b/datasets/Clothcraft_v2.csv
index 7f4e9d1..f3c75eb 100644
--- a/datasets/Clothcraft_v2.csv
+++ b/datasets/Clothcraft_v2.csv
@@ -1,516 +1,516 @@
category,level,subcrafts,name,crystal,key_item,ingredients,hq_yields
-Amateur,1,"[[""Leathercraft"", 1], [""Cooking"", 1]]",Love Chocolate,Earth,,"[[""Parchment"", 1], [""Heart Chocolate"", 1], [""Scarlet Ribbon"", 1]]","[[""Truelove Chocolate"", 1], null, null]"
-Amateur,2,[],Chocobo Fletchings,Wind,,"[[""Chocobo Feather"", 2]]","[[""Chocobo Fletchings"", 8], [""Chocobo Fletchings"", 10], [""Chocobo Fletchings"", 12]]"
-Amateur,2,[],Chocobo Fletchings,Wind,Fletching,"[[""Chocobo Feather"", 6], [""Zephyr Thread"", 1]]","[[""Chocobo Fletchings"", 24], [""Chocobo Fletchings"", 30], [""Chocobo Fletchings"", 36]]"
-Amateur,3,[],Grass Thread,Lightning,,"[[""Moko Grass"", 2]]","[null, null, null]"
-Amateur,3,[],Grass Thread,Lightning,Spinning,"[[""Moko Grass"", 6], [""Spindle"", 1]]","[null, null, null]"
-Amateur,4,[],Grass Cloth,Earth,,"[[""Grass Thread"", 3]]","[null, null, null]"
-Amateur,5,[],Headgear,Wind,,"[[""Grass Thread"", 1], [""Grass Cloth"", 2]]","[[""Headgear +1"", 1], null, null]"
-Amateur,5,[],Headgear,Wind,,"[[""Clothcraft Kit 5"", 1]]","[null, null, null]"
-Amateur,6,[],Gloves,Earth,,"[[""Saruta Cotton"", 2], [""Grass Thread"", 1], [""Grass Cloth"", 2]]","[[""Gloves +1"", 1], null, null]"
-Amateur,7,[],Gaiters,Earth,,"[[""Cotton Thread"", 1], [""Grass Cloth"", 3]]","[[""Gaiters +1"", 1], null, null]"
-Amateur,8,[],Cape,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 2]]","[[""Cape +1"", 1], null, null]"
-Amateur,9,[],Brais,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 2], [""Sheep Leather"", 1]]","[[""Brais +1"", 1], null, null]"
-Amateur,10,[],Doublet,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 4], [""Saruta Cotton"", 3]]","[[""Doublet +1"", 1], null, null]"
-Amateur,10,[],Vagabond's Hose,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 1], [""Cotton Cloth"", 2]]","[[""Nomad's Hose"", 1], null, null]"
-Amateur,10,[],Doublet,Earth,,"[[""Clothcraft Kit 10"", 1], [""Recruit (11-20)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,11,[],Cotton Thread,Lightning,,"[[""Saruta Cotton"", 2]]","[null, null, null]"
-Amateur,11,[],Cotton Thread,Lightning,Spinning,"[[""Saruta Cotton"", 6], [""Spindle"", 1]]","[null, null, null]"
-Amateur,11,[],Hachimaki,Wind,,"[[""Grass Cloth"", 2]]","[[""Hachimaki +1"", 1], null, null]"
-Amateur,12,[],Alluring Cotton Cloth,Earth,Cloth Ensorcellment,"[[""Cotton Thread"", 3], [""Earth Anima"", 1], [""Water Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
-Amateur,12,[],Cotton Cloth,Earth,,"[[""Cotton Thread"", 3]]","[null, null, null]"
-Amateur,12,[],Cuffs,Earth,,"[[""Flint Stone"", 2], [""Grass Cloth"", 1], [""Cotton Thread"", 1], [""Cotton Cloth"", 1]]","[[""Cuffs +1"", 1], null, null]"
-Amateur,12,[],Magical Cotton Cloth,Earth,Cloth Purification,"[[""Cotton Thread"", 3], [""Earth Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,12,"[[""Woodworking"", 3]]",Tekko,Earth,,"[[""Lauan Lumber"", 1], [""Grass Thread"", 1], [""Grass Cloth"", 2]]","[[""Tekko +1"", 1], null, null]"
-Amateur,13,[],Dart,Wind,,"[[""Bat Fang"", 1], [""Chocobo Feather"", 2], [""Animal Glue"", 1]]","[[""Dart"", 16], [""Dart"", 20], [""Dart"", 24]]"
-Amateur,13,[],Mitts,Earth,,"[[""Saruta Cotton"", 1], [""Grass Cloth"", 1], [""Cotton Thread"", 1], [""Cotton Cloth"", 1]]","[[""Mitts +1"", 1], null, null]"
-Amateur,14,[],Kyahan,Wind,,"[[""Grass Cloth"", 3], [""Sheep Leather"", 1]]","[[""Kyahan +1"", 1], null, null]"
-Amateur,14,[],Slops,Earth,,"[[""Grass Cloth"", 1], [""Cotton Thread"", 1], [""Cotton Cloth"", 2]]","[[""Slops +1"", 1], null, null]"
-Amateur,14,[],Vagabond's Tunica,Earth,,"[[""Grass Cloth"", 3], [""Sheep Leather"", 1], [""Cotton Thread"", 1], [""Cotton Cloth"", 1]]","[[""Nomad's Tunica"", 1], null, null]"
-Amateur,15,[],Cotton Headgear,Wind,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 2]]","[[""Great Headgear"", 1], null, null]"
-Amateur,15,[],Red Grass Thread,Lightning,,"[[""Red Moko Grass"", 2]]","[null, null, null]"
-Amateur,15,[],Red Grass Thread,Lightning,Spinning,"[[""Red Moko Grass"", 6], [""Spindle"", 1]]","[null, null, null]"
-Amateur,15,[],Slacks,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 3]]","[[""Slacks +1"", 1], null, null]"
-Amateur,15,[],Red Grass Thread,Lightning,,"[[""Clothcraft Kit 15"", 1]]","[null, null, null]"
-Amateur,16,[],Cotton Gloves,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 2], [""Saruta Cotton"", 2]]","[[""Great Gloves"", 1], null, null]"
-Amateur,16,[],Red Grass Cloth,Earth,,"[[""Red Grass Thread"", 3]]","[null, null, null]"
-Amateur,16,[],Robe,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 2], [""Cotton Cloth"", 2]]","[[""Robe +1"", 1], null, null]"
-Amateur,16,[],Sitabaki,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 2], [""Cotton Cloth"", 1]]","[[""Sitabaki +1"", 1], null, null]"
-Amateur,16,[],Windurstian Hachimaki,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 1], [""Mercenary's Hachimaki"", 1]]","[[""Federation Hachimaki"", 1], null, null]"
-Amateur,17,[],Cotton Gaiters,Earth,,"[[""Cotton Cloth"", 3], [""Sheep Leather"", 1]]","[[""Great Gaiters"", 1], null, null]"
-Amateur,17,[],Tunic,Earth,,"[[""Grass Cloth"", 3], [""Cotton Thread"", 1], [""Cotton Cloth"", 2]]","[[""Tunic +1"", 1], null, null]"
-Amateur,17,[],Windurstian Tekko,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 1], [""Mercenary's Tekko"", 1]]","[[""Federation Tekko"", 1], null, null]"
-Amateur,18,[],Cotton Cape,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 2]]","[[""Cotton Cape +1"", 1], null, null]"
-Amateur,18,[],Kenpogi,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 3]]","[[""Kenpogi +1"", 1], null, null]"
-Amateur,18,[],Sturdy Slacks,Earth,Cloth Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Water Cell"", 1], [""Slacks"", 1]]","[null, null, null]"
-Amateur,19,[],Cotton Brais,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 2], [""Sheep Leather"", 1]]","[[""Great Brais"", 1], null, null]"
-Amateur,19,[],Flaxseed Oil,Water,,"[[""Flax Flower"", 2]]","[[""Flaxseed Oil"", 2], [""Flaxseed Oil"", 3], [""Flaxseed Oil"", 4]]"
-Amateur,19,[],Linen Thread,Lightning,,"[[""Flax Flower"", 2]]","[null, null, null]"
-Amateur,19,[],Linen Thread,Lightning,Spinning,"[[""Flax Flower"", 6], [""Spindle"", 1]]","[null, null, null]"
-Amateur,19,[],Windurstian Kyahan,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 1], [""Mercenary's Kyahan"", 1]]","[[""Federation Kyahan"", 1], null, null]"
-Amateur,20,[],Cotton Doublet,Earth,,"[[""Saruta Cotton"", 3], [""Cotton Thread"", 1], [""Cotton Cloth"", 4]]","[[""Great Doublet"", 1], null, null]"
-Amateur,20,[],Cotton Headband,Earth,,"[[""Carbon Fiber"", 1], [""Cotton Cloth"", 1]]","[[""Erudite's Headband"", 1], null, null]"
-Amateur,20,[],Mana Tunic,Earth,,"[[""Magical Cotton Cloth"", 1], [""Tunic"", 1]]","[null, null, null]"
-Amateur,20,[],Windurstian Headgear,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 1], [""Mercenary Captain's Headgear"", 1]]","[[""Federation Headgear"", 1], null, null]"
-Amateur,20,[],Cotton Headband,Earth,,"[[""Clothcraft Kit 20"", 1], [""Initiate (21-30)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,21,[],Cotton Hachimaki,Wind,,"[[""Cotton Cloth"", 2]]","[[""Cotton Hachimaki +1"", 1], null, null]"
-Amateur,21,[],Taikyoku Kenpogi,Earth,Cloth Ensorcellment,"[[""Lambent Earth Cell"", 1], [""Lambent Wind Cell"", 1], [""Kenpogi"", 1]]","[null, null, null]"
-Amateur,21,[],Talisman Cape,Earth,,"[[""Alluring Cotton Cloth"", 1], [""Cotton Cape"", 1]]","[null, null, null]"
-Amateur,21,[],Windurstian Gloves,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 1], [""Mercenary Captain's Gloves"", 1]]","[[""Federation Gloves"", 1], null, null]"
-Amateur,21,[],Windurstian Sitabaki,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 1], [""Mercenary's Sitabaki"", 1]]","[[""Federation Sitabaki"", 1], null, null]"
-Amateur,22,"[[""Woodworking"", 6]]",Cotton Tekko,Earth,,"[[""Lauan Lumber"", 1], [""Grass Thread"", 1], [""Cotton Cloth"", 2]]","[[""Cotton Tekko +1"", 1], null, null]"
-Amateur,22,[],Fine Linen Cloth,Earth,Cloth Purification,"[[""Linen Thread"", 3], [""Wind Anima"", 1], [""Earth Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,22,[],Linen Cloth,Earth,,"[[""Linen Thread"", 3]]","[null, null, null]"
-Amateur,22,[],Magical Linen Cloth,Earth,Cloth Purification,"[[""Linen Thread"", 3], [""Earth Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,22,[],San d'Orian Tunic,Earth,,"[[""Royal Footman's Tunic"", 1], [""Grass Cloth"", 1], [""Cotton Thread"", 1]]","[[""Kingdom Tunic"", 1], null, null]"
-Amateur,22,"[[""Leathercraft"", 9]]",Trader's Chapeau,Earth,,"[[""Cotton Cloth"", 1], [""Sheep Leather"", 1], [""Beeswax"", 1], [""Red Grass Thread"", 1], [""Red Grass Cloth"", 2]]","[[""Baron's Chapeau"", 1], null, null]"
-Amateur,22,[],Windurstian Gaiters,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 1], [""Mercenary Captain's Gaiters"", 1]]","[[""Federation Gaiters"", 1], null, null]"
-Amateur,22,[],Yagudo Fletchings,Wind,,"[[""Yagudo Feather"", 2]]","[[""Yagudo Fletchings"", 8], [""Yagudo Fletchings"", 10], [""Yagudo Fletchings"", 12]]"
-Amateur,22,[],Yagudo Fletchings,Wind,Fletching,"[[""Yagudo Feather"", 6], [""Zephyr Thread"", 1]]","[[""Yagudo Fletchings"", 24], [""Yagudo Fletchings"", 30], [""Yagudo Fletchings"", 36]]"
-Amateur,23,[],Fisherman's Hose,Earth,,"[[""Linen Cloth"", 2], [""Cotton Thread"", 1], [""Cotton Cloth"", 1]]","[[""Angler's Hose"", 1], null, null]"
-Amateur,23,"[[""Goldsmithing"", 9]]",Linen Cuffs,Earth,,"[[""Sardonyx"", 2], [""Linen Thread"", 1], [""Linen Cloth"", 1], [""Cotton Cloth"", 1]]","[[""Linen Cuffs +1"", 1], null, null]"
-Amateur,23,[],Moblinweave,Earth,,"[[""Moblin Thread"", 3]]","[null, null, null]"
-Amateur,23,"[[""Leathercraft"", 9]]",Trader's Cuffs,Earth,,"[[""Cotton Cloth"", 1], [""Sheep Leather"", 2], [""Red Grass Thread"", 1], [""Red Grass Cloth"", 1]]","[[""Baron's Cuffs"", 1], null, null]"
-Amateur,23,[],Windurstian Gi,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 1], [""Mercenary's Gi"", 1]]","[[""Federation Gi"", 1], null, null]"
-Amateur,24,[],Cotton Kyahan,Wind,,"[[""Linen Thread"", 1], [""Cotton Cloth"", 3]]","[[""Cotton Kyahan +1"", 1], null, null]"
-Amateur,24,"[[""Leathercraft"", 20]]",Noct Beret,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 1], [""Chocobo Feather"", 2], [""Sheep Leather"", 1]]","[[""Noct Beret +1"", 1], null, null]"
-Amateur,24,[],Red Cap,Earth,,"[[""Chocobo Feather"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 2]]","[[""Red Cap +1"", 1], null, null]"
-Amateur,24,"[[""Leathercraft"", 20]]",Seer's Mitts,Earth,,"[[""Wool Thread"", 1], [""Cotton Cloth"", 2], [""Saruta Cotton"", 1], [""Sheep Leather"", 1]]","[[""Seer's Mitts +1"", 1], null, null]"
-Amateur,24,"[[""Leathercraft"", 9]]",Trader's Slops,Earth,,"[[""Cotton Cloth"", 2], [""Sheep Leather"", 1], [""Red Grass Thread"", 1], [""Red Grass Cloth"", 1]]","[[""Baron's Slops"", 1], null, null]"
-Amateur,24,[],Windurstian Brais,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 1], [""Mercenary Captain's Hose"", 1]]","[[""Federation Brais"", 1], null, null]"
-Amateur,25,[],Blissful Chapeau,Earth,Cloth Purification,"[[""Lambent Water Cell"", 1], [""Lambent Earth Cell"", 1], [""Trader's Chapeau"", 1]]","[null, null, null]"
-Amateur,25,[],Bracers,Earth,,"[[""Saruta Cotton"", 2], [""Linen Thread"", 1], [""Linen Cloth"", 2]]","[[""Bracers +1"", 1], null, null]"
-Amateur,25,[],Linen Slops,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 2], [""Cotton Cloth"", 1]]","[[""Linen Slops +1"", 1], null, null]"
-Amateur,25,"[[""Leathercraft"", 20]]",Noct Gloves,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 2], [""Saruta Cotton"", 2], [""Sheep Leather"", 1]]","[[""Noct Gloves +1"", 1], null, null]"
-Amateur,25,"[[""Leathercraft"", 20]]",Seer's Slacks,Earth,,"[[""Wool Thread"", 1], [""Cotton Cloth"", 2], [""Linen Cloth"", 1], [""Sheep Leather"", 1]]","[[""Seer's Slacks +1"", 1], null, null]"
-Amateur,25,"[[""Leathercraft"", 9]]",Trader's Saio,Earth,,"[[""Brass Chain"", 1], [""Cotton Cloth"", 1], [""Sheep Leather"", 1], [""Ram Leather"", 1], [""Beeswax"", 1], [""Red Grass Thread"", 1], [""Red Grass Cloth"", 2]]","[[""Baron's Saio"", 1], null, null]"
-Amateur,25,[],Windurstian Doublet,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 1], [""Mercenary Captain's Doublet"", 1]]","[[""Federation Doublet"", 1], null, null]"
-Amateur,25,[],Bracers,Earth,,"[[""Clothcraft Kit 25"", 1]]","[null, null, null]"
-Amateur,26,[],Cotton Sitabaki,Earth,,"[[""Linen Cloth"", 1], [""Grass Thread"", 1], [""Cotton Cloth"", 2]]","[[""Cotton Sitabaki +1"", 1], null, null]"
-Amateur,26,"[[""Leathercraft"", 20]]",Noct Doublet,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 3], [""Saruta Cotton"", 3], [""Sheep Leather"", 1]]","[[""Noct Doublet +1"", 1], null, null]"
-Amateur,26,"[[""Leathercraft"", 20]]",Seer's Tunic,Earth,,"[[""Wool Thread"", 1], [""Cotton Cloth"", 3], [""Linen Cloth"", 2], [""Sheep Leather"", 1]]","[[""Seer's Tunic +1"", 1], null, null]"
-Amateur,26,[],Socks,Earth,,"[[""Dhalmel Leather"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 3]]","[[""Socks +1"", 1], null, null]"
-Amateur,27,[],Heko Obi,Earth,,"[[""Grass Thread"", 1], [""Cotton Cloth"", 2]]","[[""Heko Obi +1"", 1], null, null]"
-Amateur,27,[],Linen Robe,Earth,,"[[""Linen Cloth"", 2], [""Cotton Thread"", 1], [""Cotton Cloth"", 2]]","[[""Linen Robe +1"", 1], null, null]"
-Amateur,27,"[[""Leathercraft"", 20]]",Noct Gaiters,Earth,,"[[""Linen Cloth"", 3], [""Sheep Leather"", 2]]","[[""Noct Gaiters +1"", 1], null, null]"
-Amateur,28,[],Cotton Dogi,Earth,,"[[""Grass Thread"", 1], [""Cotton Cloth"", 3]]","[[""Cotton Dogi +1"", 1], null, null]"
-Amateur,28,[],Hose,Earth,,"[[""Dhalmel Leather"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 2]]","[[""Hose +1"", 1], null, null]"
-Amateur,28,[],Chocobo Taping,Wind,,"[[""Cotton Cloth"", 1], [""Linen Cloth"", 3]]","[[""Chocobo Taping"", 6], [""Chocobo Taping"", 9], [""Chocobo Taping"", 12]]"
-Amateur,29,"[[""Goldsmithing"", 13]]",Gambison,Earth,,"[[""Saruta Cotton"", 2], [""Brass Scales"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 4]]","[[""Gambison +1"", 1], null, null]"
-Amateur,29,"[[""Smithing"", 15]]",Kaginawa,Earth,,"[[""Bronze Ingot"", 1], [""Grass Thread"", 1], [""Manticore Hair"", 1]]","[[""Kaginawa"", 66], [""Kaginawa"", 99], null]"
-Amateur,30,[],Fisherman's Tunica,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 1], [""Sheep Leather"", 1], [""Cotton Cloth"", 3]]","[[""Angler's Tunica"", 1], null, null]"
-Amateur,30,"[[""Bonecraft"", 8]]",Fly Lure,Earth,,"[[""Chocobo Feather"", 1], [""Bat Fang"", 1], [""Animal Glue"", 1]]","[null, null, null]"
-Amateur,30,[],Talisman Obi,Earth,,"[[""Alluring Cotton Cloth"", 1], [""Heko Obi"", 1]]","[null, null, null]"
-Amateur,30,[],Windurstian Slops,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 1], [""Freesword's Slops"", 1]]","[[""Federation Slops"", 1], null, null]"
-Amateur,30,[],Fisherman's Tunica,Earth,,"[[""Clothcraft Kit 30"", 1], [""Novice (31-40)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,31,[],Linen Mitts,Earth,,"[[""Saruta Cotton"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 1], [""Cotton Cloth"", 1]]","[[""Linen Mitts +1"", 1], null, null]"
-Amateur,31,[],Soil Hachimaki,Wind,,"[[""Linen Cloth"", 2]]","[[""Soil Hachimaki +1"", 1], null, null]"
-Amateur,32,[],Linen Slacks,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 3]]","[[""Linen Slacks +1"", 1], null, null]"
-Amateur,32,"[[""Woodworking"", 7]]",Soil Tekko,Earth,,"[[""Lauan Lumber"", 1], [""Linen Cloth"", 2], [""Grass Thread"", 1]]","[[""Soil Tekko +1"", 1], null, null]"
-Amateur,32,[],Combat Mittens,Earth,,"[[""Ephemeral Cloth"", 1], [""Linen Cloth"", 1], [""Linen Thread"", 1], [""Saruta Cotton"", 1]]","[[""Combat Mittens +1"", 1], null, null]"
-Amateur,33,"[[""Bonecraft"", 14]]",Aht Urhgan Dart,Wind,,"[[""Animal Glue"", 1], [""Colibri Feather"", 2], [""Colibri Beak"", 1]]","[[""Aht Urhgan Dart"", 16], [""Aht Urhgan Dart"", 20], [""Aht Urhgan Dart"", 24]]"
-Amateur,33,[],Cloak,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 2], [""Cotton Cloth"", 3]]","[[""Cloak +1"", 1], null, null]"
-Amateur,34,"[[""Leathercraft"", 20]]",Garish Mitts,Earth,,"[[""Cotton Cloth"", 1], [""Saruta Cotton"", 1], [""Sheep Leather"", 1], [""Scarlet Linen"", 1], [""Bloodthread"", 1]]","[[""Rubious Mitts"", 1], null, null]"
-Amateur,34,[],Shinobi-Tabi,Earth,,"[[""Saruta Cotton"", 1], [""Grass Thread"", 1], [""Cotton Cloth"", 2]]","[[""Shinobi-Tabi"", 66], [""Shinobi-Tabi"", 99], [""Shinobi-Tabi"", 99]]"
-Amateur,34,[],Soil Kyahan,Wind,,"[[""Linen Cloth"", 3], [""Cotton Thread"", 1]]","[[""Soil Kyahan +1"", 1], null, null]"
-Amateur,35,"[[""Leathercraft"", 21]]",Garish Slacks,Earth,,"[[""Linen Cloth"", 1], [""Velvet Cloth"", 2], [""Sheep Leather"", 1], [""Bloodthread"", 1]]","[[""Rubious Slacks"", 1], null, null]"
-Amateur,35,"[[""Goldsmithing"", 9]]",Hawkeye,Wind,,"[[""Silver Ingot"", 1], [""Animal Glue"", 1], [""Yagudo Feather"", 2]]","[[""Hawkeye"", 12], [""Hawkeye"", 16], [""Hawkeye"", 20]]"
-Amateur,35,[],Wool Thread,Lightning,,"[[""Sheep Wool"", 2]]","[null, null, null]"
-Amateur,35,[],Wool Thread,Lightning,Spinning,"[[""Sheep Wool"", 6], [""Spindle"", 1]]","[null, null, null]"
-Amateur,35,[],Wool Thread,Lightning,,"[[""Clothcraft Kit 35"", 1]]","[null, null, null]"
-Amateur,36,[],Combat Caster's Mitts +1,Earth,,"[[""Combat Caster's Mitts"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 1]]","[[""Combat Caster's Mitts +2"", 1], null, null]"
-Amateur,36,"[[""Leathercraft"", 20]]",Garish Tunic,Earth,,"[[""Velvet Cloth"", 2], [""Sheep Leather"", 1], [""Scarlet Linen"", 3], [""Bloodthread"", 1]]","[[""Rubious Tunic"", 1], null, null]"
-Amateur,36,[],Mana Cloak,Earth,,"[[""Magical Linen Cloth"", 1], [""Cloak"", 1]]","[null, null, null]"
-Amateur,36,[],Soil Sitabaki,Earth,,"[[""Linen Cloth"", 2], [""Grass Thread"", 1], [""Wool Cloth"", 1]]","[[""Soil Sitabaki +1"", 1], null, null]"
-Amateur,36,[],Combat Caster's Slacks +1,Earth,,"[[""Combat Caster's Slacks"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 1]]","[[""Combat Caster's Slacks +2"", 1], null, null]"
-Amateur,37,[],Incombustible Wool,Earth,Cloth Ensorcellment,"[[""Wool Thread"", 3], [""Fire Anima"", 1], [""Ice Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
-Amateur,37,[],Mist Mitts,Earth,,"[[""Smooth Velvet"", 1], [""Garish Mitts"", 1]]","[null, null, null]"
-Amateur,37,[],Wool Cloth,Earth,,"[[""Wool Thread"", 3]]","[null, null, null]"
-Amateur,38,[],Combat Caster's Cloak +1,Earth,,"[[""Combat Caster's Cloak"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 1]]","[[""Combat Caster's Cloak +2"", 1], null, null]"
-Amateur,38,[],Feather Collar,Earth,,"[[""Bird Feather"", 7], [""Wool Cloth"", 1]]","[[""Feather Collar +1"", 1], null, null]"
-Amateur,38,[],Mist Slacks,Earth,,"[[""Smooth Velvet"", 1], [""Garish Slacks"", 1]]","[null, null, null]"
-Amateur,38,[],Soil Gi,Earth,,"[[""Linen Cloth"", 3], [""Grass Thread"", 1]]","[[""Soil Gi +1"", 1], null, null]"
-Amateur,38,[],Buffoon's Collar,Earth,,"[[""Colibri Feather"", 7], [""Karakul Cloth"", 1]]","[[""Buffoon's Collar +1"", 1], null, null]"
-Amateur,39,[],Flax Headband,Earth,,"[[""Carbon Fiber"", 1], [""Linen Cloth"", 1]]","[[""Alluring Headband"", 1], null, null]"
-Amateur,39,[],Mist Tunic,Earth,,"[[""Smooth Velvet"", 1], [""Garish Tunic"", 1]]","[null, null, null]"
-Amateur,39,[],Mohbwa Sash,Earth,,"[[""Red Grass Thread"", 1], [""Red Grass Cloth"", 1], [""Mohbwa Cloth"", 1]]","[[""Mohbwa Sash +1"", 1], null, null]"
-Amateur,40,"[[""Goldsmithing"", 8]]",Wool Hat,Earth,,"[[""Brass Sheet"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 1], [""Wool Cloth"", 2]]","[[""Wool Hat +1"", 1], null, null]"
-Amateur,40,[],Shadow Roll,Earth,,"[[""Wool Thread"", 2], [""Wool Cloth"", 1], [""Sheep Leather"", 1]]","[null, null, null]"
-Amateur,40,[],Pet Poultice,Earth,,"[[""Cotton Cloth"", 1], [""Linen Cloth"", 1], [""Flaxseed Oil"", 1], [""Lycopodium Flower"", 1], [""Holy Water"", 1]]","[[""Pet Poultice x 66"", 1], [""Pet Poultice x 99"", 1], [""Pet Poultice x 99"", 1]]"
-Amateur,40,[],Shadow Roll,Earth,,"[[""Clothcraft Kit 40"", 1], [""Apprentice (41-50)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,41,[],Mohbwa Thread,Lightning,,"[[""Mohbwa Grass"", 2]]","[null, null, null]"
-Amateur,41,[],Mohbwa Thread,Lightning,Spinning,"[[""Mohbwa Grass"", 6], [""Spindle"", 1]]","[null, null, null]"
-Amateur,41,[],Regen Collar,Earth,Cloth Purification,"[[""Lambent Earth Cell"", 1], [""Lambent Water Cell"", 1], [""Feather Collar"", 1]]","[null, null, null]"
-Amateur,41,"[[""Goldsmithing"", 9]]",Wool Cuffs,Earth,,"[[""Tourmaline"", 2], [""Linen Cloth"", 1], [""Wool Thread"", 1], [""Wool Cloth"", 1]]","[[""Wool Cuffs +1"", 1], null, null]"
-Amateur,41,[],Sanjaku-Tenugui,Earth,,"[[""Cotton Thread"", 2], [""Cotton Cloth"", 2]]","[[""Sanjaku-Tenugui"", 66], [""Sanjaku-Tenugui"", 99], [""Sanjaku-Tenugui"", 99]]"
-Amateur,42,[],Bird Fletchings,Wind,,"[[""Bird Feather"", 2]]","[[""Bird Fletchings"", 8], [""Bird Fletchings"", 10], [""Bird Fletchings"", 12]]"
-Amateur,42,[],Bird Fletchings,Wind,Fletching,"[[""Bird Feather"", 6], [""Zephyr Thread"", 1]]","[[""Bird Fletchings"", 24], [""Bird Fletchings"", 30], [""Bird Fletchings"", 36]]"
-Amateur,42,[],Mohbwa Cloth,Earth,,"[[""Mohbwa Thread"", 3]]","[null, null, null]"
-Amateur,42,"[[""Goldsmithing"", 9]]",Wool Slops,Earth,,"[[""Brass Sheet"", 1], [""Linen Cloth"", 1], [""Wool Thread"", 1], [""Wool Cloth"", 2]]","[[""Wool Slops +1"", 1], null, null]"
-Amateur,43,[],Hemp Gorget,Earth,,"[[""Grass Thread"", 8]]","[[""Hemp Gorget +1"", 1], null, null]"
-Amateur,43,"[[""Goldsmithing"", 12]]",Wool Robe,Earth,,"[[""Brass Scales"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 2], [""Wool Cloth"", 2]]","[[""Wool Robe +1"", 1], null, null]"
-Amateur,44,[],Lilac Corsage,Wind,,"[[""Silk Cloth"", 1], [""Spider Web"", 1], [""Lilac"", 1], [""Twinthread"", 1]]","[[""Gala Corsage"", 1], null, null]"
-Amateur,44,"[[""Goldsmithing"", 11]]",Wing Earring,Earth,,"[[""Insect Wing"", 2], [""Silver Ingot"", 1]]","[[""Drone Earring"", 1], null, null]"
-Amateur,45,[],Humidified Velvet,Earth,Cloth Ensorcellment,"[[""Silk Thread"", 1], [""Wool Thread"", 2], [""Earth Anima"", 1], [""Water Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
-Amateur,45,[],Smooth Velvet,Earth,Cloth Purification,"[[""Silk Thread"", 1], [""Wool Thread"", 2], [""Wind Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,45,[],Velvet Cloth,Earth,,"[[""Silk Thread"", 1], [""Wool Thread"", 2]]","[null, null, null]"
-Amateur,45,[],Wool Cap,Earth,,"[[""Wool Thread"", 1], [""Wool Cloth"", 2], [""Chocobo Feather"", 1]]","[[""Wool Cap +1"", 1], null, null]"
-Amateur,45,[],Wool Cap,Earth,,"[[""Clothcraft Kit 45"", 1]]","[null, null, null]"
-Amateur,46,[],Blink Band,Earth,,"[[""Flax Headband"", 1], [""Fine Linen Cloth"", 1]]","[null, null, null]"
-Amateur,46,[],Wool Bracers,Earth,,"[[""Wool Thread"", 1], [""Wool Cloth"", 2], [""Saruta Cotton"", 2]]","[[""Wool Bracers +1"", 1], null, null]"
-Amateur,47,"[[""Goldsmithing"", 12]]",Silver Thread,Earth,,"[[""Silver Ingot"", 1], [""Silk Thread"", 1]]","[[""Silver Thread"", 4], [""Silver Thread"", 6], [""Silver Thread"", 8]]"
-Amateur,47,"[[""Goldsmithing"", 12]]",Silver Thread,Earth,Spinning,"[[""Silver Ingot"", 3], [""Silk Thread"", 3], [""Spindle"", 1]]","[[""Silver Thread"", 8], [""Silver Thread"", 12], [""Silver Thread"", 12]]"
-Amateur,47,[],Blue Tarutaru Desk,Water,,"[[""Tarutaru Desk"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
-Amateur,47,[],Green Tarutaru Desk,Water,,"[[""Tarutaru Desk"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
-Amateur,47,[],Yellow Tarutaru Desk,Water,,"[[""Tarutaru Desk"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
-Amateur,47,[],White Tarutaru Desk,Water,,"[[""Tarutaru Desk"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
-Amateur,48,[],Wool Socks,Earth,,"[[""Wool Thread"", 1], [""Wool Cloth"", 3], [""Ram Leather"", 1]]","[[""Wool Socks +1"", 1], null, null]"
-Amateur,49,[],Fire Bracers,Earth,,"[[""Incombustible Wool"", 1], [""Wool Bracers"", 1]]","[null, null, null]"
-Amateur,49,[],Wool Hose,Earth,,"[[""Wool Thread"", 1], [""Wool Cloth"", 2], [""Ram Leather"", 1]]","[[""Wool Hose +1"", 1], null, null]"
-Amateur,49,[],Junkenshi Habaki,Wind,,"[[""Rainbow Thread"", 1], [""Cotton Cloth"", 3], [""Manta Leather"", 1]]","[[""Seikenshi Habaki"", 1], null, null]"
-Amateur,50,[],Chocobo Hose,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 1], [""Sheep Leather"", 1], [""Wool Cloth"", 1]]","[[""Rider's Hose"", 1], null, null]"
-Amateur,50,[],Royal Squire's Robe +1,Earth,,"[[""Royal Squire's Robe"", 1], [""Silver Thread"", 1], [""Wool Cloth"", 1]]","[[""Royal Squire's Robe +2"", 1], null, null]"
-Amateur,50,"[[""Goldsmithing"", 13]]",Wool Gambison,Earth,,"[[""Brass Scales"", 1], [""Wool Thread"", 1], [""Saruta Cotton"", 2], [""Wool Cloth"", 4]]","[[""Wool Gambison +1"", 1], null, null]"
-Amateur,50,[],Velvet Cloth,Earth,,"[[""Silk Thread"", 1], [""Cotton Thread"", 2]]","[null, null, null]"
-Amateur,50,[],Smooth Velvet,Earth,Cloth Purification,"[[""Silk Thread"", 1], [""Cotton Thread"", 2], [""Wind Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,50,[],Velvet Cloth,Earth,,"[[""Clothcraft Kit 50"", 1], [""Journeyman (51-60)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,51,[],Silk Thread,Lightning,,"[[""Crawler Cocoon"", 2]]","[null, null, null]"
-Amateur,51,[],Silk Thread,Lightning,Spinning,"[[""Crawler Cocoon"", 6], [""Spindle"", 1]]","[null, null, null]"
-Amateur,51,[],Silver Obi,Earth,,"[[""Silver Thread"", 3]]","[[""Silver Obi +1"", 1], null, null]"
-Amateur,51,[],Humidified Velvet,Earth,Cloth Ensorcellment,"[[""Silk Thread"", 1], [""Cotton Thread"", 2], [""Earth Anima"", 1], [""Water Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
-Amateur,52,[],Black Slacks,Earth,,"[[""Velvet Cloth"", 1], [""Linen Cloth"", 2], [""Silver Thread"", 1]]","[[""Mage's Slacks"", 1], null, null]"
-Amateur,52,[],Blaze Hose,Earth,,"[[""Incombustible Wool"", 1], [""Wool Hose"", 1]]","[null, null, null]"
-Amateur,52,[],Insect Fletchings,Wind,,"[[""Insect Wing"", 2]]","[[""Insect Fletchings"", 8], [""Insect Fletchings"", 10], [""Insect Fletchings"", 12]]"
-Amateur,52,[],Insect Fletchings,Wind,Fletching,"[[""Insect Wing"", 6], [""Zephyr Thread"", 1]]","[[""Insect Fletchings"", 24], [""Insect Fletchings"", 30], [""Insect Fletchings"", 36]]"
-Amateur,52,[],Scarlet Ribbon,Wind,,"[[""Velvet Cloth"", 1]]","[[""Noble's Ribbon"", 1], null, null]"
-Amateur,53,[],Black Tunic,Earth,,"[[""Velvet Cloth"", 2], [""Linen Cloth"", 3], [""Silver Thread"", 1]]","[[""Mage's Tunic"", 1], null, null]"
-Amateur,53,[],Magical Silk Cloth,Earth,Cloth Purification,"[[""Silk Thread"", 3], [""Earth Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,53,[],Silk Cloth,Earth,,"[[""Silk Thread"", 3]]","[null, null, null]"
-Amateur,53,"[[""Bonecraft"", 47]]",Peiste Dart,Earth,,"[[""Gnat Wing"", 2], [""Animal Glue"", 1], [""Peiste Stinger"", 1]]","[[""Peiste Dart"", 12], [""Peiste Dart"", 16], [""Peiste Dart"", 20]]"
-Amateur,54,[],Black Cape,Earth,,"[[""Velvet Cloth"", 2], [""Silver Thread"", 1]]","[[""Black Cape +1"", 1], null, null]"
-Amateur,54,[],Scarlet Linen,Earth,,"[[""Bloodthread"", 1], [""Linen Thread"", 2]]","[null, null, null]"
-Amateur,54,"[[""Goldsmithing"", 32]]",Pennon Earring,Earth,,"[[""Electrum Ingot"", 1], [""Gnat Wing"", 2]]","[[""Pennon Earring +1"", 1], null, null]"
-Amateur,54,[],Kyoshu Sitabaki,Earth,,"[[""Lineadach"", 1], [""Cotton Cloth"", 2], [""Grass Thread"", 1]]","[[""Kyoshu Sitabaki +1"", 1], null, null]"
-Amateur,55,[],Iron Musketeer's Gambison +1,Earth,,"[[""Iron Musketeer's Gambison"", 1], [""Wool Thread"", 1], [""Wool Cloth"", 1]]","[[""Iron Musketeer's Gambison +2"", 1], null, null]"
-Amateur,55,[],Karakul Thread,Lightning,,"[[""Karakul Wool"", 2]]","[null, null, null]"
-Amateur,55,[],Karakul Thread,Lightning,Spinning,"[[""Karakul Wool"", 6], [""Spindle"", 1]]","[null, null, null]"
-Amateur,55,[],Mohbwa Scarf,Earth,,"[[""Linen Cloth"", 1], [""Mohbwa Cloth"", 1], [""Mohbwa Thread"", 1]]","[[""Mohbwa Scarf +1"", 1], null, null]"
-Amateur,55,"[[""Goldsmithing"", 8]]",Velvet Hat,Earth,,"[[""Velvet Cloth"", 2], [""Brass Sheet"", 1], [""Silk Thread"", 1], [""Wool Cloth"", 1]]","[[""Mage's Hat"", 1], null, null]"
-Amateur,55,[],Mohbwa Scarf,Earth,,"[[""Clothcraft Kit 55"", 1]]","[null, null, null]"
-Amateur,56,[],Twinthread,Lightning,,"[[""Twincoon"", 2]]","[[""Twinthread"", 2], [""Twinthread"", 3], [""Twinthread"", 4]]"
-Amateur,56,[],Chocobo Hood,Earth,,"[[""Linen Cloth"", 1], [""Silk Thread"", 1], [""Velvet Cloth"", 2]]","[null, null, null]"
-Amateur,57,[],Karakul Cloth,Earth,,"[[""Karakul Thread"", 3]]","[null, null, null]"
-Amateur,57,"[[""Goldsmithing"", 9]]",Velvet Slops,Earth,,"[[""Velvet Cloth"", 2], [""Brass Sheet"", 1], [""Silver Thread"", 1], [""Wool Cloth"", 1]]","[[""Mage's Slops"", 1], null, null]"
-Amateur,58,"[[""Goldsmithing"", 41]]",Gold Thread,Earth,,"[[""Gold Ingot"", 1], [""Silk Thread"", 1]]","[[""Gold Thread"", 4], [""Gold Thread"", 6], [""Gold Thread"", 8]]"
-Amateur,58,"[[""Goldsmithing"", 41]]",Gold Thread,Earth,Spinning,"[[""Gold Ingot"", 3], [""Silk Thread"", 3], [""Spindle"", 1]]","[[""Gold Thread"", 8], [""Gold Thread"", 12], [""Gold Thread"", 12]]"
-Amateur,58,[],Linen Doublet,Earth,,"[[""Saruta Cotton"", 3], [""Linen Thread"", 1], [""Linen Cloth"", 4]]","[[""Linen Doublet +1"", 1], null, null]"
-Amateur,58,"[[""Goldsmithing"", 41]]",Shiny Gold Thread,Earth,Cloth Purification,"[[""Gold Ingot"", 1], [""Silk Thread"", 1], [""Light Anima"", 3]]","[[""Shiny Gold Thread"", 4], [""Shiny Gold Thread"", 6], [""Shiny Gold Thread"", 8]]"
-Amateur,58,"[[""Goldsmithing"", 41]]",Brilliant Gold Thread,Earth,Cloth Purification,"[[""Gold Ingot"", 1], [""Silk Thread"", 1], [""Water Anima"", 2], [""Light Anima"", 1]]","[[""Brilliant Gold Thread"", 4], [""Brilliant Gold Thread"", 6], [""Brilliant Gold Thread"", 8]]"
-Amateur,58,"[[""Goldsmithing"", 41]]",Dull Gold Thread,Earth,Cloth Purification,"[[""Gold Ingot"", 1], [""Silk Thread"", 1], [""Ice Anima"", 2], [""Light Anima"", 1]]","[[""Dull Gold Thread"", 4], [""Dull Gold Thread"", 6], [""Dull Gold Thread"", 8]]"
-Amateur,58,[],Twinthread Obi,Earth,,"[[""Twinthread"", 3]]","[[""Twinthread Obi +1"", 1], null, null]"
-Amateur,58,"[[""Goldsmithing"", 15]]",Velvet Cuffs,Earth,,"[[""Velvet Cloth"", 1], [""Peridot"", 2], [""Silver Thread"", 1], [""Wool Cloth"", 1]]","[[""Mage's Cuffs"", 1], null, null]"
-Amateur,58,"[[""Goldsmithing"", 9]]",Velvet Robe,Earth,,"[[""Velvet Cloth"", 2], [""Brass Scales"", 1], [""Silver Thread"", 1], [""Wool Cloth"", 2]]","[[""Mage's Robe"", 1], null, null]"
-Amateur,58,"[[""Goldsmithing"", 9]]",Salutary Robe,Earth,,"[[""Mandragora Scale"", 1], [""Velvet Cloth"", 2], [""Wool Cloth"", 2], [""Silver Thread"", 1]]","[[""Salutary Robe +1"", 1], null, null]"
-Amateur,59,[],Imperial Silk Cloth,Earth,,"[[""Silk Thread"", 1], [""Gold Thread"", 1], [""Wamoura Silk"", 1]]","[null, null, null]"
-Amateur,59,[],Qiqirn Sash,Earth,,"[[""Scarlet Linen"", 1], [""Red Grass Thread"", 1], [""Karakul Cloth"", 1]]","[[""Qiqirn Sash +1"", 1], null, null]"
-Amateur,59,[],Red Cape,Earth,,"[[""Velvet Cloth"", 2], [""Gold Thread"", 1]]","[[""Red Cape +1"", 1], null, null]"
-Amateur,60,[],Black Mitts,Earth,,"[[""Saruta Cotton"", 1], [""Velvet Cloth"", 1], [""Linen Cloth"", 1], [""Silver Thread"", 1]]","[[""Mage's Mitts"", 1], null, null]"
-Amateur,60,[],Field Hose,Earth,,"[[""Linen Cloth"", 1], [""Wool Thread"", 1], [""Wool Cloth"", 2]]","[[""Worker Hose"", 1], null, null]"
-Amateur,60,"[[""Alchemy"", 7]]",Blue Tarutaru Standing Screen,Water,,"[[""Tarutaru Folding Screen"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
-Amateur,60,"[[""Alchemy"", 7]]",Green Tarutaru Standing Screen,Water,,"[[""Tarutaru Folding Screen"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
-Amateur,60,"[[""Alchemy"", 7]]",Yellow Tarutaru Standing Screen,Water,,"[[""Tarutaru Folding Screen"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
-Amateur,60,"[[""Alchemy"", 7]]",White Tarutaru Standing Screen,Water,,"[[""Tarutaru Folding Screen"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
-Amateur,60,[],Black Mitts,Earth,,"[[""Clothcraft Kit 60"", 1], [""Craftsman (61-70)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,61,"[[""Goldsmithing"", 15]]",Velvet Cuffs,Earth,,"[[""Velvet Cloth"", 1], [""Tourmaline"", 2], [""Silver Thread"", 1], [""Wool Cloth"", 1]]","[[""Mage's Cuffs"", 1], null, null]"
-Amateur,61,[],White Slacks,Earth,,"[[""Velvet Cloth"", 2], [""Gold Thread"", 1], [""Silk Cloth"", 1]]","[[""White Slacks +1"", 1], null, null]"
-Amateur,61,"[[""Smithing"", 35], [""Leathercraft"", 34]]",Jaridah Salvars,Earth,,"[[""Steel Sheet"", 1], [""Karakul Leather"", 1], [""Marid Hair"", 1], [""Karakul Cloth"", 2]]","[[""Akinji Salvars"", 1], null, null]"
-Amateur,62,"[[""Leathercraft"", 20]]",Crow Bracers,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 2], [""Saruta Cotton"", 2], [""Sheep Leather"", 1]]","[[""Raven Bracers"", 1], null, null]"
-Amateur,62,[],Gnat Fletchings,Wind,,"[[""Gnat Wing"", 2]]","[[""Gnat Fletchings"", 8], [""Gnat Fletchings"", 10], [""Gnat Fletchings"", 12]]"
-Amateur,62,[],Gnat Fletchings,Wind,Fletching,"[[""Gnat Wing"", 6], [""Zephyr Thread"", 1]]","[[""Gnat Fletchings"", 24], [""Gnat Fletchings"", 30], [""Gnat Fletchings"", 36]]"
-Amateur,62,[],Green Ribbon,Wind,,"[[""Silk Cloth"", 1]]","[[""Green Ribbon +1"", 1], null, null]"
-Amateur,63,[],Hunter's Cotton,Earth,,"[[""Cotton Thread"", 3], [""Carapace Powder"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,63,[],Water Mitts,Earth,,"[[""Humidified Velvet"", 1], [""Black Mitts"", 1]]","[null, null, null]"
-Amateur,63,[],White Cloak,Earth,,"[[""Velvet Cloth"", 3], [""Gold Thread"", 1], [""Silk Cloth"", 2]]","[[""White Cloak +1"", 1], null, null]"
-Amateur,63,[],Junrenshi Habaki,Wind,,"[[""Rainbow Thread"", 1], [""Linen Cloth"", 3], [""Manta Leather"", 1]]","[[""Seirenshi Habaki"", 1], null, null]"
-Amateur,64,[],White Cape,Earth,,"[[""Silk Cloth"", 2], [""Wool Thread"", 1]]","[[""White Cape +1"", 1], null, null]"
-Amateur,64,[],White Mitts,Earth,,"[[""Saruta Cotton"", 1], [""Velvet Cloth"", 1], [""Gold Thread"", 1], [""Silk Cloth"", 1]]","[[""White Mitts +1"", 1], null, null]"
-Amateur,64,"[[""Alchemy"", 7]]",Carmine Desk,Water,,"[[""Desk"", 1], [""Red Textile Dye"", 1]]","[null, null, null]"
-Amateur,64,"[[""Alchemy"", 7]]",Cerulean Desk,Water,,"[[""Desk"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
-Amateur,64,"[[""Alchemy"", 7]]",Myrtle Desk,Water,,"[[""Desk"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
-Amateur,64,"[[""Alchemy"", 7]]",Ecru Desk,Water,,"[[""Desk"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
-Amateur,64,"[[""Leathercraft"", 19]]",Menetrier's Alb,Earth,,"[[""Cotton Cloth"", 1], [""Sheep Leather"", 1], [""Ram Leather"", 1], [""Beeswax"", 1], [""Red Grass Thread"", 1], [""Red Grass Cloth"", 2], [""Yellow Brass Chain"", 1]]","[[""Menetrier's Alb +1"", 1], null, null]"
-Amateur,64,[],White Cape,Earth,,"[[""Clothcraft Kit 64"", 1]]","[null, null, null]"
-Amateur,65,"[[""Alchemy"", 24], [""Goldsmithing"", 22]]",Aketon,Earth,,"[[""Saruta Cotton"", 2], [""Velvet Cloth"", 1], [""Platinum Ingot"", 1], [""Gold Thread"", 2], [""Silk Cloth"", 1], [""Beetle Blood"", 1]]","[[""Aketon +1"", 1], null, null]"
-Amateur,65,"[[""Smithing"", 19]]",Hyo,Wind,,"[[""Velvet Cloth"", 1], [""Cotton Thread"", 1], [""Iron Ingot"", 1]]","[[""Hyo"", 12], [""Hyo"", 16], [""Hyo"", 20]]"
-Amateur,65,"[[""Goldsmithing"", 52]]",Silk Hat,Earth,,"[[""Gold Sheet"", 1], [""Velvet Cloth"", 1], [""Silver Thread"", 1]]","[[""Silk Hat +1"", 1], null, null]"
-Amateur,65,"[[""Goldsmithing"", 52]]",Silken Hat,Earth,,"[[""Gold Sheet"", 1], [""Silver Thread"", 1], [""Velvet Cloth"", 1], [""Imperial Silk Cloth"", 2]]","[[""Magi Hat"", 1], null, null]"
-Amateur,65,"[[""Goldsmithing"", 9]]",Skeleton Robe,Earth,,"[[""Brass Scales"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 2], [""Wool Cloth"", 2], [""Osseous Serum"", 1]]","[null, null, null]"
-Amateur,66,"[[""Leathercraft"", 20]]",Crow Beret,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 2], [""Black Chocobo Feather"", 1], [""Bird Feather"", 1], [""Sheep Leather"", 1]]","[[""Raven Beret"", 1], null, null]"
-Amateur,66,[],High Mana Cloak,Earth,,"[[""Magical Silk Cloth"", 1], [""White Cloak"", 1]]","[null, null, null]"
-Amateur,66,[],Opaline Hose,Light,,"[[""Velvet Cloth"", 2], [""Silk Thread"", 3], [""Twinthread"", 2]]","[[""Ceremonial Hose"", 1], null, null]"
-Amateur,66,[],Sarcenet Cape,Earth,,"[[""Sarcenet Cloth"", 2], [""Wool Thread"", 1]]","[[""Midnight Cape"", 1], null, null]"
-Amateur,66,"[[""Goldsmithing"", 19]]",Silk Cuffs,Earth,,"[[""Aquamarine"", 2], [""Velvet Cloth"", 1], [""Gold Thread"", 1], [""Silk Cloth"", 1]]","[[""Silk Cuffs +1"", 1], null, null]"
-Amateur,66,"[[""Leathercraft"", 50], [""Alchemy"", 20]]",Argent Hose,Light,,"[[""Silver Chain"", 1], [""Velvet Cloth"", 2], [""Sheep Leather"", 2], [""Eltoro Leather"", 1], [""Baking Soda"", 1], [""Platinum Silk"", 1]]","[[""Platino Hose"", 1], null, null]"
-Amateur,67,"[[""Goldsmithing"", 45]]",Silk Slops,Earth,,"[[""Gold Sheet"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Silk Cloth"", 2]]","[[""Silk Slops +1"", 1], null, null]"
-Amateur,67,"[[""Goldsmithing"", 45]]",Silken Slops,Earth,,"[[""Gold Sheet"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Imperial Silk Cloth"", 2]]","[[""Magi Slops"", 1], null, null]"
-Amateur,67,[],Wool Doublet,Earth,,"[[""Saruta Cotton"", 3], [""Wool Thread"", 1], [""Wool Cloth"", 4]]","[[""Wool Doublet +1"", 1], null, null]"
-Amateur,67,[],Accura Cape,Earth,,"[[""Velvet Cloth"", 2], [""Dahu Hair"", 1]]","[[""Accura Cape +1"", 1], null, null]"
-Amateur,67,[],Apkallu Fletchings,Wind,,"[[""Apkallu Feather"", 2]]","[[""Apkallu Fletchings"", 8], [""Apkallu Fletchings"", 10], [""Apkallu Fletchings"", 12]]"
-Amateur,67,[],Apkallu Fletchings,Wind,Fletching,"[[""Apkallu Feather"", 6], [""Zephyr Thread"", 1]]","[[""Apkallu Fletchings"", 24], [""Apkallu Fletchings"", 30], [""Apkallu Fletchings"", 36]]"
-Amateur,68,"[[""Goldsmithing"", 21], [""Leathercraft"", 16]]",Crow Jupon,Earth,,"[[""Silver Ingot"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 3], [""Saruta Cotton"", 2], [""Sheep Leather"", 1]]","[[""Raven Jupon"", 1], null, null]"
-Amateur,68,[],Royal Knight's Cloak +1,Earth,,"[[""Royal Knight's Cloak"", 1], [""Gold Thread"", 1], [""Silk Cloth"", 1]]","[[""Royal Knight's Cloak +2"", 1], null, null]"
-Amateur,68,[],Silk Coat,Earth,,"[[""Velvet Cloth"", 2], [""Gold Thread"", 1], [""Silver Thread"", 1], [""Silk Cloth"", 2]]","[[""Silk Coat +1"", 1], null, null]"
-Amateur,68,[],Silken Coat,Earth,,"[[""Silver Thread"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 2], [""Imperial Silk Cloth"", 2]]","[[""Magi Coat"", 1], null, null]"
-Amateur,68,[],Ghost Cape,Earth,,"[[""Silver Thread"", 1], [""Velvet Cloth"", 2], [""Spectral Serum"", 1]]","[null, null, null]"
-Amateur,69,[],Silk Headband,Earth,,"[[""Carbon Fiber"", 1], [""Silk Cloth"", 1]]","[[""Silk Headband +1"", 1], null, null]"
-Amateur,69,"[[""Leathercraft"", 36]]",Field Tunica,Earth,,"[[""Wool Thread"", 1], [""Wool Cloth"", 2], [""Linen Cloth"", 1], [""Sheep Leather"", 1], [""Ram Leather"", 1]]","[[""Worker Tunica"", 1], null, null]"
-Amateur,69,"[[""Goldsmithing"", 53]]",Platinum Silk,Earth,,"[[""Platinum Ingot"", 1], [""Silk Thread"", 1]]","[[""Platinum Silk"", 4], [""Platinum Silk"", 6], [""Platinum Silk"", 8]]"
-Amateur,69,"[[""Goldsmithing"", 53]]",Platinum Silk,Earth,Spinning,"[[""Platinum Ingot"", 3], [""Silk Thread"", 3], [""Spindle"", 1]]","[[""Platinum Silk"", 12], null, null]"
-Amateur,69,[],Sailcloth,Earth,,"[[""Grass Thread"", 5], [""Rainbow Thread"", 1]]","[null, null, null]"
-Amateur,69,[],Vivacity Coat,Earth,,"[[""Silver Thread"", 1], [""Velvet Cloth"", 2], [""Silk Cloth"", 2], [""Rugged Gold Thread"", 1]]","[[""Vivacity Coat +1"", 1], null, null]"
-Amateur,70,[],Gold Obi,Earth,,"[[""Gold Thread"", 3]]","[[""Gold Obi +1"", 1], null, null]"
-Amateur,70,[],Tactician Magician's Hat +1,Earth,,"[[""Tactician Magician's Hat"", 1], [""Silver Thread"", 1], [""Velvet Cloth"", 1]]","[[""Tactician Magician's Hat +2"", 1], null, null]"
-Amateur,70,[],Vermillion Cloak,Earth,,"[[""Damascene Cloth"", 3], [""Gold Thread"", 2], [""Silk Cloth"", 1], [""Velvet Cloth"", 2]]","[[""Royal Cloak"", 1], null, null]"
-Amateur,70,[],Black Puppet Turban,Earth,,"[[""Silver Thread"", 1], [""Cotton Cloth"", 1], [""Velvet Cloth"", 1]]","[null, null, null]"
-Amateur,70,[],White Puppet Turban,Earth,,"[[""Silver Thread"", 1], [""Cotton Cloth"", 1], [""Silk Cloth"", 1]]","[null, null, null]"
-Amateur,70,[],Gold Obi,Earth,,"[[""Clothcraft Kit 70"", 1], [""Artisan (71-80)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,71,"[[""Smithing"", 40]]",Shinobi Hachigane,Wind,,"[[""Iron Chain"", 1], [""Darksteel Sheet"", 1], [""Silk Cloth"", 2]]","[[""Shinobi Hachigane +1"", 1], null, null]"
-Amateur,71,"[[""Goldsmithing"", 19]]",Silk Cuffs,Earth,,"[[""Lapis Lazuli"", 2], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Silk Cloth"", 1]]","[[""Silk Cuffs +1"", 1], null, null]"
-Amateur,71,"[[""Goldsmithing"", 19]]",Silken Cuffs,Earth,,"[[""Lapis Lazuli"", 2], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Imperial Silk Cloth"", 1]]","[[""Magi Cuffs"", 1], null, null]"
-Amateur,71,"[[""Alchemy"", 7]]",Blue 3-Drawer Almirah,Water,,"[[""3-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
-Amateur,71,"[[""Alchemy"", 7]]",Green 3-Drawer Almirah,Water,,"[[""3-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
-Amateur,71,"[[""Alchemy"", 7]]",Yellow 3-Drawer Almirah,Water,,"[[""3-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
-Amateur,71,"[[""Alchemy"", 7]]",White 3-Drawer Almirah,Water,,"[[""3-Drawer Almirah"", 1], [""Gold Thread"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
-Amateur,71,"[[""Alchemy"", 7]]",Blue 6-Drawer Almirah,Water,,"[[""6-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
-Amateur,71,"[[""Alchemy"", 7]]",Green 6-Drawer Almirah,Water,,"[[""6-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
-Amateur,71,"[[""Alchemy"", 7]]",Yellow 6-Drawer Almirah,Water,,"[[""6-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
-Amateur,71,"[[""Alchemy"", 7]]",White 6-Drawer Almirah,Water,,"[[""6-Drawer Almirah"", 1], [""Gold Thread"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
-Amateur,71,"[[""Alchemy"", 7]]",Blue 9-Drawer Almirah,Water,,"[[""9-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
-Amateur,71,"[[""Alchemy"", 7]]",Green 9-Drawer Almirah,Water,,"[[""9-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
-Amateur,71,"[[""Alchemy"", 7]]",Yellow 9-Drawer Almirah,Water,,"[[""9-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
-Amateur,71,"[[""Alchemy"", 7]]",White 9-Drawer Almirah,Water,,"[[""9-Drawer Almirah"", 1], [""Gold Thread"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
-Amateur,72,[],Battle Bracers,Earth,,"[[""Saruta Cotton"", 2], [""Velvet Cloth"", 2], [""Silk Thread"", 1]]","[[""Battle Bracers +1"", 1], null, null]"
-Amateur,72,[],Black Chocobo Fletchings,Wind,,"[[""Black Chocobo Feather"", 2]]","[[""Black Chocobo Fletchings"", 8], [""Black Chocobo Fletchings"", 10], [""Black Chocobo Fletchings"", 12]]"
-Amateur,72,[],Black Chocobo Fletchings,Wind,Fletching,"[[""Black Chocobo Feather"", 6], [""Zephyr Thread"", 1]]","[[""Black Chocobo Fletchings"", 24], [""Black Chocobo Fletchings"", 30], [""Black Chocobo Fletchings"", 36]]"
-Amateur,72,[],Tactician Magician's Cuffs +1,Earth,,"[[""Tactician Magician's Cuffs"", 1], [""Silver Thread"", 1], [""Velvet Cloth"", 1]]","[[""Tactician Magician's Cuffs +2"", 1], null, null]"
-Amateur,72,[],Tactician Magician's Slops +1,Earth,,"[[""Tactician Magician's Slops"", 1], [""Silver Thread"", 1], [""Velvet Cloth"", 1]]","[[""Tactician Magician's Slops +2"", 1], null, null]"
-Amateur,73,[],Deductive Gold Obi,Earth,,"[[""Brilliant Gold Thread"", 1], [""Gold Obi"", 1]]","[null, null, null]"
-Amateur,73,[],Enthralling Gold Obi,Earth,,"[[""Shiny Gold Thread"", 1], [""Gold Obi"", 1]]","[null, null, null]"
-Amateur,73,[],Sagacious Gold Obi,Earth,,"[[""Dull Gold Thread"", 1], [""Gold Obi"", 1]]","[null, null, null]"
-Amateur,73,[],Shinobi Kyahan,Wind,,"[[""Mythril Sheet"", 1], [""Linen Thread"", 1], [""Silk Cloth"", 3]]","[[""Shinobi Kyahan +1"", 1], null, null]"
-Amateur,73,[],Silk Slacks,Earth,,"[[""Gold Thread"", 2], [""Silk Cloth"", 3]]","[[""Silk Slacks +1"", 1], null, null]"
-Amateur,73,[],Tactician Magician's Coat +1,Earth,,"[[""Tactician Magician's Coat"", 1], [""Velvet Cloth"", 1], [""Silver Thread"", 1]]","[[""Tactician Magician's Coat +2"", 1], null, null]"
-Amateur,74,[],Cheviot Cape,Earth,,"[[""Cheviot Cloth"", 2], [""Wool Thread"", 1]]","[[""Umbra Cape"", 1], null, null]"
-Amateur,74,"[[""Leathercraft"", 20]]",Jester's Cape,Earth,,"[[""Silk Thread"", 1], [""Silk Cloth"", 2], [""Sheep Leather"", 2]]","[[""Jester's Cape +1"", 1], null, null]"
-Amateur,74,[],Silk Mitts,Earth,,"[[""Saruta Cotton"", 1], [""Gold Thread"", 2], [""Silk Cloth"", 2]]","[[""Silk Mitts +1"", 1], null, null]"
-Amateur,74,"[[""Leathercraft"", 9]]",Vendor's Slops,Earth,,"[[""Karakul Leather"", 1], [""Scarlet Linen"", 1], [""Bloodthread"", 1], [""Imperial Silk Cloth"", 2]]","[[""Prince's Slops"", 1], null, null]"
-Amateur,74,[],Sparkstrand Thread,Lightning,,"[[""Water Spider's Web"", 2]]","[null, null, null]"
-Amateur,74,[],Sparkstrand Thread,Lightning,Spinning,"[[""Water Spider's Web"", 6], [""Spindle"", 1]]","[null, null, null]"
-Amateur,75,"[[""Smithing"", 30]]",Shinobi Tekko,Earth,,"[[""Iron Chain"", 1], [""Mythril Sheet"", 2], [""Linen Thread"", 1], [""Silk Cloth"", 2]]","[[""Shinobi Tekko +1"", 1], null, null]"
-Amateur,75,[],Tabin Bracers,Earth,,"[[""Imperial Silk Cloth"", 1], [""Battle Bracers"", 1]]","[[""Tabin Bracers +1"", 1], null, null]"
-Amateur,75,[],Red Mahogany Bed,Water,,"[[""Mahogany Bed"", 1], [""Wool Thread"", 1], [""Red Textile Dye"", 1]]","[null, null, null]"
-Amateur,75,[],Blue Mahogany Bed,Water,,"[[""Mahogany Bed"", 1], [""Wool Thread"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
-Amateur,75,[],Green Mahogany Bed,Water,,"[[""Mahogany Bed"", 1], [""Wool Thread"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
-Amateur,75,[],Yellow Mahogany Bed,Water,,"[[""Mahogany Bed"", 1], [""Wool Thread"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
-Amateur,75,[],Wolf Felt,Fire,,"[[""Sheep Wool"", 3], [""Manticore Hair"", 1], [""Wolf Fur"", 3], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,75,[],Tabin Bracers,Earth,,"[[""Clothcraft Kit 75"", 1]]","[null, null, null]"
-Amateur,76,[],Green Beret,Earth,,"[[""Chocobo Feather"", 1], [""Silk Thread"", 1], [""Silk Cloth"", 2], [""Giant Bird Feather"", 1]]","[[""Green Beret +1"", 1], null, null]"
-Amateur,76,[],Silver Brocade,Earth,,"[[""Silk Thread"", 2], [""Rainbow Thread"", 2], [""Silver Thread"", 2]]","[null, null, null]"
-Amateur,76,[],Qiqirn Hood,Earth,,"[[""Coeurl Whisker"", 1], [""Copper Ingot"", 1], [""Qiqirn Cape"", 1], [""Lapis Lazuli"", 2], [""Wool Cloth"", 2]]","[null, null, null]"
-Amateur,76,[],Twill Damask,Earth,,"[[""Sparkstrand Thread"", 2], [""Rainbow Thread"", 1]]","[null, null, null]"
-Amateur,77,"[[""Smithing"", 37]]",Pinwheel,Wind,,"[[""Steel Ingot"", 1], [""Animal Glue"", 1], [""Bast Parchment"", 2]]","[[""Pinwheel"", 12], [""Pinwheel"", 16], [""Pinwheel"", 20]]"
-Amateur,77,[],Silk Cloak,Earth,,"[[""Gold Thread"", 1], [""Silk Cloth"", 5]]","[[""Silk Cloak +1"", 1], null, null]"
-Amateur,77,[],Junhanshi Habaki,Earth,,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 3], [""Manta Leather"", 1]]","[[""Seihanshi Habaki"", 1], null, null]"
-Amateur,77,[],Colibri Fletchings,Wind,,"[[""Colibri Feather"", 2]]","[[""Colibri Fletchings"", 8], [""Colibri Fletchings"", 10], [""Colibri Fletchings"", 12]]"
-Amateur,77,[],Colibri Fletchings,Wind,Fletching,"[[""Colibri Feather"", 6], [""Zephyr Thread"", 1]]","[[""Colibri Fletchings"", 24], [""Colibri Fletchings"", 30], [""Colibri Fletchings"", 36]]"
-Amateur,78,"[[""Goldsmithing"", 42]]",Battle Jupon,Earth,,"[[""Gold Sheet"", 1], [""Saruta Cotton"", 2], [""Velvet Cloth"", 4], [""Gold Thread"", 1]]","[[""Battle Jupon +1"", 1], null, null]"
-Amateur,78,[],Rainbow Thread,Lightning,,"[[""Spider Web"", 2]]","[null, null, null]"
-Amateur,78,[],Rainbow Thread,Lightning,Spinning,"[[""Spider Web"", 6], [""Spindle"", 1]]","[null, null, null]"
-Amateur,78,"[[""Alchemy"", 41]]",Oil-Soaked Cloth,Earth,,"[[""Silk Thread"", 1], [""Gold Thread"", 1], [""Flaxseed Oil"", 3], [""Wamoura Silk"", 1]]","[null, null, null]"
-Amateur,78,[],Shinobi Hakama,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 2], [""Silk Cloth"", 1], [""Sheep Leather"", 2]]","[[""Shinobi Hakama +1"", 1], null, null]"
-Amateur,78,"[[""Woodworking"", 18]]",Haunted Muleta,Wind,,"[[""Spectral Goldenrod"", 1], [""Spectral Crimson"", 1], [""Yew Lumber"", 1]]","[null, null, null]"
-Amateur,79,[],Rainbow Velvet,Earth,,"[[""Silk Thread"", 1], [""Rainbow Thread"", 2]]","[null, null, null]"
-Amateur,79,[],Tabin Beret,Earth,,"[[""Imperial Silk Cloth"", 1], [""Green Beret"", 1]]","[[""Tabin Beret +1"", 1], null, null]"
-Amateur,80,[],Brocade Obi,Earth,,"[[""Gold Thread"", 2], [""Silver Thread"", 2], [""Rainbow Thread"", 2]]","[[""Brocade Obi +1"", 1], null, null]"
-Amateur,80,[],Rainbow Cloth,Earth,,"[[""Rainbow Thread"", 3]]","[null, null, null]"
-Amateur,80,[],Shinobi Gi,Earth,,"[[""Iron Chain"", 2], [""Linen Thread"", 1], [""Silk Cloth"", 3]]","[[""Shinobi Gi +1"", 1], null, null]"
-Amateur,80,"[[""Leathercraft"", 50], [""Bonecraft"", 55]]",Yagudo Headgear,Earth,,"[[""Yagudo Cutting"", 1], [""Bugard Tusk"", 1], [""Cockatrice Skin"", 1], [""Wool Thread"", 1], [""Yagudo Feather"", 2], [""Black Pearl"", 2]]","[null, null, null]"
-Amateur,80,"[[""Alchemy"", 24], [""Goldsmithing"", 22]]",Alacer Aketon,Earth,,"[[""Platinum Ingot"", 1], [""Gold Thread"", 2], [""Silk Cloth"", 1], [""Saruta Cotton"", 2], [""Beetle Blood"", 1], [""Radiant Velvet"", 1]]","[[""Alacer Aketon +1"", 1], null, null]"
-Amateur,80,[],Brocade Obi,Earth,,"[[""Clothcraft Kit 80"", 1], [""Adept (81-90)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,81,"[[""Smithing"", 48]]",Arhat's Jinpachi,Wind,,"[[""Darksteel Chain"", 1], [""Darksteel Sheet"", 1], [""Silk Cloth"", 2]]","[[""Arhat's Jinpachi +1"", 1], null, null]"
-Amateur,81,[],Blue Cape,Earth,,"[[""Beetle Blood"", 1], [""Silk Cloth"", 2], [""Silk Thread"", 1]]","[[""Blue Cape +1"", 1], null, null]"
-Amateur,81,[],Jester's Headband,Earth,,"[[""Cotton Thread"", 1], [""Dodge Headband"", 1], [""Linen Cloth"", 1]]","[[""Juggler's Headband"", 1], null, null]"
-Amateur,81,[],Tabin Jupon,Earth,,"[[""Battle Jupon"", 1], [""Imperial Silk Cloth"", 1]]","[[""Tabin Jupon +1"", 1], null, null]"
-Amateur,81,[],War Gloves,Earth,,"[[""Rainbow Thread"", 1], [""Saruta Cotton"", 2], [""Velvet Cloth"", 2]]","[[""War Gloves +1"", 1], null, null]"
-Amateur,81,[],Blue Noble's Bed,Water,,"[[""Noble's Bed"", 1], [""Gold Thread"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
-Amateur,81,[],Green Noble's Bed,Water,,"[[""Noble's Bed"", 1], [""Gold Thread"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
-Amateur,81,[],Yellow Noble's Bed,Water,,"[[""Noble's Bed"", 1], [""Gold Thread"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
-Amateur,81,[],White Noble's Bed,Water,,"[[""Noble's Bed"", 1], [""Gold Thread"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
-Amateur,81,[],Peapuk Fletchings,Wind,,"[[""Peapuk Wing"", 2]]","[[""Peapuk Fletchings"", 8], [""Peapuk Fletchings"", 10], [""Peapuk Fletchings"", 12]]"
-Amateur,81,[],Peapuk Fletchings,Wind,Fletching,"[[""Peapuk Wing"", 6], [""Zephyr Thread"", 1]]","[[""Peapuk Fletchings"", 24], [""Peapuk Fletchings"", 30], [""Peapuk Fletchings"", 36]]"
-Amateur,82,"[[""Smithing"", 45]]",Arhat's Sune-Ate,Wind,,"[[""Darksteel Sheet"", 1], [""Silk Cloth"", 3], [""Silk Thread"", 1]]","[[""Arhat's Sune-Ate +1"", 1], null, null]"
-Amateur,82,[],Wulong Shoes,Earth,,"[[""Cotton Cloth"", 1], [""Grass Thread"", 1], [""Kung Fu Shoes"", 1]]","[[""Wulong Shoes +1"", 1], null, null]"
-Amateur,82,[],Arachne Thread,Lightning,,"[[""Arachne Web"", 2]]","[null, null, null]"
-Amateur,82,"[[""Leathercraft"", 39], [""Goldsmithing"", 32]]",Sipahi Zerehs,Earth,,"[[""Karakul Cloth"", 2], [""Marid Hair"", 1], [""Marid Leather"", 1], [""Mythril Chain"", 1], [""Wamoura Cloth"", 1]]","[[""Abtal Zerehs"", 1], null, null]"
-Amateur,82,[],Puk Fletchings,Wind,,"[[""Puk Wing"", 2]]","[[""Puk Fletchings"", 8], [""Puk Fletchings"", 10], [""Puk Fletchings"", 12]]"
-Amateur,82,[],Puk Fletchings,Wind,Fletching,"[[""Puk Wing"", 6], [""Zephyr Thread"", 1]]","[[""Puk Fletchings"", 24], [""Puk Fletchings"", 30], [""Puk Fletchings"", 36]]"
-Amateur,83,[],Noble's Mitts,Earth,,"[[""Cotton Cloth"", 1], [""Gold Thread"", 2], [""Rainbow Cloth"", 1], [""Saruta Cotton"", 1]]","[[""Aristocrat's Mitts"", 1], null, null]"
-Amateur,83,[],Master's Sitabaki,Earth,,"[[""Cotton Thread"", 1], [""Jujitsu Sitabaki"", 1], [""Linen Cloth"", 1]]","[[""Master's Sitabaki +1"", 1], null, null]"
-Amateur,83,[],War Brais,Earth,,"[[""Gold Thread"", 1], [""Linen Cloth"", 2], [""Tiger Leather"", 1]]","[[""War Brais +1"", 1], null, null]"
-Amateur,83,[],Enthralling Brocade Obi,Earth,,"[[""Brocade Obi"", 1], [""Shiny Gold Thread"", 1]]","[null, null, null]"
-Amateur,83,[],Sagacious Brocade Obi,Earth,,"[[""Brocade Obi"", 1], [""Dull Gold Thread"", 1]]","[null, null, null]"
-Amateur,83,[],Deductive Brocade Obi,Earth,,"[[""Brocade Obi"", 1], [""Brilliant Gold Thread"", 1]]","[null, null, null]"
-Amateur,84,[],Noble's Slacks,Earth,,"[[""Gold Thread"", 2], [""Rainbow Cloth"", 2], [""Velvet Cloth"", 1]]","[[""Aristocrat's Slacks"", 1], null, null]"
-Amateur,84,[],Devotee's Mitts,Earth,,"[[""Linen Thread"", 1], [""Silk Cloth"", 1], [""Zealot's Mitts"", 1]]","[[""Devotee's Mitts +1"", 1], null, null]"
-Amateur,84,[],Arachne Obi,Earth,,"[[""Arachne Thread"", 1], [""Gold Thread"", 1], [""Rainbow Thread"", 3], [""Silver Thread"", 1]]","[[""Arachne Obi +1"", 1], null, null]"
-Amateur,84,[],Rainbow Headband,Earth,,"[[""Carbon Fiber"", 1], [""Rainbow Cloth"", 1]]","[[""Prism Headband"", 1], null, null]"
-Amateur,85,[],Master's Gi,Earth,,"[[""Cotton Cloth"", 1], [""Grass Thread"", 1], [""Jujitsu Gi"", 1]]","[[""Master's Gi +1"", 1], null, null]"
-Amateur,85,"[[""Goldsmithing"", 45]]",Sipahi Turban,Earth,,"[[""Gold Chain"", 1], [""Marid Hair"", 1], [""Wamoura Cloth"", 2]]","[[""Abtal Turban"", 1], null, null]"
-Amateur,85,[],Cilice,Earth,,"[[""Wool Thread"", 1], [""Dhalmel Hair"", 2]]","[null, null, null]"
-Amateur,85,[],Rainbow Headband,Earth,,"[[""Clothcraft Kit 85"", 1]]","[null, null, null]"
-Amateur,86,"[[""Smithing"", 49]]",Arhat's Tekko,Earth,,"[[""Darksteel Sheet"", 2], [""Iron Chain"", 1], [""Linen Thread"", 1], [""Silk Cloth"", 2]]","[[""Arhat's Tekko +1"", 1], null, null]"
-Amateur,86,"[[""Goldsmithing"", 51], [""Leathercraft"", 41]]",War Aketon,Earth,,"[[""Gold Ingot"", 1], [""Gold Thread"", 1], [""Saruta Cotton"", 2], [""Tiger Leather"", 2], [""Velvet Cloth"", 2]]","[[""War Aketon +1"", 1], null, null]"
-Amateur,86,[],Hailstorm Tekko,Earth,,"[[""Cotton Cloth"", 1], [""Grass Thread"", 1], [""Monsoon Tekko"", 1]]","[[""Hailstorm Tekko +1"", 1], null, null]"
-Amateur,86,[],Gold Brocade,Earth,,"[[""Gold Thread"", 2], [""Rainbow Thread"", 2], [""Silk Thread"", 2]]","[null, null, null]"
-Amateur,87,[],Noble's Tunic,Earth,,"[[""Gold Thread"", 2], [""Rainbow Cloth"", 1], [""Shining Cloth"", 1], [""Silk Cloth"", 1], [""Silver Thread"", 1], [""Velvet Cloth"", 2]]","[[""Aristocrat's Coat"", 1], null, null]"
-Amateur,87,[],Peace Cape,Earth,,"[[""Amity Cape"", 1], [""Linen Thread"", 1], [""Silk Cloth"", 1]]","[[""Peace Cape +1"", 1], null, null]"
-Amateur,87,[],Taffeta Cape,Earth,,"[[""Taffeta Cloth"", 2], [""Wool Thread"", 1]]","[[""Taffeta Cape +1"", 1], null, null]"
-Amateur,87,[],Chapuli Fletchings,Wind,,"[[""Chapuli Wing"", 2]]","[[""Chapuli Fletchings"", 8], [""Chapuli Fletchings"", 10], [""Chapuli Fletchings"", 12]]"
-Amateur,87,[],Chapuli Fletchings,Wind,Fletching,"[[""Chapuli Wing"", 6], [""Zephyr Thread"", 1]]","[[""Chapuli Fletchings"", 24], [""Chapuli Fletchings"", 30], [""Chapuli Fletchings"", 36]]"
-Amateur,88,"[[""Alchemy"", 59], [""Goldsmithing"", 21]]",Bloody Aketon,Earth,,"[[""Dragon Blood"", 1], [""Gold Thread"", 2], [""Platinum Ingot"", 1], [""Rainbow Cloth"", 1], [""Saruta Cotton"", 2], [""Silk Cloth"", 1]]","[[""Carnage Aketon"", 1], null, null]"
-Amateur,88,[],Gaia Doublet,Earth,,"[[""Cotton Cloth"", 1], [""Earth Doublet"", 1], [""Grass Thread"", 1]]","[[""Gaia Doublet +1"", 1], null, null]"
-Amateur,88,[],Arhat's Hakama,Earth,,"[[""Sheep Leather"", 2], [""Silk Cloth"", 1], [""Velvet Cloth"", 2], [""Silk Thread"", 1]]","[[""Arhat's Hakama +1"", 1], null, null]"
-Amateur,88,[],Wamoura Silk,Lightning,,"[[""Wamoura Cocoon"", 2]]","[null, null, null]"
-Amateur,88,[],Wamoura Silk,Lightning,Spinning,"[[""Wamoura Cocoon"", 6], [""Spindle"", 1]]","[null, null, null]"
-Amateur,89,"[[""Smithing"", 21]]",Arhat's Gi,Earth,,"[[""Rainbow Cloth"", 1], [""Rainbow Thread"", 1], [""Silk Cloth"", 1], [""Steel Sheet"", 2], [""Velvet Cloth"", 1]]","[[""Arhat's Gi +1"", 1], null, null]"
-Amateur,89,[],Black Cloak,Earth,,"[[""Gold Thread"", 1], [""Rainbow Cloth"", 1], [""Raxa"", 3], [""Silk Cloth"", 2], [""Silver Thread"", 1]]","[[""Demon's Cloak"", 1], null, null]"
-Amateur,89,[],Corsair's Hat,Earth,,"[[""Marine Hat"", 1], [""Wool Cloth"", 1], [""Wool Thread"", 1]]","[[""Corsair's Hat +1"", 1], null, null]"
-Amateur,89,[],Wamoura Silk,Lightning,,"[[""Wamoura Hair"", 2]]","[null, null, null]"
-Amateur,90,[],Wamoura Cloth,Earth,,"[[""Wamoura Silk"", 3]]","[null, null, null]"
-Amateur,90,"[[""Smithing"", 60]]",War Shinobi Gi,Earth,,"[[""Darksteel Chain"", 2], [""Darksteel Sheet"", 2], [""Rainbow Thread"", 1], [""Raxa"", 3]]","[[""War Shinobi Gi +1"", 1], null, null]"
-Amateur,90,[],Bishop's Robe,Earth,,"[[""Cotton Thread"", 1], [""Linen Cloth"", 1], [""Priest's Robe"", 1]]","[[""Bishop's Robe +1"", 1], null, null]"
-Amateur,90,[],Rainbow Obi,Earth,,"[[""Gold Thread"", 1], [""Rainbow Thread"", 4], [""Silver Thread"", 1]]","[[""Prism Obi"", 1], null, null]"
-Amateur,90,[],Rainbow Obi,Earth,,"[[""Clothcraft Kit 90"", 1], [""Veteran (91-100)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,91,"[[""Smithing"", 42], [""Leathercraft"", 41]]",Rasetsu Jinpachi,Wind,,"[[""Darksteel Chain"", 1], [""Darksteel Sheet"", 1], [""Raxa"", 1], [""Tiger Leather"", 1]]","[[""Rasetsu Jinpachi +1"", 1], null, null]"
-Amateur,91,[],Siren's Macrame,Earth,,"[[""Gold Thread"", 2], [""Rainbow Thread"", 2], [""Siren's Hair"", 2]]","[null, null, null]"
-Amateur,91,"[[""Goldsmithing"", 51]]",Sha'ir Turban,Earth,,"[[""Gold Thread"", 1], [""Hippogryph Feather"", 1], [""Pigeon's Blood Ruby"", 1], [""Velvet Cloth"", 3]]","[[""Sheikh Turban"", 1], null, null]"
-Amateur,92,"[[""Smithing"", 44], [""Leathercraft"", 41]]",Yasha Sune-Ate,Wind,,"[[""Darksteel Sheet"", 1], [""Kejusu Satin"", 1], [""Silk Thread"", 1], [""Tiger Leather"", 2]]","[[""Yasha Sune-Ate +1"", 1], null, null]"
-Amateur,92,"[[""Goldsmithing"", 54]]",Ebon Mitts,Earth,,"[[""Scintillant Ingot"", 1], [""Gargouille Shank"", 1], [""Ruszor Leather"", 1], [""Cambric"", 2]]","[null, null, null]"
-Amateur,92,"[[""Leathercraft"", 34], [""Goldsmithing"", 21]]",Errant Hat,Earth,,"[[""Pearl"", 1], [""Rainbow Thread"", 1], [""Silk Cloth"", 1], [""Velvet Cloth"", 2], [""Ram Leather"", 2]]","[[""Mahatma Hat"", 1], null, null]"
-Amateur,92,"[[""Leathercraft"", 43], [""Smithing"", 43]]",Rasetsu Sune-Ate,Wind,,"[[""Darksteel Sheet"", 1], [""Raxa"", 1], [""Silk Thread"", 1], [""Tiger Leather"", 2]]","[[""Rasetsu Sune-Ate +1"", 1], null, null]"
-Amateur,92,[],Cashmere Thread,Lightning,,"[[""Cashmere Wool"", 2]]","[null, null, null]"
-Amateur,92,"[[""Goldsmithing"", 51], [""Leathercraft"", 31]]",Rook Banner,Earth,,"[[""Dogwood Lumber"", 1], [""Gold Ingot"", 1], [""Gold Thread"", 2], [""Silk Cloth"", 1], [""Rainbow Cloth"", 1], [""Pigeon's Blood Ruby"", 1], [""Siren's Macrame"", 1]]","[null, null, null]"
-Amateur,92,[],Bewitched Mitts,Earth,,"[[""Cursed Mitts -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Mitts"", 1], null, null]"
-Amateur,92,[],Vexed Cuffs,Earth,,"[[""Hexed Cuffs -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Cuffs"", 1], null, null]"
-Amateur,93,[],Giant Bird Fletchings,Wind,,"[[""Giant Bird Plume"", 2]]","[[""Giant Bird Fletchings"", 8], [""Giant Bird Fletchings"", 10], [""Giant Bird Fletchings"", 12]]"
-Amateur,93,[],Giant Bird Fletchings,Wind,Fletching,"[[""Giant Bird Plume"", 6], [""Zephyr Thread"", 1]]","[[""Giant Bird Fletchings"", 24], [""Giant Bird Fletchings"", 30], [""Giant Bird Fletchings"", 36]]"
-Amateur,93,"[[""Leathercraft"", 51]]",Sha'ir Seraweels,Earth,,"[[""Gold Thread"", 1], [""Tiger Leather"", 1], [""Taffeta Cloth"", 1], [""Velvet Cloth"", 3]]","[[""Sheikh Seraweels"", 1], null, null]"
-Amateur,93,"[[""Smithing"", 48]]",Hachiman Hakama,Earth,,"[[""Darksteel Chain"", 2], [""Gold Thread"", 1], [""Kejusu Satin"", 1], [""Scarlet Linen"", 1], [""Velvet Cloth"", 1]]","[[""Hachiman Hakama +1"", 1], null, null]"
-Amateur,93,"[[""Goldsmithing"", 50], [""Leathercraft"", 50]]",Cursed Hat,Earth,,"[[""Velvet Cloth"", 2], [""Tiger Leather"", 1], [""Marid Leather"", 1], [""Imperial Silk Cloth"", 1], [""Nethereye Chain"", 1], [""Platinum Silk"", 1]]","[[""Cursed Hat -1"", 1], null, null]"
-Amateur,93,"[[""Leathercraft"", 60]]",Ebon Clogs,Earth,,"[[""Grass Thread"", 1], [""Tiger Leather"", 2], [""Molybdenum Ingot"", 1], [""Cambric"", 2]]","[null, null, null]"
-Amateur,93,[],Bewitched Slacks,Earth,,"[[""Cursed Slacks -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Slacks"", 1], null, null]"
-Amateur,93,[],Vexed Tights,Earth,,"[[""Hexed Tights -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Tights"", 1], null, null]"
-Amateur,93,[],Vexed Kecks,Earth,,"[[""Hexed Kecks -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Kecks"", 1], null, null]"
-Amateur,94,"[[""Leathercraft"", 26]]",Errant Slops,Earth,,"[[""Rainbow Thread"", 1], [""Ram Leather"", 1], [""Silk Cloth"", 2], [""Velvet Cloth"", 2]]","[[""Mahatma Slops"", 1], null, null]"
-Amateur,94,[],Rainbow Cape,Earth,,"[[""Rainbow Cloth"", 2], [""Silk Thread"", 1]]","[[""Prism Cape"", 1], null, null]"
-Amateur,94,[],Roshi Jinpachi,Earth,,"[[""Arhat's Jinpachi"", 1], [""Rainbow Thread"", 1]]","[[""Roshi Jinpachi +1"", 1], null, null]"
-Amateur,94,"[[""Leathercraft"", 41], [""Smithing"", 41]]",Yasha Tekko,Earth,,"[[""Darksteel Sheet"", 2], [""Darksteel Chain"", 1], [""Kejusu Satin"", 1], [""Linen Thread"", 1], [""Tiger Leather"", 1]]","[[""Yasha Tekko +1"", 1], null, null]"
-Amateur,94,[],Vexed Mitra,Earth,,"[[""Hexed Mitra -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Mitra"", 1], null, null]"
-Amateur,94,[],Vexed Bonnet,Earth,,"[[""Hexed Bonnet -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Bonnet"", 1], null, null]"
-Amateur,95,"[[""Smithing"", 41], [""Leathercraft"", 41]]",Rasetsu Tekko,Earth,,"[[""Darksteel Sheet"", 2], [""Iron Chain"", 1], [""Linen Thread"", 1], [""Raxa"", 1], [""Tiger Leather"", 1]]","[[""Rasetsu Tekko +1"", 1], null, null]"
-Amateur,95,[],Opaline Dress,Light,,"[[""Rainbow Cloth"", 1], [""Rainbow Thread"", 1], [""Silk Cloth"", 3], [""Twinthread"", 2], [""Velvet Cloth"", 1]]","[[""Ceremonial Dress"", 1], null, null]"
-Amateur,95,[],Tarutaru Sash,Earth,,"[[""Gold Thread"", 1], [""Manticore Hair"", 2], [""Rainbow Thread"", 1], [""Silver Thread"", 1], [""Wool Thread"", 1]]","[[""Star Sash"", 1], null, null]"
-Amateur,95,[],Elite Beret,Earth,,"[[""Phoenix Feather"", 1], [""War Beret"", 1]]","[[""Elite Beret +1"", 1], null, null]"
-Amateur,95,[],Cashmere Cloth,Earth,,"[[""Cashmere Thread"", 3]]","[null, null, null]"
-Amateur,95,"[[""Goldsmithing"", 50], [""Leathercraft"", 50]]",Cursed Trews,Earth,,"[[""Velvet Cloth"", 2], [""Marid Leather"", 1], [""Imperial Silk Cloth"", 2], [""Nethercant Chain"", 1], [""Platinum Silk"", 1]]","[[""Cursed Trews -1"", 1], null, null]"
-Amateur,95,"[[""Smithing"", 60], [""Leathercraft"", 50]]",Ebon Slops,Earth,,"[[""Darksteel Sheet"", 2], [""Scintillant Ingot"", 1], [""Cambric"", 2]]","[null, null, null]"
-Amateur,95,[],Tulfaire Fletchings,Wind,,"[[""Tulfaire Feather"", 2]]","[[""Tulfaire Fletchings"", 8], [""Tulfaire Fletchings"", 10], [""Tulfaire Fletchings"", 12]]"
-Amateur,95,[],Tulfaire Fletchings,Wind,Fletching,"[[""Tulfaire Feather"", 6], [""Zephyr Thread"", 1]]","[[""Tulfaire Fletchings"", 24], [""Tulfaire Fletchings"", 30], [""Tulfaire Fletchings"", 36]]"
-Amateur,95,[],Bewitched Dalmatica,Earth,,"[[""Cursed Dalmatica -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Dalmatica"", 1], null, null]"
-Amateur,95,[],Vexed Bliaut,Earth,,"[[""Hexed Bliaut -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Bliaut"", 1], null, null]"
-Amateur,95,[],Tarutaru Sash,Earth,,"[[""Clothcraft Kit 95"", 1]]","[null, null, null]"
-Amateur,96,"[[""Goldsmithing"", 50], [""Leathercraft"", 30]]",Errant Houppelande,Earth,,"[[""Gold Chain"", 1], [""Rainbow Cloth"", 2], [""Rainbow Thread"", 1], [""Ram Leather"", 1], [""Silk Cloth"", 2], [""Velvet Cloth"", 1]]","[[""Mahatma Houppelande"", 1], null, null]"
-Amateur,96,[],Cursed Mitts,Earth,,"[[""Gold Thread"", 1], [""Rainbow Cloth"", 1], [""Saruta Cotton"", 1], [""Siren's Hair"", 1], [""Wool Cloth"", 1]]","[[""Cursed Mitts -1"", 1], null, null]"
-Amateur,96,[],Blessed Mitts,Earth,,"[[""Galateia"", 1], [""Gold Thread"", 2], [""Saruta Cotton"", 1], [""Velvet Cloth"", 1]]","[[""Blessed Mitts +1"", 1], null, null]"
-Amateur,96,"[[""Smithing"", 41], [""Leathercraft"", 35]]",Yasha Hakama,Earth,,"[[""Darksteel Sheet"", 1], [""Silk Thread"", 1], [""Kejusu Satin"", 1], [""Velvet Cloth"", 2], [""Sheep Leather"", 1], [""Kejusu Satin"", 1], [""Tiger Leather"", 1]]","[[""Yasha Hakama +1"", 1], null, null]"
-Amateur,96,[],Aumoniere,Earth,,"[[""Rainbow Thread"", 1], [""Amaryllis"", 1], [""Ensanguined Cloth"", 1], [""Scarlet Ribbon"", 1]]","[[""Aumoniere +1"", 1], null, null]"
-Amateur,96,[],Akaso Thread,Lightning,,"[[""Akaso"", 2]]","[null, null, null]"
-Amateur,96,[],Akaso Thread,Lightning,Spinning,"[[""Akaso"", 6], [""Spindle"", 1]]","[null, null, null]"
-Amateur,97,"[[""Smithing"", 41], [""Leathercraft"", 35]]",Rasetsu Hakama,Earth,,"[[""Darksteel Sheet"", 1], [""Raxa"", 1], [""Sheep Leather"", 1], [""Silk Thread"", 1], [""Tiger Leather"", 1], [""Velvet Cloth"", 2]]","[[""Rasetsu Hakama +1"", 1], null, null]"
-Amateur,97,[],Cursed Slacks,Earth,,"[[""Gold Thread"", 1], [""Rainbow Cloth"", 1], [""Siren's Macrame"", 1], [""Velvet Cloth"", 2]]","[[""Cursed Slacks -1"", 1], null, null]"
-Amateur,97,"[[""Smithing"", 51], [""Leathercraft"", 46]]",Yasha Samue,Earth,,"[[""Darksteel Sheet"", 1], [""Kejusu Satin"", 2], [""Rainbow Thread"", 1], [""Steel Sheet"", 1], [""Tiger Leather"", 2], [""Velvet Cloth"", 1]]","[[""Yasha Samue +1"", 1], null, null]"
-Amateur,97,[],Blessed Trousers,Earth,,"[[""Galateia"", 1], [""Gold Thread"", 2], [""Rainbow Cloth"", 1], [""Velvet Cloth"", 1]]","[[""Blessed Trousers +1"", 1], null, null]"
-Amateur,97,"[[""Goldsmithing"", 51], [""Leathercraft"", 51]]",Cursed Coat,Earth,,"[[""Velvet Cloth"", 3], [""Marid Leather"", 1], [""Imperial Silk Cloth"", 2], [""Netherfield Chain"", 1], [""Platinum Silk"", 1]]","[[""Cursed Coat -1"", 1], null, null]"
-Amateur,97,"[[""Leathercraft"", 60]]",Ebon Beret,Earth,,"[[""Scintillant Ingot"", 1], [""Ruszor Leather"", 1], [""Cambric"", 2]]","[null, null, null]"
-Amateur,97,[],Akaso Cloth,Earth,,"[[""Akaso Thread"", 3]]","[null, null, null]"
-Amateur,98,"[[""Goldsmithing"", 24], [""Leathercraft"", 26]]",Errant Cuffs,Earth,,"[[""Gold Thread"", 1], [""Rainbow Cloth"", 1], [""Sheep Leather"", 1], [""Silk Cloth"", 1], [""Turquoise"", 2]]","[[""Mahatma Cuffs"", 1], null, null]"
-Amateur,98,[],Dance Shoes,Earth,,"[[""Moccasins"", 1], [""Rainbow Cloth"", 1], [""Rainbow Thread"", 1]]","[[""Dance Shoes +1"", 1], null, null]"
-Amateur,98,[],Foulard,Earth,,"[[""Silk Thread"", 3], [""Arachne Thread"", 1], [""Rainbow Thread"", 2]]","[null, null, null]"
-Amateur,98,[],Wyrdweave,Earth,,"[[""Wyrdstrand"", 3]]","[null, null, null]"
-Amateur,99,"[[""Smithing"", 52], [""Leathercraft"", 48]]",Rasetsu Samue,Earth,,"[[""Darksteel Sheet"", 1], [""Rainbow Thread"", 1], [""Raxa"", 2], [""Steel Sheet"", 1], [""Tiger Leather"", 2], [""Velvet Cloth"", 1]]","[[""Rasetsu Samue +1"", 1], null, null]"
-Amateur,99,[],Al Zahbi Sash,Earth,,"[[""Gold Thread"", 1], [""Karakul Thread"", 1], [""Marid Hair"", 2], [""Rainbow Thread"", 1], [""Wamoura Silk"", 1]]","[[""Moon Sash"", 1], null, null]"
-Amateur,99,"[[""Goldsmithing"", 54], [""Leathercraft"", 54]]",Cursed Cuffs,Earth,,"[[""Angelstone"", 2], [""Velvet Cloth"", 1], [""Karakul Leather"", 1], [""Imperial Silk Cloth"", 1], [""Netherspirit Chain"", 1], [""Platinum Silk"", 1]]","[[""Cursed Cuffs -1"", 1], null, null]"
-Amateur,99,[],Revealer's Mitts,Earth,,"[[""Rainbow Thread"", 1], [""Ancestral Cloth"", 2], [""Prickly Pitriv's Thread"", 1], [""Warblade Beak's Hide"", 1]]","[[""Revealer's Mitts +1"", 1], null, null]"
-Amateur,100,[],Cursed Dalmatica,Earth,,"[[""Behemoth Leather"", 1], [""Gold Chain"", 1], [""Gold Thread"", 1], [""Rainbow Cloth"", 1], [""Ram Leather"", 1], [""Siren's Macrame"", 1], [""Velvet Cloth"", 2]]","[[""Cursed Dalmatica -1"", 1], null, null]"
-Amateur,100,[],Blessed Bliaut,Earth,,"[[""Galateia"", 2], [""Gold Thread"", 2], [""Rainbow Cloth"", 1], [""Silver Thread"", 1], [""Velvet Cloth"", 2]]","[[""Blessed Bliaut +1"", 1], null, null]"
-Amateur,100,"[[""Goldsmithing"", 60], [""Leathercraft"", 60]]",Kyudogi,Earth,,"[[""Cerberus Leather"", 1], [""Imperial Silk Cloth"", 1], [""Kejusu Satin"", 1], [""Rainbow Thread"", 1], [""Sailcloth"", 1], [""Scintillant Ingot"", 1], [""Sheep Chammy"", 1], [""Yoichi's Sash"", 1]]","[[""Kyudogi +1"", 1], null, null]"
-Amateur,100,"[[""Alchemy"", 41], [""Leathercraft"", 20]]",Argent Coat,Light,,"[[""Silk Cloth"", 1], [""Silver Thread"", 1], [""Platinum Silk Thread"", 1], [""Galateia"", 1], [""Eltoro Leather"", 1], [""Silver Chain"", 1], [""Baking Soda"", 1]]","[[""Platino Coat"", 1], null, null]"
-Amateur,100,"[[""Goldsmithing"", 60], [""Leathercraft"", 60]]",Ebon Frock,Earth,,"[[""Silver Ingot"", 1], [""Silver Chain"", 1], [""Behemoth Leather"", 1], [""Taffeta Cloth"", 1], [""Scintillant Ingot"", 1], [""Ruszor Leather"", 1], [""Cambric"", 2]]","[null, null, null]"
-Amateur,100,[],Swith Cape,Earth,,"[[""Sparkstrand"", 1], [""Wyrdweave"", 2]]","[[""Swith Cape +1"", 1], null, null]"
-Amateur,100,[],Revealer's Pants,Earth,,"[[""Linen Cloth"", 1], [""Ancestral Cloth"", 2], [""Prickly Pitriv's Thread"", 1], [""Warblade Beak's Hide"", 1]]","[[""Revealer's Pants +1"", 1], null, null]"
-Amateur,100,[],Porxie Fletchings,Wind,,"[[""Porxie Wing"", 2]]","[[""Porxie Fletchings"", 8], [""Porxie Fletchings"", 10], [""Porxie Fletchings"", 12]]"
-Amateur,100,[],Porxie Fletchings,Wind,Fletching,"[[""Porxie Wing"", 6], [""Zephyr Thread"", 1], [""Expert (101-110)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Porxie Fletchings"", 24], [""Porxie Fletchings"", 30], [""Porxie Fletchings"", 36]]"
-Amateur,101,[],Errant Cape,Earth,,"[[""Peace Cape"", 1], [""Rainbow Thread"", 1], [""Raxa"", 1]]","[[""Mahatma Cape"", 1], null, null]"
-Amateur,101,[],Revealer's Tunic,Earth,,"[[""Linen Cloth"", 2], [""Ancestral Cloth"", 3], [""Prickly Pitriv's Thread"", 1], [""Warblade Beak's Hide"", 1]]","[[""Revealer's Tunic +1"", 1], null, null]"
-Amateur,102,[],Chelona Trousers,Earth,,"[[""Wool Thread"", 1], [""Wolf Felt"", 2], [""Imperial Silk Cloth"", 1], [""Platinum Silk Thread"", 1], [""Amphiptere Leather"", 1]]","[[""Chelona Trousers +1"", 1], null, null]"
-Amateur,103,"[[""Leathercraft"", 50]]",Spolia Chapeau,Earth,,"[[""Beeswax"", 1], [""Magical Cotton Cloth"", 1], [""Sheep Chammy"", 1], [""Wyrdweave"", 3]]","[[""Opima Chapeau"", 1], null, null]"
-Amateur,103,"[[""Leathercraft"", 52], [""Goldsmithing"", 30]]",Hexed Cuffs,Earth,,"[[""Red Grass Thread"", 1], [""Lynx Leather"", 1], [""Muculent Ingot"", 1], [""Serica Cloth"", 1]]","[[""Hexed Cuffs -1"", 1], null, null]"
-Amateur,103,"[[""Leathercraft"", 50]]",Spolia Trews,Earth,,"[[""Magical Cotton Cloth"", 2], [""Sheep Chammy"", 1], [""Wyrdstrand"", 1], [""Wyrdweave"", 1]]","[[""Opima Trews"", 1], null, null]"
-Amateur,103,"[[""Leathercraft"", 50]]",Spolia Cuffs,Earth,,"[[""Magical Cotton Cloth"", 1], [""Sheep Chammy"", 1], [""Wyrdweave"", 3]]","[[""Opima Cuffs"", 1], null, null]"
-Amateur,103,[],Chelona Gloves,Earth,,"[[""Silver Ingot"", 1], [""Karakul Cloth"", 2], [""Wamoura Silk"", 1], [""Platinum Silk Thread"", 1], [""Amphiptere Leather"", 1]]","[[""Chelona Gloves +1"", 1], null, null]"
-Amateur,103,[],Haruspex Cuffs,Earth,,"[[""Gold Thread"", 1], [""Silk Cloth"", 1], [""Star Sapphire"", 2], [""Akaso Cloth"", 1], [""Raaz Leather"", 1]]","[[""Haruspex Cuffs +1"", 1], null, null]"
-Amateur,104,[],Chelona Hat,Earth,,"[[""Carnelian"", 1], [""Beetle Blood"", 1], [""Silver Brocade"", 1], [""Wolf Felt"", 1], [""Wamoura Silk"", 1], [""Platinum Silk Thread"", 1], [""Amphiptere Leather"", 1], [""Wyrdstrand"", 1]]","[[""Chelona Hat +1"", 1], null, null]"
-Amateur,105,[],Areion Boots,Earth,,"[[""Serica Cloth"", 1], [""Strider Boots"", 1]]","[[""Areion Boots +1"", 1], null, null]"
-Amateur,105,"[[""Leathercraft"", 50]]",Spolia Saio,Earth,,"[[""Brass Chain"", 1], [""Beeswax"", 1], [""Buffalo Leather"", 1], [""Magical Cotton Cloth"", 1], [""Sheep Chammy"", 1], [""Wyrdstrand"", 1], [""Wyrdweave"", 2]]","[[""Opima Saio"", 1], null, null]"
-Amateur,105,"[[""Goldsmithing"", 49]]",Hexed Bonnet,Earth,,"[[""Velvet Cloth"", 1], [""Malboro Fiber"", 1], [""Muculent Ingot"", 1], [""Penelope's Cloth"", 1]]","[[""Hexed Bonnet -1"", 1], null, null]"
-Amateur,105,[],Sancus Sachet,Earth,,"[[""Siren's Macrame"", 1], [""Sif's Macrame"", 2], [""Vulcanite Ore"", 1], [""Arasy Sachet"", 1]]","[[""Sancus Sachet +1"", 1], null, null]"
-Amateur,105,[],Sif's Macrame,Earth,,"[[""Rainbow Thread"", 2], [""Gold Thread"", 2], [""Siren's Hair"", 1], [""Sif's Lock"", 1]]","[null, null, null]"
-Amateur,105,[],Khoma Cloth,Earth,,"[[""Khoma Thread"", 3]]","[null, null, null]"
-Amateur,106,[],Chelona Blazer,Earth,,"[[""Carnelian"", 1], [""Karakul Skin"", 1], [""Beetle Blood"", 1], [""Silver Brocade"", 1], [""Karakul Cloth"", 1], [""Wamoura Silk"", 1], [""Amphiptere Leather"", 1], [""Wyrdstrand"", 1]]","[[""Chelona Blazer +1"", 1], null, null]"
-Amateur,106,[],Haruspex Hat,Earth,,"[[""Gold Sheet"", 1], [""Silver Thread"", 1], [""Gold Thread"", 1], [""Raxa"", 1], [""Akaso Cloth"", 1], [""Raaz Leather"", 1]]","[[""Haruspex Hat +1"", 1], null, null]"
-Amateur,106,[],Mixed Fletchings,Wind,,"[[""Porxie Wing"", 1], [""Chapuli Wing"", 1]]","[[""Mixed Fletchings"", 8], [""Mixed Fletchings"", 10], [""Mixed Fletchings"", 12]]"
-Amateur,106,[],Mixed Fletchings,Wind,Fletching,"[[""Porxie Wing"", 3], [""Chapuli Wing"", 3], [""Zephyr Thread"", 1]]","[[""Mixed Fletchings"", 24], [""Mixed Fletchings"", 30], [""Mixed Fletchings"", 36]]"
-Amateur,107,"[[""Leathercraft"", 60]]",Hexed Tights,Earth,,"[[""Silver Thread"", 2], [""Red Grass Thread"", 1], [""Shagreen"", 1], [""Ethereal Squama"", 1], [""Serica Cloth"", 1]]","[[""Hexed Tights -1"", 1], null, null]"
-Amateur,107,[],Haruspex Slops,Earth,,"[[""Gold Sheet"", 1], [""Gold Thread"", 1], [""Raxa"", 2], [""Akaso Cloth"", 1], [""Raaz Leather"", 1]]","[[""Haruspex Slops +1"", 1], null, null]"
-Amateur,107,[],Seshaw Cape,Earth,,"[[""Silk Thread"", 1], [""Sif's Macrame"", 1], [""Ancestral Cloth"", 1], [""Cehuetzi Pelt"", 1]]","[[""Seshaw Cape +1"", 1], null, null]"
-Amateur,108,"[[""Leathercraft"", 50], [""Goldsmithing"", 30]]",Hexed Mitra,Earth,,"[[""Gold Thread"", 1], [""Kukulkan's Skin"", 1], [""Muculent Ingot"", 1], [""Serica Cloth"", 1]]","[[""Hexed Mitra -1"", 1], null, null]"
-Amateur,108,[],Khoma Belt,Earth,,"[[""Khoma Thread"", 4]]","[null, null, null]"
-Amateur,109,"[[""Leathercraft"", 60]]",Hexed Kecks,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Malboro Fiber"", 1], [""Taffeta Cloth"", 1], [""Penelope's Cloth"", 1], [""Staghorn Coral"", 1], [""Sealord Leather"", 1]]","[[""Hexed Kecks -1"", 1], null, null]"
-Amateur,109,[],Haruspex Coat,Earth,,"[[""Gold Chain"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Silk Cloth"", 3], [""Akaso Cloth"", 1], [""Raaz Leather"", 1]]","[[""Haruspex Coat +1"", 1], null, null]"
-Amateur,110,"[[""Leathercraft"", 60], [""Goldsmithing"", 30]]",Hexed Bliaut,Earth,,"[[""Silver Thread"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Kukulkan's Skin"", 1], [""Muculent Ingot"", 1], [""Serica Cloth"", 2]]","[[""Hexed Bliaut -1"", 1], null, null]"
-Amateur,110,"[[""Woodworking"", 55]]",Sorcerer's Stole,Light,,"[[""Yggdreant Bole"", 1], [""Dark Matter"", 1], [""Cypress Log"", 1], [""Moldy Stole"", 1]]","[[""Sorcerer's Stole +1"", 1], [""Sorcerer's Stole +2"", 1], null]"
-Amateur,110,"[[""Woodworking"", 55]]",Mirage Stole,Light,,"[[""Yggdreant Bole"", 1], [""Dark Matter"", 1], [""Cypress Log"", 1], [""Moldy Stole"", 1]]","[[""Mirage Stole +1"", 1], [""Mirage Stole +2"", 1], null]"
-Amateur,110,"[[""Woodworking"", 55]]",Argute Stole,Light,,"[[""Yggdreant Bole"", 1], [""Dark Matter"", 1], [""Cypress Log"", 1], [""Moldy Stole"", 1], [""Authority (111-120)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Argute Stole +1"", 1], [""Argute Stole +2"", 1], null]"
-Amateur,111,[],Ogapepo Cape,Earth,,"[[""Silk Thread"", 1], [""Sheep Chammy"", 2], [""Bztavian Wing"", 2]]","[[""Ogapepo Cape +1"", 1], null, null]"
-Amateur,111,[],Cleric's Wand,Light,Weaver's aurum tome,"[[""Dark Matter"", 1], [""Tartarian Chain"", 1], [""Cypress Log"", 1], [""Moldy Club"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Piety Wand"", 1], [""Asclepius"", 1], null]"
-Amateur,111,[],Bagua Wand,Light,Weaver's aurum tome,"[[""Dark Matter"", 1], [""Tartarian Chain"", 1], [""Cypress Log"", 1], [""Moldy Club"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Sifang Wand"", 1], [""Bhima"", 1], null]"
-Amateur,112,"[[""Goldsmithing"", 70]]",Bewitched Mitts,Earth,,"[[""Cursed Mitts"", 1], [""Hepatizon Ingot"", 1], [""Sif's Macrame"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Mitts"", 1], null, null]"
-Amateur,112,"[[""Goldsmithing"", 70]]",Vexed Cuffs,Earth,,"[[""Hexed Cuffs"", 1], [""Bztavian Wing"", 1], [""Hepatizon Ingot"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Cuffs"", 1], null, null]"
-Amateur,113,"[[""Bonecraft"", 60]]",Yetshila,Wind,,"[[""Animal Glue"", 1], [""Waktza Rostrum"", 1], [""Waktza Crest"", 1]]","[[""Yetshila +1"", 1], null, null]"
-Amateur,113,"[[""Goldsmithing"", 70]]",Bewitched Slacks,Earth,,"[[""Cursed Slacks"", 1], [""Hepatizon Ingot"", 1], [""Eschite Ore"", 1], [""Sif's Macrame"", 1]]","[[""Voodoo Slacks"", 1], null, null]"
-Amateur,113,"[[""Alchemy"", 70]]",Vexed Tights,Earth,,"[[""Hexed Tights"", 1], [""Bztavian Wing"", 1], [""Lumber Jill's Spittle"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Tights"", 1], null, null]"
-Amateur,113,"[[""Leathercraft"", 70]]",Vexed Kecks,Earth,,"[[""Hexed Kecks"", 1], [""Waktza Crest"", 1], [""Warblade Beak's Hide"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Kecks"", 1], null, null]"
-Amateur,114,"[[""Leathercraft"", 70]]",Vexed Mitra,Earth,,"[[""Hexed Mitra"", 1], [""Bztavian Wing"", 1], [""Intuila's Hide"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Mitra"", 1], null, null]"
-Amateur,114,"[[""Goldsmithing"", 70]]",Vexed Bonnet,Earth,,"[[""Hexed Bonnet"", 1], [""Waktza Crest"", 1], [""Hepatizon Ingot"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Bonnet"", 1], null, null]"
-Amateur,115,"[[""Goldsmithing"", 70]]",Foppish Tunica,Wind,,"[[""Gold Ingot"", 1], [""Gold Thread"", 1], [""Silk Cloth"", 1], [""Celaeno's Cloth"", 1], [""Penelope's Cloth"", 1], [""Defiant Scarf"", 2]]","[[""Foppish Tunica +1"", 1], null, null]"
-Amateur,115,"[[""Goldsmithing"", 70]]",Bewitched Dalmatica,Earth,,"[[""Cursed Dalmatica"", 1], [""Hepatizon Ingot"", 1], [""Sif's Macrame"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Dalmatica"", 1], null, null]"
-Amateur,115,"[[""Leathercraft"", 70]]",Vexed Bliaut,Earth,,"[[""Hexed Bliaut"", 1], [""Bztavian Wing"", 1], [""Intuila's Hide"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Bliaut"", 1], null, null]"
-Amateur,115,[],Moonbow Belt,Earth,,"[[""Moonbow Steel"", 1], [""Moonbow Cloth"", 1], [""Moonbow Leather"", 1], [""Khoma Belt"", 1]]","[[""Moonbow Belt +1"", 1], null, null]"
-Amateur,115,[],Moonbeam Cape,Earth,,"[[""Moonbow Cloth"", 1], [""Moonlight Coral"", 1], [""S. Faulpie Leather"", 1]]","[[""Moonlight Cape"", 1], null, null]"
-Amateur,115,[],Skrymir Cord,Earth,,"[[""Silver Thread"", 1], [""Gold Thread"", 1], [""Khoma Thread"", 4], [""Wyrm Ash"", 1]]","[[""Skrymir Cord +1"", 1], null, null]"
-Amateur,115,[],Baayami Sabots,Earth,Weaver's argentum tome,"[[""Darksteel Sheet"", 1], [""Waktza Rostrum"", 1], [""Plovid Flesh"", 1], [""Khoma Thread"", 3]]","[[""Baayami Sabots +1"", 1], null, null]"
-Amateur,115,[],Baayami Cuffs,Earth,Weaver's argentum tome,"[[""Darksteel Sheet"", 2], [""Waktza Rostrum"", 1], [""Plovid Flesh"", 1], [""Khoma Thread"", 3]]","[[""Baayami Cuffs +1"", 1], null, null]"
-Amateur,115,[],Baayami Hat,Earth,Weaver's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Waktza Rostrum"", 1], [""Plovid Flesh"", 1], [""Khoma Thread"", 3]]","[[""Baayami Hat +1"", 1], null, null]"
-Amateur,115,[],Baayami Slops,Earth,Weaver's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Waktza Rostrum"", 1], [""Plovid Flesh"", 1], [""Khoma Thread"", 1], [""Khoma Cloth"", 1]]","[[""Baayami Slops +1"", 1], null, null]"
-Amateur,115,[],Baayami Robe,Earth,Weaver's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Waktza Rostrum"", 1], [""Plovid Flesh"", 2], [""Khoma Thread"", 1], [""Khoma Cloth"", 1]]","[[""Baayami Robe +1"", 1], null, null]"
-Amateur,118,[],Klouskap Sash,Earth,,"[[""Cashmere Wool"", 1], [""Defiant Scarf"", 1], [""Penelope's Cloth"", 1]]","[[""Klouskap Sash +1"", 1], null, null]"
+,1,"[[""Leathercraft"", 1], [""Cooking"", 1]]",Love Chocolate,Earth,,"[[""Parchment"", 1], [""Heart Chocolate"", 1], [""Scarlet Ribbon"", 1]]","[[""Truelove Chocolate"", 1], null, null]"
+,2,[],Chocobo Fletchings,Wind,,"[[""Chocobo Feather"", 2]]","[[""Chocobo Fletchings"", 8], [""Chocobo Fletchings"", 10], [""Chocobo Fletchings"", 12]]"
+,2,[],Chocobo Fletchings,Wind,Fletching,"[[""Chocobo Feather"", 6], [""Zephyr Thread"", 1]]","[[""Chocobo Fletchings"", 24], [""Chocobo Fletchings"", 30], [""Chocobo Fletchings"", 36]]"
+,3,[],Grass Thread,Lightning,,"[[""Moko Grass"", 2]]","[null, null, null]"
+,3,[],Grass Thread,Lightning,Spinning,"[[""Moko Grass"", 6], [""Spindle"", 1]]","[null, null, null]"
+,4,[],Grass Cloth,Earth,,"[[""Grass Thread"", 3]]","[null, null, null]"
+,5,[],Headgear,Wind,,"[[""Grass Thread"", 1], [""Grass Cloth"", 2]]","[[""Headgear +1"", 1], null, null]"
+,5,[],Headgear,Wind,,"[[""Clothcraft Kit 5"", 1]]","[null, null, null]"
+,6,[],Gloves,Earth,,"[[""Saruta Cotton"", 2], [""Grass Thread"", 1], [""Grass Cloth"", 2]]","[[""Gloves +1"", 1], null, null]"
+,7,[],Gaiters,Earth,,"[[""Cotton Thread"", 1], [""Grass Cloth"", 3]]","[[""Gaiters +1"", 1], null, null]"
+,8,[],Cape,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 2]]","[[""Cape +1"", 1], null, null]"
+,9,[],Brais,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 2], [""Sheep Leather"", 1]]","[[""Brais +1"", 1], null, null]"
+,10,[],Doublet,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 4], [""Saruta Cotton"", 3]]","[[""Doublet +1"", 1], null, null]"
+,10,[],Vagabond's Hose,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 1], [""Cotton Cloth"", 2]]","[[""Nomad's Hose"", 1], null, null]"
+,10,[],Doublet,Earth,,"[[""Clothcraft Kit 10"", 1]]","[null, null, null]"
+,11,[],Cotton Thread,Lightning,,"[[""Saruta Cotton"", 2]]","[null, null, null]"
+,11,[],Cotton Thread,Lightning,Spinning,"[[""Saruta Cotton"", 6], [""Spindle"", 1]]","[null, null, null]"
+,11,[],Hachimaki,Wind,,"[[""Grass Cloth"", 2]]","[[""Hachimaki +1"", 1], null, null]"
+,12,[],Alluring Cotton Cloth,Earth,Cloth Ensorcellment,"[[""Cotton Thread"", 3], [""Earth Anima"", 1], [""Water Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
+,12,[],Cotton Cloth,Earth,,"[[""Cotton Thread"", 3]]","[null, null, null]"
+,12,[],Cuffs,Earth,,"[[""Flint Stone"", 2], [""Grass Cloth"", 1], [""Cotton Thread"", 1], [""Cotton Cloth"", 1]]","[[""Cuffs +1"", 1], null, null]"
+,12,[],Magical Cotton Cloth,Earth,Cloth Purification,"[[""Cotton Thread"", 3], [""Earth Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
+,12,"[[""Woodworking"", 3]]",Tekko,Earth,,"[[""Lauan Lumber"", 1], [""Grass Thread"", 1], [""Grass Cloth"", 2]]","[[""Tekko +1"", 1], null, null]"
+,13,[],Dart,Wind,,"[[""Bat Fang"", 1], [""Chocobo Feather"", 2], [""Animal Glue"", 1]]","[[""Dart"", 16], [""Dart"", 20], [""Dart"", 24]]"
+,13,[],Mitts,Earth,,"[[""Saruta Cotton"", 1], [""Grass Cloth"", 1], [""Cotton Thread"", 1], [""Cotton Cloth"", 1]]","[[""Mitts +1"", 1], null, null]"
+,14,[],Kyahan,Wind,,"[[""Grass Cloth"", 3], [""Sheep Leather"", 1]]","[[""Kyahan +1"", 1], null, null]"
+,14,[],Slops,Earth,,"[[""Grass Cloth"", 1], [""Cotton Thread"", 1], [""Cotton Cloth"", 2]]","[[""Slops +1"", 1], null, null]"
+,14,[],Vagabond's Tunica,Earth,,"[[""Grass Cloth"", 3], [""Sheep Leather"", 1], [""Cotton Thread"", 1], [""Cotton Cloth"", 1]]","[[""Nomad's Tunica"", 1], null, null]"
+,15,[],Cotton Headgear,Wind,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 2]]","[[""Great Headgear"", 1], null, null]"
+,15,[],Red Grass Thread,Lightning,,"[[""Red Moko Grass"", 2]]","[null, null, null]"
+,15,[],Red Grass Thread,Lightning,Spinning,"[[""Red Moko Grass"", 6], [""Spindle"", 1]]","[null, null, null]"
+,15,[],Slacks,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 3]]","[[""Slacks +1"", 1], null, null]"
+,15,[],Red Grass Thread,Lightning,,"[[""Clothcraft Kit 15"", 1]]","[null, null, null]"
+,16,[],Cotton Gloves,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 2], [""Saruta Cotton"", 2]]","[[""Great Gloves"", 1], null, null]"
+,16,[],Red Grass Cloth,Earth,,"[[""Red Grass Thread"", 3]]","[null, null, null]"
+,16,[],Robe,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 2], [""Cotton Cloth"", 2]]","[[""Robe +1"", 1], null, null]"
+,16,[],Sitabaki,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 2], [""Cotton Cloth"", 1]]","[[""Sitabaki +1"", 1], null, null]"
+,16,[],Windurstian Hachimaki,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 1], [""Mercenary's Hachimaki"", 1]]","[[""Federation Hachimaki"", 1], null, null]"
+,17,[],Cotton Gaiters,Earth,,"[[""Cotton Cloth"", 3], [""Sheep Leather"", 1]]","[[""Great Gaiters"", 1], null, null]"
+,17,[],Tunic,Earth,,"[[""Grass Cloth"", 3], [""Cotton Thread"", 1], [""Cotton Cloth"", 2]]","[[""Tunic +1"", 1], null, null]"
+,17,[],Windurstian Tekko,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 1], [""Mercenary's Tekko"", 1]]","[[""Federation Tekko"", 1], null, null]"
+,18,[],Cotton Cape,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 2]]","[[""Cotton Cape +1"", 1], null, null]"
+,18,[],Kenpogi,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 3]]","[[""Kenpogi +1"", 1], null, null]"
+,18,[],Sturdy Slacks,Earth,Cloth Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Water Cell"", 1], [""Slacks"", 1]]","[null, null, null]"
+,19,[],Cotton Brais,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 2], [""Sheep Leather"", 1]]","[[""Great Brais"", 1], null, null]"
+,19,[],Flaxseed Oil,Water,,"[[""Flax Flower"", 2]]","[[""Flaxseed Oil"", 2], [""Flaxseed Oil"", 3], [""Flaxseed Oil"", 4]]"
+,19,[],Linen Thread,Lightning,,"[[""Flax Flower"", 2]]","[null, null, null]"
+,19,[],Linen Thread,Lightning,Spinning,"[[""Flax Flower"", 6], [""Spindle"", 1]]","[null, null, null]"
+,19,[],Windurstian Kyahan,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 1], [""Mercenary's Kyahan"", 1]]","[[""Federation Kyahan"", 1], null, null]"
+,20,[],Cotton Doublet,Earth,,"[[""Saruta Cotton"", 3], [""Cotton Thread"", 1], [""Cotton Cloth"", 4]]","[[""Great Doublet"", 1], null, null]"
+,20,[],Cotton Headband,Earth,,"[[""Carbon Fiber"", 1], [""Cotton Cloth"", 1]]","[[""Erudite's Headband"", 1], null, null]"
+,20,[],Mana Tunic,Earth,,"[[""Magical Cotton Cloth"", 1], [""Tunic"", 1]]","[null, null, null]"
+,20,[],Windurstian Headgear,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 1], [""Mercenary Captain's Headgear"", 1]]","[[""Federation Headgear"", 1], null, null]"
+,20,[],Cotton Headband,Earth,,"[[""Clothcraft Kit 20"", 1]]","[null, null, null]"
+,21,[],Cotton Hachimaki,Wind,,"[[""Cotton Cloth"", 2]]","[[""Cotton Hachimaki +1"", 1], null, null]"
+,21,[],Taikyoku Kenpogi,Earth,Cloth Ensorcellment,"[[""Lambent Earth Cell"", 1], [""Lambent Wind Cell"", 1], [""Kenpogi"", 1]]","[null, null, null]"
+,21,[],Talisman Cape,Earth,,"[[""Alluring Cotton Cloth"", 1], [""Cotton Cape"", 1]]","[null, null, null]"
+,21,[],Windurstian Gloves,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 1], [""Mercenary Captain's Gloves"", 1]]","[[""Federation Gloves"", 1], null, null]"
+,21,[],Windurstian Sitabaki,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 1], [""Mercenary's Sitabaki"", 1]]","[[""Federation Sitabaki"", 1], null, null]"
+,22,"[[""Woodworking"", 6]]",Cotton Tekko,Earth,,"[[""Lauan Lumber"", 1], [""Grass Thread"", 1], [""Cotton Cloth"", 2]]","[[""Cotton Tekko +1"", 1], null, null]"
+,22,[],Fine Linen Cloth,Earth,Cloth Purification,"[[""Linen Thread"", 3], [""Wind Anima"", 1], [""Earth Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
+,22,[],Linen Cloth,Earth,,"[[""Linen Thread"", 3]]","[null, null, null]"
+,22,[],Magical Linen Cloth,Earth,Cloth Purification,"[[""Linen Thread"", 3], [""Earth Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
+,22,[],San d'Orian Tunic,Earth,,"[[""Royal Footman's Tunic"", 1], [""Grass Cloth"", 1], [""Cotton Thread"", 1]]","[[""Kingdom Tunic"", 1], null, null]"
+,22,"[[""Leathercraft"", 9]]",Trader's Chapeau,Earth,,"[[""Cotton Cloth"", 1], [""Sheep Leather"", 1], [""Beeswax"", 1], [""Red Grass Thread"", 1], [""Red Grass Cloth"", 2]]","[[""Baron's Chapeau"", 1], null, null]"
+,22,[],Windurstian Gaiters,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 1], [""Mercenary Captain's Gaiters"", 1]]","[[""Federation Gaiters"", 1], null, null]"
+,22,[],Yagudo Fletchings,Wind,,"[[""Yagudo Feather"", 2]]","[[""Yagudo Fletchings"", 8], [""Yagudo Fletchings"", 10], [""Yagudo Fletchings"", 12]]"
+,22,[],Yagudo Fletchings,Wind,Fletching,"[[""Yagudo Feather"", 6], [""Zephyr Thread"", 1]]","[[""Yagudo Fletchings"", 24], [""Yagudo Fletchings"", 30], [""Yagudo Fletchings"", 36]]"
+,23,[],Fisherman's Hose,Earth,,"[[""Linen Cloth"", 2], [""Cotton Thread"", 1], [""Cotton Cloth"", 1]]","[[""Angler's Hose"", 1], null, null]"
+,23,"[[""Goldsmithing"", 9]]",Linen Cuffs,Earth,,"[[""Sardonyx"", 2], [""Linen Thread"", 1], [""Linen Cloth"", 1], [""Cotton Cloth"", 1]]","[[""Linen Cuffs +1"", 1], null, null]"
+,23,[],Moblinweave,Earth,,"[[""Moblin Thread"", 3]]","[null, null, null]"
+,23,"[[""Leathercraft"", 9]]",Trader's Cuffs,Earth,,"[[""Cotton Cloth"", 1], [""Sheep Leather"", 2], [""Red Grass Thread"", 1], [""Red Grass Cloth"", 1]]","[[""Baron's Cuffs"", 1], null, null]"
+,23,[],Windurstian Gi,Earth,,"[[""Grass Thread"", 1], [""Grass Cloth"", 1], [""Mercenary's Gi"", 1]]","[[""Federation Gi"", 1], null, null]"
+,24,[],Cotton Kyahan,Wind,,"[[""Linen Thread"", 1], [""Cotton Cloth"", 3]]","[[""Cotton Kyahan +1"", 1], null, null]"
+,24,"[[""Leathercraft"", 20]]",Noct Beret,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 1], [""Chocobo Feather"", 2], [""Sheep Leather"", 1]]","[[""Noct Beret +1"", 1], null, null]"
+,24,[],Red Cap,Earth,,"[[""Chocobo Feather"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 2]]","[[""Red Cap +1"", 1], null, null]"
+,24,"[[""Leathercraft"", 20]]",Seer's Mitts,Earth,,"[[""Wool Thread"", 1], [""Cotton Cloth"", 2], [""Saruta Cotton"", 1], [""Sheep Leather"", 1]]","[[""Seer's Mitts +1"", 1], null, null]"
+,24,"[[""Leathercraft"", 9]]",Trader's Slops,Earth,,"[[""Cotton Cloth"", 2], [""Sheep Leather"", 1], [""Red Grass Thread"", 1], [""Red Grass Cloth"", 1]]","[[""Baron's Slops"", 1], null, null]"
+,24,[],Windurstian Brais,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 1], [""Mercenary Captain's Hose"", 1]]","[[""Federation Brais"", 1], null, null]"
+,25,[],Blissful Chapeau,Earth,Cloth Purification,"[[""Lambent Water Cell"", 1], [""Lambent Earth Cell"", 1], [""Trader's Chapeau"", 1]]","[null, null, null]"
+,25,[],Bracers,Earth,,"[[""Saruta Cotton"", 2], [""Linen Thread"", 1], [""Linen Cloth"", 2]]","[[""Bracers +1"", 1], null, null]"
+,25,[],Linen Slops,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 2], [""Cotton Cloth"", 1]]","[[""Linen Slops +1"", 1], null, null]"
+,25,"[[""Leathercraft"", 20]]",Noct Gloves,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 2], [""Saruta Cotton"", 2], [""Sheep Leather"", 1]]","[[""Noct Gloves +1"", 1], null, null]"
+,25,"[[""Leathercraft"", 20]]",Seer's Slacks,Earth,,"[[""Wool Thread"", 1], [""Cotton Cloth"", 2], [""Linen Cloth"", 1], [""Sheep Leather"", 1]]","[[""Seer's Slacks +1"", 1], null, null]"
+,25,"[[""Leathercraft"", 9]]",Trader's Saio,Earth,,"[[""Brass Chain"", 1], [""Cotton Cloth"", 1], [""Sheep Leather"", 1], [""Ram Leather"", 1], [""Beeswax"", 1], [""Red Grass Thread"", 1], [""Red Grass Cloth"", 2]]","[[""Baron's Saio"", 1], null, null]"
+,25,[],Windurstian Doublet,Earth,,"[[""Cotton Thread"", 1], [""Cotton Cloth"", 1], [""Mercenary Captain's Doublet"", 1]]","[[""Federation Doublet"", 1], null, null]"
+,25,[],Bracers,Earth,,"[[""Clothcraft Kit 25"", 1]]","[null, null, null]"
+,26,[],Cotton Sitabaki,Earth,,"[[""Linen Cloth"", 1], [""Grass Thread"", 1], [""Cotton Cloth"", 2]]","[[""Cotton Sitabaki +1"", 1], null, null]"
+,26,"[[""Leathercraft"", 20]]",Noct Doublet,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 3], [""Saruta Cotton"", 3], [""Sheep Leather"", 1]]","[[""Noct Doublet +1"", 1], null, null]"
+,26,"[[""Leathercraft"", 20]]",Seer's Tunic,Earth,,"[[""Wool Thread"", 1], [""Cotton Cloth"", 3], [""Linen Cloth"", 2], [""Sheep Leather"", 1]]","[[""Seer's Tunic +1"", 1], null, null]"
+,26,[],Socks,Earth,,"[[""Dhalmel Leather"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 3]]","[[""Socks +1"", 1], null, null]"
+,27,[],Heko Obi,Earth,,"[[""Grass Thread"", 1], [""Cotton Cloth"", 2]]","[[""Heko Obi +1"", 1], null, null]"
+,27,[],Linen Robe,Earth,,"[[""Linen Cloth"", 2], [""Cotton Thread"", 1], [""Cotton Cloth"", 2]]","[[""Linen Robe +1"", 1], null, null]"
+,27,"[[""Leathercraft"", 20]]",Noct Gaiters,Earth,,"[[""Linen Cloth"", 3], [""Sheep Leather"", 2]]","[[""Noct Gaiters +1"", 1], null, null]"
+,28,[],Cotton Dogi,Earth,,"[[""Grass Thread"", 1], [""Cotton Cloth"", 3]]","[[""Cotton Dogi +1"", 1], null, null]"
+,28,[],Hose,Earth,,"[[""Dhalmel Leather"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 2]]","[[""Hose +1"", 1], null, null]"
+,28,[],Chocobo Taping,Wind,,"[[""Cotton Cloth"", 1], [""Linen Cloth"", 3]]","[[""Chocobo Taping"", 6], [""Chocobo Taping"", 9], [""Chocobo Taping"", 12]]"
+,29,"[[""Goldsmithing"", 13]]",Gambison,Earth,,"[[""Saruta Cotton"", 2], [""Brass Scales"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 4]]","[[""Gambison +1"", 1], null, null]"
+,29,"[[""Smithing"", 15]]",Kaginawa,Earth,,"[[""Bronze Ingot"", 1], [""Grass Thread"", 1], [""Manticore Hair"", 1]]","[[""Kaginawa"", 66], [""Kaginawa"", 99], null]"
+,30,[],Fisherman's Tunica,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 1], [""Sheep Leather"", 1], [""Cotton Cloth"", 3]]","[[""Angler's Tunica"", 1], null, null]"
+,30,"[[""Bonecraft"", 8]]",Fly Lure,Earth,,"[[""Chocobo Feather"", 1], [""Bat Fang"", 1], [""Animal Glue"", 1]]","[null, null, null]"
+,30,[],Talisman Obi,Earth,,"[[""Alluring Cotton Cloth"", 1], [""Heko Obi"", 1]]","[null, null, null]"
+,30,[],Windurstian Slops,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 1], [""Freesword's Slops"", 1]]","[[""Federation Slops"", 1], null, null]"
+,30,[],Fisherman's Tunica,Earth,,"[[""Clothcraft Kit 30"", 1]]","[null, null, null]"
+,31,[],Linen Mitts,Earth,,"[[""Saruta Cotton"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 1], [""Cotton Cloth"", 1]]","[[""Linen Mitts +1"", 1], null, null]"
+,31,[],Soil Hachimaki,Wind,,"[[""Linen Cloth"", 2]]","[[""Soil Hachimaki +1"", 1], null, null]"
+,32,[],Linen Slacks,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 3]]","[[""Linen Slacks +1"", 1], null, null]"
+,32,"[[""Woodworking"", 7]]",Soil Tekko,Earth,,"[[""Lauan Lumber"", 1], [""Linen Cloth"", 2], [""Grass Thread"", 1]]","[[""Soil Tekko +1"", 1], null, null]"
+,32,[],Combat Mittens,Earth,,"[[""Ephemeral Cloth"", 1], [""Linen Cloth"", 1], [""Linen Thread"", 1], [""Saruta Cotton"", 1]]","[[""Combat Mittens +1"", 1], null, null]"
+,33,"[[""Bonecraft"", 14]]",Aht Urhgan Dart,Wind,,"[[""Animal Glue"", 1], [""Colibri Feather"", 2], [""Colibri Beak"", 1]]","[[""Aht Urhgan Dart"", 16], [""Aht Urhgan Dart"", 20], [""Aht Urhgan Dart"", 24]]"
+,33,[],Cloak,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 2], [""Cotton Cloth"", 3]]","[[""Cloak +1"", 1], null, null]"
+,34,"[[""Leathercraft"", 20]]",Garish Mitts,Earth,,"[[""Cotton Cloth"", 1], [""Saruta Cotton"", 1], [""Sheep Leather"", 1], [""Scarlet Linen"", 1], [""Bloodthread"", 1]]","[[""Rubious Mitts"", 1], null, null]"
+,34,[],Shinobi-Tabi,Earth,,"[[""Saruta Cotton"", 1], [""Grass Thread"", 1], [""Cotton Cloth"", 2]]","[[""Shinobi-Tabi"", 66], [""Shinobi-Tabi"", 99], [""Shinobi-Tabi"", 99]]"
+,34,[],Soil Kyahan,Wind,,"[[""Linen Cloth"", 3], [""Cotton Thread"", 1]]","[[""Soil Kyahan +1"", 1], null, null]"
+,35,"[[""Leathercraft"", 21]]",Garish Slacks,Earth,,"[[""Linen Cloth"", 1], [""Velvet Cloth"", 2], [""Sheep Leather"", 1], [""Bloodthread"", 1]]","[[""Rubious Slacks"", 1], null, null]"
+,35,"[[""Goldsmithing"", 9]]",Hawkeye,Wind,,"[[""Silver Ingot"", 1], [""Animal Glue"", 1], [""Yagudo Feather"", 2]]","[[""Hawkeye"", 12], [""Hawkeye"", 16], [""Hawkeye"", 20]]"
+,35,[],Wool Thread,Lightning,,"[[""Sheep Wool"", 2]]","[null, null, null]"
+,35,[],Wool Thread,Lightning,Spinning,"[[""Sheep Wool"", 6], [""Spindle"", 1]]","[null, null, null]"
+,35,[],Wool Thread,Lightning,,"[[""Clothcraft Kit 35"", 1]]","[null, null, null]"
+,36,[],Combat Caster's Mitts +1,Earth,,"[[""Combat Caster's Mitts"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 1]]","[[""Combat Caster's Mitts +2"", 1], null, null]"
+,36,"[[""Leathercraft"", 20]]",Garish Tunic,Earth,,"[[""Velvet Cloth"", 2], [""Sheep Leather"", 1], [""Scarlet Linen"", 3], [""Bloodthread"", 1]]","[[""Rubious Tunic"", 1], null, null]"
+,36,[],Mana Cloak,Earth,,"[[""Magical Linen Cloth"", 1], [""Cloak"", 1]]","[null, null, null]"
+,36,[],Soil Sitabaki,Earth,,"[[""Linen Cloth"", 2], [""Grass Thread"", 1], [""Wool Cloth"", 1]]","[[""Soil Sitabaki +1"", 1], null, null]"
+,36,[],Combat Caster's Slacks +1,Earth,,"[[""Combat Caster's Slacks"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 1]]","[[""Combat Caster's Slacks +2"", 1], null, null]"
+,37,[],Incombustible Wool,Earth,Cloth Ensorcellment,"[[""Wool Thread"", 3], [""Fire Anima"", 1], [""Ice Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
+,37,[],Mist Mitts,Earth,,"[[""Smooth Velvet"", 1], [""Garish Mitts"", 1]]","[null, null, null]"
+,37,[],Wool Cloth,Earth,,"[[""Wool Thread"", 3]]","[null, null, null]"
+,38,[],Combat Caster's Cloak +1,Earth,,"[[""Combat Caster's Cloak"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 1]]","[[""Combat Caster's Cloak +2"", 1], null, null]"
+,38,[],Feather Collar,Earth,,"[[""Bird Feather"", 7], [""Wool Cloth"", 1]]","[[""Feather Collar +1"", 1], null, null]"
+,38,[],Mist Slacks,Earth,,"[[""Smooth Velvet"", 1], [""Garish Slacks"", 1]]","[null, null, null]"
+,38,[],Soil Gi,Earth,,"[[""Linen Cloth"", 3], [""Grass Thread"", 1]]","[[""Soil Gi +1"", 1], null, null]"
+,38,[],Buffoon's Collar,Earth,,"[[""Colibri Feather"", 7], [""Karakul Cloth"", 1]]","[[""Buffoon's Collar +1"", 1], null, null]"
+,39,[],Flax Headband,Earth,,"[[""Carbon Fiber"", 1], [""Linen Cloth"", 1]]","[[""Alluring Headband"", 1], null, null]"
+,39,[],Mist Tunic,Earth,,"[[""Smooth Velvet"", 1], [""Garish Tunic"", 1]]","[null, null, null]"
+,39,[],Mohbwa Sash,Earth,,"[[""Red Grass Thread"", 1], [""Red Grass Cloth"", 1], [""Mohbwa Cloth"", 1]]","[[""Mohbwa Sash +1"", 1], null, null]"
+,40,"[[""Goldsmithing"", 8]]",Wool Hat,Earth,,"[[""Brass Sheet"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 1], [""Wool Cloth"", 2]]","[[""Wool Hat +1"", 1], null, null]"
+,40,[],Shadow Roll,Earth,,"[[""Wool Thread"", 2], [""Wool Cloth"", 1], [""Sheep Leather"", 1]]","[null, null, null]"
+,40,[],Pet Poultice,Earth,,"[[""Cotton Cloth"", 1], [""Linen Cloth"", 1], [""Flaxseed Oil"", 1], [""Lycopodium Flower"", 1], [""Holy Water"", 1]]","[[""Pet Poultice x 66"", 1], [""Pet Poultice x 99"", 1], [""Pet Poultice x 99"", 1]]"
+,40,[],Shadow Roll,Earth,,"[[""Clothcraft Kit 40"", 1]]","[null, null, null]"
+,41,[],Mohbwa Thread,Lightning,,"[[""Mohbwa Grass"", 2]]","[null, null, null]"
+,41,[],Mohbwa Thread,Lightning,Spinning,"[[""Mohbwa Grass"", 6], [""Spindle"", 1]]","[null, null, null]"
+,41,[],Regen Collar,Earth,Cloth Purification,"[[""Lambent Earth Cell"", 1], [""Lambent Water Cell"", 1], [""Feather Collar"", 1]]","[null, null, null]"
+,41,"[[""Goldsmithing"", 9]]",Wool Cuffs,Earth,,"[[""Tourmaline"", 2], [""Linen Cloth"", 1], [""Wool Thread"", 1], [""Wool Cloth"", 1]]","[[""Wool Cuffs +1"", 1], null, null]"
+,41,[],Sanjaku-Tenugui,Earth,,"[[""Cotton Thread"", 2], [""Cotton Cloth"", 2]]","[[""Sanjaku-Tenugui"", 66], [""Sanjaku-Tenugui"", 99], [""Sanjaku-Tenugui"", 99]]"
+,42,[],Bird Fletchings,Wind,,"[[""Bird Feather"", 2]]","[[""Bird Fletchings"", 8], [""Bird Fletchings"", 10], [""Bird Fletchings"", 12]]"
+,42,[],Bird Fletchings,Wind,Fletching,"[[""Bird Feather"", 6], [""Zephyr Thread"", 1]]","[[""Bird Fletchings"", 24], [""Bird Fletchings"", 30], [""Bird Fletchings"", 36]]"
+,42,[],Mohbwa Cloth,Earth,,"[[""Mohbwa Thread"", 3]]","[null, null, null]"
+,42,"[[""Goldsmithing"", 9]]",Wool Slops,Earth,,"[[""Brass Sheet"", 1], [""Linen Cloth"", 1], [""Wool Thread"", 1], [""Wool Cloth"", 2]]","[[""Wool Slops +1"", 1], null, null]"
+,43,[],Hemp Gorget,Earth,,"[[""Grass Thread"", 8]]","[[""Hemp Gorget +1"", 1], null, null]"
+,43,"[[""Goldsmithing"", 12]]",Wool Robe,Earth,,"[[""Brass Scales"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 2], [""Wool Cloth"", 2]]","[[""Wool Robe +1"", 1], null, null]"
+,44,[],Lilac Corsage,Wind,,"[[""Silk Cloth"", 1], [""Spider Web"", 1], [""Lilac"", 1], [""Twinthread"", 1]]","[[""Gala Corsage"", 1], null, null]"
+,44,"[[""Goldsmithing"", 11]]",Wing Earring,Earth,,"[[""Insect Wing"", 2], [""Silver Ingot"", 1]]","[[""Drone Earring"", 1], null, null]"
+,45,[],Humidified Velvet,Earth,Cloth Ensorcellment,"[[""Silk Thread"", 1], [""Wool Thread"", 2], [""Earth Anima"", 1], [""Water Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
+,45,[],Smooth Velvet,Earth,Cloth Purification,"[[""Silk Thread"", 1], [""Wool Thread"", 2], [""Wind Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
+,45,[],Velvet Cloth,Earth,,"[[""Silk Thread"", 1], [""Wool Thread"", 2]]","[null, null, null]"
+,45,[],Wool Cap,Earth,,"[[""Wool Thread"", 1], [""Wool Cloth"", 2], [""Chocobo Feather"", 1]]","[[""Wool Cap +1"", 1], null, null]"
+,45,[],Wool Cap,Earth,,"[[""Clothcraft Kit 45"", 1]]","[null, null, null]"
+,46,[],Blink Band,Earth,,"[[""Flax Headband"", 1], [""Fine Linen Cloth"", 1]]","[null, null, null]"
+,46,[],Wool Bracers,Earth,,"[[""Wool Thread"", 1], [""Wool Cloth"", 2], [""Saruta Cotton"", 2]]","[[""Wool Bracers +1"", 1], null, null]"
+,47,"[[""Goldsmithing"", 12]]",Silver Thread,Earth,,"[[""Silver Ingot"", 1], [""Silk Thread"", 1]]","[[""Silver Thread"", 4], [""Silver Thread"", 6], [""Silver Thread"", 8]]"
+,47,"[[""Goldsmithing"", 12]]",Silver Thread,Earth,Spinning,"[[""Silver Ingot"", 3], [""Silk Thread"", 3], [""Spindle"", 1]]","[[""Silver Thread"", 8], [""Silver Thread"", 12], [""Silver Thread"", 12]]"
+,47,[],Blue Tarutaru Desk,Water,,"[[""Tarutaru Desk"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
+,47,[],Green Tarutaru Desk,Water,,"[[""Tarutaru Desk"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
+,47,[],Yellow Tarutaru Desk,Water,,"[[""Tarutaru Desk"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
+,47,[],White Tarutaru Desk,Water,,"[[""Tarutaru Desk"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
+,48,[],Wool Socks,Earth,,"[[""Wool Thread"", 1], [""Wool Cloth"", 3], [""Ram Leather"", 1]]","[[""Wool Socks +1"", 1], null, null]"
+,49,[],Fire Bracers,Earth,,"[[""Incombustible Wool"", 1], [""Wool Bracers"", 1]]","[null, null, null]"
+,49,[],Wool Hose,Earth,,"[[""Wool Thread"", 1], [""Wool Cloth"", 2], [""Ram Leather"", 1]]","[[""Wool Hose +1"", 1], null, null]"
+,49,[],Junkenshi Habaki,Wind,,"[[""Rainbow Thread"", 1], [""Cotton Cloth"", 3], [""Manta Leather"", 1]]","[[""Seikenshi Habaki"", 1], null, null]"
+,50,[],Chocobo Hose,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 1], [""Sheep Leather"", 1], [""Wool Cloth"", 1]]","[[""Rider's Hose"", 1], null, null]"
+,50,[],Royal Squire's Robe +1,Earth,,"[[""Royal Squire's Robe"", 1], [""Silver Thread"", 1], [""Wool Cloth"", 1]]","[[""Royal Squire's Robe +2"", 1], null, null]"
+,50,"[[""Goldsmithing"", 13]]",Wool Gambison,Earth,,"[[""Brass Scales"", 1], [""Wool Thread"", 1], [""Saruta Cotton"", 2], [""Wool Cloth"", 4]]","[[""Wool Gambison +1"", 1], null, null]"
+,50,[],Velvet Cloth,Earth,,"[[""Silk Thread"", 1], [""Cotton Thread"", 2]]","[null, null, null]"
+,50,[],Smooth Velvet,Earth,Cloth Purification,"[[""Silk Thread"", 1], [""Cotton Thread"", 2], [""Wind Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
+,50,[],Velvet Cloth,Earth,,"[[""Clothcraft Kit 50"", 1]]","[null, null, null]"
+,51,[],Silk Thread,Lightning,,"[[""Crawler Cocoon"", 2]]","[null, null, null]"
+,51,[],Silk Thread,Lightning,Spinning,"[[""Crawler Cocoon"", 6], [""Spindle"", 1]]","[null, null, null]"
+,51,[],Silver Obi,Earth,,"[[""Silver Thread"", 3]]","[[""Silver Obi +1"", 1], null, null]"
+,51,[],Humidified Velvet,Earth,Cloth Ensorcellment,"[[""Silk Thread"", 1], [""Cotton Thread"", 2], [""Earth Anima"", 1], [""Water Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
+,52,[],Black Slacks,Earth,,"[[""Velvet Cloth"", 1], [""Linen Cloth"", 2], [""Silver Thread"", 1]]","[[""Mage's Slacks"", 1], null, null]"
+,52,[],Blaze Hose,Earth,,"[[""Incombustible Wool"", 1], [""Wool Hose"", 1]]","[null, null, null]"
+,52,[],Insect Fletchings,Wind,,"[[""Insect Wing"", 2]]","[[""Insect Fletchings"", 8], [""Insect Fletchings"", 10], [""Insect Fletchings"", 12]]"
+,52,[],Insect Fletchings,Wind,Fletching,"[[""Insect Wing"", 6], [""Zephyr Thread"", 1]]","[[""Insect Fletchings"", 24], [""Insect Fletchings"", 30], [""Insect Fletchings"", 36]]"
+,52,[],Scarlet Ribbon,Wind,,"[[""Velvet Cloth"", 1]]","[[""Noble's Ribbon"", 1], null, null]"
+,53,[],Black Tunic,Earth,,"[[""Velvet Cloth"", 2], [""Linen Cloth"", 3], [""Silver Thread"", 1]]","[[""Mage's Tunic"", 1], null, null]"
+,53,[],Magical Silk Cloth,Earth,Cloth Purification,"[[""Silk Thread"", 3], [""Earth Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
+,53,[],Silk Cloth,Earth,,"[[""Silk Thread"", 3]]","[null, null, null]"
+,53,"[[""Bonecraft"", 47]]",Peiste Dart,Earth,,"[[""Gnat Wing"", 2], [""Animal Glue"", 1], [""Peiste Stinger"", 1]]","[[""Peiste Dart"", 12], [""Peiste Dart"", 16], [""Peiste Dart"", 20]]"
+,54,[],Black Cape,Earth,,"[[""Velvet Cloth"", 2], [""Silver Thread"", 1]]","[[""Black Cape +1"", 1], null, null]"
+,54,[],Scarlet Linen,Earth,,"[[""Bloodthread"", 1], [""Linen Thread"", 2]]","[null, null, null]"
+,54,"[[""Goldsmithing"", 32]]",Pennon Earring,Earth,,"[[""Electrum Ingot"", 1], [""Gnat Wing"", 2]]","[[""Pennon Earring +1"", 1], null, null]"
+,54,[],Kyoshu Sitabaki,Earth,,"[[""Lineadach"", 1], [""Cotton Cloth"", 2], [""Grass Thread"", 1]]","[[""Kyoshu Sitabaki +1"", 1], null, null]"
+,55,[],Iron Musketeer's Gambison +1,Earth,,"[[""Iron Musketeer's Gambison"", 1], [""Wool Thread"", 1], [""Wool Cloth"", 1]]","[[""Iron Musketeer's Gambison +2"", 1], null, null]"
+,55,[],Karakul Thread,Lightning,,"[[""Karakul Wool"", 2]]","[null, null, null]"
+,55,[],Karakul Thread,Lightning,Spinning,"[[""Karakul Wool"", 6], [""Spindle"", 1]]","[null, null, null]"
+,55,[],Mohbwa Scarf,Earth,,"[[""Linen Cloth"", 1], [""Mohbwa Cloth"", 1], [""Mohbwa Thread"", 1]]","[[""Mohbwa Scarf +1"", 1], null, null]"
+,55,"[[""Goldsmithing"", 8]]",Velvet Hat,Earth,,"[[""Velvet Cloth"", 2], [""Brass Sheet"", 1], [""Silk Thread"", 1], [""Wool Cloth"", 1]]","[[""Mage's Hat"", 1], null, null]"
+,55,[],Mohbwa Scarf,Earth,,"[[""Clothcraft Kit 55"", 1]]","[null, null, null]"
+,56,[],Twinthread,Lightning,,"[[""Twincoon"", 2]]","[[""Twinthread"", 2], [""Twinthread"", 3], [""Twinthread"", 4]]"
+,56,[],Chocobo Hood,Earth,,"[[""Linen Cloth"", 1], [""Silk Thread"", 1], [""Velvet Cloth"", 2]]","[null, null, null]"
+,57,[],Karakul Cloth,Earth,,"[[""Karakul Thread"", 3]]","[null, null, null]"
+,57,"[[""Goldsmithing"", 9]]",Velvet Slops,Earth,,"[[""Velvet Cloth"", 2], [""Brass Sheet"", 1], [""Silver Thread"", 1], [""Wool Cloth"", 1]]","[[""Mage's Slops"", 1], null, null]"
+,58,"[[""Goldsmithing"", 41]]",Gold Thread,Earth,,"[[""Gold Ingot"", 1], [""Silk Thread"", 1]]","[[""Gold Thread"", 4], [""Gold Thread"", 6], [""Gold Thread"", 8]]"
+,58,"[[""Goldsmithing"", 41]]",Gold Thread,Earth,Spinning,"[[""Gold Ingot"", 3], [""Silk Thread"", 3], [""Spindle"", 1]]","[[""Gold Thread"", 8], [""Gold Thread"", 12], [""Gold Thread"", 12]]"
+,58,[],Linen Doublet,Earth,,"[[""Saruta Cotton"", 3], [""Linen Thread"", 1], [""Linen Cloth"", 4]]","[[""Linen Doublet +1"", 1], null, null]"
+,58,"[[""Goldsmithing"", 41]]",Shiny Gold Thread,Earth,Cloth Purification,"[[""Gold Ingot"", 1], [""Silk Thread"", 1], [""Light Anima"", 3]]","[[""Shiny Gold Thread"", 4], [""Shiny Gold Thread"", 6], [""Shiny Gold Thread"", 8]]"
+,58,"[[""Goldsmithing"", 41]]",Brilliant Gold Thread,Earth,Cloth Purification,"[[""Gold Ingot"", 1], [""Silk Thread"", 1], [""Water Anima"", 2], [""Light Anima"", 1]]","[[""Brilliant Gold Thread"", 4], [""Brilliant Gold Thread"", 6], [""Brilliant Gold Thread"", 8]]"
+,58,"[[""Goldsmithing"", 41]]",Dull Gold Thread,Earth,Cloth Purification,"[[""Gold Ingot"", 1], [""Silk Thread"", 1], [""Ice Anima"", 2], [""Light Anima"", 1]]","[[""Dull Gold Thread"", 4], [""Dull Gold Thread"", 6], [""Dull Gold Thread"", 8]]"
+,58,[],Twinthread Obi,Earth,,"[[""Twinthread"", 3]]","[[""Twinthread Obi +1"", 1], null, null]"
+,58,"[[""Goldsmithing"", 15]]",Velvet Cuffs,Earth,,"[[""Velvet Cloth"", 1], [""Peridot"", 2], [""Silver Thread"", 1], [""Wool Cloth"", 1]]","[[""Mage's Cuffs"", 1], null, null]"
+,58,"[[""Goldsmithing"", 9]]",Velvet Robe,Earth,,"[[""Velvet Cloth"", 2], [""Brass Scales"", 1], [""Silver Thread"", 1], [""Wool Cloth"", 2]]","[[""Mage's Robe"", 1], null, null]"
+,58,"[[""Goldsmithing"", 9]]",Salutary Robe,Earth,,"[[""Mandragora Scale"", 1], [""Velvet Cloth"", 2], [""Wool Cloth"", 2], [""Silver Thread"", 1]]","[[""Salutary Robe +1"", 1], null, null]"
+,59,[],Imperial Silk Cloth,Earth,,"[[""Silk Thread"", 1], [""Gold Thread"", 1], [""Wamoura Silk"", 1]]","[null, null, null]"
+,59,[],Qiqirn Sash,Earth,,"[[""Scarlet Linen"", 1], [""Red Grass Thread"", 1], [""Karakul Cloth"", 1]]","[[""Qiqirn Sash +1"", 1], null, null]"
+,59,[],Red Cape,Earth,,"[[""Velvet Cloth"", 2], [""Gold Thread"", 1]]","[[""Red Cape +1"", 1], null, null]"
+,60,[],Black Mitts,Earth,,"[[""Saruta Cotton"", 1], [""Velvet Cloth"", 1], [""Linen Cloth"", 1], [""Silver Thread"", 1]]","[[""Mage's Mitts"", 1], null, null]"
+,60,[],Field Hose,Earth,,"[[""Linen Cloth"", 1], [""Wool Thread"", 1], [""Wool Cloth"", 2]]","[[""Worker Hose"", 1], null, null]"
+,60,"[[""Alchemy"", 7]]",Blue Tarutaru Standing Screen,Water,,"[[""Tarutaru Folding Screen"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
+,60,"[[""Alchemy"", 7]]",Green Tarutaru Standing Screen,Water,,"[[""Tarutaru Folding Screen"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
+,60,"[[""Alchemy"", 7]]",Yellow Tarutaru Standing Screen,Water,,"[[""Tarutaru Folding Screen"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
+,60,"[[""Alchemy"", 7]]",White Tarutaru Standing Screen,Water,,"[[""Tarutaru Folding Screen"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
+,60,[],Black Mitts,Earth,,"[[""Clothcraft Kit 60"", 1]]","[null, null, null]"
+,61,"[[""Goldsmithing"", 15]]",Velvet Cuffs,Earth,,"[[""Velvet Cloth"", 1], [""Tourmaline"", 2], [""Silver Thread"", 1], [""Wool Cloth"", 1]]","[[""Mage's Cuffs"", 1], null, null]"
+,61,[],White Slacks,Earth,,"[[""Velvet Cloth"", 2], [""Gold Thread"", 1], [""Silk Cloth"", 1]]","[[""White Slacks +1"", 1], null, null]"
+,61,"[[""Smithing"", 35], [""Leathercraft"", 34]]",Jaridah Salvars,Earth,,"[[""Steel Sheet"", 1], [""Karakul Leather"", 1], [""Marid Hair"", 1], [""Karakul Cloth"", 2]]","[[""Akinji Salvars"", 1], null, null]"
+,62,"[[""Leathercraft"", 20]]",Crow Bracers,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 2], [""Saruta Cotton"", 2], [""Sheep Leather"", 1]]","[[""Raven Bracers"", 1], null, null]"
+,62,[],Gnat Fletchings,Wind,,"[[""Gnat Wing"", 2]]","[[""Gnat Fletchings"", 8], [""Gnat Fletchings"", 10], [""Gnat Fletchings"", 12]]"
+,62,[],Gnat Fletchings,Wind,Fletching,"[[""Gnat Wing"", 6], [""Zephyr Thread"", 1]]","[[""Gnat Fletchings"", 24], [""Gnat Fletchings"", 30], [""Gnat Fletchings"", 36]]"
+,62,[],Green Ribbon,Wind,,"[[""Silk Cloth"", 1]]","[[""Green Ribbon +1"", 1], null, null]"
+,63,[],Hunter's Cotton,Earth,,"[[""Cotton Thread"", 3], [""Carapace Powder"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,63,[],Water Mitts,Earth,,"[[""Humidified Velvet"", 1], [""Black Mitts"", 1]]","[null, null, null]"
+,63,[],White Cloak,Earth,,"[[""Velvet Cloth"", 3], [""Gold Thread"", 1], [""Silk Cloth"", 2]]","[[""White Cloak +1"", 1], null, null]"
+,63,[],Junrenshi Habaki,Wind,,"[[""Rainbow Thread"", 1], [""Linen Cloth"", 3], [""Manta Leather"", 1]]","[[""Seirenshi Habaki"", 1], null, null]"
+,64,[],White Cape,Earth,,"[[""Silk Cloth"", 2], [""Wool Thread"", 1]]","[[""White Cape +1"", 1], null, null]"
+,64,[],White Mitts,Earth,,"[[""Saruta Cotton"", 1], [""Velvet Cloth"", 1], [""Gold Thread"", 1], [""Silk Cloth"", 1]]","[[""White Mitts +1"", 1], null, null]"
+,64,"[[""Alchemy"", 7]]",Carmine Desk,Water,,"[[""Desk"", 1], [""Red Textile Dye"", 1]]","[null, null, null]"
+,64,"[[""Alchemy"", 7]]",Cerulean Desk,Water,,"[[""Desk"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
+,64,"[[""Alchemy"", 7]]",Myrtle Desk,Water,,"[[""Desk"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
+,64,"[[""Alchemy"", 7]]",Ecru Desk,Water,,"[[""Desk"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
+,64,"[[""Leathercraft"", 19]]",Menetrier's Alb,Earth,,"[[""Cotton Cloth"", 1], [""Sheep Leather"", 1], [""Ram Leather"", 1], [""Beeswax"", 1], [""Red Grass Thread"", 1], [""Red Grass Cloth"", 2], [""Yellow Brass Chain"", 1]]","[[""Menetrier's Alb +1"", 1], null, null]"
+,64,[],White Cape,Earth,,"[[""Clothcraft Kit 64"", 1]]","[null, null, null]"
+,65,"[[""Alchemy"", 24], [""Goldsmithing"", 22]]",Aketon,Earth,,"[[""Saruta Cotton"", 2], [""Velvet Cloth"", 1], [""Platinum Ingot"", 1], [""Gold Thread"", 2], [""Silk Cloth"", 1], [""Beetle Blood"", 1]]","[[""Aketon +1"", 1], null, null]"
+,65,"[[""Smithing"", 19]]",Hyo,Wind,,"[[""Velvet Cloth"", 1], [""Cotton Thread"", 1], [""Iron Ingot"", 1]]","[[""Hyo"", 12], [""Hyo"", 16], [""Hyo"", 20]]"
+,65,"[[""Goldsmithing"", 52]]",Silk Hat,Earth,,"[[""Gold Sheet"", 1], [""Velvet Cloth"", 1], [""Silver Thread"", 1]]","[[""Silk Hat +1"", 1], null, null]"
+,65,"[[""Goldsmithing"", 52]]",Silken Hat,Earth,,"[[""Gold Sheet"", 1], [""Silver Thread"", 1], [""Velvet Cloth"", 1], [""Imperial Silk Cloth"", 2]]","[[""Magi Hat"", 1], null, null]"
+,65,"[[""Goldsmithing"", 9]]",Skeleton Robe,Earth,,"[[""Brass Scales"", 1], [""Linen Thread"", 1], [""Linen Cloth"", 2], [""Wool Cloth"", 2], [""Osseous Serum"", 1]]","[null, null, null]"
+,66,"[[""Leathercraft"", 20]]",Crow Beret,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 2], [""Black Chocobo Feather"", 1], [""Bird Feather"", 1], [""Sheep Leather"", 1]]","[[""Raven Beret"", 1], null, null]"
+,66,[],High Mana Cloak,Earth,,"[[""Magical Silk Cloth"", 1], [""White Cloak"", 1]]","[null, null, null]"
+,66,[],Opaline Hose,Light,,"[[""Velvet Cloth"", 2], [""Silk Thread"", 3], [""Twinthread"", 2]]","[[""Ceremonial Hose"", 1], null, null]"
+,66,[],Sarcenet Cape,Earth,,"[[""Sarcenet Cloth"", 2], [""Wool Thread"", 1]]","[[""Midnight Cape"", 1], null, null]"
+,66,"[[""Goldsmithing"", 19]]",Silk Cuffs,Earth,,"[[""Aquamarine"", 2], [""Velvet Cloth"", 1], [""Gold Thread"", 1], [""Silk Cloth"", 1]]","[[""Silk Cuffs +1"", 1], null, null]"
+,66,"[[""Leathercraft"", 50], [""Alchemy"", 20]]",Argent Hose,Light,,"[[""Silver Chain"", 1], [""Velvet Cloth"", 2], [""Sheep Leather"", 2], [""Eltoro Leather"", 1], [""Baking Soda"", 1], [""Platinum Silk"", 1]]","[[""Platino Hose"", 1], null, null]"
+,67,"[[""Goldsmithing"", 45]]",Silk Slops,Earth,,"[[""Gold Sheet"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Silk Cloth"", 2]]","[[""Silk Slops +1"", 1], null, null]"
+,67,"[[""Goldsmithing"", 45]]",Silken Slops,Earth,,"[[""Gold Sheet"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Imperial Silk Cloth"", 2]]","[[""Magi Slops"", 1], null, null]"
+,67,[],Wool Doublet,Earth,,"[[""Saruta Cotton"", 3], [""Wool Thread"", 1], [""Wool Cloth"", 4]]","[[""Wool Doublet +1"", 1], null, null]"
+,67,[],Accura Cape,Earth,,"[[""Velvet Cloth"", 2], [""Dahu Hair"", 1]]","[[""Accura Cape +1"", 1], null, null]"
+,67,[],Apkallu Fletchings,Wind,,"[[""Apkallu Feather"", 2]]","[[""Apkallu Fletchings"", 8], [""Apkallu Fletchings"", 10], [""Apkallu Fletchings"", 12]]"
+,67,[],Apkallu Fletchings,Wind,Fletching,"[[""Apkallu Feather"", 6], [""Zephyr Thread"", 1]]","[[""Apkallu Fletchings"", 24], [""Apkallu Fletchings"", 30], [""Apkallu Fletchings"", 36]]"
+,68,"[[""Goldsmithing"", 21], [""Leathercraft"", 16]]",Crow Jupon,Earth,,"[[""Silver Ingot"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 3], [""Saruta Cotton"", 2], [""Sheep Leather"", 1]]","[[""Raven Jupon"", 1], null, null]"
+,68,[],Royal Knight's Cloak +1,Earth,,"[[""Royal Knight's Cloak"", 1], [""Gold Thread"", 1], [""Silk Cloth"", 1]]","[[""Royal Knight's Cloak +2"", 1], null, null]"
+,68,[],Silk Coat,Earth,,"[[""Velvet Cloth"", 2], [""Gold Thread"", 1], [""Silver Thread"", 1], [""Silk Cloth"", 2]]","[[""Silk Coat +1"", 1], null, null]"
+,68,[],Silken Coat,Earth,,"[[""Silver Thread"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 2], [""Imperial Silk Cloth"", 2]]","[[""Magi Coat"", 1], null, null]"
+,68,[],Ghost Cape,Earth,,"[[""Silver Thread"", 1], [""Velvet Cloth"", 2], [""Spectral Serum"", 1]]","[null, null, null]"
+,69,[],Silk Headband,Earth,,"[[""Carbon Fiber"", 1], [""Silk Cloth"", 1]]","[[""Silk Headband +1"", 1], null, null]"
+,69,"[[""Leathercraft"", 36]]",Field Tunica,Earth,,"[[""Wool Thread"", 1], [""Wool Cloth"", 2], [""Linen Cloth"", 1], [""Sheep Leather"", 1], [""Ram Leather"", 1]]","[[""Worker Tunica"", 1], null, null]"
+,69,"[[""Goldsmithing"", 53]]",Platinum Silk,Earth,,"[[""Platinum Ingot"", 1], [""Silk Thread"", 1]]","[[""Platinum Silk"", 4], [""Platinum Silk"", 6], [""Platinum Silk"", 8]]"
+,69,"[[""Goldsmithing"", 53]]",Platinum Silk,Earth,Spinning,"[[""Platinum Ingot"", 3], [""Silk Thread"", 3], [""Spindle"", 1]]","[[""Platinum Silk"", 12], null, null]"
+,69,[],Sailcloth,Earth,,"[[""Grass Thread"", 5], [""Rainbow Thread"", 1]]","[null, null, null]"
+,69,[],Vivacity Coat,Earth,,"[[""Silver Thread"", 1], [""Velvet Cloth"", 2], [""Silk Cloth"", 2], [""Rugged Gold Thread"", 1]]","[[""Vivacity Coat +1"", 1], null, null]"
+,70,[],Gold Obi,Earth,,"[[""Gold Thread"", 3]]","[[""Gold Obi +1"", 1], null, null]"
+,70,[],Tactician Magician's Hat +1,Earth,,"[[""Tactician Magician's Hat"", 1], [""Silver Thread"", 1], [""Velvet Cloth"", 1]]","[[""Tactician Magician's Hat +2"", 1], null, null]"
+,70,[],Vermillion Cloak,Earth,,"[[""Damascene Cloth"", 3], [""Gold Thread"", 2], [""Silk Cloth"", 1], [""Velvet Cloth"", 2]]","[[""Royal Cloak"", 1], null, null]"
+,70,[],Black Puppet Turban,Earth,,"[[""Silver Thread"", 1], [""Cotton Cloth"", 1], [""Velvet Cloth"", 1]]","[null, null, null]"
+,70,[],White Puppet Turban,Earth,,"[[""Silver Thread"", 1], [""Cotton Cloth"", 1], [""Silk Cloth"", 1]]","[null, null, null]"
+,70,[],Gold Obi,Earth,,"[[""Clothcraft Kit 70"", 1]]","[null, null, null]"
+,71,"[[""Smithing"", 40]]",Shinobi Hachigane,Wind,,"[[""Iron Chain"", 1], [""Darksteel Sheet"", 1], [""Silk Cloth"", 2]]","[[""Shinobi Hachigane +1"", 1], null, null]"
+,71,"[[""Goldsmithing"", 19]]",Silk Cuffs,Earth,,"[[""Lapis Lazuli"", 2], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Silk Cloth"", 1]]","[[""Silk Cuffs +1"", 1], null, null]"
+,71,"[[""Goldsmithing"", 19]]",Silken Cuffs,Earth,,"[[""Lapis Lazuli"", 2], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Imperial Silk Cloth"", 1]]","[[""Magi Cuffs"", 1], null, null]"
+,71,"[[""Alchemy"", 7]]",Blue 3-Drawer Almirah,Water,,"[[""3-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
+,71,"[[""Alchemy"", 7]]",Green 3-Drawer Almirah,Water,,"[[""3-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
+,71,"[[""Alchemy"", 7]]",Yellow 3-Drawer Almirah,Water,,"[[""3-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
+,71,"[[""Alchemy"", 7]]",White 3-Drawer Almirah,Water,,"[[""3-Drawer Almirah"", 1], [""Gold Thread"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
+,71,"[[""Alchemy"", 7]]",Blue 6-Drawer Almirah,Water,,"[[""6-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
+,71,"[[""Alchemy"", 7]]",Green 6-Drawer Almirah,Water,,"[[""6-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
+,71,"[[""Alchemy"", 7]]",Yellow 6-Drawer Almirah,Water,,"[[""6-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
+,71,"[[""Alchemy"", 7]]",White 6-Drawer Almirah,Water,,"[[""6-Drawer Almirah"", 1], [""Gold Thread"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
+,71,"[[""Alchemy"", 7]]",Blue 9-Drawer Almirah,Water,,"[[""9-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
+,71,"[[""Alchemy"", 7]]",Green 9-Drawer Almirah,Water,,"[[""9-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
+,71,"[[""Alchemy"", 7]]",Yellow 9-Drawer Almirah,Water,,"[[""9-Drawer Almirah"", 1], [""Gold Thread"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
+,71,"[[""Alchemy"", 7]]",White 9-Drawer Almirah,Water,,"[[""9-Drawer Almirah"", 1], [""Gold Thread"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
+,72,[],Battle Bracers,Earth,,"[[""Saruta Cotton"", 2], [""Velvet Cloth"", 2], [""Silk Thread"", 1]]","[[""Battle Bracers +1"", 1], null, null]"
+,72,[],Black Chocobo Fletchings,Wind,,"[[""Black Chocobo Feather"", 2]]","[[""Black Chocobo Fletchings"", 8], [""Black Chocobo Fletchings"", 10], [""Black Chocobo Fletchings"", 12]]"
+,72,[],Black Chocobo Fletchings,Wind,Fletching,"[[""Black Chocobo Feather"", 6], [""Zephyr Thread"", 1]]","[[""Black Chocobo Fletchings"", 24], [""Black Chocobo Fletchings"", 30], [""Black Chocobo Fletchings"", 36]]"
+,72,[],Tactician Magician's Cuffs +1,Earth,,"[[""Tactician Magician's Cuffs"", 1], [""Silver Thread"", 1], [""Velvet Cloth"", 1]]","[[""Tactician Magician's Cuffs +2"", 1], null, null]"
+,72,[],Tactician Magician's Slops +1,Earth,,"[[""Tactician Magician's Slops"", 1], [""Silver Thread"", 1], [""Velvet Cloth"", 1]]","[[""Tactician Magician's Slops +2"", 1], null, null]"
+,73,[],Deductive Gold Obi,Earth,,"[[""Brilliant Gold Thread"", 1], [""Gold Obi"", 1]]","[null, null, null]"
+,73,[],Enthralling Gold Obi,Earth,,"[[""Shiny Gold Thread"", 1], [""Gold Obi"", 1]]","[null, null, null]"
+,73,[],Sagacious Gold Obi,Earth,,"[[""Dull Gold Thread"", 1], [""Gold Obi"", 1]]","[null, null, null]"
+,73,[],Shinobi Kyahan,Wind,,"[[""Mythril Sheet"", 1], [""Linen Thread"", 1], [""Silk Cloth"", 3]]","[[""Shinobi Kyahan +1"", 1], null, null]"
+,73,[],Silk Slacks,Earth,,"[[""Gold Thread"", 2], [""Silk Cloth"", 3]]","[[""Silk Slacks +1"", 1], null, null]"
+,73,[],Tactician Magician's Coat +1,Earth,,"[[""Tactician Magician's Coat"", 1], [""Velvet Cloth"", 1], [""Silver Thread"", 1]]","[[""Tactician Magician's Coat +2"", 1], null, null]"
+,74,[],Cheviot Cape,Earth,,"[[""Cheviot Cloth"", 2], [""Wool Thread"", 1]]","[[""Umbra Cape"", 1], null, null]"
+,74,"[[""Leathercraft"", 20]]",Jester's Cape,Earth,,"[[""Silk Thread"", 1], [""Silk Cloth"", 2], [""Sheep Leather"", 2]]","[[""Jester's Cape +1"", 1], null, null]"
+,74,[],Silk Mitts,Earth,,"[[""Saruta Cotton"", 1], [""Gold Thread"", 2], [""Silk Cloth"", 2]]","[[""Silk Mitts +1"", 1], null, null]"
+,74,"[[""Leathercraft"", 9]]",Vendor's Slops,Earth,,"[[""Karakul Leather"", 1], [""Scarlet Linen"", 1], [""Bloodthread"", 1], [""Imperial Silk Cloth"", 2]]","[[""Prince's Slops"", 1], null, null]"
+,74,[],Sparkstrand Thread,Lightning,,"[[""Water Spider's Web"", 2]]","[null, null, null]"
+,74,[],Sparkstrand Thread,Lightning,Spinning,"[[""Water Spider's Web"", 6], [""Spindle"", 1]]","[null, null, null]"
+,75,"[[""Smithing"", 30]]",Shinobi Tekko,Earth,,"[[""Iron Chain"", 1], [""Mythril Sheet"", 2], [""Linen Thread"", 1], [""Silk Cloth"", 2]]","[[""Shinobi Tekko +1"", 1], null, null]"
+,75,[],Tabin Bracers,Earth,,"[[""Imperial Silk Cloth"", 1], [""Battle Bracers"", 1]]","[[""Tabin Bracers +1"", 1], null, null]"
+,75,[],Red Mahogany Bed,Water,,"[[""Mahogany Bed"", 1], [""Wool Thread"", 1], [""Red Textile Dye"", 1]]","[null, null, null]"
+,75,[],Blue Mahogany Bed,Water,,"[[""Mahogany Bed"", 1], [""Wool Thread"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
+,75,[],Green Mahogany Bed,Water,,"[[""Mahogany Bed"", 1], [""Wool Thread"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
+,75,[],Yellow Mahogany Bed,Water,,"[[""Mahogany Bed"", 1], [""Wool Thread"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
+,75,[],Wolf Felt,Fire,,"[[""Sheep Wool"", 3], [""Manticore Hair"", 1], [""Wolf Fur"", 3], [""Distilled Water"", 1]]","[null, null, null]"
+,75,[],Tabin Bracers,Earth,,"[[""Clothcraft Kit 75"", 1]]","[null, null, null]"
+,76,[],Green Beret,Earth,,"[[""Chocobo Feather"", 1], [""Silk Thread"", 1], [""Silk Cloth"", 2], [""Giant Bird Feather"", 1]]","[[""Green Beret +1"", 1], null, null]"
+,76,[],Silver Brocade,Earth,,"[[""Silk Thread"", 2], [""Rainbow Thread"", 2], [""Silver Thread"", 2]]","[null, null, null]"
+,76,[],Qiqirn Hood,Earth,,"[[""Coeurl Whisker"", 1], [""Copper Ingot"", 1], [""Qiqirn Cape"", 1], [""Lapis Lazuli"", 2], [""Wool Cloth"", 2]]","[null, null, null]"
+,76,[],Twill Damask,Earth,,"[[""Sparkstrand Thread"", 2], [""Rainbow Thread"", 1]]","[null, null, null]"
+,77,"[[""Smithing"", 37]]",Pinwheel,Wind,,"[[""Steel Ingot"", 1], [""Animal Glue"", 1], [""Bast Parchment"", 2]]","[[""Pinwheel"", 12], [""Pinwheel"", 16], [""Pinwheel"", 20]]"
+,77,[],Silk Cloak,Earth,,"[[""Gold Thread"", 1], [""Silk Cloth"", 5]]","[[""Silk Cloak +1"", 1], null, null]"
+,77,[],Junhanshi Habaki,Earth,,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 3], [""Manta Leather"", 1]]","[[""Seihanshi Habaki"", 1], null, null]"
+,77,[],Colibri Fletchings,Wind,,"[[""Colibri Feather"", 2]]","[[""Colibri Fletchings"", 8], [""Colibri Fletchings"", 10], [""Colibri Fletchings"", 12]]"
+,77,[],Colibri Fletchings,Wind,Fletching,"[[""Colibri Feather"", 6], [""Zephyr Thread"", 1]]","[[""Colibri Fletchings"", 24], [""Colibri Fletchings"", 30], [""Colibri Fletchings"", 36]]"
+,78,"[[""Goldsmithing"", 42]]",Battle Jupon,Earth,,"[[""Gold Sheet"", 1], [""Saruta Cotton"", 2], [""Velvet Cloth"", 4], [""Gold Thread"", 1]]","[[""Battle Jupon +1"", 1], null, null]"
+,78,[],Rainbow Thread,Lightning,,"[[""Spider Web"", 2]]","[null, null, null]"
+,78,[],Rainbow Thread,Lightning,Spinning,"[[""Spider Web"", 6], [""Spindle"", 1]]","[null, null, null]"
+,78,"[[""Alchemy"", 41]]",Oil-Soaked Cloth,Earth,,"[[""Silk Thread"", 1], [""Gold Thread"", 1], [""Flaxseed Oil"", 3], [""Wamoura Silk"", 1]]","[null, null, null]"
+,78,[],Shinobi Hakama,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 2], [""Silk Cloth"", 1], [""Sheep Leather"", 2]]","[[""Shinobi Hakama +1"", 1], null, null]"
+,78,"[[""Woodworking"", 18]]",Haunted Muleta,Wind,,"[[""Spectral Goldenrod"", 1], [""Spectral Crimson"", 1], [""Yew Lumber"", 1]]","[null, null, null]"
+,79,[],Rainbow Velvet,Earth,,"[[""Silk Thread"", 1], [""Rainbow Thread"", 2]]","[null, null, null]"
+,79,[],Tabin Beret,Earth,,"[[""Imperial Silk Cloth"", 1], [""Green Beret"", 1]]","[[""Tabin Beret +1"", 1], null, null]"
+,80,[],Brocade Obi,Earth,,"[[""Gold Thread"", 2], [""Silver Thread"", 2], [""Rainbow Thread"", 2]]","[[""Brocade Obi +1"", 1], null, null]"
+,80,[],Rainbow Cloth,Earth,,"[[""Rainbow Thread"", 3]]","[null, null, null]"
+,80,[],Shinobi Gi,Earth,,"[[""Iron Chain"", 2], [""Linen Thread"", 1], [""Silk Cloth"", 3]]","[[""Shinobi Gi +1"", 1], null, null]"
+,80,"[[""Leathercraft"", 50], [""Bonecraft"", 55]]",Yagudo Headgear,Earth,,"[[""Yagudo Cutting"", 1], [""Bugard Tusk"", 1], [""Cockatrice Skin"", 1], [""Wool Thread"", 1], [""Yagudo Feather"", 2], [""Black Pearl"", 2]]","[null, null, null]"
+,80,"[[""Alchemy"", 24], [""Goldsmithing"", 22]]",Alacer Aketon,Earth,,"[[""Platinum Ingot"", 1], [""Gold Thread"", 2], [""Silk Cloth"", 1], [""Saruta Cotton"", 2], [""Beetle Blood"", 1], [""Radiant Velvet"", 1]]","[[""Alacer Aketon +1"", 1], null, null]"
+,80,[],Brocade Obi,Earth,,"[[""Clothcraft Kit 80"", 1]]","[null, null, null]"
+,81,"[[""Smithing"", 48]]",Arhat's Jinpachi,Wind,,"[[""Darksteel Chain"", 1], [""Darksteel Sheet"", 1], [""Silk Cloth"", 2]]","[[""Arhat's Jinpachi +1"", 1], null, null]"
+,81,[],Blue Cape,Earth,,"[[""Beetle Blood"", 1], [""Silk Cloth"", 2], [""Silk Thread"", 1]]","[[""Blue Cape +1"", 1], null, null]"
+,81,[],Jester's Headband,Earth,,"[[""Cotton Thread"", 1], [""Dodge Headband"", 1], [""Linen Cloth"", 1]]","[[""Juggler's Headband"", 1], null, null]"
+,81,[],Tabin Jupon,Earth,,"[[""Battle Jupon"", 1], [""Imperial Silk Cloth"", 1]]","[[""Tabin Jupon +1"", 1], null, null]"
+,81,[],War Gloves,Earth,,"[[""Rainbow Thread"", 1], [""Saruta Cotton"", 2], [""Velvet Cloth"", 2]]","[[""War Gloves +1"", 1], null, null]"
+,81,[],Blue Noble's Bed,Water,,"[[""Noble's Bed"", 1], [""Gold Thread"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
+,81,[],Green Noble's Bed,Water,,"[[""Noble's Bed"", 1], [""Gold Thread"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
+,81,[],Yellow Noble's Bed,Water,,"[[""Noble's Bed"", 1], [""Gold Thread"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
+,81,[],White Noble's Bed,Water,,"[[""Noble's Bed"", 1], [""Gold Thread"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
+,81,[],Peapuk Fletchings,Wind,,"[[""Peapuk Wing"", 2]]","[[""Peapuk Fletchings"", 8], [""Peapuk Fletchings"", 10], [""Peapuk Fletchings"", 12]]"
+,81,[],Peapuk Fletchings,Wind,Fletching,"[[""Peapuk Wing"", 6], [""Zephyr Thread"", 1]]","[[""Peapuk Fletchings"", 24], [""Peapuk Fletchings"", 30], [""Peapuk Fletchings"", 36]]"
+,82,"[[""Smithing"", 45]]",Arhat's Sune-Ate,Wind,,"[[""Darksteel Sheet"", 1], [""Silk Cloth"", 3], [""Silk Thread"", 1]]","[[""Arhat's Sune-Ate +1"", 1], null, null]"
+,82,[],Wulong Shoes,Earth,,"[[""Cotton Cloth"", 1], [""Grass Thread"", 1], [""Kung Fu Shoes"", 1]]","[[""Wulong Shoes +1"", 1], null, null]"
+,82,[],Arachne Thread,Lightning,,"[[""Arachne Web"", 2]]","[null, null, null]"
+,82,"[[""Leathercraft"", 39], [""Goldsmithing"", 32]]",Sipahi Zerehs,Earth,,"[[""Karakul Cloth"", 2], [""Marid Hair"", 1], [""Marid Leather"", 1], [""Mythril Chain"", 1], [""Wamoura Cloth"", 1]]","[[""Abtal Zerehs"", 1], null, null]"
+,82,[],Puk Fletchings,Wind,,"[[""Puk Wing"", 2]]","[[""Puk Fletchings"", 8], [""Puk Fletchings"", 10], [""Puk Fletchings"", 12]]"
+,82,[],Puk Fletchings,Wind,Fletching,"[[""Puk Wing"", 6], [""Zephyr Thread"", 1]]","[[""Puk Fletchings"", 24], [""Puk Fletchings"", 30], [""Puk Fletchings"", 36]]"
+,83,[],Noble's Mitts,Earth,,"[[""Cotton Cloth"", 1], [""Gold Thread"", 2], [""Rainbow Cloth"", 1], [""Saruta Cotton"", 1]]","[[""Aristocrat's Mitts"", 1], null, null]"
+,83,[],Master's Sitabaki,Earth,,"[[""Cotton Thread"", 1], [""Jujitsu Sitabaki"", 1], [""Linen Cloth"", 1]]","[[""Master's Sitabaki +1"", 1], null, null]"
+,83,[],War Brais,Earth,,"[[""Gold Thread"", 1], [""Linen Cloth"", 2], [""Tiger Leather"", 1]]","[[""War Brais +1"", 1], null, null]"
+,83,[],Enthralling Brocade Obi,Earth,,"[[""Brocade Obi"", 1], [""Shiny Gold Thread"", 1]]","[null, null, null]"
+,83,[],Sagacious Brocade Obi,Earth,,"[[""Brocade Obi"", 1], [""Dull Gold Thread"", 1]]","[null, null, null]"
+,83,[],Deductive Brocade Obi,Earth,,"[[""Brocade Obi"", 1], [""Brilliant Gold Thread"", 1]]","[null, null, null]"
+,84,[],Noble's Slacks,Earth,,"[[""Gold Thread"", 2], [""Rainbow Cloth"", 2], [""Velvet Cloth"", 1]]","[[""Aristocrat's Slacks"", 1], null, null]"
+,84,[],Devotee's Mitts,Earth,,"[[""Linen Thread"", 1], [""Silk Cloth"", 1], [""Zealot's Mitts"", 1]]","[[""Devotee's Mitts +1"", 1], null, null]"
+,84,[],Arachne Obi,Earth,,"[[""Arachne Thread"", 1], [""Gold Thread"", 1], [""Rainbow Thread"", 3], [""Silver Thread"", 1]]","[[""Arachne Obi +1"", 1], null, null]"
+,84,[],Rainbow Headband,Earth,,"[[""Carbon Fiber"", 1], [""Rainbow Cloth"", 1]]","[[""Prism Headband"", 1], null, null]"
+,85,[],Master's Gi,Earth,,"[[""Cotton Cloth"", 1], [""Grass Thread"", 1], [""Jujitsu Gi"", 1]]","[[""Master's Gi +1"", 1], null, null]"
+,85,"[[""Goldsmithing"", 45]]",Sipahi Turban,Earth,,"[[""Gold Chain"", 1], [""Marid Hair"", 1], [""Wamoura Cloth"", 2]]","[[""Abtal Turban"", 1], null, null]"
+,85,[],Cilice,Earth,,"[[""Wool Thread"", 1], [""Dhalmel Hair"", 2]]","[null, null, null]"
+,85,[],Rainbow Headband,Earth,,"[[""Clothcraft Kit 85"", 1]]","[null, null, null]"
+,86,"[[""Smithing"", 49]]",Arhat's Tekko,Earth,,"[[""Darksteel Sheet"", 2], [""Iron Chain"", 1], [""Linen Thread"", 1], [""Silk Cloth"", 2]]","[[""Arhat's Tekko +1"", 1], null, null]"
+,86,"[[""Goldsmithing"", 51], [""Leathercraft"", 41]]",War Aketon,Earth,,"[[""Gold Ingot"", 1], [""Gold Thread"", 1], [""Saruta Cotton"", 2], [""Tiger Leather"", 2], [""Velvet Cloth"", 2]]","[[""War Aketon +1"", 1], null, null]"
+,86,[],Hailstorm Tekko,Earth,,"[[""Cotton Cloth"", 1], [""Grass Thread"", 1], [""Monsoon Tekko"", 1]]","[[""Hailstorm Tekko +1"", 1], null, null]"
+,86,[],Gold Brocade,Earth,,"[[""Gold Thread"", 2], [""Rainbow Thread"", 2], [""Silk Thread"", 2]]","[null, null, null]"
+,87,[],Noble's Tunic,Earth,,"[[""Gold Thread"", 2], [""Rainbow Cloth"", 1], [""Shining Cloth"", 1], [""Silk Cloth"", 1], [""Silver Thread"", 1], [""Velvet Cloth"", 2]]","[[""Aristocrat's Coat"", 1], null, null]"
+,87,[],Peace Cape,Earth,,"[[""Amity Cape"", 1], [""Linen Thread"", 1], [""Silk Cloth"", 1]]","[[""Peace Cape +1"", 1], null, null]"
+,87,[],Taffeta Cape,Earth,,"[[""Taffeta Cloth"", 2], [""Wool Thread"", 1]]","[[""Taffeta Cape +1"", 1], null, null]"
+,87,[],Chapuli Fletchings,Wind,,"[[""Chapuli Wing"", 2]]","[[""Chapuli Fletchings"", 8], [""Chapuli Fletchings"", 10], [""Chapuli Fletchings"", 12]]"
+,87,[],Chapuli Fletchings,Wind,Fletching,"[[""Chapuli Wing"", 6], [""Zephyr Thread"", 1]]","[[""Chapuli Fletchings"", 24], [""Chapuli Fletchings"", 30], [""Chapuli Fletchings"", 36]]"
+,88,"[[""Alchemy"", 59], [""Goldsmithing"", 21]]",Bloody Aketon,Earth,,"[[""Dragon Blood"", 1], [""Gold Thread"", 2], [""Platinum Ingot"", 1], [""Rainbow Cloth"", 1], [""Saruta Cotton"", 2], [""Silk Cloth"", 1]]","[[""Carnage Aketon"", 1], null, null]"
+,88,[],Gaia Doublet,Earth,,"[[""Cotton Cloth"", 1], [""Earth Doublet"", 1], [""Grass Thread"", 1]]","[[""Gaia Doublet +1"", 1], null, null]"
+,88,[],Arhat's Hakama,Earth,,"[[""Sheep Leather"", 2], [""Silk Cloth"", 1], [""Velvet Cloth"", 2], [""Silk Thread"", 1]]","[[""Arhat's Hakama +1"", 1], null, null]"
+,88,[],Wamoura Silk,Lightning,,"[[""Wamoura Cocoon"", 2]]","[null, null, null]"
+,88,[],Wamoura Silk,Lightning,Spinning,"[[""Wamoura Cocoon"", 6], [""Spindle"", 1]]","[null, null, null]"
+,89,"[[""Smithing"", 21]]",Arhat's Gi,Earth,,"[[""Rainbow Cloth"", 1], [""Rainbow Thread"", 1], [""Silk Cloth"", 1], [""Steel Sheet"", 2], [""Velvet Cloth"", 1]]","[[""Arhat's Gi +1"", 1], null, null]"
+,89,[],Black Cloak,Earth,,"[[""Gold Thread"", 1], [""Rainbow Cloth"", 1], [""Raxa"", 3], [""Silk Cloth"", 2], [""Silver Thread"", 1]]","[[""Demon's Cloak"", 1], null, null]"
+,89,[],Corsair's Hat,Earth,,"[[""Marine Hat"", 1], [""Wool Cloth"", 1], [""Wool Thread"", 1]]","[[""Corsair's Hat +1"", 1], null, null]"
+,89,[],Wamoura Silk,Lightning,,"[[""Wamoura Hair"", 2]]","[null, null, null]"
+,90,[],Wamoura Cloth,Earth,,"[[""Wamoura Silk"", 3]]","[null, null, null]"
+,90,"[[""Smithing"", 60]]",War Shinobi Gi,Earth,,"[[""Darksteel Chain"", 2], [""Darksteel Sheet"", 2], [""Rainbow Thread"", 1], [""Raxa"", 3]]","[[""War Shinobi Gi +1"", 1], null, null]"
+,90,[],Bishop's Robe,Earth,,"[[""Cotton Thread"", 1], [""Linen Cloth"", 1], [""Priest's Robe"", 1]]","[[""Bishop's Robe +1"", 1], null, null]"
+,90,[],Rainbow Obi,Earth,,"[[""Gold Thread"", 1], [""Rainbow Thread"", 4], [""Silver Thread"", 1]]","[[""Prism Obi"", 1], null, null]"
+,90,[],Rainbow Obi,Earth,,"[[""Clothcraft Kit 90"", 1]]","[null, null, null]"
+,91,"[[""Smithing"", 42], [""Leathercraft"", 41]]",Rasetsu Jinpachi,Wind,,"[[""Darksteel Chain"", 1], [""Darksteel Sheet"", 1], [""Raxa"", 1], [""Tiger Leather"", 1]]","[[""Rasetsu Jinpachi +1"", 1], null, null]"
+,91,[],Siren's Macrame,Earth,,"[[""Gold Thread"", 2], [""Rainbow Thread"", 2], [""Siren's Hair"", 2]]","[null, null, null]"
+,91,"[[""Goldsmithing"", 51]]",Sha'ir Turban,Earth,,"[[""Gold Thread"", 1], [""Hippogryph Feather"", 1], [""Pigeon's Blood Ruby"", 1], [""Velvet Cloth"", 3]]","[[""Sheikh Turban"", 1], null, null]"
+,92,"[[""Smithing"", 44], [""Leathercraft"", 41]]",Yasha Sune-Ate,Wind,,"[[""Darksteel Sheet"", 1], [""Kejusu Satin"", 1], [""Silk Thread"", 1], [""Tiger Leather"", 2]]","[[""Yasha Sune-Ate +1"", 1], null, null]"
+,92,"[[""Goldsmithing"", 54]]",Ebon Mitts,Earth,,"[[""Scintillant Ingot"", 1], [""Gargouille Shank"", 1], [""Ruszor Leather"", 1], [""Cambric"", 2]]","[null, null, null]"
+,92,"[[""Leathercraft"", 34], [""Goldsmithing"", 21]]",Errant Hat,Earth,,"[[""Pearl"", 1], [""Rainbow Thread"", 1], [""Silk Cloth"", 1], [""Velvet Cloth"", 2], [""Ram Leather"", 2]]","[[""Mahatma Hat"", 1], null, null]"
+,92,"[[""Leathercraft"", 43], [""Smithing"", 43]]",Rasetsu Sune-Ate,Wind,,"[[""Darksteel Sheet"", 1], [""Raxa"", 1], [""Silk Thread"", 1], [""Tiger Leather"", 2]]","[[""Rasetsu Sune-Ate +1"", 1], null, null]"
+,92,[],Cashmere Thread,Lightning,,"[[""Cashmere Wool"", 2]]","[null, null, null]"
+,92,"[[""Goldsmithing"", 51], [""Leathercraft"", 31]]",Rook Banner,Earth,,"[[""Dogwood Lumber"", 1], [""Gold Ingot"", 1], [""Gold Thread"", 2], [""Silk Cloth"", 1], [""Rainbow Cloth"", 1], [""Pigeon's Blood Ruby"", 1], [""Siren's Macrame"", 1]]","[null, null, null]"
+,92,[],Bewitched Mitts,Earth,,"[[""Cursed Mitts -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Mitts"", 1], null, null]"
+,92,[],Vexed Cuffs,Earth,,"[[""Hexed Cuffs -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Cuffs"", 1], null, null]"
+,93,[],Giant Bird Fletchings,Wind,,"[[""Giant Bird Plume"", 2]]","[[""Giant Bird Fletchings"", 8], [""Giant Bird Fletchings"", 10], [""Giant Bird Fletchings"", 12]]"
+,93,[],Giant Bird Fletchings,Wind,Fletching,"[[""Giant Bird Plume"", 6], [""Zephyr Thread"", 1]]","[[""Giant Bird Fletchings"", 24], [""Giant Bird Fletchings"", 30], [""Giant Bird Fletchings"", 36]]"
+,93,"[[""Leathercraft"", 51]]",Sha'ir Seraweels,Earth,,"[[""Gold Thread"", 1], [""Tiger Leather"", 1], [""Taffeta Cloth"", 1], [""Velvet Cloth"", 3]]","[[""Sheikh Seraweels"", 1], null, null]"
+,93,"[[""Smithing"", 48]]",Hachiman Hakama,Earth,,"[[""Darksteel Chain"", 2], [""Gold Thread"", 1], [""Kejusu Satin"", 1], [""Scarlet Linen"", 1], [""Velvet Cloth"", 1]]","[[""Hachiman Hakama +1"", 1], null, null]"
+,93,"[[""Goldsmithing"", 50], [""Leathercraft"", 50]]",Cursed Hat,Earth,,"[[""Velvet Cloth"", 2], [""Tiger Leather"", 1], [""Marid Leather"", 1], [""Imperial Silk Cloth"", 1], [""Nethereye Chain"", 1], [""Platinum Silk"", 1]]","[[""Cursed Hat -1"", 1], null, null]"
+,93,"[[""Leathercraft"", 60]]",Ebon Clogs,Earth,,"[[""Grass Thread"", 1], [""Tiger Leather"", 2], [""Molybdenum Ingot"", 1], [""Cambric"", 2]]","[null, null, null]"
+,93,[],Bewitched Slacks,Earth,,"[[""Cursed Slacks -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Slacks"", 1], null, null]"
+,93,[],Vexed Tights,Earth,,"[[""Hexed Tights -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Tights"", 1], null, null]"
+,93,[],Vexed Kecks,Earth,,"[[""Hexed Kecks -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Kecks"", 1], null, null]"
+,94,"[[""Leathercraft"", 26]]",Errant Slops,Earth,,"[[""Rainbow Thread"", 1], [""Ram Leather"", 1], [""Silk Cloth"", 2], [""Velvet Cloth"", 2]]","[[""Mahatma Slops"", 1], null, null]"
+,94,[],Rainbow Cape,Earth,,"[[""Rainbow Cloth"", 2], [""Silk Thread"", 1]]","[[""Prism Cape"", 1], null, null]"
+,94,[],Roshi Jinpachi,Earth,,"[[""Arhat's Jinpachi"", 1], [""Rainbow Thread"", 1]]","[[""Roshi Jinpachi +1"", 1], null, null]"
+,94,"[[""Leathercraft"", 41], [""Smithing"", 41]]",Yasha Tekko,Earth,,"[[""Darksteel Sheet"", 2], [""Darksteel Chain"", 1], [""Kejusu Satin"", 1], [""Linen Thread"", 1], [""Tiger Leather"", 1]]","[[""Yasha Tekko +1"", 1], null, null]"
+,94,[],Vexed Mitra,Earth,,"[[""Hexed Mitra -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Mitra"", 1], null, null]"
+,94,[],Vexed Bonnet,Earth,,"[[""Hexed Bonnet -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Bonnet"", 1], null, null]"
+,95,"[[""Smithing"", 41], [""Leathercraft"", 41]]",Rasetsu Tekko,Earth,,"[[""Darksteel Sheet"", 2], [""Iron Chain"", 1], [""Linen Thread"", 1], [""Raxa"", 1], [""Tiger Leather"", 1]]","[[""Rasetsu Tekko +1"", 1], null, null]"
+,95,[],Opaline Dress,Light,,"[[""Rainbow Cloth"", 1], [""Rainbow Thread"", 1], [""Silk Cloth"", 3], [""Twinthread"", 2], [""Velvet Cloth"", 1]]","[[""Ceremonial Dress"", 1], null, null]"
+,95,[],Tarutaru Sash,Earth,,"[[""Gold Thread"", 1], [""Manticore Hair"", 2], [""Rainbow Thread"", 1], [""Silver Thread"", 1], [""Wool Thread"", 1]]","[[""Star Sash"", 1], null, null]"
+,95,[],Elite Beret,Earth,,"[[""Phoenix Feather"", 1], [""War Beret"", 1]]","[[""Elite Beret +1"", 1], null, null]"
+,95,[],Cashmere Cloth,Earth,,"[[""Cashmere Thread"", 3]]","[null, null, null]"
+,95,"[[""Goldsmithing"", 50], [""Leathercraft"", 50]]",Cursed Trews,Earth,,"[[""Velvet Cloth"", 2], [""Marid Leather"", 1], [""Imperial Silk Cloth"", 2], [""Nethercant Chain"", 1], [""Platinum Silk"", 1]]","[[""Cursed Trews -1"", 1], null, null]"
+,95,"[[""Smithing"", 60], [""Leathercraft"", 50]]",Ebon Slops,Earth,,"[[""Darksteel Sheet"", 2], [""Scintillant Ingot"", 1], [""Cambric"", 2]]","[null, null, null]"
+,95,[],Tulfaire Fletchings,Wind,,"[[""Tulfaire Feather"", 2]]","[[""Tulfaire Fletchings"", 8], [""Tulfaire Fletchings"", 10], [""Tulfaire Fletchings"", 12]]"
+,95,[],Tulfaire Fletchings,Wind,Fletching,"[[""Tulfaire Feather"", 6], [""Zephyr Thread"", 1]]","[[""Tulfaire Fletchings"", 24], [""Tulfaire Fletchings"", 30], [""Tulfaire Fletchings"", 36]]"
+,95,[],Bewitched Dalmatica,Earth,,"[[""Cursed Dalmatica -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Dalmatica"", 1], null, null]"
+,95,[],Vexed Bliaut,Earth,,"[[""Hexed Bliaut -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Bliaut"", 1], null, null]"
+,95,[],Tarutaru Sash,Earth,,"[[""Clothcraft Kit 95"", 1]]","[null, null, null]"
+,96,"[[""Goldsmithing"", 50], [""Leathercraft"", 30]]",Errant Houppelande,Earth,,"[[""Gold Chain"", 1], [""Rainbow Cloth"", 2], [""Rainbow Thread"", 1], [""Ram Leather"", 1], [""Silk Cloth"", 2], [""Velvet Cloth"", 1]]","[[""Mahatma Houppelande"", 1], null, null]"
+,96,[],Cursed Mitts,Earth,,"[[""Gold Thread"", 1], [""Rainbow Cloth"", 1], [""Saruta Cotton"", 1], [""Siren's Hair"", 1], [""Wool Cloth"", 1]]","[[""Cursed Mitts -1"", 1], null, null]"
+,96,[],Blessed Mitts,Earth,,"[[""Galateia"", 1], [""Gold Thread"", 2], [""Saruta Cotton"", 1], [""Velvet Cloth"", 1]]","[[""Blessed Mitts +1"", 1], null, null]"
+,96,"[[""Smithing"", 41], [""Leathercraft"", 35]]",Yasha Hakama,Earth,,"[[""Darksteel Sheet"", 1], [""Silk Thread"", 1], [""Kejusu Satin"", 1], [""Velvet Cloth"", 2], [""Sheep Leather"", 1], [""Kejusu Satin"", 1], [""Tiger Leather"", 1]]","[[""Yasha Hakama +1"", 1], null, null]"
+,96,[],Aumoniere,Earth,,"[[""Rainbow Thread"", 1], [""Amaryllis"", 1], [""Ensanguined Cloth"", 1], [""Scarlet Ribbon"", 1]]","[[""Aumoniere +1"", 1], null, null]"
+,96,[],Akaso Thread,Lightning,,"[[""Akaso"", 2]]","[null, null, null]"
+,96,[],Akaso Thread,Lightning,Spinning,"[[""Akaso"", 6], [""Spindle"", 1]]","[null, null, null]"
+,97,"[[""Smithing"", 41], [""Leathercraft"", 35]]",Rasetsu Hakama,Earth,,"[[""Darksteel Sheet"", 1], [""Raxa"", 1], [""Sheep Leather"", 1], [""Silk Thread"", 1], [""Tiger Leather"", 1], [""Velvet Cloth"", 2]]","[[""Rasetsu Hakama +1"", 1], null, null]"
+,97,[],Cursed Slacks,Earth,,"[[""Gold Thread"", 1], [""Rainbow Cloth"", 1], [""Siren's Macrame"", 1], [""Velvet Cloth"", 2]]","[[""Cursed Slacks -1"", 1], null, null]"
+,97,"[[""Smithing"", 51], [""Leathercraft"", 46]]",Yasha Samue,Earth,,"[[""Darksteel Sheet"", 1], [""Kejusu Satin"", 2], [""Rainbow Thread"", 1], [""Steel Sheet"", 1], [""Tiger Leather"", 2], [""Velvet Cloth"", 1]]","[[""Yasha Samue +1"", 1], null, null]"
+,97,[],Blessed Trousers,Earth,,"[[""Galateia"", 1], [""Gold Thread"", 2], [""Rainbow Cloth"", 1], [""Velvet Cloth"", 1]]","[[""Blessed Trousers +1"", 1], null, null]"
+,97,"[[""Goldsmithing"", 51], [""Leathercraft"", 51]]",Cursed Coat,Earth,,"[[""Velvet Cloth"", 3], [""Marid Leather"", 1], [""Imperial Silk Cloth"", 2], [""Netherfield Chain"", 1], [""Platinum Silk"", 1]]","[[""Cursed Coat -1"", 1], null, null]"
+,97,"[[""Leathercraft"", 60]]",Ebon Beret,Earth,,"[[""Scintillant Ingot"", 1], [""Ruszor Leather"", 1], [""Cambric"", 2]]","[null, null, null]"
+,97,[],Akaso Cloth,Earth,,"[[""Akaso Thread"", 3]]","[null, null, null]"
+,98,"[[""Goldsmithing"", 24], [""Leathercraft"", 26]]",Errant Cuffs,Earth,,"[[""Gold Thread"", 1], [""Rainbow Cloth"", 1], [""Sheep Leather"", 1], [""Silk Cloth"", 1], [""Turquoise"", 2]]","[[""Mahatma Cuffs"", 1], null, null]"
+,98,[],Dance Shoes,Earth,,"[[""Moccasins"", 1], [""Rainbow Cloth"", 1], [""Rainbow Thread"", 1]]","[[""Dance Shoes +1"", 1], null, null]"
+,98,[],Foulard,Earth,,"[[""Silk Thread"", 3], [""Arachne Thread"", 1], [""Rainbow Thread"", 2]]","[null, null, null]"
+,98,[],Wyrdweave,Earth,,"[[""Wyrdstrand"", 3]]","[null, null, null]"
+,99,"[[""Smithing"", 52], [""Leathercraft"", 48]]",Rasetsu Samue,Earth,,"[[""Darksteel Sheet"", 1], [""Rainbow Thread"", 1], [""Raxa"", 2], [""Steel Sheet"", 1], [""Tiger Leather"", 2], [""Velvet Cloth"", 1]]","[[""Rasetsu Samue +1"", 1], null, null]"
+,99,[],Al Zahbi Sash,Earth,,"[[""Gold Thread"", 1], [""Karakul Thread"", 1], [""Marid Hair"", 2], [""Rainbow Thread"", 1], [""Wamoura Silk"", 1]]","[[""Moon Sash"", 1], null, null]"
+,99,"[[""Goldsmithing"", 54], [""Leathercraft"", 54]]",Cursed Cuffs,Earth,,"[[""Angelstone"", 2], [""Velvet Cloth"", 1], [""Karakul Leather"", 1], [""Imperial Silk Cloth"", 1], [""Netherspirit Chain"", 1], [""Platinum Silk"", 1]]","[[""Cursed Cuffs -1"", 1], null, null]"
+,99,[],Revealer's Mitts,Earth,,"[[""Rainbow Thread"", 1], [""Ancestral Cloth"", 2], [""Prickly Pitriv's Thread"", 1], [""Warblade Beak's Hide"", 1]]","[[""Revealer's Mitts +1"", 1], null, null]"
+,100,[],Cursed Dalmatica,Earth,,"[[""Behemoth Leather"", 1], [""Gold Chain"", 1], [""Gold Thread"", 1], [""Rainbow Cloth"", 1], [""Ram Leather"", 1], [""Siren's Macrame"", 1], [""Velvet Cloth"", 2]]","[[""Cursed Dalmatica -1"", 1], null, null]"
+,100,[],Blessed Bliaut,Earth,,"[[""Galateia"", 2], [""Gold Thread"", 2], [""Rainbow Cloth"", 1], [""Silver Thread"", 1], [""Velvet Cloth"", 2]]","[[""Blessed Bliaut +1"", 1], null, null]"
+,100,"[[""Goldsmithing"", 60], [""Leathercraft"", 60]]",Kyudogi,Earth,,"[[""Cerberus Leather"", 1], [""Imperial Silk Cloth"", 1], [""Kejusu Satin"", 1], [""Rainbow Thread"", 1], [""Sailcloth"", 1], [""Scintillant Ingot"", 1], [""Sheep Chammy"", 1], [""Yoichi's Sash"", 1]]","[[""Kyudogi +1"", 1], null, null]"
+,100,"[[""Alchemy"", 41], [""Leathercraft"", 20]]",Argent Coat,Light,,"[[""Silk Cloth"", 1], [""Silver Thread"", 1], [""Platinum Silk Thread"", 1], [""Galateia"", 1], [""Eltoro Leather"", 1], [""Silver Chain"", 1], [""Baking Soda"", 1]]","[[""Platino Coat"", 1], null, null]"
+,100,"[[""Goldsmithing"", 60], [""Leathercraft"", 60]]",Ebon Frock,Earth,,"[[""Silver Ingot"", 1], [""Silver Chain"", 1], [""Behemoth Leather"", 1], [""Taffeta Cloth"", 1], [""Scintillant Ingot"", 1], [""Ruszor Leather"", 1], [""Cambric"", 2]]","[null, null, null]"
+,100,[],Swith Cape,Earth,,"[[""Sparkstrand"", 1], [""Wyrdweave"", 2]]","[[""Swith Cape +1"", 1], null, null]"
+,100,[],Revealer's Pants,Earth,,"[[""Linen Cloth"", 1], [""Ancestral Cloth"", 2], [""Prickly Pitriv's Thread"", 1], [""Warblade Beak's Hide"", 1]]","[[""Revealer's Pants +1"", 1], null, null]"
+,100,[],Porxie Fletchings,Wind,,"[[""Porxie Wing"", 2]]","[[""Porxie Fletchings"", 8], [""Porxie Fletchings"", 10], [""Porxie Fletchings"", 12]]"
+,100,[],Porxie Fletchings,Wind,Fletching,"[[""Porxie Wing"", 6], [""Zephyr Thread"", 1]]","[[""Porxie Fletchings"", 24], [""Porxie Fletchings"", 30], [""Porxie Fletchings"", 36]]"
+,101,[],Errant Cape,Earth,,"[[""Peace Cape"", 1], [""Rainbow Thread"", 1], [""Raxa"", 1]]","[[""Mahatma Cape"", 1], null, null]"
+,101,[],Revealer's Tunic,Earth,,"[[""Linen Cloth"", 2], [""Ancestral Cloth"", 3], [""Prickly Pitriv's Thread"", 1], [""Warblade Beak's Hide"", 1]]","[[""Revealer's Tunic +1"", 1], null, null]"
+,102,[],Chelona Trousers,Earth,,"[[""Wool Thread"", 1], [""Wolf Felt"", 2], [""Imperial Silk Cloth"", 1], [""Platinum Silk Thread"", 1], [""Amphiptere Leather"", 1]]","[[""Chelona Trousers +1"", 1], null, null]"
+,103,"[[""Leathercraft"", 50]]",Spolia Chapeau,Earth,,"[[""Beeswax"", 1], [""Magical Cotton Cloth"", 1], [""Sheep Chammy"", 1], [""Wyrdweave"", 3]]","[[""Opima Chapeau"", 1], null, null]"
+,103,"[[""Leathercraft"", 52], [""Goldsmithing"", 30]]",Hexed Cuffs,Earth,,"[[""Red Grass Thread"", 1], [""Lynx Leather"", 1], [""Muculent Ingot"", 1], [""Serica Cloth"", 1]]","[[""Hexed Cuffs -1"", 1], null, null]"
+,103,"[[""Leathercraft"", 50]]",Spolia Trews,Earth,,"[[""Magical Cotton Cloth"", 2], [""Sheep Chammy"", 1], [""Wyrdstrand"", 1], [""Wyrdweave"", 1]]","[[""Opima Trews"", 1], null, null]"
+,103,"[[""Leathercraft"", 50]]",Spolia Cuffs,Earth,,"[[""Magical Cotton Cloth"", 1], [""Sheep Chammy"", 1], [""Wyrdweave"", 3]]","[[""Opima Cuffs"", 1], null, null]"
+,103,[],Chelona Gloves,Earth,,"[[""Silver Ingot"", 1], [""Karakul Cloth"", 2], [""Wamoura Silk"", 1], [""Platinum Silk Thread"", 1], [""Amphiptere Leather"", 1]]","[[""Chelona Gloves +1"", 1], null, null]"
+,103,[],Haruspex Cuffs,Earth,,"[[""Gold Thread"", 1], [""Silk Cloth"", 1], [""Star Sapphire"", 2], [""Akaso Cloth"", 1], [""Raaz Leather"", 1]]","[[""Haruspex Cuffs +1"", 1], null, null]"
+,104,[],Chelona Hat,Earth,,"[[""Carnelian"", 1], [""Beetle Blood"", 1], [""Silver Brocade"", 1], [""Wolf Felt"", 1], [""Wamoura Silk"", 1], [""Platinum Silk Thread"", 1], [""Amphiptere Leather"", 1], [""Wyrdstrand"", 1]]","[[""Chelona Hat +1"", 1], null, null]"
+,105,[],Areion Boots,Earth,,"[[""Serica Cloth"", 1], [""Strider Boots"", 1]]","[[""Areion Boots +1"", 1], null, null]"
+,105,"[[""Leathercraft"", 50]]",Spolia Saio,Earth,,"[[""Brass Chain"", 1], [""Beeswax"", 1], [""Buffalo Leather"", 1], [""Magical Cotton Cloth"", 1], [""Sheep Chammy"", 1], [""Wyrdstrand"", 1], [""Wyrdweave"", 2]]","[[""Opima Saio"", 1], null, null]"
+,105,"[[""Goldsmithing"", 49]]",Hexed Bonnet,Earth,,"[[""Velvet Cloth"", 1], [""Malboro Fiber"", 1], [""Muculent Ingot"", 1], [""Penelope's Cloth"", 1]]","[[""Hexed Bonnet -1"", 1], null, null]"
+,105,[],Sancus Sachet,Earth,,"[[""Siren's Macrame"", 1], [""Sif's Macrame"", 2], [""Vulcanite Ore"", 1], [""Arasy Sachet"", 1]]","[[""Sancus Sachet +1"", 1], null, null]"
+,105,[],Sif's Macrame,Earth,,"[[""Rainbow Thread"", 2], [""Gold Thread"", 2], [""Siren's Hair"", 1], [""Sif's Lock"", 1]]","[null, null, null]"
+,105,[],Khoma Cloth,Earth,,"[[""Khoma Thread"", 3]]","[null, null, null]"
+,106,[],Chelona Blazer,Earth,,"[[""Carnelian"", 1], [""Karakul Skin"", 1], [""Beetle Blood"", 1], [""Silver Brocade"", 1], [""Karakul Cloth"", 1], [""Wamoura Silk"", 1], [""Amphiptere Leather"", 1], [""Wyrdstrand"", 1]]","[[""Chelona Blazer +1"", 1], null, null]"
+,106,[],Haruspex Hat,Earth,,"[[""Gold Sheet"", 1], [""Silver Thread"", 1], [""Gold Thread"", 1], [""Raxa"", 1], [""Akaso Cloth"", 1], [""Raaz Leather"", 1]]","[[""Haruspex Hat +1"", 1], null, null]"
+,106,[],Mixed Fletchings,Wind,,"[[""Porxie Wing"", 1], [""Chapuli Wing"", 1]]","[[""Mixed Fletchings"", 8], [""Mixed Fletchings"", 10], [""Mixed Fletchings"", 12]]"
+,106,[],Mixed Fletchings,Wind,Fletching,"[[""Porxie Wing"", 3], [""Chapuli Wing"", 3], [""Zephyr Thread"", 1]]","[[""Mixed Fletchings"", 24], [""Mixed Fletchings"", 30], [""Mixed Fletchings"", 36]]"
+,107,"[[""Leathercraft"", 60]]",Hexed Tights,Earth,,"[[""Silver Thread"", 2], [""Red Grass Thread"", 1], [""Shagreen"", 1], [""Ethereal Squama"", 1], [""Serica Cloth"", 1]]","[[""Hexed Tights -1"", 1], null, null]"
+,107,[],Haruspex Slops,Earth,,"[[""Gold Sheet"", 1], [""Gold Thread"", 1], [""Raxa"", 2], [""Akaso Cloth"", 1], [""Raaz Leather"", 1]]","[[""Haruspex Slops +1"", 1], null, null]"
+,107,[],Seshaw Cape,Earth,,"[[""Silk Thread"", 1], [""Sif's Macrame"", 1], [""Ancestral Cloth"", 1], [""Cehuetzi Pelt"", 1]]","[[""Seshaw Cape +1"", 1], null, null]"
+,108,"[[""Leathercraft"", 50], [""Goldsmithing"", 30]]",Hexed Mitra,Earth,,"[[""Gold Thread"", 1], [""Kukulkan's Skin"", 1], [""Muculent Ingot"", 1], [""Serica Cloth"", 1]]","[[""Hexed Mitra -1"", 1], null, null]"
+,108,[],Khoma Belt,Earth,,"[[""Khoma Thread"", 4]]","[null, null, null]"
+,109,"[[""Leathercraft"", 60]]",Hexed Kecks,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Malboro Fiber"", 1], [""Taffeta Cloth"", 1], [""Penelope's Cloth"", 1], [""Staghorn Coral"", 1], [""Sealord Leather"", 1]]","[[""Hexed Kecks -1"", 1], null, null]"
+,109,[],Haruspex Coat,Earth,,"[[""Gold Chain"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Silk Cloth"", 3], [""Akaso Cloth"", 1], [""Raaz Leather"", 1]]","[[""Haruspex Coat +1"", 1], null, null]"
+,110,"[[""Leathercraft"", 60], [""Goldsmithing"", 30]]",Hexed Bliaut,Earth,,"[[""Silver Thread"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Kukulkan's Skin"", 1], [""Muculent Ingot"", 1], [""Serica Cloth"", 2]]","[[""Hexed Bliaut -1"", 1], null, null]"
+,110,"[[""Woodworking"", 55]]",Sorcerer's Stole,Light,,"[[""Yggdreant Bole"", 1], [""Dark Matter"", 1], [""Cypress Log"", 1], [""Moldy Stole"", 1]]","[[""Sorcerer's Stole +1"", 1], [""Sorcerer's Stole +2"", 1], null]"
+,110,"[[""Woodworking"", 55]]",Mirage Stole,Light,,"[[""Yggdreant Bole"", 1], [""Dark Matter"", 1], [""Cypress Log"", 1], [""Moldy Stole"", 1]]","[[""Mirage Stole +1"", 1], [""Mirage Stole +2"", 1], null]"
+,110,"[[""Woodworking"", 55]]",Argute Stole,Light,,"[[""Yggdreant Bole"", 1], [""Dark Matter"", 1], [""Cypress Log"", 1], [""Moldy Stole"", 1]]","[[""Argute Stole +1"", 1], [""Argute Stole +2"", 1], null]"
+,111,[],Ogapepo Cape,Earth,,"[[""Silk Thread"", 1], [""Sheep Chammy"", 2], [""Bztavian Wing"", 2]]","[[""Ogapepo Cape +1"", 1], null, null]"
+,111,[],Cleric's Wand,Light,Weaver's aurum tome,"[[""Dark Matter"", 1], [""Tartarian Chain"", 1], [""Cypress Log"", 1], [""Moldy Club"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Piety Wand"", 1], [""Asclepius"", 1], null]"
+,111,[],Bagua Wand,Light,Weaver's aurum tome,"[[""Dark Matter"", 1], [""Tartarian Chain"", 1], [""Cypress Log"", 1], [""Moldy Club"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Sifang Wand"", 1], [""Bhima"", 1], null]"
+,112,"[[""Goldsmithing"", 70]]",Bewitched Mitts,Earth,,"[[""Cursed Mitts"", 1], [""Hepatizon Ingot"", 1], [""Sif's Macrame"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Mitts"", 1], null, null]"
+,112,"[[""Goldsmithing"", 70]]",Vexed Cuffs,Earth,,"[[""Hexed Cuffs"", 1], [""Bztavian Wing"", 1], [""Hepatizon Ingot"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Cuffs"", 1], null, null]"
+,113,"[[""Bonecraft"", 60]]",Yetshila,Wind,,"[[""Animal Glue"", 1], [""Waktza Rostrum"", 1], [""Waktza Crest"", 1]]","[[""Yetshila +1"", 1], null, null]"
+,113,"[[""Goldsmithing"", 70]]",Bewitched Slacks,Earth,,"[[""Cursed Slacks"", 1], [""Hepatizon Ingot"", 1], [""Eschite Ore"", 1], [""Sif's Macrame"", 1]]","[[""Voodoo Slacks"", 1], null, null]"
+,113,"[[""Alchemy"", 70]]",Vexed Tights,Earth,,"[[""Hexed Tights"", 1], [""Bztavian Wing"", 1], [""Lumber Jill's Spittle"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Tights"", 1], null, null]"
+,113,"[[""Leathercraft"", 70]]",Vexed Kecks,Earth,,"[[""Hexed Kecks"", 1], [""Waktza Crest"", 1], [""Warblade Beak's Hide"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Kecks"", 1], null, null]"
+,114,"[[""Leathercraft"", 70]]",Vexed Mitra,Earth,,"[[""Hexed Mitra"", 1], [""Bztavian Wing"", 1], [""Intuila's Hide"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Mitra"", 1], null, null]"
+,114,"[[""Goldsmithing"", 70]]",Vexed Bonnet,Earth,,"[[""Hexed Bonnet"", 1], [""Waktza Crest"", 1], [""Hepatizon Ingot"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Bonnet"", 1], null, null]"
+,115,"[[""Goldsmithing"", 70]]",Foppish Tunica,Wind,,"[[""Gold Ingot"", 1], [""Gold Thread"", 1], [""Silk Cloth"", 1], [""Celaeno's Cloth"", 1], [""Penelope's Cloth"", 1], [""Defiant Scarf"", 2]]","[[""Foppish Tunica +1"", 1], null, null]"
+,115,"[[""Goldsmithing"", 70]]",Bewitched Dalmatica,Earth,,"[[""Cursed Dalmatica"", 1], [""Hepatizon Ingot"", 1], [""Sif's Macrame"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Dalmatica"", 1], null, null]"
+,115,"[[""Leathercraft"", 70]]",Vexed Bliaut,Earth,,"[[""Hexed Bliaut"", 1], [""Bztavian Wing"", 1], [""Intuila's Hide"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Bliaut"", 1], null, null]"
+,115,[],Moonbow Belt,Earth,,"[[""Moonbow Steel"", 1], [""Moonbow Cloth"", 1], [""Moonbow Leather"", 1], [""Khoma Belt"", 1]]","[[""Moonbow Belt +1"", 1], null, null]"
+,115,[],Moonbeam Cape,Earth,,"[[""Moonbow Cloth"", 1], [""Moonlight Coral"", 1], [""S. Faulpie Leather"", 1]]","[[""Moonlight Cape"", 1], null, null]"
+,115,[],Skrymir Cord,Earth,,"[[""Silver Thread"", 1], [""Gold Thread"", 1], [""Khoma Thread"", 4], [""Wyrm Ash"", 1]]","[[""Skrymir Cord +1"", 1], null, null]"
+,115,[],Baayami Sabots,Earth,Weaver's argentum tome,"[[""Darksteel Sheet"", 1], [""Waktza Rostrum"", 1], [""Plovid Flesh"", 1], [""Khoma Thread"", 3]]","[[""Baayami Sabots +1"", 1], null, null]"
+,115,[],Baayami Cuffs,Earth,Weaver's argentum tome,"[[""Darksteel Sheet"", 2], [""Waktza Rostrum"", 1], [""Plovid Flesh"", 1], [""Khoma Thread"", 3]]","[[""Baayami Cuffs +1"", 1], null, null]"
+,115,[],Baayami Hat,Earth,Weaver's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Waktza Rostrum"", 1], [""Plovid Flesh"", 1], [""Khoma Thread"", 3]]","[[""Baayami Hat +1"", 1], null, null]"
+,115,[],Baayami Slops,Earth,Weaver's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Waktza Rostrum"", 1], [""Plovid Flesh"", 1], [""Khoma Thread"", 1], [""Khoma Cloth"", 1]]","[[""Baayami Slops +1"", 1], null, null]"
+,115,[],Baayami Robe,Earth,Weaver's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Waktza Rostrum"", 1], [""Plovid Flesh"", 2], [""Khoma Thread"", 1], [""Khoma Cloth"", 1]]","[[""Baayami Robe +1"", 1], null, null]"
+,118,[],Klouskap Sash,Earth,,"[[""Cashmere Wool"", 1], [""Defiant Scarf"", 1], [""Penelope's Cloth"", 1]]","[[""Klouskap Sash +1"", 1], null, null]"
diff --git a/datasets/Cooking.txt b/datasets/Cooking.txt
index aeac9d4..7d98a22 100644
--- a/datasets/Cooking.txt
+++ b/datasets/Cooking.txt
@@ -1,7 +1,5 @@
Cooking Crafted Items
-Amateur (1-10)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Worm Paste x2
@@ -376,9 +374,7 @@ Main Craft: Cooking - (10)
Cooking Kit 10
-Recruit (11-20)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Carrion Broth x4
@@ -810,9 +806,7 @@ Main Craft: Cooking - (20)
Cooking Kit 20
-Initiate (21-30)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Roast Pipira
@@ -1320,9 +1314,7 @@ Main Craft: Cooking - (30)
Yogurt
-Novice (31-40)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Salmon Eggs x3
@@ -2060,9 +2052,7 @@ Key Item: Patissier
Apkallu Egg
-Apprentice (41-50)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Apple Vinegar x4
@@ -2948,9 +2938,7 @@ Main Craft: Cooking - (50)
Cooking Kit 50
-Journeyman (51-60)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Bretzel x33
@@ -3907,9 +3895,7 @@ Main Craft: Cooking - (60)
Cooking Kit 60
-Craftsman (61-70)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Cilbir
@@ -4952,9 +4938,7 @@ Main Craft: Cooking - (70)
Grauberg Lettuce
-Artisan (71-80)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Crab Stewpot
@@ -5944,9 +5928,7 @@ Main Craft: Cooking - (80)
Cooking Kit 80
-Adept (81-90)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Karni Yarik
@@ -7076,9 +7058,7 @@ Main Craft: Cooking - (90)
Cooking Kit 90
-Veteran (91-100)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Angler Stewpot
@@ -7989,9 +7969,7 @@ Key Item: Stewpot Mastery
Warthog Meat
-Expert (101-110)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Red Curry
@@ -8312,9 +8290,7 @@ Main Craft: Cooking - (110)
Cerberus Meat
-Authority (111-120)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Altana's Repast
diff --git a/datasets/Cooking_v2.csv b/datasets/Cooking_v2.csv
index f3d38f0..a0fb831 100644
--- a/datasets/Cooking_v2.csv
+++ b/datasets/Cooking_v2.csv
@@ -1,516 +1,516 @@
category,level,subcrafts,name,crystal,key_item,ingredients,hq_yields
-Amateur,1,[],Worm Paste,Water,,"[[""Cupid Worm x 2"", 1], [""La Theine Millet"", 1], [""Lizard Egg"", 1], [""Distilled Water"", 1]]","[[""Worm Paste x 4"", 1], [""Worm Paste x 6"", 1], [""Worm Paste x 8"", 1]]"
-Amateur,1,[],Yogurt,Dark,,"[[""Dogwood Log"", 1], [""Selbina Milk"", 1]]","[[""Yogurt"", 6], [""Yogurt"", 9], [""Yogurt"", 12]]"
-Amateur,2,[],Foulweather Frog,Water,,"[[""Caedarva Frog"", 1]]","[null, null, null]"
-Amateur,2,[],Foulweather Frog,Water,,"[[""Elshimo Frog"", 1]]","[null, null, null]"
-Amateur,2,[],Roasted Corn,Fire,,"[[""Millioncorn"", 1]]","[[""Grilled Corn"", 1], null, null]"
-Amateur,2,[],Dried Berry,Ice,,"[[""Rolanberry"", 3]]","[[""Rolsin"", 3], null, null]"
-Amateur,3,[],Carrot Broth,Water,,"[[""San d'Orian Carrot"", 4]]","[[""Famous Carrot Broth"", 2], [""Famous Carrot Broth"", 4], [""Famous Carrot Broth"", 8]]"
-Amateur,3,[],Peeled Crayfish,Wind,,"[[""Crayfish"", 1]]","[null, null, null]"
-Amateur,3,[],Salted Hare,Fire,,"[[""Rock Salt"", 1], [""Hare Meat"", 1]]","[null, null, null]"
-Amateur,3,[],Sweet Lizard,Fire,,"[[""Lizard Tail"", 1], [""Honey"", 1]]","[null, null, null]"
-Amateur,3,[],Honeyed Egg,Water,,"[[""Honey"", 1], [""Bird Egg"", 1]]","[null, null, null]"
-Amateur,4,[],Hard-boiled Egg,Fire,,"[[""Lizard Egg"", 1], [""Distilled Water"", 1]]","[[""Soft-boiled Egg"", 1], null, null]"
-Amateur,5,[],Pebble Soup,Fire,,"[[""Flint Stone"", 3], [""Distilled Water"", 1]]","[[""Wisdom Soup"", 1], null, null]"
-Amateur,5,[],Pebble Soup,Fire,,"[[""Cooking Kit 5"", 1]]","[null, null, null]"
-Amateur,6,[],Grilled Hare,Fire,,"[[""Dried Marjoram"", 1], [""Hare Meat"", 1]]","[[""Grilled Black Hare"", 1], null, null]"
-Amateur,6,[],Hard-boiled Egg,Fire,,"[[""Bird Egg"", 1], [""Distilled Water"", 1]]","[[""Soft-boiled Egg"", 1], null, null]"
-Amateur,7,[],Herbal Broth,Water,,"[[""Frost Turnip"", 2], [""Beaugreens"", 2]]","[[""Singing Herbal Broth"", 2], [""Singing Herbal Broth"", 4], [""Singing Herbal Broth"", 8]]"
-Amateur,7,[],Cheese Sandwich,Fire,,"[[""Crying Mustard"", 1], [""Black Pepper"", 1], [""White Bread"", 1], [""Mithran Tomato"", 1], [""Chalaimbille"", 1], [""Grauberg Lettuce"", 1]]","[[""Cheese Sandwich +1"", 1], null, null]"
-Amateur,7,[],Peeled Lobster,Wind,,"[[""Gold Lobster"", 1]]","[null, null, null]"
-Amateur,7,[],Peeled Lobster,Wind,,"[[""Istakoz"", 1]]","[null, null, null]"
-Amateur,8,[],Salmon Sub,Earth,,"[[""Crying Mustard"", 1], [""Black Bread"", 1], [""Apple Vinegar"", 1], [""La Theine Cabbage"", 1], [""Smoked Salmon"", 1], [""Mithran Tomato"", 1]]","[[""Fulm-long Sub"", 1], null, null]"
-Amateur,8,[],Speed Apple,Water,,"[[""Faerie Apple"", 1], [""Honey"", 1]]","[null, null, null]"
-Amateur,8,[],Stamina Apple,Water,,"[[""Faerie Apple"", 1], [""Yogurt"", 1]]","[null, null, null]"
-Amateur,8,[],Shadow Apple,Water,,"[[""Coffee Powder"", 1], [""Faerie Apple"", 1]]","[null, null, null]"
-Amateur,9,[],Boiled Crayfish,Fire,,"[[""Crayfish"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Steamed Crayfish"", 1], null, null]"
-Amateur,9,[],Pet Food Alpha,Earth,,"[[""Bird Egg"", 1], [""Hare Meat"", 1], [""Horo Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,10,[],Orange Juice,Water,,"[[""Saruta Orange"", 4]]","[null, null, null]"
-Amateur,10,[],Wormy Broth,Water,,"[[""Little Worm"", 1], [""Shell Bug"", 1]]","[[""Wormy Broth"", 6], [""Wormy Broth"", 8], [""Wormy Broth"", 10]]"
-Amateur,10,[],Ayran,Ice,,"[[""Kazham Peppers"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Yogurt"", 1]]","[null, null, null]"
-Amateur,10,[],Orange Juice,Water,,"[[""Cooking Kit 10"", 1], [""Recruit (11-20)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,11,[],Carrion Broth,Water,,"[[""Gelatin"", 1], [""Hare Meat"", 2], [""Rotten Meat"", 1]]","[[""Cold Carrion Broth"", 2], [""Cold Carrion Broth"", 4], [""Cold Carrion Broth"", 8]]"
-Amateur,11,[],Dried Date,Ice,,"[[""Date"", 1]]","[[""Dried Date +1"", 1], null, null]"
-Amateur,11,[],Herb Paste,Water,,"[[""Tokopekko Wildgrass"", 2], [""La Theine Millet"", 1], [""Lizard Egg"", 1], [""Distilled Water"", 1]]","[[""Herb Paste"", 4], [""Herb Paste"", 6], [""Herb Paste"", 8]]"
-Amateur,11,[],Sliced Sardine,Wind,,"[[""Bastore Sardine"", 1]]","[null, null, null]"
-Amateur,11,[],Sliced Sardine,Wind,,"[[""Hamsi"", 1]]","[null, null, null]"
-Amateur,11,[],Sliced Sardine,Wind,,"[[""Senroh Sardine"", 1]]","[null, null, null]"
-Amateur,12,[],Honey,Wind,,"[[""Beehive Chip"", 4]]","[[""Honey"", 6], [""Honey"", 9], [""Honey"", 12]]"
-Amateur,13,"[[""Alchemy"", 5]]",Dried Marjoram,Ice,,"[[""Fresh Marjoram"", 8]]","[[""Dried Marjoram"", 12], null, null]"
-Amateur,13,[],Sliced Cod,Wind,,"[[""Tiger Cod"", 1]]","[null, null, null]"
-Amateur,14,[],Tortilla,Fire,,"[[""Olive Oil"", 1], [""San d'Orian Flour"", 1], [""Millioncorn"", 1], [""Rock Salt"", 1]]","[[""Tortilla Bueno"", 6], [""Tortilla Bueno"", 9], [""Tortilla Bueno"", 12]]"
-Amateur,14,[],Army Biscuit,Fire,,"[[""San d'Orian Flour"", 1], [""Rye Flour"", 1], [""Selbina Butter"", 1], [""Rock Salt"", 1], [""Simsim"", 1], [""Honey"", 1], [""Yogurt"", 1]]","[[""Army Biscuit"", 33], [""Army Biscuit"", 66], [""Army Biscuit"", 99]]"
-Amateur,15,[],Bug Broth,Water,,"[[""Lugworm"", 2], [""Shell Bug"", 2]]","[[""Quadav Bug Broth"", 2], [""Quadav Bug Broth"", 4], [""Quadav Bug Broth"", 8]]"
-Amateur,15,[],Slice of Bluetail,Wind,,"[[""Bluetail"", 1]]","[null, null, null]"
-Amateur,15,[],Saltena,Fire,,"[[""Popoto"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Imperial Flour"", 1], [""Wild Onion"", 1], [""Cockatrice Meat"", 1], [""Bird Egg"", 1], [""Paprika"", 1]]","[[""Saltena"", 4], [""Saltena"", 6], [""Saltena"", 8]]"
-Amateur,15,[],Stuffed Pitaru,Fire,,"[[""Maple Sugar"", 1], [""Rock Salt"", 1], [""Imperial Flour"", 1], [""Giant Sheep Meat"", 1], [""Mithran Tomato"", 1], [""Distilled Water"", 1], [""Grauberg Lettuce"", 1], [""Paprika"", 1]]","[[""Stuffed Pitaru"", 4], [""Stuffed Pitaru"", 6], [""Stuffed Pitaru"", 8]]"
-Amateur,15,[],Slice of Bluetail,Wind,,"[[""Cooking Kit 15"", 1]]","[null, null, null]"
-Amateur,16,[],Roast Mushroom,Fire,,"[[""Danceshroom"", 2], [""Rock Salt"", 1]]","[[""Witch Kabob"", 1], null, null]"
-Amateur,16,[],Roast Mushroom,Fire,,"[[""Woozyshroom"", 2], [""Rock Salt"", 1]]","[[""Witch Kabob"", 1], null, null]"
-Amateur,16,[],Roast Mushroom,Fire,,"[[""Sleepshroom"", 2], [""Rock Salt"", 1]]","[[""Witch Kabob"", 1], null, null]"
-Amateur,16,[],Wispy Broth,Water,,"[[""Locust Elutriator"", 1], [""Shell Bug"", 1]]","[[""Wispy Broth"", 6], [""Wispy Broth"", 8], [""Wispy Broth"", 12]]"
-Amateur,17,[],Roast Mutton,Fire,,"[[""Dried Marjoram"", 1], [""Giant Sheep Meat"", 1], [""Mhaura Garlic"", 1]]","[[""Juicy Mutton"", 1], null, null]"
-Amateur,17,[],Slice of Carp,Wind,,"[[""Moat Carp"", 1]]","[null, null, null]"
-Amateur,17,[],Slice of Carp,Wind,,"[[""Forest Carp"", 1]]","[null, null, null]"
-Amateur,18,[],Pea Soup,Fire,,"[[""Blue Peas"", 3], [""Distilled Water"", 1], [""Dried Marjoram"", 1], [""Wild Onion"", 1]]","[[""Emerald Soup"", 1], null, null]"
-Amateur,18,[],Lik Kabob,Fire,,"[[""Lik"", 1], [""Bomb Arm"", 1]]","[[""Grilled Lik"", 1], null, null]"
-Amateur,19,[],Pet Food Beta,Earth,,"[[""Bird Egg"", 1], [""Distilled Water"", 1], [""Giant Sheep Meat"", 1], [""Horo Flour"", 1]]","[null, null, null]"
-Amateur,19,[],Roast Carp,Fire,,"[[""Forest Carp"", 1], [""Rock Salt"", 1]]","[[""Broiled Carp"", 1], null, null]"
-Amateur,19,[],Roast Carp,Fire,,"[[""Moat Carp"", 1], [""Rock Salt"", 1]]","[[""Broiled Carp"", 1], null, null]"
-Amateur,19,[],Pet Food Beta,Earth,,"[[""Apkallu Egg"", 1], [""Distilled Water"", 1], [""Karakul Meat"", 1], [""Horo Flour"", 1]]","[null, null, null]"
-Amateur,20,[],Apple Juice,Water,,"[[""Faerie Apple"", 4]]","[null, null, null]"
-Amateur,20,[],Selbina Butter,Ice,,"[[""Selbina Milk"", 1], [""Rock Salt"", 1]]","[[""Selbina Butter"", 6], [""Selbina Butter"", 9], [""Selbina Butter"", 12]]"
-Amateur,20,[],Apple Juice,Water,,"[[""Cooking Kit 20"", 1], [""Initiate (21-30)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,21,[],Roast Pipira,Fire,,"[[""Pipira"", 1], [""Rock Salt"", 1]]","[[""Broiled Pipira"", 1], null, null]"
-Amateur,21,[],Soy Milk,Fire,,"[[""Blue Peas"", 2], [""Distilled Water"", 1]]","[[""Soy Milk"", 2], [""Soy Milk"", 3], [""Soy Milk"", 4]]"
-Amateur,21,[],Vegetable Paste,Water,,"[[""Gysahl Greens"", 2], [""La Theine Millet"", 1], [""Lizard Egg"", 1], [""Distilled Water"", 1]]","[[""Vegetable Paste"", 4], [""Vegetable Paste"", 6], [""Vegetable Paste"", 8]]"
-Amateur,22,[],Baked Popoto,Fire,,"[[""Popoto"", 1], [""Selbina Butter"", 1]]","[[""Pipin' Popoto"", 1], null, null]"
-Amateur,22,[],White Honey,Wind,,"[[""Pephredo Hive Chip"", 4]]","[[""White Honey"", 6], [""White Honey"", 9], [""White Honey"", 12]]"
-Amateur,23,[],Baked Apple,Fire,,"[[""Cinnamon"", 1], [""Faerie Apple"", 1], [""Maple Sugar"", 1], [""Selbina Butter"", 1]]","[[""Sweet Baked Apple"", 1], null, null]"
-Amateur,23,[],Goblin Chocolate,Dark,,"[[""Kukuru Bean"", 3], [""Cobalt Jellyfish"", 1], [""Selbina Milk"", 1], [""Honey"", 1], [""Sunflower Seeds"", 1], [""Wijnruit"", 1]]","[[""Hobgoblin Chocolate"", 33], [""Hobgoblin Chocolate"", 66], [""Hobgoblin Chocolate"", 99]]"
-Amateur,23,[],Peperoncino,Fire,Noodle Kneading,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Spaghetti"", 1], [""Misareaux Parsley"", 1]]","[[""Peperoncino"", 4], [""Peperoncino +1"", 2], [""Peperoncino +1"", 4]]"
-Amateur,24,[],Puls,Fire,,"[[""Distilled Water"", 1], [""Rye Flour"", 1], [""Horo Flour"", 1], [""Honey"", 1]]","[[""Delicious Puls"", 1], null, null]"
-Amateur,24,[],Salsa,Water,,"[[""Kazham Peppers"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""Mithran Tomato"", 1], [""Gysahl Greens"", 1]]","[null, null, null]"
-Amateur,25,[],Roast Coffee Beans,Fire,,"[[""Coffee Beans"", 1]]","[[""Roast Coffee Beans"", 4], [""Roast Coffee Beans"", 6], [""Roast Coffee Beans"", 8]]"
-Amateur,25,[],Roasted Almonds,Fire,,"[[""Almond"", 1]]","[[""Roasted Almonds"", 6], [""Roasted Almonds"", 8], null]"
-Amateur,25,[],Vegetable Soup,Fire,,"[[""Frost Turnip"", 1], [""San d'Orian Carrot"", 1], [""Eggplant"", 1], [""La Theine Cabbage"", 1], [""Bay Leaves"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Vegetable Broth"", 1], null, null]"
-Amateur,25,[],Vegetable Soup,Fire,,"[[""Cooking Kit 25"", 1]]","[null, null, null]"
-Amateur,26,[],Meat Jerky,Ice,,"[[""Giant Sheep Meat"", 1], [""Rock Salt"", 1], [""Dried Marjoram"", 1]]","[[""Sheep Jerky"", 2], null, null]"
-Amateur,26,[],Vegetable Gruel,Fire,,"[[""San d'Orian Flour"", 1], [""Chamomile"", 1], [""Frost Turnip"", 1], [""Rarab Tail"", 1], [""Distilled Water"", 1], [""Beaugreens"", 1]]","[[""Medicinal Gruel"", 1], null, null]"
-Amateur,27,[],Boiled Crab,Fire,,"[[""Bay Leaves"", 1], [""Rock Salt"", 1], [""Land Crab Meat"", 1], [""Distilled Water"", 1]]","[[""Steamed Crab"", 1], null, null]"
-Amateur,27,[],Zoni,Fire,,"[[""Rock Salt"", 1], [""Sticky Rice"", 1], [""Tokopekko Wildgrass"", 1], [""San d'Orian Carrot"", 1], [""Tiger Cod"", 1], [""Distilled Water"", 1], [""Lakerda"", 1], [""Ziz Meat"", 1]]","[[""Zesty Zoni"", 1], null, null]"
-Amateur,27,[],Konjak,Fire,,"[[""Seashell"", 1], [""Distilled Water"", 1], [""Konjak Tuber"", 1]]","[[""Konjak"", 4], [""Konjak"", 6], [""Konjak"", 8]]"
-Amateur,28,[],Meat Broth,Water,,"[[""Gelatin"", 1], [""Dhalmel Meat"", 1], [""Giant Sheep Meat"", 1], [""Hare Meat"", 1]]","[[""Warm Meat Broth"", 2], [""Warm Meat Broth"", 4], [""Warm Meat Broth"", 8]]"
-Amateur,28,[],Pomodoro Sauce,Water,,"[[""Bay Leaves"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Holy Basil"", 1], [""Wild Onion"", 1], [""Mithran Tomato"", 1], [""Misareaux Parsley"", 1]]","[null, null, null]"
-Amateur,28,[],Vegetable Gruel,Fire,,"[[""Chamomile"", 1], [""Frost Turnip"", 1], [""Tarutaru Rice"", 1], [""Batagreens"", 1], [""Rarab Tail"", 1], [""Distilled Water"", 1]]","[[""Medicinal Gruel"", 1], null, null]"
-Amateur,29,[],Dhalmel Steak,Fire,,"[[""Black Pepper"", 1], [""Olive Oil"", 1], [""Dhalmel Meat"", 1]]","[[""Wild Steak"", 1], null, null]"
-Amateur,29,[],Insect Ball,Earth,,"[[""Millioncorn"", 1], [""Little Worm"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,29,[],Pet Food Gamma,Earth,,"[[""Dhalmel Meat"", 1], [""Horo Flour"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Pet Food Gamma"", 8], [""Pet Food Gamma"", 10], [""Pet Food Gamma"", 12]]"
-Amateur,29,[],Smoked Salmon,Fire,,"[[""Walnut Log"", 1], [""Cheval Salmon"", 1], [""Rock Salt"", 1]]","[null, null, null]"
-Amateur,30,[],Pineapple Juice,Water,,"[[""Kazham Pineapple"", 2]]","[null, null, null]"
-Amateur,30,[],Elshena,Fire,,"[[""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Imperial Flour"", 1], [""Woozyshroom"", 1], [""Scream Fungus"", 1], [""Puffball"", 1], [""Bird Egg"", 1]]","[[""Elshena"", 4], [""Elshena"", 6], [""Elshena"", 8]]"
-Amateur,30,[],Poultry Pitaru,Fire,,"[[""Maple Sugar"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Imperial Flour"", 1], [""Cockatrice Meat"", 1], [""Distilled Water"", 1], [""Apkallu Egg"", 1], [""Grauberg Lettuce"", 1]]","[[""Poultry Pitaru"", 4], [""Poultry Pitaru"", 6], [""Poultry Pitaru"", 8]]"
-Amateur,30,[],Anchovy,Dark,,"[[""Bay Leaves"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Icefish"", 4]]","[null, null, null]"
-Amateur,30,[],Anchovy,Dark,,"[[""Bay Leaves"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Sandfish"", 4]]","[null, null, null]"
-Amateur,30,[],Pineapple Juice,Water,,"[[""Cooking Kit 30"", 1]]","[null, null, null]"
-Amateur,30,[],Yayla Corbasi,Fire,,"[[""Selbina Butter"", 1], [""Rock Salt"", 1], [""Apple Mint"", 1], [""Imperial Rice"", 1], [""Imperial Flour"", 1], [""Distilled Water"", 1], [""Apkallu Egg"", 1], [""Yogurt"", 1], [""Novice (31-40)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Yayla Corbasi +1"", 1], null, null]"
-Amateur,31,[],Salmon Eggs,Lightning,,"[[""Cheval Salmon"", 1]]","[[""Salmon Eggs"", 6], [""Salmon Eggs"", 9], [""Salmon Eggs"", 12]]"
-Amateur,31,[],Carrot Paste,Water,,"[[""Vomp Carrot"", 2], [""La Theine Millet"", 1], [""Lizard Egg"", 1], [""Distilled Water"", 1]]","[[""Carrot Paste"", 4], [""Carrot Paste"", 6], [""Carrot Paste"", 8]]"
-Amateur,31,[],Rice Ball,Fire,,"[[""Tarutaru Rice"", 1], [""Pamtam Kelp"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Rogue Rice Ball"", 2], [""Rogue Rice Ball"", 3], [""Rogue Rice Ball"", 4]]"
-Amateur,31,[],Sardine Ball,Earth,,"[[""Bastore Sardine"", 1], [""Horo Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,31,[],Sardine Ball,Earth,,"[[""Hamsi"", 1], [""Horo Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,31,[],Sardine Ball,Earth,,"[[""Senroh Sardine"", 1], [""Horo Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,32,[],Acorn Cookie,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Acorn"", 4], [""Honey"", 1], [""Crawler Egg"", 1]]","[[""Wild Cookie"", 33], [""Wild Cookie"", 33], [""Wild Cookie"", 99]]"
-Amateur,32,[],Roast Trout,Fire,,"[[""Shining Trout"", 1], [""Rock Salt"", 1]]","[[""Broiled Trout"", 1], null, null]"
-Amateur,32,[],Roast Trout,Fire,,"[[""Rock Salt"", 1], [""Alabaligi"", 1]]","[[""Broiled Trout"", 1], null, null]"
-Amateur,32,[],Pepper Biscuit,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Black Pepper"", 1], [""Crawler Egg"", 1], [""Honey"", 1], [""Acorn"", 3]]","[[""Pepper Biscuit"", 6], [""Pepper Biscuit"", 9], [""Pepper Biscuit"", 12]]"
-Amateur,32,[],Fire Biscuit,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Kazham Peppers"", 1], [""Crawler Egg"", 1], [""Honey"", 1], [""Acorn"", 3]]","[[""Fire Biscuit"", 6], [""Fire Biscuit"", 9], [""Fire Biscuit"", 12]]"
-Amateur,33,[],Nebimonite Bake,Fire,,"[[""Selbina Butter"", 1], [""Nebimonite"", 1], [""Mhaura Garlic"", 1]]","[[""Buttered Nebimonite"", 1], null, null]"
-Amateur,33,[],Ortolana,Fire,Noodle Kneading,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Spaghetti"", 1], [""Frost Turnip"", 1], [""Eggplant"", 1], [""Nopales"", 1]]","[[""Ortolana"", 4], [""Ortolana +1"", 2], [""Ortolana +1"", 4]]"
-Amateur,33,[],Trout Ball,Earth,,"[[""Shining Trout"", 1], [""Rye Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,33,[],Trout Ball,Earth,,"[[""Alabaligi"", 1], [""Rye Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,33,[],Lucky Carrot Broth,Water,,"[[""San d'Orian Carrot"", 3], [""Snoll Arm"", 1]]","[[""Lucky Carrot Broth"", 6], [""Lucky Carrot Broth"", 8], [""Lucky Carrot Broth"", 10]]"
-Amateur,34,[],Black Bread,Fire,,"[[""Rye Flour"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Pumpernickel"", 4], null, null]"
-Amateur,34,[],Iron Bread,Fire,,"[[""San d'Orian Flour"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Steel Bread"", 4], null, null]"
-Amateur,35,[],Maple Cake,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Selbina Milk"", 1], [""Bird Egg"", 1], [""Apkallu Egg"", 1]]","[[""Silken Siesta"", 1], null, null]"
-Amateur,35,[],Meatball,Earth,,"[[""San d'Orian Flour"", 1], [""Distilled Water"", 1], [""Hare Meat"", 1]]","[null, null, null]"
-Amateur,35,[],Mushroom Soup,Fire,,"[[""Rock Salt"", 1], [""Danceshroom"", 1], [""Scream Fungus"", 1], [""Coral Fungus"", 1], [""Distilled Water"", 1]]","[[""Witch Soup"", 1], null, null]"
-Amateur,35,[],Cherry Macaron,Fire,Patissier,"[[""Maple Sugar"", 1], [""Almond"", 1], [""Lizard Egg"", 1], [""Yagudo Cherry"", 1]]","[[""Cherry Macaron"", 4], [""Cherry Macaron"", 6], [""Cherry Macaron"", 8]]"
-Amateur,35,[],Butter Crepe x 2,Fire,,"[[""San d'Orian Flour"", 1], [""Maple Sugar"", 1], [""Selbina Butter"", 1], [""Bird Egg"", 1], [""Uleguerand Milk"", 1]]","[[""Butter Crepe"", 4], [""Crepe Delice"", 2], [""Crepe Delice"", 4]]"
-Amateur,35,[],Meatball,Earth,,"[[""Cooking Kit 35"", 1]]","[null, null, null]"
-Amateur,36,[],Buffalo Jerky,Ice,,"[[""Dried Marjoram"", 1], [""Rock Salt"", 1], [""Buffalo Meat"", 1]]","[[""Bison Jerky"", 2], null, null]"
-Amateur,36,[],Windurst Salad,Wind,,"[[""Apple Vinegar"", 1], [""Kazham Pineapple"", 1], [""San d'Orian Carrot"", 1], [""Pamamas"", 1], [""Mithran Tomato"", 1], [""La Theine Cabbage"", 1], [""Rolanberry"", 1], [""Yagudo Cherry"", 1]]","[[""Timbre Timbers Salad"", 1], null, null]"
-Amateur,37,[],Bubble Chocolate,Fire,,"[[""Kukuru Bean"", 4], [""Selbina Milk"", 1], [""Maple Sugar"", 1]]","[[""Heart Chocolate"", 1], null, null]"
-Amateur,37,[],Bloody Chocolate,Fire,Patissier,"[[""Maple Sugar"", 1], [""Kukuru Bean"", 4], [""Flytrap Leaf"", 1], [""Selbina Milk"", 1]]","[[""Bloody Chocolate"", 6], [""Bloody Chocolate"", 9], [""Bloody Chocolate"", 12]]"
-Amateur,37,[],Fish Broth,Water,,"[[""Bastore Sardine"", 4]]","[[""Fish Oil Broth"", 1], [""Fish Oil Broth"", 2], [""Fish Oil Broth"", 3]]"
-Amateur,37,[],Fish Broth,Water,,"[[""Hamsi"", 4]]","[[""Fish Oil Broth"", 1], [""Fish Oil Broth"", 2], [""Fish Oil Broth"", 3]]"
-Amateur,37,[],Fish Broth,Water,,"[[""Senroh Sardine"", 4]]","[[""Fish Oil Broth"", 1], [""Fish Oil Broth"", 2], [""Fish Oil Broth"", 3]]"
-Amateur,37,[],Dancing Herbal Broth,Water,,"[[""Frost Turnip"", 1], [""Beaugreens"", 2], [""Napa"", 1]]","[[""Dancing Herbal Broth"", 6], [""Dancing Herbal Broth"", 8], [""Dancing Herbal Broth"", 10]]"
-Amateur,37,[],Chikuwa,Earth,,"[[""Rock Salt"", 1], [""Bastore Bream"", 1], [""Tiger Cod"", 1]]","[[""Chikuwa"", 4], [""Chikuwa"", 6], [""Chikuwa"", 8]]"
-Amateur,38,[],Jack-o'-Lantern,Fire,,"[[""Ogre Pumpkin"", 1], [""Beeswax"", 1]]","[null, null, null]"
-Amateur,38,[],Meat Mithkabob,Fire,,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Wild Onion"", 1], [""Ziz Meat"", 1]]","[[""Meat Mithkabob"", 12], [""Meat Chiefkabob"", 6], [""Meat Chiefkabob"", 12]]"
-Amateur,38,[],Meat Mithkabob,Fire,,"[[""Kazham Peppers"", 1], [""Cockatrice Meat"", 1], [""Mhaura Garlic"", 1], [""Wild Onion"", 1]]","[[""Meat Mithkabob"", 12], [""Meat Chiefkabob"", 6], [""Meat Chiefkabob"", 12]]"
-Amateur,38,[],Miso Soup,Fire,,"[[""Adoulinian Kelp"", 1], [""Cotton Tofu"", 1], [""Cibol"", 1], [""Miso"", 1], [""Dried Bonito"", 1]]","[[""Miso Soup +1"", 1], null, null]"
-Amateur,39,[],Balik Sandvici,Fire,,"[[""Olive Oil"", 1], [""Rock Salt"", 1], [""Kitron"", 1], [""White Bread"", 1], [""Wild Onion"", 1], [""Mithran Tomato"", 1], [""Uskumru"", 1]]","[[""Balik Sandvici +1"", 1], null, null]"
-Amateur,39,"[[""Clothcraft"", 2]]",Cotton Tofu,Earth,,"[[""Cotton Cloth"", 1], [""Bittern"", 1], [""Soy Milk"", 1]]","[[""Cotton Tofu"", 6], [""Cotton Tofu"", 9], [""Cotton Tofu"", 12]]"
-Amateur,39,[],Pet Food Delta,Earth,,"[[""Rye Flour"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1], [""Land Crab Meat"", 1]]","[[""Pet Food Delta"", 8], [""Pet Food Delta"", 10], [""Pet Food Delta"", 12]]"
-Amateur,40,[],Melanzane,Fire,Noodle Kneading,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Spaghetti"", 1], [""Wild Onion"", 1], [""Eggplant"", 1], [""Pomodoro Sauce"", 1]]","[[""Melanzane"", 4], [""Melanzane"", 6], [""Melanzane +1"", 2]]"
-Amateur,40,[],Melon Juice,Water,,"[[""Watermelon"", 1], [""Thundermelon"", 1]]","[null, null, null]"
-Amateur,40,[],Marinara Pizza,Fire,,"[[""Mhaura Garlic"", 1], [""Dried Marjoram"", 1], [""Holy Basil"", 1], [""Pizza Dough"", 1], [""Chalaimbille"", 1], [""Marinara Sauce"", 1]]","[[""Marinara Pizza +1"", 1], null, null]"
-Amateur,40,[],Ulbuconut Milk,Wind,,"[[""Elshimo Coconut"", 1]]","[[""Ulbuconut Milk +1"", 1], null, null]"
-Amateur,40,[],Ulbuconut Milk,Wind,,"[[""Ulbuconut"", 1]]","[[""Ulbuconut Milk +1"", 1], null, null]"
-Amateur,40,[],Marinara Slice,Fire,,"[[""Mhaura Garlic"", 1], [""Dried Marjoram"", 1], [""Holy Basil"", 1], [""Pizza Dough"", 1], [""Chalaimbille"", 1], [""Marinara Sauce"", 1], [""Pizza Cutter"", 1]]","[[""Marinara Slice"", 8], [""Marinara Slice +1"", 6], [""Marinara Slice +1"", 8]]"
-Amateur,40,[],Melon Juice,Water,,"[[""Cooking Kit 40"", 1]]","[null, null, null]"
-Amateur,40,[],Sutlac,Fire,Patissier,"[[""Maple Sugar"", 1], [""Rock Salt"", 1], [""Imperial Rice"", 1], [""Cornstarch"", 1], [""Selbina Milk"", 1], [""Apkallu Egg"", 1], [""Apprentice (41-50)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Sutlac +1"", 1], null, null]"
-Amateur,41,[],Apple Vinegar,Dark,,"[[""Honey"", 1], [""Faerie Apple"", 3]]","[[""Apple Vinegar"", 6], [""Apple Vinegar"", 9], [""Apple Vinegar"", 12]]"
-Amateur,41,[],Salmon Rice Ball,Fire,,"[[""Smoked Salmon"", 1], [""Tarutaru Rice"", 1], [""Pamtam Kelp"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Naval Rice Ball"", 2], null, null]"
-Amateur,41,[],Salmon Roe,Dark,,"[[""Rock Salt"", 1], [""Salmon Eggs"", 1]]","[[""Salmon Roe"", 3], [""Salmon Roe"", 6], [""Salmon Roe"", 9]]"
-Amateur,41,[],Windurst Taco,Fire,,"[[""Hare Meat"", 1], [""Wild Onion"", 1], [""Tortilla"", 2], [""Stone Cheese"", 1], [""Windurst Salad"", 1], [""Salsa"", 1]]","[[""Windurst Taco"", 12], [""Timbre Timbers Taco"", 6], [""Timbre Timbers Taco"", 12]]"
-Amateur,41,[],Bubbling Carrion Broth,Fire,,"[[""Kazham Peppers"", 1], [""Gelatin"", 1], [""Hare Meat"", 1], [""Distilled Water"", 1], [""Rotten Meat"", 1]]","[[""Bubbling Carrion Broth"", 6], [""Bubbling Carrion Broth"", 8], [""Bubbling Carrion Broth"", 10]]"
-Amateur,42,[],Pie Dough,Water,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Rock Salt"", 1]]","[[""Pie Dough"", 6], [""Pie Dough"", 9], [""Pie Dough"", 12]]"
-Amateur,42,[],Pizza Dough,Water,,"[[""Selbina Butter"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Semolina"", 1]]","[[""Pizza Dough"", 6], [""Pizza Dough"", 9], [""Pizza Dough"", 12]]"
-Amateur,42,[],Simit,Fire,,"[[""Maple Sugar"", 1], [""Rock Salt"", 1], [""Simsim"", 1], [""Imperial Flour"", 1], [""Selbina Milk"", 1], [""Buburimu Grape"", 1], [""Distilled Water"", 1], [""White Honey"", 1]]","[[""Simit +1"", 4], null, null]"
-Amateur,43,[],Fish Broth,Water,,"[[""Uskumru"", 2]]","[null, null, null]"
-Amateur,43,[],Tomato Juice,Water,,"[[""Rock Salt"", 1], [""Mithran Tomato"", 3]]","[null, null, null]"
-Amateur,43,[],Cherry Muffin,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Selbina Milk"", 1], [""Yagudo Cherry"", 1], [""Bird Egg"", 1]]","[[""Cherry Muffin +1"", 1], null, null]"
-Amateur,43,[],Saffron,Wind,,"[[""Saffron Blossom"", 3]]","[[""Saffron"", 2], [""Saffron"", 3], [""Saffron"", 4]]"
-Amateur,44,[],Spaghetti,Water,Noodle Kneading,"[[""Rock Salt"", 1], [""Semolina"", 1]]","[[""Spaghetti"", 2], [""Spaghetti"", 3], [""Spaghetti"", 4]]"
-Amateur,44,[],White Bread,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Honey"", 1]]","[[""Pain de Neige"", 4], null, null]"
-Amateur,44,[],Bavarois,Ice,,"[[""Maple Sugar"", 1], [""Gelatin"", 1], [""Apple Mint"", 1], [""Vanilla"", 1], [""Bird Egg"", 1], [""Uleguerand Milk"", 1]]","[[""Bavarois +1"", 1], null, null]"
-Amateur,45,[],Menemen,Fire,,"[[""Kazham Peppers"", 1], [""Selbina Butter"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""Mithran Tomato"", 1], [""Puk Egg"", 2]]","[[""Menemen +1"", 1], null, null]"
-Amateur,45,[],Goulash,Fire,,"[[""Popoto"", 1], [""Coeurl Meat"", 1], [""Mithran Tomato"", 1], [""Distilled Water"", 1], [""Paprika"", 1]]","[[""Goulash +1"", 1], null, null]"
-Amateur,45,[],Goulash,Fire,,"[[""Popoto"", 1], [""Mithran Tomato"", 1], [""Distilled Water"", 1], [""Lynx Meat"", 1], [""Paprika"", 1]]","[[""Goulash +1"", 1], null, null]"
-Amateur,45,[],Fish Broth,Water,,"[[""Bluetail"", 2]]","[[""Fish Oil Broth"", 4], [""Fish Oil Broth"", 8], [""Fish Oil Broth"", 12]]"
-Amateur,45,[],Fish Broth,Water,,"[[""Uskumru"", 2]]","[[""Fish Oil Broth"", 4], [""Fish Oil Broth"", 8], [""Fish Oil Broth"", 12]]"
-Amateur,45,[],Fish Broth,Water,,"[[""Lakerda"", 1]]","[[""Fish Oil Broth"", 2], [""Fish Oil Broth"", 4], [""Fish Oil Broth"", 6]]"
-Amateur,45,[],Fish Broth,Water,,"[[""Gugru Tuna"", 1]]","[[""Fish Oil Broth"", 2], [""Fish Oil Broth"", 4], [""Fish Oil Broth"", 6]]"
-Amateur,45,[],Tomato Soup,Fire,,"[[""Tomato Juice"", 1], [""Two-Leaf Mandragora Bud"", 1], [""Wild Onion"", 1], [""Dried Marjoram"", 1], [""Distilled Water"", 1]]","[[""Sunset Soup"", 1], null, null]"
-Amateur,45,[],Soba Noodles,Water,Noodle Kneading,"[[""Buckwheat Flour"", 1]]","[[""Soba Noodles"", 2], [""Soba Noodles"", 3], [""Soba Noodles"", 4]]"
-Amateur,45,[],Orange Cake,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Selbina Milk"", 1], [""Saruta Orange"", 1], [""Bird Egg"", 1], [""Apkallu Egg"", 1]]","[[""Silken Squeeze"", 1], null, null]"
-Amateur,45,[],Sugar Rusk,Fire,Patissier,"[[""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Iron Bread"", 1], [""Bird Egg"", 1]]","[[""Sugar Rusk"", 4], [""Sugar Rusk"", 6], [""Sugar Rusk"", 8]]"
-Amateur,45,[],Wool Grease,Wind,,"[[""Lesser Chigoe"", 2], [""Shell Bug"", 1]]","[[""Wool Grease"", 6], [""Wool Grease"", 8], [""Wool Grease"", 10]]"
-Amateur,45,[],Goblin Bug Broth,Water,,"[[""Rotten Meat"", 1], [""Lugworm"", 1], [""Shell Bug"", 2]]","[[""Goblin Bug Broth"", 6], [""Goblin Bug Broth"", 8], [""Goblin Bug Broth"", 10]]"
-Amateur,45,[],Menemen,Fire,,"[[""Cooking Kit 45"", 1]]","[null, null, null]"
-Amateur,45,[],Sea Dragon Liver,Earth,,"[[""Soryu's Liver"", 1], [""Sekiryu's Liver"", 1], [""Hakuryu's Liver"", 1], [""Kokuryu's Liver"", 1]]","[[""Sea Dragon Liver"", 6], [""Sea Dragon Liver"", 9], [""Sea Dragon Liver"", 12]]"
-Amateur,46,[],Pickled Herring,Ice,,"[[""Nosteau Herring"", 1], [""Dried Marjoram"", 1], [""Rock Salt"", 1]]","[[""Pickled Herring"", 4], [""Viking Herring"", 4], null]"
-Amateur,46,[],Vongole Rosso,Fire,Noodle Kneading,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Spaghetti"", 1], [""Wild Onion"", 1], [""Vongola Clam"", 1], [""Pomodoro Sauce"", 1]]","[[""Vongole Rosso"", 4], [""Vongole Rosso +1"", 2], [""Vongole Rosso +1"", 4]]"
-Amateur,46,[],Green Curry Bun,Fire,,"[[""San d'Orian Flour"", 1], [""Olive Oil"", 1], [""Green Curry"", 1], [""Bird Egg"", 1]]","[[""Green Curry Bun"", 8], [""G. Curry Bun +1"", 6], [""G. Curry Bun +1"", 8]]"
-Amateur,46,[],Ramen Noodles,Water,Noodle Kneading,"[[""San d'Orian Flour"", 1], [""Rock Salt"", 1], [""Baking Soda"", 1], [""Distilled Water"", 1]]","[[""Ramen Noodles"", 2], [""Ramen Noodles"", 3], [""Ramen Noodles"", 4]]"
-Amateur,47,[],Cinna-cookie,Fire,,"[[""San d'Orian Flour"", 1], [""Cinnamon"", 1], [""Selbina Butter"", 1], [""Lizard Egg"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1]]","[[""Coin Cookie"", 33], [""Coin Cookie"", 33], [""Coin Cookie"", 99]]"
-Amateur,47,[],Mont Blanc,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Chestnut"", 2], [""Selbina Milk"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Golden Royale"", 1], null, null]"
-Amateur,47,[],Chocolate Crepe,Fire,,"[[""San d'Orian Flour"", 1], [""Almond"", 1], [""Honey"", 1], [""Pamamas"", 1], [""Bubble Chocolate"", 1], [""Bird Egg"", 1], [""Uleguerand Milk"", 1]]","[[""Chocolate Crepe"", 4], [""Crepe Caprice"", 2], [""Crepe Caprice"", 4]]"
-Amateur,48,[],Apple Pie,Fire,,"[[""Pie Dough"", 1], [""Maple Sugar"", 1], [""Cinnamon"", 1], [""Lizard Egg"", 1], [""Faerie Apple"", 1]]","[[""Apple Pie +1"", 4], null, null]"
-Amateur,48,[],Tomato Soup,Fire,,"[[""Dried Marjoram"", 1], [""Bay Leaves"", 1], [""Wild Onion"", 1], [""Tomato Juice"", 1], [""Distilled Water"", 1]]","[[""Sunset Soup"", 1], null, null]"
-Amateur,49,[],Cinna-cookie,Fire,,"[[""San d'Orian Flour"", 1], [""Cinnamon"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Coin Cookie"", 33], [""Coin Cookie"", 33], [""Coin Cookie"", 99]]"
-Amateur,49,[],Fish Mithkabob,Fire,,"[[""Shall Shell"", 2], [""Nebimonite"", 1], [""Bastore Sardine"", 1], [""Bluetail"", 1]]","[[""Fish Mithkabob"", 12], [""Fish Chiefkabob"", 6], [""Fish Chiefkabob"", 12]]"
-Amateur,49,[],Fish Mithkabob,Fire,,"[[""Hamsi"", 1], [""Uskumru"", 1], [""Ahtapot"", 1], [""Istiridye"", 2]]","[[""Fish Mithkabob"", 12], [""Fish Chiefkabob"", 6], [""Fish Chiefkabob"", 12]]"
-Amateur,49,[],Garlic Cracker,Fire,,"[[""Tarutaru Rice"", 1], [""Mhaura Garlic"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Garlic Cracker"", 99], [""Garlic Cracker +1"", 33], [""Garlic Cracker +1"", 99]]"
-Amateur,49,[],Goblin Stir-Fry,Fire,,"[[""Olive Oil"", 1], [""La Theine Cabbage"", 1], [""Eggplant"", 1], [""Rarab Tail"", 1], [""Ginger Root"", 1], [""Kazham Peppers"", 1], [""Hare Meat"", 1], [""Trilobite"", 1]]","[null, null, null]"
-Amateur,49,[],Pet Food Epsilon,Earth,,"[[""Rye Flour"", 1], [""Distilled Water"", 1], [""Lizard Egg"", 1], [""Ziz Meat"", 1]]","[[""Pet Food Epsilon"", 6], [""Pet Food Epsilon"", 8], [""Pet Food Epsilon"", 10]]"
-Amateur,49,[],Pet Food Epsilon,Earth,,"[[""Cockatrice Meat"", 1], [""Lizard Egg"", 1], [""Rye Flour"", 1], [""Distilled Water"", 1]]","[[""Pet Food Epsilon"", 6], [""Pet Food Epsilon"", 8], [""Pet Food Epsilon"", 10]]"
-Amateur,50,[],Crab Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Land Crab Meat"", 1], [""Distilled Water"", 1]]","[[""Crab Sushi"", 6], [""Crab Sushi +1"", 2], [""Crab Sushi +1"", 4]]"
-Amateur,50,[],Apple Pie,Fire,,"[[""Cinnamon"", 1], [""Pie Dough"", 1], [""Maple Sugar"", 1], [""Bird Egg"", 1], [""Faerie Apple"", 1]]","[[""Apple Pie +1"", 4], null, null]"
-Amateur,50,[],Grape Juice,Dark,,"[[""San d'Orian Grape"", 4]]","[null, null, null]"
-Amateur,50,[],Margherita Pizza,Fire,,"[[""Holy Basil"", 1], [""Pizza Dough"", 1], [""Mithran Tomato"", 1], [""Pomodoro Sauce"", 1], [""Chalaimbille"", 1]]","[[""Margherita Pizza +1"", 1], null, null]"
-Amateur,50,[],Montagna,Fire,,"[[""Mhaura Garlic"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Habaneros"", 1], [""Imperial Flour"", 1], [""Bird Egg"", 1], [""Buffalo Meat"", 1], [""Burdock Root"", 1]]","[[""Montagna"", 4], [""Montagna"", 6], [""Montagna"", 8]]"
-Amateur,50,[],Seafood Pitaru,Fire,,"[[""Maple Sugar"", 1], [""Rock Salt"", 1], [""Imperial Flour"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Grauberg Lettuce"", 1], [""Butterpear"", 1], [""Peeled Lobster"", 1]]","[[""Seafood Pitaru"", 4], [""Seafood Pitaru"", 6], [""Seafood Pitaru"", 8]]"
-Amateur,50,[],Margherita Slice,Fire,,"[[""Holy Basil"", 1], [""Pizza Dough"", 1], [""Mithran Tomato"", 1], [""Pomodoro Sauce"", 1], [""Chalaimbille"", 1], [""Pizza Cutter"", 1]]","[[""Margherita Slice"", 8], [""Margherita Slice +1"", 6], [""Margherita Slice +1"", 8]]"
-Amateur,50,[],Apple Pie,Fire,,"[[""Cooking Kit 50"", 1], [""Journeyman (51-60)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,51,[],Bretzel,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Lizard Egg"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Bretzel"", 99], [""Salty Bretzel"", 33], [""Salty Bretzel"", 99]]"
-Amateur,51,[],Orange au Lait,Water,,"[[""Saruta Orange"", 2], [""Honey"", 1], [""Selbina Milk"", 1]]","[null, null, null]"
-Amateur,51,[],Loach Slop,Fire,Stewpot Mastery,"[[""Soy Stock"", 1], [""Two-Leaf Mandragora Bud"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1], [""Cibol"", 1], [""Brass Loach"", 2], [""Burdock"", 1]]","[[""Loach Gruel"", 1], [""Loach Gruel"", 1], [""Loach Soup"", 1]]"
-Amateur,52,[],Batagreen Saute,Fire,,"[[""Selbina Butter"", 1], [""Batagreens"", 1]]","[[""Vegan Saute"", 1], null, null]"
-Amateur,52,[],Crayfish Ball,Earth,,"[[""Crayfish"", 3], [""San d'Orian Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,52,[],Crayfish Ball,Earth,,"[[""Gold Lobster"", 1], [""San d'Orian Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,52,[],Crayfish Ball,Earth,,"[[""Istakoz"", 1], [""San d'Orian Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,52,[],Grasshopper Broth,Water,,"[[""Skull Locust"", 2], [""King Locust"", 1], [""Mushroom Locust"", 1], [""La Theine Cabbage"", 1], [""Gysahl Greens"", 1]]","[[""Noisy Grasshopper Broth"", 2], [""Noisy Grasshopper Broth"", 4], [""Noisy Grasshopper Broth"", 6]]"
-Amateur,52,[],Mille Feuille,Fire,Patissier,"[[""Pie Dough"", 3], [""Maple Sugar"", 1], [""Rolanberry"", 1], [""Selbina Milk"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Elysian Eclair"", 1], null, null]"
-Amateur,52,[],Lethe Consomme,Water,,"[[""Eastern Ginger"", 1], [""San d'Orian Carrot"", 1], [""Tiger Cod"", 1], [""Distilled Water"", 1]]","[[""Lethe Consomme"", 6], [""Lethe Consomme"", 8], [""Lethe Consomme"", 10]]"
-Amateur,52,[],Salted Dragonfly Trout,Fire,,"[[""Rock Salt"", 1], [""Dragonfly Trout"", 1]]","[[""Grilled Dragonfly Trout"", 1], null, null]"
-Amateur,53,[],Bretzel,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Bretzel"", 99], [""Salty Bretzel"", 33], [""Salty Bretzel"", 99]]"
-Amateur,53,[],Eel Kabob,Fire,,"[[""Olive Oil"", 1], [""Black Eel"", 1]]","[[""Broiled Eel"", 1], null, null]"
-Amateur,53,[],Eel Kabob,Fire,,"[[""Olive Oil"", 1], [""Yilanbaligi"", 1]]","[[""Broiled Eel"", 1], null, null]"
-Amateur,53,[],Coffee Muffin,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Coffee Powder"", 1], [""Selbina Milk"", 1], [""Bird Egg"", 1]]","[[""Coffee Muffin +1"", 4], null, null]"
-Amateur,54,[],Carp Sushi,Dark,,"[[""Tarutaru Rice"", 1], [""Rock Salt"", 1], [""Forest Carp"", 1]]","[[""Yahata Sushi"", 1], null, null]"
-Amateur,54,[],Carp Sushi,Dark,,"[[""Tarutaru Rice"", 1], [""Rock Salt"", 1], [""Moat Carp"", 1]]","[[""Yahata Sushi"", 1], null, null]"
-Amateur,54,[],Icecap Rolanberry,Fire,Patissier,"[[""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Gelatin"", 1], [""Vanilla"", 1], [""Crawler Egg"", 1], [""Rolanberry"", 1], [""Selbina Milk"", 1], [""Distilled Water"", 1]]","[[""Flurry Courante"", 1], null, null]"
-Amateur,54,[],Icecap Rolanberry,Fire,,"[[""Gelatin"", 1], [""Selbina Butter"", 1], [""Selbina Milk"", 1], [""Maple Sugar"", 1], [""Rolanberry"", 1], [""Distilled Water"", 1], [""Crawler Egg"", 1]]","[[""Snowy Rolanberry"", 1], null, null]"
-Amateur,54,[],Shrimp Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Bastore Sweeper"", 1]]","[[""Shrimp Sushi +1"", 2], [""Shrimp Sushi +1"", 3], [""Shrimp Sushi +1"", 4]]"
-Amateur,54,[],Cherry Bavarois,Ice,,"[[""Maple Sugar"", 1], [""Gelatin"", 1], [""Vanilla"", 1], [""Yagudo Cherry"", 1], [""Bird Egg"", 1], [""Uleguerand Milk"", 1]]","[[""Cherry Bavarois +1"", 1], null, null]"
-Amateur,54,[],Yellow Curry Bun,Fire,,"[[""San d'Orian Flour"", 1], [""Olive Oil"", 1], [""Yellow Curry"", 1], [""Bird Egg"", 1]]","[[""Yellow Curry Bun"", 8], [""Y. Curry Bun +1"", 6], [""Y. Curry Bun +1"", 8]]"
-Amateur,55,[],Beaugreen Saute,Fire,,"[[""Selbina Butter"", 1], [""Beaugreens"", 1]]","[[""Monastic Saute"", 1], null, null]"
-Amateur,55,[],Egg Soup,Fire,,"[[""Lizard Egg"", 1], [""Black Pepper"", 1], [""Distilled Water"", 1], [""Rock Salt"", 1]]","[[""Humpty Soup"", 1], null, null]"
-Amateur,55,"[[""Leathercraft"", 1]]",Orange Tank,Earth,,"[[""Karakul Leather"", 1], [""Brass Tank"", 1], [""Orange au Lait"", 4]]","[null, null, null]"
-Amateur,55,[],Pumpkin Cake,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Maple Sugar"", 1], [""Ogre Pumpkin"", 1], [""Olive Oil"", 1], [""Selbina Milk"", 1], [""Bird Egg"", 1], [""Apkallu Egg"", 1]]","[null, null, null]"
-Amateur,55,[],Coffee Macaron,Fire,Patissier,"[[""Lizard Egg"", 1], [""Coffee Beans"", 1], [""Almond"", 1], [""Maple Sugar"", 1]]","[[""Coffee Macaron"", 4], [""Coffee Macaron"", 6], [""Coffee Macaron"", 8]]"
-Amateur,55,[],Beaugreen Saute,Fire,,"[[""Cooking Kit 55"", 1]]","[null, null, null]"
-Amateur,56,[],Pamama Tart,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Bubble Chocolate"", 2], [""Pamamas"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Opo-opo Tart"", 1], null, null]"
-Amateur,56,[],Carbonara,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Black Pepper"", 1], [""Holy Basil"", 1], [""Spaghetti"", 1], [""Selbina Milk"", 1], [""Stone Cheese"", 1], [""Bird Egg"", 1], [""Buffalo Jerky"", 1]]","[[""Carbonara"", 4], [""Carbonara +1"", 2], [""Carbonara +1"", 4]]"
-Amateur,56,[],Mulsum,Ice,,"[[""Grape Juice"", 1], [""Honey"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,56,[],Zaru Soba,Fire,Noodle Kneading,"[[""Pamtam Kelp"", 1], [""Fish Stock"", 1], [""Soba Noodles"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Cibol"", 1], [""Puk Egg"", 1]]","[[""Zaru Soba +1"", 1], null, null]"
-Amateur,56,[],Pot-au-feu,Fire,,"[[""Popoto"", 1], [""Giant Femur"", 1], [""Hare Meat"", 1], [""Frost Turnip"", 1], [""San d'Or. Carrot"", 1]]","[[""Pot-au-feu"", 4], [""Pot-au-feu +1"", 2], [""Pot-au-feu +1"", 4]]"
-Amateur,57,[],Bataquiche,Fire,,"[[""Pie Dough"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Danceshroom"", 1], [""Selbina Milk"", 1], [""Stone Cheese"", 1], [""Batagreen Saute"", 1], [""Bird Egg"", 1]]","[[""Bataquiche"", 12], [""Bataquiche +1"", 6], [""Bataquiche +1"", 12]]"
-Amateur,57,[],Chai,Fire,,"[[""Maple Sugar"", 1], [""Im. Tea Leaves"", 1], [""Distilled Water"", 1]]","[[""Chai +1"", 1], null, null]"
-Amateur,57,[],Egg Soup,Fire,,"[[""Black Pepper"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Humpty Soup"", 1], null, null]"
-Amateur,57,[],Mole Broth,Water,,"[[""Snapping Mole"", 2], [""Helmet Mole"", 1], [""Loam"", 1], [""Lugworm"", 1], [""Shell Bug"", 1]]","[[""Lively Mole Broth"", 2], [""Lively Mole Broth"", 4], [""Lively Mole Broth"", 8]]"
-Amateur,57,[],Curdled Plasma Broth,Water,,"[[""Fiend Blood"", 1], [""Beastman Blood"", 1], [""Bird Blood"", 1]]","[[""Curdled Plasma Broth"", 6], [""Curdled Plasma Broth"", 8], [""Curdled Plasma Broth"", 10]]"
-Amateur,58,[],Ginger Cookie,Fire,,"[[""San d'Orian Flour"", 1], [""Ginger"", 1], [""Selbina Butter"", 1], [""Lizard Egg"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1]]","[[""Wizard Cookie"", 33], [""Wizard Cookie"", 33], [""Wizard Cookie"", 99]]"
-Amateur,58,[],Ic Pilav,Fire,,"[[""Selbina Butter"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Pine Nuts"", 1], [""Imperial Rice"", 1], [""Buburimu Grape"", 1], [""Distilled Water"", 1], [""Ziz Meat"", 1]]","[[""Ic Pilav +1"", 1], null, null]"
-Amateur,58,[],Tentacle Sushi,Earth,Raw Fish Handling,"[[""Ginger"", 1], [""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Kalamar"", 1]]","[[""Tentacle Sushi"", 2], [""Tentacle Sushi +1"", 1], [""Tentacle Sushi +1"", 2]]"
-Amateur,58,[],Tentacle Sushi,Earth,Raw Fish Handling,"[[""Ginger"", 1], [""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Cone Calamary"", 1]]","[[""Tentacle Sushi"", 2], [""Tentacle Sushi +1"", 1], [""Tentacle Sushi +1"", 2]]"
-Amateur,58,[],Cunning Brain Broth,Water,,"[[""Gelatin"", 1], [""Hare Meat"", 1], [""Giant Sheep Meat"", 1], [""Cockatrice Meat"", 1]]","[[""Cunning Brain Broth"", 6], [""Cunning Brain Broth"", 8], [""Cunning Brain Broth"", 10]]"
-Amateur,59,"[[""Alchemy"", 40]]",Dried Mugwort,Ice,,"[[""Fresh Mugwort"", 8]]","[[""Dried Mugwort"", 2], [""Dried Mugwort"", 3], [""Dried Mugwort"", 4]]"
-Amateur,59,[],Goblin Mushpot,Fire,,"[[""Danceshroom"", 1], [""Kazham Peppers"", 1], [""Scream Fungus"", 1], [""Sobbing Fungus"", 1], [""Deathball"", 1], [""Sleepshroom"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,59,[],Pet Food Zeta,Earth,,"[[""San d'Orian Flour"", 1], [""Lizard Egg"", 1], [""Coeurl Meat"", 1], [""Distilled Water"", 1]]","[[""Pet Food Zeta"", 6], [""Pet Food Zeta"", 8], [""Pet Food Zeta"", 10]]"
-Amateur,59,[],Pogaca,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Rock Salt"", 1], [""Stone Cheese"", 1], [""Distilled Water"", 1], [""Apkallu Egg"", 1], [""Yogurt"", 1]]","[[""Pogaca +1"", 33], [""Pogaca +1"", 33], [""Pogaca +1"", 99]]"
-Amateur,59,[],Spicy Cracker,Fire,,"[[""Kazham Peppers"", 1], [""Tarutaru Rice"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Red Hot Cracker"", 33], [""Red Hot Cracker"", 33], [""Red Hot Cracker"", 99]]"
-Amateur,59,[],Pepperoni Pizza,Fire,,"[[""Pizza Dough"", 1], [""Pomodoro Sauce"", 1], [""Misareaux Parsley"", 1], [""Pepperoni"", 1], [""Agaricus"", 1], [""Chalaimbille"", 1]]","[[""Pepperoni Pizza +1"", 1], null, null]"
-Amateur,59,[],Ham and Ch. Crepe,Fire,,"[[""San d'Orian Flour"", 1], [""Mhaura Garlic"", 1], [""Mithran Tomato"", 1], [""Bird Egg"", 1], [""Sausage"", 1], [""Chalaimbille"", 1], [""Uleguerand Milk"", 1]]","[[""Ham and Ch. Crepe"", 4], [""Crepe Paysanne"", 2], [""Crepe Paysanne"", 4]]"
-Amateur,59,[],Pepperoni Slice,Fire,,"[[""Pizza Dough"", 1], [""Pomodoro Sauce"", 1], [""Misareaux Parsley"", 1], [""Pepperoni"", 1], [""Agaricus Mushroom"", 1], [""Chalaimbille"", 1], [""Pizza Cutter"", 1]]","[[""Pepperoni Slice"", 8], [""Pepperoni Slice +1"", 6], [""Pepperoni Slice +1"", 8]]"
-Amateur,60,[],Ginger Cookie,Fire,,"[[""San d'Orian Flour"", 1], [""Ginger"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Wizard Cookie"", 33], [""Wizard Cookie"", 33], [""Wizard Cookie"", 99]]"
-Amateur,60,[],Green Quiche,Fire,,"[[""Pie Dough"", 1], [""Rock Salt"", 1], [""Danceshroom"", 1], [""Selbina Milk"", 1], [""Stone Cheese"", 1], [""Bird Egg"", 1], [""Beaugreen Saute"", 1]]","[[""Green Quiche"", 12], [""Emerald Quiche"", 6], [""Emerald Quiche"", 12]]"
-Amateur,60,[],Sis Kebabi,Fire,,"[[""Mhaura Garlic"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""Mithran Tomato"", 1], [""Karakul Meat"", 1]]","[[""Sis Kebabi +1"", 1], null, null]"
-Amateur,60,[],Yagudo Drink,Dark,,"[[""Yagudo Cherry"", 1], [""Buburimu Grape"", 3]]","[null, null, null]"
-Amateur,60,[],Adoulin Soup,Fire,,"[[""Black Pepper"", 1], [""Adoulinian Kelp"", 2], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Black Prawn"", 1]]","[[""Adoulin Soup +1"", 1], null, null]"
-Amateur,60,[],Cutlet Sandwich,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Pork Cutlet"", 1]]","[[""Cutlet Sandwich"", 6], [""Cutlet Sandwich +1"", 3], [""Cutlet Sandwich +1"", 6]]"
-Amateur,60,[],Green Quiche,Fire,,"[[""Cooking Kit 60"", 1], [""Craftsman (61-70)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,61,[],Cilbir,Fire,,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Selbina Butter"", 1], [""Rock Salt"", 1], [""Apkallu Egg"", 2], [""Yogurt"", 1]]","[[""Cibarious Cilbir"", 1], null, null]"
-Amateur,61,[],Goblin Bread,Fire,,"[[""Puffball"", 1], [""Rock Salt"", 1], [""Horo Flour"", 1], [""Bone Chip"", 1], [""Distilled Water"", 1], [""Poison Flour"", 1], [""Crawler Egg"", 1]]","[[""Hobgoblin Bread"", 4], null, null]"
-Amateur,61,[],Seafood Stewpot,Fire,Stewpot Mastery,"[[""Fish Stock"", 1], [""Danceshroom"", 1], [""Gold Lobster"", 1], [""Bastore Bream"", 1], [""Distilled Water"", 1], [""Cotton Tofu"", 1], [""Cibol"", 1], [""Napa"", 1]]","[[""Prime Seafood Stewpot"", 1], [""Prized Seafood Stewpot"", 1], null]"
-Amateur,61,[],Stone Cheese,Dark,,"[[""Selbina Milk"", 1], [""Rock Salt"", 1]]","[[""Rock Cheese"", 4], null, null]"
-Amateur,61,[],Marinara Sauce,Water,,"[[""Kazham Peppers"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Mithran Tomato"", 1], [""Anchovy"", 1]]","[null, null, null]"
-Amateur,62,[],Apple au Lait,Water,,"[[""Faerie Apple"", 2], [""Honey"", 1], [""Selbina Milk"", 1]]","[null, null, null]"
-Amateur,62,[],Melon Pie,Fire,,"[[""Thundermelon"", 1], [""Cinnamon"", 1], [""Lizard Egg"", 1], [""Pie Dough"", 1], [""Maple Sugar"", 1]]","[[""Melon Pie +1"", 4], null, null]"
-Amateur,62,"[[""Alchemy"", 11]]",Snoll Gelato,Ice,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Selbina Milk"", 1], [""Bird Egg"", 1], [""Snoll Arm"", 1]]","[[""Sub-zero Gelato"", 4], [""Sub-zero Gelato"", 6], [""Sub-zero Gelato"", 8]]"
-Amateur,62,"[[""Alchemy"", 11]]",Snoll Gelato,Ice,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Vanilla"", 1], [""Selbina Milk"", 1], [""Bird Egg"", 1], [""Snoll Arm"", 1]]","[[""Seraph's Kiss"", 4], [""Seraph's Kiss"", 6], [""Seraph's Kiss"", 8]]"
-Amateur,62,[],Blood Broth,Water,,"[[""Fiend Blood"", 1], [""Leech Saliva"", 1], [""Lizard Blood"", 1], [""Bird Blood"", 1], [""Beast Blood"", 1]]","[[""Clear Blood Broth"", 2], [""Clear Blood Broth"", 4], [""Clear Blood Broth"", 8]]"
-Amateur,62,[],C. Grasshopper Broth,Water,,"[[""Skull Locust"", 2], [""La Theine Cabbage"", 1], [""Gysahl Greens"", 1], [""Little Worm"", 1], [""Shell Bug"", 1]]","[[""C. Grasshopper Broth"", 6], [""C. Grasshopper Broth"", 8], [""C. Grasshopper Broth"", 10]]"
-Amateur,63,[],Balik Sis,Fire,,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Mithran Tomato"", 1], [""Kilicbaligi"", 1]]","[[""Balik Sis +1"", 1], null, null]"
-Amateur,63,"[[""Woodworking"", 9]]",Sausage,Fire,,"[[""Sage"", 1], [""Black Pepper"", 1], [""Maple Log"", 1], [""Rock Salt"", 1], [""Giant Sheep Meat"", 1]]","[null, null, null]"
-Amateur,63,[],Mole Broth,Water,,"[[""Snapping Mole"", 2], [""Helmet Mole"", 1], [""Loam"", 1], [""Little Worm"", 1], [""Shell Bug"", 1]]","[[""Lively Mole Broth"", 2], [""Lively Mole Broth"", 4], [""Lively Mole Broth"", 6]]"
-Amateur,63,[],Salmon Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Cheval Salmon"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1]]","[[""Salmon Sushi"", 6], [""Salmon Sushi +1"", 2], [""Salmon Sushi +1"", 4]]"
-Amateur,63,[],Lethe Potage,Water,,"[[""Popoto"", 1], [""Eastern Ginger"", 1], [""Bastore Bream"", 1], [""Distilled Water"", 1]]","[[""Lethe Potage"", 6], [""Lethe Potage"", 8], [""Lethe Potage"", 10]]"
-Amateur,63,[],Razor Brain Broth,Water,,"[[""Gelatin"", 1], [""Hare Meat"", 1], [""Giant Sheep Meat"", 1], [""Ziz Meat"", 1]]","[[""Razor Brain Broth"", 6], [""Razor Brain Broth"", 8], [""Razor Brain Broth"", 10]]"
-Amateur,63,[],Briny Broth,Water,,"[[""Hamsi"", 1], [""Mercanbaligi"", 1], [""Rhinochimera"", 1]]","[[""Briny Broth"", 6], [""Briny Broth"", 8], [""Briny Broth"", 10]]"
-Amateur,64,[],Blackened Frog,Fire,,"[[""Copper Frog"", 1], [""Dried Marjoram"", 1], [""Rock Salt"", 1]]","[[""Frog Flambe"", 1], null, null]"
-Amateur,64,[],Melon Pie,Fire,,"[[""Thundermelon"", 1], [""Cinnamon"", 1], [""Bird Egg"", 1], [""Pie Dough"", 1], [""Maple Sugar"", 1]]","[[""Melon Pie +1"", 4], null, null]"
-Amateur,64,[],Octopus Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Gigant Octopus"", 1]]","[[""Octopus Sushi +1"", 2], [""Octopus Sushi +1"", 4], [""Octopus Sushi +1"", 6]]"
-Amateur,64,[],Black Curry Bun,Fire,,"[[""San d'Orian Flour"", 1], [""Olive Oil"", 1], [""Black Curry"", 1], [""Bird Egg"", 1]]","[[""Black Curry Bun"", 8], [""B. Curry Bun +1"", 6], [""B. Curry Bun +1"", 8]]"
-Amateur,64,[],Octopus Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Contortopus"", 2]]","[[""Octopus Sushi +1"", 2], [""Octopus Sushi +1"", 4], [""Octopus Sushi +1"", 6]]"
-Amateur,64,[],Octopus Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Contortacle"", 3]]","[[""Octopus Sushi +1"", 2], [""Octopus Sushi +1"", 4], [""Octopus Sushi +1"", 6]]"
-Amateur,64,[],Blackened Frog,Fire,,"[[""Senroh Frog"", 1], [""Dried Marjoram"", 1], [""Rock Salt"", 1]]","[[""Frog Flambe"", 1], null, null]"
-Amateur,65,[],Pumpkin Soup,Fire,,"[[""Ogre Pumpkin"", 1], [""Sage"", 1], [""Rock Salt"", 1], [""Selbina Milk"", 1], [""Distilled Water"", 1]]","[[""Jack-o'-Soup"", 1], null, null]"
-Amateur,65,[],Bison Steak,Fire,,"[[""Bay Leaves"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Rarab Tail"", 1], [""Buffalo Meat"", 1]]","[[""Marbled Steak"", 1], null, null]"
-Amateur,65,[],Irmik Helvasi,Fire,Patissier,"[[""Selbina Butter"", 1], [""Semolina"", 1], [""Pine Nuts"", 1], [""Selbina Milk"", 1], [""White Honey"", 3]]","[[""Irmik Helvasi +1"", 1], null, null]"
-Amateur,65,[],Konigskuchen,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Pie Dough"", 1], [""Maple Sugar"", 1], [""Selbina Milk"", 1], [""San d'Orian Grape"", 1], [""Yagudo Cherry"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Uberkuchen"", 1], null, null]"
-Amateur,65,[],Ratatouille,Fire,,"[[""Mhaura Garlic"", 1], [""Bay Leaves"", 1], [""Olive Oil"", 1], [""Wild Onion"", 1], [""Eggplant"", 1], [""Mithran Tomato"", 1], [""Zucchini"", 1], [""Paprika"", 1]]","[[""Ratatouille +1"", 1], null, null]"
-Amateur,65,[],Chocolate Rusk,Fire,Patissier,"[[""Selbina Butter"", 1], [""Bubble Chocolate"", 2], [""Iron Bread"", 1], [""Bird Egg"", 1]]","[[""Chocolate Rusk"", 4], [""Chocolate Rusk"", 6], [""Chocolate Rusk"", 8]]"
-Amateur,65,[],Savage Mole Broth,Water,,"[[""Red Gravel"", 1], [""Snapping Mole"", 1], [""Helmet Mole"", 1], [""Loam"", 1], [""Little Worm"", 2]]","[[""Savage Mole Broth"", 6], [""Savage Mole Broth"", 8], [""Savage Mole Broth"", 10]]"
-Amateur,65,[],Boiled Barnacles,Fire,,"[[""Rock Salt"", 1], [""Distilled Water"", 1], [""Barnacle"", 1]]","[[""Boiled Barnacles +1"", 2], [""Boiled Barnacles +1"", 4], [""Boiled Barnacles +1"", 6]]"
-Amateur,65,[],Ratatouille,Fire,,"[[""Cooking Kit 65"", 1]]","[null, null, null]"
-Amateur,66,"[[""Leathercraft"", 1]]",Apple Tank,Earth,,"[[""Karakul Leather"", 1], [""Brass Tank"", 1], [""Apple au Lait"", 4]]","[null, null, null]"
-Amateur,66,[],Colored Egg,Fire,,"[[""San d'Orian Carrot"", 1], [""Lizard Egg"", 1], [""La Theine Cabbage"", 1], [""Distilled Water"", 1]]","[[""Party Egg"", 1], null, null]"
-Amateur,66,[],Nero di Seppia,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Holy Basil"", 1], [""Spaghetti"", 1], [""Wild Onion"", 1], [""Mithran Tomato"", 1], [""Kalamar"", 1]]","[[""Nero di Seppia"", 4], [""Nero di Seppia +1"", 2], [""Nero di Seppia +1"", 4]]"
-Amateur,66,[],Nero di Seppia,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Holy Basil"", 1], [""Spaghetti"", 1], [""Wild Onion"", 1], [""Mithran Tomato"", 1], [""Cone Calamary"", 1]]","[[""Nero di Seppia"", 4], [""Nero di Seppia +1"", 2], [""Nero di Seppia +1"", 4]]"
-Amateur,66,[],Sausage Roll,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Sausage"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Honey"", 1]]","[null, null, null]"
-Amateur,67,[],Goblin Stew,Fire,,"[[""Horo Flour"", 1], [""Chicken Bone"", 1], [""Fish Bones"", 1], [""Fiend Blood"", 1], [""Rock Salt"", 1], [""Puffball"", 1], [""Distilled Water"", 1], [""Rotten Meat"", 1]]","[[""Goblin Stew"", 1], null, null]"
-Amateur,67,[],Ikra Gunkan,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Pamtam Kelp"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Salmon Roe"", 1]]","[[""Ikra Gunkan"", 2], [""Ikra Gunkan +1"", 1], null]"
-Amateur,67,[],Raisin Bread,Fire,,"[[""San d'Orian Grape"", 1], [""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,67,[],Antica Broth,Water,,"[[""Gelatin"", 1], [""Antican Pauldron"", 1], [""Antican Robe"", 1], [""Antican Acid"", 1]]","[[""Fragrant Antica Broth"", 2], [""Fragrant Antica Broth"", 4], [""Fragrant Antica Broth"", 6]]"
-Amateur,68,[],Colored Egg,Fire,,"[[""San d'Orian Carrot"", 1], [""Bird Egg"", 1], [""La Theine Cabbage"", 1], [""Distilled Water"", 1]]","[[""Party Egg"", 1], null, null]"
-Amateur,68,[],Herb Quus,Fire,,"[[""Quus"", 3], [""Selbina Butter"", 1], [""Black Pepper"", 1], [""Bay Leaves"", 1], [""Dried Marjoram"", 1], [""Rock Salt"", 1]]","[[""Medicinal Quus"", 1], null, null]"
-Amateur,68,[],Imperial Coffee,Fire,,"[[""Coffee Powder"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1]]","[[""Imperial Coffee +1"", 1], null, null]"
-Amateur,68,[],Shrimp Cracker,Fire,,"[[""Gold Lobster"", 1], [""Tarutaru Rice"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Shrimp Cracker +1"", 33], [""Shrimp Cracker +1"", 33], [""Shrimp Cracker +1"", 99]]"
-Amateur,68,[],Shrimp Cracker,Fire,,"[[""Istakoz"", 1], [""Tarutaru Rice"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Shrimp Cracker +1"", 33], [""Shrimp Cracker +1"", 33], [""Shrimp Cracker +1"", 99]]"
-Amateur,68,[],Anchovy Pizza,Fire,,"[[""Dried Marjoram"", 1], [""Holy Basil"", 1], [""Pizza Dough"", 1], [""Pomodoro Sauce"", 1], [""Anchovy"", 1], [""Chalaimbille"", 1]]","[[""Anchovy Pizza +1"", 1], null, null]"
-Amateur,68,[],Burning Carrion Broth,Water,,"[[""Gelatin"", 1], [""Hare Meat"", 1], [""Giant Sheep Meat"", 1], [""Ruszor Meat"", 1]]","[[""Burning Carrion Broth"", 6], [""Burning Carrion Broth"", 8], [""Burning Carrion Broth"", 10]]"
-Amateur,68,[],Anchovy Slice,Fire,,"[[""Dried Marjoram"", 1], [""Holy Basil"", 1], [""Pizza Dough"", 1], [""Pomodoro Sauce"", 1], [""Anchovies"", 1], [""Chalaimbille"", 1], [""Pizza Cutter"", 1]]","[[""Anchovy Slice"", 8], [""Anchovy Slice +1"", 6], [""Anchovy Slice +1"", 8]]"
-Amateur,69,[],Adamantoise Soup,Dark,,"[[""San d'Orian Flour"", 1], [""Chicken Bone"", 1], [""Fiend Blood"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Tavnazian Ram Meat"", 1], [""Diatryma Meat"", 1]]","[null, null, null]"
-Amateur,69,[],Gateau aux Fraises,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Rolanberry"", 2], [""Selbina Milk"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Midwinter Dream"", 1], null, null]"
-Amateur,69,[],Mutton Tortilla,Fire,,"[[""Kazham Peppers"", 1], [""Stone Cheese"", 1], [""Tomato Juice"", 1], [""Tortilla"", 1], [""Mithran Tomato"", 1], [""La Theine Cabbage"", 1], [""Giant Sheep Meat"", 1]]","[[""Mutton Enchilada"", 1], null, null]"
-Amateur,69,[],Pet Food Eta,Earth,,"[[""San d'Orian Flour"", 1], [""Distilled Water"", 1], [""Buffalo Meat"", 1], [""Apkallu Egg"", 1]]","[[""Pet Food Eta"", 6], [""Pet Food Eta"", 8], [""Pet Food Eta"", 10]]"
-Amateur,70,[],Dhalmel Stew,Fire,,"[[""San d'Orian Flour"", 1], [""Cinnamon"", 1], [""Dhalmel Meat"", 1], [""Popoto"", 1], [""Mithran Tomato"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Wild Stew"", 1], null, null]"
-Amateur,70,[],San d'Orian Tea,Fire,,"[[""Windurstian Tea Leaves"", 1], [""Sage"", 1], [""Selbina Milk"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1]]","[[""Royal Tea"", 1], null, null]"
-Amateur,70,[],Squid Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Gigant Squid"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1]]","[[""Squid Sushi +1"", 6], [""Squid Sushi +1"", 8], [""Squid Sushi +1"", 10]]"
-Amateur,70,[],Mellow Bird Broth,Water,,"[[""Gelatin"", 1], [""Dhalmel Meat"", 1], [""Lizard Egg"", 1], [""Cockatrice Meat"", 1], [""Bird Egg"", 1]]","[[""Mellow Bird Broth"", 6], [""Mellow Bird Broth"", 8], [""Mellow Bird Broth"", 10]]"
-Amateur,70,[],San d'Orian Tea,Fire,,"[[""Cooking Kit 70"", 1]]","[null, null, null]"
-Amateur,70,[],Egg Sandwich,Fire,,"[[""Selbina Butter"", 1], [""White Bread"", 1], [""Hard-boiled Egg"", 1], [""Grauberg Lettuce"", 1], [""Artisan (71-80)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Egg Sandwich"", 8], [""Egg Sandwich +1"", 6], [""Egg Sandwich +1"", 8]]"
-Amateur,71,[],Crab Stewpot,Fire,Stewpot Mastery,"[[""Fish Stock"", 1], [""Woozyshroom"", 1], [""Land Crab Meat"", 1], [""Coral Fungus"", 1], [""Distilled Water"", 1], [""Cotton Tofu"", 1], [""Cibol"", 1], [""Shungiku"", 1]]","[[""Prime Crab Stewpot"", 1], [""Prized Crab Stewpot"", 1], null]"
-Amateur,71,[],Eyeball Soup,Fire,,"[[""Apple Vinegar"", 1], [""Frost Turnip"", 1], [""Gelatin"", 1], [""Hecteyes Eye"", 3], [""Beastman Blood"", 1], [""Distilled Water"", 1]]","[[""Optical Soup"", 1], null, null]"
-Amateur,71,[],Turtle Soup,Fire,,"[[""Danceshroom"", 1], [""Chicken Bone"", 1], [""San d'Orian Carrot"", 1], [""Ginger"", 1], [""Acorn"", 1], [""Red Terrapin"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Stamina Soup"", 1], null, null]"
-Amateur,71,[],Marinara,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Spaghetti"", 1], [""Jacknife"", 1], [""Pomodoro Sauce"", 1], [""Kalamar"", 1], [""Bastore Sweeper"", 1]]","[[""Marinara"", 4], [""Marinara +1"", 2], [""Marinara +1"", 4]]"
-Amateur,72,[],Red Curry Bun,Fire,,"[[""San d'Orian Flour"", 1], [""Olive Oil"", 1], [""Red Curry"", 1], [""Bird Egg"", 1]]","[[""Red Curry Bun"", 8], [""R. Curry Bun +1"", 6], [""R. Curry Bun +1"", 8]]"
-Amateur,72,[],Pear Crepe,Fire,,"[[""San d'Orian Flour"", 1], [""Cinnamon"", 1], [""Derfland Pear"", 1], [""Faerie Apple"", 1], [""Honey"", 1], [""Bird Egg"", 1], [""Uleguerand Milk"", 1]]","[[""Pear Crepe"", 4], [""Crepe B. Helene"", 2], [""Crepe B. Helene"", 4]]"
-Amateur,72,[],Boiled Cockatrice,Fire,,"[[""Cockatrice Meat"", 1], [""Coral Fungus"", 1], [""San d'Orian Carrot"", 1], [""Ginger"", 1], [""Mhaura Garlic"", 1], [""Mithran Tomato"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,72,[],Bream Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Mercanbaligi"", 1]]","[[""Bream Sushi"", 6], [""Bream Sushi +1"", 2], [""Bream Sushi +1"", 4]]"
-Amateur,72,[],Bream Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Bastore Bream"", 1]]","[[""Bream Sushi"", 6], [""Bream Sushi +1"", 2], [""Bream Sushi +1"", 4]]"
-Amateur,72,[],Pear au Lait,Water,,"[[""Derfland Pear"", 2], [""Honey"", 1], [""Selbina Milk"", 1]]","[null, null, null]"
-Amateur,73,[],Blood Broth,Water,,"[[""Beastman Blood"", 1], [""Leech Saliva"", 1], [""Lizard Blood"", 1], [""Bird Blood"", 1], [""Beast Blood"", 1]]","[[""Clear Blood Broth"", 2], [""Clear Blood Broth"", 4], [""Clear Blood Broth"", 6]]"
-Amateur,73,[],Salmon Meuniere,Fire,,"[[""Olive Oil"", 1], [""San d'Orian Flour"", 1], [""Cheval Salmon"", 1], [""Selbina Butter"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1]]","[[""Salmon Meuniere +1"", 1], null, null]"
-Amateur,73,[],Chalaimbille,Dark,,"[[""Rock Salt"", 1], [""Carbon Dioxide"", 1], [""Uleguerand Milk"", 2]]","[[""Chalaimbille"", 6], [""Chalaimbille"", 8], [""Chalaimbille"", 10]]"
-Amateur,73,[],Popo. con Queso,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Popoto"", 1], [""Rock Salt"", 1], [""Danceshroom"", 1], [""Selbina Milk"", 1], [""Wild Onion"", 1], [""Chalaimbille"", 1]]","[[""Popo. con Queso"", 6], [""Popo. con Que. +1"", 2], [""Popo. con Que. +1"", 4]]"
-Amateur,74,[],Fish & Chips,Fire,,"[[""San d'Orian Flour"", 1], [""Popoto"", 1], [""Apple Vinegar"", 1], [""Olive Oil"", 1], [""Tiger Cod"", 2], [""Bird Egg"", 1], [""Movalpolos Water"", 1]]","[[""Friture Misareaux"", 1], null, null]"
-Amateur,74,[],Mushroom Risotto,Fire,,"[[""Distilled Water"", 1], [""Danceshroom"", 1], [""Olive Oil"", 1], [""Selbina Butter"", 1], [""Tarutaru Rice"", 1], [""Puffball"", 1], [""Black Pepper"", 1], [""Mhaura Garlic"", 1]]","[[""Witch Risotto"", 1], null, null]"
-Amateur,74,[],Kohlrouladen,Fire,,"[[""San d'Orian Flour"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""La Theine Cbg."", 1], [""Selbina Milk"", 1], [""Ruszor Meat"", 1]]","[[""Kohlrouladen +1"", 1], null, null]"
-Amateur,74,[],Fish & Chips,Fire,,"[[""San d'Orian Flour"", 1], [""Popoto"", 1], [""Apple Vinegar"", 1], [""Olive Oil"", 1], [""Blindfish"", 1], [""Bird Egg"", 1], [""Movalpolos Water"", 1]]","[[""Friture Misareaux"", 1], null, null]"
-Amateur,75,[],Celerity Salad,Wind,,"[[""Gausebit Grass"", 1], [""Blue Peas"", 1], [""Cupid Worm"", 1], [""La Theine Millet"", 1], [""La Theine Cabbage"", 1], [""King Truffle"", 1], [""Shall Shell"", 1], [""Vomp Carrot"", 1]]","[[""Tornado Salad"", 1], null, null]"
-Amateur,75,[],Celerity Salad,Wind,,"[[""Gausebit Grass"", 1], [""Blue Peas"", 1], [""Cupid Worm"", 1], [""La Theine Millet"", 1], [""La Theine Cabbage"", 1], [""King Truffle"", 1], [""Istiridye"", 1], [""Vomp Carrot"", 1]]","[[""Tornado Salad"", 1], null, null]"
-Amateur,75,[],Dhalmel Pie,Fire,,"[[""Coral Fungus"", 1], [""San d'Orian Carrot"", 1], [""Selbina Butter"", 1], [""Dhalmel Meat"", 1], [""Pie Dough"", 1], [""Black Pepper"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1]]","[[""Dhalmel Pie +1"", 4], null, null]"
-Amateur,75,[],Yogurt Cake,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Kitron"", 1], [""Selbina Milk"", 1], [""Bird Egg"", 1], [""Apkallu Egg"", 1], [""Yogurt"", 1]]","[[""Silken Smile"", 1], null, null]"
-Amateur,75,[],Kitron Macaron,Fire,Patissier,"[[""Lizard Egg"", 1], [""Kitron"", 1], [""Almond"", 1], [""Maple Sugar"", 1]]","[[""Kitron Macaron"", 4], [""Kitron Macaron"", 6], [""Kitron Macaron"", 8]]"
-Amateur,75,[],Maringna,Fire,,"[[""Maple Sugar"", 1], [""Olive Oil"", 1], [""Imperial Flour"", 1], [""Bird Egg"", 1], [""Vongola Clam"", 1], [""Bastore Sweeper"", 1], [""Gigant Octopus"", 1], [""Uleguerand Milk"", 1]]","[[""Maringna"", 4], [""Maringna"", 6], [""Maringna"", 8]]"
-Amateur,75,[],B.E.W. Pitaru,Fire,,"[[""Maple Sugar"", 1], [""Rock Salt"", 1], [""Imperial Flour"", 1], [""Hard-boiled Egg"", 1], [""Distilled Water"", 1], [""Buffalo Jerky"", 1], [""Chalaimbille"", 1], [""Winterflower"", 1]]","[[""B.E.W. Pitaru"", 4], [""B.E.W. Pitaru"", 6], [""B.E.W. Pitaru"", 8]]"
-Amateur,75,[],Patlican Salata,Fire,,"[[""Eggplant"", 2], [""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Yogurt"", 1], [""Rock Salt"", 1], [""Black Pepper"", 1], [""Selbina Butter"", 1]]","[[""Patlican Salata +1"", 1], null, null]"
-Amateur,75,[],Celerity Salad,Wind,,"[[""Cooking Kit 75"", 1]]","[null, null, null]"
-Amateur,76,[],Green Curry,Fire,,"[[""Blue Peas"", 1], [""Bay Leaves"", 1], [""Curry Powder"", 1], [""Holy Basil"", 1], [""Crayfish"", 1], [""Beaugreens"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,76,"[[""Leathercraft"", 1]]",Pear Tank,Earth,,"[[""Karakul Leather"", 1], [""Brass Tank"", 1], [""Pear au Lait"", 4]]","[null, null, null]"
-Amateur,76,[],Rarab Meatball,Fire,,"[[""San d'Orian Flour"", 1], [""Stone Cheese"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1], [""Hare Meat"", 1], [""Mhaura Garlic"", 1]]","[[""Bunny Ball"", 1], null, null]"
-Amateur,76,[],Tonno Rosso,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Holy Basil"", 1], [""Spaghetti"", 1], [""Wild Onion"", 1], [""Pomodoro Sauce"", 1], [""Lakerda"", 1]]","[[""Tonno Rosso"", 4], [""Tonno Rosso +1"", 2], [""Tonno Rosso +1"", 4]]"
-Amateur,76,[],Tonno Rosso,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Holy Basil"", 1], [""Spaghetti"", 1], [""Wild Onion"", 1], [""Pomodoro Sauce"", 1], [""Gugru Tuna"", 1]]","[[""Tonno Rosso"", 4], [""Tonno Rosso +1"", 2], [""Tonno Rosso +1"", 4]]"
-Amateur,77,[],Navarin,Fire,,"[[""Olive Oil"", 1], [""Black Pepper"", 1], [""Popoto"", 1], [""Mithran Tomato"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Giant Sheep Meat"", 1]]","[[""Tender Navarin"", 1], null, null]"
-Amateur,77,[],Sopa Pez Blanco,Fire,,"[[""Popoto"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Selbina Milk"", 1], [""Wild Onion"", 1], [""San d'Orian Carrot"", 1], [""Distilled Water"", 1], [""Dil"", 1]]","[null, null, null]"
-Amateur,77,[],Sopa Pez Blanco,Fire,,"[[""San d'Orian Carrot"", 1], [""Selbina Milk"", 1], [""Black Sole"", 1], [""Black Pepper"", 1], [""Popoto"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,77,[],Tuna Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Gugru Tuna"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1]]","[[""Tuna Sushi"", 6], [""Fatty Tuna Sushi"", 1], [""Fatty Tuna Sushi"", 2]]"
-Amateur,77,[],Tuna Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Lakerda"", 1]]","[[""Tuna Sushi"", 6], [""Fatty Tuna Sushi"", 1], [""Fatty Tuna Sushi"", 2]]"
-Amateur,77,[],Whitefish Stew,Fire,,"[[""San d'Orian Carrot"", 1], [""Selbina Milk"", 1], [""Bastore Bream"", 1], [""Black Pepper"", 1], [""Popoto"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,77,[],Whitefish Stew,Fire,,"[[""Popoto"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Selbina Milk"", 1], [""Wild Onion"", 1], [""San d'Orian Carrot"", 1], [""Distilled Water"", 1], [""Mercanbaligi"", 1]]","[null, null, null]"
-Amateur,78,[],Blackened Newt,Fire,,"[[""Elshimo Newt"", 1], [""Bay Leaves"", 1], [""Dried Marjoram"", 1], [""Rock Salt"", 1]]","[[""Newt Flambe"", 1], null, null]"
-Amateur,78,"[[""Woodworking"", 3]]",Buche au Chocolat,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Bay Leaves"", 1], [""Maple Sugar"", 1], [""Kukuru Bean"", 1], [""Selbina Milk"", 1], [""Bubble Chocolate"", 1], [""Bird Egg"", 1]]","[[""Sylvan Excursion"", 1], null, null]"
-Amateur,78,[],Goblin Pie,Fire,,"[[""Crayfish"", 1], [""Ginger"", 1], [""Eggplant"", 1], [""Pie Dough"", 1], [""Black Pepper"", 1], [""Sunflower Seeds"", 1], [""Honey"", 1], [""Crawler Egg"", 1]]","[[""Hobgoblin Pie"", 4], null, null]"
-Amateur,78,[],Cloudy Wheat Broth,Fire,,"[[""San d'Orian Flour"", 1], [""Coriander"", 1], [""Imperial Flour"", 1], [""Distilled Water"", 1]]","[[""Cloudy Wheat Broth"", 6], [""Cloudy Wheat Broth"", 8], [""Cloudy Wheat Broth"", 10]]"
-Amateur,79,[],Blackened Newt,Fire,,"[[""Phanauet Newt"", 1], [""Bay Leaves"", 1], [""Dried Marjoram"", 1], [""Rock Salt"", 1]]","[[""Newt Flambe"", 1], null, null]"
-Amateur,79,[],Chocomilk,Fire,,"[[""Kukuru Bean"", 4], [""Selbina Milk"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1], [""Honey"", 1]]","[[""Choco-delight"", 1], null, null]"
-Amateur,79,[],Herb Crawler Eggs,Fire,,"[[""Olive Oil"", 1], [""San d'Orian Carrot"", 1], [""Ginger"", 1], [""Mhaura Garlic"", 1], [""Maple Sugar"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Crawler Egg"", 1]]","[null, null, null]"
-Amateur,79,[],Pet Food Theta,Earth,,"[[""San d'Orian Flour"", 1], [""Distilled Water"", 1], [""Puk Egg"", 1], [""Ruszor Meat"", 1]]","[[""Pet Food Theta"", 6], [""Pet Food Theta"", 8], [""Pet Food Theta"", 10]]"
-Amateur,79,[],Senroh Skewer,Fire,,"[[""Bluetail"", 1], [""Shall Shell"", 2], [""Contortopus"", 1], [""Senroh Sardine"", 1]]","[[""Senroh Skewer"", 12], [""Piscator's Skewer"", 6], [""Piscator's Skewer"", 12]]"
-Amateur,79,[],Senroh Skewer,Fire,,"[[""Bluetail"", 1], [""Shall Shell"", 2], [""Contortacle"", 3], [""Senroh Sardine"", 1]]","[[""Senroh Skewer"", 12], [""Piscator's Skewer"", 6], [""Piscator's Skewer"", 12]]"
-Amateur,80,[],Lucky Broth,Water,,"[[""Gelatin"", 1], [""Buffalo Meat"", 1], [""Bladefish"", 1]]","[[""Lucky Broth"", 6], [""Lucky Broth"", 8], [""Lucky Broth"", 10]]"
-Amateur,80,[],Goblin Drink,Water,,"[[""La Theine Cabbage"", 1], [""Frost Turnip"", 1], [""Wild Onion"", 1], [""San d'Orian Carrot"", 1], [""Watermelon"", 1], [""Distilled Water"", 1], [""Gysahl Greens"", 1], [""Elshimo Newt"", 1]]","[null, null, null]"
-Amateur,80,[],Orange Kuchen,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Saruta Orange"", 2], [""Bird Egg"", 1]]","[[""Orange Kuchen +1"", 1], null, null]"
-Amateur,80,[],Shallops Tropicale,Fire,,"[[""Kazham Pineapple"", 1], [""Shall Shell"", 2], [""Selbina Butter"", 1], [""Bay Leaves"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,80,[],Witch Nougat,Fire,Patissier,"[[""Selbina Milk"", 1], [""Maple Sugar"", 1], [""Lizard Egg"", 1], [""Yagudo Cherry"", 1], [""White Honey"", 1], [""Roasted Almond"", 1]]","[null, null, null]"
-Amateur,80,[],Pork Cutlet Rice Bowl,Fire,,"[[""Tarutaru Rice"", 1], [""Soy Stock"", 1], [""Two-Leaf Mandragora Bud"", 1], [""Wild Onion"", 1], [""Bird Egg"", 1], [""Pork Cutlet"", 1]]","[[""Pork Cutlet Rice Bowl +1"", 1], null, null]"
-Amateur,80,[],Shallops Tropicale,Fire,,"[[""Cooking Kit 80"", 1], [""Adept (81-90)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,81,[],Karni Yarik,Fire,,"[[""Kazham Peppers"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""Eggplant"", 1], [""Mithran Tomato"", 1], [""Karakul Meat"", 1]]","[[""Karni Yarik +1"", 1], null, null]"
-Amateur,81,[],Pamama au Lait,Water,,"[[""Pamamas"", 2], [""Honey"", 1], [""Selbina Milk"", 1]]","[null, null, null]"
-Amateur,81,[],Shark Fin Soup,Fire,,"[[""Chicken Bone"", 1], [""Silver Shark"", 1], [""Ginger"", 1], [""Sleepshroom"", 1], [""Popoto"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Ocean Soup"", 1], null, null]"
-Amateur,81,[],Tavnazian Taco,Earth,,"[[""Tavnazian Salad"", 1], [""Tortilla"", 2], [""Salsa"", 1]]","[[""Tavnazian Taco"", 12], [""Leremieu Taco"", 6], [""Leremieu Taco"", 12]]"
-Amateur,81,[],Cream Puff,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Rock Salt"", 1], [""Vanilla"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1], [""Uleguerand Milk"", 1]]","[[""Cream Puff"", 6], [""Cream Puff"", 8], [""Cream Puff"", 10]]"
-Amateur,81,[],Shiromochi,Fire,,"[[""Sticky Rice"", 1], [""Cornstarch"", 1], [""Distilled Water"", 1]]","[[""Shiromochi +1"", 2], [""Shiromochi +1"", 3], [""Shiromochi +1"", 4]]"
-Amateur,81,[],Kusamochi,Fire,,"[[""Sticky Rice"", 1], [""Fresh Mugwort"", 1], [""Cornstarch"", 1], [""Distilled Water"", 1]]","[[""Kusamochi +1"", 2], [""Kusamochi +1"", 3], [""Kusamochi +1"", 4]]"
-Amateur,81,[],Akamochi,Fire,,"[[""Maple Sugar"", 1], [""Sticky Rice"", 1], [""Cornstarch"", 1], [""Distilled Water"", 1], [""Azuki Bean"", 1]]","[[""Akamochi +1"", 2], [""Akamochi +1"", 3], [""Akamochi +1"", 4]]"
-Amateur,81,[],Rolanberry Daifuku,Fire,,"[[""Maple Sugar"", 1], [""Sticky Rice"", 1], [""Cornstarch"", 1], [""Rolanberry"", 2], [""Distilled Water"", 1], [""Azuki Bean"", 1]]","[[""Rolanberry Daifuku +1"", 2], [""Rolanberry Daifuku +1"", 3], [""Rolanberry Daifuku +1"", 4]]"
-Amateur,81,[],Bean Daifuku,Fire,,"[[""Maple Sugar"", 1], [""Sticky Rice"", 1], [""Cornstarch"", 1], [""Blue Peas"", 1], [""Distilled Water"", 1], [""Azuki Bean"", 1]]","[[""Bean Daifuku +1"", 2], [""Bean Daifuku +1"", 3], [""Bean Daifuku +1"", 4]]"
-Amateur,81,[],Grape Daifuku,Fire,,"[[""Maple Sugar"", 1], [""Sticky Rice"", 1], [""Cornstarch"", 1], [""Royal Grapes"", 2], [""Distilled Water"", 1], [""Azuki Bean"", 1]]","[[""Grape Daifuku +1"", 2], [""Grape Daifuku +1"", 3], [""Grape Daifuku +1"", 4]]"
-Amateur,82,[],Beef Stewpot,Fire,Stewpot Mastery,"[[""Soy Stock"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1], [""Buffalo Meat"", 1], [""Cotton Tofu"", 1], [""Cibol"", 1], [""Shungiku"", 1], [""Shirataki"", 1]]","[[""Prime Beef Stewpot"", 1], [""Prized Beef Stewpot"", 1], null]"
-Amateur,82,[],Boiled Tuna Head,Fire,,"[[""Ginger"", 1], [""Maple Sugar"", 1], [""Rock Salt"", 1], [""Treant Bulb"", 1], [""Grape Juice"", 1], [""Gugru Tuna"", 1], [""Distilled Water"", 1], [""Beaugreens"", 1]]","[null, null, null]"
-Amateur,82,[],Emperor Roe,Lightning,,"[[""Morinabaligi"", 1]]","[[""Emperor Roe"", 6], [""Emperor Roe"", 8], [""Emperor Roe"", 10]]"
-Amateur,82,[],Emperor Roe,Lightning,,"[[""Emperor Fish"", 1]]","[[""Emperor Roe"", 6], [""Emperor Roe"", 8], [""Emperor Roe"", 10]]"
-Amateur,82,[],Mushroom Salad,Wind,,"[[""Olive Oil"", 1], [""Batagreens"", 1], [""Woozyshroom"", 1], [""King Truffle"", 1], [""Nopales"", 1], [""Burdock"", 1], [""Walnut"", 1], [""Agaricus"", 1]]","[[""Cathedral Salad"", 1], null, null]"
-Amateur,83,[],Bass Meuniere,Fire,,"[[""Olive Oil"", 1], [""Saruta Orange"", 1], [""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Dark Bass"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1]]","[[""Bass Meuniere +1"", 1], null, null]"
-Amateur,83,[],Pescatora,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Spaghetti"", 1], [""Sandfish"", 1], [""Grimmonite"", 1], [""Gold Lobster"", 1], [""Shall Shell"", 1], [""Pomodoro Sauce"", 1]]","[[""Pescatora"", 4], [""Pescatora +1"", 2], [""Pescatora +1"", 4]]"
-Amateur,83,[],Pescatora,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Spaghetti"", 1], [""Sandfish"", 1], [""Pomodoro Sauce"", 1], [""Istakoz"", 1], [""Ahtapot"", 1], [""Istiridye"", 1]]","[[""Pescatora"", 4], [""Pescatora +1"", 2], [""Pescatora +1"", 4]]"
-Amateur,83,"[[""Woodworking"", 19]]",Pepperoni,Fire,,"[[""Kazham Peppers"", 1], [""Black Pepper"", 1], [""Sage"", 1], [""Oak Log"", 1], [""Rock Salt"", 1], [""G. Sheep Meat"", 1], [""Buffalo Meat"", 1]]","[null, null, null]"
-Amateur,83,[],Mushroom Crepe,Fire,,"[[""San d'Orian Flour"", 1], [""Black Pepper"", 1], [""Danceshroom"", 1], [""Puffball"", 1], [""Bird Egg"", 1], [""Beaugreens"", 1], [""Uleguerand Milk"", 1]]","[[""Mushroom Crepe"", 4], [""Crepe Forestiere"", 2], [""Crepe Forestiere"", 4]]"
-Amateur,83,[],Chamomile Tea,Fire,,"[[""Chamomile"", 2], [""Distilled Water"", 1], [""Honey"", 1]]","[[""Healing Tea"", 1], null, null]"
-Amateur,84,[],Bream Risotto,Fire,,"[[""Olive Oil"", 1], [""Sage"", 1], [""Selbina Butter"", 1], [""Tarutaru Rice"", 1], [""Bastore Bream"", 1], [""Black Pepper"", 1], [""Mhaura Garlic"", 1], [""Distilled Water"", 1]]","[[""Sea Spray Risotto"", 1], null, null]"
-Amateur,84,[],Sole Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Dil"", 1]]","[[""Sole Sushi +1"", 2], [""Sole Sushi +1"", 3], [""Sole Sushi +1"", 4]]"
-Amateur,84,[],Sole Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Black Sole"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1]]","[[""Sole Sushi +1"", 2], [""Sole Sushi +1"", 3], [""Sole Sushi +1"", 4]]"
-Amateur,84,[],Steamed Catfish,Fire,,"[[""Giant Catfish"", 1], [""Gysahl Greens"", 1], [""Grape Juice"", 1], [""Popoto"", 1], [""Maple Sugar"", 1], [""Dried Marjoram"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,85,[],Hellsteak,Fire,,"[[""Popoto"", 1], [""Bay Leaves"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""San d'Orian Carrot"", 1], [""Cerberus Meat"", 1]]","[[""Hellsteak +1"", 1], null, null]"
-Amateur,85,"[[""Leathercraft"", 1]]",Pamama Tank,Earth,,"[[""Karakul Leather"", 1], [""Brass Tank"", 1], [""Pamama au Lait"", 4]]","[null, null, null]"
-Amateur,85,[],Pumpkin Pie,Fire,,"[[""Ogre Pumpkin"", 1], [""Cinnamon"", 1], [""Selbina Butter"", 1], [""Pie Dough"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1], [""Selbina Milk"", 1]]","[[""Pumpkin Pie +1"", 4], null, null]"
-Amateur,85,[],Yellow Curry,Fire,,"[[""Popoto"", 1], [""Curry Powder"", 1], [""Turmeric"", 1], [""Coeurl Meat"", 1], [""Selbina Milk"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,85,[],Jack-o'-Pie,Fire,Patissier,"[[""Selbina Butter"", 1], [""Pie Dough"", 1], [""Maple Sugar"", 1], [""Cinnamon"", 1], [""Ogre Pumpkin"", 1], [""Selbina Milk"", 1], [""Distilled Water"", 1], [""Apkallu Egg"", 1]]","[[""Jack-o'-Pie"", 6], [""Jack-o'-Pie x 9"", 1], [""Jack-o'-Pie"", 12]]"
-Amateur,85,[],Chocolate Cake,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Selbina Milk"", 1], [""Heart Chocolate"", 1], [""Bird Egg"", 1], [""Apkallu Egg"", 1]]","[[""Silken Spirit"", 1], null, null]"
-Amateur,85,[],Coconut Rusk,Fire,Patissier,"[[""Selbina Butter"", 1], [""Iron Bread"", 1], [""Bird Egg"", 1], [""Elshimo Coconut"", 1]]","[[""Coconut Rusk"", 4], [""Coconut Rusk"", 6], [""Coconut Rusk"", 8]]"
-Amateur,85,[],Fruit Parfait,Wind,Patissier,"[[""Maple Sugar"", 1], [""Apple Mint"", 1], [""Faerie Apple"", 1], [""Saruta Orange"", 1], [""Kazham Pineapple"", 1], [""Yagudo Cherry"", 1], [""Pamamas"", 1], [""Uleguerand Milk"", 1]]","[[""Queen's Crown"", 1], null, null]"
-Amateur,85,[],Yellow Curry,Fire,,"[[""Cooking Kit 85"", 1]]","[null, null, null]"
-Amateur,86,[],Boscaiola,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Spaghetti"", 1], [""Danceshroom"", 1], [""King Truffle"", 1], [""Wild Onion"", 1], [""Scream Fungus"", 1], [""Pomodoro Sauce"", 1]]","[[""Boscaiola"", 4], [""Boscaiola +1"", 2], [""Boscaiola +1"", 4]]"
-Amateur,86,[],Marron Glace,Dark,Patissier,"[[""Maple Sugar"", 1], [""Chestnut"", 2], [""Baking Soda"", 1], [""Grape Juice"", 1]]","[[""Squirrel's Delight"", 1], null, null]"
-Amateur,86,[],Marron Glace,Dark,,"[[""Maple Sugar"", 1], [""Chestnut"", 2], [""Grape Juice"", 1]]","[[""Bijou Glace"", 1], null, null]"
-Amateur,86,[],Mushroom Stew,Fire,,"[[""Danceshroom"", 1], [""Coral Fungus"", 1], [""Selbina Butter"", 1], [""Puffball"", 1], [""Black Pepper"", 1], [""Popoto"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Witch Stew"", 1], null, null]"
-Amateur,87,[],Antica Broth,Water,,"[[""Gelatin"", 1], [""Antican Robe"", 2], [""Antican Acid"", 2]]","[[""Fragrant Antica Broth"", 2], [""Fragrant Antica Broth"", 4], [""Fragrant Antica Broth"", 6]]"
-Amateur,87,[],Seafood Stew,Fire,,"[[""Gysahl Greens"", 1], [""Gold Lobster"", 1], [""Shall Shell"", 1], [""Nebimonite"", 1], [""Black Pepper"", 1], [""Popoto"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,87,[],Seafood Stew,Fire,,"[[""Popoto"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Gysahl Greens"", 1], [""Istakoz"", 1], [""Ahtapot"", 1], [""Istiridye"", 1]]","[null, null, null]"
-Amateur,87,[],Oden,Fire,,"[[""Konjak"", 1], [""Daikon"", 1], [""Chikuwa"", 1], [""Fish Stock"", 1]]","[[""Oden"", 4], [""Oden +1"", 2], [""Oden +1"", 4]]"
-Amateur,88,[],Coeurl Saute,Fire,,"[[""Olive Oil"", 1], [""Coeurl Meat"", 1], [""Grape Juice"", 1], [""Selbina Butter"", 1], [""Black Pepper"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1], [""Honey"", 1]]","[[""Royal Saute"", 1], null, null]"
-Amateur,88,[],Coeurl Saute,Fire,,"[[""Olive Oil"", 1], [""Lynx Meat"", 1], [""Grape Juice"", 1], [""Selbina Butter"", 1], [""Black Pepper"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1], [""Honey"", 1]]","[[""Royal Saute"", 1], null, null]"
-Amateur,88,[],Crimson Jelly,Earth,,"[[""Maple Sugar"", 1], [""Gelatin"", 1], [""Apple Mint"", 1], [""Clot Plasma"", 1], [""San d'Orian Grape"", 1], [""Distilled Water"", 1]]","[[""Vermillion Jelly"", 1], null, null]"
-Amateur,89,[],Black Pudding,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Cinnamon"", 1], [""Kitron"", 1], [""Saruta Orange"", 1], [""Buburimu Grape"", 1], [""Bird Egg"", 1], [""Royal Grape"", 1]]","[[""Dusky Indulgence"", 1], null, null]"
-Amateur,89,[],Royal Omelette,Fire,,"[[""Olive Oil"", 1], [""King Truffle"", 1], [""Cockatrice Meat"", 1], [""Selbina Butter"", 1], [""Black Pepper"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1], [""Bird Egg"", 1]]","[[""Imperial Omelette"", 1], null, null]"
-Amateur,89,[],Fin Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Kalkanbaligi"", 1], [""Ground Wasabi"", 1]]","[[""Fin Sushi"", 6], [""Fin Sushi +1"", 2], [""Fin Sushi +1"", 3]]"
-Amateur,90,[],Lebkuchen House,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Baking Soda"", 1], [""Honey"", 1], [""Cinna-cookie"", 1], [""Bubble Chocolate"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Lebkuchen Manse"", 1], null, null]"
-Amateur,90,[],Rolanberry Pie,Fire,,"[[""San d'Orian Flour"", 1], [""Gelatin"", 1], [""Selbina Milk"", 1], [""Pie Dough"", 1], [""Maple Sugar"", 1], [""Rolanberry"", 1], [""Bird Egg"", 1]]","[[""Rolanberry Pie +1"", 4], null, null]"
-Amateur,90,[],Vampire Juice,Water,,"[[""Mithran Tomato"", 1], [""Red Terrapin"", 1], [""Rolanberry"", 1], [""Faerie Apple"", 1]]","[null, null, null]"
-Amateur,90,[],Vampire Juice,Water,,"[[""Faerie Apple"", 1], [""Rolanberry"", 1], [""Mithran Tomato"", 1], [""Kaplumbaga"", 1]]","[null, null, null]"
-Amateur,90,[],Tropical Crepe,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Kitron"", 1], [""Persikos"", 1], [""Bird Egg"", 1], [""Uleguerand Milk"", 1], [""Felicifruit"", 1]]","[[""Tropical Crepe"", 4], [""Crepe des Rois"", 2], [""Crepe des Rois"", 4]]"
-Amateur,90,[],Deep-Fried Shrimp,Fire,,"[[""Olive Oil"", 1], [""White Bread"", 1], [""Bird Egg"", 1], [""Black Prawn"", 2]]","[[""Deep-Fried Shrimp"", 8], [""Deep-Fried Shrimp +1"", 6], [""Deep-Fried Shrimp +1"", 8]]"
-Amateur,90,[],Pukatrice Egg,Fire,,"[[""Olive Oil"", 1], [""White Bread"", 1], [""Cockatrice Meat"", 1], [""Bird Egg"", 1], [""Puk Egg"", 1]]","[[""Pukatrice Egg"", 8], [""Pukatrice Egg +1"", 6], [""Pukatrice Egg +1"", 8]]"
-Amateur,90,[],Fried Popoto,Fire,,"[[""Popoto"", 1], [""Olive Oil"", 1], [""White Bread"", 1], [""Bird Egg"", 1]]","[[""Fried Popoto"", 8], [""Fried Popoto +1"", 6], [""Fried Popoto +1"", 8]]"
-Amateur,90,[],Sublime Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Bibiki Urchin"", 1], [""Cheval Salmon"", 1], [""Black Sole"", 1], [""Gugru Tuna"", 1], [""Bird Egg"", 1], [""Ground Wasabi"", 1], [""Rice Vinegar"", 1]]","[[""Sublime Sushi"", 6], [""Sublime Sushi +1"", 2], [""Sublime Sushi +1"", 4]]"
-Amateur,90,[],Sublime Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Bibiki Urchin"", 1], [""Cheval Salmon"", 1], [""Black Sole"", 1], [""Gugru Tuna"", 1], [""Bird Egg"", 1], [""Wasabi"", 1], [""Rice Vinegar"", 1]]","[[""Sublime Sushi"", 6], [""Sublime Sushi +1"", 2], [""Sublime Sushi +1"", 4]]"
-Amateur,90,[],Soy Ramen,Fire,Noodle Kneading,"[[""Pamtam Kelp"", 1], [""Tiger Cod"", 1], [""Bird Egg"", 1], [""Cibol"", 1], [""Porxie Pork"", 1], [""Ramen Noodles"", 1], [""Soy Ramen Soup"", 1], [""Bamboo Shoots"", 1]]","[[""Soy Ramen xInformation Needed"", 1], [""Soy Ramen +1 xInformation Needed"", 1], [""Soy Ramen +1 xInformation Needed"", 1]]"
-Amateur,90,[],Miso Ramen,Fire,Noodle Kneading,"[[""Selbina Butter"", 1], [""Millioncorn"", 1], [""Rarab Tail"", 1], [""Porxie Pork"", 1], [""Ramen Noodles"", 1], [""Miso Ramen Soup"", 1], [""Bamboo Shoots"", 1]]","[[""Miso Ramen +1"", 4], [""Miso Ramen +1"", 6], [""Miso Ramen +1"", 8]]"
-Amateur,90,[],Salt Ramen xInformation Needed,Fire,Noodle Kneading,"[[""Kazham Peppers"", 1], [""Bastore Sardine"", 1], [""Batagreens"", 1], [""Black Prawn"", 1], [""Ramen Noodles"", 1], [""Salt Ramen Soup"", 1], [""Bamboo Shoots"", 1]]","[[""Salt Ramen xInformation Needed"", 1], [""Salt Ramen +1 xInformation Needed"", 1], [""Salt Ramen +1 xInformation Needed"", 1]]"
-Amateur,90,[],Vampire Juice,Water,,"[[""Cooking Kit 90"", 1], [""Veteran (91-100)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,91,[],Angler Stewpot,Fire,Stewpot Mastery,"[[""Fish Stock"", 1], [""Danceshroom"", 1], [""Distilled Water"", 1], [""Cotton Tofu"", 1], [""Cibol"", 1], [""Shungiku"", 1], [""Shirataki"", 1], [""Orobon Meat"", 1]]","[[""Prime Angler Stewpot"", 1], [""Prized Angler Stewpot"", 1], null]"
-Amateur,91,[],Persikos au Lait,Water,,"[[""Persikos"", 2], [""Honey"", 1], [""Selbina Milk"", 1]]","[null, null, null]"
-Amateur,91,[],Salmon Croute,Fire,,"[[""Grape Juice"", 1], [""Cheval Salmon"", 1], [""Sage"", 1], [""Pie Dough"", 1], [""Mhaura Garlic"", 1], [""Rock Salt"", 1], [""Crawler Egg"", 1]]","[[""Salmon Croute"", 2], [""Salmon Croute"", 3], [""Salmon Croute"", 4]]"
-Amateur,91,[],Meatloaf,Fire,,"[[""San d'Orian Flour"", 1], [""Blue Peas"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""Bird Egg"", 1], [""Buffalo Meat"", 1], [""Lynx Meat"", 1]]","[[""Meatloaf +1"", 1], null, null]"
-Amateur,91,[],Shadowy Broth,Water,,"[[""Dragon Meat"", 1], [""Nopales"", 1], [""Agaricus"", 1]]","[[""Shadowy Broth"", 6], [""Shadowy Broth"", 8], [""Shadowy Broth"", 10]]"
-Amateur,92,[],Flint Caviar,Dark,,"[[""Rock Salt"", 1], [""Emperor Roe"", 1]]","[null, null, null]"
-Amateur,92,[],Tavnazian Salad,Wind,,"[[""Apple Vinegar"", 1], [""Grimmonite"", 1], [""San d'Orian Carrot"", 1], [""Frost Turnip"", 1], [""Noble Lady"", 1], [""Bastore Bream"", 1], [""Flint Caviar"", 1], [""Beaugreens"", 1]]","[[""Leremieu Salad"", 1], null, null]"
-Amateur,92,[],Mushroom Saute,Fire,,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Selbina Butter"", 1], [""Danceshroom"", 1], [""Reishi Mushroom"", 1], [""Misx. Parsley"", 1], [""Walnut"", 1], [""Agaricus"", 1]]","[[""Patriarch Saute"", 1], null, null]"
-Amateur,92,[],Seafood Paella,Fire,,"[[""Mhaura Garlic"", 1], [""Tarutaru Rice"", 1], [""Saffron"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Gigant Squid"", 1], [""Black Prawn"", 1], [""Mussel"", 1]]","[[""Piscator's Paella"", 1], null, null]"
-Amateur,92,[],Mushroom Paella,Fire,,"[[""Mhaura Garlic"", 1], [""Tarutaru Rice"", 1], [""Saffron"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Woozyshroom"", 1], [""Danceshroom"", 1], [""Coral Fungus"", 1]]","[[""Mushroom Paella +1"", 1], null, null]"
-Amateur,92,[],Beef Paella,Fire,,"[[""Mhaura Garlic"", 1], [""Tarutaru Rice"", 1], [""Saffron"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Buffalo Meat"", 1], [""Gigant Squid"", 1], [""Mussel"", 1]]","[[""Beef Paella +1"", 1], null, null]"
-Amateur,92,[],Barnacle Paella,Fire,,"[[""Mhaura Garlic"", 1], [""Tarutaru Rice"", 1], [""Saffron"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Barnacle"", 2], [""Mussel"", 1]]","[[""Flapano's Paella"", 1], null, null]"
-Amateur,93,[],Coeurl Sub,Earth,,"[[""Selbina Butter"", 1], [""Crying Mustard"", 1], [""White Bread"", 1], [""La Theine Cabbage"", 1], [""Mithran Tomato"", 1], [""Coeurl Saute"", 1]]","[[""Coeurl Sub"", 12], [""Coeurl Sub +1"", 6], [""Coeurl Sub +1"", 12]]"
-Amateur,93,[],Dorado Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Noble Lady"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1]]","[[""Dorado Sushi +1"", 2], [""Dorado Sushi +1"", 3], [""Dorado Sushi +1"", 4]]"
-Amateur,93,[],Flounder Meuniere,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Selbina Milk"", 1], [""Dil"", 1]]","[[""Flounder Meuniere +1"", 1], null, null]"
-Amateur,93,[],Flounder Meuniere,Fire,,"[[""Olive Oil"", 1], [""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Selbina Milk"", 1], [""Black Sole"", 1], [""Rock Salt"", 1], [""Black Pepper"", 1]]","[[""Flounder Meuniere +1"", 1], null, null]"
-Amateur,93,[],Urchin Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Bibiki Urchin"", 1], [""Distilled Water"", 1], [""Pamtam Kelp"", 1]]","[[""Urchin Sushi +1"", 1], null, null]"
-Amateur,93,[],Auroral Broth,Water,,"[[""Aurora Bass"", 1], [""San d'Orian Flour"", 1], [""Distilled Water"", 1]]","[[""Auroral Broth"", 6], [""Auroral Broth"", 8], [""Auroral Broth"", 10]]"
-Amateur,94,[],Black Curry,Fire,,"[[""Black Pepper"", 1], [""Curry Powder"", 1], [""Woozyshroom"", 1], [""Eggplant"", 1], [""Distilled Water"", 1], [""Lakerda"", 1], [""Ahtapot"", 1]]","[null, null, null]"
-Amateur,94,[],Black Curry,Fire,,"[[""Black Pepper"", 1], [""Curry Powder"", 1], [""Nebimonite"", 1], [""Woozyshroom"", 1], [""Eggplant"", 1], [""Gugru Tuna"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,94,[],Hedgehog Pie,Fire,,"[[""Selbina Butter"", 1], [""Pie Dough"", 1], [""Blue Peas"", 1], [""Rock Salt"", 1], [""Lizard Egg"", 1], [""King Truffle"", 1], [""San d'Orian Carrot"", 1], [""Buffalo Meat"", 1]]","[[""Porcupine Pie"", 1], null, null]"
-Amateur,94,[],Tonosama Rice Ball,Fire,,"[[""Tarutaru Rice"", 1], [""Pamtam Kelp"", 1], [""Flint Caviar"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Shogun Rice Ball"", 1], [""Shogun Rice Ball"", 2], null]"
-Amateur,94,[],Rabbit Pie,Fire,,"[[""Selbina Butter"", 1], [""Pie Dough"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""San d'Orian Carrot"", 1], [""Lynx Meat"", 1], [""Agaricus"", 1]]","[null, null, null]"
-Amateur,94,[],Felicifruit Gelatin,Fire,,"[[""Maple Sugar"", 2], [""Gelatin"", 1], [""San d'Orian Grape"", 1], [""Distilled Water"", 1], [""Felicifruit"", 2]]","[[""Dulcet Panettones"", 1], null, null]"
-Amateur,95,[],Dragon Steak,Fire,,"[[""Olive Oil"", 1], [""San d'Orian Carrot"", 1], [""Black Pepper"", 1], [""Popoto"", 1], [""Rarab Tail"", 1], [""Bay Leaves"", 1], [""Rock Salt"", 1], [""Dragon Meat"", 1]]","[null, null, null]"
-Amateur,95,"[[""Leathercraft"", 1]]",Persikos Tank,Earth,,"[[""Karakul Leather"", 1], [""Brass Tank"", 1], [""Persikos au Lait"", 4]]","[null, null, null]"
-Amateur,95,"[[""Woodworking"", 15]]",Rice Dumpling,Fire,,"[[""Maple Sugar"", 1], [""Bamboo Stick"", 1], [""Rock Salt"", 1], [""Sticky Rice"", 1], [""Dhalmel Meat"", 1], [""Coral Fungus"", 1], [""Distilled Water"", 1]]","[[""Rice Dumpling"", 6], [""Rice Dumpling"", 9], [""Rice Dumpling"", 12]]"
-Amateur,95,[],Hydra Kofte,Fire,,"[[""Imperial Rice"", 1], [""Imperial Flour"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""Apkallu Egg"", 1], [""Hydra Meat"", 1]]","[[""Hydra Kofte +1"", 1], null, null]"
-Amateur,95,[],Swirling Broth,Water,,"[[""San d'Orian Carrot"", 3], [""Verboshroom"", 1]]","[[""Viscous Broth"", 2], [""Viscous Broth"", 4], [""Viscous Broth"", 8]]"
-Amateur,95,[],Dragon Steak,Fire,,"[[""Cooking Kit 95"", 1]]","[null, null, null]"
-Amateur,96,[],Arrabbiata,Fire,Noodle Kneading,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Holy Basil"", 1], [""Spaghetti"", 1], [""Dragon Meat"", 1], [""Pomodoro Sauce"", 1]]","[[""Arrabbiata"", 4], [""Arrabbiata +1"", 2], [""Arrabbiata +1"", 4]]"
-Amateur,96,[],Brain Stew,Fire,,"[[""Apple Vinegar"", 1], [""Yellow Globe"", 1], [""King Truffle"", 1], [""San d'Orian Flour"", 1], [""Gelatin"", 1], [""Distilled Water"", 1], [""Honey"", 1], [""Crying Mustard"", 1]]","[[""Sophic Stew"", 1], null, null]"
-Amateur,96,[],Shimmering Broth,Water,,"[[""Ruddy Seema"", 4]]","[[""Fermented Broth"", 2], [""Fermented Broth"", 4], [""Fermented Broth"", 8]]"
-Amateur,97,[],Sea Bass Croute,Fire,,"[[""King Truffle"", 1], [""Grape Juice"", 1], [""Zafmlug Bass"", 1], [""Sage"", 1], [""Lizard Egg"", 1], [""Pie Dough"", 1], [""Mhaura Garlic"", 1], [""Rock Salt"", 1]]","[[""Sea Bass Croute"", 2], [""Sea Bass Croute"", 3], [""Sea Bass Croute"", 4]]"
-Amateur,97,"[[""Clothcraft"", 50]]",Humpty Dumpty,Fire,,"[[""Silk Cloth"", 1], [""Rock Salt"", 1], [""Pine Nuts"", 1], [""Simsim"", 1], [""Asphodel"", 1], [""Kazham Pineapple"", 1], [""Apkallu Egg"", 1], [""Burdock"", 1]]","[null, null, null]"
-Amateur,97,[],Dawn Mulsum,Ice,,"[[""Holy Water"", 1], [""White Honey"", 1], [""Grape Juice"", 1]]","[null, null, null]"
-Amateur,97,[],Spicy Broth,Water,,"[[""Mandragora Sprout"", 2], [""Giant Sheep Meat"", 1], [""Isleracea"", 1]]","[[""Bubbly Broth"", 2], [""Bubbly Broth"", 4], [""Bubbly Broth"", 8]]"
-Amateur,98,[],Dragon Soup,Fire,,"[[""Frost Turnip"", 1], [""Ginger"", 1], [""Black Pepper"", 1], [""Popoto"", 1], [""Mhaura Garlic"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Dragon Meat"", 1]]","[null, null, null]"
-Amateur,98,[],Nopales Salad,Wind,,"[[""Kazham Peppers"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Coriander"", 1], [""Kitron"", 1], [""Wild Onion"", 1], [""Mithran Tomato"", 1], [""Nopales"", 1]]","[[""Nopales Salad +1"", 1], null, null]"
-Amateur,98,[],Salubrious Broth,Water,,"[[""Gelatin"", 1], [""Akaso"", 1], [""Buffalo Meat"", 1], [""Apkallufa"", 1]]","[[""Windy Greens"", 2], [""Windy Greens"", 4], [""Windy Greens"", 8]]"
-Amateur,98,[],Seafood Gratin,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Chalaimbille"", 1], [""Rock Salt"", 1], [""Danceshroom"", 1], [""Selbina Milk"", 1], [""Gigant Squid"", 1], [""Bastore Sweeper"", 1]]","[[""Seafood Gratin"", 6], [""Seafood Gratin +1"", 2], [""Seafood Gratin +1"", 4]]"
-Amateur,99,[],Cursed Beverage,Dark,,"[[""Kitron"", 1], [""Selbina Milk"", 1], [""Malboro Vine"", 1], [""Distilled Water"", 1], [""Divine Sap"", 1]]","[null, null, null]"
-Amateur,99,[],Sugary Broth,Water,,"[[""Walnut"", 1], [""Honey"", 1], [""Ulbuconut"", 1], [""Rolanberry"", 1]]","[[""Glazed Broth"", 2], [""Glazed Broth"", 4], [""Glazed Broth"", 8]]"
-Amateur,99,[],Sweet Rice Cake,Fire,,"[[""Maple Sugar"", 1], [""Cinnamon"", 1], [""Sticky Rice"", 1], [""Gardenia Seed"", 1], [""Fresh Mugwort"", 1], [""Distilled Water"", 1]]","[[""Sweet Rice Cake"", 12], null, null]"
-Amateur,99,[],Pork Cutlet,Fire,,"[[""Porxie Pork"", 1], [""Bird Egg"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""White Bread"", 1]]","[[""Pork Cutlet +1"", 1], [""Pork Cutlet +1"", 2], [""Pork Cutlet +1"", 3]]"
-Amateur,100,[],Cursed Soup,Water,,"[[""Kitron"", 1], [""Persikos"", 1], [""Royal Jelly"", 1], [""Distilled Water"", 1], [""Honey"", 1]]","[null, null, null]"
-Amateur,100,[],Sprightly Soup,Fire,,"[[""Rock Salt"", 1], [""Danceshroom"", 1], [""Wild Onion"", 1], [""Reishi Mushroom"", 1], [""Distilled Water"", 1], [""Agaricus"", 1]]","[[""Shimmy Soup"", 1], null, null]"
-Amateur,100,[],Kitron Juice,Water,,"[[""Kitron"", 4]]","[null, null, null]"
-Amateur,100,[],Poisonous Broth,Water,,"[[""Gnatbane"", 1], [""Venom Dust"", 1], [""Distilled Water"", 1], [""Umbril Ooze"", 1]]","[[""Venomous Broth"", 2], [""Venomous Broth"", 4], [""Venomous Broth"", 8]]"
-Amateur,100,[],Sticky Webbing,Water,,"[[""Gnat Wing"", 1], [""Twitherym Wing"", 1], [""Chapuli Wing"", 1], [""Mantid Carapace"", 1]]","[[""Slimy Webbing"", 2], [""Slimy Webbing"", 4], [""Slimy Webbing"", 8]]"
-Amateur,100,[],Fizzy Broth,Water,,"[[""Tarutaru Rice"", 1], [""Millioncorn"", 1], [""Pine Nuts"", 1], [""Lucerewe Meat"", 1]]","[[""Tantalizing Broth"", 2], [""Tantalizing Broth"", 4], [""Tantalizing Broth"", 8]]"
-Amateur,100,[],Electrified Broth,Water,,"[[""Ladybug Wing"", 1], [""Gnat Wing"", 1], [""Panopt Tears"", 1], [""Snapweed Secretion"", 1]]","[[""Bug-Ridden Broth"", 2], [""Bug-Ridden Broth"", 4], [""Bug-Ridden Broth"", 8]]"
-Amateur,100,[],Warthog Stewpot,Fire,Stewpot Mastery,"[[""Soy Stock"", 1], [""Danceshroom"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1], [""Cotton Tofu"", 1], [""Napa"", 1], [""Shungiku"", 1], [""Warthog Meat"", 1], [""Expert (101-110)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Prime Warthog Stewpot"", 1], [""Prized Warthog Stewpot"", 1], null]"
-Amateur,101,[],Red Curry,Fire,,"[[""Dragon Meat"", 1], [""Curry Powder"", 1], [""Coriander"", 1], [""San d'Orian Carrot"", 1], [""Mithran Tomato"", 1], [""Kazham Peppers"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,101,[],Omelette Sandwich,Fire,,"[[""Selbina Butter"", 1], [""White Bread"", 1], [""Puk Egg"", 1], [""Apkallu Egg"", 1], [""Grauberg Lettuce"", 1]]","[[""Omelette Sandwich"", 8], [""Oml. Sandwich +1"", 6], [""Oml. Sandwich +1"", 8]]"
-Amateur,102,[],Pickled Rarab Tail,Dark,,"[[""Mhaura Garlic"", 1], [""Kazham Peppers"", 1], [""Kitron"", 1], [""Sea Foliage"", 1], [""Rock Salt"", 1], [""Water Barrel"", 1], [""Smooth Stone"", 1], [""Rarab Tail"", 1]]","[null, null, null]"
-Amateur,102,[],Fisherman's Feast,Fire,,"[[""Sausage"", 2], [""Tonosama Rice Ball"", 1], [""Salmon Rice Ball"", 1], [""Winterflower"", 1], [""Apkallu Egg"", 1], [""Grauberg Lettuce"", 1]]","[null, null, null]"
-Amateur,103,[],Walnut Cookie x 33,Fire,,"[[""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Imperial Flour"", 1], [""Distilled Water"", 1], [""Apkallu Egg"", 1], [""Walnut"", 1]]","[[""Juglan Jumble"", 33], [""Juglan Jumble x66 Verification Needed"", 1], [""Juglan Jumble x99 Verification Needed"", 1]]"
-Amateur,103,[],Insipid Broth,Water,,"[[""Apkallufa"", 1], [""Yorchete"", 1], [""Senroh Sardine"", 1]]","[[""Deepwater Broth"", 2], [""Deepwater Broth"", 4], [""Deepwater Broth"", 8]]"
-Amateur,104,[],Wetlands Broth,Dark,,"[[""Petrified Log"", 1], [""Loam"", 1], [""Snapweed Secretion"", 1], [""Distilled Water"", 1]]","[[""Heavenly Broth"", 2], [""Heavenly Broth"", 4], [""Heavenly Broth"", 8]]"
-Amateur,104,[],Soy Ramen Soup,Fire,,"[[""Chicken Bone"", 2], [""Wild Onion"", 1], [""Cockatrice Meat"", 1], [""Distilled Water"", 1], [""Cibol"", 1], [""Soy Sauce"", 1]]","[null, null, null]"
-Amateur,104,[],Miso Ramen Soup,Fire,,"[[""Mhaura Garlic"", 1], [""Ginger Root"", 1], [""Chicken Bone"", 2], [""Distilled Water"", 1], [""Miso"", 1], [""Soy Sauce"", 1]]","[[""Miso Ramen Soup"", 8], null, null]"
-Amateur,104,[],Salt Ramen Soup,Fire,,"[[""Rock Salt"", 1], [""Lufet Salt"", 1], [""Cheval Salmon"", 1], [""Bluetail"", 1], [""Bastore Bream"", 1], [""Distilled Water"", 1], [""Vongola Clam"", 1]]","[null, null, null]"
-Amateur,105,[],Date Tea,Fire,,"[[""Maple Sugar"", 1], [""Imperial Tea Leaves"", 1], [""Distilled Water"", 1], [""Date"", 1]]","[null, null, null]"
-Amateur,105,[],Dragon Fruit au Lait,Water,,"[[""Honey"", 1], [""Selbina Milk"", 1], [""Dragon Fruit"", 2]]","[null, null, null]"
-Amateur,105,[],Rancid Broth,Water,,"[[""Frigorifish"", 4]]","[[""Pungent Broth"", 2], [""Pungent Broth"", 4], [""Pungent Broth"", 6]]"
-Amateur,105,[],Frizzante Broth,Water,,"[[""Gelatin"", 1], [""Hare Meat"", 1], [""Karakul Meat"", 1], [""Ziz Meat"", 1]]","[[""Spumante Broth xInformation Needed"", 1], null, null]"
-Amateur,105,[],Decaying Broth,Water,,"[[""Mercury"", 1], [""Distilled Water"", 1], [""Flan Meat"", 1], [""Rotten Meat"", 1]]","[[""Putrescent Broth"", 2], [""Putrescent Broth"", 4], [""Putrescent Broth"", 6]]"
-Amateur,105,[],Turpid Broth xInformation Needed,Water,,"[[""Gelatin"", 1], [""Yawning Catfish"", 1], [""Warthog Meat"", 1]]","[[""Feculent Broth xInformation Needed"", 1], null, null]"
-Amateur,107,[],Himesama R. Ball,Fire,,"[[""Distilled Water"", 1], [""Pamtam Kelp"", 1], [""Rock Salt"", 1], [""Tarutaru Rice"", 1], [""Buffalo Meat"", 1], [""Burdock"", 1]]","[[""Ojo Rice Ball"", 1], null, null]"
-Amateur,109,"[[""Leathercraft"", 1]]",Dragon Tank,Earth,,"[[""Karakul Leather"", 1], [""Brass Tank"", 1], [""Dragon Fruit au Lait"", 4]]","[null, null, null]"
-Amateur,110,[],Behemoth Steak,Fire,,"[[""Selbina Butter"", 1], [""Popoto"", 1], [""Kitron"", 1], [""San d'Orian Carrot"", 1], [""Behemoth Meat"", 1]]","[[""Behemoth Steak +1"", 1], null, null]"
-Amateur,110,[],Smoldering Salisbury Steak,Fire,,"[[""Black Pepper"", 1], [""Sage"", 1], [""Rock Salt"", 1], [""White Bread"", 1], [""Wild Onion"", 1], [""Bird Egg"", 1], [""Buffalo Meat"", 1], [""Cerberus Meat"", 1], [""Authority (111-120)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Charred Salisbury Steak"", 1], null, null]"
-Amateur,111,[],Altana's Repast,Light,Culinarian's aurum tome,"[[""Holy Water"", 2], [""Cursed Beverage"", 1], [""Cursed Soup"", 1], [""Orc Offering"", 1], [""Yagudo Offering"", 1], [""Quadav Offering"", 1], [""Goblin Offering"", 1]]","[[""Altana's Repast +1"", 1], [""Altana's Repast +2"", 1], null]"
-Amateur,112,[],Riverfin Soup,Fire,,"[[""Ginger Root"", 1], [""Chicken Bone"", 1], [""Rock Salt"", 1], [""Rockfin Fin"", 1], [""Distilled Water"", 1], [""Cibol"", 1], [""Isleracea"", 1]]","[[""Oceanfin Soup"", 1], null, null]"
-Amateur,112,[],Magma Steak,Fire,,"[[""Popoto"", 1], [""Bay Leaves"", 1], [""Black Pepper"", 1], [""Millioncorn"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""San d'Orian Carrot"", 1], [""Gabbrath Meat"", 1]]","[[""Magma Steak +1"", 1], null, null]"
-Amateur,112,[],Cehuetzi Snow Cone,Wind,,"[[""Maple Sugar"", 1], [""Rolanberry"", 1], [""Thundermelon"", 2], [""Cehuetzi Ice Shard"", 1]]","[[""Cehuetzi Snow Cone"", 12], [""Apingaut Snow Cone"", 6], [""Apingaut Snow Cone 12"", 1]]"
-Amateur,112,[],Cehuetzi Snow Cone,Wind,Patissier,"[[""Maple Sugar"", 1], [""Rolanberry"", 1], [""Honey"", 1], [""Thundermelon"", 2], [""Cehuetzi Ice Shard"", 1]]","[[""Cehuetzi Snow Cone"", 12], [""Cyclical Coalescence"", 6], [""Cyclical Coalescence"", 12]]"
-Amateur,115,[],R. Pickled R. Tail x12 Verification Needed,Dark,,"[[""Rarab Tail"", 2], [""Rolanberry"", 1], [""Apple Vinegar"", 1], [""Black Pepper"", 1], [""Maple Sugar"", 1], [""Rock Salt"", 1], [""Ro'Maeve Water"", 1]]","[null, null, null]"
-Amateur,115,[],Marine Stewpot,Fire,Culinarian's argentum tome,"[[""Fish Stock"", 1], [""Distilled Water"", 1], [""Mola Mola"", 1], [""Cotton Tofu"", 1], [""Cibol"", 1], [""Shungiku"", 1], [""Shirataki"", 1], [""Agaricus"", 1]]","[[""Prm. Mn. Stewpot"", 1], null, null]"
+,1,[],Worm Paste,Water,,"[[""Cupid Worm x 2"", 1], [""La Theine Millet"", 1], [""Lizard Egg"", 1], [""Distilled Water"", 1]]","[[""Worm Paste x 4"", 1], [""Worm Paste x 6"", 1], [""Worm Paste x 8"", 1]]"
+,1,[],Yogurt,Dark,,"[[""Dogwood Log"", 1], [""Selbina Milk"", 1]]","[[""Yogurt"", 6], [""Yogurt"", 9], [""Yogurt"", 12]]"
+,2,[],Foulweather Frog,Water,,"[[""Caedarva Frog"", 1]]","[null, null, null]"
+,2,[],Foulweather Frog,Water,,"[[""Elshimo Frog"", 1]]","[null, null, null]"
+,2,[],Roasted Corn,Fire,,"[[""Millioncorn"", 1]]","[[""Grilled Corn"", 1], null, null]"
+,2,[],Dried Berry,Ice,,"[[""Rolanberry"", 3]]","[[""Rolsin"", 3], null, null]"
+,3,[],Carrot Broth,Water,,"[[""San d'Orian Carrot"", 4]]","[[""Famous Carrot Broth"", 2], [""Famous Carrot Broth"", 4], [""Famous Carrot Broth"", 8]]"
+,3,[],Peeled Crayfish,Wind,,"[[""Crayfish"", 1]]","[null, null, null]"
+,3,[],Salted Hare,Fire,,"[[""Rock Salt"", 1], [""Hare Meat"", 1]]","[null, null, null]"
+,3,[],Sweet Lizard,Fire,,"[[""Lizard Tail"", 1], [""Honey"", 1]]","[null, null, null]"
+,3,[],Honeyed Egg,Water,,"[[""Honey"", 1], [""Bird Egg"", 1]]","[null, null, null]"
+,4,[],Hard-boiled Egg,Fire,,"[[""Lizard Egg"", 1], [""Distilled Water"", 1]]","[[""Soft-boiled Egg"", 1], null, null]"
+,5,[],Pebble Soup,Fire,,"[[""Flint Stone"", 3], [""Distilled Water"", 1]]","[[""Wisdom Soup"", 1], null, null]"
+,5,[],Pebble Soup,Fire,,"[[""Cooking Kit 5"", 1]]","[null, null, null]"
+,6,[],Grilled Hare,Fire,,"[[""Dried Marjoram"", 1], [""Hare Meat"", 1]]","[[""Grilled Black Hare"", 1], null, null]"
+,6,[],Hard-boiled Egg,Fire,,"[[""Bird Egg"", 1], [""Distilled Water"", 1]]","[[""Soft-boiled Egg"", 1], null, null]"
+,7,[],Herbal Broth,Water,,"[[""Frost Turnip"", 2], [""Beaugreens"", 2]]","[[""Singing Herbal Broth"", 2], [""Singing Herbal Broth"", 4], [""Singing Herbal Broth"", 8]]"
+,7,[],Cheese Sandwich,Fire,,"[[""Crying Mustard"", 1], [""Black Pepper"", 1], [""White Bread"", 1], [""Mithran Tomato"", 1], [""Chalaimbille"", 1], [""Grauberg Lettuce"", 1]]","[[""Cheese Sandwich +1"", 1], null, null]"
+,7,[],Peeled Lobster,Wind,,"[[""Gold Lobster"", 1]]","[null, null, null]"
+,7,[],Peeled Lobster,Wind,,"[[""Istakoz"", 1]]","[null, null, null]"
+,8,[],Salmon Sub,Earth,,"[[""Crying Mustard"", 1], [""Black Bread"", 1], [""Apple Vinegar"", 1], [""La Theine Cabbage"", 1], [""Smoked Salmon"", 1], [""Mithran Tomato"", 1]]","[[""Fulm-long Sub"", 1], null, null]"
+,8,[],Speed Apple,Water,,"[[""Faerie Apple"", 1], [""Honey"", 1]]","[null, null, null]"
+,8,[],Stamina Apple,Water,,"[[""Faerie Apple"", 1], [""Yogurt"", 1]]","[null, null, null]"
+,8,[],Shadow Apple,Water,,"[[""Coffee Powder"", 1], [""Faerie Apple"", 1]]","[null, null, null]"
+,9,[],Boiled Crayfish,Fire,,"[[""Crayfish"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Steamed Crayfish"", 1], null, null]"
+,9,[],Pet Food Alpha,Earth,,"[[""Bird Egg"", 1], [""Hare Meat"", 1], [""Horo Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,10,[],Orange Juice,Water,,"[[""Saruta Orange"", 4]]","[null, null, null]"
+,10,[],Wormy Broth,Water,,"[[""Little Worm"", 1], [""Shell Bug"", 1]]","[[""Wormy Broth"", 6], [""Wormy Broth"", 8], [""Wormy Broth"", 10]]"
+,10,[],Ayran,Ice,,"[[""Kazham Peppers"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Yogurt"", 1]]","[null, null, null]"
+,10,[],Orange Juice,Water,,"[[""Cooking Kit 10"", 1]]","[null, null, null]"
+,11,[],Carrion Broth,Water,,"[[""Gelatin"", 1], [""Hare Meat"", 2], [""Rotten Meat"", 1]]","[[""Cold Carrion Broth"", 2], [""Cold Carrion Broth"", 4], [""Cold Carrion Broth"", 8]]"
+,11,[],Dried Date,Ice,,"[[""Date"", 1]]","[[""Dried Date +1"", 1], null, null]"
+,11,[],Herb Paste,Water,,"[[""Tokopekko Wildgrass"", 2], [""La Theine Millet"", 1], [""Lizard Egg"", 1], [""Distilled Water"", 1]]","[[""Herb Paste"", 4], [""Herb Paste"", 6], [""Herb Paste"", 8]]"
+,11,[],Sliced Sardine,Wind,,"[[""Bastore Sardine"", 1]]","[null, null, null]"
+,11,[],Sliced Sardine,Wind,,"[[""Hamsi"", 1]]","[null, null, null]"
+,11,[],Sliced Sardine,Wind,,"[[""Senroh Sardine"", 1]]","[null, null, null]"
+,12,[],Honey,Wind,,"[[""Beehive Chip"", 4]]","[[""Honey"", 6], [""Honey"", 9], [""Honey"", 12]]"
+,13,"[[""Alchemy"", 5]]",Dried Marjoram,Ice,,"[[""Fresh Marjoram"", 8]]","[[""Dried Marjoram"", 12], null, null]"
+,13,[],Sliced Cod,Wind,,"[[""Tiger Cod"", 1]]","[null, null, null]"
+,14,[],Tortilla,Fire,,"[[""Olive Oil"", 1], [""San d'Orian Flour"", 1], [""Millioncorn"", 1], [""Rock Salt"", 1]]","[[""Tortilla Bueno"", 6], [""Tortilla Bueno"", 9], [""Tortilla Bueno"", 12]]"
+,14,[],Army Biscuit,Fire,,"[[""San d'Orian Flour"", 1], [""Rye Flour"", 1], [""Selbina Butter"", 1], [""Rock Salt"", 1], [""Simsim"", 1], [""Honey"", 1], [""Yogurt"", 1]]","[[""Army Biscuit"", 33], [""Army Biscuit"", 66], [""Army Biscuit"", 99]]"
+,15,[],Bug Broth,Water,,"[[""Lugworm"", 2], [""Shell Bug"", 2]]","[[""Quadav Bug Broth"", 2], [""Quadav Bug Broth"", 4], [""Quadav Bug Broth"", 8]]"
+,15,[],Slice of Bluetail,Wind,,"[[""Bluetail"", 1]]","[null, null, null]"
+,15,[],Saltena,Fire,,"[[""Popoto"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Imperial Flour"", 1], [""Wild Onion"", 1], [""Cockatrice Meat"", 1], [""Bird Egg"", 1], [""Paprika"", 1]]","[[""Saltena"", 4], [""Saltena"", 6], [""Saltena"", 8]]"
+,15,[],Stuffed Pitaru,Fire,,"[[""Maple Sugar"", 1], [""Rock Salt"", 1], [""Imperial Flour"", 1], [""Giant Sheep Meat"", 1], [""Mithran Tomato"", 1], [""Distilled Water"", 1], [""Grauberg Lettuce"", 1], [""Paprika"", 1]]","[[""Stuffed Pitaru"", 4], [""Stuffed Pitaru"", 6], [""Stuffed Pitaru"", 8]]"
+,15,[],Slice of Bluetail,Wind,,"[[""Cooking Kit 15"", 1]]","[null, null, null]"
+,16,[],Roast Mushroom,Fire,,"[[""Danceshroom"", 2], [""Rock Salt"", 1]]","[[""Witch Kabob"", 1], null, null]"
+,16,[],Roast Mushroom,Fire,,"[[""Woozyshroom"", 2], [""Rock Salt"", 1]]","[[""Witch Kabob"", 1], null, null]"
+,16,[],Roast Mushroom,Fire,,"[[""Sleepshroom"", 2], [""Rock Salt"", 1]]","[[""Witch Kabob"", 1], null, null]"
+,16,[],Wispy Broth,Water,,"[[""Locust Elutriator"", 1], [""Shell Bug"", 1]]","[[""Wispy Broth"", 6], [""Wispy Broth"", 8], [""Wispy Broth"", 12]]"
+,17,[],Roast Mutton,Fire,,"[[""Dried Marjoram"", 1], [""Giant Sheep Meat"", 1], [""Mhaura Garlic"", 1]]","[[""Juicy Mutton"", 1], null, null]"
+,17,[],Slice of Carp,Wind,,"[[""Moat Carp"", 1]]","[null, null, null]"
+,17,[],Slice of Carp,Wind,,"[[""Forest Carp"", 1]]","[null, null, null]"
+,18,[],Pea Soup,Fire,,"[[""Blue Peas"", 3], [""Distilled Water"", 1], [""Dried Marjoram"", 1], [""Wild Onion"", 1]]","[[""Emerald Soup"", 1], null, null]"
+,18,[],Lik Kabob,Fire,,"[[""Lik"", 1], [""Bomb Arm"", 1]]","[[""Grilled Lik"", 1], null, null]"
+,19,[],Pet Food Beta,Earth,,"[[""Bird Egg"", 1], [""Distilled Water"", 1], [""Giant Sheep Meat"", 1], [""Horo Flour"", 1]]","[null, null, null]"
+,19,[],Roast Carp,Fire,,"[[""Forest Carp"", 1], [""Rock Salt"", 1]]","[[""Broiled Carp"", 1], null, null]"
+,19,[],Roast Carp,Fire,,"[[""Moat Carp"", 1], [""Rock Salt"", 1]]","[[""Broiled Carp"", 1], null, null]"
+,19,[],Pet Food Beta,Earth,,"[[""Apkallu Egg"", 1], [""Distilled Water"", 1], [""Karakul Meat"", 1], [""Horo Flour"", 1]]","[null, null, null]"
+,20,[],Apple Juice,Water,,"[[""Faerie Apple"", 4]]","[null, null, null]"
+,20,[],Selbina Butter,Ice,,"[[""Selbina Milk"", 1], [""Rock Salt"", 1]]","[[""Selbina Butter"", 6], [""Selbina Butter"", 9], [""Selbina Butter"", 12]]"
+,20,[],Apple Juice,Water,,"[[""Cooking Kit 20"", 1]]","[null, null, null]"
+,21,[],Roast Pipira,Fire,,"[[""Pipira"", 1], [""Rock Salt"", 1]]","[[""Broiled Pipira"", 1], null, null]"
+,21,[],Soy Milk,Fire,,"[[""Blue Peas"", 2], [""Distilled Water"", 1]]","[[""Soy Milk"", 2], [""Soy Milk"", 3], [""Soy Milk"", 4]]"
+,21,[],Vegetable Paste,Water,,"[[""Gysahl Greens"", 2], [""La Theine Millet"", 1], [""Lizard Egg"", 1], [""Distilled Water"", 1]]","[[""Vegetable Paste"", 4], [""Vegetable Paste"", 6], [""Vegetable Paste"", 8]]"
+,22,[],Baked Popoto,Fire,,"[[""Popoto"", 1], [""Selbina Butter"", 1]]","[[""Pipin' Popoto"", 1], null, null]"
+,22,[],White Honey,Wind,,"[[""Pephredo Hive Chip"", 4]]","[[""White Honey"", 6], [""White Honey"", 9], [""White Honey"", 12]]"
+,23,[],Baked Apple,Fire,,"[[""Cinnamon"", 1], [""Faerie Apple"", 1], [""Maple Sugar"", 1], [""Selbina Butter"", 1]]","[[""Sweet Baked Apple"", 1], null, null]"
+,23,[],Goblin Chocolate,Dark,,"[[""Kukuru Bean"", 3], [""Cobalt Jellyfish"", 1], [""Selbina Milk"", 1], [""Honey"", 1], [""Sunflower Seeds"", 1], [""Wijnruit"", 1]]","[[""Hobgoblin Chocolate"", 33], [""Hobgoblin Chocolate"", 66], [""Hobgoblin Chocolate"", 99]]"
+,23,[],Peperoncino,Fire,Noodle Kneading,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Spaghetti"", 1], [""Misareaux Parsley"", 1]]","[[""Peperoncino"", 4], [""Peperoncino +1"", 2], [""Peperoncino +1"", 4]]"
+,24,[],Puls,Fire,,"[[""Distilled Water"", 1], [""Rye Flour"", 1], [""Horo Flour"", 1], [""Honey"", 1]]","[[""Delicious Puls"", 1], null, null]"
+,24,[],Salsa,Water,,"[[""Kazham Peppers"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""Mithran Tomato"", 1], [""Gysahl Greens"", 1]]","[null, null, null]"
+,25,[],Roast Coffee Beans,Fire,,"[[""Coffee Beans"", 1]]","[[""Roast Coffee Beans"", 4], [""Roast Coffee Beans"", 6], [""Roast Coffee Beans"", 8]]"
+,25,[],Roasted Almonds,Fire,,"[[""Almond"", 1]]","[[""Roasted Almonds"", 6], [""Roasted Almonds"", 8], null]"
+,25,[],Vegetable Soup,Fire,,"[[""Frost Turnip"", 1], [""San d'Orian Carrot"", 1], [""Eggplant"", 1], [""La Theine Cabbage"", 1], [""Bay Leaves"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Vegetable Broth"", 1], null, null]"
+,25,[],Vegetable Soup,Fire,,"[[""Cooking Kit 25"", 1]]","[null, null, null]"
+,26,[],Meat Jerky,Ice,,"[[""Giant Sheep Meat"", 1], [""Rock Salt"", 1], [""Dried Marjoram"", 1]]","[[""Sheep Jerky"", 2], null, null]"
+,26,[],Vegetable Gruel,Fire,,"[[""San d'Orian Flour"", 1], [""Chamomile"", 1], [""Frost Turnip"", 1], [""Rarab Tail"", 1], [""Distilled Water"", 1], [""Beaugreens"", 1]]","[[""Medicinal Gruel"", 1], null, null]"
+,27,[],Boiled Crab,Fire,,"[[""Bay Leaves"", 1], [""Rock Salt"", 1], [""Land Crab Meat"", 1], [""Distilled Water"", 1]]","[[""Steamed Crab"", 1], null, null]"
+,27,[],Zoni,Fire,,"[[""Rock Salt"", 1], [""Sticky Rice"", 1], [""Tokopekko Wildgrass"", 1], [""San d'Orian Carrot"", 1], [""Tiger Cod"", 1], [""Distilled Water"", 1], [""Lakerda"", 1], [""Ziz Meat"", 1]]","[[""Zesty Zoni"", 1], null, null]"
+,27,[],Konjak,Fire,,"[[""Seashell"", 1], [""Distilled Water"", 1], [""Konjak Tuber"", 1]]","[[""Konjak"", 4], [""Konjak"", 6], [""Konjak"", 8]]"
+,28,[],Meat Broth,Water,,"[[""Gelatin"", 1], [""Dhalmel Meat"", 1], [""Giant Sheep Meat"", 1], [""Hare Meat"", 1]]","[[""Warm Meat Broth"", 2], [""Warm Meat Broth"", 4], [""Warm Meat Broth"", 8]]"
+,28,[],Pomodoro Sauce,Water,,"[[""Bay Leaves"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Holy Basil"", 1], [""Wild Onion"", 1], [""Mithran Tomato"", 1], [""Misareaux Parsley"", 1]]","[null, null, null]"
+,28,[],Vegetable Gruel,Fire,,"[[""Chamomile"", 1], [""Frost Turnip"", 1], [""Tarutaru Rice"", 1], [""Batagreens"", 1], [""Rarab Tail"", 1], [""Distilled Water"", 1]]","[[""Medicinal Gruel"", 1], null, null]"
+,29,[],Dhalmel Steak,Fire,,"[[""Black Pepper"", 1], [""Olive Oil"", 1], [""Dhalmel Meat"", 1]]","[[""Wild Steak"", 1], null, null]"
+,29,[],Insect Ball,Earth,,"[[""Millioncorn"", 1], [""Little Worm"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,29,[],Pet Food Gamma,Earth,,"[[""Dhalmel Meat"", 1], [""Horo Flour"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Pet Food Gamma"", 8], [""Pet Food Gamma"", 10], [""Pet Food Gamma"", 12]]"
+,29,[],Smoked Salmon,Fire,,"[[""Walnut Log"", 1], [""Cheval Salmon"", 1], [""Rock Salt"", 1]]","[null, null, null]"
+,30,[],Pineapple Juice,Water,,"[[""Kazham Pineapple"", 2]]","[null, null, null]"
+,30,[],Elshena,Fire,,"[[""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Imperial Flour"", 1], [""Woozyshroom"", 1], [""Scream Fungus"", 1], [""Puffball"", 1], [""Bird Egg"", 1]]","[[""Elshena"", 4], [""Elshena"", 6], [""Elshena"", 8]]"
+,30,[],Poultry Pitaru,Fire,,"[[""Maple Sugar"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Imperial Flour"", 1], [""Cockatrice Meat"", 1], [""Distilled Water"", 1], [""Apkallu Egg"", 1], [""Grauberg Lettuce"", 1]]","[[""Poultry Pitaru"", 4], [""Poultry Pitaru"", 6], [""Poultry Pitaru"", 8]]"
+,30,[],Anchovy,Dark,,"[[""Bay Leaves"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Icefish"", 4]]","[null, null, null]"
+,30,[],Anchovy,Dark,,"[[""Bay Leaves"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Sandfish"", 4]]","[null, null, null]"
+,30,[],Pineapple Juice,Water,,"[[""Cooking Kit 30"", 1]]","[null, null, null]"
+,30,[],Yayla Corbasi,Fire,,"[[""Selbina Butter"", 1], [""Rock Salt"", 1], [""Apple Mint"", 1], [""Imperial Rice"", 1], [""Imperial Flour"", 1], [""Distilled Water"", 1], [""Apkallu Egg"", 1], [""Yogurt"", 1]]","[[""Yayla Corbasi +1"", 1], null, null]"
+,31,[],Salmon Eggs,Lightning,,"[[""Cheval Salmon"", 1]]","[[""Salmon Eggs"", 6], [""Salmon Eggs"", 9], [""Salmon Eggs"", 12]]"
+,31,[],Carrot Paste,Water,,"[[""Vomp Carrot"", 2], [""La Theine Millet"", 1], [""Lizard Egg"", 1], [""Distilled Water"", 1]]","[[""Carrot Paste"", 4], [""Carrot Paste"", 6], [""Carrot Paste"", 8]]"
+,31,[],Rice Ball,Fire,,"[[""Tarutaru Rice"", 1], [""Pamtam Kelp"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Rogue Rice Ball"", 2], [""Rogue Rice Ball"", 3], [""Rogue Rice Ball"", 4]]"
+,31,[],Sardine Ball,Earth,,"[[""Bastore Sardine"", 1], [""Horo Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,31,[],Sardine Ball,Earth,,"[[""Hamsi"", 1], [""Horo Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,31,[],Sardine Ball,Earth,,"[[""Senroh Sardine"", 1], [""Horo Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,32,[],Acorn Cookie,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Acorn"", 4], [""Honey"", 1], [""Crawler Egg"", 1]]","[[""Wild Cookie"", 33], [""Wild Cookie"", 33], [""Wild Cookie"", 99]]"
+,32,[],Roast Trout,Fire,,"[[""Shining Trout"", 1], [""Rock Salt"", 1]]","[[""Broiled Trout"", 1], null, null]"
+,32,[],Roast Trout,Fire,,"[[""Rock Salt"", 1], [""Alabaligi"", 1]]","[[""Broiled Trout"", 1], null, null]"
+,32,[],Pepper Biscuit,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Black Pepper"", 1], [""Crawler Egg"", 1], [""Honey"", 1], [""Acorn"", 3]]","[[""Pepper Biscuit"", 6], [""Pepper Biscuit"", 9], [""Pepper Biscuit"", 12]]"
+,32,[],Fire Biscuit,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Kazham Peppers"", 1], [""Crawler Egg"", 1], [""Honey"", 1], [""Acorn"", 3]]","[[""Fire Biscuit"", 6], [""Fire Biscuit"", 9], [""Fire Biscuit"", 12]]"
+,33,[],Nebimonite Bake,Fire,,"[[""Selbina Butter"", 1], [""Nebimonite"", 1], [""Mhaura Garlic"", 1]]","[[""Buttered Nebimonite"", 1], null, null]"
+,33,[],Ortolana,Fire,Noodle Kneading,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Spaghetti"", 1], [""Frost Turnip"", 1], [""Eggplant"", 1], [""Nopales"", 1]]","[[""Ortolana"", 4], [""Ortolana +1"", 2], [""Ortolana +1"", 4]]"
+,33,[],Trout Ball,Earth,,"[[""Shining Trout"", 1], [""Rye Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,33,[],Trout Ball,Earth,,"[[""Alabaligi"", 1], [""Rye Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,33,[],Lucky Carrot Broth,Water,,"[[""San d'Orian Carrot"", 3], [""Snoll Arm"", 1]]","[[""Lucky Carrot Broth"", 6], [""Lucky Carrot Broth"", 8], [""Lucky Carrot Broth"", 10]]"
+,34,[],Black Bread,Fire,,"[[""Rye Flour"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Pumpernickel"", 4], null, null]"
+,34,[],Iron Bread,Fire,,"[[""San d'Orian Flour"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Steel Bread"", 4], null, null]"
+,35,[],Maple Cake,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Selbina Milk"", 1], [""Bird Egg"", 1], [""Apkallu Egg"", 1]]","[[""Silken Siesta"", 1], null, null]"
+,35,[],Meatball,Earth,,"[[""San d'Orian Flour"", 1], [""Distilled Water"", 1], [""Hare Meat"", 1]]","[null, null, null]"
+,35,[],Mushroom Soup,Fire,,"[[""Rock Salt"", 1], [""Danceshroom"", 1], [""Scream Fungus"", 1], [""Coral Fungus"", 1], [""Distilled Water"", 1]]","[[""Witch Soup"", 1], null, null]"
+,35,[],Cherry Macaron,Fire,Patissier,"[[""Maple Sugar"", 1], [""Almond"", 1], [""Lizard Egg"", 1], [""Yagudo Cherry"", 1]]","[[""Cherry Macaron"", 4], [""Cherry Macaron"", 6], [""Cherry Macaron"", 8]]"
+,35,[],Butter Crepe x 2,Fire,,"[[""San d'Orian Flour"", 1], [""Maple Sugar"", 1], [""Selbina Butter"", 1], [""Bird Egg"", 1], [""Uleguerand Milk"", 1]]","[[""Butter Crepe"", 4], [""Crepe Delice"", 2], [""Crepe Delice"", 4]]"
+,35,[],Meatball,Earth,,"[[""Cooking Kit 35"", 1]]","[null, null, null]"
+,36,[],Buffalo Jerky,Ice,,"[[""Dried Marjoram"", 1], [""Rock Salt"", 1], [""Buffalo Meat"", 1]]","[[""Bison Jerky"", 2], null, null]"
+,36,[],Windurst Salad,Wind,,"[[""Apple Vinegar"", 1], [""Kazham Pineapple"", 1], [""San d'Orian Carrot"", 1], [""Pamamas"", 1], [""Mithran Tomato"", 1], [""La Theine Cabbage"", 1], [""Rolanberry"", 1], [""Yagudo Cherry"", 1]]","[[""Timbre Timbers Salad"", 1], null, null]"
+,37,[],Bubble Chocolate,Fire,,"[[""Kukuru Bean"", 4], [""Selbina Milk"", 1], [""Maple Sugar"", 1]]","[[""Heart Chocolate"", 1], null, null]"
+,37,[],Bloody Chocolate,Fire,Patissier,"[[""Maple Sugar"", 1], [""Kukuru Bean"", 4], [""Flytrap Leaf"", 1], [""Selbina Milk"", 1]]","[[""Bloody Chocolate"", 6], [""Bloody Chocolate"", 9], [""Bloody Chocolate"", 12]]"
+,37,[],Fish Broth,Water,,"[[""Bastore Sardine"", 4]]","[[""Fish Oil Broth"", 1], [""Fish Oil Broth"", 2], [""Fish Oil Broth"", 3]]"
+,37,[],Fish Broth,Water,,"[[""Hamsi"", 4]]","[[""Fish Oil Broth"", 1], [""Fish Oil Broth"", 2], [""Fish Oil Broth"", 3]]"
+,37,[],Fish Broth,Water,,"[[""Senroh Sardine"", 4]]","[[""Fish Oil Broth"", 1], [""Fish Oil Broth"", 2], [""Fish Oil Broth"", 3]]"
+,37,[],Dancing Herbal Broth,Water,,"[[""Frost Turnip"", 1], [""Beaugreens"", 2], [""Napa"", 1]]","[[""Dancing Herbal Broth"", 6], [""Dancing Herbal Broth"", 8], [""Dancing Herbal Broth"", 10]]"
+,37,[],Chikuwa,Earth,,"[[""Rock Salt"", 1], [""Bastore Bream"", 1], [""Tiger Cod"", 1]]","[[""Chikuwa"", 4], [""Chikuwa"", 6], [""Chikuwa"", 8]]"
+,38,[],Jack-o'-Lantern,Fire,,"[[""Ogre Pumpkin"", 1], [""Beeswax"", 1]]","[null, null, null]"
+,38,[],Meat Mithkabob,Fire,,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Wild Onion"", 1], [""Ziz Meat"", 1]]","[[""Meat Mithkabob"", 12], [""Meat Chiefkabob"", 6], [""Meat Chiefkabob"", 12]]"
+,38,[],Meat Mithkabob,Fire,,"[[""Kazham Peppers"", 1], [""Cockatrice Meat"", 1], [""Mhaura Garlic"", 1], [""Wild Onion"", 1]]","[[""Meat Mithkabob"", 12], [""Meat Chiefkabob"", 6], [""Meat Chiefkabob"", 12]]"
+,38,[],Miso Soup,Fire,,"[[""Adoulinian Kelp"", 1], [""Cotton Tofu"", 1], [""Cibol"", 1], [""Miso"", 1], [""Dried Bonito"", 1]]","[[""Miso Soup +1"", 1], null, null]"
+,39,[],Balik Sandvici,Fire,,"[[""Olive Oil"", 1], [""Rock Salt"", 1], [""Kitron"", 1], [""White Bread"", 1], [""Wild Onion"", 1], [""Mithran Tomato"", 1], [""Uskumru"", 1]]","[[""Balik Sandvici +1"", 1], null, null]"
+,39,"[[""Clothcraft"", 2]]",Cotton Tofu,Earth,,"[[""Cotton Cloth"", 1], [""Bittern"", 1], [""Soy Milk"", 1]]","[[""Cotton Tofu"", 6], [""Cotton Tofu"", 9], [""Cotton Tofu"", 12]]"
+,39,[],Pet Food Delta,Earth,,"[[""Rye Flour"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1], [""Land Crab Meat"", 1]]","[[""Pet Food Delta"", 8], [""Pet Food Delta"", 10], [""Pet Food Delta"", 12]]"
+,40,[],Melanzane,Fire,Noodle Kneading,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Spaghetti"", 1], [""Wild Onion"", 1], [""Eggplant"", 1], [""Pomodoro Sauce"", 1]]","[[""Melanzane"", 4], [""Melanzane"", 6], [""Melanzane +1"", 2]]"
+,40,[],Melon Juice,Water,,"[[""Watermelon"", 1], [""Thundermelon"", 1]]","[null, null, null]"
+,40,[],Marinara Pizza,Fire,,"[[""Mhaura Garlic"", 1], [""Dried Marjoram"", 1], [""Holy Basil"", 1], [""Pizza Dough"", 1], [""Chalaimbille"", 1], [""Marinara Sauce"", 1]]","[[""Marinara Pizza +1"", 1], null, null]"
+,40,[],Ulbuconut Milk,Wind,,"[[""Elshimo Coconut"", 1]]","[[""Ulbuconut Milk +1"", 1], null, null]"
+,40,[],Ulbuconut Milk,Wind,,"[[""Ulbuconut"", 1]]","[[""Ulbuconut Milk +1"", 1], null, null]"
+,40,[],Marinara Slice,Fire,,"[[""Mhaura Garlic"", 1], [""Dried Marjoram"", 1], [""Holy Basil"", 1], [""Pizza Dough"", 1], [""Chalaimbille"", 1], [""Marinara Sauce"", 1], [""Pizza Cutter"", 1]]","[[""Marinara Slice"", 8], [""Marinara Slice +1"", 6], [""Marinara Slice +1"", 8]]"
+,40,[],Melon Juice,Water,,"[[""Cooking Kit 40"", 1]]","[null, null, null]"
+,40,[],Sutlac,Fire,Patissier,"[[""Maple Sugar"", 1], [""Rock Salt"", 1], [""Imperial Rice"", 1], [""Cornstarch"", 1], [""Selbina Milk"", 1], [""Apkallu Egg"", 1]]","[[""Sutlac +1"", 1], null, null]"
+,41,[],Apple Vinegar,Dark,,"[[""Honey"", 1], [""Faerie Apple"", 3]]","[[""Apple Vinegar"", 6], [""Apple Vinegar"", 9], [""Apple Vinegar"", 12]]"
+,41,[],Salmon Rice Ball,Fire,,"[[""Smoked Salmon"", 1], [""Tarutaru Rice"", 1], [""Pamtam Kelp"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Naval Rice Ball"", 2], null, null]"
+,41,[],Salmon Roe,Dark,,"[[""Rock Salt"", 1], [""Salmon Eggs"", 1]]","[[""Salmon Roe"", 3], [""Salmon Roe"", 6], [""Salmon Roe"", 9]]"
+,41,[],Windurst Taco,Fire,,"[[""Hare Meat"", 1], [""Wild Onion"", 1], [""Tortilla"", 2], [""Stone Cheese"", 1], [""Windurst Salad"", 1], [""Salsa"", 1]]","[[""Windurst Taco"", 12], [""Timbre Timbers Taco"", 6], [""Timbre Timbers Taco"", 12]]"
+,41,[],Bubbling Carrion Broth,Fire,,"[[""Kazham Peppers"", 1], [""Gelatin"", 1], [""Hare Meat"", 1], [""Distilled Water"", 1], [""Rotten Meat"", 1]]","[[""Bubbling Carrion Broth"", 6], [""Bubbling Carrion Broth"", 8], [""Bubbling Carrion Broth"", 10]]"
+,42,[],Pie Dough,Water,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Rock Salt"", 1]]","[[""Pie Dough"", 6], [""Pie Dough"", 9], [""Pie Dough"", 12]]"
+,42,[],Pizza Dough,Water,,"[[""Selbina Butter"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Semolina"", 1]]","[[""Pizza Dough"", 6], [""Pizza Dough"", 9], [""Pizza Dough"", 12]]"
+,42,[],Simit,Fire,,"[[""Maple Sugar"", 1], [""Rock Salt"", 1], [""Simsim"", 1], [""Imperial Flour"", 1], [""Selbina Milk"", 1], [""Buburimu Grape"", 1], [""Distilled Water"", 1], [""White Honey"", 1]]","[[""Simit +1"", 4], null, null]"
+,43,[],Fish Broth,Water,,"[[""Uskumru"", 2]]","[null, null, null]"
+,43,[],Tomato Juice,Water,,"[[""Rock Salt"", 1], [""Mithran Tomato"", 3]]","[null, null, null]"
+,43,[],Cherry Muffin,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Selbina Milk"", 1], [""Yagudo Cherry"", 1], [""Bird Egg"", 1]]","[[""Cherry Muffin +1"", 1], null, null]"
+,43,[],Saffron,Wind,,"[[""Saffron Blossom"", 3]]","[[""Saffron"", 2], [""Saffron"", 3], [""Saffron"", 4]]"
+,44,[],Spaghetti,Water,Noodle Kneading,"[[""Rock Salt"", 1], [""Semolina"", 1]]","[[""Spaghetti"", 2], [""Spaghetti"", 3], [""Spaghetti"", 4]]"
+,44,[],White Bread,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Honey"", 1]]","[[""Pain de Neige"", 4], null, null]"
+,44,[],Bavarois,Ice,,"[[""Maple Sugar"", 1], [""Gelatin"", 1], [""Apple Mint"", 1], [""Vanilla"", 1], [""Bird Egg"", 1], [""Uleguerand Milk"", 1]]","[[""Bavarois +1"", 1], null, null]"
+,45,[],Menemen,Fire,,"[[""Kazham Peppers"", 1], [""Selbina Butter"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""Mithran Tomato"", 1], [""Puk Egg"", 2]]","[[""Menemen +1"", 1], null, null]"
+,45,[],Goulash,Fire,,"[[""Popoto"", 1], [""Coeurl Meat"", 1], [""Mithran Tomato"", 1], [""Distilled Water"", 1], [""Paprika"", 1]]","[[""Goulash +1"", 1], null, null]"
+,45,[],Goulash,Fire,,"[[""Popoto"", 1], [""Mithran Tomato"", 1], [""Distilled Water"", 1], [""Lynx Meat"", 1], [""Paprika"", 1]]","[[""Goulash +1"", 1], null, null]"
+,45,[],Fish Broth,Water,,"[[""Bluetail"", 2]]","[[""Fish Oil Broth"", 4], [""Fish Oil Broth"", 8], [""Fish Oil Broth"", 12]]"
+,45,[],Fish Broth,Water,,"[[""Uskumru"", 2]]","[[""Fish Oil Broth"", 4], [""Fish Oil Broth"", 8], [""Fish Oil Broth"", 12]]"
+,45,[],Fish Broth,Water,,"[[""Lakerda"", 1]]","[[""Fish Oil Broth"", 2], [""Fish Oil Broth"", 4], [""Fish Oil Broth"", 6]]"
+,45,[],Fish Broth,Water,,"[[""Gugru Tuna"", 1]]","[[""Fish Oil Broth"", 2], [""Fish Oil Broth"", 4], [""Fish Oil Broth"", 6]]"
+,45,[],Tomato Soup,Fire,,"[[""Tomato Juice"", 1], [""Two-Leaf Mandragora Bud"", 1], [""Wild Onion"", 1], [""Dried Marjoram"", 1], [""Distilled Water"", 1]]","[[""Sunset Soup"", 1], null, null]"
+,45,[],Soba Noodles,Water,Noodle Kneading,"[[""Buckwheat Flour"", 1]]","[[""Soba Noodles"", 2], [""Soba Noodles"", 3], [""Soba Noodles"", 4]]"
+,45,[],Orange Cake,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Selbina Milk"", 1], [""Saruta Orange"", 1], [""Bird Egg"", 1], [""Apkallu Egg"", 1]]","[[""Silken Squeeze"", 1], null, null]"
+,45,[],Sugar Rusk,Fire,Patissier,"[[""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Iron Bread"", 1], [""Bird Egg"", 1]]","[[""Sugar Rusk"", 4], [""Sugar Rusk"", 6], [""Sugar Rusk"", 8]]"
+,45,[],Wool Grease,Wind,,"[[""Lesser Chigoe"", 2], [""Shell Bug"", 1]]","[[""Wool Grease"", 6], [""Wool Grease"", 8], [""Wool Grease"", 10]]"
+,45,[],Goblin Bug Broth,Water,,"[[""Rotten Meat"", 1], [""Lugworm"", 1], [""Shell Bug"", 2]]","[[""Goblin Bug Broth"", 6], [""Goblin Bug Broth"", 8], [""Goblin Bug Broth"", 10]]"
+,45,[],Menemen,Fire,,"[[""Cooking Kit 45"", 1]]","[null, null, null]"
+,45,[],Sea Dragon Liver,Earth,,"[[""Soryu's Liver"", 1], [""Sekiryu's Liver"", 1], [""Hakuryu's Liver"", 1], [""Kokuryu's Liver"", 1]]","[[""Sea Dragon Liver"", 6], [""Sea Dragon Liver"", 9], [""Sea Dragon Liver"", 12]]"
+,46,[],Pickled Herring,Ice,,"[[""Nosteau Herring"", 1], [""Dried Marjoram"", 1], [""Rock Salt"", 1]]","[[""Pickled Herring"", 4], [""Viking Herring"", 4], null]"
+,46,[],Vongole Rosso,Fire,Noodle Kneading,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Spaghetti"", 1], [""Wild Onion"", 1], [""Vongola Clam"", 1], [""Pomodoro Sauce"", 1]]","[[""Vongole Rosso"", 4], [""Vongole Rosso +1"", 2], [""Vongole Rosso +1"", 4]]"
+,46,[],Green Curry Bun,Fire,,"[[""San d'Orian Flour"", 1], [""Olive Oil"", 1], [""Green Curry"", 1], [""Bird Egg"", 1]]","[[""Green Curry Bun"", 8], [""G. Curry Bun +1"", 6], [""G. Curry Bun +1"", 8]]"
+,46,[],Ramen Noodles,Water,Noodle Kneading,"[[""San d'Orian Flour"", 1], [""Rock Salt"", 1], [""Baking Soda"", 1], [""Distilled Water"", 1]]","[[""Ramen Noodles"", 2], [""Ramen Noodles"", 3], [""Ramen Noodles"", 4]]"
+,47,[],Cinna-cookie,Fire,,"[[""San d'Orian Flour"", 1], [""Cinnamon"", 1], [""Selbina Butter"", 1], [""Lizard Egg"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1]]","[[""Coin Cookie"", 33], [""Coin Cookie"", 33], [""Coin Cookie"", 99]]"
+,47,[],Mont Blanc,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Chestnut"", 2], [""Selbina Milk"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Golden Royale"", 1], null, null]"
+,47,[],Chocolate Crepe,Fire,,"[[""San d'Orian Flour"", 1], [""Almond"", 1], [""Honey"", 1], [""Pamamas"", 1], [""Bubble Chocolate"", 1], [""Bird Egg"", 1], [""Uleguerand Milk"", 1]]","[[""Chocolate Crepe"", 4], [""Crepe Caprice"", 2], [""Crepe Caprice"", 4]]"
+,48,[],Apple Pie,Fire,,"[[""Pie Dough"", 1], [""Maple Sugar"", 1], [""Cinnamon"", 1], [""Lizard Egg"", 1], [""Faerie Apple"", 1]]","[[""Apple Pie +1"", 4], null, null]"
+,48,[],Tomato Soup,Fire,,"[[""Dried Marjoram"", 1], [""Bay Leaves"", 1], [""Wild Onion"", 1], [""Tomato Juice"", 1], [""Distilled Water"", 1]]","[[""Sunset Soup"", 1], null, null]"
+,49,[],Cinna-cookie,Fire,,"[[""San d'Orian Flour"", 1], [""Cinnamon"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Coin Cookie"", 33], [""Coin Cookie"", 33], [""Coin Cookie"", 99]]"
+,49,[],Fish Mithkabob,Fire,,"[[""Shall Shell"", 2], [""Nebimonite"", 1], [""Bastore Sardine"", 1], [""Bluetail"", 1]]","[[""Fish Mithkabob"", 12], [""Fish Chiefkabob"", 6], [""Fish Chiefkabob"", 12]]"
+,49,[],Fish Mithkabob,Fire,,"[[""Hamsi"", 1], [""Uskumru"", 1], [""Ahtapot"", 1], [""Istiridye"", 2]]","[[""Fish Mithkabob"", 12], [""Fish Chiefkabob"", 6], [""Fish Chiefkabob"", 12]]"
+,49,[],Garlic Cracker,Fire,,"[[""Tarutaru Rice"", 1], [""Mhaura Garlic"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Garlic Cracker"", 99], [""Garlic Cracker +1"", 33], [""Garlic Cracker +1"", 99]]"
+,49,[],Goblin Stir-Fry,Fire,,"[[""Olive Oil"", 1], [""La Theine Cabbage"", 1], [""Eggplant"", 1], [""Rarab Tail"", 1], [""Ginger Root"", 1], [""Kazham Peppers"", 1], [""Hare Meat"", 1], [""Trilobite"", 1]]","[null, null, null]"
+,49,[],Pet Food Epsilon,Earth,,"[[""Rye Flour"", 1], [""Distilled Water"", 1], [""Lizard Egg"", 1], [""Ziz Meat"", 1]]","[[""Pet Food Epsilon"", 6], [""Pet Food Epsilon"", 8], [""Pet Food Epsilon"", 10]]"
+,49,[],Pet Food Epsilon,Earth,,"[[""Cockatrice Meat"", 1], [""Lizard Egg"", 1], [""Rye Flour"", 1], [""Distilled Water"", 1]]","[[""Pet Food Epsilon"", 6], [""Pet Food Epsilon"", 8], [""Pet Food Epsilon"", 10]]"
+,50,[],Crab Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Land Crab Meat"", 1], [""Distilled Water"", 1]]","[[""Crab Sushi"", 6], [""Crab Sushi +1"", 2], [""Crab Sushi +1"", 4]]"
+,50,[],Apple Pie,Fire,,"[[""Cinnamon"", 1], [""Pie Dough"", 1], [""Maple Sugar"", 1], [""Bird Egg"", 1], [""Faerie Apple"", 1]]","[[""Apple Pie +1"", 4], null, null]"
+,50,[],Grape Juice,Dark,,"[[""San d'Orian Grape"", 4]]","[null, null, null]"
+,50,[],Margherita Pizza,Fire,,"[[""Holy Basil"", 1], [""Pizza Dough"", 1], [""Mithran Tomato"", 1], [""Pomodoro Sauce"", 1], [""Chalaimbille"", 1]]","[[""Margherita Pizza +1"", 1], null, null]"
+,50,[],Montagna,Fire,,"[[""Mhaura Garlic"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Habaneros"", 1], [""Imperial Flour"", 1], [""Bird Egg"", 1], [""Buffalo Meat"", 1], [""Burdock Root"", 1]]","[[""Montagna"", 4], [""Montagna"", 6], [""Montagna"", 8]]"
+,50,[],Seafood Pitaru,Fire,,"[[""Maple Sugar"", 1], [""Rock Salt"", 1], [""Imperial Flour"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Grauberg Lettuce"", 1], [""Butterpear"", 1], [""Peeled Lobster"", 1]]","[[""Seafood Pitaru"", 4], [""Seafood Pitaru"", 6], [""Seafood Pitaru"", 8]]"
+,50,[],Margherita Slice,Fire,,"[[""Holy Basil"", 1], [""Pizza Dough"", 1], [""Mithran Tomato"", 1], [""Pomodoro Sauce"", 1], [""Chalaimbille"", 1], [""Pizza Cutter"", 1]]","[[""Margherita Slice"", 8], [""Margherita Slice +1"", 6], [""Margherita Slice +1"", 8]]"
+,50,[],Apple Pie,Fire,,"[[""Cooking Kit 50"", 1]]","[null, null, null]"
+,51,[],Bretzel,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Lizard Egg"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Bretzel"", 99], [""Salty Bretzel"", 33], [""Salty Bretzel"", 99]]"
+,51,[],Orange au Lait,Water,,"[[""Saruta Orange"", 2], [""Honey"", 1], [""Selbina Milk"", 1]]","[null, null, null]"
+,51,[],Loach Slop,Fire,Stewpot Mastery,"[[""Soy Stock"", 1], [""Two-Leaf Mandragora Bud"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1], [""Cibol"", 1], [""Brass Loach"", 2], [""Burdock"", 1]]","[[""Loach Gruel"", 1], [""Loach Gruel"", 1], [""Loach Soup"", 1]]"
+,52,[],Batagreen Saute,Fire,,"[[""Selbina Butter"", 1], [""Batagreens"", 1]]","[[""Vegan Saute"", 1], null, null]"
+,52,[],Crayfish Ball,Earth,,"[[""Crayfish"", 3], [""San d'Orian Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,52,[],Crayfish Ball,Earth,,"[[""Gold Lobster"", 1], [""San d'Orian Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,52,[],Crayfish Ball,Earth,,"[[""Istakoz"", 1], [""San d'Orian Flour"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,52,[],Grasshopper Broth,Water,,"[[""Skull Locust"", 2], [""King Locust"", 1], [""Mushroom Locust"", 1], [""La Theine Cabbage"", 1], [""Gysahl Greens"", 1]]","[[""Noisy Grasshopper Broth"", 2], [""Noisy Grasshopper Broth"", 4], [""Noisy Grasshopper Broth"", 6]]"
+,52,[],Mille Feuille,Fire,Patissier,"[[""Pie Dough"", 3], [""Maple Sugar"", 1], [""Rolanberry"", 1], [""Selbina Milk"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Elysian Eclair"", 1], null, null]"
+,52,[],Lethe Consomme,Water,,"[[""Eastern Ginger"", 1], [""San d'Orian Carrot"", 1], [""Tiger Cod"", 1], [""Distilled Water"", 1]]","[[""Lethe Consomme"", 6], [""Lethe Consomme"", 8], [""Lethe Consomme"", 10]]"
+,52,[],Salted Dragonfly Trout,Fire,,"[[""Rock Salt"", 1], [""Dragonfly Trout"", 1]]","[[""Grilled Dragonfly Trout"", 1], null, null]"
+,53,[],Bretzel,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Bretzel"", 99], [""Salty Bretzel"", 33], [""Salty Bretzel"", 99]]"
+,53,[],Eel Kabob,Fire,,"[[""Olive Oil"", 1], [""Black Eel"", 1]]","[[""Broiled Eel"", 1], null, null]"
+,53,[],Eel Kabob,Fire,,"[[""Olive Oil"", 1], [""Yilanbaligi"", 1]]","[[""Broiled Eel"", 1], null, null]"
+,53,[],Coffee Muffin,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Coffee Powder"", 1], [""Selbina Milk"", 1], [""Bird Egg"", 1]]","[[""Coffee Muffin +1"", 4], null, null]"
+,54,[],Carp Sushi,Dark,,"[[""Tarutaru Rice"", 1], [""Rock Salt"", 1], [""Forest Carp"", 1]]","[[""Yahata Sushi"", 1], null, null]"
+,54,[],Carp Sushi,Dark,,"[[""Tarutaru Rice"", 1], [""Rock Salt"", 1], [""Moat Carp"", 1]]","[[""Yahata Sushi"", 1], null, null]"
+,54,[],Icecap Rolanberry,Fire,Patissier,"[[""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Gelatin"", 1], [""Vanilla"", 1], [""Crawler Egg"", 1], [""Rolanberry"", 1], [""Selbina Milk"", 1], [""Distilled Water"", 1]]","[[""Flurry Courante"", 1], null, null]"
+,54,[],Icecap Rolanberry,Fire,,"[[""Gelatin"", 1], [""Selbina Butter"", 1], [""Selbina Milk"", 1], [""Maple Sugar"", 1], [""Rolanberry"", 1], [""Distilled Water"", 1], [""Crawler Egg"", 1]]","[[""Snowy Rolanberry"", 1], null, null]"
+,54,[],Shrimp Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Bastore Sweeper"", 1]]","[[""Shrimp Sushi +1"", 2], [""Shrimp Sushi +1"", 3], [""Shrimp Sushi +1"", 4]]"
+,54,[],Cherry Bavarois,Ice,,"[[""Maple Sugar"", 1], [""Gelatin"", 1], [""Vanilla"", 1], [""Yagudo Cherry"", 1], [""Bird Egg"", 1], [""Uleguerand Milk"", 1]]","[[""Cherry Bavarois +1"", 1], null, null]"
+,54,[],Yellow Curry Bun,Fire,,"[[""San d'Orian Flour"", 1], [""Olive Oil"", 1], [""Yellow Curry"", 1], [""Bird Egg"", 1]]","[[""Yellow Curry Bun"", 8], [""Y. Curry Bun +1"", 6], [""Y. Curry Bun +1"", 8]]"
+,55,[],Beaugreen Saute,Fire,,"[[""Selbina Butter"", 1], [""Beaugreens"", 1]]","[[""Monastic Saute"", 1], null, null]"
+,55,[],Egg Soup,Fire,,"[[""Lizard Egg"", 1], [""Black Pepper"", 1], [""Distilled Water"", 1], [""Rock Salt"", 1]]","[[""Humpty Soup"", 1], null, null]"
+,55,"[[""Leathercraft"", 1]]",Orange Tank,Earth,,"[[""Karakul Leather"", 1], [""Brass Tank"", 1], [""Orange au Lait"", 4]]","[null, null, null]"
+,55,[],Pumpkin Cake,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Maple Sugar"", 1], [""Ogre Pumpkin"", 1], [""Olive Oil"", 1], [""Selbina Milk"", 1], [""Bird Egg"", 1], [""Apkallu Egg"", 1]]","[null, null, null]"
+,55,[],Coffee Macaron,Fire,Patissier,"[[""Lizard Egg"", 1], [""Coffee Beans"", 1], [""Almond"", 1], [""Maple Sugar"", 1]]","[[""Coffee Macaron"", 4], [""Coffee Macaron"", 6], [""Coffee Macaron"", 8]]"
+,55,[],Beaugreen Saute,Fire,,"[[""Cooking Kit 55"", 1]]","[null, null, null]"
+,56,[],Pamama Tart,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Bubble Chocolate"", 2], [""Pamamas"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Opo-opo Tart"", 1], null, null]"
+,56,[],Carbonara,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Black Pepper"", 1], [""Holy Basil"", 1], [""Spaghetti"", 1], [""Selbina Milk"", 1], [""Stone Cheese"", 1], [""Bird Egg"", 1], [""Buffalo Jerky"", 1]]","[[""Carbonara"", 4], [""Carbonara +1"", 2], [""Carbonara +1"", 4]]"
+,56,[],Mulsum,Ice,,"[[""Grape Juice"", 1], [""Honey"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,56,[],Zaru Soba,Fire,Noodle Kneading,"[[""Pamtam Kelp"", 1], [""Fish Stock"", 1], [""Soba Noodles"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Cibol"", 1], [""Puk Egg"", 1]]","[[""Zaru Soba +1"", 1], null, null]"
+,56,[],Pot-au-feu,Fire,,"[[""Popoto"", 1], [""Giant Femur"", 1], [""Hare Meat"", 1], [""Frost Turnip"", 1], [""San d'Or. Carrot"", 1]]","[[""Pot-au-feu"", 4], [""Pot-au-feu +1"", 2], [""Pot-au-feu +1"", 4]]"
+,57,[],Bataquiche,Fire,,"[[""Pie Dough"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Danceshroom"", 1], [""Selbina Milk"", 1], [""Stone Cheese"", 1], [""Batagreen Saute"", 1], [""Bird Egg"", 1]]","[[""Bataquiche"", 12], [""Bataquiche +1"", 6], [""Bataquiche +1"", 12]]"
+,57,[],Chai,Fire,,"[[""Maple Sugar"", 1], [""Im. Tea Leaves"", 1], [""Distilled Water"", 1]]","[[""Chai +1"", 1], null, null]"
+,57,[],Egg Soup,Fire,,"[[""Black Pepper"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Humpty Soup"", 1], null, null]"
+,57,[],Mole Broth,Water,,"[[""Snapping Mole"", 2], [""Helmet Mole"", 1], [""Loam"", 1], [""Lugworm"", 1], [""Shell Bug"", 1]]","[[""Lively Mole Broth"", 2], [""Lively Mole Broth"", 4], [""Lively Mole Broth"", 8]]"
+,57,[],Curdled Plasma Broth,Water,,"[[""Fiend Blood"", 1], [""Beastman Blood"", 1], [""Bird Blood"", 1]]","[[""Curdled Plasma Broth"", 6], [""Curdled Plasma Broth"", 8], [""Curdled Plasma Broth"", 10]]"
+,58,[],Ginger Cookie,Fire,,"[[""San d'Orian Flour"", 1], [""Ginger"", 1], [""Selbina Butter"", 1], [""Lizard Egg"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1]]","[[""Wizard Cookie"", 33], [""Wizard Cookie"", 33], [""Wizard Cookie"", 99]]"
+,58,[],Ic Pilav,Fire,,"[[""Selbina Butter"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Pine Nuts"", 1], [""Imperial Rice"", 1], [""Buburimu Grape"", 1], [""Distilled Water"", 1], [""Ziz Meat"", 1]]","[[""Ic Pilav +1"", 1], null, null]"
+,58,[],Tentacle Sushi,Earth,Raw Fish Handling,"[[""Ginger"", 1], [""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Kalamar"", 1]]","[[""Tentacle Sushi"", 2], [""Tentacle Sushi +1"", 1], [""Tentacle Sushi +1"", 2]]"
+,58,[],Tentacle Sushi,Earth,Raw Fish Handling,"[[""Ginger"", 1], [""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Cone Calamary"", 1]]","[[""Tentacle Sushi"", 2], [""Tentacle Sushi +1"", 1], [""Tentacle Sushi +1"", 2]]"
+,58,[],Cunning Brain Broth,Water,,"[[""Gelatin"", 1], [""Hare Meat"", 1], [""Giant Sheep Meat"", 1], [""Cockatrice Meat"", 1]]","[[""Cunning Brain Broth"", 6], [""Cunning Brain Broth"", 8], [""Cunning Brain Broth"", 10]]"
+,59,"[[""Alchemy"", 40]]",Dried Mugwort,Ice,,"[[""Fresh Mugwort"", 8]]","[[""Dried Mugwort"", 2], [""Dried Mugwort"", 3], [""Dried Mugwort"", 4]]"
+,59,[],Goblin Mushpot,Fire,,"[[""Danceshroom"", 1], [""Kazham Peppers"", 1], [""Scream Fungus"", 1], [""Sobbing Fungus"", 1], [""Deathball"", 1], [""Sleepshroom"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,59,[],Pet Food Zeta,Earth,,"[[""San d'Orian Flour"", 1], [""Lizard Egg"", 1], [""Coeurl Meat"", 1], [""Distilled Water"", 1]]","[[""Pet Food Zeta"", 6], [""Pet Food Zeta"", 8], [""Pet Food Zeta"", 10]]"
+,59,[],Pogaca,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Rock Salt"", 1], [""Stone Cheese"", 1], [""Distilled Water"", 1], [""Apkallu Egg"", 1], [""Yogurt"", 1]]","[[""Pogaca +1"", 33], [""Pogaca +1"", 33], [""Pogaca +1"", 99]]"
+,59,[],Spicy Cracker,Fire,,"[[""Kazham Peppers"", 1], [""Tarutaru Rice"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Red Hot Cracker"", 33], [""Red Hot Cracker"", 33], [""Red Hot Cracker"", 99]]"
+,59,[],Pepperoni Pizza,Fire,,"[[""Pizza Dough"", 1], [""Pomodoro Sauce"", 1], [""Misareaux Parsley"", 1], [""Pepperoni"", 1], [""Agaricus"", 1], [""Chalaimbille"", 1]]","[[""Pepperoni Pizza +1"", 1], null, null]"
+,59,[],Ham and Ch. Crepe,Fire,,"[[""San d'Orian Flour"", 1], [""Mhaura Garlic"", 1], [""Mithran Tomato"", 1], [""Bird Egg"", 1], [""Sausage"", 1], [""Chalaimbille"", 1], [""Uleguerand Milk"", 1]]","[[""Ham and Ch. Crepe"", 4], [""Crepe Paysanne"", 2], [""Crepe Paysanne"", 4]]"
+,59,[],Pepperoni Slice,Fire,,"[[""Pizza Dough"", 1], [""Pomodoro Sauce"", 1], [""Misareaux Parsley"", 1], [""Pepperoni"", 1], [""Agaricus Mushroom"", 1], [""Chalaimbille"", 1], [""Pizza Cutter"", 1]]","[[""Pepperoni Slice"", 8], [""Pepperoni Slice +1"", 6], [""Pepperoni Slice +1"", 8]]"
+,60,[],Ginger Cookie,Fire,,"[[""San d'Orian Flour"", 1], [""Ginger"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Wizard Cookie"", 33], [""Wizard Cookie"", 33], [""Wizard Cookie"", 99]]"
+,60,[],Green Quiche,Fire,,"[[""Pie Dough"", 1], [""Rock Salt"", 1], [""Danceshroom"", 1], [""Selbina Milk"", 1], [""Stone Cheese"", 1], [""Bird Egg"", 1], [""Beaugreen Saute"", 1]]","[[""Green Quiche"", 12], [""Emerald Quiche"", 6], [""Emerald Quiche"", 12]]"
+,60,[],Sis Kebabi,Fire,,"[[""Mhaura Garlic"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""Mithran Tomato"", 1], [""Karakul Meat"", 1]]","[[""Sis Kebabi +1"", 1], null, null]"
+,60,[],Yagudo Drink,Dark,,"[[""Yagudo Cherry"", 1], [""Buburimu Grape"", 3]]","[null, null, null]"
+,60,[],Adoulin Soup,Fire,,"[[""Black Pepper"", 1], [""Adoulinian Kelp"", 2], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Black Prawn"", 1]]","[[""Adoulin Soup +1"", 1], null, null]"
+,60,[],Cutlet Sandwich,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Pork Cutlet"", 1]]","[[""Cutlet Sandwich"", 6], [""Cutlet Sandwich +1"", 3], [""Cutlet Sandwich +1"", 6]]"
+,60,[],Green Quiche,Fire,,"[[""Cooking Kit 60"", 1]]","[null, null, null]"
+,61,[],Cilbir,Fire,,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Selbina Butter"", 1], [""Rock Salt"", 1], [""Apkallu Egg"", 2], [""Yogurt"", 1]]","[[""Cibarious Cilbir"", 1], null, null]"
+,61,[],Goblin Bread,Fire,,"[[""Puffball"", 1], [""Rock Salt"", 1], [""Horo Flour"", 1], [""Bone Chip"", 1], [""Distilled Water"", 1], [""Poison Flour"", 1], [""Crawler Egg"", 1]]","[[""Hobgoblin Bread"", 4], null, null]"
+,61,[],Seafood Stewpot,Fire,Stewpot Mastery,"[[""Fish Stock"", 1], [""Danceshroom"", 1], [""Gold Lobster"", 1], [""Bastore Bream"", 1], [""Distilled Water"", 1], [""Cotton Tofu"", 1], [""Cibol"", 1], [""Napa"", 1]]","[[""Prime Seafood Stewpot"", 1], [""Prized Seafood Stewpot"", 1], null]"
+,61,[],Stone Cheese,Dark,,"[[""Selbina Milk"", 1], [""Rock Salt"", 1]]","[[""Rock Cheese"", 4], null, null]"
+,61,[],Marinara Sauce,Water,,"[[""Kazham Peppers"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Mithran Tomato"", 1], [""Anchovy"", 1]]","[null, null, null]"
+,62,[],Apple au Lait,Water,,"[[""Faerie Apple"", 2], [""Honey"", 1], [""Selbina Milk"", 1]]","[null, null, null]"
+,62,[],Melon Pie,Fire,,"[[""Thundermelon"", 1], [""Cinnamon"", 1], [""Lizard Egg"", 1], [""Pie Dough"", 1], [""Maple Sugar"", 1]]","[[""Melon Pie +1"", 4], null, null]"
+,62,"[[""Alchemy"", 11]]",Snoll Gelato,Ice,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Selbina Milk"", 1], [""Bird Egg"", 1], [""Snoll Arm"", 1]]","[[""Sub-zero Gelato"", 4], [""Sub-zero Gelato"", 6], [""Sub-zero Gelato"", 8]]"
+,62,"[[""Alchemy"", 11]]",Snoll Gelato,Ice,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Vanilla"", 1], [""Selbina Milk"", 1], [""Bird Egg"", 1], [""Snoll Arm"", 1]]","[[""Seraph's Kiss"", 4], [""Seraph's Kiss"", 6], [""Seraph's Kiss"", 8]]"
+,62,[],Blood Broth,Water,,"[[""Fiend Blood"", 1], [""Leech Saliva"", 1], [""Lizard Blood"", 1], [""Bird Blood"", 1], [""Beast Blood"", 1]]","[[""Clear Blood Broth"", 2], [""Clear Blood Broth"", 4], [""Clear Blood Broth"", 8]]"
+,62,[],C. Grasshopper Broth,Water,,"[[""Skull Locust"", 2], [""La Theine Cabbage"", 1], [""Gysahl Greens"", 1], [""Little Worm"", 1], [""Shell Bug"", 1]]","[[""C. Grasshopper Broth"", 6], [""C. Grasshopper Broth"", 8], [""C. Grasshopper Broth"", 10]]"
+,63,[],Balik Sis,Fire,,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Mithran Tomato"", 1], [""Kilicbaligi"", 1]]","[[""Balik Sis +1"", 1], null, null]"
+,63,"[[""Woodworking"", 9]]",Sausage,Fire,,"[[""Sage"", 1], [""Black Pepper"", 1], [""Maple Log"", 1], [""Rock Salt"", 1], [""Giant Sheep Meat"", 1]]","[null, null, null]"
+,63,[],Mole Broth,Water,,"[[""Snapping Mole"", 2], [""Helmet Mole"", 1], [""Loam"", 1], [""Little Worm"", 1], [""Shell Bug"", 1]]","[[""Lively Mole Broth"", 2], [""Lively Mole Broth"", 4], [""Lively Mole Broth"", 6]]"
+,63,[],Salmon Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Cheval Salmon"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1]]","[[""Salmon Sushi"", 6], [""Salmon Sushi +1"", 2], [""Salmon Sushi +1"", 4]]"
+,63,[],Lethe Potage,Water,,"[[""Popoto"", 1], [""Eastern Ginger"", 1], [""Bastore Bream"", 1], [""Distilled Water"", 1]]","[[""Lethe Potage"", 6], [""Lethe Potage"", 8], [""Lethe Potage"", 10]]"
+,63,[],Razor Brain Broth,Water,,"[[""Gelatin"", 1], [""Hare Meat"", 1], [""Giant Sheep Meat"", 1], [""Ziz Meat"", 1]]","[[""Razor Brain Broth"", 6], [""Razor Brain Broth"", 8], [""Razor Brain Broth"", 10]]"
+,63,[],Briny Broth,Water,,"[[""Hamsi"", 1], [""Mercanbaligi"", 1], [""Rhinochimera"", 1]]","[[""Briny Broth"", 6], [""Briny Broth"", 8], [""Briny Broth"", 10]]"
+,64,[],Blackened Frog,Fire,,"[[""Copper Frog"", 1], [""Dried Marjoram"", 1], [""Rock Salt"", 1]]","[[""Frog Flambe"", 1], null, null]"
+,64,[],Melon Pie,Fire,,"[[""Thundermelon"", 1], [""Cinnamon"", 1], [""Bird Egg"", 1], [""Pie Dough"", 1], [""Maple Sugar"", 1]]","[[""Melon Pie +1"", 4], null, null]"
+,64,[],Octopus Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Gigant Octopus"", 1]]","[[""Octopus Sushi +1"", 2], [""Octopus Sushi +1"", 4], [""Octopus Sushi +1"", 6]]"
+,64,[],Black Curry Bun,Fire,,"[[""San d'Orian Flour"", 1], [""Olive Oil"", 1], [""Black Curry"", 1], [""Bird Egg"", 1]]","[[""Black Curry Bun"", 8], [""B. Curry Bun +1"", 6], [""B. Curry Bun +1"", 8]]"
+,64,[],Octopus Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Contortopus"", 2]]","[[""Octopus Sushi +1"", 2], [""Octopus Sushi +1"", 4], [""Octopus Sushi +1"", 6]]"
+,64,[],Octopus Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Contortacle"", 3]]","[[""Octopus Sushi +1"", 2], [""Octopus Sushi +1"", 4], [""Octopus Sushi +1"", 6]]"
+,64,[],Blackened Frog,Fire,,"[[""Senroh Frog"", 1], [""Dried Marjoram"", 1], [""Rock Salt"", 1]]","[[""Frog Flambe"", 1], null, null]"
+,65,[],Pumpkin Soup,Fire,,"[[""Ogre Pumpkin"", 1], [""Sage"", 1], [""Rock Salt"", 1], [""Selbina Milk"", 1], [""Distilled Water"", 1]]","[[""Jack-o'-Soup"", 1], null, null]"
+,65,[],Bison Steak,Fire,,"[[""Bay Leaves"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Rarab Tail"", 1], [""Buffalo Meat"", 1]]","[[""Marbled Steak"", 1], null, null]"
+,65,[],Irmik Helvasi,Fire,Patissier,"[[""Selbina Butter"", 1], [""Semolina"", 1], [""Pine Nuts"", 1], [""Selbina Milk"", 1], [""White Honey"", 3]]","[[""Irmik Helvasi +1"", 1], null, null]"
+,65,[],Konigskuchen,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Pie Dough"", 1], [""Maple Sugar"", 1], [""Selbina Milk"", 1], [""San d'Orian Grape"", 1], [""Yagudo Cherry"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Uberkuchen"", 1], null, null]"
+,65,[],Ratatouille,Fire,,"[[""Mhaura Garlic"", 1], [""Bay Leaves"", 1], [""Olive Oil"", 1], [""Wild Onion"", 1], [""Eggplant"", 1], [""Mithran Tomato"", 1], [""Zucchini"", 1], [""Paprika"", 1]]","[[""Ratatouille +1"", 1], null, null]"
+,65,[],Chocolate Rusk,Fire,Patissier,"[[""Selbina Butter"", 1], [""Bubble Chocolate"", 2], [""Iron Bread"", 1], [""Bird Egg"", 1]]","[[""Chocolate Rusk"", 4], [""Chocolate Rusk"", 6], [""Chocolate Rusk"", 8]]"
+,65,[],Savage Mole Broth,Water,,"[[""Red Gravel"", 1], [""Snapping Mole"", 1], [""Helmet Mole"", 1], [""Loam"", 1], [""Little Worm"", 2]]","[[""Savage Mole Broth"", 6], [""Savage Mole Broth"", 8], [""Savage Mole Broth"", 10]]"
+,65,[],Boiled Barnacles,Fire,,"[[""Rock Salt"", 1], [""Distilled Water"", 1], [""Barnacle"", 1]]","[[""Boiled Barnacles +1"", 2], [""Boiled Barnacles +1"", 4], [""Boiled Barnacles +1"", 6]]"
+,65,[],Ratatouille,Fire,,"[[""Cooking Kit 65"", 1]]","[null, null, null]"
+,66,"[[""Leathercraft"", 1]]",Apple Tank,Earth,,"[[""Karakul Leather"", 1], [""Brass Tank"", 1], [""Apple au Lait"", 4]]","[null, null, null]"
+,66,[],Colored Egg,Fire,,"[[""San d'Orian Carrot"", 1], [""Lizard Egg"", 1], [""La Theine Cabbage"", 1], [""Distilled Water"", 1]]","[[""Party Egg"", 1], null, null]"
+,66,[],Nero di Seppia,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Holy Basil"", 1], [""Spaghetti"", 1], [""Wild Onion"", 1], [""Mithran Tomato"", 1], [""Kalamar"", 1]]","[[""Nero di Seppia"", 4], [""Nero di Seppia +1"", 2], [""Nero di Seppia +1"", 4]]"
+,66,[],Nero di Seppia,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Holy Basil"", 1], [""Spaghetti"", 1], [""Wild Onion"", 1], [""Mithran Tomato"", 1], [""Cone Calamary"", 1]]","[[""Nero di Seppia"", 4], [""Nero di Seppia +1"", 2], [""Nero di Seppia +1"", 4]]"
+,66,[],Sausage Roll,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Sausage"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Honey"", 1]]","[null, null, null]"
+,67,[],Goblin Stew,Fire,,"[[""Horo Flour"", 1], [""Chicken Bone"", 1], [""Fish Bones"", 1], [""Fiend Blood"", 1], [""Rock Salt"", 1], [""Puffball"", 1], [""Distilled Water"", 1], [""Rotten Meat"", 1]]","[[""Goblin Stew"", 1], null, null]"
+,67,[],Ikra Gunkan,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Pamtam Kelp"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Salmon Roe"", 1]]","[[""Ikra Gunkan"", 2], [""Ikra Gunkan +1"", 1], null]"
+,67,[],Raisin Bread,Fire,,"[[""San d'Orian Grape"", 1], [""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,67,[],Antica Broth,Water,,"[[""Gelatin"", 1], [""Antican Pauldron"", 1], [""Antican Robe"", 1], [""Antican Acid"", 1]]","[[""Fragrant Antica Broth"", 2], [""Fragrant Antica Broth"", 4], [""Fragrant Antica Broth"", 6]]"
+,68,[],Colored Egg,Fire,,"[[""San d'Orian Carrot"", 1], [""Bird Egg"", 1], [""La Theine Cabbage"", 1], [""Distilled Water"", 1]]","[[""Party Egg"", 1], null, null]"
+,68,[],Herb Quus,Fire,,"[[""Quus"", 3], [""Selbina Butter"", 1], [""Black Pepper"", 1], [""Bay Leaves"", 1], [""Dried Marjoram"", 1], [""Rock Salt"", 1]]","[[""Medicinal Quus"", 1], null, null]"
+,68,[],Imperial Coffee,Fire,,"[[""Coffee Powder"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1]]","[[""Imperial Coffee +1"", 1], null, null]"
+,68,[],Shrimp Cracker,Fire,,"[[""Gold Lobster"", 1], [""Tarutaru Rice"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Shrimp Cracker +1"", 33], [""Shrimp Cracker +1"", 33], [""Shrimp Cracker +1"", 99]]"
+,68,[],Shrimp Cracker,Fire,,"[[""Istakoz"", 1], [""Tarutaru Rice"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Shrimp Cracker +1"", 33], [""Shrimp Cracker +1"", 33], [""Shrimp Cracker +1"", 99]]"
+,68,[],Anchovy Pizza,Fire,,"[[""Dried Marjoram"", 1], [""Holy Basil"", 1], [""Pizza Dough"", 1], [""Pomodoro Sauce"", 1], [""Anchovy"", 1], [""Chalaimbille"", 1]]","[[""Anchovy Pizza +1"", 1], null, null]"
+,68,[],Burning Carrion Broth,Water,,"[[""Gelatin"", 1], [""Hare Meat"", 1], [""Giant Sheep Meat"", 1], [""Ruszor Meat"", 1]]","[[""Burning Carrion Broth"", 6], [""Burning Carrion Broth"", 8], [""Burning Carrion Broth"", 10]]"
+,68,[],Anchovy Slice,Fire,,"[[""Dried Marjoram"", 1], [""Holy Basil"", 1], [""Pizza Dough"", 1], [""Pomodoro Sauce"", 1], [""Anchovies"", 1], [""Chalaimbille"", 1], [""Pizza Cutter"", 1]]","[[""Anchovy Slice"", 8], [""Anchovy Slice +1"", 6], [""Anchovy Slice +1"", 8]]"
+,69,[],Adamantoise Soup,Dark,,"[[""San d'Orian Flour"", 1], [""Chicken Bone"", 1], [""Fiend Blood"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Tavnazian Ram Meat"", 1], [""Diatryma Meat"", 1]]","[null, null, null]"
+,69,[],Gateau aux Fraises,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Rolanberry"", 2], [""Selbina Milk"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Midwinter Dream"", 1], null, null]"
+,69,[],Mutton Tortilla,Fire,,"[[""Kazham Peppers"", 1], [""Stone Cheese"", 1], [""Tomato Juice"", 1], [""Tortilla"", 1], [""Mithran Tomato"", 1], [""La Theine Cabbage"", 1], [""Giant Sheep Meat"", 1]]","[[""Mutton Enchilada"", 1], null, null]"
+,69,[],Pet Food Eta,Earth,,"[[""San d'Orian Flour"", 1], [""Distilled Water"", 1], [""Buffalo Meat"", 1], [""Apkallu Egg"", 1]]","[[""Pet Food Eta"", 6], [""Pet Food Eta"", 8], [""Pet Food Eta"", 10]]"
+,70,[],Dhalmel Stew,Fire,,"[[""San d'Orian Flour"", 1], [""Cinnamon"", 1], [""Dhalmel Meat"", 1], [""Popoto"", 1], [""Mithran Tomato"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Wild Stew"", 1], null, null]"
+,70,[],San d'Orian Tea,Fire,,"[[""Windurstian Tea Leaves"", 1], [""Sage"", 1], [""Selbina Milk"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1]]","[[""Royal Tea"", 1], null, null]"
+,70,[],Squid Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Gigant Squid"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1]]","[[""Squid Sushi +1"", 6], [""Squid Sushi +1"", 8], [""Squid Sushi +1"", 10]]"
+,70,[],Mellow Bird Broth,Water,,"[[""Gelatin"", 1], [""Dhalmel Meat"", 1], [""Lizard Egg"", 1], [""Cockatrice Meat"", 1], [""Bird Egg"", 1]]","[[""Mellow Bird Broth"", 6], [""Mellow Bird Broth"", 8], [""Mellow Bird Broth"", 10]]"
+,70,[],San d'Orian Tea,Fire,,"[[""Cooking Kit 70"", 1]]","[null, null, null]"
+,70,[],Egg Sandwich,Fire,,"[[""Selbina Butter"", 1], [""White Bread"", 1], [""Hard-boiled Egg"", 1], [""Grauberg Lettuce"", 1]]","[[""Egg Sandwich"", 8], [""Egg Sandwich +1"", 6], [""Egg Sandwich +1"", 8]]"
+,71,[],Crab Stewpot,Fire,Stewpot Mastery,"[[""Fish Stock"", 1], [""Woozyshroom"", 1], [""Land Crab Meat"", 1], [""Coral Fungus"", 1], [""Distilled Water"", 1], [""Cotton Tofu"", 1], [""Cibol"", 1], [""Shungiku"", 1]]","[[""Prime Crab Stewpot"", 1], [""Prized Crab Stewpot"", 1], null]"
+,71,[],Eyeball Soup,Fire,,"[[""Apple Vinegar"", 1], [""Frost Turnip"", 1], [""Gelatin"", 1], [""Hecteyes Eye"", 3], [""Beastman Blood"", 1], [""Distilled Water"", 1]]","[[""Optical Soup"", 1], null, null]"
+,71,[],Turtle Soup,Fire,,"[[""Danceshroom"", 1], [""Chicken Bone"", 1], [""San d'Orian Carrot"", 1], [""Ginger"", 1], [""Acorn"", 1], [""Red Terrapin"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Stamina Soup"", 1], null, null]"
+,71,[],Marinara,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Spaghetti"", 1], [""Jacknife"", 1], [""Pomodoro Sauce"", 1], [""Kalamar"", 1], [""Bastore Sweeper"", 1]]","[[""Marinara"", 4], [""Marinara +1"", 2], [""Marinara +1"", 4]]"
+,72,[],Red Curry Bun,Fire,,"[[""San d'Orian Flour"", 1], [""Olive Oil"", 1], [""Red Curry"", 1], [""Bird Egg"", 1]]","[[""Red Curry Bun"", 8], [""R. Curry Bun +1"", 6], [""R. Curry Bun +1"", 8]]"
+,72,[],Pear Crepe,Fire,,"[[""San d'Orian Flour"", 1], [""Cinnamon"", 1], [""Derfland Pear"", 1], [""Faerie Apple"", 1], [""Honey"", 1], [""Bird Egg"", 1], [""Uleguerand Milk"", 1]]","[[""Pear Crepe"", 4], [""Crepe B. Helene"", 2], [""Crepe B. Helene"", 4]]"
+,72,[],Boiled Cockatrice,Fire,,"[[""Cockatrice Meat"", 1], [""Coral Fungus"", 1], [""San d'Orian Carrot"", 1], [""Ginger"", 1], [""Mhaura Garlic"", 1], [""Mithran Tomato"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,72,[],Bream Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Mercanbaligi"", 1]]","[[""Bream Sushi"", 6], [""Bream Sushi +1"", 2], [""Bream Sushi +1"", 4]]"
+,72,[],Bream Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Bastore Bream"", 1]]","[[""Bream Sushi"", 6], [""Bream Sushi +1"", 2], [""Bream Sushi +1"", 4]]"
+,72,[],Pear au Lait,Water,,"[[""Derfland Pear"", 2], [""Honey"", 1], [""Selbina Milk"", 1]]","[null, null, null]"
+,73,[],Blood Broth,Water,,"[[""Beastman Blood"", 1], [""Leech Saliva"", 1], [""Lizard Blood"", 1], [""Bird Blood"", 1], [""Beast Blood"", 1]]","[[""Clear Blood Broth"", 2], [""Clear Blood Broth"", 4], [""Clear Blood Broth"", 6]]"
+,73,[],Salmon Meuniere,Fire,,"[[""Olive Oil"", 1], [""San d'Orian Flour"", 1], [""Cheval Salmon"", 1], [""Selbina Butter"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1]]","[[""Salmon Meuniere +1"", 1], null, null]"
+,73,[],Chalaimbille,Dark,,"[[""Rock Salt"", 1], [""Carbon Dioxide"", 1], [""Uleguerand Milk"", 2]]","[[""Chalaimbille"", 6], [""Chalaimbille"", 8], [""Chalaimbille"", 10]]"
+,73,[],Popo. con Queso,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Popoto"", 1], [""Rock Salt"", 1], [""Danceshroom"", 1], [""Selbina Milk"", 1], [""Wild Onion"", 1], [""Chalaimbille"", 1]]","[[""Popo. con Queso"", 6], [""Popo. con Que. +1"", 2], [""Popo. con Que. +1"", 4]]"
+,74,[],Fish & Chips,Fire,,"[[""San d'Orian Flour"", 1], [""Popoto"", 1], [""Apple Vinegar"", 1], [""Olive Oil"", 1], [""Tiger Cod"", 2], [""Bird Egg"", 1], [""Movalpolos Water"", 1]]","[[""Friture Misareaux"", 1], null, null]"
+,74,[],Mushroom Risotto,Fire,,"[[""Distilled Water"", 1], [""Danceshroom"", 1], [""Olive Oil"", 1], [""Selbina Butter"", 1], [""Tarutaru Rice"", 1], [""Puffball"", 1], [""Black Pepper"", 1], [""Mhaura Garlic"", 1]]","[[""Witch Risotto"", 1], null, null]"
+,74,[],Kohlrouladen,Fire,,"[[""San d'Orian Flour"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""La Theine Cbg."", 1], [""Selbina Milk"", 1], [""Ruszor Meat"", 1]]","[[""Kohlrouladen +1"", 1], null, null]"
+,74,[],Fish & Chips,Fire,,"[[""San d'Orian Flour"", 1], [""Popoto"", 1], [""Apple Vinegar"", 1], [""Olive Oil"", 1], [""Blindfish"", 1], [""Bird Egg"", 1], [""Movalpolos Water"", 1]]","[[""Friture Misareaux"", 1], null, null]"
+,75,[],Celerity Salad,Wind,,"[[""Gausebit Grass"", 1], [""Blue Peas"", 1], [""Cupid Worm"", 1], [""La Theine Millet"", 1], [""La Theine Cabbage"", 1], [""King Truffle"", 1], [""Shall Shell"", 1], [""Vomp Carrot"", 1]]","[[""Tornado Salad"", 1], null, null]"
+,75,[],Celerity Salad,Wind,,"[[""Gausebit Grass"", 1], [""Blue Peas"", 1], [""Cupid Worm"", 1], [""La Theine Millet"", 1], [""La Theine Cabbage"", 1], [""King Truffle"", 1], [""Istiridye"", 1], [""Vomp Carrot"", 1]]","[[""Tornado Salad"", 1], null, null]"
+,75,[],Dhalmel Pie,Fire,,"[[""Coral Fungus"", 1], [""San d'Orian Carrot"", 1], [""Selbina Butter"", 1], [""Dhalmel Meat"", 1], [""Pie Dough"", 1], [""Black Pepper"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1]]","[[""Dhalmel Pie +1"", 4], null, null]"
+,75,[],Yogurt Cake,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Kitron"", 1], [""Selbina Milk"", 1], [""Bird Egg"", 1], [""Apkallu Egg"", 1], [""Yogurt"", 1]]","[[""Silken Smile"", 1], null, null]"
+,75,[],Kitron Macaron,Fire,Patissier,"[[""Lizard Egg"", 1], [""Kitron"", 1], [""Almond"", 1], [""Maple Sugar"", 1]]","[[""Kitron Macaron"", 4], [""Kitron Macaron"", 6], [""Kitron Macaron"", 8]]"
+,75,[],Maringna,Fire,,"[[""Maple Sugar"", 1], [""Olive Oil"", 1], [""Imperial Flour"", 1], [""Bird Egg"", 1], [""Vongola Clam"", 1], [""Bastore Sweeper"", 1], [""Gigant Octopus"", 1], [""Uleguerand Milk"", 1]]","[[""Maringna"", 4], [""Maringna"", 6], [""Maringna"", 8]]"
+,75,[],B.E.W. Pitaru,Fire,,"[[""Maple Sugar"", 1], [""Rock Salt"", 1], [""Imperial Flour"", 1], [""Hard-boiled Egg"", 1], [""Distilled Water"", 1], [""Buffalo Jerky"", 1], [""Chalaimbille"", 1], [""Winterflower"", 1]]","[[""B.E.W. Pitaru"", 4], [""B.E.W. Pitaru"", 6], [""B.E.W. Pitaru"", 8]]"
+,75,[],Patlican Salata,Fire,,"[[""Eggplant"", 2], [""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Yogurt"", 1], [""Rock Salt"", 1], [""Black Pepper"", 1], [""Selbina Butter"", 1]]","[[""Patlican Salata +1"", 1], null, null]"
+,75,[],Celerity Salad,Wind,,"[[""Cooking Kit 75"", 1]]","[null, null, null]"
+,76,[],Green Curry,Fire,,"[[""Blue Peas"", 1], [""Bay Leaves"", 1], [""Curry Powder"", 1], [""Holy Basil"", 1], [""Crayfish"", 1], [""Beaugreens"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,76,"[[""Leathercraft"", 1]]",Pear Tank,Earth,,"[[""Karakul Leather"", 1], [""Brass Tank"", 1], [""Pear au Lait"", 4]]","[null, null, null]"
+,76,[],Rarab Meatball,Fire,,"[[""San d'Orian Flour"", 1], [""Stone Cheese"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1], [""Hare Meat"", 1], [""Mhaura Garlic"", 1]]","[[""Bunny Ball"", 1], null, null]"
+,76,[],Tonno Rosso,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Holy Basil"", 1], [""Spaghetti"", 1], [""Wild Onion"", 1], [""Pomodoro Sauce"", 1], [""Lakerda"", 1]]","[[""Tonno Rosso"", 4], [""Tonno Rosso +1"", 2], [""Tonno Rosso +1"", 4]]"
+,76,[],Tonno Rosso,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Holy Basil"", 1], [""Spaghetti"", 1], [""Wild Onion"", 1], [""Pomodoro Sauce"", 1], [""Gugru Tuna"", 1]]","[[""Tonno Rosso"", 4], [""Tonno Rosso +1"", 2], [""Tonno Rosso +1"", 4]]"
+,77,[],Navarin,Fire,,"[[""Olive Oil"", 1], [""Black Pepper"", 1], [""Popoto"", 1], [""Mithran Tomato"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Giant Sheep Meat"", 1]]","[[""Tender Navarin"", 1], null, null]"
+,77,[],Sopa Pez Blanco,Fire,,"[[""Popoto"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Selbina Milk"", 1], [""Wild Onion"", 1], [""San d'Orian Carrot"", 1], [""Distilled Water"", 1], [""Dil"", 1]]","[null, null, null]"
+,77,[],Sopa Pez Blanco,Fire,,"[[""San d'Orian Carrot"", 1], [""Selbina Milk"", 1], [""Black Sole"", 1], [""Black Pepper"", 1], [""Popoto"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,77,[],Tuna Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Gugru Tuna"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1]]","[[""Tuna Sushi"", 6], [""Fatty Tuna Sushi"", 1], [""Fatty Tuna Sushi"", 2]]"
+,77,[],Tuna Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Lakerda"", 1]]","[[""Tuna Sushi"", 6], [""Fatty Tuna Sushi"", 1], [""Fatty Tuna Sushi"", 2]]"
+,77,[],Whitefish Stew,Fire,,"[[""San d'Orian Carrot"", 1], [""Selbina Milk"", 1], [""Bastore Bream"", 1], [""Black Pepper"", 1], [""Popoto"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,77,[],Whitefish Stew,Fire,,"[[""Popoto"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Selbina Milk"", 1], [""Wild Onion"", 1], [""San d'Orian Carrot"", 1], [""Distilled Water"", 1], [""Mercanbaligi"", 1]]","[null, null, null]"
+,78,[],Blackened Newt,Fire,,"[[""Elshimo Newt"", 1], [""Bay Leaves"", 1], [""Dried Marjoram"", 1], [""Rock Salt"", 1]]","[[""Newt Flambe"", 1], null, null]"
+,78,"[[""Woodworking"", 3]]",Buche au Chocolat,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Bay Leaves"", 1], [""Maple Sugar"", 1], [""Kukuru Bean"", 1], [""Selbina Milk"", 1], [""Bubble Chocolate"", 1], [""Bird Egg"", 1]]","[[""Sylvan Excursion"", 1], null, null]"
+,78,[],Goblin Pie,Fire,,"[[""Crayfish"", 1], [""Ginger"", 1], [""Eggplant"", 1], [""Pie Dough"", 1], [""Black Pepper"", 1], [""Sunflower Seeds"", 1], [""Honey"", 1], [""Crawler Egg"", 1]]","[[""Hobgoblin Pie"", 4], null, null]"
+,78,[],Cloudy Wheat Broth,Fire,,"[[""San d'Orian Flour"", 1], [""Coriander"", 1], [""Imperial Flour"", 1], [""Distilled Water"", 1]]","[[""Cloudy Wheat Broth"", 6], [""Cloudy Wheat Broth"", 8], [""Cloudy Wheat Broth"", 10]]"
+,79,[],Blackened Newt,Fire,,"[[""Phanauet Newt"", 1], [""Bay Leaves"", 1], [""Dried Marjoram"", 1], [""Rock Salt"", 1]]","[[""Newt Flambe"", 1], null, null]"
+,79,[],Chocomilk,Fire,,"[[""Kukuru Bean"", 4], [""Selbina Milk"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1], [""Honey"", 1]]","[[""Choco-delight"", 1], null, null]"
+,79,[],Herb Crawler Eggs,Fire,,"[[""Olive Oil"", 1], [""San d'Orian Carrot"", 1], [""Ginger"", 1], [""Mhaura Garlic"", 1], [""Maple Sugar"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Crawler Egg"", 1]]","[null, null, null]"
+,79,[],Pet Food Theta,Earth,,"[[""San d'Orian Flour"", 1], [""Distilled Water"", 1], [""Puk Egg"", 1], [""Ruszor Meat"", 1]]","[[""Pet Food Theta"", 6], [""Pet Food Theta"", 8], [""Pet Food Theta"", 10]]"
+,79,[],Senroh Skewer,Fire,,"[[""Bluetail"", 1], [""Shall Shell"", 2], [""Contortopus"", 1], [""Senroh Sardine"", 1]]","[[""Senroh Skewer"", 12], [""Piscator's Skewer"", 6], [""Piscator's Skewer"", 12]]"
+,79,[],Senroh Skewer,Fire,,"[[""Bluetail"", 1], [""Shall Shell"", 2], [""Contortacle"", 3], [""Senroh Sardine"", 1]]","[[""Senroh Skewer"", 12], [""Piscator's Skewer"", 6], [""Piscator's Skewer"", 12]]"
+,80,[],Lucky Broth,Water,,"[[""Gelatin"", 1], [""Buffalo Meat"", 1], [""Bladefish"", 1]]","[[""Lucky Broth"", 6], [""Lucky Broth"", 8], [""Lucky Broth"", 10]]"
+,80,[],Goblin Drink,Water,,"[[""La Theine Cabbage"", 1], [""Frost Turnip"", 1], [""Wild Onion"", 1], [""San d'Orian Carrot"", 1], [""Watermelon"", 1], [""Distilled Water"", 1], [""Gysahl Greens"", 1], [""Elshimo Newt"", 1]]","[null, null, null]"
+,80,[],Orange Kuchen,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Saruta Orange"", 2], [""Bird Egg"", 1]]","[[""Orange Kuchen +1"", 1], null, null]"
+,80,[],Shallops Tropicale,Fire,,"[[""Kazham Pineapple"", 1], [""Shall Shell"", 2], [""Selbina Butter"", 1], [""Bay Leaves"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,80,[],Witch Nougat,Fire,Patissier,"[[""Selbina Milk"", 1], [""Maple Sugar"", 1], [""Lizard Egg"", 1], [""Yagudo Cherry"", 1], [""White Honey"", 1], [""Roasted Almond"", 1]]","[null, null, null]"
+,80,[],Pork Cutlet Rice Bowl,Fire,,"[[""Tarutaru Rice"", 1], [""Soy Stock"", 1], [""Two-Leaf Mandragora Bud"", 1], [""Wild Onion"", 1], [""Bird Egg"", 1], [""Pork Cutlet"", 1]]","[[""Pork Cutlet Rice Bowl +1"", 1], null, null]"
+,80,[],Shallops Tropicale,Fire,,"[[""Cooking Kit 80"", 1]]","[null, null, null]"
+,81,[],Karni Yarik,Fire,,"[[""Kazham Peppers"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""Eggplant"", 1], [""Mithran Tomato"", 1], [""Karakul Meat"", 1]]","[[""Karni Yarik +1"", 1], null, null]"
+,81,[],Pamama au Lait,Water,,"[[""Pamamas"", 2], [""Honey"", 1], [""Selbina Milk"", 1]]","[null, null, null]"
+,81,[],Shark Fin Soup,Fire,,"[[""Chicken Bone"", 1], [""Silver Shark"", 1], [""Ginger"", 1], [""Sleepshroom"", 1], [""Popoto"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Ocean Soup"", 1], null, null]"
+,81,[],Tavnazian Taco,Earth,,"[[""Tavnazian Salad"", 1], [""Tortilla"", 2], [""Salsa"", 1]]","[[""Tavnazian Taco"", 12], [""Leremieu Taco"", 6], [""Leremieu Taco"", 12]]"
+,81,[],Cream Puff,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Rock Salt"", 1], [""Vanilla"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1], [""Uleguerand Milk"", 1]]","[[""Cream Puff"", 6], [""Cream Puff"", 8], [""Cream Puff"", 10]]"
+,81,[],Shiromochi,Fire,,"[[""Sticky Rice"", 1], [""Cornstarch"", 1], [""Distilled Water"", 1]]","[[""Shiromochi +1"", 2], [""Shiromochi +1"", 3], [""Shiromochi +1"", 4]]"
+,81,[],Kusamochi,Fire,,"[[""Sticky Rice"", 1], [""Fresh Mugwort"", 1], [""Cornstarch"", 1], [""Distilled Water"", 1]]","[[""Kusamochi +1"", 2], [""Kusamochi +1"", 3], [""Kusamochi +1"", 4]]"
+,81,[],Akamochi,Fire,,"[[""Maple Sugar"", 1], [""Sticky Rice"", 1], [""Cornstarch"", 1], [""Distilled Water"", 1], [""Azuki Bean"", 1]]","[[""Akamochi +1"", 2], [""Akamochi +1"", 3], [""Akamochi +1"", 4]]"
+,81,[],Rolanberry Daifuku,Fire,,"[[""Maple Sugar"", 1], [""Sticky Rice"", 1], [""Cornstarch"", 1], [""Rolanberry"", 2], [""Distilled Water"", 1], [""Azuki Bean"", 1]]","[[""Rolanberry Daifuku +1"", 2], [""Rolanberry Daifuku +1"", 3], [""Rolanberry Daifuku +1"", 4]]"
+,81,[],Bean Daifuku,Fire,,"[[""Maple Sugar"", 1], [""Sticky Rice"", 1], [""Cornstarch"", 1], [""Blue Peas"", 1], [""Distilled Water"", 1], [""Azuki Bean"", 1]]","[[""Bean Daifuku +1"", 2], [""Bean Daifuku +1"", 3], [""Bean Daifuku +1"", 4]]"
+,81,[],Grape Daifuku,Fire,,"[[""Maple Sugar"", 1], [""Sticky Rice"", 1], [""Cornstarch"", 1], [""Royal Grapes"", 2], [""Distilled Water"", 1], [""Azuki Bean"", 1]]","[[""Grape Daifuku +1"", 2], [""Grape Daifuku +1"", 3], [""Grape Daifuku +1"", 4]]"
+,82,[],Beef Stewpot,Fire,Stewpot Mastery,"[[""Soy Stock"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1], [""Buffalo Meat"", 1], [""Cotton Tofu"", 1], [""Cibol"", 1], [""Shungiku"", 1], [""Shirataki"", 1]]","[[""Prime Beef Stewpot"", 1], [""Prized Beef Stewpot"", 1], null]"
+,82,[],Boiled Tuna Head,Fire,,"[[""Ginger"", 1], [""Maple Sugar"", 1], [""Rock Salt"", 1], [""Treant Bulb"", 1], [""Grape Juice"", 1], [""Gugru Tuna"", 1], [""Distilled Water"", 1], [""Beaugreens"", 1]]","[null, null, null]"
+,82,[],Emperor Roe,Lightning,,"[[""Morinabaligi"", 1]]","[[""Emperor Roe"", 6], [""Emperor Roe"", 8], [""Emperor Roe"", 10]]"
+,82,[],Emperor Roe,Lightning,,"[[""Emperor Fish"", 1]]","[[""Emperor Roe"", 6], [""Emperor Roe"", 8], [""Emperor Roe"", 10]]"
+,82,[],Mushroom Salad,Wind,,"[[""Olive Oil"", 1], [""Batagreens"", 1], [""Woozyshroom"", 1], [""King Truffle"", 1], [""Nopales"", 1], [""Burdock"", 1], [""Walnut"", 1], [""Agaricus"", 1]]","[[""Cathedral Salad"", 1], null, null]"
+,83,[],Bass Meuniere,Fire,,"[[""Olive Oil"", 1], [""Saruta Orange"", 1], [""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Dark Bass"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1]]","[[""Bass Meuniere +1"", 1], null, null]"
+,83,[],Pescatora,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Spaghetti"", 1], [""Sandfish"", 1], [""Grimmonite"", 1], [""Gold Lobster"", 1], [""Shall Shell"", 1], [""Pomodoro Sauce"", 1]]","[[""Pescatora"", 4], [""Pescatora +1"", 2], [""Pescatora +1"", 4]]"
+,83,[],Pescatora,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Spaghetti"", 1], [""Sandfish"", 1], [""Pomodoro Sauce"", 1], [""Istakoz"", 1], [""Ahtapot"", 1], [""Istiridye"", 1]]","[[""Pescatora"", 4], [""Pescatora +1"", 2], [""Pescatora +1"", 4]]"
+,83,"[[""Woodworking"", 19]]",Pepperoni,Fire,,"[[""Kazham Peppers"", 1], [""Black Pepper"", 1], [""Sage"", 1], [""Oak Log"", 1], [""Rock Salt"", 1], [""G. Sheep Meat"", 1], [""Buffalo Meat"", 1]]","[null, null, null]"
+,83,[],Mushroom Crepe,Fire,,"[[""San d'Orian Flour"", 1], [""Black Pepper"", 1], [""Danceshroom"", 1], [""Puffball"", 1], [""Bird Egg"", 1], [""Beaugreens"", 1], [""Uleguerand Milk"", 1]]","[[""Mushroom Crepe"", 4], [""Crepe Forestiere"", 2], [""Crepe Forestiere"", 4]]"
+,83,[],Chamomile Tea,Fire,,"[[""Chamomile"", 2], [""Distilled Water"", 1], [""Honey"", 1]]","[[""Healing Tea"", 1], null, null]"
+,84,[],Bream Risotto,Fire,,"[[""Olive Oil"", 1], [""Sage"", 1], [""Selbina Butter"", 1], [""Tarutaru Rice"", 1], [""Bastore Bream"", 1], [""Black Pepper"", 1], [""Mhaura Garlic"", 1], [""Distilled Water"", 1]]","[[""Sea Spray Risotto"", 1], null, null]"
+,84,[],Sole Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1], [""Dil"", 1]]","[[""Sole Sushi +1"", 2], [""Sole Sushi +1"", 3], [""Sole Sushi +1"", 4]]"
+,84,[],Sole Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Black Sole"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1]]","[[""Sole Sushi +1"", 2], [""Sole Sushi +1"", 3], [""Sole Sushi +1"", 4]]"
+,84,[],Steamed Catfish,Fire,,"[[""Giant Catfish"", 1], [""Gysahl Greens"", 1], [""Grape Juice"", 1], [""Popoto"", 1], [""Maple Sugar"", 1], [""Dried Marjoram"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,85,[],Hellsteak,Fire,,"[[""Popoto"", 1], [""Bay Leaves"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""San d'Orian Carrot"", 1], [""Cerberus Meat"", 1]]","[[""Hellsteak +1"", 1], null, null]"
+,85,"[[""Leathercraft"", 1]]",Pamama Tank,Earth,,"[[""Karakul Leather"", 1], [""Brass Tank"", 1], [""Pamama au Lait"", 4]]","[null, null, null]"
+,85,[],Pumpkin Pie,Fire,,"[[""Ogre Pumpkin"", 1], [""Cinnamon"", 1], [""Selbina Butter"", 1], [""Pie Dough"", 1], [""Maple Sugar"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1], [""Selbina Milk"", 1]]","[[""Pumpkin Pie +1"", 4], null, null]"
+,85,[],Yellow Curry,Fire,,"[[""Popoto"", 1], [""Curry Powder"", 1], [""Turmeric"", 1], [""Coeurl Meat"", 1], [""Selbina Milk"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,85,[],Jack-o'-Pie,Fire,Patissier,"[[""Selbina Butter"", 1], [""Pie Dough"", 1], [""Maple Sugar"", 1], [""Cinnamon"", 1], [""Ogre Pumpkin"", 1], [""Selbina Milk"", 1], [""Distilled Water"", 1], [""Apkallu Egg"", 1]]","[[""Jack-o'-Pie"", 6], [""Jack-o'-Pie x 9"", 1], [""Jack-o'-Pie"", 12]]"
+,85,[],Chocolate Cake,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Maple Sugar"", 1], [""Olive Oil"", 1], [""Selbina Milk"", 1], [""Heart Chocolate"", 1], [""Bird Egg"", 1], [""Apkallu Egg"", 1]]","[[""Silken Spirit"", 1], null, null]"
+,85,[],Coconut Rusk,Fire,Patissier,"[[""Selbina Butter"", 1], [""Iron Bread"", 1], [""Bird Egg"", 1], [""Elshimo Coconut"", 1]]","[[""Coconut Rusk"", 4], [""Coconut Rusk"", 6], [""Coconut Rusk"", 8]]"
+,85,[],Fruit Parfait,Wind,Patissier,"[[""Maple Sugar"", 1], [""Apple Mint"", 1], [""Faerie Apple"", 1], [""Saruta Orange"", 1], [""Kazham Pineapple"", 1], [""Yagudo Cherry"", 1], [""Pamamas"", 1], [""Uleguerand Milk"", 1]]","[[""Queen's Crown"", 1], null, null]"
+,85,[],Yellow Curry,Fire,,"[[""Cooking Kit 85"", 1]]","[null, null, null]"
+,86,[],Boscaiola,Fire,Noodle Kneading,"[[""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Spaghetti"", 1], [""Danceshroom"", 1], [""King Truffle"", 1], [""Wild Onion"", 1], [""Scream Fungus"", 1], [""Pomodoro Sauce"", 1]]","[[""Boscaiola"", 4], [""Boscaiola +1"", 2], [""Boscaiola +1"", 4]]"
+,86,[],Marron Glace,Dark,Patissier,"[[""Maple Sugar"", 1], [""Chestnut"", 2], [""Baking Soda"", 1], [""Grape Juice"", 1]]","[[""Squirrel's Delight"", 1], null, null]"
+,86,[],Marron Glace,Dark,,"[[""Maple Sugar"", 1], [""Chestnut"", 2], [""Grape Juice"", 1]]","[[""Bijou Glace"", 1], null, null]"
+,86,[],Mushroom Stew,Fire,,"[[""Danceshroom"", 1], [""Coral Fungus"", 1], [""Selbina Butter"", 1], [""Puffball"", 1], [""Black Pepper"", 1], [""Popoto"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Witch Stew"", 1], null, null]"
+,87,[],Antica Broth,Water,,"[[""Gelatin"", 1], [""Antican Robe"", 2], [""Antican Acid"", 2]]","[[""Fragrant Antica Broth"", 2], [""Fragrant Antica Broth"", 4], [""Fragrant Antica Broth"", 6]]"
+,87,[],Seafood Stew,Fire,,"[[""Gysahl Greens"", 1], [""Gold Lobster"", 1], [""Shall Shell"", 1], [""Nebimonite"", 1], [""Black Pepper"", 1], [""Popoto"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,87,[],Seafood Stew,Fire,,"[[""Popoto"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1], [""Gysahl Greens"", 1], [""Istakoz"", 1], [""Ahtapot"", 1], [""Istiridye"", 1]]","[null, null, null]"
+,87,[],Oden,Fire,,"[[""Konjak"", 1], [""Daikon"", 1], [""Chikuwa"", 1], [""Fish Stock"", 1]]","[[""Oden"", 4], [""Oden +1"", 2], [""Oden +1"", 4]]"
+,88,[],Coeurl Saute,Fire,,"[[""Olive Oil"", 1], [""Coeurl Meat"", 1], [""Grape Juice"", 1], [""Selbina Butter"", 1], [""Black Pepper"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1], [""Honey"", 1]]","[[""Royal Saute"", 1], null, null]"
+,88,[],Coeurl Saute,Fire,,"[[""Olive Oil"", 1], [""Lynx Meat"", 1], [""Grape Juice"", 1], [""Selbina Butter"", 1], [""Black Pepper"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1], [""Honey"", 1]]","[[""Royal Saute"", 1], null, null]"
+,88,[],Crimson Jelly,Earth,,"[[""Maple Sugar"", 1], [""Gelatin"", 1], [""Apple Mint"", 1], [""Clot Plasma"", 1], [""San d'Orian Grape"", 1], [""Distilled Water"", 1]]","[[""Vermillion Jelly"", 1], null, null]"
+,89,[],Black Pudding,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Cinnamon"", 1], [""Kitron"", 1], [""Saruta Orange"", 1], [""Buburimu Grape"", 1], [""Bird Egg"", 1], [""Royal Grape"", 1]]","[[""Dusky Indulgence"", 1], null, null]"
+,89,[],Royal Omelette,Fire,,"[[""Olive Oil"", 1], [""King Truffle"", 1], [""Cockatrice Meat"", 1], [""Selbina Butter"", 1], [""Black Pepper"", 1], [""Wild Onion"", 1], [""Rock Salt"", 1], [""Bird Egg"", 1]]","[[""Imperial Omelette"", 1], null, null]"
+,89,[],Fin Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Distilled Water"", 1], [""Kalkanbaligi"", 1], [""Ground Wasabi"", 1]]","[[""Fin Sushi"", 6], [""Fin Sushi +1"", 2], [""Fin Sushi +1"", 3]]"
+,90,[],Lebkuchen House,Fire,Patissier,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Baking Soda"", 1], [""Honey"", 1], [""Cinna-cookie"", 1], [""Bubble Chocolate"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1]]","[[""Lebkuchen Manse"", 1], null, null]"
+,90,[],Rolanberry Pie,Fire,,"[[""San d'Orian Flour"", 1], [""Gelatin"", 1], [""Selbina Milk"", 1], [""Pie Dough"", 1], [""Maple Sugar"", 1], [""Rolanberry"", 1], [""Bird Egg"", 1]]","[[""Rolanberry Pie +1"", 4], null, null]"
+,90,[],Vampire Juice,Water,,"[[""Mithran Tomato"", 1], [""Red Terrapin"", 1], [""Rolanberry"", 1], [""Faerie Apple"", 1]]","[null, null, null]"
+,90,[],Vampire Juice,Water,,"[[""Faerie Apple"", 1], [""Rolanberry"", 1], [""Mithran Tomato"", 1], [""Kaplumbaga"", 1]]","[null, null, null]"
+,90,[],Tropical Crepe,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Kitron"", 1], [""Persikos"", 1], [""Bird Egg"", 1], [""Uleguerand Milk"", 1], [""Felicifruit"", 1]]","[[""Tropical Crepe"", 4], [""Crepe des Rois"", 2], [""Crepe des Rois"", 4]]"
+,90,[],Deep-Fried Shrimp,Fire,,"[[""Olive Oil"", 1], [""White Bread"", 1], [""Bird Egg"", 1], [""Black Prawn"", 2]]","[[""Deep-Fried Shrimp"", 8], [""Deep-Fried Shrimp +1"", 6], [""Deep-Fried Shrimp +1"", 8]]"
+,90,[],Pukatrice Egg,Fire,,"[[""Olive Oil"", 1], [""White Bread"", 1], [""Cockatrice Meat"", 1], [""Bird Egg"", 1], [""Puk Egg"", 1]]","[[""Pukatrice Egg"", 8], [""Pukatrice Egg +1"", 6], [""Pukatrice Egg +1"", 8]]"
+,90,[],Fried Popoto,Fire,,"[[""Popoto"", 1], [""Olive Oil"", 1], [""White Bread"", 1], [""Bird Egg"", 1]]","[[""Fried Popoto"", 8], [""Fried Popoto +1"", 6], [""Fried Popoto +1"", 8]]"
+,90,[],Sublime Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Bibiki Urchin"", 1], [""Cheval Salmon"", 1], [""Black Sole"", 1], [""Gugru Tuna"", 1], [""Bird Egg"", 1], [""Ground Wasabi"", 1], [""Rice Vinegar"", 1]]","[[""Sublime Sushi"", 6], [""Sublime Sushi +1"", 2], [""Sublime Sushi +1"", 4]]"
+,90,[],Sublime Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Bibiki Urchin"", 1], [""Cheval Salmon"", 1], [""Black Sole"", 1], [""Gugru Tuna"", 1], [""Bird Egg"", 1], [""Wasabi"", 1], [""Rice Vinegar"", 1]]","[[""Sublime Sushi"", 6], [""Sublime Sushi +1"", 2], [""Sublime Sushi +1"", 4]]"
+,90,[],Soy Ramen,Fire,Noodle Kneading,"[[""Pamtam Kelp"", 1], [""Tiger Cod"", 1], [""Bird Egg"", 1], [""Cibol"", 1], [""Porxie Pork"", 1], [""Ramen Noodles"", 1], [""Soy Ramen Soup"", 1], [""Bamboo Shoots"", 1]]","[[""Soy Ramen xInformation Needed"", 1], [""Soy Ramen +1 xInformation Needed"", 1], [""Soy Ramen +1 xInformation Needed"", 1]]"
+,90,[],Miso Ramen,Fire,Noodle Kneading,"[[""Selbina Butter"", 1], [""Millioncorn"", 1], [""Rarab Tail"", 1], [""Porxie Pork"", 1], [""Ramen Noodles"", 1], [""Miso Ramen Soup"", 1], [""Bamboo Shoots"", 1]]","[[""Miso Ramen +1"", 4], [""Miso Ramen +1"", 6], [""Miso Ramen +1"", 8]]"
+,90,[],Salt Ramen xInformation Needed,Fire,Noodle Kneading,"[[""Kazham Peppers"", 1], [""Bastore Sardine"", 1], [""Batagreens"", 1], [""Black Prawn"", 1], [""Ramen Noodles"", 1], [""Salt Ramen Soup"", 1], [""Bamboo Shoots"", 1]]","[[""Salt Ramen xInformation Needed"", 1], [""Salt Ramen +1 xInformation Needed"", 1], [""Salt Ramen +1 xInformation Needed"", 1]]"
+,90,[],Vampire Juice,Water,,"[[""Cooking Kit 90"", 1]]","[null, null, null]"
+,91,[],Angler Stewpot,Fire,Stewpot Mastery,"[[""Fish Stock"", 1], [""Danceshroom"", 1], [""Distilled Water"", 1], [""Cotton Tofu"", 1], [""Cibol"", 1], [""Shungiku"", 1], [""Shirataki"", 1], [""Orobon Meat"", 1]]","[[""Prime Angler Stewpot"", 1], [""Prized Angler Stewpot"", 1], null]"
+,91,[],Persikos au Lait,Water,,"[[""Persikos"", 2], [""Honey"", 1], [""Selbina Milk"", 1]]","[null, null, null]"
+,91,[],Salmon Croute,Fire,,"[[""Grape Juice"", 1], [""Cheval Salmon"", 1], [""Sage"", 1], [""Pie Dough"", 1], [""Mhaura Garlic"", 1], [""Rock Salt"", 1], [""Crawler Egg"", 1]]","[[""Salmon Croute"", 2], [""Salmon Croute"", 3], [""Salmon Croute"", 4]]"
+,91,[],Meatloaf,Fire,,"[[""San d'Orian Flour"", 1], [""Blue Peas"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""Bird Egg"", 1], [""Buffalo Meat"", 1], [""Lynx Meat"", 1]]","[[""Meatloaf +1"", 1], null, null]"
+,91,[],Shadowy Broth,Water,,"[[""Dragon Meat"", 1], [""Nopales"", 1], [""Agaricus"", 1]]","[[""Shadowy Broth"", 6], [""Shadowy Broth"", 8], [""Shadowy Broth"", 10]]"
+,92,[],Flint Caviar,Dark,,"[[""Rock Salt"", 1], [""Emperor Roe"", 1]]","[null, null, null]"
+,92,[],Tavnazian Salad,Wind,,"[[""Apple Vinegar"", 1], [""Grimmonite"", 1], [""San d'Orian Carrot"", 1], [""Frost Turnip"", 1], [""Noble Lady"", 1], [""Bastore Bream"", 1], [""Flint Caviar"", 1], [""Beaugreens"", 1]]","[[""Leremieu Salad"", 1], null, null]"
+,92,[],Mushroom Saute,Fire,,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Selbina Butter"", 1], [""Danceshroom"", 1], [""Reishi Mushroom"", 1], [""Misx. Parsley"", 1], [""Walnut"", 1], [""Agaricus"", 1]]","[[""Patriarch Saute"", 1], null, null]"
+,92,[],Seafood Paella,Fire,,"[[""Mhaura Garlic"", 1], [""Tarutaru Rice"", 1], [""Saffron"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Gigant Squid"", 1], [""Black Prawn"", 1], [""Mussel"", 1]]","[[""Piscator's Paella"", 1], null, null]"
+,92,[],Mushroom Paella,Fire,,"[[""Mhaura Garlic"", 1], [""Tarutaru Rice"", 1], [""Saffron"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Woozyshroom"", 1], [""Danceshroom"", 1], [""Coral Fungus"", 1]]","[[""Mushroom Paella +1"", 1], null, null]"
+,92,[],Beef Paella,Fire,,"[[""Mhaura Garlic"", 1], [""Tarutaru Rice"", 1], [""Saffron"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Buffalo Meat"", 1], [""Gigant Squid"", 1], [""Mussel"", 1]]","[[""Beef Paella +1"", 1], null, null]"
+,92,[],Barnacle Paella,Fire,,"[[""Mhaura Garlic"", 1], [""Tarutaru Rice"", 1], [""Saffron"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Barnacle"", 2], [""Mussel"", 1]]","[[""Flapano's Paella"", 1], null, null]"
+,93,[],Coeurl Sub,Earth,,"[[""Selbina Butter"", 1], [""Crying Mustard"", 1], [""White Bread"", 1], [""La Theine Cabbage"", 1], [""Mithran Tomato"", 1], [""Coeurl Saute"", 1]]","[[""Coeurl Sub"", 12], [""Coeurl Sub +1"", 6], [""Coeurl Sub +1"", 12]]"
+,93,[],Dorado Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Noble Lady"", 1], [""Distilled Water"", 1], [""Ground Wasabi"", 1]]","[[""Dorado Sushi +1"", 2], [""Dorado Sushi +1"", 3], [""Dorado Sushi +1"", 4]]"
+,93,[],Flounder Meuniere,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Selbina Milk"", 1], [""Dil"", 1]]","[[""Flounder Meuniere +1"", 1], null, null]"
+,93,[],Flounder Meuniere,Fire,,"[[""Olive Oil"", 1], [""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Selbina Milk"", 1], [""Black Sole"", 1], [""Rock Salt"", 1], [""Black Pepper"", 1]]","[[""Flounder Meuniere +1"", 1], null, null]"
+,93,[],Urchin Sushi,Earth,Raw Fish Handling,"[[""Tarutaru Rice"", 1], [""Rice Vinegar"", 1], [""Bibiki Urchin"", 1], [""Distilled Water"", 1], [""Pamtam Kelp"", 1]]","[[""Urchin Sushi +1"", 1], null, null]"
+,93,[],Auroral Broth,Water,,"[[""Aurora Bass"", 1], [""San d'Orian Flour"", 1], [""Distilled Water"", 1]]","[[""Auroral Broth"", 6], [""Auroral Broth"", 8], [""Auroral Broth"", 10]]"
+,94,[],Black Curry,Fire,,"[[""Black Pepper"", 1], [""Curry Powder"", 1], [""Woozyshroom"", 1], [""Eggplant"", 1], [""Distilled Water"", 1], [""Lakerda"", 1], [""Ahtapot"", 1]]","[null, null, null]"
+,94,[],Black Curry,Fire,,"[[""Black Pepper"", 1], [""Curry Powder"", 1], [""Nebimonite"", 1], [""Woozyshroom"", 1], [""Eggplant"", 1], [""Gugru Tuna"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,94,[],Hedgehog Pie,Fire,,"[[""Selbina Butter"", 1], [""Pie Dough"", 1], [""Blue Peas"", 1], [""Rock Salt"", 1], [""Lizard Egg"", 1], [""King Truffle"", 1], [""San d'Orian Carrot"", 1], [""Buffalo Meat"", 1]]","[[""Porcupine Pie"", 1], null, null]"
+,94,[],Tonosama Rice Ball,Fire,,"[[""Tarutaru Rice"", 1], [""Pamtam Kelp"", 1], [""Flint Caviar"", 1], [""Rock Salt"", 1], [""Distilled Water"", 1]]","[[""Shogun Rice Ball"", 1], [""Shogun Rice Ball"", 2], null]"
+,94,[],Rabbit Pie,Fire,,"[[""Selbina Butter"", 1], [""Pie Dough"", 1], [""Black Pepper"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""San d'Orian Carrot"", 1], [""Lynx Meat"", 1], [""Agaricus"", 1]]","[null, null, null]"
+,94,[],Felicifruit Gelatin,Fire,,"[[""Maple Sugar"", 2], [""Gelatin"", 1], [""San d'Orian Grape"", 1], [""Distilled Water"", 1], [""Felicifruit"", 2]]","[[""Dulcet Panettones"", 1], null, null]"
+,95,[],Dragon Steak,Fire,,"[[""Olive Oil"", 1], [""San d'Orian Carrot"", 1], [""Black Pepper"", 1], [""Popoto"", 1], [""Rarab Tail"", 1], [""Bay Leaves"", 1], [""Rock Salt"", 1], [""Dragon Meat"", 1]]","[null, null, null]"
+,95,"[[""Leathercraft"", 1]]",Persikos Tank,Earth,,"[[""Karakul Leather"", 1], [""Brass Tank"", 1], [""Persikos au Lait"", 4]]","[null, null, null]"
+,95,"[[""Woodworking"", 15]]",Rice Dumpling,Fire,,"[[""Maple Sugar"", 1], [""Bamboo Stick"", 1], [""Rock Salt"", 1], [""Sticky Rice"", 1], [""Dhalmel Meat"", 1], [""Coral Fungus"", 1], [""Distilled Water"", 1]]","[[""Rice Dumpling"", 6], [""Rice Dumpling"", 9], [""Rice Dumpling"", 12]]"
+,95,[],Hydra Kofte,Fire,,"[[""Imperial Rice"", 1], [""Imperial Flour"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Wild Onion"", 1], [""Apkallu Egg"", 1], [""Hydra Meat"", 1]]","[[""Hydra Kofte +1"", 1], null, null]"
+,95,[],Swirling Broth,Water,,"[[""San d'Orian Carrot"", 3], [""Verboshroom"", 1]]","[[""Viscous Broth"", 2], [""Viscous Broth"", 4], [""Viscous Broth"", 8]]"
+,95,[],Dragon Steak,Fire,,"[[""Cooking Kit 95"", 1]]","[null, null, null]"
+,96,[],Arrabbiata,Fire,Noodle Kneading,"[[""Kazham Peppers"", 1], [""Mhaura Garlic"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Holy Basil"", 1], [""Spaghetti"", 1], [""Dragon Meat"", 1], [""Pomodoro Sauce"", 1]]","[[""Arrabbiata"", 4], [""Arrabbiata +1"", 2], [""Arrabbiata +1"", 4]]"
+,96,[],Brain Stew,Fire,,"[[""Apple Vinegar"", 1], [""Yellow Globe"", 1], [""King Truffle"", 1], [""San d'Orian Flour"", 1], [""Gelatin"", 1], [""Distilled Water"", 1], [""Honey"", 1], [""Crying Mustard"", 1]]","[[""Sophic Stew"", 1], null, null]"
+,96,[],Shimmering Broth,Water,,"[[""Ruddy Seema"", 4]]","[[""Fermented Broth"", 2], [""Fermented Broth"", 4], [""Fermented Broth"", 8]]"
+,97,[],Sea Bass Croute,Fire,,"[[""King Truffle"", 1], [""Grape Juice"", 1], [""Zafmlug Bass"", 1], [""Sage"", 1], [""Lizard Egg"", 1], [""Pie Dough"", 1], [""Mhaura Garlic"", 1], [""Rock Salt"", 1]]","[[""Sea Bass Croute"", 2], [""Sea Bass Croute"", 3], [""Sea Bass Croute"", 4]]"
+,97,"[[""Clothcraft"", 50]]",Humpty Dumpty,Fire,,"[[""Silk Cloth"", 1], [""Rock Salt"", 1], [""Pine Nuts"", 1], [""Simsim"", 1], [""Asphodel"", 1], [""Kazham Pineapple"", 1], [""Apkallu Egg"", 1], [""Burdock"", 1]]","[null, null, null]"
+,97,[],Dawn Mulsum,Ice,,"[[""Holy Water"", 1], [""White Honey"", 1], [""Grape Juice"", 1]]","[null, null, null]"
+,97,[],Spicy Broth,Water,,"[[""Mandragora Sprout"", 2], [""Giant Sheep Meat"", 1], [""Isleracea"", 1]]","[[""Bubbly Broth"", 2], [""Bubbly Broth"", 4], [""Bubbly Broth"", 8]]"
+,98,[],Dragon Soup,Fire,,"[[""Frost Turnip"", 1], [""Ginger"", 1], [""Black Pepper"", 1], [""Popoto"", 1], [""Mhaura Garlic"", 1], [""Wild Onion"", 1], [""Distilled Water"", 1], [""Dragon Meat"", 1]]","[null, null, null]"
+,98,[],Nopales Salad,Wind,,"[[""Kazham Peppers"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""Coriander"", 1], [""Kitron"", 1], [""Wild Onion"", 1], [""Mithran Tomato"", 1], [""Nopales"", 1]]","[[""Nopales Salad +1"", 1], null, null]"
+,98,[],Salubrious Broth,Water,,"[[""Gelatin"", 1], [""Akaso"", 1], [""Buffalo Meat"", 1], [""Apkallufa"", 1]]","[[""Windy Greens"", 2], [""Windy Greens"", 4], [""Windy Greens"", 8]]"
+,98,[],Seafood Gratin,Fire,,"[[""San d'Orian Flour"", 1], [""Selbina Butter"", 1], [""Chalaimbille"", 1], [""Rock Salt"", 1], [""Danceshroom"", 1], [""Selbina Milk"", 1], [""Gigant Squid"", 1], [""Bastore Sweeper"", 1]]","[[""Seafood Gratin"", 6], [""Seafood Gratin +1"", 2], [""Seafood Gratin +1"", 4]]"
+,99,[],Cursed Beverage,Dark,,"[[""Kitron"", 1], [""Selbina Milk"", 1], [""Malboro Vine"", 1], [""Distilled Water"", 1], [""Divine Sap"", 1]]","[null, null, null]"
+,99,[],Sugary Broth,Water,,"[[""Walnut"", 1], [""Honey"", 1], [""Ulbuconut"", 1], [""Rolanberry"", 1]]","[[""Glazed Broth"", 2], [""Glazed Broth"", 4], [""Glazed Broth"", 8]]"
+,99,[],Sweet Rice Cake,Fire,,"[[""Maple Sugar"", 1], [""Cinnamon"", 1], [""Sticky Rice"", 1], [""Gardenia Seed"", 1], [""Fresh Mugwort"", 1], [""Distilled Water"", 1]]","[[""Sweet Rice Cake"", 12], null, null]"
+,99,[],Pork Cutlet,Fire,,"[[""Porxie Pork"", 1], [""Bird Egg"", 1], [""Black Pepper"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""White Bread"", 1]]","[[""Pork Cutlet +1"", 1], [""Pork Cutlet +1"", 2], [""Pork Cutlet +1"", 3]]"
+,100,[],Cursed Soup,Water,,"[[""Kitron"", 1], [""Persikos"", 1], [""Royal Jelly"", 1], [""Distilled Water"", 1], [""Honey"", 1]]","[null, null, null]"
+,100,[],Sprightly Soup,Fire,,"[[""Rock Salt"", 1], [""Danceshroom"", 1], [""Wild Onion"", 1], [""Reishi Mushroom"", 1], [""Distilled Water"", 1], [""Agaricus"", 1]]","[[""Shimmy Soup"", 1], null, null]"
+,100,[],Kitron Juice,Water,,"[[""Kitron"", 4]]","[null, null, null]"
+,100,[],Poisonous Broth,Water,,"[[""Gnatbane"", 1], [""Venom Dust"", 1], [""Distilled Water"", 1], [""Umbril Ooze"", 1]]","[[""Venomous Broth"", 2], [""Venomous Broth"", 4], [""Venomous Broth"", 8]]"
+,100,[],Sticky Webbing,Water,,"[[""Gnat Wing"", 1], [""Twitherym Wing"", 1], [""Chapuli Wing"", 1], [""Mantid Carapace"", 1]]","[[""Slimy Webbing"", 2], [""Slimy Webbing"", 4], [""Slimy Webbing"", 8]]"
+,100,[],Fizzy Broth,Water,,"[[""Tarutaru Rice"", 1], [""Millioncorn"", 1], [""Pine Nuts"", 1], [""Lucerewe Meat"", 1]]","[[""Tantalizing Broth"", 2], [""Tantalizing Broth"", 4], [""Tantalizing Broth"", 8]]"
+,100,[],Electrified Broth,Water,,"[[""Ladybug Wing"", 1], [""Gnat Wing"", 1], [""Panopt Tears"", 1], [""Snapweed Secretion"", 1]]","[[""Bug-Ridden Broth"", 2], [""Bug-Ridden Broth"", 4], [""Bug-Ridden Broth"", 8]]"
+,100,[],Warthog Stewpot,Fire,Stewpot Mastery,"[[""Soy Stock"", 1], [""Danceshroom"", 1], [""Distilled Water"", 1], [""Bird Egg"", 1], [""Cotton Tofu"", 1], [""Napa"", 1], [""Shungiku"", 1], [""Warthog Meat"", 1]]","[[""Prime Warthog Stewpot"", 1], [""Prized Warthog Stewpot"", 1], null]"
+,101,[],Red Curry,Fire,,"[[""Dragon Meat"", 1], [""Curry Powder"", 1], [""Coriander"", 1], [""San d'Orian Carrot"", 1], [""Mithran Tomato"", 1], [""Kazham Peppers"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,101,[],Omelette Sandwich,Fire,,"[[""Selbina Butter"", 1], [""White Bread"", 1], [""Puk Egg"", 1], [""Apkallu Egg"", 1], [""Grauberg Lettuce"", 1]]","[[""Omelette Sandwich"", 8], [""Oml. Sandwich +1"", 6], [""Oml. Sandwich +1"", 8]]"
+,102,[],Pickled Rarab Tail,Dark,,"[[""Mhaura Garlic"", 1], [""Kazham Peppers"", 1], [""Kitron"", 1], [""Sea Foliage"", 1], [""Rock Salt"", 1], [""Water Barrel"", 1], [""Smooth Stone"", 1], [""Rarab Tail"", 1]]","[null, null, null]"
+,102,[],Fisherman's Feast,Fire,,"[[""Sausage"", 2], [""Tonosama Rice Ball"", 1], [""Salmon Rice Ball"", 1], [""Winterflower"", 1], [""Apkallu Egg"", 1], [""Grauberg Lettuce"", 1]]","[null, null, null]"
+,103,[],Walnut Cookie x 33,Fire,,"[[""Selbina Butter"", 1], [""Maple Sugar"", 1], [""Imperial Flour"", 1], [""Distilled Water"", 1], [""Apkallu Egg"", 1], [""Walnut"", 1]]","[[""Juglan Jumble"", 33], [""Juglan Jumble x66 Verification Needed"", 1], [""Juglan Jumble x99 Verification Needed"", 1]]"
+,103,[],Insipid Broth,Water,,"[[""Apkallufa"", 1], [""Yorchete"", 1], [""Senroh Sardine"", 1]]","[[""Deepwater Broth"", 2], [""Deepwater Broth"", 4], [""Deepwater Broth"", 8]]"
+,104,[],Wetlands Broth,Dark,,"[[""Petrified Log"", 1], [""Loam"", 1], [""Snapweed Secretion"", 1], [""Distilled Water"", 1]]","[[""Heavenly Broth"", 2], [""Heavenly Broth"", 4], [""Heavenly Broth"", 8]]"
+,104,[],Soy Ramen Soup,Fire,,"[[""Chicken Bone"", 2], [""Wild Onion"", 1], [""Cockatrice Meat"", 1], [""Distilled Water"", 1], [""Cibol"", 1], [""Soy Sauce"", 1]]","[null, null, null]"
+,104,[],Miso Ramen Soup,Fire,,"[[""Mhaura Garlic"", 1], [""Ginger Root"", 1], [""Chicken Bone"", 2], [""Distilled Water"", 1], [""Miso"", 1], [""Soy Sauce"", 1]]","[[""Miso Ramen Soup"", 8], null, null]"
+,104,[],Salt Ramen Soup,Fire,,"[[""Rock Salt"", 1], [""Lufet Salt"", 1], [""Cheval Salmon"", 1], [""Bluetail"", 1], [""Bastore Bream"", 1], [""Distilled Water"", 1], [""Vongola Clam"", 1]]","[null, null, null]"
+,105,[],Date Tea,Fire,,"[[""Maple Sugar"", 1], [""Imperial Tea Leaves"", 1], [""Distilled Water"", 1], [""Date"", 1]]","[null, null, null]"
+,105,[],Dragon Fruit au Lait,Water,,"[[""Honey"", 1], [""Selbina Milk"", 1], [""Dragon Fruit"", 2]]","[null, null, null]"
+,105,[],Rancid Broth,Water,,"[[""Frigorifish"", 4]]","[[""Pungent Broth"", 2], [""Pungent Broth"", 4], [""Pungent Broth"", 6]]"
+,105,[],Frizzante Broth,Water,,"[[""Gelatin"", 1], [""Hare Meat"", 1], [""Karakul Meat"", 1], [""Ziz Meat"", 1]]","[[""Spumante Broth xInformation Needed"", 1], null, null]"
+,105,[],Decaying Broth,Water,,"[[""Mercury"", 1], [""Distilled Water"", 1], [""Flan Meat"", 1], [""Rotten Meat"", 1]]","[[""Putrescent Broth"", 2], [""Putrescent Broth"", 4], [""Putrescent Broth"", 6]]"
+,105,[],Turpid Broth xInformation Needed,Water,,"[[""Gelatin"", 1], [""Yawning Catfish"", 1], [""Warthog Meat"", 1]]","[[""Feculent Broth xInformation Needed"", 1], null, null]"
+,107,[],Himesama R. Ball,Fire,,"[[""Distilled Water"", 1], [""Pamtam Kelp"", 1], [""Rock Salt"", 1], [""Tarutaru Rice"", 1], [""Buffalo Meat"", 1], [""Burdock"", 1]]","[[""Ojo Rice Ball"", 1], null, null]"
+,109,"[[""Leathercraft"", 1]]",Dragon Tank,Earth,,"[[""Karakul Leather"", 1], [""Brass Tank"", 1], [""Dragon Fruit au Lait"", 4]]","[null, null, null]"
+,110,[],Behemoth Steak,Fire,,"[[""Selbina Butter"", 1], [""Popoto"", 1], [""Kitron"", 1], [""San d'Orian Carrot"", 1], [""Behemoth Meat"", 1]]","[[""Behemoth Steak +1"", 1], null, null]"
+,110,[],Smoldering Salisbury Steak,Fire,,"[[""Black Pepper"", 1], [""Sage"", 1], [""Rock Salt"", 1], [""White Bread"", 1], [""Wild Onion"", 1], [""Bird Egg"", 1], [""Buffalo Meat"", 1], [""Cerberus Meat"", 1]]","[[""Charred Salisbury Steak"", 1], null, null]"
+,111,[],Altana's Repast,Light,Culinarian's aurum tome,"[[""Holy Water"", 2], [""Cursed Beverage"", 1], [""Cursed Soup"", 1], [""Orc Offering"", 1], [""Yagudo Offering"", 1], [""Quadav Offering"", 1], [""Goblin Offering"", 1]]","[[""Altana's Repast +1"", 1], [""Altana's Repast +2"", 1], null]"
+,112,[],Riverfin Soup,Fire,,"[[""Ginger Root"", 1], [""Chicken Bone"", 1], [""Rock Salt"", 1], [""Rockfin Fin"", 1], [""Distilled Water"", 1], [""Cibol"", 1], [""Isleracea"", 1]]","[[""Oceanfin Soup"", 1], null, null]"
+,112,[],Magma Steak,Fire,,"[[""Popoto"", 1], [""Bay Leaves"", 1], [""Black Pepper"", 1], [""Millioncorn"", 1], [""Olive Oil"", 1], [""Rock Salt"", 1], [""San d'Orian Carrot"", 1], [""Gabbrath Meat"", 1]]","[[""Magma Steak +1"", 1], null, null]"
+,112,[],Cehuetzi Snow Cone,Wind,,"[[""Maple Sugar"", 1], [""Rolanberry"", 1], [""Thundermelon"", 2], [""Cehuetzi Ice Shard"", 1]]","[[""Cehuetzi Snow Cone"", 12], [""Apingaut Snow Cone"", 6], [""Apingaut Snow Cone 12"", 1]]"
+,112,[],Cehuetzi Snow Cone,Wind,Patissier,"[[""Maple Sugar"", 1], [""Rolanberry"", 1], [""Honey"", 1], [""Thundermelon"", 2], [""Cehuetzi Ice Shard"", 1]]","[[""Cehuetzi Snow Cone"", 12], [""Cyclical Coalescence"", 6], [""Cyclical Coalescence"", 12]]"
+,115,[],R. Pickled R. Tail x12 Verification Needed,Dark,,"[[""Rarab Tail"", 2], [""Rolanberry"", 1], [""Apple Vinegar"", 1], [""Black Pepper"", 1], [""Maple Sugar"", 1], [""Rock Salt"", 1], [""Ro'Maeve Water"", 1]]","[null, null, null]"
+,115,[],Marine Stewpot,Fire,Culinarian's argentum tome,"[[""Fish Stock"", 1], [""Distilled Water"", 1], [""Mola Mola"", 1], [""Cotton Tofu"", 1], [""Cibol"", 1], [""Shungiku"", 1], [""Shirataki"", 1], [""Agaricus"", 1]]","[[""Prm. Mn. Stewpot"", 1], null, null]"
diff --git a/datasets/Goldsmithing.txt b/datasets/Goldsmithing.txt
index 350d175..0c1e6a9 100644
--- a/datasets/Goldsmithing.txt
+++ b/datasets/Goldsmithing.txt
@@ -1,7 +1,5 @@
Goldsmithing Crafted Items
-Amateur (1-10)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Zinc Oxide
@@ -200,9 +198,7 @@ Main Craft: Goldsmithing - (10)
Goldsmithing Kit 10
-Recruit (11-20)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Brass Sheet
@@ -805,9 +801,7 @@ Main Craft: Goldsmithing - (20)
Sieglinde Putty
-Initiate (21-30)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Bastokan Subligar
@@ -1297,9 +1291,7 @@ Main Craft: Goldsmithing - (30)
Goldsmithing Kit 30
-Novice (31-40)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Hiraishin x33
@@ -1870,9 +1862,7 @@ Main Craft: Goldsmithing - (40)
Goldsmithing Kit 40
-Apprentice (41-50)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Mythril Ingot
@@ -2601,9 +2591,7 @@ Main Craft: Goldsmithing - (50)
Goldsmithing Kit 50
-Journeyman (51-60)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: San d'Orian Sollerets
@@ -3721,9 +3709,7 @@ Main Craft: Goldsmithing - (60)
Goldsmithing Kit 60
-Craftsman (61-70)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Auto-Repair Kit II x12
@@ -4593,9 +4579,7 @@ Main Craft: Goldsmithing - (70)
Goldsmithing Kit 70
-Artisan (71-80)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Gold Cuisses
@@ -5372,9 +5356,7 @@ Main Craft: Goldsmithing - (80)
Goldsmithing Kit 80
-Adept (81-90)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Jagdplaute
@@ -6411,9 +6393,7 @@ Main Craft: Goldsmithing - (90)
Goldsmithing Kit 90
-Veteran (91-100)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Barone Zucchetto
@@ -7542,9 +7522,7 @@ Main Craft: Goldsmithing - (100)
Snowsteel Ore x4
-Expert (101-110)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Amood
@@ -7991,9 +7969,7 @@ Sub Craft(s): Clothcraft - (55)
Moldy Torque
-Authority (111-120)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Bewitched Schuhs
diff --git a/datasets/Goldsmithing_v2.csv b/datasets/Goldsmithing_v2.csv
index 24a9186..5a02d89 100644
--- a/datasets/Goldsmithing_v2.csv
+++ b/datasets/Goldsmithing_v2.csv
@@ -1,625 +1,625 @@
category,level,subcrafts,name,crystal,key_item,ingredients,hq_yields
-Amateur,1,[],Zinc Oxide,Fire,,"[[""Zinc Ore"", 3]]","[null, null, null]"
-Amateur,2,[],Stone Arrowheads,Wind,,"[[""Flint Stone"", 2]]","[[""Stone Arrowheads"", 8], [""Stone Arrowheads"", 10], [""Stone Arrowheads"", 12]]"
-Amateur,3,[],Copper Ingot,Fire,,"[[""Copper Ore"", 4]]","[null, null, null]"
-Amateur,4,[],Copper Ingot,Fire,,"[[""Copper Nugget"", 6], [""Copper Ore"", 1]]","[null, null, null]"
-Amateur,5,[],Copper Ring,Fire,,"[[""Copper Ingot"", 2]]","[[""Copper Ring +1"", 1], null, null]"
-Amateur,5,[],Copper Ring,Fire,,"[[""Goldsmithing Kit 5"", 1]]","[null, null, null]"
-Amateur,6,[],Black Bolt Heads,Wind,,"[[""Obsidian"", 1]]","[[""Black Bolt Heads"", 8], [""Black Bolt Heads"", 10], [""Black Bolt Heads"", 12]]"
-Amateur,7,[],Copper Hairpin,Wind,,"[[""Copper Ingot"", 1]]","[[""Copper Hairpin +1"", 1], null, null]"
-Amateur,7,[],Sapara,Fire,,"[[""Silver Ingot"", 1], [""Brass Ingot"", 2]]","[[""Sapara +1"", 1], null, null]"
-Amateur,8,[],Aht Urhgan Brass Ingot,Fire,,"[[""Aht Urhgan Brass"", 4]]","[null, null, null]"
-Amateur,9,[],Brass Ingot,Fire,,"[[""Zinc Ore"", 1], [""Copper Ore"", 3]]","[null, null, null]"
-Amateur,9,[],Circlet,Fire,,"[[""Copper Ingot"", 1], [""Brass Ingot"", 1]]","[[""Circlet +1"", 1], null, null]"
-Amateur,10,[],Brass Cap,Fire,,"[[""Brass Ingot"", 1], [""Bronze Cap"", 1]]","[[""Brass Cap +1"", 1], null, null]"
-Amateur,10,[],Brass Ingot,Fire,,"[[""Brass Nugget"", 6], [""Zinc Ore"", 1]]","[null, null, null]"
-Amateur,10,[],Aht Urhgan Brass Sheet,Fire,,"[[""Aht Urhgan Brass Ingot"", 1]]","[null, null, null]"
-Amateur,10,[],Aht Urhgan Brass Sheet,Fire,Sheeting,"[[""Aht Urhgan Brass Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,10,[],Brass Ingot,Fire,,"[[""Goldsmithing Kit 10"", 1], [""Recruit (11-20)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,11,[],Brass Sheet,Fire,,"[[""Brass Ingot"", 1]]","[null, null, null]"
-Amateur,11,[],Brass Sheet,Fire,Sheeting,"[[""Brass Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,12,[],Brass Mittens,Earth,,"[[""Brass Ingot"", 1], [""Bronze Mittens"", 1]]","[[""Brass Mittens +1"", 1], null, null]"
-Amateur,12,[],Brass Axe,Fire,,"[[""Brass Ingot"", 1], [""Bronze Axe"", 1]]","[[""Brass Axe +1"", 1], null, null]"
-Amateur,13,[],Brass Scales,Wind,,"[[""Brass Sheet"", 1]]","[null, null, null]"
-Amateur,13,[],Brass Dagger,Fire,,"[[""Brass Ingot"", 1], [""Bronze Dagger"", 1]]","[[""Brass Dagger +1"", 1], null, null]"
-Amateur,14,[],Brass Leggings,Earth,,"[[""Brass Ingot"", 1], [""Bronze Leggings"", 1]]","[[""Brass Leggings +1"", 1], null, null]"
-Amateur,14,[],Brass Knuckles,Fire,,"[[""Brass Ingot"", 1], [""Bronze Knuckles"", 1]]","[[""Brass Knuckles +1"", 1], null, null]"
-Amateur,14,[],Obsidian Arrowheads,Wind,,"[[""Obsidian"", 2]]","[[""Obsidian Arrowheads"", 8], [""Obsidian Arrowheads"", 10], [""Obsidian Arrowheads"", 12]]"
-Amateur,15,[],Brass Ring,Fire,,"[[""Brass Ingot"", 2]]","[[""Brass Ring +1"", 1], null, null]"
-Amateur,15,[],Brass Zaghnal,Fire,,"[[""Brass Ingot"", 1], [""Bronze Zaghnal"", 1]]","[[""Brass Zaghnal +1"", 1], null, null]"
-Amateur,15,[],Bastokan Cap,Fire,,"[[""Brass Ingot"", 1], [""Legionnaire's Cap"", 1]]","[[""Republic Cap"", 1], null, null]"
-Amateur,15,[],Brass Zaghnal,Fire,,"[[""Goldsmithing Kit 15"", 1]]","[null, null, null]"
-Amateur,16,[],Brass Subligar,Fire,,"[[""Brass Ingot"", 1], [""Bronze Subligar"", 1]]","[[""Brass Subligar +1"", 1], null, null]"
-Amateur,16,[],Brass Flowerpot,Fire,,"[[""Brass Sheet"", 3]]","[null, null, null]"
-Amateur,16,[],Piercing Dagger,Fire,Gold Ensorcellment,"[[""Lambent Water Cell"", 1], [""Lambent Wind Cell"", 1], [""Brass Dagger"", 1]]","[null, null, null]"
-Amateur,16,[],Brass Grip,Fire,Chainwork,"[[""Brass Ingot"", 2], [""Mandrel"", 1]]","[[""Brass Grip +1"", 1], null, null]"
-Amateur,17,[],Brass Hairpin,Wind,,"[[""Brass Ingot"", 1]]","[[""Brass Hairpin +1"", 1], null, null]"
-Amateur,17,[],Brass Baghnakhs,Fire,,"[[""Brass Ingot"", 1], [""Cat Baghnakhs"", 1]]","[[""Brass Baghnakhs +1"", 1], null, null]"
-Amateur,17,[],Bastokan Mittens,Fire,,"[[""Brass Ingot"", 1], [""Legionnaire's Mittens"", 1]]","[[""Republic Mittens"", 1], null, null]"
-Amateur,18,[],Brass Harness,Earth,,"[[""Brass Ingot"", 1], [""Brass Sheet"", 1], [""Bronze Harness"", 1]]","[[""Brass Harness +1"", 1], null, null]"
-Amateur,18,[],Silver Ingot,Fire,,"[[""Silver Beastcoin"", 4]]","[null, null, null]"
-Amateur,18,[],Keen Zaghnal,Fire,Gold Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Earth Cell"", 1], [""Brass Zaghnal"", 1]]","[null, null, null]"
-Amateur,19,[],Brass Xiphos,Fire,,"[[""Brass Ingot"", 1], [""Xiphos"", 1]]","[[""Brass Xiphos +1"", 1], null, null]"
-Amateur,19,[],Brass Chain,Earth,,"[[""Brass Ingot"", 2]]","[[""Brass Chain"", 2], [""Brass Chain"", 3], [""Brass Chain"", 4]]"
-Amateur,19,[],Brass Chain,Earth,,"[[""Brass Ingot"", 6], [""Workshop Anvil"", 1]]","[[""Brass Chain"", 6], [""Brass Chain"", 9], [""Brass Chain"", 12]]"
-Amateur,19,[],Bastokan Knuckles,Fire,,"[[""Brass Ingot"", 1], [""Legionnaire's Knuckles"", 1]]","[[""Republic Knuckles"", 1], null, null]"
-Amateur,19,[],Bastokan Leggings,Fire,,"[[""Brass Ingot"", 1], [""Legionnaire's Leggings"", 1]]","[[""Republic Leggings"", 1], null, null]"
-Amateur,19,[],Brass Tank,Earth,,"[[""Brass Sheet"", 3], [""Animal Glue"", 1]]","[null, null, null]"
-Amateur,20,[],Silver Ingot,Fire,,"[[""Silver Ore"", 4]]","[null, null, null]"
-Amateur,20,[],Rogue's Silver Ingot,Fire,Gold Ensorcellment,"[[""Ice Anima"", 1], [""Lightning Anima"", 1], [""Dark Anima"", 1], [""Silver Ore"", 4]]","[null, null, null]"
-Amateur,20,[],Neutralizing Silver Ingot,Fire,Gold Ensorcellment,"[[""Fire Anima"", 1], [""Light Anima"", 1], [""Water Anima"", 1], [""Silver Ore"", 4]]","[null, null, null]"
-Amateur,20,[],Tourmaline,Wind,,"[[""Green Rock"", 1]]","[[""Peridot"", 1], [""Jadeite"", 1], [""Emerald"", 1]]"
-Amateur,20,[],Sardonyx,Wind,,"[[""Red Rock"", 1]]","[[""Garnet"", 1], [""Sunstone"", 1], [""Ruby"", 1]]"
-Amateur,20,[],Amethyst,Wind,,"[[""Purple Rock"", 1]]","[[""Ametrine"", 1], [""Fluorite"", 1], [""Spinel"", 1]]"
-Amateur,20,[],Amber,Wind,,"[[""Yellow Rock"", 1]]","[[""Sphene"", 1], [""Chrysoberyl"", 1], [""Topaz"", 1]]"
-Amateur,20,[],Lapis Lazuli,Wind,,"[[""Blue Rock"", 1]]","[[""Turquoise"", 1], [""Aquamarine"", 1], [""Sapphire"", 1]]"
-Amateur,20,[],Clear Topaz,Wind,,"[[""Translucent Rock"", 1]]","[[""Goshenite"", 1], [""Zircon"", 1], [""Diamond"", 1]]"
-Amateur,20,[],Onyx,Wind,,"[[""Black Rock"", 1]]","[[""Onyx"", 1], [""Painite"", 1], [""Deathstone"", 1]]"
-Amateur,20,[],Light Opal,Wind,,"[[""White Rock"", 1]]","[[""Light Opal"", 1], [""Moonstone"", 1], [""Angelstone"", 1]]"
-Amateur,20,[],Rhodonite,Wind,,"[[""Scarlet Stone"", 1]]","[null, null, null]"
-Amateur,20,[],Ardent Jadeite,Wind,Gold Ensorcellment,"[[""Dark Anima"", 1], [""Fire Anima"", 1], [""Water Anima"", 1], [""Jadeite"", 1]]","[null, null, null]"
-Amateur,20,[],Mighty Sardonyx,Wind,Gold Ensorcellment,"[[""Fire Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1], [""Sardonyx"", 1]]","[null, null, null]"
-Amateur,20,[],Vision Amethyst Stone,Wind,Gold Ensorcellment,"[[""Earth Anima"", 1], [""Lightning Anima"", 1], [""Dark Anima"", 1], [""Amethyst"", 1]]","[null, null, null]"
-Amateur,20,[],Bastokan Scythe,Fire,,"[[""Brass Ingot"", 1], [""Legionnaire's Scythe"", 1]]","[[""Republic Scythe"", 1], null, null]"
-Amateur,20,[],Silver Ingot,Fire,,"[[""Goldsmithing Kit 20"", 1]]","[null, null, null]"
-Amateur,20,[],Shower Stand,Fire,,"[[""Iron Ingot"", 2], [""Gold Ingot"", 1], [""Sieglinde Putty"", 1], [""Initiate (21-30)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,21,[],Bastokan Subligar,Earth,,"[[""Brass Sheet"", 1], [""Legionnaire's Subligar"", 1]]","[[""Republic Subligar"", 1], null, null]"
-Amateur,21,[],Poet's Circlet,Fire,,"[[""Copper Ingot"", 1], [""Mythril Ingot"", 1]]","[[""Sage's Circlet"", 1], null, null]"
-Amateur,21,"[[""Clothcraft"", 6]]",Sabiki Rig,Earth,,"[[""Copper Ingot"", 2], [""Cotton Thread"", 3]]","[[""Rogue Rig"", 1], null, null]"
-Amateur,21,[],Silver Ingot,Fire,,"[[""Silver Nugget"", 6], [""Silver Ore"", 1]]","[null, null, null]"
-Amateur,22,[],Clear Topaz,Wind,,"[[""Sparkling Stone"", 1]]","[[""Goshenite"", 1], [""Zircon"", 1], [""Koh-I-Noor"", 1]]"
-Amateur,22,[],Silver Earring,Wind,,"[[""Silver Ingot"", 2]]","[[""Silver Earring +1"", 1], null, null]"
-Amateur,22,[],Silver Sheet,Fire,,"[[""Silver Ingot"", 1]]","[null, null, null]"
-Amateur,22,[],Silver Sheet,Fire,Sheeting,"[[""Silver Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,23,[],Bastokan Harness,Earth,,"[[""Brass Sheet"", 1], [""Legionnaire's Harness"", 1]]","[[""Republic Harness"", 1], null, null]"
-Amateur,23,[],Brass Rod,Fire,,"[[""Brass Ingot"", 1], [""Bronze Rod"", 1]]","[[""Brass Rod +1"", 1], null, null]"
-Amateur,24,[],Bastokan Leggings,Earth,,"[[""Brass Sheet"", 1], [""Legionnaire's Leggings"", 1]]","[[""Republic Leggings"", 1], null, null]"
-Amateur,24,[],Brass Hammer,Fire,,"[[""Brass Ingot"", 1], [""Bronze Hammer"", 1]]","[[""Brass Hammer +1"", 1], null, null]"
-Amateur,24,[],San d'Orian Sword,Fire,,"[[""Brass Ingot"", 1], [""Royal Archer's Sword"", 1]]","[[""Kingdom Sword"", 1], null, null]"
-Amateur,25,[],Amber Earring,Earth,,"[[""Silver Earring"", 1], [""Amber"", 1]]","[[""Stamina Earring"", 1], null, null]"
-Amateur,25,[],Amethyst Earring,Earth,,"[[""Silver Earring"", 1], [""Amethyst"", 1]]","[[""Balance Earring"", 1], null, null]"
-Amateur,25,[],Clear Earring,Earth,,"[[""Silver Earring"", 1], [""Clear Topaz"", 1]]","[[""Knowledge Earring"", 1], null, null]"
-Amateur,25,[],Lapis Lazuli Earring,Earth,,"[[""Silver Earring"", 1], [""Lapis Lazuli"", 1]]","[[""Tranquility Earring"", 1], null, null]"
-Amateur,25,[],Onyx Earring,Earth,,"[[""Silver Earring"", 1], [""Onyx"", 1]]","[[""Energy Earring"", 1], null, null]"
-Amateur,25,[],Opal Earring,Earth,,"[[""Silver Earring"", 1], [""Light Opal"", 1]]","[[""Hope Earring"", 1], null, null]"
-Amateur,25,[],Sardonyx Earring,Earth,,"[[""Silver Earring"", 1], [""Sardonyx"", 1]]","[[""Courage Earring"", 1], null, null]"
-Amateur,25,[],Tourmaline Earring,Earth,,"[[""Silver Earring"", 1], [""Tourmaline"", 1]]","[[""Reflex Earring"", 1], null, null]"
-Amateur,25,[],Silver Belt,Earth,,"[[""Silver Ingot"", 1], [""Lizard Belt"", 1]]","[[""Silver Belt +1"", 1], null, null]"
-Amateur,25,[],Silver Belt,Earth,,"[[""Goldsmithing Kit 25"", 1]]","[null, null, null]"
-Amateur,27,[],Silver Arrowheads,Wind,,"[[""Copper Ingot"", 1], [""Silver Ingot"", 1]]","[[""Silver Arrowheads"", 8], [""Silver Arrowheads"", 10], [""Silver Arrowheads"", 12]]"
-Amateur,27,[],Silver Hairpin,Wind,,"[[""Silver Ingot"", 1]]","[[""Silver Hairpin +1"", 1], null, null]"
-Amateur,28,[],Bastokan Circlet,Fire,,"[[""Mythril Ingot"", 1], [""Legionnaire's Circlet"", 1]]","[[""Republic Circlet"", 1], null, null]"
-Amateur,28,"[[""Smithing"", 19], [""Woodworking"", 13]]",Thief's Tools,Fire,,"[[""Copper Ingot"", 1], [""Iron Ingot"", 1], [""Yew Lumber"", 1]]","[null, null, null]"
-Amateur,29,[],Brass Mask,Earth,,"[[""Brass Sheet"", 1], [""Dhalmel Leather"", 1], [""Faceguard"", 1]]","[[""Brass Mask +1"", 1], null, null]"
-Amateur,30,[],Brass Finger Gauntlets,Earth,,"[[""Brass Scales"", 2], [""Cotton Thread"", 1], [""Leather Gloves"", 1], [""Dhalmel Leather"", 1]]","[[""Brass Finger Gauntlets +1"", 1], null, null]"
-Amateur,30,[],Amber Earring,Earth,,"[[""Silver Earring +1"", 1], [""Amber"", 1]]","[[""Stamina Earring +1"", 1], null, null]"
-Amateur,30,[],Amethyst Earring,Earth,,"[[""Silver Earring +1"", 1], [""Amethyst"", 1]]","[[""Balance Earring +1"", 1], null, null]"
-Amateur,30,[],Clear Earring,Earth,,"[[""Silver Earring +1"", 1], [""Clear Topaz"", 1]]","[[""Knowledge Earring +1"", 1], null, null]"
-Amateur,30,[],Lapis Lazuli Earring,Earth,,"[[""Silver Earring +1"", 1], [""Lapis Lazuli"", 1]]","[[""Tranquility Earring +1"", 1], null, null]"
-Amateur,30,[],Onyx Earring,Earth,,"[[""Silver Earring +1"", 1], [""Onyx"", 1]]","[[""Energy Earring +1"", 1], null, null]"
-Amateur,30,[],Opal Earring,Earth,,"[[""Silver Earring +1"", 1], [""Light Opal"", 1]]","[[""Hope Earring +1"", 1], null, null]"
-Amateur,30,[],Sardonyx Earring,Earth,,"[[""Silver Earring +1"", 1], [""Sardonyx"", 1]]","[[""Courage Earring +1"", 1], null, null]"
-Amateur,30,[],Tourmaline Earring,Earth,,"[[""Silver Earring +1"", 1], [""Tourmaline"", 1]]","[[""Reflex Earring +1"", 1], null, null]"
-Amateur,30,[],Brass Finger Gauntlets,Earth,,"[[""Goldsmithing Kit 30"", 1], [""Novice (31-40)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,31,[],Hiraishin,Fire,,"[[""Copper Ingot"", 1], [""Silver Ingot"", 1]]","[[""Hiraishin"", 66], [""Hiraishin"", 99], [""Hiraishin"", 99]]"
-Amateur,31,"[[""Woodworking"", 3]]",Lady Bell,Fire,,"[[""Brass Ingot"", 1], [""Lauan Lumber"", 1]]","[[""Lady Bell +1"", 1], null, null]"
-Amateur,32,[],Silver Ring,Fire,,"[[""Silver Ingot"", 2]]","[[""Silver Ring +1"", 1], null, null]"
-Amateur,32,[],Brass Greaves,Earth,,"[[""Brass Scales"", 2], [""Cotton Thread"", 1], [""Dhalmel Leather"", 1], [""Leather Highboots"", 1]]","[[""Brass Greaves +1"", 1], null, null]"
-Amateur,33,[],Silver Chain,Earth,,"[[""Silver Ingot"", 2]]","[[""Silver Chain"", 2], [""Silver Chain"", 3], [""Silver Chain"", 4]]"
-Amateur,33,[],Silver Chain,Earth,Chainwork,"[[""Silver Ingot"", 6], [""Mandrel"", 1]]","[[""Silver Chain"", 6], [""Silver Chain"", 9], [""Silver Chain"", 12]]"
-Amateur,33,[],Spark Spear,Earth,,"[[""Brass Spear"", 1], [""Copper Ingot"", 1]]","[[""Spark Spear +1"", 1], null, null]"
-Amateur,34,[],Brass Cuisses,Earth,,"[[""Brass Scales"", 2], [""Cotton Thread"", 1], [""Dhalmel Leather"", 1], [""Leather Trousers"", 1]]","[[""Brass Cuisses +1"", 1], null, null]"
-Amateur,34,[],Chain Belt,Earth,,"[[""Silver Chain"", 3], [""Silver Ingot"", 1]]","[[""Chain Belt +1"", 1], null, null]"
-Amateur,35,[],Amber Ring,Earth,,"[[""Amber"", 1], [""Silver Ring"", 1]]","[[""Stamina Ring"", 1], null, null]"
-Amateur,35,[],Amethyst Ring,Earth,,"[[""Amethyst"", 1], [""Silver Ring"", 1]]","[[""Balance Ring"", 1], null, null]"
-Amateur,35,[],Clear Ring,Earth,,"[[""Clear Topaz"", 1], [""Silver Ring"", 1]]","[[""Knowledge Ring"", 1], null, null]"
-Amateur,35,[],Lapis Lazuli Ring,Earth,,"[[""Lapis Lazuli"", 1], [""Silver Ring"", 1]]","[[""Tranquility Ring"", 1], null, null]"
-Amateur,35,[],Onyx Ring,Earth,,"[[""Onyx"", 1], [""Silver Ring"", 1]]","[[""Energy Ring"", 1], null, null]"
-Amateur,35,[],Opal Ring,Earth,,"[[""Light Opal"", 1], [""Silver Ring"", 1]]","[[""Hope Ring"", 1], null, null]"
-Amateur,35,[],Sardonyx Ring,Earth,,"[[""Sardonyx"", 1], [""Silver Ring"", 1]]","[[""Courage Ring"", 1], null, null]"
-Amateur,35,[],Tourmaline Ring,Earth,,"[[""Tourmaline"", 1], [""Silver Ring"", 1]]","[[""Reflex Ring"", 1], null, null]"
-Amateur,35,[],Poisona Ring,Fire,,"[[""Neutralizing Silver Ingot"", 1], [""Silver Ring"", 1]]","[null, null, null]"
-Amateur,35,[],Tigereye Ring,Earth,,"[[""Tiger Eye"", 1], [""Silver Ring"", 1]]","[[""Feral Ring"", 1], null, null]"
-Amateur,35,[],Tigereye Ring,Earth,,"[[""Goldsmithing Kit 35"", 1]]","[null, null, null]"
-Amateur,36,[],Brass Scale Mail,Earth,,"[[""Brass Scales"", 4], [""Cotton Thread"", 1], [""Dhalmel Leather"", 1], [""Leather Vest"", 1]]","[[""Brass Scale Mail +1"", 1], null, null]"
-Amateur,36,[],Spark Bilbo,Earth,,"[[""Bilbo"", 1], [""Copper Ingot"", 1]]","[[""Spark Bilbo +1"", 1], null, null]"
-Amateur,36,[],Griot Belt,Earth,,"[[""Quadav Silver"", 1], [""Silver Chain"", 3]]","[[""Griot Belt +1"", 1], null, null]"
-Amateur,37,[],Chain Gorget,Earth,,"[[""Silver Chain"", 3]]","[[""Fine Gorget"", 1], null, null]"
-Amateur,38,[],Mighty Ring,Earth,,"[[""Mighty Sardonyx"", 1], [""Sardonyx Ring"", 1]]","[null, null, null]"
-Amateur,38,[],Vision Ring,Earth,,"[[""Vision Amethyst"", 1], [""Amethyst Ring"", 1]]","[null, null, null]"
-Amateur,38,[],Mythril Ingot,Fire,,"[[""Mythril Beastcoin"", 4]]","[null, null, null]"
-Amateur,38,[],Spark Dagger,Earth,,"[[""Copper Ingot"", 1], [""Dagger"", 1]]","[[""Spark Dagger +1"", 1], null, null]"
-Amateur,39,[],Chain Choker,Earth,,"[[""Garnet"", 1], [""Silver Chain"", 2]]","[[""Red Choker"", 1], null, null]"
-Amateur,39,[],Mythril Grip,Fire,Chainwork,"[[""Mandrel"", 1], [""Mythril Ingot"", 2]]","[[""Mythril Grip +1"", 1], null, null]"
-Amateur,39,[],Focus Collar,Earth,,"[[""Flawed Garnet"", 1], [""Silver Chain"", 2]]","[[""Focus Collar +1"", 1], null, null]"
-Amateur,39,[],Silver Mask,Fire,,"[[""Iron Mask"", 1], [""Mercury"", 1], [""Silver Ingot"", 1]]","[[""Silver Mask +1"", 1], null, null]"
-Amateur,40,[],Amber Ring,Earth,,"[[""Amber"", 1], [""Silver Ring +1"", 1]]","[[""Stamina Ring +1"", 1], null, null]"
-Amateur,40,[],Amethyst Ring,Earth,,"[[""Amethyst"", 1], [""Silver Ring +1"", 1]]","[[""Balance Ring +1"", 1], null, null]"
-Amateur,40,[],Clear Ring,Earth,,"[[""Clear Topaz"", 1], [""Silver Ring +1"", 1]]","[[""Knowledge Ring +1"", 1], null, null]"
-Amateur,40,[],Lapis Lazuli Ring,Earth,,"[[""Lapis Lazuli"", 1], [""Silver Ring +1"", 1]]","[[""Tranquility Ring +1"", 1], null, null]"
-Amateur,40,[],Onyx Ring,Earth,,"[[""Onyx"", 1], [""Silver Ring +1"", 1]]","[[""Energy Ring +1"", 1], null, null]"
-Amateur,40,[],Opal Ring,Earth,,"[[""Light Opal"", 1], [""Silver Ring +1"", 1]]","[[""Hope Ring +1"", 1], null, null]"
-Amateur,40,[],Sardonyx Ring,Earth,,"[[""Sardonyx"", 1], [""Silver Ring +1"", 1]]","[[""Courage Ring +1"", 1], null, null]"
-Amateur,40,[],Tourmaline Ring,Earth,,"[[""Tourmaline"", 1], [""Silver Ring +1"", 1]]","[[""Reflex Ring +1"", 1], null, null]"
-Amateur,40,[],Vivified Mythril,Fire,Gold Purification,"[[""Light Anima"", 1], [""Lightning Anima"", 1], [""Water Anima"", 1], [""Mythril Ore"", 4]]","[null, null, null]"
-Amateur,40,[],Silver Mittens,Earth,,"[[""Chain Mittens"", 1], [""Silver Chain"", 1]]","[[""Silver Mittens +1"", 1], null, null]"
-Amateur,40,[],Mythril Ingot,Fire,,"[[""Mythril Ore"", 4]]","[null, null, null]"
-Amateur,40,[],Mythril Ingot,Fire,,"[[""Goldsmithing Kit 40"", 1], [""Apprentice (41-50)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,41,[],Mythril Ingot,Fire,,"[[""Mythril Nugget"", 6], [""Mythril Ore"", 1]]","[null, null, null]"
-Amateur,41,[],Mythril Sheet,Fire,,"[[""Mythril Ingot"", 1]]","[null, null, null]"
-Amateur,41,[],Mythril Sheet,Fire,Sheeting,"[[""Mythril Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,41,[],Mythril Mesh Sheet,Fire,Gold Purification,"[[""Light Anima"", 1], [""Wind Anima"", 2], [""Mythril Ingot"", 1]]","[null, null, null]"
-Amateur,42,[],Electrum Ingot,Fire,,"[[""Silver Ore"", 1], [""Gold Ore"", 3]]","[null, null, null]"
-Amateur,42,[],Mythril Earring,Wind,,"[[""Mythril Ingot"", 2]]","[[""Mythril Earring +1"", 1], null, null]"
-Amateur,42,[],Silver Greaves,Fire,,"[[""Greaves"", 1], [""Mercury"", 1], [""Silver Ingot"", 1]]","[[""Silver Greaves +1"", 1], null, null]"
-Amateur,43,[],Mythril Chain,Earth,,"[[""Mythril Ingot"", 2]]","[[""Mythril Chain"", 2], [""Mythril Chain"", 3], [""Mythril Chain"", 4]]"
-Amateur,43,[],Mythril Chain,Earth,Chainwork,"[[""Mythril Ingot"", 6], [""Mandrel"", 1]]","[[""Mythril Chain"", 6], [""Mythril Chain"", 9], [""Mythril Chain"", 12]]"
-Amateur,43,[],Mythril Coil,Wind,Chainwork,"[[""Mythril Ingot"", 2], [""Mandrel"", 1]]","[[""Mythril Coil"", 6], [""Mythril Coil"", 9], [""Mythril Coil"", 12]]"
-Amateur,43,[],Veldt Axe,Fire,,"[[""Brass Axe"", 1], [""Penumbral Brass Ingot"", 1]]","[[""Veldt Axe +1"", 1], null, null]"
-Amateur,44,[],Mythril Baselard,Fire,,"[[""Mythril Ingot"", 1], [""Steel Ingot"", 1]]","[[""Fine Baselard"", 1], null, null]"
-Amateur,44,[],Mythril Gear Machine,Fire,Chainwork,"[[""Mythril Ingot"", 1], [""Mythril Sheet"", 1]]","[[""Mythril Gear Machine"", 2], [""Mythril Gear Machine"", 3], [""Mythril Gear Machine"", 4]]"
-Amateur,44,[],Silver Hose,Earth,,"[[""Chain Hose"", 1], [""Silver Chain"", 1]]","[[""Silver Hose +1"", 1], null, null]"
-Amateur,44,[],Spark Lance,Earth,,"[[""Lance"", 1], [""Silver Ingot"", 1]]","[[""Spark Lance +1"", 1], null, null]"
-Amateur,45,[],Ametrine Earring,Earth,,"[[""Ametrine"", 1], [""Mythril Earring"", 1]]","[[""Deft Earring"", 1], null, null]"
-Amateur,45,[],Black Earring,Earth,,"[[""Black Pearl"", 1], [""Mythril Earring"", 1]]","[[""Aura Earring"", 1], null, null]"
-Amateur,45,[],Blood Earring,Earth,,"[[""Garnet"", 1], [""Mythril Earring"", 1]]","[[""Puissance Earring"", 1], null, null]"
-Amateur,45,[],Goshenite Earring,Earth,,"[[""Goshenite"", 1], [""Mythril Earring"", 1]]","[[""Wisdom Earring"", 1], null, null]"
-Amateur,45,[],Pearl Earring,Earth,,"[[""Pearl"", 1], [""Mythril Earring"", 1]]","[[""Loyalty Earring"", 1], null, null]"
-Amateur,45,[],Peridot Earring,Earth,,"[[""Peridot"", 1], [""Mythril Earring"", 1]]","[[""Alacrity Earring"", 1], null, null]"
-Amateur,45,[],Sphene Earring,Earth,,"[[""Sphene"", 1], [""Mythril Earring"", 1]]","[[""Verve Earring"", 1], null, null]"
-Amateur,45,[],Turquoise Earring,Earth,,"[[""Turquoise"", 1], [""Mythril Earring"", 1]]","[[""Solace Earring"", 1], null, null]"
-Amateur,45,[],Reraise Earring,Wind,,"[[""Vivified Mythril"", 1], [""Mythril Earring"", 1]]","[null, null, null]"
-Amateur,45,[],Electrum Chain,Earth,,"[[""Electrum Ingot"", 2]]","[[""Electrum Chain"", 2], [""Electrum Chain"", 3], [""Electrum Chain"", 4]]"
-Amateur,45,[],Electrum Chain,Earth,Chainwork,"[[""Electrum Ingot"", 6], [""Mandrel"", 1]]","[[""Electrum Chain"", 6], [""Electrum Chain"", 9], [""Electrum Chain"", 12]]"
-Amateur,45,[],Peridot Earring,Earth,,"[[""Goldsmithing Kit 45"", 1]]","[null, null, null]"
-Amateur,46,[],Hydro Axe,Fire,,"[[""Animal Glue"", 1], [""Greataxe"", 1], [""Mythril Sheet"", 1]]","[[""Hydro Axe +1"", 1], null, null]"
-Amateur,46,[],Silver Mail,Fire,,"[[""Chainmail"", 1], [""Silver Chain"", 2]]","[[""Silver Mail +1"", 1], null, null]"
-Amateur,46,[],Sollerets,Fire,,"[[""Greaves"", 1], [""Mythril Sheet"", 2]]","[[""Sollerets +1"", 1], null, null]"
-Amateur,47,[],Gold Dust,Wind,,"[[""Brass Ingot"", 1], [""Copper Ingot"", 1]]","[null, null, null]"
-Amateur,47,[],Mufflers,Earth,,"[[""Chain Mittens"", 1], [""Mythril Sheet"", 2]]","[[""Mufflers +1"", 1], null, null]"
-Amateur,47,[],Mythril Ring,Fire,,"[[""Mythril Ingot"", 2]]","[[""Mythril Ring +1"", 1], null, null]"
-Amateur,47,"[[""Alchemy"", 11]]",Scope,Earth,Clockmaking,"[[""Artificial Lens"", 2], [""Brass Sheet"", 1], [""Glass Fiber"", 1], [""Mythril Gear Machine"", 1]]","[null, null, null]"
-Amateur,48,[],Aluminum Ingot,Fire,,"[[""Aluminum Ore"", 4]]","[null, null, null]"
-Amateur,48,"[[""Smithing"", 14]]",Banded Helm,Fire,,"[[""Copper Ingot"", 1], [""Iron Sheet"", 1], [""Mythril Chain"", 1], [""Mythril Sheet"", 1], [""Sheep Leather"", 1]]","[[""Banded Helm +1"", 1], null, null]"
-Amateur,48,"[[""Leathercraft"", 9]]",Breeches,Earth,,"[[""Linen Cloth"", 1], [""Mythril Chain"", 2], [""Ram Leather"", 2]]","[[""Breeches +1"", 1], null, null]"
-Amateur,49,[],Buckler,Earth,,"[[""Mythril Sheet"", 2], [""Targe"", 1]]","[[""Buckler +1"", 1], null, null]"
-Amateur,49,[],Heatsink,Earth,Clockmaking,"[[""Hydro Pump"", 1], [""Water Tank"", 1], [""Sieglinde Putty"", 1], [""Mythril Sheet"", 1], [""Mythril Gear Machine"", 1]]","[null, null, null]"
-Amateur,49,[],San d'Orian Dagger,Fire,,"[[""Mythril Ingot"", 1], [""Royal Squire's Dagger"", 1]]","[[""Kingdom Dagger"", 1], null, null]"
-Amateur,49,[],Silver Bangles,Fire,,"[[""Silver Ingot"", 3]]","[[""Silver Bangles +1"", 1], null, null]"
-Amateur,49,[],Spark Degen,Earth,,"[[""Silver Ingot"", 1], [""Mythril Degen"", 1]]","[[""Spark Degen +1"", 1], null, null]"
-Amateur,50,[],Ametrine Earring,Earth,,"[[""Ametrine"", 1], [""Mythril Earring +1"", 1]]","[[""Deft Earring +1"", 1], null, null]"
-Amateur,50,[],Black Earring,Earth,,"[[""Black Pearl"", 1], [""Mythril Earring +1"", 1]]","[[""Aura Earring +1"", 1], null, null]"
-Amateur,50,[],Blood Earring,Earth,,"[[""Garnet"", 1], [""Mythril Earring +1"", 1]]","[[""Puissance Earring +1"", 1], null, null]"
-Amateur,50,[],Goshenite Earring,Earth,,"[[""Goshenite"", 1], [""Mythril Earring +1"", 1]]","[[""Wisdom Earring +1"", 1], null, null]"
-Amateur,50,[],Pearl Earring,Earth,,"[[""Pearl"", 1], [""Mythril Earring +1"", 1]]","[[""Loyalty Earring +1"", 1], null, null]"
-Amateur,50,[],Peridot Earring,Earth,,"[[""Peridot"", 1], [""Mythril Earring +1"", 1]]","[[""Alacrity Earring +1"", 1], null, null]"
-Amateur,50,[],Sphene Earring,Earth,,"[[""Sphene"", 1], [""Mythril Earring +1"", 1]]","[[""Verve Earring +1"", 1], null, null]"
-Amateur,50,[],Turquoise Earring,Earth,,"[[""Turquoise"", 1], [""Mythril Earring +1"", 1]]","[[""Solace Earring +1"", 1], null, null]"
-Amateur,50,[],Aero Mufflers,Earth,,"[[""Mufflers"", 1], [""Mythril Mesh Sheet"", 1]]","[null, null, null]"
-Amateur,50,[],Aluminum Sheet,Fire,,"[[""Aluminum Ingot"", 1]]","[null, null, null]"
-Amateur,50,[],Aluminum Sheet,Fire,Sheeting,"[[""Aluminum Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,50,"[[""Clothcraft"", 13]]",Banded Mail,Earth,,"[[""Linen Cloth"", 1], [""Mythril Chain"", 4], [""Mythril Sheet"", 2]]","[[""Banded Mail +1"", 1], null, null]"
-Amateur,50,[],Spark Baselard,Earth,,"[[""Silver Ingot"", 1], [""Mythril Baselard"", 1]]","[[""Spark Baselard +1"", 1], null, null]"
-Amateur,50,[],Aluminum Sheet,Fire,,"[[""Goldsmithing Kit 50"", 1], [""Journeyman (51-60)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,51,[],San d'Orian Sollerets,Earth,,"[[""Mythril Chain"", 1], [""Royal Squire's Sollerets"", 1]]","[[""Kingdom Sollerets"", 1], null, null]"
-Amateur,51,[],Wingedge,Wind,,"[[""Cotton Thread"", 1], [""Mythril Ingot"", 1], [""Silver Ingot"", 1]]","[[""Wingedge +1"", 1], null, null]"
-Amateur,51,[],Hydro Baghnakhs,Fire,,"[[""Animal Glue"", 1], [""Brass Baghnakhs"", 1], [""Mythril Sheet"", 1]]","[[""Hydro Baghnakhs +1"", 1], null, null]"
-Amateur,51,[],Tension Spring,Earth,Clockmaking,"[[""Darksteel Ingot"", 1], [""Mythril Coil"", 2], [""Mythril Gear Machine"", 1], [""Slime Oil"", 1]]","[null, null, null]"
-Amateur,51,"[[""Alchemy"", 29]]",Auto-Repair Kit,Fire,Clockmaking,"[[""Glass Fiber"", 1], [""Glass Sheet"", 1], [""Mythril Sheet"", 1], [""Hi-Potion Tank"", 1], [""Kilo Pump"", 1]]","[null, null, null]"
-Amateur,51,[],Amber,Wind,,"[[""Soil Geode"", 1]]","[[""Sphene"", 1], [""Chrysoberyl"", 1], [""Soil Gem"", 1]]"
-Amateur,51,[],Amethyst,Wind,,"[[""Thunder Geode"", 1]]","[[""Ametrine"", 1], [""Fluorite"", 1], [""Thunder Gem"", 1]]"
-Amateur,51,[],Clear Topaz,Wind,,"[[""Snow Geode"", 1]]","[[""Goshenite"", 1], [""Zircon"", 1], [""Snow Gem"", 1]]"
-Amateur,51,[],Lapis Lazuli,Wind,,"[[""Aqua Geode"", 1]]","[[""Turquoise"", 1], [""Aquamarine"", 1], [""Aqua Gem"", 1]]"
-Amateur,51,[],Light Opal,Wind,,"[[""Light Geode"", 1]]","[[""Light Opal"", 1], [""Moonstone"", 1], [""Light Gem"", 1]]"
-Amateur,51,[],Onyx,Wind,,"[[""Shadow Geode"", 1]]","[[""Onyx"", 1], [""Painite"", 1], [""Shadow Gem"", 1]]"
-Amateur,51,[],Sardonyx,Wind,,"[[""Flame Geode"", 1]]","[[""Garnet"", 1], [""Sunstone"", 1], [""Flame Gem"", 1]]"
-Amateur,51,[],Tourmaline,Wind,,"[[""Breeze Geode"", 1]]","[[""Peridot"", 1], [""Jadeite"", 1], [""Breeze Gem"", 1]]"
-Amateur,51,[],Gold Ingot,Fire,,"[[""Gold Beastcoin"", 4]]","[null, null, null]"
-Amateur,52,[],Hydro Cutter,Fire,,"[[""Animal Glue"", 1], [""Heavy Axe"", 1], [""Mythril Sheet"", 1]]","[[""Hydro Cutter +1"", 1], null, null]"
-Amateur,52,"[[""Smithing"", 21]]",Mythril Degen,Fire,,"[[""Iron Ingot"", 1], [""Mythril Ingot"", 2]]","[[""Mythril Degen +1"", 1], null, null]"
-Amateur,52,[],Palmer's Bangles,Fire,,"[[""Rogue's Silver"", 1], [""Silver Bangles"", 1]]","[null, null, null]"
-Amateur,52,[],San d'Orian Mufflers,Earth,,"[[""Mythril Chain"", 1], [""Royal Squire's Mufflers"", 1]]","[[""Kingdom Mufflers"", 1], null, null]"
-Amateur,52,"[[""Smithing"", 30], [""Alchemy"", 19]]",Shock Absorber,Fire,Clockmaking,"[[""Bomb Ash"", 1], [""Carbon Fiber"", 1], [""Darksteel Sheet"", 1], [""Imperial Cermet"", 1], [""Iron Sheet"", 1]]","[null, null, null]"
-Amateur,52,[],Scope II,Earth,Clockmaking,"[[""Glass Fiber"", 1], [""Artificial Lens"", 2], [""Golden Gear"", 1], [""Aht Urhgan Brass Sheet"", 1]]","[null, null, null]"
-Amateur,53,[],Bewitched Gold Ingot,Fire,Gold Purification,"[[""Fire Anima"", 1], [""Ice Anima"", 1], [""Light Anima"", 1], [""Gold Ore"", 4]]","[null, null, null]"
-Amateur,53,[],Indurated Gold Ingot,Fire,Gold Purification,"[[""Earth Anima"", 2], [""Light Anima"", 1], [""Gold Ore"", 4]]","[null, null, null]"
-Amateur,53,[],Gold Ingot,Fire,,"[[""Gold Ore"", 4]]","[null, null, null]"
-Amateur,53,[],Royal Squire's Breeches +1,Earth,,"[[""Mythril Chain"", 1], [""Royal Squire's Breeches"", 1]]","[[""Royal Squire's Breeches +2"", 1], null, null]"
-Amateur,53,[],San d'Orian Helm,Earth,,"[[""Mythril Sheet"", 1], [""Royal Squire's Helm"", 1]]","[[""Kingdom Helm"", 1], null, null]"
-Amateur,53,[],Spark Fork,Earth,,"[[""Mythril Ingot"", 1], [""Battle Fork"", 1]]","[[""Spark Fork +1"", 1], null, null]"
-Amateur,53,[],Golden Coil,Wind,Chainwork,"[[""Gold Ingot"", 2], [""Mandrel"", 1]]","[[""Golden Coil"", 6], [""Golden Coil"", 9], [""Golden Coil"", 12]]"
-Amateur,53,[],Resister,Fire,Clockmaking,"[[""Blessed Mythril Sheet"", 1], [""Goblin Grease"", 1], [""Ebonite"", 1], [""Water Tank"", 1], [""Hydro Pump"", 1]]","[null, null, null]"
-Amateur,54,[],Gold Ingot,Fire,,"[[""Gold Nugget"", 6], [""Gold Ore"", 1]]","[null, null, null]"
-Amateur,54,[],Gold Nugget,Fire,,"[[""Auric Sand"", 4]]","[null, null, null]"
-Amateur,54,[],Gold Sheet,Fire,,"[[""Gold Ingot"", 1]]","[null, null, null]"
-Amateur,54,[],Gold Sheet,Fire,Sheeting,"[[""Gold Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,54,[],Golden Gear,Fire,Clockmaking,"[[""Gold Sheet"", 1], [""Mythril Ingot"", 1]]","[[""Golden Gear"", 2], [""Golden Gear"", 3], [""Golden Gear"", 4]]"
-Amateur,54,"[[""Alchemy"", 27]]",Volt Gun,Fire,Clockmaking,"[[""Battery"", 1], [""Ebonite"", 1], [""Gold Sheet"", 1], [""Hiraishin"", 1], [""Mythril Gear Machine"", 1]]","[null, null, null]"
-Amateur,54,"[[""Alchemy"", 5]]",Candle Holder,Fire,,"[[""Beeswax"", 1], [""Brass Ingot"", 3], [""Gold Ingot"", 1]]","[null, null, null]"
-Amateur,55,[],Ametrine Ring,Earth,,"[[""Ametrine"", 1], [""Mythril Ring"", 1]]","[[""Deft Ring"", 1], null, null]"
-Amateur,55,[],Black Ring,Earth,,"[[""Black Pearl"", 1], [""Mythril Ring"", 1]]","[[""Aura Ring"", 1], null, null]"
-Amateur,55,[],Garnet Ring,Earth,,"[[""Garnet"", 1], [""Mythril Ring"", 1]]","[[""Puissance Ring"", 1], null, null]"
-Amateur,55,[],Goshenite Ring,Earth,,"[[""Goshenite"", 1], [""Mythril Ring"", 1]]","[[""Wisdom Ring"", 1], null, null]"
-Amateur,55,[],Pearl Ring,Earth,,"[[""Pearl"", 1], [""Mythril Ring"", 1]]","[[""Loyalty Ring"", 1], null, null]"
-Amateur,55,[],Peridot Ring,Earth,,"[[""Peridot"", 1], [""Mythril Ring"", 1]]","[[""Alacrity Ring"", 1], null, null]"
-Amateur,55,[],Sphene Ring,Earth,,"[[""Sphene"", 1], [""Mythril Ring"", 1]]","[[""Verve Ring"", 1], null, null]"
-Amateur,55,[],Turquoise Ring,Earth,,"[[""Turquoise"", 1], [""Mythril Ring"", 1]]","[[""Solace Ring"", 1], null, null]"
-Amateur,55,[],Gold Chain,Earth,,"[[""Gold Ingot"", 2]]","[[""Gold Chain"", 2], [""Gold Chain"", 3], [""Gold Chain"", 4]]"
-Amateur,55,[],Gold Chain,Earth,Chainwork,"[[""Gold Ingot"", 6], [""Mandrel"", 1]]","[[""Gold Chain"", 6], [""Gold Chain"", 9], [""Gold Chain"", 12]]"
-Amateur,55,[],Royal Squire's Chainmail +1,Earth,,"[[""Mythril Chain"", 1], [""Royal Squire's Chainmail"", 1]]","[[""Royal Squire's Chainmail +2"", 1], null, null]"
-Amateur,55,[],Barrier Module,Fire,Clockmaking,"[[""Slime Oil"", 1], [""Glass Fiber"", 1], [""Mythril Coil"", 1], [""Mythril Gear Machine"", 1]]","[null, null, null]"
-Amateur,55,[],Speedloader,Fire,Clockmaking,"[[""Slime Oil"", 1], [""Mythril Sheet"", 1], [""Glass Fiber"", 1], [""Mythril Coil"", 1], [""Mythril Gear Machine"", 1]]","[null, null, null]"
-Amateur,55,[],Heater Shield,Earth,,"[[""Goldsmithing Kit 55"", 1]]","[null, null, null]"
-Amateur,56,[],Combat Caster's Boomerang +1,Fire,,"[[""Mythril Ingot"", 1], [""Combat Caster's Boomerang"", 1]]","[[""Combat Caster's Boomerang +2"", 1], null, null]"
-Amateur,56,[],Heater Shield,Earth,,"[[""Mythril Sheet"", 2], [""Kite Shield"", 1]]","[[""Heater Shield +1"", 1], null, null]"
-Amateur,56,"[[""Alchemy"", 29]]",Mana Tank,Fire,Clockmaking,"[[""Glass Sheet"", 1], [""Mercury"", 1], [""Sieglinde Putty"", 1], [""Hi-Ether Tank"", 1], [""Hydro Pump"", 1]]","[null, null, null]"
-Amateur,56,[],Mythril Gorget,Fire,,"[[""Gold Ingot"", 1], [""Jadeite"", 1], [""Mercury"", 1], [""Mythril Chain"", 1], [""Mythril Sheet"", 1]]","[[""Noble's Gorget"", 1], null, null]"
-Amateur,57,[],Gold Earring,Wind,,"[[""Gold Ingot"", 2]]","[[""Gold Earring +1"", 1], null, null]"
-Amateur,57,[],Melody Earring,Earth,,"[[""Mythril Earring"", 1], [""Southern Pearl"", 1]]","[[""Melody Earring +1"", 1], null, null]"
-Amateur,57,[],Reaver Grip,Earth,Chainwork,"[[""Malebolge Mandrel"", 1], [""Mythril Ingot"", 2]]","[[""Reaver Grip +1"", 1], null, null]"
-Amateur,57,[],Shock Absorber II,Fire,Clockmaking,"[[""Adaman Sheet"", 1], [""Carbon Fiber"", 1], [""Cluster Ash"", 1], [""Dark Adaman"", 1], [""Imperial Cermet"", 1]]","[null, null, null]"
-Amateur,57,[],Scope III,Earth,Clockmaking,"[[""Glass Fiber"", 1], [""Artificial Lens"", 2], [""Aht Urhgan Brass Sheet"", 1], [""Platinum Gear"", 1]]","[null, null, null]"
-Amateur,58,"[[""Alchemy"", 29]]",Accelerator,Fire,Clockmaking,"[[""Coeurl Whisker"", 1], [""Goblin Grease"", 1], [""Imperial Cermet"", 1], [""Mythril Gear Machine"", 1], [""Wind Fan"", 1]]","[null, null, null]"
-Amateur,58,[],Aluminum Chain,Earth,,"[[""Aluminum Ingot"", 2]]","[[""Aluminum Chain"", 2], [""Aluminum Chain"", 3], [""Aluminum Chain"", 4]]"
-Amateur,58,[],Aluminum Chain,Earth,Sheeting,"[[""Aluminum Ingot"", 6], [""Mandrel"", 1]]","[[""Aluminum Chain"", 6], [""Aluminum Chain"", 9], [""Aluminum Chain"", 12]]"
-Amateur,58,[],Gold Hairpin,Wind,,"[[""Gold Ingot"", 1]]","[[""Gold Hairpin +1"", 1], null, null]"
-Amateur,58,[],Spark Rapier,Earth,,"[[""Mythril Ingot"", 1], [""Rapier"", 1]]","[[""Spark Rapier +1"", 1], null, null]"
-Amateur,58,[],Resister II,Fire,Clockmaking,"[[""Blessed Mythril Sheet"", 1], [""Goblin Grease"", 1], [""Ebonite"", 1], [""Water Tank"", 1], [""Kilo Pump"", 1]]","[null, null, null]"
-Amateur,59,"[[""Smithing"", 31]]",Chakram,Wind,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Steel Ingot"", 1]]","[[""Chakram +1"", 1], null, null]"
-Amateur,59,[],Hydro Claws,Fire,,"[[""Animal Glue"", 1], [""Claws"", 1], [""Mythril Sheet"", 1]]","[[""Hydro Claws +1"", 1], null, null]"
-Amateur,59,"[[""Alchemy"", 12]]",Mana Jammer,Fire,Clockmaking,"[[""Artificial Lens"", 1], [""Blessed Mythril Sheet"", 1], [""Hydro Pump"", 1], [""Sieglinde Putty"", 1], [""Water Tank"", 1]]","[null, null, null]"
-Amateur,59,[],Wing Gorget,Earth,,"[[""Ardent Jadeite"", 1], [""Mythril Gorget"", 1]]","[null, null, null]"
-Amateur,60,[],Ametrine Ring,Earth,,"[[""Ametrine"", 1], [""Mythril Ring +1"", 1]]","[[""Deft Ring +1"", 1], null, null]"
-Amateur,60,[],Black Ring,Earth,,"[[""Black Pearl"", 1], [""Mythril Ring +1"", 1]]","[[""Aura Ring +1"", 1], null, null]"
-Amateur,60,[],Garnet Ring,Earth,,"[[""Garnet"", 1], [""Mythril Ring +1"", 1]]","[[""Puissance Ring +1"", 1], null, null]"
-Amateur,60,[],Goshenite Ring,Earth,,"[[""Goshenite"", 1], [""Mythril Ring +1"", 1]]","[[""Wisdom Ring +1"", 1], null, null]"
-Amateur,60,[],Pearl Ring,Earth,,"[[""Pearl"", 1], [""Mythril Ring +1"", 1]]","[[""Loyalty Ring +1"", 1], null, null]"
-Amateur,60,[],Peridot Ring,Earth,,"[[""Peridot"", 1], [""Mythril Ring +1"", 1]]","[[""Alacrity Ring +1"", 1], null, null]"
-Amateur,60,[],Sphene Ring,Earth,,"[[""Sphene"", 1], [""Mythril Ring +1"", 1]]","[[""Verve Ring +1"", 1], null, null]"
-Amateur,60,[],Turquoise Ring,Earth,,"[[""Turquoise"", 1], [""Mythril Ring +1"", 1]]","[[""Solace Ring +1"", 1], null, null]"
-Amateur,60,[],Gold Ring,Fire,,"[[""Gold Ingot"", 2]]","[[""Gold Ring +1"", 1], null, null]"
-Amateur,60,[],Spark Kris,Earth,,"[[""Mythril Ingot"", 1], [""Darksteel Kris"", 1]]","[[""Spark Kris +1"", 1], null, null]"
-Amateur,60,[],Gold Arrowheads,Wind,,"[[""Copper Ingot"", 1], [""Gold Ingot"", 1]]","[[""Gold Arrowheads"", 8], [""Gold Arrowheads"", 10], [""Gold Arrowheads"", 12]]"
-Amateur,60,[],Aquamarine,Wind,,"[[""Scholar Stone"", 1]]","[[""Sapphire"", 1], [""Tanzanite Jewel"", 1], [""Tanzanite Jewel"", 1]]"
-Amateur,60,[],Speedloader II,Fire,Clockmaking,"[[""Slime Oil"", 1], [""Gold Sheet"", 1], [""Glass Fiber"", 1], [""Mythril Coil"", 1], [""Mythril Gear Machine"", 1]]","[null, null, null]"
-Amateur,60,[],Mythril Cuisses,Fire,,"[[""Goldsmithing Kit 60"", 1], [""Craftsman (61-70)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,61,"[[""Alchemy"", 29]]",Auto-Repair Kit II,Fire,Clockmaking,"[[""Glass Fiber"", 1], [""Glass Sheet"", 1], [""Gold Sheet"", 1], [""Hi-Potion Tank"", 1], [""Kilo Pump"", 1]]","[null, null, null]"
-Amateur,61,[],Tension Spring II,Earth,Clockmaking,"[[""Darksteel Ingot"", 1], [""Golden Gear"", 1], [""Mythril Coil"", 2], [""Slime Oil"", 1]]","[null, null, null]"
-Amateur,61,[],Mythril Cuisses,Fire,,"[[""Mythril Sheet"", 2], [""Ram Leather"", 1]]","[[""Mythril Cuisses +1"", 1], null, null]"
-Amateur,61,[],Platinum Ingot,Fire,,"[[""Platinum Beastcoin"", 4]]","[null, null, null]"
-Amateur,62,[],Hydro Chopper,Fire,,"[[""Animal Glue"", 1], [""Heavy Darksteel Axe"", 1], [""Mythril Sheet"", 1]]","[[""Hydro Chopper +1"", 1], null, null]"
-Amateur,62,[],Mythril Sallet,Fire,,"[[""Copper Ingot"", 1], [""Darksteel Sheet"", 1], [""Mythril Sheet"", 1], [""Sheep Leather"", 1]]","[[""Mythril Sallet +1"", 1], null, null]"
-Amateur,62,[],Platinum Grip,Fire,Chainwork,"[[""Mandrel"", 1], [""Platinum Ingot"", 2]]","[[""Platinum Grip +1"", 1], null, null]"
-Amateur,62,[],Shock Absorber III,Fire,Clockmaking,"[[""Carbon Fiber"", 1], [""Dark Adaman Sheet"", 1], [""Imperial Cermet"", 1], [""Djinn Ash"", 1], [""Titanium Sheet"", 1]]","[null, null, null]"
-Amateur,62,[],Scope IV,Fire,Clockmaking,"[[""Glass Fiber"", 1], [""Artificial Lens"", 2], [""Aht Urhgan Brass Sheet"", 1], [""Orichalcum Gearbox"", 1]]","[null, null, null]"
-Amateur,63,[],Platinum Ingot,Fire,,"[[""Platinum Ore"", 4]]","[null, null, null]"
-Amateur,63,[],Vivio Platinum Ingot,Fire,Gold Purification,"[[""Platinum Ore"", 4], [""Light Anima"", 1], [""Water Anima"", 1], [""Wind Anima"", 1]]","[null, null, null]"
-Amateur,63,"[[""Smithing"", 45]]",Oberon's Sainti,Fire,,"[[""Steel Ingot"", 1], [""Darksteel Ingot"", 1], [""Ebony Lumber"", 1], [""Platinum Ingot"", 1], [""Mercury"", 1], [""Oberon's Gold Ingot"", 1]]","[null, null, null]"
-Amateur,63,[],Oberon's Knuckles,Fire,,"[[""Darksteel Ingot"", 1], [""Mahogany Lumber"", 1], [""Gargouille Eye"", 2], [""Oberon's Gold Ingot"", 1]]","[null, null, null]"
-Amateur,63,"[[""Alchemy"", 57], [""Leathercraft"", 40]]",Hosodachi,Fire,,"[[""Ash Lumber"", 1], [""Iron Ingot"", 2], [""Cermet Chunk"", 1], [""Raptor Skin"", 1], [""Silver Ingot"", 1], [""Silver Thread"", 1], [""Tama-Hagane"", 1]]","[[""Hosodachi +1"", 1], null, null]"
-Amateur,63,[],Clear Topaz,Wind,,"[[""Gelid Aggregate"", 1]]","[[""Goshenite"", 1], [""Zircon"", 1], [""Clarite"", 1]]"
-Amateur,64,[],Mythril Leggings,Fire,,"[[""Darksteel Sheet"", 1], [""Mythril Sheet"", 2], [""Ram Leather"", 2]]","[[""Mythril Leggings +1"", 1], null, null]"
-Amateur,64,[],Platinum Ingot,Fire,,"[[""Platinum Nugget"", 6], [""Platinum Ore"", 1]]","[null, null, null]"
-Amateur,64,[],Platinum Sheet,Fire,,"[[""Platinum Ingot"", 1]]","[null, null, null]"
-Amateur,64,[],Platinum Sheet,Fire,Sheeting,"[[""Platinum Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,64,[],Platinum Gear,Fire,Chainwork,"[[""Platinum Ingot"", 1], [""Platinum Sheet"", 1]]","[[""Platinum Gear"", 2], [""Platinum Gear"", 3], [""Platinum Gear"", 4]]"
-Amateur,65,[],Aquamarine Earring,Earth,,"[[""Aquamarine"", 1], [""Gold Earring"", 1]]","[[""Serenity Earring"", 1], null, null]"
-Amateur,65,[],Green Earring,Earth,,"[[""Jadeite"", 1], [""Gold Earring"", 1]]","[[""Celerity Earring"", 1], null, null]"
-Amateur,65,[],Moon Earring,Earth,,"[[""Moonstone"", 1], [""Gold Earring"", 1]]","[[""Allure Earring"", 1], null, null]"
-Amateur,65,[],Night Earring,Earth,,"[[""Painite"", 1], [""Gold Earring"", 1]]","[[""Mana Earring"", 1], null, null]"
-Amateur,65,[],Purple Earring,Earth,,"[[""Fluorite"", 1], [""Gold Earring"", 1]]","[[""Grace Earring"", 1], null, null]"
-Amateur,65,[],Sun Earring,Earth,,"[[""Sunstone"", 1], [""Gold Earring"", 1]]","[[""Victory Earring"", 1], null, null]"
-Amateur,65,[],Yellow Earring,Earth,,"[[""Chrysoberyl"", 1], [""Gold Earring"", 1]]","[[""Vigor Earring"", 1], null, null]"
-Amateur,65,[],Zircon Earring,Earth,,"[[""Zircon"", 1], [""Gold Earring"", 1]]","[[""Genius Earring"", 1], null, null]"
-Amateur,65,[],Junior Musketeer's Chakram +1,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Junior Musketeer's Chakram"", 1]]","[[""Junior Musketeer's Chakram +2"", 1], null, null]"
-Amateur,65,[],Platinum Chain,Earth,,"[[""Platinum Ingot"", 2]]","[[""Platinum Chain"", 2], [""Platinum Chain"", 3], [""Platinum Chain"", 4]]"
-Amateur,65,[],Platinum Chain,Earth,Chainwork,"[[""Platinum Ingot"", 6], [""Mandrel"", 1]]","[[""Platinum Chain"", 6], [""Platinum Chain"", 9], [""Platinum Chain"", 12]]"
-Amateur,65,[],Moon Earring,Earth,,"[[""Goldsmithing Kit 65"", 1]]","[null, null, null]"
-Amateur,66,"[[""Alchemy"", 29]]",Mana Tank II,Fire,Clockmaking,"[[""Sieglinde Putty"", 1], [""Mercury"", 1], [""Glass Sheet"", 1], [""Hi-Ether Tank"", 1], [""Kilo Pump"", 1]]","[null, null, null]"
-Amateur,66,[],Mythril Gauntlets,Fire,,"[[""Darksteel Sheet"", 1], [""Mythril Sheet"", 1], [""Leather Gloves"", 2]]","[[""Mythril Gauntlets +1"", 1], null, null]"
-Amateur,66,"[[""Woodworking"", 32]]",Sainti,Fire,,"[[""Brass Ingot"", 1], [""Gold Ingot"", 2], [""Mercury"", 1], [""Rosewood Lumber"", 1], [""Steel Ingot"", 1]]","[[""Sainti +1"", 1], null, null]"
-Amateur,66,"[[""Alchemy"", 10]]",Girandola,Fire,,"[[""Beeswax"", 2], [""Gold Ingot"", 2]]","[null, null, null]"
-Amateur,66,[],Auto-Repair Kit III,Fire,Clockmaking,"[[""Platinum Sheet"", 1], [""Glass Fiber"", 1], [""Glass Sheet"", 1], [""Hi-Potion Tank"", 1], [""Mega Pump"", 1]]","[null, null, null]"
-Amateur,66,[],Tension Spring III,Earth,Clockmaking,"[[""Slime Oil"", 1], [""Darksteel Ingot"", 1], [""Mythril Coil"", 2], [""Platinum Gear"", 1]]","[null, null, null]"
-Amateur,67,[],Mythril Breastplate,Fire,,"[[""Darksteel Sheet"", 2], [""Mythril Sheet"", 2], [""Ram Leather"", 2]]","[[""Mythril Breastplate +1"", 1], null, null]"
-Amateur,67,[],Hydro Patas,Fire,,"[[""Animal Glue"", 1], [""Bone Patas"", 1], [""Mythril Sheet"", 1]]","[[""Hydro Patas +1"", 1], null, null]"
-Amateur,67,[],Tsurugitachi,Fire,Gold Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Hosodachi"", 1]]","[null, null, null]"
-Amateur,68,[],Platinum Earring,Wind,,"[[""Platinum Ingot"", 2]]","[[""Platinum Earring +1"", 1], null, null]"
-Amateur,68,"[[""Alchemy"", 29]]",Accelerator II,Fire,Clockmaking,"[[""Coeurl Whisker"", 1], [""Goblin Grease"", 1], [""Golden Gear"", 1], [""Imperial Cermet"", 1], [""Kilo Fan"", 1]]","[null, null, null]"
-Amateur,68,"[[""Smithing"", 28]]",Oberon's Rapier,Fire,,"[[""Steel Ingot"", 2], [""Mercury"", 1], [""Fluorite"", 1], [""Oberon's Gold Ingot"", 1]]","[null, null, null]"
-Amateur,69,[],Mailbreaker,Fire,,"[[""Bilbo"", 1], [""Mercury"", 1], [""Gold Ingot"", 1]]","[[""Mailbreaker +1"", 1], null, null]"
-Amateur,69,"[[""Alchemy"", 12]]",Mana Jammer II,Fire,Clockmaking,"[[""Artificial Lens"", 1], [""Blessed Mythril Sheet"", 1], [""Sieglinde Putty"", 1], [""Water Tank"", 1], [""Kilo Fan"", 1]]","[null, null, null]"
-Amateur,69,[],Moblumin Sheet,Fire,,"[[""Moblumin Ingot"", 1]]","[null, null, null]"
-Amateur,69,"[[""Bonecraft"", 50], [""Smithing"", 34]]",Shotel,Fire,,"[[""Silver Ingot"", 1], [""Bugard Tusk"", 1], [""Steel Ingot"", 1], [""Tiger Eye"", 1]]","[[""Shotel +1"", 1], null, null]"
-Amateur,69,[],Oberon's Gold Ingot,Fire,,"[[""Gold Ore"", 3], [""Fool's Gold Ore"", 1]]","[null, null, null]"
-Amateur,69,[],Orichalcum Gearbox,Fire,Clockmaking,"[[""Orichalcum Sheet"", 1], [""Orichalcum Ingot"", 1]]","[[""Orichalcum Gearbox"", 2], [""Orichalcum Gearbox"", 3], [""Orichalcum Gearbox"", 4]]"
-Amateur,70,[],Aquamarine Earring,Earth,,"[[""Aquamarine"", 1], [""Gold Earring +1"", 1]]","[[""Serenity Earring +1"", 1], null, null]"
-Amateur,70,[],Green Earring,Earth,,"[[""Jadeite"", 1], [""Gold Earring +1"", 1]]","[[""Celerity Earring +1"", 1], null, null]"
-Amateur,70,[],Moon Earring,Earth,,"[[""Moonstone"", 1], [""Gold Earring +1"", 1]]","[[""Allure Earring +1"", 1], null, null]"
-Amateur,70,[],Night Earring,Earth,,"[[""Painite"", 1], [""Gold Earring +1"", 1]]","[[""Mana Earring +1"", 1], null, null]"
-Amateur,70,[],Purple Earring,Earth,,"[[""Fluorite"", 1], [""Gold Earring +1"", 1]]","[[""Grace Earring +1"", 1], null, null]"
-Amateur,70,[],Sun Earring,Earth,,"[[""Sunstone"", 1], [""Gold Earring +1"", 1]]","[[""Victory Earring +1"", 1], null, null]"
-Amateur,70,[],Yellow Earring,Earth,,"[[""Chrysoberyl"", 1], [""Gold Earring +1"", 1]]","[[""Vigor Earring +1"", 1], null, null]"
-Amateur,70,[],Zircon Earring,Earth,,"[[""Zircon"", 1], [""Gold Earring +1"", 1]]","[[""Genius Earring +1"", 1], null, null]"
-Amateur,70,[],Gold Bangles,Fire,,"[[""Gold Ingot"", 3]]","[[""Gold Bangles +1"", 1], null, null]"
-Amateur,70,[],Platinum Ring,Fire,,"[[""Platinum Ingot"", 2]]","[[""Platinum Ring +1"", 1], null, null]"
-Amateur,70,[],Platinum Arrowheads,Wind,,"[[""Copper Ingot"", 1], [""Platinum Ingot"", 1]]","[[""Platinum Arrowheads"", 8], [""Platinum Arrowheads"", 10], [""Platinum Arrowheads"", 12]]"
-Amateur,70,[],Oberon's Gold Sheet,Fire,,"[[""Oberon's Gold Ingot"", 1]]","[null, null, null]"
-Amateur,70,[],Heat Capacitor II,Fire,Clockmaking,"[[""Platinum Sheet"", 1], [""Fire Anima"", 1], [""Golden Coil"", 2], [""Orichalcum Gearbox"", 1]]","[null, null, null]"
-Amateur,70,[],Gold Bangles,Fire,,"[[""Goldsmithing Kit 70"", 1], [""Artisan (71-80)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,71,"[[""Alchemy"", 51]]",Gold Cuisses,Fire,,"[[""Cermet Chunk"", 2], [""Gold Ingot"", 1], [""Mercury"", 1], [""Ram Leather"", 1]]","[[""Gilt Cuisses"", 1], null, null]"
-Amateur,71,[],Noble's Crown,Fire,,"[[""Copper Ingot"", 1], [""Gold Ingot"", 1], [""Topaz"", 1]]","[[""Aristocrat's Crown"", 1], null, null]"
-Amateur,71,[],Krousis Ring,Earth,,"[[""Imperial Topaz"", 1], [""Platinum Ring"", 1]]","[[""Krousis Ring +1"", 1], null, null]"
-Amateur,71,[],Mana Tank III,Fire,Clockmaking,"[[""Mercury"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Hi-Ether Tank"", 1], [""Mega Pump"", 1]]","[null, null, null]"
-Amateur,71,[],Tension Spring IV,Earth,Clockmaking,"[[""Slime Oil"", 1], [""Darksteel Ingot"", 1], [""Mythril Coil"", 2], [""Orichalcum Gearbox"", 1]]","[null, null, null]"
-Amateur,71,[],Auto-Repair Kit IV,Fire,Clockmaking,"[[""Orichalcum Sheet"", 1], [""Glass Fiber"", 1], [""Glass Sheet"", 1], [""Hi-Potion Tank"", 1], [""Kilo Pump"", 1], [""Mega Pump"", 1]]","[null, null, null]"
-Amateur,72,[],Gold Armet,Fire,,"[[""Cermet Chunk"", 2], [""Copper Ingot"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Sheep Leather"", 1]]","[[""Gilt Armet"", 1], null, null]"
-Amateur,72,[],Translucent Rock,Wind,,"[[""Marble Nugget"", 1]]","[[""Translucent Rock"", 1], [""Translucent Rock"", 1], [""Marble"", 1]]"
-Amateur,72,[],Gold Sword,Fire,,"[[""Gold Ingot"", 2], [""Mercury"", 1], [""Saber"", 1]]","[[""Gold Sword +1"", 1], null, null]"
-Amateur,72,[],Reliquary,Earth,,"[[""Aht Urhgan Brass Ingot"", 1], [""Aht Urhgan Brass Sheet"", 2], [""Dogwood Lumber"", 2], [""Imperial Silk Cloth"", 1]]","[null, null, null]"
-Amateur,73,"[[""Smithing"", 53]]",Moonring Blade,Wind,,"[[""Gold Ingot"", 1], [""Iron Ingot"", 1], [""Mercury"", 1], [""Tama-Hagane"", 1]]","[[""Moonring Blade +1"", 1], null, null]"
-Amateur,73,"[[""Smithing"", 31], [""Alchemy"", 45]]",Shrimp Lantern,Fire,,"[[""Beeswax"", 1], [""Moblin Putty"", 1], [""Moblumin Sheet"", 1], [""Tin Ingot"", 1]]","[null, null, null]"
-Amateur,73,[],Accelerator III,Fire,Clockmaking,"[[""Coeurl Whisker"", 1], [""Goblin Grease"", 1], [""Imperial Cermet"", 1], [""Platinum Gear"", 1], [""Mega Fan"", 1]]","[null, null, null]"
-Amateur,74,"[[""Alchemy"", 54]]",Gold Sabatons,Fire,,"[[""Cermet Chunk"", 3], [""Gold Ingot"", 1], [""Mercury"", 1], [""Ram Leather"", 2]]","[[""Gilt Sabatons"", 1], null, null]"
-Amateur,74,"[[""Smithing"", 44]]",Hammermill,Fire,Clockmaking,"[[""Steel Ingot"", 1], [""Coeurl Whisker"", 1], [""Goblin Grease"", 1], [""Mythril Gear Machine"", 1], [""Warhammer"", 2], [""Wind Fan"", 1]]","[null, null, null]"
-Amateur,74,[],Mana Jammer III,Fire,Clockmaking,"[[""Blessed Mythril Sheet"", 1], [""Artificial Lens"", 1], [""Sieglinde Putty"", 1], [""Water Tank"", 1], [""Mega Pump"", 1]]","[null, null, null]"
-Amateur,75,[],Aquamarine Ring,Earth,,"[[""Aquamarine"", 1], [""Gold Ring"", 1]]","[[""Serenity Ring"", 1], null, null]"
-Amateur,75,[],Chrysoberyl Ring,Earth,,"[[""Chrysoberyl"", 1], [""Gold Ring"", 1]]","[[""Vigor Ring"", 1], null, null]"
-Amateur,75,[],Fluorite Ring,Earth,,"[[""Fluorite"", 1], [""Gold Ring"", 1]]","[[""Grace Ring"", 1], null, null]"
-Amateur,75,[],Jadeite Ring,Earth,,"[[""Jadeite"", 1], [""Gold Ring"", 1]]","[[""Celerity Ring"", 1], null, null]"
-Amateur,75,[],Moon Ring,Earth,,"[[""Moonstone"", 1], [""Gold Ring"", 1]]","[[""Allure Ring"", 1], null, null]"
-Amateur,75,[],Painite Ring,Earth,,"[[""Painite"", 1], [""Gold Ring"", 1]]","[[""Mystic Ring"", 1], null, null]"
-Amateur,75,[],Sun Ring,Earth,,"[[""Sunstone"", 1], [""Gold Ring"", 1]]","[[""Victory Ring"", 1], null, null]"
-Amateur,75,[],Zircon Ring,Earth,,"[[""Zircon"", 1], [""Gold Ring"", 1]]","[[""Genius Ring"", 1], null, null]"
-Amateur,75,[],Ashura,Fire,,"[[""Gold Ingot"", 1], [""Gold Thread"", 1], [""Uchigatana"", 1]]","[[""Ashura +1"", 1], null, null]"
-Amateur,75,[],Ashura,Fire,,"[[""Goldsmithing Kit 75"", 1]]","[null, null, null]"
-Amateur,76,[],Gold Patas,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Patas"", 1]]","[[""Gold Patas +1"", 1], null, null]"
-Amateur,76,[],Iron Musketeer's Cuisses +1,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Iron Musketeer's Cuisses"", 1]]","[[""Iron Musketeer's Cuisses +2"", 1], null, null]"
-Amateur,76,"[[""Leathercraft"", 48], [""Clothcraft"", 31]]",Sipahi Boots,Earth,,"[[""Karakul Leather"", 1], [""Marid Leather"", 2], [""Mythril Sheet"", 3], [""Wamoura Cloth"", 1]]","[[""Abtal Boots"", 1], null, null]"
-Amateur,76,[],Mana Tank IV,Fire,Clockmaking,"[[""Mercury"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Hi-Ether Tank"", 1], [""Kilo Pump"", 1], [""Mega Pump"", 1]]","[null, null, null]"
-Amateur,76,[],Tension Spring V,Earth,Clockmaking,"[[""Slime Oil"", 1], [""Darksteel Ingot"", 1], [""Golden Coil"", 2], [""Orichalcum Gearbox"", 1]]","[null, null, null]"
-Amateur,77,"[[""Alchemy"", 54]]",Gold Gauntlets,Fire,,"[[""Cermet Chunk"", 2], [""Gold Ingot"", 1], [""Leather Gloves"", 2], [""Mercury"", 1]]","[[""Gilt Gauntlets"", 1], null, null]"
-Amateur,77,[],Iron Musketeer's Armet +1,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Iron Musketeer's Armet"", 1]]","[[""Iron Musketeer's Armet +2"", 1], null, null]"
-Amateur,77,[],Torque,Fire,,"[[""Gold Ingot"", 4]]","[[""Torque +1"", 1], null, null]"
-Amateur,78,"[[""Alchemy"", 54]]",Gold Cuirass,Fire,,"[[""Cermet Chunk"", 4], [""Gold Ingot"", 1], [""Mercury"", 1], [""Ram Leather"", 2]]","[[""Gilt Cuirass"", 1], null, null]"
-Amateur,78,[],Iron Musketeer's Sabatons +1,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Iron Musketeer's Sabatons"", 1]]","[[""Iron Musketeer's Sabatons +2"", 1], null, null]"
-Amateur,78,[],Morion Earring,Earth,,"[[""Gold Earring"", 1], [""Morion Tathlum"", 1]]","[[""Morion Earring +1"", 1], null, null]"
-Amateur,78,[],Phantom Earring,Earth,,"[[""Gold Earring"", 1], [""Phantom Tathlum"", 1]]","[[""Phantom Earring +1"", 1], null, null]"
-Amateur,78,[],Fusion Bolt Heads,Wind,,"[[""Aluminum Ingot"", 1]]","[[""Fusion Bolt Heads"", 8], [""Fusion Bolt Heads"", 10], [""Fusion Bolt Heads"", 12]]"
-Amateur,78,[],Accelerator IV,Fire,Clockmaking,"[[""Coeurl Whisker"", 1], [""Goblin Grease"", 1], [""Imperial Cermet"", 1], [""Orichalcum Gearbox"", 1], [""Kilo Fan"", 1], [""Mega Fan"", 1]]","[null, null, null]"
-Amateur,79,"[[""Clothcraft"", 59]]",Amir Bed,Fire,,"[[""Aht Urhgan Brass Ingot"", 4], [""Bloodwood Lumber"", 1], [""Gold Brocade"", 1], [""Gold Thread"", 1], [""Karakul Cloth"", 1]]","[null, null, null]"
-Amateur,79,"[[""Smithing"", 51], [""Woodworking"", 31]]",Diamond Knuckles,Fire,,"[[""Darksteel Sheet"", 1], [""Diamond"", 2], [""Mahogany Lumber"", 1], [""Platinum Sheet"", 1]]","[[""Diamond Knuckles +1"", 1], null, null]"
-Amateur,79,[],Bastokan Tea Set,Fire,,"[[""Adaman Ingot"", 1], [""Mythril Ingot"", 1], [""Silver Ingot"", 1]]","[null, null, null]"
-Amateur,79,[],Mana Jammer IV,Fire,Clockmaking,"[[""Blessed Mythril Sheet"", 1], [""Artificial Lens"", 1], [""Sieglinde Putty"", 1], [""Water Tank"", 1], [""Kilo Pump"", 1], [""Mega Pump"", 1]]","[null, null, null]"
-Amateur,80,[],Gold Buckler,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Targe"", 1]]","[[""Gilt Buckler"", 1], null, null]"
-Amateur,80,[],Stoneskin Torque,Fire,,"[[""Indurated Gold Ingot"", 1], [""Torque"", 1]]","[null, null, null]"
-Amateur,80,[],Aquamarine Ring,Earth,,"[[""Aquamarine"", 1], [""Gold Ring +1"", 1]]","[[""Serenity Ring +1"", 1], null, null]"
-Amateur,80,[],Chrysoberyl Ring,Earth,,"[[""Chrysoberyl"", 1], [""Gold Ring +1"", 1]]","[[""Vigor Ring +1"", 1], null, null]"
-Amateur,80,[],Fluorite Ring,Earth,,"[[""Fluorite"", 1], [""Gold Ring +1"", 1]]","[[""Grace Ring +1"", 1], null, null]"
-Amateur,80,[],Jadeite Ring,Earth,,"[[""Jadeite"", 1], [""Gold Ring +1"", 1]]","[[""Celerity Ring +1"", 1], null, null]"
-Amateur,80,[],Moon Ring,Earth,,"[[""Moonstone"", 1], [""Gold Ring +1"", 1]]","[[""Allure Ring +1"", 1], null, null]"
-Amateur,80,[],Painite Ring,Earth,,"[[""Painite"", 1], [""Gold Ring +1"", 1]]","[[""Mystic Ring +1"", 1], null, null]"
-Amateur,80,[],Sun Ring,Earth,,"[[""Sunstone"", 1], [""Gold Ring +1"", 1]]","[[""Victory Ring +1"", 1], null, null]"
-Amateur,80,[],Zircon Ring,Earth,,"[[""Zircon"", 1], [""Gold Ring +1"", 1]]","[[""Genius Ring +1"", 1], null, null]"
-Amateur,80,[],Gold Buckler,Fire,,"[[""Goldsmithing Kit 80"", 1], [""Adept (81-90)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,81,"[[""Bonecraft"", 58]]",Jagdplaute,Fire,,"[[""Darksteel Sword"", 1], [""Emerald"", 1], [""Gold Ingot"", 1], [""Manticore Fang"", 1], [""Mercury"", 1], [""Platinum Ingot"", 1], [""Ruby"", 1], [""Topaz"", 1]]","[[""Jagdplaute +1"", 1], null, null]"
-Amateur,81,[],Lord's Cuisses,Fire,,"[[""Darksteel Cuisses"", 1], [""Gold Ingot"", 2], [""Mercury"", 1]]","[[""King's Cuisses"", 1], null, null]"
-Amateur,81,[],Phrygian Gold Ingot,Fire,,"[[""Phrygian Ore"", 4]]","[null, null, null]"
-Amateur,81,[],Sunstone,Wind,,"[[""Ifritite"", 1]]","[[""Ruby"", 1], [""Carnelian"", 1], [""Ifritear"", 1]]"
-Amateur,81,[],Aquamarine,Wind,,"[[""Leviatite"", 1]]","[[""Sapphire"", 1], [""Larimar"", 1], [""Leviatear"", 1]]"
-Amateur,81,[],Fluorite,Wind,,"[[""Ramuite"", 1]]","[[""Spinel"", 1], [""Fulmenite"", 1], [""Ramutear"", 1]]"
-Amateur,81,[],Jadeite,Wind,,"[[""Garudite"", 1]]","[[""Emerald"", 1], [""Aventurine"", 1], [""Garutear"", 1]]"
-Amateur,81,[],Chrysoberyl,Wind,,"[[""Titanite"", 1]]","[[""Topaz"", 1], [""Heliodor"", 1], [""Titatear"", 1]]"
-Amateur,81,[],Zircon,Wind,,"[[""Shivite"", 1]]","[[""Diamond"", 1], [""Clarite"", 1], [""Shivatear"", 1]]"
-Amateur,81,[],Moonstone,Wind,,"[[""Carbite"", 1]]","[[""Angelstone"", 1], [""Selenite"", 1], [""Carbutear"", 1]]"
-Amateur,81,[],Painite,Wind,,"[[""Fenrite"", 1]]","[[""Deathstone"", 1], [""Tenebrite"", 1], [""Fenritear"", 1]]"
-Amateur,82,[],Brass Jadagna,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Jadagna"", 1], [""Karakul Leather"", 1]]","[[""Brass Jadagna +1"", 1], null, null]"
-Amateur,82,[],Golden Spear,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Partisan"", 1]]","[[""Golden Spear +1"", 1], null, null]"
-Amateur,82,[],Iron Musketeer's Gauntlets +1,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Iron Musketeer's Gauntlets"", 1]]","[[""Iron Musketeer's Gauntlets +2"", 1], null, null]"
-Amateur,82,[],Platinum Mace,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Darksteel Mace"", 1], [""Platinum Ingot"", 1]]","[[""Platinum Mace +1"", 1], null, null]"
-Amateur,82,"[[""Alchemy"", 15]]",Candelabrum,Fire,,"[[""Beeswax"", 3], [""Brass Ingot"", 1], [""Gold Ingot"", 3]]","[null, null, null]"
-Amateur,82,[],Phrygian Gold Sheet,Fire,,"[[""Phrygian Gold Ingot"", 1]]","[null, null, null]"
-Amateur,82,[],Phrygian Gold Sheet,Fire,Sheeting,"[[""Phrygian Gold Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,83,[],Iron Musketeer's Cuirass +1,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Iron Musketeer's Cuirass"", 1]]","[[""Iron Musketeer's Cuirass +2"", 1], null, null]"
-Amateur,83,[],Lord's Armet,Fire,,"[[""Gold Ingot"", 2], [""Darksteel Armet"", 1], [""Mercury"", 1]]","[[""King's Armet"", 1], null, null]"
-Amateur,83,"[[""Smithing"", 28]]",Rapier,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Fluorite"", 1], [""Steel Ingot"", 2]]","[[""Rapier +1"", 1], null, null]"
-Amateur,84,[],Platinum Cutlass,Fire,,"[[""Cutlass"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Platinum Ingot"", 1]]","[[""Platinum Cutlass +1"", 1], null, null]"
-Amateur,84,"[[""Woodworking"", 41], [""Clothcraft"", 32]]",Shield Plaque,Fire,,"[[""Brass Ingot"", 1], [""Gold Ingot"", 1], [""Gold Sheet"", 1], [""Mythril Sheet"", 1], [""Rhodonite"", 1], [""Rosewood Lumber"", 1], [""Scarlet Linen"", 1], [""Turquoise"", 1]]","[null, null, null]"
-Amateur,85,[],Angel's Earring,Earth,,"[[""Angelstone"", 1], [""Platinum Earring"", 1]]","[[""Heavens Earring"", 1], null, null]"
-Amateur,85,[],Death Earring,Earth,,"[[""Deathstone"", 1], [""Platinum Earring"", 1]]","[[""Hades Earring"", 1], null, null]"
-Amateur,85,[],Diamond Earring,Earth,,"[[""Diamond"", 1], [""Platinum Earring"", 1]]","[[""Omniscient Earring"", 1], null, null]"
-Amateur,85,[],Emerald Earring,Earth,,"[[""Emerald"", 1], [""Platinum Earring"", 1]]","[[""Nimble Earring"", 1], null, null]"
-Amateur,85,[],Ruby Earring,Earth,,"[[""Ruby"", 1], [""Platinum Earring"", 1]]","[[""Triumph Earring"", 1], null, null]"
-Amateur,85,[],Sapphire Earring,Earth,,"[[""Sapphire"", 1], [""Platinum Earring"", 1]]","[[""Communion Earring"", 1], null, null]"
-Amateur,85,[],Spinel Earring,Earth,,"[[""Spinel"", 1], [""Platinum Earring"", 1]]","[[""Adroit Earring"", 1], null, null]"
-Amateur,85,[],Topaz Earring,Earth,,"[[""Topaz"", 1], [""Platinum Earring"", 1]]","[[""Robust Earring"", 1], null, null]"
-Amateur,85,"[[""Smithing"", 56]]",Epee,Fire,,"[[""Angelstone"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Mythril Ingot"", 1], [""Platinum Ingot"", 1], [""Steel Ingot"", 1]]","[[""Epee +1"", 1], null, null]"
-Amateur,85,[],Lord's Sabatons,Fire,,"[[""Darksteel Sabatons"", 1], [""Gold Ingot"", 1], [""Mercury"", 1]]","[[""King's Sabatons"", 1], null, null]"
-Amateur,85,[],Marble Plaque,Wind,,"[[""Amethyst"", 1], [""Black Ink"", 1], [""Bast Parchment"", 1], [""Marble Slab"", 1]]","[null, null, null]"
-Amateur,85,[],Platinum Bangles,Fire,,"[[""Platinum Ingot"", 4]]","[[""Platinum Bangles +1"", 1], null, null]"
-Amateur,85,[],Royal Knight Army Shield +1,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Royal Knight Army Shield"", 1]]","[[""Royal Knight Army Shield +2"", 1], null, null]"
-Amateur,85,[],Temple Knight Army Shield +1,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Temple Knight Army Shield"", 1]]","[[""Temple Knight Army Shield +2"", 1], null, null]"
-Amateur,85,[],Platinum Bangles,Fire,,"[[""Goldsmithing Kit 85"", 1]]","[null, null, null]"
-Amateur,86,"[[""Blacksmithing"", 45], [""Woodworking"", 42]]",Darksteel Sainti,Fire,,"[[""Darksteel Ingot"", 1], [""Ebony Lumber"", 1], [""Mercury"", 1], [""Platinum Ingot"", 2], [""Steel Ingot"", 1]]","[[""Darksteel Sainti +1"", 1], null, null]"
-Amateur,86,"[[""Clothcraft"", 55]]",Marble Bed,Wind,,"[[""Aquamarine"", 1], [""Gold Ingot"", 2], [""Marble"", 2], [""Rainbow Thread"", 1], [""Sarcenet Cloth"", 1], [""Silk Cloth"", 1]]","[null, null, null]"
-Amateur,86,[],Platinum Rod,Fire,,"[[""Gold Ingot"", 1], [""Platinum Ingot"", 1], [""Steel Ingot"", 1]]","[[""Platinum Rod +1"", 1], null, null]"
-Amateur,87,[],Dark Bead,Wind,,"[[""Dark Ore"", 1]]","[null, null, null]"
-Amateur,87,[],Light Bead,Wind,,"[[""Light Ore"", 1]]","[null, null, null]"
-Amateur,87,[],Fire Bead,Wind,,"[[""Fire Ore"", 1]]","[null, null, null]"
-Amateur,87,[],Water Bead,Wind,,"[[""Water Ore"", 1]]","[null, null, null]"
-Amateur,87,[],Lightning Bead,Wind,,"[[""Lightning Ore"", 1]]","[null, null, null]"
-Amateur,87,[],Earth Bead,Wind,,"[[""Earth Ore"", 1]]","[null, null, null]"
-Amateur,87,[],Wind Bead,Wind,,"[[""Wind Ore"", 1]]","[null, null, null]"
-Amateur,87,[],Ice Bead,Wind,,"[[""Ice Ore"", 1]]","[null, null, null]"
-Amateur,87,"[[""Woodworking"", 54], [""Smithing"", 46]]",Kazaridachi,Fire,,"[[""Ancient Lumber"", 1], [""Gold Ingot"", 1], [""Gold Thread"", 1], [""Iron Ingot"", 3], [""Tama-Hagane"", 1], [""Wyvern Skin"", 1]]","[[""Kazaridachi +1"", 1], null, null]"
-Amateur,88,[],Colichemarde,Fire,,"[[""Deathstone"", 1], [""Gold Ingot"", 1], [""Mailbreaker"", 1]]","[[""Colichemarde +1"", 1], null, null]"
-Amateur,88,[],Lord's Gauntlets,Fire,,"[[""Darksteel Gauntlets"", 1], [""Gold Ingot"", 2], [""Mercury"", 1]]","[[""King's Gauntlets"", 1], null, null]"
-Amateur,88,[],Musketeer's Sword +1,Fire,,"[[""Musketeer's Sword"", 1], [""Gold Ingot"", 1], [""Mercury"", 1]]","[[""Musketeer's Sword +2"", 1], null, null]"
-Amateur,88,[],Pigeon Earring,Earth,,"[[""Pigeon's Blood Ruby"", 1], [""Platinum Earring"", 1]]","[[""Pigeon Earring +1"", 1], null, null]"
-Amateur,88,[],Aqueous Orichalcum Ingot,Fire,Gold Ensorcellment,"[[""Dark Anima"", 1], [""Lightning Anima"", 1], [""Water Anima"", 1], [""Orichalcum Ore"", 3], [""Platinum Ore"", 1]]","[null, null, null]"
-Amateur,89,[],Lord's Cuirass,Fire,,"[[""Darksteel Cuirass"", 1], [""Gold Ingot"", 2], [""Gold Sheet"", 3], [""Mercury"", 1], [""Platinum Ingot"", 1]]","[[""King's Cuirass"", 1], null, null]"
-Amateur,89,[],Frigid Orichalcum Ingot,Fire,Gold Ensorcellment,"[[""Dark Anima"", 1], [""Ice Anima"", 2], [""Orichalcum Ore"", 3], [""Platinum Ore"", 1]]","[null, null, null]"
-Amateur,89,[],Spirit Orichalcum Ingot,Fire,Gold Ensorcellment,"[[""Dark Anima"", 1], [""Earth Anima"", 2], [""Orichalcum Ore"", 3], [""Platinum Ore"", 1]]","[null, null, null]"
-Amateur,89,[],Orichalcum Ingot,Fire,,"[[""Orichalcum Ore"", 3], [""Platinum Ore"", 1]]","[null, null, null]"
-Amateur,89,"[[""Smithing"", 45], [""Leathercraft"", 38]]",Barone Gambieras,Fire,,"[[""Buffalo Leather"", 2], [""Gold Ingot"", 1], [""Mercury"", 1], [""Orichalcum Sheet"", 2], [""Platinum Sheet"", 1]]","[[""Conte Gambieras"", 1], null, null]"
-Amateur,90,[],Angel's Earring,Earth,,"[[""Angelstone"", 1], [""Platinum Earring +1"", 1]]","[[""Heavens Earring +1"", 1], null, null]"
-Amateur,90,[],Death Earring,Earth,,"[[""Deathstone"", 1], [""Platinum Earring +1"", 1]]","[[""Hades Earring +1"", 1], null, null]"
-Amateur,90,[],Diamond Earring,Earth,,"[[""Diamond"", 1], [""Platinum Earring +1"", 1]]","[[""Omniscient Earring +1"", 1], null, null]"
-Amateur,90,[],Emerald Earring,Earth,,"[[""Emerald"", 1], [""Platinum Earring +1"", 1]]","[[""Nimble Earring +1"", 1], null, null]"
-Amateur,90,[],Ruby Earring,Earth,,"[[""Ruby"", 1], [""Platinum Earring +1"", 1]]","[[""Triumph Earring +1"", 1], null, null]"
-Amateur,90,[],Sapphire Earring,Earth,,"[[""Sapphire"", 1], [""Platinum Earring +1"", 1]]","[[""Communion Earring +1"", 1], null, null]"
-Amateur,90,[],Spinel Earring,Earth,,"[[""Spinel"", 1], [""Platinum Earring +1"", 1]]","[[""Adroit Earring +1"", 1], null, null]"
-Amateur,90,[],Topaz Earring,Earth,,"[[""Topaz"", 1], [""Platinum Earring +1"", 1]]","[[""Robust Earring +1"", 1], null, null]"
-Amateur,90,[],Diamond Shield,Earth,,"[[""Diamond"", 4], [""Kite Shield"", 1], [""Platinum Sheet"", 2]]","[[""Diamond Shield +1"", 1], null, null]"
-Amateur,90,[],Jeweled Collar,Earth,,"[[""Diamond"", 1], [""Emerald"", 1], [""Ruby"", 1], [""Sapphire"", 1], [""Spinel"", 1], [""Topaz"", 1], [""Torque"", 1], [""Gold Sheet"", 1]]","[[""Jeweled Collar +1"", 1], null, null]"
-Amateur,90,[],Messhikimaru,Fire,,"[[""Bewitched Gold"", 1], [""Kazaridachi"", 1]]","[null, null, null]"
-Amateur,90,[],Orichalcum Sheet,Fire,,"[[""Orichalcum Ingot"", 1]]","[null, null, null]"
-Amateur,90,[],Orichalcum Sheet,Fire,Sheeting,"[[""Orichalcum Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,90,[],Star Earring,Earth,,"[[""Star Sapphire"", 1], [""Orichalcum Earring"", 1]]","[[""Celestial Earring"", 1], null, null]"
-Amateur,90,[],Crimson Earring,Earth,,"[[""Pigeon's Blood Ruby"", 1], [""Orichalcum Earring"", 1]]","[[""Harmonius Earring"", 1], null, null]"
-Amateur,90,[],Wing Sword,Fire,,"[[""Gold Ingot"", 1], [""Jagdplaute"", 1], [""Mythril Ingot"", 1], [""Platinum Ingot"", 1], [""Ruby"", 1]]","[[""Wing Sword +1"", 1], null, null]"
-Amateur,90,[],Jeweled Collar,Earth,,"[[""Goldsmithing Kit 90"", 1], [""Veteran (91-100)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,91,"[[""Smithing"", 41]]",Barone Zucchetto,Fire,,"[[""Copper Ingot"", 1], [""Darksteel Sheet"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Orichalcum Sheet"", 1], [""Sapphire"", 1], [""Sheep Leather"", 1]]","[[""Conte Zucchetto"", 1], null, null]"
-Amateur,91,[],Cursed Crown,Fire,,"[[""Copper Ingot"", 1], [""Gold Ingot"", 1], [""Siren's Hair"", 1]]","[[""Cursed Crown -1"", 1], null, null]"
-Amateur,91,[],Orichalcum Chain,Earth,,"[[""Orichalcum Ingot"", 2]]","[[""Orichalcum Chain"", 4], null, null]"
-Amateur,91,[],Orichalcum Chain,Earth,Chainwork,"[[""Orichalcum Ingot"", 6]]","[[""Orichalcum Chain"", 12], null, null]"
-Amateur,91,[],Orichalcum Earring,Wind,,"[[""Orichalcum Ingot"", 2]]","[[""Triton Earring"", 1], null, null]"
-Amateur,91,[],Bewitched Schuhs,Fire,,"[[""Cursed Schuhs -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Schuhs"", 1], null, null]"
-Amateur,91,[],Vexed Gambieras,Earth,,"[[""Hexed Gambieras -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Gambieras"", 1], null, null]"
-Amateur,92,[],Muscle Belt,Fire,,"[[""Brass Ingot"", 1], [""Gold Ingot"", 1], [""Manticore Leather"", 1]]","[[""Muscle Belt +1"", 1], null, null]"
-Amateur,92,"[[""Smithing"", 41]]",Orichalcum Dagger,Fire,,"[[""Darksteel Ingot"", 1], [""Orichalcum Ingot"", 1], [""Ruby"", 1]]","[[""Triton's Dagger"", 1], null, null]"
-Amateur,92,[],Regen Cuirass,Fire,,"[[""Lord's Cuirass"", 1], [""Vivio Platinum"", 1]]","[null, null, null]"
-Amateur,92,[],Ponderous Lance,Fire,,"[[""Orichalcum Lance"", 1], [""Spirit Orichalcum"", 1]]","[null, null, null]"
-Amateur,92,[],Phrygian Earring,Wind,,"[[""Phrygian Gold Ingot"", 2]]","[[""Phrygian Earring +1"", 1], null, null]"
-Amateur,92,[],Bewitched Handschuhs,Fire,,"[[""Cursed Handschuhs -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Handschuhs"", 1], null, null]"
-Amateur,92,[],Vexed Gauntlets,Earth,,"[[""Hexed Gauntlets -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Gauntlets"", 1], null, null]"
-Amateur,93,"[[""Alchemy"", 41]]",Cursed Diechlings,Fire,,"[[""Cermet Chunk"", 1], [""Darksteel Cuisses"", 1], [""Platinum Ingot"", 1], [""Platinum Sheet"", 1]]","[[""Cursed Diechlings -1"", 1], null, null]"
-Amateur,93,"[[""Leathercraft"", 41], [""Woodworking"", 11]]",Hirenjaku,Fire,,"[[""Copper Ingot"", 1], [""Elm Lumber"", 1], [""Manta Leather"", 1], [""Orichalcum Ingot"", 1], [""Ruby"", 1], [""Silk Thread"", 1], [""Tama-Hagane"", 1]]","[[""Hirenjaku +1"", 1], null, null]"
-Amateur,93,[],Orichalcum Ring,Fire,,"[[""Orichalcum Ingot"", 2]]","[[""Triton Ring"", 1], null, null]"
-Amateur,93,"[[""Woodworking"", 52]]",Walahra Burner,Fire,,"[[""Ancient Lumber"", 1], [""Gold Ingot"", 1], [""Gold Sheet"", 2], [""Orichalcum Sheet"", 1]]","[null, null, null]"
-Amateur,93,[],Rhodium Ingot,Fire,,"[[""Rhodium Ore"", 4]]","[null, null, null]"
-Amateur,93,[],Bewitched Diechlings,Fire,,"[[""Cursed Diechlings -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Diechlings"", 1], null, null]"
-Amateur,94,"[[""Alchemy"", 41]]",Cursed Schuhs,Fire,,"[[""Cermet Chunk"", 2], [""Darksteel Sabatons"", 1], [""Platinum Ingot"", 2]]","[[""Cursed Schuhs -1"", 1], null, null]"
-Amateur,94,"[[""Smithing"", 51]]",Orichalcum Scythe,Fire,,"[[""Darksteel Ingot"", 2], [""Grass Cloth"", 1], [""Orichalcum Ingot"", 1], [""Ruby"", 1], [""Yew Lumber"", 1]]","[[""Triton's Scythe"", 1], null, null]"
-Amateur,94,"[[""Clothcraft"", 45]]",Buckler Plaque,Fire,,"[[""Fluorite"", 2], [""Mahogany Lumber"", 1], [""Mythril Ingot"", 1], [""Platinum Ingot"", 1], [""Platinum Sheet"", 1], [""Rainbow Velvet"", 1], [""Silver Sheet"", 1]]","[null, null, null]"
-Amateur,94,"[[""Smithing"", 60]]",Shirogatana,Fire,,"[[""Ancient Lumber"", 1], [""Iron Ingot"", 2], [""Manta Leather"", 1], [""Scintillant Ingot"", 1], [""Silver Ingot"", 1], [""Tama-Hagane"", 1], [""Wamoura Silk"", 1]]","[[""Shirogatana +1"", 1], null, null]"
-Amateur,94,"[[""Leathercraft"", 46]]",Brise-os,Fire,,"[[""Jadagna"", 1], [""Karakul Leather"", 1], [""Sahagin Gold"", 1]]","[[""Brise-os +1"", 1], null, null]"
-Amateur,94,[],Phrygian Ring,Fire,,"[[""Phrygian Gold Ingot"", 2]]","[[""Phrygian Ring +1"", 1], null, null]"
-Amateur,94,[],Bewitched Crown,Fire,,"[[""Cursed Crown -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Crown"", 1], null, null]"
-Amateur,94,[],Bewitched Schaller,Fire,,"[[""Cursed Schaller -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Schaller"", 1], null, null]"
-Amateur,94,[],Vexed Coronet,Fire,,"[[""Hexed Coronet -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Coronet"", 1], null, null]"
-Amateur,94,[],Phrygian Ring,Fire,,"[[""Goldsmithing Kit 94"", 1]]","[null, null, null]"
-Amateur,95,[],Angel's Ring,Earth,,"[[""Angelstone"", 1], [""Platinum Ring"", 1]]","[[""Heavens Ring"", 1], null, null]"
-Amateur,95,[],Death Ring,Earth,,"[[""Deathstone"", 1], [""Platinum Ring"", 1]]","[[""Hades Ring"", 1], null, null]"
-Amateur,95,[],Diamond Ring,Earth,,"[[""Diamond"", 1], [""Platinum Ring"", 1]]","[[""Omniscient Ring"", 1], null, null]"
-Amateur,95,[],Emerald Ring,Earth,,"[[""Emerald"", 1], [""Platinum Ring"", 1]]","[[""Nimble Ring"", 1], null, null]"
-Amateur,95,[],Ruby Ring,Earth,,"[[""Ruby"", 1], [""Platinum Ring"", 1]]","[[""Triumph Ring"", 1], null, null]"
-Amateur,95,[],Sapphire Ring,Earth,,"[[""Sapphire"", 1], [""Platinum Ring"", 1]]","[[""Communion Ring"", 1], null, null]"
-Amateur,95,[],Spinel Ring,Earth,,"[[""Spinel"", 1], [""Platinum Ring"", 1]]","[[""Adroit Ring"", 1], null, null]"
-Amateur,95,[],Topaz Ring,Earth,,"[[""Topaz"", 1], [""Platinum Ring"", 1]]","[[""Robust Ring"", 1], null, null]"
-Amateur,95,"[[""Clothcraft"", 60]]",Sha'ir Manteel,Earth,,"[[""Cashmere Cloth"", 1], [""Gold Sheet"", 1], [""Gold Thread"", 2], [""Ruby"", 1], [""Sapphire"", 1], [""Velvet Cloth"", 2]]","[[""Sheikh Manteel"", 1], null, null]"
-Amateur,95,[],Tojaku,Fire,,"[[""Hirenjaku"", 1], [""Spirit Orichalcum"", 1]]","[null, null, null]"
-Amateur,95,[],Snowsteel Sheet,Fire,,"[[""Snowsteel"", 1]]","[null, null, null]"
-Amateur,95,[],Snowsteel Sheet,Fire,Sheeting,"[[""Snowsteel"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,95,[],Bewitched Cuirass,Fire,,"[[""Cursed Cuirass -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Cuirass"", 1], null, null]"
-Amateur,95,[],Vexed Haubert,Earth,,"[[""Hexed Haubert -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Haubert"", 1], null, null]"
-Amateur,96,[],Cursed Handschuhs,Fire,,"[[""Cermet Chunk"", 1], [""Darksteel Gauntlets"", 1], [""Platinum Ingot"", 2]]","[[""Cursed Handschuhs -1"", 1], null, null]"
-Amateur,96,"[[""Woodworking"", 59], [""Smithing"", 42]]",Millionaire Desk,Earth,,"[[""Ancient Lumber"", 1], [""Darksteel Sheet"", 1], [""Gold Sheet"", 2], [""Granite"", 3], [""Platinum Sheet"", 1]]","[null, null, null]"
-Amateur,96,[],Poseidon's Ring,Fire,,"[[""Aqueous Orichalcum Ingot"", 1], [""Orichalcum Ring"", 1]]","[null, null, null]"
-Amateur,96,[],Rhodium Sheet,Fire,,"[[""Rhodium Ingot"", 1]]","[null, null, null]"
-Amateur,96,[],Rhodium Sheet,Fire,Sheeting,"[[""Rhodium Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,96,[],Akua Sainti,Fire,,"[[""Steel Ingot"", 1], [""Darksteel Ingot"", 1], [""Mercury"", 1], [""Rhodium Ingot"", 2], [""Urunday Lumber"", 1]]","[[""Akua Sainti +1"", 1], null, null]"
-Amateur,96,[],Rhodium Ring,Fire,,"[[""Rhodium Ingot"", 2]]","[[""Rhodium Ring +1"", 1], null, null]"
-Amateur,97,[],Blizzard Scythe,Fire,,"[[""Frigid Orichalcum"", 1], [""Orichalcum Scythe"", 1]]","[null, null, null]"
-Amateur,97,"[[""Smithing"", 51]]",Cursed Schaller,Fire,,"[[""Cermet Chunk"", 1], [""Copper Ingot"", 1], [""Darksteel Sheet"", 1], [""Gold Ingot"", 1], [""Platinum Chain"", 1], [""Platinum Sheet"", 1], [""Sheep Leather"", 1]]","[[""Cursed Schaller -1"", 1], null, null]"
-Amateur,97,"[[""Smithing"", 58]]",Koenig Shield,Earth,,"[[""Adaman Sheet"", 1], [""General's Shield"", 1], [""Gold Ingot"", 1], [""Gold Sheet"", 1]]","[[""Kaiser Shield"", 1], null, null]"
-Amateur,97,"[[""Smithing"", 41]]",Thurible,Fire,,"[[""Aht Urhgan Brass Sheet"", 3], [""Scintillant Ingot"", 1], [""Troll Bronze Ingot"", 1]]","[null, null, null]"
-Amateur,98,"[[""Alchemy"", 59]]",Cursed Cuirass,Fire,,"[[""Cermet Chunk"", 3], [""Darksteel Cuirass"", 1], [""Orichalcum Ingot"", 1], [""Platinum Chain"", 1], [""Platinum Ingot"", 1], [""Platinum Sheet"", 1]]","[[""Cursed Cuirass -1"", 1], null, null]"
-Amateur,98,[],Dark Lamp,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Dark Ore"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
-Amateur,98,[],Earth Lamp,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Earth Ore"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
-Amateur,98,[],Fire Lamp,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Fire Ore"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
-Amateur,98,[],Ice Lamp,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Ice Ore"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
-Amateur,98,[],Light Lamp,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Light Ore"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
-Amateur,98,[],Lightning Lamp,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Lightning Ore"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
-Amateur,98,[],Water Lamp,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Water Ore"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
-Amateur,98,[],Wind Lamp,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Wind Ore"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
-Amateur,98,[],Scintillant Ingot,Fire,,"[[""Orichalcum Ore"", 1], [""Luminium Ore"", 3]]","[null, null, null]"
-Amateur,98,[],Palladian Brass Ingot,Fire,,"[[""Palladian Brass Ore"", 4]]","[null, null, null]"
-Amateur,99,[],Angel's Ring,Earth,,"[[""Angelstone"", 1], [""Platinum Ring +1"", 1]]","[[""Heavens Ring +1"", 1], null, null]"
-Amateur,99,[],Death Ring,Earth,,"[[""Deathstone"", 1], [""Platinum Ring +1"", 1]]","[[""Hades Ring +1"", 1], null, null]"
-Amateur,99,[],Diamond Ring,Earth,,"[[""Diamond"", 1], [""Platinum Ring +1"", 1]]","[[""Omniscient Ring +1"", 1], null, null]"
-Amateur,99,[],Emerald Ring,Earth,,"[[""Emerald"", 1], [""Platinum Ring +1"", 1]]","[[""Nimble Ring +1"", 1], null, null]"
-Amateur,99,[],Ruby Ring,Earth,,"[[""Ruby"", 1], [""Platinum Ring +1"", 1]]","[[""Triumph Ring +1"", 1], null, null]"
-Amateur,99,[],Sapphire Ring,Earth,,"[[""Sapphire"", 1], [""Platinum Ring +1"", 1]]","[[""Communion Ring +1"", 1], null, null]"
-Amateur,99,[],Spinel Ring,Earth,,"[[""Spinel"", 1], [""Platinum Ring +1"", 1]]","[[""Adroit Ring +1"", 1], null, null]"
-Amateur,99,[],Topaz Ring,Earth,,"[[""Topaz"", 1], [""Platinum Ring +1"", 1]]","[[""Robust Ring +1"", 1], null, null]"
-Amateur,99,[],Shining Ring,Fire,,"[[""Orichalcum Ingot"", 1], [""Scintillant Ingot"", 1]]","[[""Scintillant Ring"", 1], null, null]"
-Amateur,99,"[[""Smithing"", 53]]",Verdun,Fire,,"[[""Adaman Ingot"", 2], [""Gold Ingot"", 1], [""Mercury"", 1], [""Platinum Ingot"", 1], [""Spinel"", 1]]","[[""Verdun +1"", 1], null, null]"
-Amateur,100,[],Palladian Brass Sheet,Fire,,"[[""Palladian Brass Ingot"", 1]]","[null, null, null]"
-Amateur,100,[],Brisingamen,Fire,,"[[""Freya's Tear"", 1], [""Gold Ingot"", 3], [""Gold Chain"", 1], [""Jeweled Collar"", 1], [""Platinum Chain"", 2]]","[[""Brisingamen +1"", 1], null, null]"
-Amateur,100,[],Imperial Egg,Fire,,"[[""Angelstone"", 1], [""Deathstone"", 1], [""Bird Egg"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Orichalcum Ingot"", 1], [""Pigeon's Blood Ruby"", 1], [""Platinum Ingot"", 1]]","[[""Tsar's Egg"", 1], null, null]"
-Amateur,100,"[[""Smithing"", 30]]",Ugol Moufles,Fire,,"[[""Chain Mittens"", 1], [""Durium Sheet"", 1], [""Palladian Brass Sheet"", 1]]","[[""Mavros Moufles"", 1], null, null]"
-Amateur,100,[],Evader Earring,Fire,,"[[""Palladian Brass Ingot"", 2]]","[[""Evader Earring +1"", 1], null, null]"
-Amateur,100,[],Crimson Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Pigeon's Blood Ruby"", 1]]","[[""Harmonius Ring"", 1], null, null]"
-Amateur,100,[],Star Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Star Sapphire"", 1]]","[[""Celestial Ring"", 1], null, null]"
-Amateur,100,[],Snowsteel,Fire,,"[[""Snowsteel Ore"", 4], [""Expert (101-110)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,101,"[[""Smithing"", 43], [""Woodworking"", 41]]",Amood,Fire,,"[[""Darksteel Ingot"", 1], [""Ebony Lumber"", 1], [""Gold Ingot"", 1], [""Mythril Ingot"", 2], [""Scintillant Ingot"", 2], [""Turquoise"", 1]]","[[""Amood +1"", 1], null, null]"
-Amateur,102,[],Aqua Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Water Bead"", 1]]","[null, null, null]"
-Amateur,102,[],Breeze Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Wind Bead"", 1]]","[null, null, null]"
-Amateur,102,[],Dark Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Dark Bead"", 1]]","[null, null, null]"
-Amateur,102,[],Flame Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Fire Bead"", 1]]","[null, null, null]"
-Amateur,102,[],Light Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Light Bead"", 1]]","[null, null, null]"
-Amateur,102,[],Snow Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Ice Bead"", 1]]","[null, null, null]"
-Amateur,102,[],Soil Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Earth Bead"", 1]]","[null, null, null]"
-Amateur,102,[],Thunder Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Lightning Bead"", 1]]","[null, null, null]"
-Amateur,102,[],Palladian Brass Chain,Earth,,"[[""Palladian Brass Ingot"", 2]]","[[""Palladian Brass Chain"", 2], [""Palladian Brass Chain"", 3], [""Palladian Brass Chain"", 4]]"
-Amateur,102,"[[""Smithing"", 33]]",Ugol Sollerets,Fire,,"[[""Palladian Brass Sheet"", 1], [""Durium Sheet"", 1], [""Greaves"", 1]]","[[""Mavros Sollerets"", 1], null, null]"
-Amateur,105,[],Arasy Scythe,Fire,,"[[""Adaman Ingot"", 1], [""Ruby"", 1], [""Rhodium Ingot"", 1], [""Akaso Cloth"", 1]]","[[""Arasy Scythe +1"", 1], null, null]"
-Amateur,103,"[[""Leathercraft"", 40]]",Hexed Gambieras,Earth,,"[[""Ormolu Ingot"", 2], [""Aht Urhgan Brass Ingot"", 1], [""Black Sollerets"", 1], [""Pelt of Dawon"", 1]]","[[""Hexed Gambieras -1"", 1], null, null]"
-Amateur,103,"[[""Leathercraft"", 35], [""Clothcraft"", 22]]",Ugol Brayettes,Fire,,"[[""Durium Chain"", 1], [""Palladian Brass Chain"", 1], [""Linen Cloth"", 1], [""Light Ram Leather"", 2]]","[[""Mavros Brayettes"", 1], null, null]"
-Amateur,103,[],Ugol Salade,Fire,,"[[""Palladian Brass Sheet"", 1], [""Durium Ingot"", 1], [""Palladian Brass Chain"", 1], [""Vivio Sheep Leather"", 1], [""Scintillant Ingot"", 2]]","[[""Mavros Salade"", 1], null, null]"
-Amateur,104,"[[""Leathercraft"", 39]]",Silver Cassandra,Fire,,"[[""Darksteel Hexagun"", 1], [""Mercury"", 1], [""Orichalcum Ingot"", 2], [""Silver Ingot"", 1], [""Smilodon Leather"", 1]]","[[""Great Cassandra"", 1], null, null]"
-Amateur,105,"[[""Clothcraft"", 33]]",Ugol Haubert,Fire,,"[[""Palladian Brass Sheet"", 1], [""Durium Ingot"", 1], [""Durium Sheet"", 1], [""Palladian Brass Chain"", 3], [""Velvet Cloth"", 1], [""Silk Cloth"", 1]]","[[""Mavros Haubert"", 1], null, null]"
-Amateur,105,[],Hepatizon Ingot,Fire,,"[[""Mythril Ore"", 3], [""Hepatizon Ore"", 1]]","[null, null, null]"
-Amateur,105,[],Nepenthe Grip,Fire,Chainwork,"[[""Mandrel"", 1], [""Rhodium Ingot"", 1], [""Gabbrath Horn"", 1]]","[[""Nepenthe Grip +1"", 1], null, null]"
-Amateur,105,[],Gracile Grip,Fire,Chainwork,"[[""Mandrel"", 1], [""Rhodium Ingot"", 1], [""Waktza Crest"", 1]]","[[""Gracile Grip +1"", 1], null, null]"
-Amateur,105,[],Ruthenium Ingot,Fire,,"[[""Ruthenium Ore"", 4]]","[null, null, null]"
-Amateur,106,[],Hepatizon Baghnakhs,Earth,,"[[""Raaz Leather"", 1], [""Hepatizon Ingot"", 1], [""Maliyakaleya Orb"", 3]]","[[""Hepatizon Baghnakhs +1"", 1], null, null]"
-Amateur,106,[],Hepatizon Rapier,Fire,,"[[""Orichalcum Ingot"", 1], [""Mercury"", 1], [""Star Sapphire"", 1], [""Hepatizon Ingot"", 2]]","[[""Hepatizon Rapier +1"", 1], null, null]"
-Amateur,106,[],Hepatizon Sapara,Fire,,"[[""Orichalcum Ingot"", 1], [""Hepatizon Ingot"", 2]]","[[""Hepatizon Sapara +1"", 1], null, null]"
-Amateur,106,[],Hepatizon Axe,Fire,,"[[""Urunday Lumber"", 1], [""Hepatizon Ingot"", 3]]","[[""Hepatizon Axe +1"", 1], null, null]"
-Amateur,107,"[[""Leathercraft"", 40]]",Hexed Coronet,Fire,,"[[""Ormolu Ingot"", 1], [""Freya's Tear"", 1], [""Aht Urhgan Brass Ingot"", 1], [""Aht Urhgan Brass Sheet"", 1], [""Cerberus Leather"", 1]]","[[""Hexed Coronet -1"", 1], null, null]"
-Amateur,108,"[[""Leathercraft"", 39]]",Hexed Gauntlets,Earth,,"[[""Ormolu Ingot"", 1], [""Black Gadlings"", 1], [""Aht Urhgan Brass Ingot"", 1], [""Pelt of Dawon"", 1]]","[[""Hexed Gauntlets -1"", 1], null, null]"
-Amateur,110,"[[""Clothcraft"", 30]]",Hexed Haubert,Earth,,"[[""Ormolu Ingot"", 3], [""Freya's Tear"", 1], [""Aht Urhgan Brass Ingot"", 1], [""Bloodthread"", 1], [""Plastron"", 1]]","[[""Hexed Haubert -1"", 1], null, null]"
-Amateur,110,"[[""Clothcraft"", 55]]",Cleric's Torque,Light,,"[[""Waktza Crest"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Torque"", 1]]","[[""Cleric's Torque +1"", 1], [""Cleric's Torque +2"", 1], null]"
-Amateur,110,"[[""Clothcraft"", 55]]",Duelist's Torque,Light,,"[[""Waktza Crest"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Torque"", 1]]","[[""Duelist's Torque +1"", 1], [""Duelist's Torque +2"", 1], null]"
-Amateur,110,"[[""Clothcraft"", 55]]",Futhark Torque,Light,,"[[""Waktza Crest"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Torque"", 1], [""Authority (111-120)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Futhark Torque +1"", 1], [""Futhark Torque +2"", 1], null]"
-Amateur,111,"[[""Alchemy"", 70]]",Bewitched Schuhs,Fire,,"[[""Cursed Schuhs"", 1], [""Macuil Plating"", 1], [""Douma Weapon's Shard"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Schuhs"", 1], null, null]"
-Amateur,111,"[[""Leathercraft"", 70]]",Vexed Gambieras,Earth,,"[[""Hepatizon Ingot"", 1], [""Immanibugard's Hide"", 1], [""Eschite Ore"", 1], [""Hexed Gambieras"", 1]]","[[""Jinxed Gambieras"", 1], null, null]"
-Amateur,111,[],Melee Fists,Light,Goldsmith's aurum tome,"[[""Leathercraft - (Information Needed)"", 1], [""Hades' Claw"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Weapon"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Hesychast's Fists"", 1], [""Sagitta"", 1], null]"
-Amateur,111,[],Pantin Fists,Light,Goldsmith's aurum tome,"[[""Leathercraft - (Information Needed)"", 1], [""Hades' Claw"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Weapon"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Pitre Fists"", 1], [""Xiucoatl"", 1], null]"
-Amateur,111,[],Mirage Sword,Light,Goldsmith's aurum tome,"[[""Clothcraft - (Information Needed)"", 1], [""Plovid Flesh"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Sword"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Luhlaza Sword"", 1], [""Zomorrodnegar"", 1], null]"
-Amateur,111,[],Valor Sword,Light,Goldsmith's aurum tome,"[[""Clothcraft - (Information Needed)"", 1], [""Plovid Flesh"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Sword"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Caballarius Sword"", 1], [""Moralltach"", 1], null]"
-Amateur,111,[],Duelist's Sword,Light,Goldsmith's aurum tome,"[[""Clothcraft - (Information Needed)"", 1], [""Plovid Flesh"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Sword"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Vitiation Sword"", 1], [""Crocea Mors"", 1], null]"
-Amateur,112,"[[""Alchemy"", 70]]",Bewitched Handschuhs,Fire,,"[[""Cursed Handschuhs"", 1], [""Macuil Plating"", 1], [""Douma Weapon's Shard"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Handschuhs"", 1], null, null]"
-Amateur,112,"[[""Leathercraft"", 70]]",Vexed Gauntlets,Earth,,"[[""Hepatizon Ingot"", 1], [""Immanibugard's Hide"", 1], [""Eschite Ore"", 1], [""Hexed Gauntlets"", 1]]","[[""Jinxed Gauntlets"", 1], null, null]"
-Amateur,113,[],Sharur,Fire,,"[[""Ormolu Ingot"", 1], [""Mercury"", 1], [""Urunday Lumber"", 1], [""Bztavian Stinger"", 1]]","[[""Sharur +1"", 1], null, null]"
-Amateur,113,"[[""Alchemy"", 70]]",Bewitched Diechlings,Fire,,"[[""Cursed Diechlings"", 1], [""Macuil Plating"", 1], [""Douma Weapon's Shard"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Diechlings"", 1], null, null]"
-Amateur,114,"[[""Clothcraft"", 70]]",Bewitched Crown,Fire,,"[[""Cursed Crown"", 1], [""Hepatizon Ingot"", 1], [""Sif's Macrame"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Crown"", 1], null, null]"
-Amateur,114,"[[""Alchemy"", 70]]",Bewitched Schaller,Fire,,"[[""Cursed Schaller"", 1], [""Macuil Plating"", 1], [""Douma Weapon's Shard"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Schaller"", 1], null, null]"
-Amateur,114,"[[""Leathercraft"", 70]]",Vexed Coronet,Fire,,"[[""Hepatizon Ingot"", 1], [""Immanibugard's Hide"", 1], [""Eschite Ore"", 1], [""Hexed Coronet"", 1]]","[[""Jinxed Coronet"", 1], null, null]"
-Amateur,115,[],Ravenous Breastplate,Fire,,"[[""Ormolu Ingot"", 1], [""Gold Thread"", 1], [""Sealord Leather"", 1], [""Rhodium Ingot"", 1], [""Macuil Plating"", 2]]","[[""Ravenous Breastplate +1"", 1], null, null]"
-Amateur,115,[],Stikini Ring,Fire,,"[[""Koh-I-Noor"", 1], [""Dark Matter"", 2], [""Tartarian Chain"", 2]]","[[""Stikini Ring +1"", 1], null, null]"
-Amateur,115,"[[""Alchemy"", 70]]",Bewitched Cuirass,Fire,,"[[""Cursed Cuirass"", 1], [""Macuil Plating"", 1], [""Douma Weapon's Shard"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Cuirass"", 1], null, null]"
-Amateur,115,"[[""Leathercraft"", 70]]",Vexed Haubert,Earth,,"[[""Hepatizon Ingot"", 1], [""Immanibugard's Hide"", 1], [""Eschite Ore"", 1], [""Hexed Haubert"", 1]]","[[""Jinxed Haubert"", 1], null, null]"
-Amateur,115,[],Balder Earring,Fire,,"[[""Ruthenium Ingot"", 2], [""Wyrm Ash"", 1]]","[[""Balder Earring +1"", 1], null, null]"
-Amateur,115,[],Moonbeam Necklace,Earth,,"[[""Moonbow Stone"", 1], [""Moonlight Coral"", 1], [""Khoma Thread"", 1]]","[[""Moonlight Necklace"", 1], null, null]"
-Amateur,115,[],Enriching Sword,Fire,,"[[""Moonbow Steel"", 1], [""Niobium Ingot"", 1], [""Moonbow Stone"", 1], [""Enhancing Sword"", 1]]","[[""Enriching Sword +1"", 1], null, null]"
-Amateur,115,[],Turms Leggings,Fire,Goldsmith's argentum tome,"[[""Tiger Leather"", 1], [""Bztavian Wing"", 1], [""Macuil Horn"", 1], [""Ruthenium Ore"", 3]]","[[""Turms Leggings +1"", 1], null, null]"
-Amateur,115,[],Turms Mittens,Fire,Goldsmith's argentum tome,"[[""Tiger Leather"", 2], [""Bztavian Wing"", 1], [""Macuil Horn"", 1], [""Ruthenium Ore"", 3]]","[[""Turms Mittens +1"", 1], null, null]"
-Amateur,115,[],Turms Cap,Fire,Goldsmith's argentum tome,"[[""Tiger Leather"", 1], [""Cermet Chunk"", 1], [""Bztavian Wing"", 1], [""Macuil Horn"", 1], [""Ruthenium Ore"", 3]]","[[""Turms Cap +1"", 1], null, null]"
-Amateur,115,[],Turms Subligar,Fire,Goldsmith's argentum tome,"[[""Tiger Leather"", 1], [""Cermet Chunk"", 1], [""Bztavian Wing"", 1], [""Macuil Horn"", 1], [""Ruthenium Ore"", 1], [""Ruthenium Ingot"", 1]]","[[""Turms Subligar +1"", 1], null, null]"
-Amateur,115,[],Turms Harness,Fire,Goldsmith's argentum tome,"[[""Tiger Leather"", 1], [""Cermet Chunk"", 1], [""Bztavian Wing"", 1], [""Macuil Horn"", 2], [""Ruthenium Ore"", 1], [""Ruthenium Ingot"", 1]]","[[""Turms Harness +1"", 1], null, null]"
-Amateur,115,[],Raetic Baghnakhs,Fire,Goldsmith's argentum tome,"[[""Ruthenium Ingot"", 1], [""Rune Baghnakhs"", 1]]","[[""Raetic Baghnakhs +1"", 1], null, null]"
-Amateur,115,[],Raetic Blade,Fire,Goldsmith's argentum tome,"[[""Ruthenium Ingot"", 1], [""Rune Blade"", 1]]","[[""Raetic Blade +1"", 1], null, null]"
-Amateur,118,[],Mache Earring,Fire,,"[[""Shadow Gem"", 1], [""Hepatizon Ingot"", 1], [""Tartarian Soul"", 1]]","[[""Mache Earring +1"", 1], null, null]"
+,1,[],Zinc Oxide,Fire,,"[[""Zinc Ore"", 3]]","[null, null, null]"
+,2,[],Stone Arrowheads,Wind,,"[[""Flint Stone"", 2]]","[[""Stone Arrowheads"", 8], [""Stone Arrowheads"", 10], [""Stone Arrowheads"", 12]]"
+,3,[],Copper Ingot,Fire,,"[[""Copper Ore"", 4]]","[null, null, null]"
+,4,[],Copper Ingot,Fire,,"[[""Copper Nugget"", 6], [""Copper Ore"", 1]]","[null, null, null]"
+,5,[],Copper Ring,Fire,,"[[""Copper Ingot"", 2]]","[[""Copper Ring +1"", 1], null, null]"
+,5,[],Copper Ring,Fire,,"[[""Goldsmithing Kit 5"", 1]]","[null, null, null]"
+,6,[],Black Bolt Heads,Wind,,"[[""Obsidian"", 1]]","[[""Black Bolt Heads"", 8], [""Black Bolt Heads"", 10], [""Black Bolt Heads"", 12]]"
+,7,[],Copper Hairpin,Wind,,"[[""Copper Ingot"", 1]]","[[""Copper Hairpin +1"", 1], null, null]"
+,7,[],Sapara,Fire,,"[[""Silver Ingot"", 1], [""Brass Ingot"", 2]]","[[""Sapara +1"", 1], null, null]"
+,8,[],Aht Urhgan Brass Ingot,Fire,,"[[""Aht Urhgan Brass"", 4]]","[null, null, null]"
+,9,[],Brass Ingot,Fire,,"[[""Zinc Ore"", 1], [""Copper Ore"", 3]]","[null, null, null]"
+,9,[],Circlet,Fire,,"[[""Copper Ingot"", 1], [""Brass Ingot"", 1]]","[[""Circlet +1"", 1], null, null]"
+,10,[],Brass Cap,Fire,,"[[""Brass Ingot"", 1], [""Bronze Cap"", 1]]","[[""Brass Cap +1"", 1], null, null]"
+,10,[],Brass Ingot,Fire,,"[[""Brass Nugget"", 6], [""Zinc Ore"", 1]]","[null, null, null]"
+,10,[],Aht Urhgan Brass Sheet,Fire,,"[[""Aht Urhgan Brass Ingot"", 1]]","[null, null, null]"
+,10,[],Aht Urhgan Brass Sheet,Fire,Sheeting,"[[""Aht Urhgan Brass Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,10,[],Brass Ingot,Fire,,"[[""Goldsmithing Kit 10"", 1]]","[null, null, null]"
+,11,[],Brass Sheet,Fire,,"[[""Brass Ingot"", 1]]","[null, null, null]"
+,11,[],Brass Sheet,Fire,Sheeting,"[[""Brass Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,12,[],Brass Mittens,Earth,,"[[""Brass Ingot"", 1], [""Bronze Mittens"", 1]]","[[""Brass Mittens +1"", 1], null, null]"
+,12,[],Brass Axe,Fire,,"[[""Brass Ingot"", 1], [""Bronze Axe"", 1]]","[[""Brass Axe +1"", 1], null, null]"
+,13,[],Brass Scales,Wind,,"[[""Brass Sheet"", 1]]","[null, null, null]"
+,13,[],Brass Dagger,Fire,,"[[""Brass Ingot"", 1], [""Bronze Dagger"", 1]]","[[""Brass Dagger +1"", 1], null, null]"
+,14,[],Brass Leggings,Earth,,"[[""Brass Ingot"", 1], [""Bronze Leggings"", 1]]","[[""Brass Leggings +1"", 1], null, null]"
+,14,[],Brass Knuckles,Fire,,"[[""Brass Ingot"", 1], [""Bronze Knuckles"", 1]]","[[""Brass Knuckles +1"", 1], null, null]"
+,14,[],Obsidian Arrowheads,Wind,,"[[""Obsidian"", 2]]","[[""Obsidian Arrowheads"", 8], [""Obsidian Arrowheads"", 10], [""Obsidian Arrowheads"", 12]]"
+,15,[],Brass Ring,Fire,,"[[""Brass Ingot"", 2]]","[[""Brass Ring +1"", 1], null, null]"
+,15,[],Brass Zaghnal,Fire,,"[[""Brass Ingot"", 1], [""Bronze Zaghnal"", 1]]","[[""Brass Zaghnal +1"", 1], null, null]"
+,15,[],Bastokan Cap,Fire,,"[[""Brass Ingot"", 1], [""Legionnaire's Cap"", 1]]","[[""Republic Cap"", 1], null, null]"
+,15,[],Brass Zaghnal,Fire,,"[[""Goldsmithing Kit 15"", 1]]","[null, null, null]"
+,16,[],Brass Subligar,Fire,,"[[""Brass Ingot"", 1], [""Bronze Subligar"", 1]]","[[""Brass Subligar +1"", 1], null, null]"
+,16,[],Brass Flowerpot,Fire,,"[[""Brass Sheet"", 3]]","[null, null, null]"
+,16,[],Piercing Dagger,Fire,Gold Ensorcellment,"[[""Lambent Water Cell"", 1], [""Lambent Wind Cell"", 1], [""Brass Dagger"", 1]]","[null, null, null]"
+,16,[],Brass Grip,Fire,Chainwork,"[[""Brass Ingot"", 2], [""Mandrel"", 1]]","[[""Brass Grip +1"", 1], null, null]"
+,17,[],Brass Hairpin,Wind,,"[[""Brass Ingot"", 1]]","[[""Brass Hairpin +1"", 1], null, null]"
+,17,[],Brass Baghnakhs,Fire,,"[[""Brass Ingot"", 1], [""Cat Baghnakhs"", 1]]","[[""Brass Baghnakhs +1"", 1], null, null]"
+,17,[],Bastokan Mittens,Fire,,"[[""Brass Ingot"", 1], [""Legionnaire's Mittens"", 1]]","[[""Republic Mittens"", 1], null, null]"
+,18,[],Brass Harness,Earth,,"[[""Brass Ingot"", 1], [""Brass Sheet"", 1], [""Bronze Harness"", 1]]","[[""Brass Harness +1"", 1], null, null]"
+,18,[],Silver Ingot,Fire,,"[[""Silver Beastcoin"", 4]]","[null, null, null]"
+,18,[],Keen Zaghnal,Fire,Gold Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Earth Cell"", 1], [""Brass Zaghnal"", 1]]","[null, null, null]"
+,19,[],Brass Xiphos,Fire,,"[[""Brass Ingot"", 1], [""Xiphos"", 1]]","[[""Brass Xiphos +1"", 1], null, null]"
+,19,[],Brass Chain,Earth,,"[[""Brass Ingot"", 2]]","[[""Brass Chain"", 2], [""Brass Chain"", 3], [""Brass Chain"", 4]]"
+,19,[],Brass Chain,Earth,,"[[""Brass Ingot"", 6], [""Workshop Anvil"", 1]]","[[""Brass Chain"", 6], [""Brass Chain"", 9], [""Brass Chain"", 12]]"
+,19,[],Bastokan Knuckles,Fire,,"[[""Brass Ingot"", 1], [""Legionnaire's Knuckles"", 1]]","[[""Republic Knuckles"", 1], null, null]"
+,19,[],Bastokan Leggings,Fire,,"[[""Brass Ingot"", 1], [""Legionnaire's Leggings"", 1]]","[[""Republic Leggings"", 1], null, null]"
+,19,[],Brass Tank,Earth,,"[[""Brass Sheet"", 3], [""Animal Glue"", 1]]","[null, null, null]"
+,20,[],Silver Ingot,Fire,,"[[""Silver Ore"", 4]]","[null, null, null]"
+,20,[],Rogue's Silver Ingot,Fire,Gold Ensorcellment,"[[""Ice Anima"", 1], [""Lightning Anima"", 1], [""Dark Anima"", 1], [""Silver Ore"", 4]]","[null, null, null]"
+,20,[],Neutralizing Silver Ingot,Fire,Gold Ensorcellment,"[[""Fire Anima"", 1], [""Light Anima"", 1], [""Water Anima"", 1], [""Silver Ore"", 4]]","[null, null, null]"
+,20,[],Tourmaline,Wind,,"[[""Green Rock"", 1]]","[[""Peridot"", 1], [""Jadeite"", 1], [""Emerald"", 1]]"
+,20,[],Sardonyx,Wind,,"[[""Red Rock"", 1]]","[[""Garnet"", 1], [""Sunstone"", 1], [""Ruby"", 1]]"
+,20,[],Amethyst,Wind,,"[[""Purple Rock"", 1]]","[[""Ametrine"", 1], [""Fluorite"", 1], [""Spinel"", 1]]"
+,20,[],Amber,Wind,,"[[""Yellow Rock"", 1]]","[[""Sphene"", 1], [""Chrysoberyl"", 1], [""Topaz"", 1]]"
+,20,[],Lapis Lazuli,Wind,,"[[""Blue Rock"", 1]]","[[""Turquoise"", 1], [""Aquamarine"", 1], [""Sapphire"", 1]]"
+,20,[],Clear Topaz,Wind,,"[[""Translucent Rock"", 1]]","[[""Goshenite"", 1], [""Zircon"", 1], [""Diamond"", 1]]"
+,20,[],Onyx,Wind,,"[[""Black Rock"", 1]]","[[""Onyx"", 1], [""Painite"", 1], [""Deathstone"", 1]]"
+,20,[],Light Opal,Wind,,"[[""White Rock"", 1]]","[[""Light Opal"", 1], [""Moonstone"", 1], [""Angelstone"", 1]]"
+,20,[],Rhodonite,Wind,,"[[""Scarlet Stone"", 1]]","[null, null, null]"
+,20,[],Ardent Jadeite,Wind,Gold Ensorcellment,"[[""Dark Anima"", 1], [""Fire Anima"", 1], [""Water Anima"", 1], [""Jadeite"", 1]]","[null, null, null]"
+,20,[],Mighty Sardonyx,Wind,Gold Ensorcellment,"[[""Fire Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1], [""Sardonyx"", 1]]","[null, null, null]"
+,20,[],Vision Amethyst Stone,Wind,Gold Ensorcellment,"[[""Earth Anima"", 1], [""Lightning Anima"", 1], [""Dark Anima"", 1], [""Amethyst"", 1]]","[null, null, null]"
+,20,[],Bastokan Scythe,Fire,,"[[""Brass Ingot"", 1], [""Legionnaire's Scythe"", 1]]","[[""Republic Scythe"", 1], null, null]"
+,20,[],Silver Ingot,Fire,,"[[""Goldsmithing Kit 20"", 1]]","[null, null, null]"
+,20,[],Shower Stand,Fire,,"[[""Iron Ingot"", 2], [""Gold Ingot"", 1], [""Sieglinde Putty"", 1]]","[null, null, null]"
+,21,[],Bastokan Subligar,Earth,,"[[""Brass Sheet"", 1], [""Legionnaire's Subligar"", 1]]","[[""Republic Subligar"", 1], null, null]"
+,21,[],Poet's Circlet,Fire,,"[[""Copper Ingot"", 1], [""Mythril Ingot"", 1]]","[[""Sage's Circlet"", 1], null, null]"
+,21,"[[""Clothcraft"", 6]]",Sabiki Rig,Earth,,"[[""Copper Ingot"", 2], [""Cotton Thread"", 3]]","[[""Rogue Rig"", 1], null, null]"
+,21,[],Silver Ingot,Fire,,"[[""Silver Nugget"", 6], [""Silver Ore"", 1]]","[null, null, null]"
+,22,[],Clear Topaz,Wind,,"[[""Sparkling Stone"", 1]]","[[""Goshenite"", 1], [""Zircon"", 1], [""Koh-I-Noor"", 1]]"
+,22,[],Silver Earring,Wind,,"[[""Silver Ingot"", 2]]","[[""Silver Earring +1"", 1], null, null]"
+,22,[],Silver Sheet,Fire,,"[[""Silver Ingot"", 1]]","[null, null, null]"
+,22,[],Silver Sheet,Fire,Sheeting,"[[""Silver Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,23,[],Bastokan Harness,Earth,,"[[""Brass Sheet"", 1], [""Legionnaire's Harness"", 1]]","[[""Republic Harness"", 1], null, null]"
+,23,[],Brass Rod,Fire,,"[[""Brass Ingot"", 1], [""Bronze Rod"", 1]]","[[""Brass Rod +1"", 1], null, null]"
+,24,[],Bastokan Leggings,Earth,,"[[""Brass Sheet"", 1], [""Legionnaire's Leggings"", 1]]","[[""Republic Leggings"", 1], null, null]"
+,24,[],Brass Hammer,Fire,,"[[""Brass Ingot"", 1], [""Bronze Hammer"", 1]]","[[""Brass Hammer +1"", 1], null, null]"
+,24,[],San d'Orian Sword,Fire,,"[[""Brass Ingot"", 1], [""Royal Archer's Sword"", 1]]","[[""Kingdom Sword"", 1], null, null]"
+,25,[],Amber Earring,Earth,,"[[""Silver Earring"", 1], [""Amber"", 1]]","[[""Stamina Earring"", 1], null, null]"
+,25,[],Amethyst Earring,Earth,,"[[""Silver Earring"", 1], [""Amethyst"", 1]]","[[""Balance Earring"", 1], null, null]"
+,25,[],Clear Earring,Earth,,"[[""Silver Earring"", 1], [""Clear Topaz"", 1]]","[[""Knowledge Earring"", 1], null, null]"
+,25,[],Lapis Lazuli Earring,Earth,,"[[""Silver Earring"", 1], [""Lapis Lazuli"", 1]]","[[""Tranquility Earring"", 1], null, null]"
+,25,[],Onyx Earring,Earth,,"[[""Silver Earring"", 1], [""Onyx"", 1]]","[[""Energy Earring"", 1], null, null]"
+,25,[],Opal Earring,Earth,,"[[""Silver Earring"", 1], [""Light Opal"", 1]]","[[""Hope Earring"", 1], null, null]"
+,25,[],Sardonyx Earring,Earth,,"[[""Silver Earring"", 1], [""Sardonyx"", 1]]","[[""Courage Earring"", 1], null, null]"
+,25,[],Tourmaline Earring,Earth,,"[[""Silver Earring"", 1], [""Tourmaline"", 1]]","[[""Reflex Earring"", 1], null, null]"
+,25,[],Silver Belt,Earth,,"[[""Silver Ingot"", 1], [""Lizard Belt"", 1]]","[[""Silver Belt +1"", 1], null, null]"
+,25,[],Silver Belt,Earth,,"[[""Goldsmithing Kit 25"", 1]]","[null, null, null]"
+,27,[],Silver Arrowheads,Wind,,"[[""Copper Ingot"", 1], [""Silver Ingot"", 1]]","[[""Silver Arrowheads"", 8], [""Silver Arrowheads"", 10], [""Silver Arrowheads"", 12]]"
+,27,[],Silver Hairpin,Wind,,"[[""Silver Ingot"", 1]]","[[""Silver Hairpin +1"", 1], null, null]"
+,28,[],Bastokan Circlet,Fire,,"[[""Mythril Ingot"", 1], [""Legionnaire's Circlet"", 1]]","[[""Republic Circlet"", 1], null, null]"
+,28,"[[""Smithing"", 19], [""Woodworking"", 13]]",Thief's Tools,Fire,,"[[""Copper Ingot"", 1], [""Iron Ingot"", 1], [""Yew Lumber"", 1]]","[null, null, null]"
+,29,[],Brass Mask,Earth,,"[[""Brass Sheet"", 1], [""Dhalmel Leather"", 1], [""Faceguard"", 1]]","[[""Brass Mask +1"", 1], null, null]"
+,30,[],Brass Finger Gauntlets,Earth,,"[[""Brass Scales"", 2], [""Cotton Thread"", 1], [""Leather Gloves"", 1], [""Dhalmel Leather"", 1]]","[[""Brass Finger Gauntlets +1"", 1], null, null]"
+,30,[],Amber Earring,Earth,,"[[""Silver Earring +1"", 1], [""Amber"", 1]]","[[""Stamina Earring +1"", 1], null, null]"
+,30,[],Amethyst Earring,Earth,,"[[""Silver Earring +1"", 1], [""Amethyst"", 1]]","[[""Balance Earring +1"", 1], null, null]"
+,30,[],Clear Earring,Earth,,"[[""Silver Earring +1"", 1], [""Clear Topaz"", 1]]","[[""Knowledge Earring +1"", 1], null, null]"
+,30,[],Lapis Lazuli Earring,Earth,,"[[""Silver Earring +1"", 1], [""Lapis Lazuli"", 1]]","[[""Tranquility Earring +1"", 1], null, null]"
+,30,[],Onyx Earring,Earth,,"[[""Silver Earring +1"", 1], [""Onyx"", 1]]","[[""Energy Earring +1"", 1], null, null]"
+,30,[],Opal Earring,Earth,,"[[""Silver Earring +1"", 1], [""Light Opal"", 1]]","[[""Hope Earring +1"", 1], null, null]"
+,30,[],Sardonyx Earring,Earth,,"[[""Silver Earring +1"", 1], [""Sardonyx"", 1]]","[[""Courage Earring +1"", 1], null, null]"
+,30,[],Tourmaline Earring,Earth,,"[[""Silver Earring +1"", 1], [""Tourmaline"", 1]]","[[""Reflex Earring +1"", 1], null, null]"
+,30,[],Brass Finger Gauntlets,Earth,,"[[""Goldsmithing Kit 30"", 1]]","[null, null, null]"
+,31,[],Hiraishin,Fire,,"[[""Copper Ingot"", 1], [""Silver Ingot"", 1]]","[[""Hiraishin"", 66], [""Hiraishin"", 99], [""Hiraishin"", 99]]"
+,31,"[[""Woodworking"", 3]]",Lady Bell,Fire,,"[[""Brass Ingot"", 1], [""Lauan Lumber"", 1]]","[[""Lady Bell +1"", 1], null, null]"
+,32,[],Silver Ring,Fire,,"[[""Silver Ingot"", 2]]","[[""Silver Ring +1"", 1], null, null]"
+,32,[],Brass Greaves,Earth,,"[[""Brass Scales"", 2], [""Cotton Thread"", 1], [""Dhalmel Leather"", 1], [""Leather Highboots"", 1]]","[[""Brass Greaves +1"", 1], null, null]"
+,33,[],Silver Chain,Earth,,"[[""Silver Ingot"", 2]]","[[""Silver Chain"", 2], [""Silver Chain"", 3], [""Silver Chain"", 4]]"
+,33,[],Silver Chain,Earth,Chainwork,"[[""Silver Ingot"", 6], [""Mandrel"", 1]]","[[""Silver Chain"", 6], [""Silver Chain"", 9], [""Silver Chain"", 12]]"
+,33,[],Spark Spear,Earth,,"[[""Brass Spear"", 1], [""Copper Ingot"", 1]]","[[""Spark Spear +1"", 1], null, null]"
+,34,[],Brass Cuisses,Earth,,"[[""Brass Scales"", 2], [""Cotton Thread"", 1], [""Dhalmel Leather"", 1], [""Leather Trousers"", 1]]","[[""Brass Cuisses +1"", 1], null, null]"
+,34,[],Chain Belt,Earth,,"[[""Silver Chain"", 3], [""Silver Ingot"", 1]]","[[""Chain Belt +1"", 1], null, null]"
+,35,[],Amber Ring,Earth,,"[[""Amber"", 1], [""Silver Ring"", 1]]","[[""Stamina Ring"", 1], null, null]"
+,35,[],Amethyst Ring,Earth,,"[[""Amethyst"", 1], [""Silver Ring"", 1]]","[[""Balance Ring"", 1], null, null]"
+,35,[],Clear Ring,Earth,,"[[""Clear Topaz"", 1], [""Silver Ring"", 1]]","[[""Knowledge Ring"", 1], null, null]"
+,35,[],Lapis Lazuli Ring,Earth,,"[[""Lapis Lazuli"", 1], [""Silver Ring"", 1]]","[[""Tranquility Ring"", 1], null, null]"
+,35,[],Onyx Ring,Earth,,"[[""Onyx"", 1], [""Silver Ring"", 1]]","[[""Energy Ring"", 1], null, null]"
+,35,[],Opal Ring,Earth,,"[[""Light Opal"", 1], [""Silver Ring"", 1]]","[[""Hope Ring"", 1], null, null]"
+,35,[],Sardonyx Ring,Earth,,"[[""Sardonyx"", 1], [""Silver Ring"", 1]]","[[""Courage Ring"", 1], null, null]"
+,35,[],Tourmaline Ring,Earth,,"[[""Tourmaline"", 1], [""Silver Ring"", 1]]","[[""Reflex Ring"", 1], null, null]"
+,35,[],Poisona Ring,Fire,,"[[""Neutralizing Silver Ingot"", 1], [""Silver Ring"", 1]]","[null, null, null]"
+,35,[],Tigereye Ring,Earth,,"[[""Tiger Eye"", 1], [""Silver Ring"", 1]]","[[""Feral Ring"", 1], null, null]"
+,35,[],Tigereye Ring,Earth,,"[[""Goldsmithing Kit 35"", 1]]","[null, null, null]"
+,36,[],Brass Scale Mail,Earth,,"[[""Brass Scales"", 4], [""Cotton Thread"", 1], [""Dhalmel Leather"", 1], [""Leather Vest"", 1]]","[[""Brass Scale Mail +1"", 1], null, null]"
+,36,[],Spark Bilbo,Earth,,"[[""Bilbo"", 1], [""Copper Ingot"", 1]]","[[""Spark Bilbo +1"", 1], null, null]"
+,36,[],Griot Belt,Earth,,"[[""Quadav Silver"", 1], [""Silver Chain"", 3]]","[[""Griot Belt +1"", 1], null, null]"
+,37,[],Chain Gorget,Earth,,"[[""Silver Chain"", 3]]","[[""Fine Gorget"", 1], null, null]"
+,38,[],Mighty Ring,Earth,,"[[""Mighty Sardonyx"", 1], [""Sardonyx Ring"", 1]]","[null, null, null]"
+,38,[],Vision Ring,Earth,,"[[""Vision Amethyst"", 1], [""Amethyst Ring"", 1]]","[null, null, null]"
+,38,[],Mythril Ingot,Fire,,"[[""Mythril Beastcoin"", 4]]","[null, null, null]"
+,38,[],Spark Dagger,Earth,,"[[""Copper Ingot"", 1], [""Dagger"", 1]]","[[""Spark Dagger +1"", 1], null, null]"
+,39,[],Chain Choker,Earth,,"[[""Garnet"", 1], [""Silver Chain"", 2]]","[[""Red Choker"", 1], null, null]"
+,39,[],Mythril Grip,Fire,Chainwork,"[[""Mandrel"", 1], [""Mythril Ingot"", 2]]","[[""Mythril Grip +1"", 1], null, null]"
+,39,[],Focus Collar,Earth,,"[[""Flawed Garnet"", 1], [""Silver Chain"", 2]]","[[""Focus Collar +1"", 1], null, null]"
+,39,[],Silver Mask,Fire,,"[[""Iron Mask"", 1], [""Mercury"", 1], [""Silver Ingot"", 1]]","[[""Silver Mask +1"", 1], null, null]"
+,40,[],Amber Ring,Earth,,"[[""Amber"", 1], [""Silver Ring +1"", 1]]","[[""Stamina Ring +1"", 1], null, null]"
+,40,[],Amethyst Ring,Earth,,"[[""Amethyst"", 1], [""Silver Ring +1"", 1]]","[[""Balance Ring +1"", 1], null, null]"
+,40,[],Clear Ring,Earth,,"[[""Clear Topaz"", 1], [""Silver Ring +1"", 1]]","[[""Knowledge Ring +1"", 1], null, null]"
+,40,[],Lapis Lazuli Ring,Earth,,"[[""Lapis Lazuli"", 1], [""Silver Ring +1"", 1]]","[[""Tranquility Ring +1"", 1], null, null]"
+,40,[],Onyx Ring,Earth,,"[[""Onyx"", 1], [""Silver Ring +1"", 1]]","[[""Energy Ring +1"", 1], null, null]"
+,40,[],Opal Ring,Earth,,"[[""Light Opal"", 1], [""Silver Ring +1"", 1]]","[[""Hope Ring +1"", 1], null, null]"
+,40,[],Sardonyx Ring,Earth,,"[[""Sardonyx"", 1], [""Silver Ring +1"", 1]]","[[""Courage Ring +1"", 1], null, null]"
+,40,[],Tourmaline Ring,Earth,,"[[""Tourmaline"", 1], [""Silver Ring +1"", 1]]","[[""Reflex Ring +1"", 1], null, null]"
+,40,[],Vivified Mythril,Fire,Gold Purification,"[[""Light Anima"", 1], [""Lightning Anima"", 1], [""Water Anima"", 1], [""Mythril Ore"", 4]]","[null, null, null]"
+,40,[],Silver Mittens,Earth,,"[[""Chain Mittens"", 1], [""Silver Chain"", 1]]","[[""Silver Mittens +1"", 1], null, null]"
+,40,[],Mythril Ingot,Fire,,"[[""Mythril Ore"", 4]]","[null, null, null]"
+,40,[],Mythril Ingot,Fire,,"[[""Goldsmithing Kit 40"", 1]]","[null, null, null]"
+,41,[],Mythril Ingot,Fire,,"[[""Mythril Nugget"", 6], [""Mythril Ore"", 1]]","[null, null, null]"
+,41,[],Mythril Sheet,Fire,,"[[""Mythril Ingot"", 1]]","[null, null, null]"
+,41,[],Mythril Sheet,Fire,Sheeting,"[[""Mythril Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,41,[],Mythril Mesh Sheet,Fire,Gold Purification,"[[""Light Anima"", 1], [""Wind Anima"", 2], [""Mythril Ingot"", 1]]","[null, null, null]"
+,42,[],Electrum Ingot,Fire,,"[[""Silver Ore"", 1], [""Gold Ore"", 3]]","[null, null, null]"
+,42,[],Mythril Earring,Wind,,"[[""Mythril Ingot"", 2]]","[[""Mythril Earring +1"", 1], null, null]"
+,42,[],Silver Greaves,Fire,,"[[""Greaves"", 1], [""Mercury"", 1], [""Silver Ingot"", 1]]","[[""Silver Greaves +1"", 1], null, null]"
+,43,[],Mythril Chain,Earth,,"[[""Mythril Ingot"", 2]]","[[""Mythril Chain"", 2], [""Mythril Chain"", 3], [""Mythril Chain"", 4]]"
+,43,[],Mythril Chain,Earth,Chainwork,"[[""Mythril Ingot"", 6], [""Mandrel"", 1]]","[[""Mythril Chain"", 6], [""Mythril Chain"", 9], [""Mythril Chain"", 12]]"
+,43,[],Mythril Coil,Wind,Chainwork,"[[""Mythril Ingot"", 2], [""Mandrel"", 1]]","[[""Mythril Coil"", 6], [""Mythril Coil"", 9], [""Mythril Coil"", 12]]"
+,43,[],Veldt Axe,Fire,,"[[""Brass Axe"", 1], [""Penumbral Brass Ingot"", 1]]","[[""Veldt Axe +1"", 1], null, null]"
+,44,[],Mythril Baselard,Fire,,"[[""Mythril Ingot"", 1], [""Steel Ingot"", 1]]","[[""Fine Baselard"", 1], null, null]"
+,44,[],Mythril Gear Machine,Fire,Chainwork,"[[""Mythril Ingot"", 1], [""Mythril Sheet"", 1]]","[[""Mythril Gear Machine"", 2], [""Mythril Gear Machine"", 3], [""Mythril Gear Machine"", 4]]"
+,44,[],Silver Hose,Earth,,"[[""Chain Hose"", 1], [""Silver Chain"", 1]]","[[""Silver Hose +1"", 1], null, null]"
+,44,[],Spark Lance,Earth,,"[[""Lance"", 1], [""Silver Ingot"", 1]]","[[""Spark Lance +1"", 1], null, null]"
+,45,[],Ametrine Earring,Earth,,"[[""Ametrine"", 1], [""Mythril Earring"", 1]]","[[""Deft Earring"", 1], null, null]"
+,45,[],Black Earring,Earth,,"[[""Black Pearl"", 1], [""Mythril Earring"", 1]]","[[""Aura Earring"", 1], null, null]"
+,45,[],Blood Earring,Earth,,"[[""Garnet"", 1], [""Mythril Earring"", 1]]","[[""Puissance Earring"", 1], null, null]"
+,45,[],Goshenite Earring,Earth,,"[[""Goshenite"", 1], [""Mythril Earring"", 1]]","[[""Wisdom Earring"", 1], null, null]"
+,45,[],Pearl Earring,Earth,,"[[""Pearl"", 1], [""Mythril Earring"", 1]]","[[""Loyalty Earring"", 1], null, null]"
+,45,[],Peridot Earring,Earth,,"[[""Peridot"", 1], [""Mythril Earring"", 1]]","[[""Alacrity Earring"", 1], null, null]"
+,45,[],Sphene Earring,Earth,,"[[""Sphene"", 1], [""Mythril Earring"", 1]]","[[""Verve Earring"", 1], null, null]"
+,45,[],Turquoise Earring,Earth,,"[[""Turquoise"", 1], [""Mythril Earring"", 1]]","[[""Solace Earring"", 1], null, null]"
+,45,[],Reraise Earring,Wind,,"[[""Vivified Mythril"", 1], [""Mythril Earring"", 1]]","[null, null, null]"
+,45,[],Electrum Chain,Earth,,"[[""Electrum Ingot"", 2]]","[[""Electrum Chain"", 2], [""Electrum Chain"", 3], [""Electrum Chain"", 4]]"
+,45,[],Electrum Chain,Earth,Chainwork,"[[""Electrum Ingot"", 6], [""Mandrel"", 1]]","[[""Electrum Chain"", 6], [""Electrum Chain"", 9], [""Electrum Chain"", 12]]"
+,45,[],Peridot Earring,Earth,,"[[""Goldsmithing Kit 45"", 1]]","[null, null, null]"
+,46,[],Hydro Axe,Fire,,"[[""Animal Glue"", 1], [""Greataxe"", 1], [""Mythril Sheet"", 1]]","[[""Hydro Axe +1"", 1], null, null]"
+,46,[],Silver Mail,Fire,,"[[""Chainmail"", 1], [""Silver Chain"", 2]]","[[""Silver Mail +1"", 1], null, null]"
+,46,[],Sollerets,Fire,,"[[""Greaves"", 1], [""Mythril Sheet"", 2]]","[[""Sollerets +1"", 1], null, null]"
+,47,[],Gold Dust,Wind,,"[[""Brass Ingot"", 1], [""Copper Ingot"", 1]]","[null, null, null]"
+,47,[],Mufflers,Earth,,"[[""Chain Mittens"", 1], [""Mythril Sheet"", 2]]","[[""Mufflers +1"", 1], null, null]"
+,47,[],Mythril Ring,Fire,,"[[""Mythril Ingot"", 2]]","[[""Mythril Ring +1"", 1], null, null]"
+,47,"[[""Alchemy"", 11]]",Scope,Earth,Clockmaking,"[[""Artificial Lens"", 2], [""Brass Sheet"", 1], [""Glass Fiber"", 1], [""Mythril Gear Machine"", 1]]","[null, null, null]"
+,48,[],Aluminum Ingot,Fire,,"[[""Aluminum Ore"", 4]]","[null, null, null]"
+,48,"[[""Smithing"", 14]]",Banded Helm,Fire,,"[[""Copper Ingot"", 1], [""Iron Sheet"", 1], [""Mythril Chain"", 1], [""Mythril Sheet"", 1], [""Sheep Leather"", 1]]","[[""Banded Helm +1"", 1], null, null]"
+,48,"[[""Leathercraft"", 9]]",Breeches,Earth,,"[[""Linen Cloth"", 1], [""Mythril Chain"", 2], [""Ram Leather"", 2]]","[[""Breeches +1"", 1], null, null]"
+,49,[],Buckler,Earth,,"[[""Mythril Sheet"", 2], [""Targe"", 1]]","[[""Buckler +1"", 1], null, null]"
+,49,[],Heatsink,Earth,Clockmaking,"[[""Hydro Pump"", 1], [""Water Tank"", 1], [""Sieglinde Putty"", 1], [""Mythril Sheet"", 1], [""Mythril Gear Machine"", 1]]","[null, null, null]"
+,49,[],San d'Orian Dagger,Fire,,"[[""Mythril Ingot"", 1], [""Royal Squire's Dagger"", 1]]","[[""Kingdom Dagger"", 1], null, null]"
+,49,[],Silver Bangles,Fire,,"[[""Silver Ingot"", 3]]","[[""Silver Bangles +1"", 1], null, null]"
+,49,[],Spark Degen,Earth,,"[[""Silver Ingot"", 1], [""Mythril Degen"", 1]]","[[""Spark Degen +1"", 1], null, null]"
+,50,[],Ametrine Earring,Earth,,"[[""Ametrine"", 1], [""Mythril Earring +1"", 1]]","[[""Deft Earring +1"", 1], null, null]"
+,50,[],Black Earring,Earth,,"[[""Black Pearl"", 1], [""Mythril Earring +1"", 1]]","[[""Aura Earring +1"", 1], null, null]"
+,50,[],Blood Earring,Earth,,"[[""Garnet"", 1], [""Mythril Earring +1"", 1]]","[[""Puissance Earring +1"", 1], null, null]"
+,50,[],Goshenite Earring,Earth,,"[[""Goshenite"", 1], [""Mythril Earring +1"", 1]]","[[""Wisdom Earring +1"", 1], null, null]"
+,50,[],Pearl Earring,Earth,,"[[""Pearl"", 1], [""Mythril Earring +1"", 1]]","[[""Loyalty Earring +1"", 1], null, null]"
+,50,[],Peridot Earring,Earth,,"[[""Peridot"", 1], [""Mythril Earring +1"", 1]]","[[""Alacrity Earring +1"", 1], null, null]"
+,50,[],Sphene Earring,Earth,,"[[""Sphene"", 1], [""Mythril Earring +1"", 1]]","[[""Verve Earring +1"", 1], null, null]"
+,50,[],Turquoise Earring,Earth,,"[[""Turquoise"", 1], [""Mythril Earring +1"", 1]]","[[""Solace Earring +1"", 1], null, null]"
+,50,[],Aero Mufflers,Earth,,"[[""Mufflers"", 1], [""Mythril Mesh Sheet"", 1]]","[null, null, null]"
+,50,[],Aluminum Sheet,Fire,,"[[""Aluminum Ingot"", 1]]","[null, null, null]"
+,50,[],Aluminum Sheet,Fire,Sheeting,"[[""Aluminum Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,50,"[[""Clothcraft"", 13]]",Banded Mail,Earth,,"[[""Linen Cloth"", 1], [""Mythril Chain"", 4], [""Mythril Sheet"", 2]]","[[""Banded Mail +1"", 1], null, null]"
+,50,[],Spark Baselard,Earth,,"[[""Silver Ingot"", 1], [""Mythril Baselard"", 1]]","[[""Spark Baselard +1"", 1], null, null]"
+,50,[],Aluminum Sheet,Fire,,"[[""Goldsmithing Kit 50"", 1]]","[null, null, null]"
+,51,[],San d'Orian Sollerets,Earth,,"[[""Mythril Chain"", 1], [""Royal Squire's Sollerets"", 1]]","[[""Kingdom Sollerets"", 1], null, null]"
+,51,[],Wingedge,Wind,,"[[""Cotton Thread"", 1], [""Mythril Ingot"", 1], [""Silver Ingot"", 1]]","[[""Wingedge +1"", 1], null, null]"
+,51,[],Hydro Baghnakhs,Fire,,"[[""Animal Glue"", 1], [""Brass Baghnakhs"", 1], [""Mythril Sheet"", 1]]","[[""Hydro Baghnakhs +1"", 1], null, null]"
+,51,[],Tension Spring,Earth,Clockmaking,"[[""Darksteel Ingot"", 1], [""Mythril Coil"", 2], [""Mythril Gear Machine"", 1], [""Slime Oil"", 1]]","[null, null, null]"
+,51,"[[""Alchemy"", 29]]",Auto-Repair Kit,Fire,Clockmaking,"[[""Glass Fiber"", 1], [""Glass Sheet"", 1], [""Mythril Sheet"", 1], [""Hi-Potion Tank"", 1], [""Kilo Pump"", 1]]","[null, null, null]"
+,51,[],Amber,Wind,,"[[""Soil Geode"", 1]]","[[""Sphene"", 1], [""Chrysoberyl"", 1], [""Soil Gem"", 1]]"
+,51,[],Amethyst,Wind,,"[[""Thunder Geode"", 1]]","[[""Ametrine"", 1], [""Fluorite"", 1], [""Thunder Gem"", 1]]"
+,51,[],Clear Topaz,Wind,,"[[""Snow Geode"", 1]]","[[""Goshenite"", 1], [""Zircon"", 1], [""Snow Gem"", 1]]"
+,51,[],Lapis Lazuli,Wind,,"[[""Aqua Geode"", 1]]","[[""Turquoise"", 1], [""Aquamarine"", 1], [""Aqua Gem"", 1]]"
+,51,[],Light Opal,Wind,,"[[""Light Geode"", 1]]","[[""Light Opal"", 1], [""Moonstone"", 1], [""Light Gem"", 1]]"
+,51,[],Onyx,Wind,,"[[""Shadow Geode"", 1]]","[[""Onyx"", 1], [""Painite"", 1], [""Shadow Gem"", 1]]"
+,51,[],Sardonyx,Wind,,"[[""Flame Geode"", 1]]","[[""Garnet"", 1], [""Sunstone"", 1], [""Flame Gem"", 1]]"
+,51,[],Tourmaline,Wind,,"[[""Breeze Geode"", 1]]","[[""Peridot"", 1], [""Jadeite"", 1], [""Breeze Gem"", 1]]"
+,51,[],Gold Ingot,Fire,,"[[""Gold Beastcoin"", 4]]","[null, null, null]"
+,52,[],Hydro Cutter,Fire,,"[[""Animal Glue"", 1], [""Heavy Axe"", 1], [""Mythril Sheet"", 1]]","[[""Hydro Cutter +1"", 1], null, null]"
+,52,"[[""Smithing"", 21]]",Mythril Degen,Fire,,"[[""Iron Ingot"", 1], [""Mythril Ingot"", 2]]","[[""Mythril Degen +1"", 1], null, null]"
+,52,[],Palmer's Bangles,Fire,,"[[""Rogue's Silver"", 1], [""Silver Bangles"", 1]]","[null, null, null]"
+,52,[],San d'Orian Mufflers,Earth,,"[[""Mythril Chain"", 1], [""Royal Squire's Mufflers"", 1]]","[[""Kingdom Mufflers"", 1], null, null]"
+,52,"[[""Smithing"", 30], [""Alchemy"", 19]]",Shock Absorber,Fire,Clockmaking,"[[""Bomb Ash"", 1], [""Carbon Fiber"", 1], [""Darksteel Sheet"", 1], [""Imperial Cermet"", 1], [""Iron Sheet"", 1]]","[null, null, null]"
+,52,[],Scope II,Earth,Clockmaking,"[[""Glass Fiber"", 1], [""Artificial Lens"", 2], [""Golden Gear"", 1], [""Aht Urhgan Brass Sheet"", 1]]","[null, null, null]"
+,53,[],Bewitched Gold Ingot,Fire,Gold Purification,"[[""Fire Anima"", 1], [""Ice Anima"", 1], [""Light Anima"", 1], [""Gold Ore"", 4]]","[null, null, null]"
+,53,[],Indurated Gold Ingot,Fire,Gold Purification,"[[""Earth Anima"", 2], [""Light Anima"", 1], [""Gold Ore"", 4]]","[null, null, null]"
+,53,[],Gold Ingot,Fire,,"[[""Gold Ore"", 4]]","[null, null, null]"
+,53,[],Royal Squire's Breeches +1,Earth,,"[[""Mythril Chain"", 1], [""Royal Squire's Breeches"", 1]]","[[""Royal Squire's Breeches +2"", 1], null, null]"
+,53,[],San d'Orian Helm,Earth,,"[[""Mythril Sheet"", 1], [""Royal Squire's Helm"", 1]]","[[""Kingdom Helm"", 1], null, null]"
+,53,[],Spark Fork,Earth,,"[[""Mythril Ingot"", 1], [""Battle Fork"", 1]]","[[""Spark Fork +1"", 1], null, null]"
+,53,[],Golden Coil,Wind,Chainwork,"[[""Gold Ingot"", 2], [""Mandrel"", 1]]","[[""Golden Coil"", 6], [""Golden Coil"", 9], [""Golden Coil"", 12]]"
+,53,[],Resister,Fire,Clockmaking,"[[""Blessed Mythril Sheet"", 1], [""Goblin Grease"", 1], [""Ebonite"", 1], [""Water Tank"", 1], [""Hydro Pump"", 1]]","[null, null, null]"
+,54,[],Gold Ingot,Fire,,"[[""Gold Nugget"", 6], [""Gold Ore"", 1]]","[null, null, null]"
+,54,[],Gold Nugget,Fire,,"[[""Auric Sand"", 4]]","[null, null, null]"
+,54,[],Gold Sheet,Fire,,"[[""Gold Ingot"", 1]]","[null, null, null]"
+,54,[],Gold Sheet,Fire,Sheeting,"[[""Gold Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,54,[],Golden Gear,Fire,Clockmaking,"[[""Gold Sheet"", 1], [""Mythril Ingot"", 1]]","[[""Golden Gear"", 2], [""Golden Gear"", 3], [""Golden Gear"", 4]]"
+,54,"[[""Alchemy"", 27]]",Volt Gun,Fire,Clockmaking,"[[""Battery"", 1], [""Ebonite"", 1], [""Gold Sheet"", 1], [""Hiraishin"", 1], [""Mythril Gear Machine"", 1]]","[null, null, null]"
+,54,"[[""Alchemy"", 5]]",Candle Holder,Fire,,"[[""Beeswax"", 1], [""Brass Ingot"", 3], [""Gold Ingot"", 1]]","[null, null, null]"
+,55,[],Ametrine Ring,Earth,,"[[""Ametrine"", 1], [""Mythril Ring"", 1]]","[[""Deft Ring"", 1], null, null]"
+,55,[],Black Ring,Earth,,"[[""Black Pearl"", 1], [""Mythril Ring"", 1]]","[[""Aura Ring"", 1], null, null]"
+,55,[],Garnet Ring,Earth,,"[[""Garnet"", 1], [""Mythril Ring"", 1]]","[[""Puissance Ring"", 1], null, null]"
+,55,[],Goshenite Ring,Earth,,"[[""Goshenite"", 1], [""Mythril Ring"", 1]]","[[""Wisdom Ring"", 1], null, null]"
+,55,[],Pearl Ring,Earth,,"[[""Pearl"", 1], [""Mythril Ring"", 1]]","[[""Loyalty Ring"", 1], null, null]"
+,55,[],Peridot Ring,Earth,,"[[""Peridot"", 1], [""Mythril Ring"", 1]]","[[""Alacrity Ring"", 1], null, null]"
+,55,[],Sphene Ring,Earth,,"[[""Sphene"", 1], [""Mythril Ring"", 1]]","[[""Verve Ring"", 1], null, null]"
+,55,[],Turquoise Ring,Earth,,"[[""Turquoise"", 1], [""Mythril Ring"", 1]]","[[""Solace Ring"", 1], null, null]"
+,55,[],Gold Chain,Earth,,"[[""Gold Ingot"", 2]]","[[""Gold Chain"", 2], [""Gold Chain"", 3], [""Gold Chain"", 4]]"
+,55,[],Gold Chain,Earth,Chainwork,"[[""Gold Ingot"", 6], [""Mandrel"", 1]]","[[""Gold Chain"", 6], [""Gold Chain"", 9], [""Gold Chain"", 12]]"
+,55,[],Royal Squire's Chainmail +1,Earth,,"[[""Mythril Chain"", 1], [""Royal Squire's Chainmail"", 1]]","[[""Royal Squire's Chainmail +2"", 1], null, null]"
+,55,[],Barrier Module,Fire,Clockmaking,"[[""Slime Oil"", 1], [""Glass Fiber"", 1], [""Mythril Coil"", 1], [""Mythril Gear Machine"", 1]]","[null, null, null]"
+,55,[],Speedloader,Fire,Clockmaking,"[[""Slime Oil"", 1], [""Mythril Sheet"", 1], [""Glass Fiber"", 1], [""Mythril Coil"", 1], [""Mythril Gear Machine"", 1]]","[null, null, null]"
+,55,[],Heater Shield,Earth,,"[[""Goldsmithing Kit 55"", 1]]","[null, null, null]"
+,56,[],Combat Caster's Boomerang +1,Fire,,"[[""Mythril Ingot"", 1], [""Combat Caster's Boomerang"", 1]]","[[""Combat Caster's Boomerang +2"", 1], null, null]"
+,56,[],Heater Shield,Earth,,"[[""Mythril Sheet"", 2], [""Kite Shield"", 1]]","[[""Heater Shield +1"", 1], null, null]"
+,56,"[[""Alchemy"", 29]]",Mana Tank,Fire,Clockmaking,"[[""Glass Sheet"", 1], [""Mercury"", 1], [""Sieglinde Putty"", 1], [""Hi-Ether Tank"", 1], [""Hydro Pump"", 1]]","[null, null, null]"
+,56,[],Mythril Gorget,Fire,,"[[""Gold Ingot"", 1], [""Jadeite"", 1], [""Mercury"", 1], [""Mythril Chain"", 1], [""Mythril Sheet"", 1]]","[[""Noble's Gorget"", 1], null, null]"
+,57,[],Gold Earring,Wind,,"[[""Gold Ingot"", 2]]","[[""Gold Earring +1"", 1], null, null]"
+,57,[],Melody Earring,Earth,,"[[""Mythril Earring"", 1], [""Southern Pearl"", 1]]","[[""Melody Earring +1"", 1], null, null]"
+,57,[],Reaver Grip,Earth,Chainwork,"[[""Malebolge Mandrel"", 1], [""Mythril Ingot"", 2]]","[[""Reaver Grip +1"", 1], null, null]"
+,57,[],Shock Absorber II,Fire,Clockmaking,"[[""Adaman Sheet"", 1], [""Carbon Fiber"", 1], [""Cluster Ash"", 1], [""Dark Adaman"", 1], [""Imperial Cermet"", 1]]","[null, null, null]"
+,57,[],Scope III,Earth,Clockmaking,"[[""Glass Fiber"", 1], [""Artificial Lens"", 2], [""Aht Urhgan Brass Sheet"", 1], [""Platinum Gear"", 1]]","[null, null, null]"
+,58,"[[""Alchemy"", 29]]",Accelerator,Fire,Clockmaking,"[[""Coeurl Whisker"", 1], [""Goblin Grease"", 1], [""Imperial Cermet"", 1], [""Mythril Gear Machine"", 1], [""Wind Fan"", 1]]","[null, null, null]"
+,58,[],Aluminum Chain,Earth,,"[[""Aluminum Ingot"", 2]]","[[""Aluminum Chain"", 2], [""Aluminum Chain"", 3], [""Aluminum Chain"", 4]]"
+,58,[],Aluminum Chain,Earth,Sheeting,"[[""Aluminum Ingot"", 6], [""Mandrel"", 1]]","[[""Aluminum Chain"", 6], [""Aluminum Chain"", 9], [""Aluminum Chain"", 12]]"
+,58,[],Gold Hairpin,Wind,,"[[""Gold Ingot"", 1]]","[[""Gold Hairpin +1"", 1], null, null]"
+,58,[],Spark Rapier,Earth,,"[[""Mythril Ingot"", 1], [""Rapier"", 1]]","[[""Spark Rapier +1"", 1], null, null]"
+,58,[],Resister II,Fire,Clockmaking,"[[""Blessed Mythril Sheet"", 1], [""Goblin Grease"", 1], [""Ebonite"", 1], [""Water Tank"", 1], [""Kilo Pump"", 1]]","[null, null, null]"
+,59,"[[""Smithing"", 31]]",Chakram,Wind,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Steel Ingot"", 1]]","[[""Chakram +1"", 1], null, null]"
+,59,[],Hydro Claws,Fire,,"[[""Animal Glue"", 1], [""Claws"", 1], [""Mythril Sheet"", 1]]","[[""Hydro Claws +1"", 1], null, null]"
+,59,"[[""Alchemy"", 12]]",Mana Jammer,Fire,Clockmaking,"[[""Artificial Lens"", 1], [""Blessed Mythril Sheet"", 1], [""Hydro Pump"", 1], [""Sieglinde Putty"", 1], [""Water Tank"", 1]]","[null, null, null]"
+,59,[],Wing Gorget,Earth,,"[[""Ardent Jadeite"", 1], [""Mythril Gorget"", 1]]","[null, null, null]"
+,60,[],Ametrine Ring,Earth,,"[[""Ametrine"", 1], [""Mythril Ring +1"", 1]]","[[""Deft Ring +1"", 1], null, null]"
+,60,[],Black Ring,Earth,,"[[""Black Pearl"", 1], [""Mythril Ring +1"", 1]]","[[""Aura Ring +1"", 1], null, null]"
+,60,[],Garnet Ring,Earth,,"[[""Garnet"", 1], [""Mythril Ring +1"", 1]]","[[""Puissance Ring +1"", 1], null, null]"
+,60,[],Goshenite Ring,Earth,,"[[""Goshenite"", 1], [""Mythril Ring +1"", 1]]","[[""Wisdom Ring +1"", 1], null, null]"
+,60,[],Pearl Ring,Earth,,"[[""Pearl"", 1], [""Mythril Ring +1"", 1]]","[[""Loyalty Ring +1"", 1], null, null]"
+,60,[],Peridot Ring,Earth,,"[[""Peridot"", 1], [""Mythril Ring +1"", 1]]","[[""Alacrity Ring +1"", 1], null, null]"
+,60,[],Sphene Ring,Earth,,"[[""Sphene"", 1], [""Mythril Ring +1"", 1]]","[[""Verve Ring +1"", 1], null, null]"
+,60,[],Turquoise Ring,Earth,,"[[""Turquoise"", 1], [""Mythril Ring +1"", 1]]","[[""Solace Ring +1"", 1], null, null]"
+,60,[],Gold Ring,Fire,,"[[""Gold Ingot"", 2]]","[[""Gold Ring +1"", 1], null, null]"
+,60,[],Spark Kris,Earth,,"[[""Mythril Ingot"", 1], [""Darksteel Kris"", 1]]","[[""Spark Kris +1"", 1], null, null]"
+,60,[],Gold Arrowheads,Wind,,"[[""Copper Ingot"", 1], [""Gold Ingot"", 1]]","[[""Gold Arrowheads"", 8], [""Gold Arrowheads"", 10], [""Gold Arrowheads"", 12]]"
+,60,[],Aquamarine,Wind,,"[[""Scholar Stone"", 1]]","[[""Sapphire"", 1], [""Tanzanite Jewel"", 1], [""Tanzanite Jewel"", 1]]"
+,60,[],Speedloader II,Fire,Clockmaking,"[[""Slime Oil"", 1], [""Gold Sheet"", 1], [""Glass Fiber"", 1], [""Mythril Coil"", 1], [""Mythril Gear Machine"", 1]]","[null, null, null]"
+,60,[],Mythril Cuisses,Fire,,"[[""Goldsmithing Kit 60"", 1]]","[null, null, null]"
+,61,"[[""Alchemy"", 29]]",Auto-Repair Kit II,Fire,Clockmaking,"[[""Glass Fiber"", 1], [""Glass Sheet"", 1], [""Gold Sheet"", 1], [""Hi-Potion Tank"", 1], [""Kilo Pump"", 1]]","[null, null, null]"
+,61,[],Tension Spring II,Earth,Clockmaking,"[[""Darksteel Ingot"", 1], [""Golden Gear"", 1], [""Mythril Coil"", 2], [""Slime Oil"", 1]]","[null, null, null]"
+,61,[],Mythril Cuisses,Fire,,"[[""Mythril Sheet"", 2], [""Ram Leather"", 1]]","[[""Mythril Cuisses +1"", 1], null, null]"
+,61,[],Platinum Ingot,Fire,,"[[""Platinum Beastcoin"", 4]]","[null, null, null]"
+,62,[],Hydro Chopper,Fire,,"[[""Animal Glue"", 1], [""Heavy Darksteel Axe"", 1], [""Mythril Sheet"", 1]]","[[""Hydro Chopper +1"", 1], null, null]"
+,62,[],Mythril Sallet,Fire,,"[[""Copper Ingot"", 1], [""Darksteel Sheet"", 1], [""Mythril Sheet"", 1], [""Sheep Leather"", 1]]","[[""Mythril Sallet +1"", 1], null, null]"
+,62,[],Platinum Grip,Fire,Chainwork,"[[""Mandrel"", 1], [""Platinum Ingot"", 2]]","[[""Platinum Grip +1"", 1], null, null]"
+,62,[],Shock Absorber III,Fire,Clockmaking,"[[""Carbon Fiber"", 1], [""Dark Adaman Sheet"", 1], [""Imperial Cermet"", 1], [""Djinn Ash"", 1], [""Titanium Sheet"", 1]]","[null, null, null]"
+,62,[],Scope IV,Fire,Clockmaking,"[[""Glass Fiber"", 1], [""Artificial Lens"", 2], [""Aht Urhgan Brass Sheet"", 1], [""Orichalcum Gearbox"", 1]]","[null, null, null]"
+,63,[],Platinum Ingot,Fire,,"[[""Platinum Ore"", 4]]","[null, null, null]"
+,63,[],Vivio Platinum Ingot,Fire,Gold Purification,"[[""Platinum Ore"", 4], [""Light Anima"", 1], [""Water Anima"", 1], [""Wind Anima"", 1]]","[null, null, null]"
+,63,"[[""Smithing"", 45]]",Oberon's Sainti,Fire,,"[[""Steel Ingot"", 1], [""Darksteel Ingot"", 1], [""Ebony Lumber"", 1], [""Platinum Ingot"", 1], [""Mercury"", 1], [""Oberon's Gold Ingot"", 1]]","[null, null, null]"
+,63,[],Oberon's Knuckles,Fire,,"[[""Darksteel Ingot"", 1], [""Mahogany Lumber"", 1], [""Gargouille Eye"", 2], [""Oberon's Gold Ingot"", 1]]","[null, null, null]"
+,63,"[[""Alchemy"", 57], [""Leathercraft"", 40]]",Hosodachi,Fire,,"[[""Ash Lumber"", 1], [""Iron Ingot"", 2], [""Cermet Chunk"", 1], [""Raptor Skin"", 1], [""Silver Ingot"", 1], [""Silver Thread"", 1], [""Tama-Hagane"", 1]]","[[""Hosodachi +1"", 1], null, null]"
+,63,[],Clear Topaz,Wind,,"[[""Gelid Aggregate"", 1]]","[[""Goshenite"", 1], [""Zircon"", 1], [""Clarite"", 1]]"
+,64,[],Mythril Leggings,Fire,,"[[""Darksteel Sheet"", 1], [""Mythril Sheet"", 2], [""Ram Leather"", 2]]","[[""Mythril Leggings +1"", 1], null, null]"
+,64,[],Platinum Ingot,Fire,,"[[""Platinum Nugget"", 6], [""Platinum Ore"", 1]]","[null, null, null]"
+,64,[],Platinum Sheet,Fire,,"[[""Platinum Ingot"", 1]]","[null, null, null]"
+,64,[],Platinum Sheet,Fire,Sheeting,"[[""Platinum Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,64,[],Platinum Gear,Fire,Chainwork,"[[""Platinum Ingot"", 1], [""Platinum Sheet"", 1]]","[[""Platinum Gear"", 2], [""Platinum Gear"", 3], [""Platinum Gear"", 4]]"
+,65,[],Aquamarine Earring,Earth,,"[[""Aquamarine"", 1], [""Gold Earring"", 1]]","[[""Serenity Earring"", 1], null, null]"
+,65,[],Green Earring,Earth,,"[[""Jadeite"", 1], [""Gold Earring"", 1]]","[[""Celerity Earring"", 1], null, null]"
+,65,[],Moon Earring,Earth,,"[[""Moonstone"", 1], [""Gold Earring"", 1]]","[[""Allure Earring"", 1], null, null]"
+,65,[],Night Earring,Earth,,"[[""Painite"", 1], [""Gold Earring"", 1]]","[[""Mana Earring"", 1], null, null]"
+,65,[],Purple Earring,Earth,,"[[""Fluorite"", 1], [""Gold Earring"", 1]]","[[""Grace Earring"", 1], null, null]"
+,65,[],Sun Earring,Earth,,"[[""Sunstone"", 1], [""Gold Earring"", 1]]","[[""Victory Earring"", 1], null, null]"
+,65,[],Yellow Earring,Earth,,"[[""Chrysoberyl"", 1], [""Gold Earring"", 1]]","[[""Vigor Earring"", 1], null, null]"
+,65,[],Zircon Earring,Earth,,"[[""Zircon"", 1], [""Gold Earring"", 1]]","[[""Genius Earring"", 1], null, null]"
+,65,[],Junior Musketeer's Chakram +1,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Junior Musketeer's Chakram"", 1]]","[[""Junior Musketeer's Chakram +2"", 1], null, null]"
+,65,[],Platinum Chain,Earth,,"[[""Platinum Ingot"", 2]]","[[""Platinum Chain"", 2], [""Platinum Chain"", 3], [""Platinum Chain"", 4]]"
+,65,[],Platinum Chain,Earth,Chainwork,"[[""Platinum Ingot"", 6], [""Mandrel"", 1]]","[[""Platinum Chain"", 6], [""Platinum Chain"", 9], [""Platinum Chain"", 12]]"
+,65,[],Moon Earring,Earth,,"[[""Goldsmithing Kit 65"", 1]]","[null, null, null]"
+,66,"[[""Alchemy"", 29]]",Mana Tank II,Fire,Clockmaking,"[[""Sieglinde Putty"", 1], [""Mercury"", 1], [""Glass Sheet"", 1], [""Hi-Ether Tank"", 1], [""Kilo Pump"", 1]]","[null, null, null]"
+,66,[],Mythril Gauntlets,Fire,,"[[""Darksteel Sheet"", 1], [""Mythril Sheet"", 1], [""Leather Gloves"", 2]]","[[""Mythril Gauntlets +1"", 1], null, null]"
+,66,"[[""Woodworking"", 32]]",Sainti,Fire,,"[[""Brass Ingot"", 1], [""Gold Ingot"", 2], [""Mercury"", 1], [""Rosewood Lumber"", 1], [""Steel Ingot"", 1]]","[[""Sainti +1"", 1], null, null]"
+,66,"[[""Alchemy"", 10]]",Girandola,Fire,,"[[""Beeswax"", 2], [""Gold Ingot"", 2]]","[null, null, null]"
+,66,[],Auto-Repair Kit III,Fire,Clockmaking,"[[""Platinum Sheet"", 1], [""Glass Fiber"", 1], [""Glass Sheet"", 1], [""Hi-Potion Tank"", 1], [""Mega Pump"", 1]]","[null, null, null]"
+,66,[],Tension Spring III,Earth,Clockmaking,"[[""Slime Oil"", 1], [""Darksteel Ingot"", 1], [""Mythril Coil"", 2], [""Platinum Gear"", 1]]","[null, null, null]"
+,67,[],Mythril Breastplate,Fire,,"[[""Darksteel Sheet"", 2], [""Mythril Sheet"", 2], [""Ram Leather"", 2]]","[[""Mythril Breastplate +1"", 1], null, null]"
+,67,[],Hydro Patas,Fire,,"[[""Animal Glue"", 1], [""Bone Patas"", 1], [""Mythril Sheet"", 1]]","[[""Hydro Patas +1"", 1], null, null]"
+,67,[],Tsurugitachi,Fire,Gold Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Hosodachi"", 1]]","[null, null, null]"
+,68,[],Platinum Earring,Wind,,"[[""Platinum Ingot"", 2]]","[[""Platinum Earring +1"", 1], null, null]"
+,68,"[[""Alchemy"", 29]]",Accelerator II,Fire,Clockmaking,"[[""Coeurl Whisker"", 1], [""Goblin Grease"", 1], [""Golden Gear"", 1], [""Imperial Cermet"", 1], [""Kilo Fan"", 1]]","[null, null, null]"
+,68,"[[""Smithing"", 28]]",Oberon's Rapier,Fire,,"[[""Steel Ingot"", 2], [""Mercury"", 1], [""Fluorite"", 1], [""Oberon's Gold Ingot"", 1]]","[null, null, null]"
+,69,[],Mailbreaker,Fire,,"[[""Bilbo"", 1], [""Mercury"", 1], [""Gold Ingot"", 1]]","[[""Mailbreaker +1"", 1], null, null]"
+,69,"[[""Alchemy"", 12]]",Mana Jammer II,Fire,Clockmaking,"[[""Artificial Lens"", 1], [""Blessed Mythril Sheet"", 1], [""Sieglinde Putty"", 1], [""Water Tank"", 1], [""Kilo Fan"", 1]]","[null, null, null]"
+,69,[],Moblumin Sheet,Fire,,"[[""Moblumin Ingot"", 1]]","[null, null, null]"
+,69,"[[""Bonecraft"", 50], [""Smithing"", 34]]",Shotel,Fire,,"[[""Silver Ingot"", 1], [""Bugard Tusk"", 1], [""Steel Ingot"", 1], [""Tiger Eye"", 1]]","[[""Shotel +1"", 1], null, null]"
+,69,[],Oberon's Gold Ingot,Fire,,"[[""Gold Ore"", 3], [""Fool's Gold Ore"", 1]]","[null, null, null]"
+,69,[],Orichalcum Gearbox,Fire,Clockmaking,"[[""Orichalcum Sheet"", 1], [""Orichalcum Ingot"", 1]]","[[""Orichalcum Gearbox"", 2], [""Orichalcum Gearbox"", 3], [""Orichalcum Gearbox"", 4]]"
+,70,[],Aquamarine Earring,Earth,,"[[""Aquamarine"", 1], [""Gold Earring +1"", 1]]","[[""Serenity Earring +1"", 1], null, null]"
+,70,[],Green Earring,Earth,,"[[""Jadeite"", 1], [""Gold Earring +1"", 1]]","[[""Celerity Earring +1"", 1], null, null]"
+,70,[],Moon Earring,Earth,,"[[""Moonstone"", 1], [""Gold Earring +1"", 1]]","[[""Allure Earring +1"", 1], null, null]"
+,70,[],Night Earring,Earth,,"[[""Painite"", 1], [""Gold Earring +1"", 1]]","[[""Mana Earring +1"", 1], null, null]"
+,70,[],Purple Earring,Earth,,"[[""Fluorite"", 1], [""Gold Earring +1"", 1]]","[[""Grace Earring +1"", 1], null, null]"
+,70,[],Sun Earring,Earth,,"[[""Sunstone"", 1], [""Gold Earring +1"", 1]]","[[""Victory Earring +1"", 1], null, null]"
+,70,[],Yellow Earring,Earth,,"[[""Chrysoberyl"", 1], [""Gold Earring +1"", 1]]","[[""Vigor Earring +1"", 1], null, null]"
+,70,[],Zircon Earring,Earth,,"[[""Zircon"", 1], [""Gold Earring +1"", 1]]","[[""Genius Earring +1"", 1], null, null]"
+,70,[],Gold Bangles,Fire,,"[[""Gold Ingot"", 3]]","[[""Gold Bangles +1"", 1], null, null]"
+,70,[],Platinum Ring,Fire,,"[[""Platinum Ingot"", 2]]","[[""Platinum Ring +1"", 1], null, null]"
+,70,[],Platinum Arrowheads,Wind,,"[[""Copper Ingot"", 1], [""Platinum Ingot"", 1]]","[[""Platinum Arrowheads"", 8], [""Platinum Arrowheads"", 10], [""Platinum Arrowheads"", 12]]"
+,70,[],Oberon's Gold Sheet,Fire,,"[[""Oberon's Gold Ingot"", 1]]","[null, null, null]"
+,70,[],Heat Capacitor II,Fire,Clockmaking,"[[""Platinum Sheet"", 1], [""Fire Anima"", 1], [""Golden Coil"", 2], [""Orichalcum Gearbox"", 1]]","[null, null, null]"
+,70,[],Gold Bangles,Fire,,"[[""Goldsmithing Kit 70"", 1]]","[null, null, null]"
+,71,"[[""Alchemy"", 51]]",Gold Cuisses,Fire,,"[[""Cermet Chunk"", 2], [""Gold Ingot"", 1], [""Mercury"", 1], [""Ram Leather"", 1]]","[[""Gilt Cuisses"", 1], null, null]"
+,71,[],Noble's Crown,Fire,,"[[""Copper Ingot"", 1], [""Gold Ingot"", 1], [""Topaz"", 1]]","[[""Aristocrat's Crown"", 1], null, null]"
+,71,[],Krousis Ring,Earth,,"[[""Imperial Topaz"", 1], [""Platinum Ring"", 1]]","[[""Krousis Ring +1"", 1], null, null]"
+,71,[],Mana Tank III,Fire,Clockmaking,"[[""Mercury"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Hi-Ether Tank"", 1], [""Mega Pump"", 1]]","[null, null, null]"
+,71,[],Tension Spring IV,Earth,Clockmaking,"[[""Slime Oil"", 1], [""Darksteel Ingot"", 1], [""Mythril Coil"", 2], [""Orichalcum Gearbox"", 1]]","[null, null, null]"
+,71,[],Auto-Repair Kit IV,Fire,Clockmaking,"[[""Orichalcum Sheet"", 1], [""Glass Fiber"", 1], [""Glass Sheet"", 1], [""Hi-Potion Tank"", 1], [""Kilo Pump"", 1], [""Mega Pump"", 1]]","[null, null, null]"
+,72,[],Gold Armet,Fire,,"[[""Cermet Chunk"", 2], [""Copper Ingot"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Sheep Leather"", 1]]","[[""Gilt Armet"", 1], null, null]"
+,72,[],Translucent Rock,Wind,,"[[""Marble Nugget"", 1]]","[[""Translucent Rock"", 1], [""Translucent Rock"", 1], [""Marble"", 1]]"
+,72,[],Gold Sword,Fire,,"[[""Gold Ingot"", 2], [""Mercury"", 1], [""Saber"", 1]]","[[""Gold Sword +1"", 1], null, null]"
+,72,[],Reliquary,Earth,,"[[""Aht Urhgan Brass Ingot"", 1], [""Aht Urhgan Brass Sheet"", 2], [""Dogwood Lumber"", 2], [""Imperial Silk Cloth"", 1]]","[null, null, null]"
+,73,"[[""Smithing"", 53]]",Moonring Blade,Wind,,"[[""Gold Ingot"", 1], [""Iron Ingot"", 1], [""Mercury"", 1], [""Tama-Hagane"", 1]]","[[""Moonring Blade +1"", 1], null, null]"
+,73,"[[""Smithing"", 31], [""Alchemy"", 45]]",Shrimp Lantern,Fire,,"[[""Beeswax"", 1], [""Moblin Putty"", 1], [""Moblumin Sheet"", 1], [""Tin Ingot"", 1]]","[null, null, null]"
+,73,[],Accelerator III,Fire,Clockmaking,"[[""Coeurl Whisker"", 1], [""Goblin Grease"", 1], [""Imperial Cermet"", 1], [""Platinum Gear"", 1], [""Mega Fan"", 1]]","[null, null, null]"
+,74,"[[""Alchemy"", 54]]",Gold Sabatons,Fire,,"[[""Cermet Chunk"", 3], [""Gold Ingot"", 1], [""Mercury"", 1], [""Ram Leather"", 2]]","[[""Gilt Sabatons"", 1], null, null]"
+,74,"[[""Smithing"", 44]]",Hammermill,Fire,Clockmaking,"[[""Steel Ingot"", 1], [""Coeurl Whisker"", 1], [""Goblin Grease"", 1], [""Mythril Gear Machine"", 1], [""Warhammer"", 2], [""Wind Fan"", 1]]","[null, null, null]"
+,74,[],Mana Jammer III,Fire,Clockmaking,"[[""Blessed Mythril Sheet"", 1], [""Artificial Lens"", 1], [""Sieglinde Putty"", 1], [""Water Tank"", 1], [""Mega Pump"", 1]]","[null, null, null]"
+,75,[],Aquamarine Ring,Earth,,"[[""Aquamarine"", 1], [""Gold Ring"", 1]]","[[""Serenity Ring"", 1], null, null]"
+,75,[],Chrysoberyl Ring,Earth,,"[[""Chrysoberyl"", 1], [""Gold Ring"", 1]]","[[""Vigor Ring"", 1], null, null]"
+,75,[],Fluorite Ring,Earth,,"[[""Fluorite"", 1], [""Gold Ring"", 1]]","[[""Grace Ring"", 1], null, null]"
+,75,[],Jadeite Ring,Earth,,"[[""Jadeite"", 1], [""Gold Ring"", 1]]","[[""Celerity Ring"", 1], null, null]"
+,75,[],Moon Ring,Earth,,"[[""Moonstone"", 1], [""Gold Ring"", 1]]","[[""Allure Ring"", 1], null, null]"
+,75,[],Painite Ring,Earth,,"[[""Painite"", 1], [""Gold Ring"", 1]]","[[""Mystic Ring"", 1], null, null]"
+,75,[],Sun Ring,Earth,,"[[""Sunstone"", 1], [""Gold Ring"", 1]]","[[""Victory Ring"", 1], null, null]"
+,75,[],Zircon Ring,Earth,,"[[""Zircon"", 1], [""Gold Ring"", 1]]","[[""Genius Ring"", 1], null, null]"
+,75,[],Ashura,Fire,,"[[""Gold Ingot"", 1], [""Gold Thread"", 1], [""Uchigatana"", 1]]","[[""Ashura +1"", 1], null, null]"
+,75,[],Ashura,Fire,,"[[""Goldsmithing Kit 75"", 1]]","[null, null, null]"
+,76,[],Gold Patas,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Patas"", 1]]","[[""Gold Patas +1"", 1], null, null]"
+,76,[],Iron Musketeer's Cuisses +1,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Iron Musketeer's Cuisses"", 1]]","[[""Iron Musketeer's Cuisses +2"", 1], null, null]"
+,76,"[[""Leathercraft"", 48], [""Clothcraft"", 31]]",Sipahi Boots,Earth,,"[[""Karakul Leather"", 1], [""Marid Leather"", 2], [""Mythril Sheet"", 3], [""Wamoura Cloth"", 1]]","[[""Abtal Boots"", 1], null, null]"
+,76,[],Mana Tank IV,Fire,Clockmaking,"[[""Mercury"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Hi-Ether Tank"", 1], [""Kilo Pump"", 1], [""Mega Pump"", 1]]","[null, null, null]"
+,76,[],Tension Spring V,Earth,Clockmaking,"[[""Slime Oil"", 1], [""Darksteel Ingot"", 1], [""Golden Coil"", 2], [""Orichalcum Gearbox"", 1]]","[null, null, null]"
+,77,"[[""Alchemy"", 54]]",Gold Gauntlets,Fire,,"[[""Cermet Chunk"", 2], [""Gold Ingot"", 1], [""Leather Gloves"", 2], [""Mercury"", 1]]","[[""Gilt Gauntlets"", 1], null, null]"
+,77,[],Iron Musketeer's Armet +1,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Iron Musketeer's Armet"", 1]]","[[""Iron Musketeer's Armet +2"", 1], null, null]"
+,77,[],Torque,Fire,,"[[""Gold Ingot"", 4]]","[[""Torque +1"", 1], null, null]"
+,78,"[[""Alchemy"", 54]]",Gold Cuirass,Fire,,"[[""Cermet Chunk"", 4], [""Gold Ingot"", 1], [""Mercury"", 1], [""Ram Leather"", 2]]","[[""Gilt Cuirass"", 1], null, null]"
+,78,[],Iron Musketeer's Sabatons +1,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Iron Musketeer's Sabatons"", 1]]","[[""Iron Musketeer's Sabatons +2"", 1], null, null]"
+,78,[],Morion Earring,Earth,,"[[""Gold Earring"", 1], [""Morion Tathlum"", 1]]","[[""Morion Earring +1"", 1], null, null]"
+,78,[],Phantom Earring,Earth,,"[[""Gold Earring"", 1], [""Phantom Tathlum"", 1]]","[[""Phantom Earring +1"", 1], null, null]"
+,78,[],Fusion Bolt Heads,Wind,,"[[""Aluminum Ingot"", 1]]","[[""Fusion Bolt Heads"", 8], [""Fusion Bolt Heads"", 10], [""Fusion Bolt Heads"", 12]]"
+,78,[],Accelerator IV,Fire,Clockmaking,"[[""Coeurl Whisker"", 1], [""Goblin Grease"", 1], [""Imperial Cermet"", 1], [""Orichalcum Gearbox"", 1], [""Kilo Fan"", 1], [""Mega Fan"", 1]]","[null, null, null]"
+,79,"[[""Clothcraft"", 59]]",Amir Bed,Fire,,"[[""Aht Urhgan Brass Ingot"", 4], [""Bloodwood Lumber"", 1], [""Gold Brocade"", 1], [""Gold Thread"", 1], [""Karakul Cloth"", 1]]","[null, null, null]"
+,79,"[[""Smithing"", 51], [""Woodworking"", 31]]",Diamond Knuckles,Fire,,"[[""Darksteel Sheet"", 1], [""Diamond"", 2], [""Mahogany Lumber"", 1], [""Platinum Sheet"", 1]]","[[""Diamond Knuckles +1"", 1], null, null]"
+,79,[],Bastokan Tea Set,Fire,,"[[""Adaman Ingot"", 1], [""Mythril Ingot"", 1], [""Silver Ingot"", 1]]","[null, null, null]"
+,79,[],Mana Jammer IV,Fire,Clockmaking,"[[""Blessed Mythril Sheet"", 1], [""Artificial Lens"", 1], [""Sieglinde Putty"", 1], [""Water Tank"", 1], [""Kilo Pump"", 1], [""Mega Pump"", 1]]","[null, null, null]"
+,80,[],Gold Buckler,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Targe"", 1]]","[[""Gilt Buckler"", 1], null, null]"
+,80,[],Stoneskin Torque,Fire,,"[[""Indurated Gold Ingot"", 1], [""Torque"", 1]]","[null, null, null]"
+,80,[],Aquamarine Ring,Earth,,"[[""Aquamarine"", 1], [""Gold Ring +1"", 1]]","[[""Serenity Ring +1"", 1], null, null]"
+,80,[],Chrysoberyl Ring,Earth,,"[[""Chrysoberyl"", 1], [""Gold Ring +1"", 1]]","[[""Vigor Ring +1"", 1], null, null]"
+,80,[],Fluorite Ring,Earth,,"[[""Fluorite"", 1], [""Gold Ring +1"", 1]]","[[""Grace Ring +1"", 1], null, null]"
+,80,[],Jadeite Ring,Earth,,"[[""Jadeite"", 1], [""Gold Ring +1"", 1]]","[[""Celerity Ring +1"", 1], null, null]"
+,80,[],Moon Ring,Earth,,"[[""Moonstone"", 1], [""Gold Ring +1"", 1]]","[[""Allure Ring +1"", 1], null, null]"
+,80,[],Painite Ring,Earth,,"[[""Painite"", 1], [""Gold Ring +1"", 1]]","[[""Mystic Ring +1"", 1], null, null]"
+,80,[],Sun Ring,Earth,,"[[""Sunstone"", 1], [""Gold Ring +1"", 1]]","[[""Victory Ring +1"", 1], null, null]"
+,80,[],Zircon Ring,Earth,,"[[""Zircon"", 1], [""Gold Ring +1"", 1]]","[[""Genius Ring +1"", 1], null, null]"
+,80,[],Gold Buckler,Fire,,"[[""Goldsmithing Kit 80"", 1]]","[null, null, null]"
+,81,"[[""Bonecraft"", 58]]",Jagdplaute,Fire,,"[[""Darksteel Sword"", 1], [""Emerald"", 1], [""Gold Ingot"", 1], [""Manticore Fang"", 1], [""Mercury"", 1], [""Platinum Ingot"", 1], [""Ruby"", 1], [""Topaz"", 1]]","[[""Jagdplaute +1"", 1], null, null]"
+,81,[],Lord's Cuisses,Fire,,"[[""Darksteel Cuisses"", 1], [""Gold Ingot"", 2], [""Mercury"", 1]]","[[""King's Cuisses"", 1], null, null]"
+,81,[],Phrygian Gold Ingot,Fire,,"[[""Phrygian Ore"", 4]]","[null, null, null]"
+,81,[],Sunstone,Wind,,"[[""Ifritite"", 1]]","[[""Ruby"", 1], [""Carnelian"", 1], [""Ifritear"", 1]]"
+,81,[],Aquamarine,Wind,,"[[""Leviatite"", 1]]","[[""Sapphire"", 1], [""Larimar"", 1], [""Leviatear"", 1]]"
+,81,[],Fluorite,Wind,,"[[""Ramuite"", 1]]","[[""Spinel"", 1], [""Fulmenite"", 1], [""Ramutear"", 1]]"
+,81,[],Jadeite,Wind,,"[[""Garudite"", 1]]","[[""Emerald"", 1], [""Aventurine"", 1], [""Garutear"", 1]]"
+,81,[],Chrysoberyl,Wind,,"[[""Titanite"", 1]]","[[""Topaz"", 1], [""Heliodor"", 1], [""Titatear"", 1]]"
+,81,[],Zircon,Wind,,"[[""Shivite"", 1]]","[[""Diamond"", 1], [""Clarite"", 1], [""Shivatear"", 1]]"
+,81,[],Moonstone,Wind,,"[[""Carbite"", 1]]","[[""Angelstone"", 1], [""Selenite"", 1], [""Carbutear"", 1]]"
+,81,[],Painite,Wind,,"[[""Fenrite"", 1]]","[[""Deathstone"", 1], [""Tenebrite"", 1], [""Fenritear"", 1]]"
+,82,[],Brass Jadagna,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Jadagna"", 1], [""Karakul Leather"", 1]]","[[""Brass Jadagna +1"", 1], null, null]"
+,82,[],Golden Spear,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Partisan"", 1]]","[[""Golden Spear +1"", 1], null, null]"
+,82,[],Iron Musketeer's Gauntlets +1,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Iron Musketeer's Gauntlets"", 1]]","[[""Iron Musketeer's Gauntlets +2"", 1], null, null]"
+,82,[],Platinum Mace,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Darksteel Mace"", 1], [""Platinum Ingot"", 1]]","[[""Platinum Mace +1"", 1], null, null]"
+,82,"[[""Alchemy"", 15]]",Candelabrum,Fire,,"[[""Beeswax"", 3], [""Brass Ingot"", 1], [""Gold Ingot"", 3]]","[null, null, null]"
+,82,[],Phrygian Gold Sheet,Fire,,"[[""Phrygian Gold Ingot"", 1]]","[null, null, null]"
+,82,[],Phrygian Gold Sheet,Fire,Sheeting,"[[""Phrygian Gold Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,83,[],Iron Musketeer's Cuirass +1,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Iron Musketeer's Cuirass"", 1]]","[[""Iron Musketeer's Cuirass +2"", 1], null, null]"
+,83,[],Lord's Armet,Fire,,"[[""Gold Ingot"", 2], [""Darksteel Armet"", 1], [""Mercury"", 1]]","[[""King's Armet"", 1], null, null]"
+,83,"[[""Smithing"", 28]]",Rapier,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Fluorite"", 1], [""Steel Ingot"", 2]]","[[""Rapier +1"", 1], null, null]"
+,84,[],Platinum Cutlass,Fire,,"[[""Cutlass"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Platinum Ingot"", 1]]","[[""Platinum Cutlass +1"", 1], null, null]"
+,84,"[[""Woodworking"", 41], [""Clothcraft"", 32]]",Shield Plaque,Fire,,"[[""Brass Ingot"", 1], [""Gold Ingot"", 1], [""Gold Sheet"", 1], [""Mythril Sheet"", 1], [""Rhodonite"", 1], [""Rosewood Lumber"", 1], [""Scarlet Linen"", 1], [""Turquoise"", 1]]","[null, null, null]"
+,85,[],Angel's Earring,Earth,,"[[""Angelstone"", 1], [""Platinum Earring"", 1]]","[[""Heavens Earring"", 1], null, null]"
+,85,[],Death Earring,Earth,,"[[""Deathstone"", 1], [""Platinum Earring"", 1]]","[[""Hades Earring"", 1], null, null]"
+,85,[],Diamond Earring,Earth,,"[[""Diamond"", 1], [""Platinum Earring"", 1]]","[[""Omniscient Earring"", 1], null, null]"
+,85,[],Emerald Earring,Earth,,"[[""Emerald"", 1], [""Platinum Earring"", 1]]","[[""Nimble Earring"", 1], null, null]"
+,85,[],Ruby Earring,Earth,,"[[""Ruby"", 1], [""Platinum Earring"", 1]]","[[""Triumph Earring"", 1], null, null]"
+,85,[],Sapphire Earring,Earth,,"[[""Sapphire"", 1], [""Platinum Earring"", 1]]","[[""Communion Earring"", 1], null, null]"
+,85,[],Spinel Earring,Earth,,"[[""Spinel"", 1], [""Platinum Earring"", 1]]","[[""Adroit Earring"", 1], null, null]"
+,85,[],Topaz Earring,Earth,,"[[""Topaz"", 1], [""Platinum Earring"", 1]]","[[""Robust Earring"", 1], null, null]"
+,85,"[[""Smithing"", 56]]",Epee,Fire,,"[[""Angelstone"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Mythril Ingot"", 1], [""Platinum Ingot"", 1], [""Steel Ingot"", 1]]","[[""Epee +1"", 1], null, null]"
+,85,[],Lord's Sabatons,Fire,,"[[""Darksteel Sabatons"", 1], [""Gold Ingot"", 1], [""Mercury"", 1]]","[[""King's Sabatons"", 1], null, null]"
+,85,[],Marble Plaque,Wind,,"[[""Amethyst"", 1], [""Black Ink"", 1], [""Bast Parchment"", 1], [""Marble Slab"", 1]]","[null, null, null]"
+,85,[],Platinum Bangles,Fire,,"[[""Platinum Ingot"", 4]]","[[""Platinum Bangles +1"", 1], null, null]"
+,85,[],Royal Knight Army Shield +1,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Royal Knight Army Shield"", 1]]","[[""Royal Knight Army Shield +2"", 1], null, null]"
+,85,[],Temple Knight Army Shield +1,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Temple Knight Army Shield"", 1]]","[[""Temple Knight Army Shield +2"", 1], null, null]"
+,85,[],Platinum Bangles,Fire,,"[[""Goldsmithing Kit 85"", 1]]","[null, null, null]"
+,86,"[[""Blacksmithing"", 45], [""Woodworking"", 42]]",Darksteel Sainti,Fire,,"[[""Darksteel Ingot"", 1], [""Ebony Lumber"", 1], [""Mercury"", 1], [""Platinum Ingot"", 2], [""Steel Ingot"", 1]]","[[""Darksteel Sainti +1"", 1], null, null]"
+,86,"[[""Clothcraft"", 55]]",Marble Bed,Wind,,"[[""Aquamarine"", 1], [""Gold Ingot"", 2], [""Marble"", 2], [""Rainbow Thread"", 1], [""Sarcenet Cloth"", 1], [""Silk Cloth"", 1]]","[null, null, null]"
+,86,[],Platinum Rod,Fire,,"[[""Gold Ingot"", 1], [""Platinum Ingot"", 1], [""Steel Ingot"", 1]]","[[""Platinum Rod +1"", 1], null, null]"
+,87,[],Dark Bead,Wind,,"[[""Dark Ore"", 1]]","[null, null, null]"
+,87,[],Light Bead,Wind,,"[[""Light Ore"", 1]]","[null, null, null]"
+,87,[],Fire Bead,Wind,,"[[""Fire Ore"", 1]]","[null, null, null]"
+,87,[],Water Bead,Wind,,"[[""Water Ore"", 1]]","[null, null, null]"
+,87,[],Lightning Bead,Wind,,"[[""Lightning Ore"", 1]]","[null, null, null]"
+,87,[],Earth Bead,Wind,,"[[""Earth Ore"", 1]]","[null, null, null]"
+,87,[],Wind Bead,Wind,,"[[""Wind Ore"", 1]]","[null, null, null]"
+,87,[],Ice Bead,Wind,,"[[""Ice Ore"", 1]]","[null, null, null]"
+,87,"[[""Woodworking"", 54], [""Smithing"", 46]]",Kazaridachi,Fire,,"[[""Ancient Lumber"", 1], [""Gold Ingot"", 1], [""Gold Thread"", 1], [""Iron Ingot"", 3], [""Tama-Hagane"", 1], [""Wyvern Skin"", 1]]","[[""Kazaridachi +1"", 1], null, null]"
+,88,[],Colichemarde,Fire,,"[[""Deathstone"", 1], [""Gold Ingot"", 1], [""Mailbreaker"", 1]]","[[""Colichemarde +1"", 1], null, null]"
+,88,[],Lord's Gauntlets,Fire,,"[[""Darksteel Gauntlets"", 1], [""Gold Ingot"", 2], [""Mercury"", 1]]","[[""King's Gauntlets"", 1], null, null]"
+,88,[],Musketeer's Sword +1,Fire,,"[[""Musketeer's Sword"", 1], [""Gold Ingot"", 1], [""Mercury"", 1]]","[[""Musketeer's Sword +2"", 1], null, null]"
+,88,[],Pigeon Earring,Earth,,"[[""Pigeon's Blood Ruby"", 1], [""Platinum Earring"", 1]]","[[""Pigeon Earring +1"", 1], null, null]"
+,88,[],Aqueous Orichalcum Ingot,Fire,Gold Ensorcellment,"[[""Dark Anima"", 1], [""Lightning Anima"", 1], [""Water Anima"", 1], [""Orichalcum Ore"", 3], [""Platinum Ore"", 1]]","[null, null, null]"
+,89,[],Lord's Cuirass,Fire,,"[[""Darksteel Cuirass"", 1], [""Gold Ingot"", 2], [""Gold Sheet"", 3], [""Mercury"", 1], [""Platinum Ingot"", 1]]","[[""King's Cuirass"", 1], null, null]"
+,89,[],Frigid Orichalcum Ingot,Fire,Gold Ensorcellment,"[[""Dark Anima"", 1], [""Ice Anima"", 2], [""Orichalcum Ore"", 3], [""Platinum Ore"", 1]]","[null, null, null]"
+,89,[],Spirit Orichalcum Ingot,Fire,Gold Ensorcellment,"[[""Dark Anima"", 1], [""Earth Anima"", 2], [""Orichalcum Ore"", 3], [""Platinum Ore"", 1]]","[null, null, null]"
+,89,[],Orichalcum Ingot,Fire,,"[[""Orichalcum Ore"", 3], [""Platinum Ore"", 1]]","[null, null, null]"
+,89,"[[""Smithing"", 45], [""Leathercraft"", 38]]",Barone Gambieras,Fire,,"[[""Buffalo Leather"", 2], [""Gold Ingot"", 1], [""Mercury"", 1], [""Orichalcum Sheet"", 2], [""Platinum Sheet"", 1]]","[[""Conte Gambieras"", 1], null, null]"
+,90,[],Angel's Earring,Earth,,"[[""Angelstone"", 1], [""Platinum Earring +1"", 1]]","[[""Heavens Earring +1"", 1], null, null]"
+,90,[],Death Earring,Earth,,"[[""Deathstone"", 1], [""Platinum Earring +1"", 1]]","[[""Hades Earring +1"", 1], null, null]"
+,90,[],Diamond Earring,Earth,,"[[""Diamond"", 1], [""Platinum Earring +1"", 1]]","[[""Omniscient Earring +1"", 1], null, null]"
+,90,[],Emerald Earring,Earth,,"[[""Emerald"", 1], [""Platinum Earring +1"", 1]]","[[""Nimble Earring +1"", 1], null, null]"
+,90,[],Ruby Earring,Earth,,"[[""Ruby"", 1], [""Platinum Earring +1"", 1]]","[[""Triumph Earring +1"", 1], null, null]"
+,90,[],Sapphire Earring,Earth,,"[[""Sapphire"", 1], [""Platinum Earring +1"", 1]]","[[""Communion Earring +1"", 1], null, null]"
+,90,[],Spinel Earring,Earth,,"[[""Spinel"", 1], [""Platinum Earring +1"", 1]]","[[""Adroit Earring +1"", 1], null, null]"
+,90,[],Topaz Earring,Earth,,"[[""Topaz"", 1], [""Platinum Earring +1"", 1]]","[[""Robust Earring +1"", 1], null, null]"
+,90,[],Diamond Shield,Earth,,"[[""Diamond"", 4], [""Kite Shield"", 1], [""Platinum Sheet"", 2]]","[[""Diamond Shield +1"", 1], null, null]"
+,90,[],Jeweled Collar,Earth,,"[[""Diamond"", 1], [""Emerald"", 1], [""Ruby"", 1], [""Sapphire"", 1], [""Spinel"", 1], [""Topaz"", 1], [""Torque"", 1], [""Gold Sheet"", 1]]","[[""Jeweled Collar +1"", 1], null, null]"
+,90,[],Messhikimaru,Fire,,"[[""Bewitched Gold"", 1], [""Kazaridachi"", 1]]","[null, null, null]"
+,90,[],Orichalcum Sheet,Fire,,"[[""Orichalcum Ingot"", 1]]","[null, null, null]"
+,90,[],Orichalcum Sheet,Fire,Sheeting,"[[""Orichalcum Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,90,[],Star Earring,Earth,,"[[""Star Sapphire"", 1], [""Orichalcum Earring"", 1]]","[[""Celestial Earring"", 1], null, null]"
+,90,[],Crimson Earring,Earth,,"[[""Pigeon's Blood Ruby"", 1], [""Orichalcum Earring"", 1]]","[[""Harmonius Earring"", 1], null, null]"
+,90,[],Wing Sword,Fire,,"[[""Gold Ingot"", 1], [""Jagdplaute"", 1], [""Mythril Ingot"", 1], [""Platinum Ingot"", 1], [""Ruby"", 1]]","[[""Wing Sword +1"", 1], null, null]"
+,90,[],Jeweled Collar,Earth,,"[[""Goldsmithing Kit 90"", 1]]","[null, null, null]"
+,91,"[[""Smithing"", 41]]",Barone Zucchetto,Fire,,"[[""Copper Ingot"", 1], [""Darksteel Sheet"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Orichalcum Sheet"", 1], [""Sapphire"", 1], [""Sheep Leather"", 1]]","[[""Conte Zucchetto"", 1], null, null]"
+,91,[],Cursed Crown,Fire,,"[[""Copper Ingot"", 1], [""Gold Ingot"", 1], [""Siren's Hair"", 1]]","[[""Cursed Crown -1"", 1], null, null]"
+,91,[],Orichalcum Chain,Earth,,"[[""Orichalcum Ingot"", 2]]","[[""Orichalcum Chain"", 4], null, null]"
+,91,[],Orichalcum Chain,Earth,Chainwork,"[[""Orichalcum Ingot"", 6]]","[[""Orichalcum Chain"", 12], null, null]"
+,91,[],Orichalcum Earring,Wind,,"[[""Orichalcum Ingot"", 2]]","[[""Triton Earring"", 1], null, null]"
+,91,[],Bewitched Schuhs,Fire,,"[[""Cursed Schuhs -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Schuhs"", 1], null, null]"
+,91,[],Vexed Gambieras,Earth,,"[[""Hexed Gambieras -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Gambieras"", 1], null, null]"
+,92,[],Muscle Belt,Fire,,"[[""Brass Ingot"", 1], [""Gold Ingot"", 1], [""Manticore Leather"", 1]]","[[""Muscle Belt +1"", 1], null, null]"
+,92,"[[""Smithing"", 41]]",Orichalcum Dagger,Fire,,"[[""Darksteel Ingot"", 1], [""Orichalcum Ingot"", 1], [""Ruby"", 1]]","[[""Triton's Dagger"", 1], null, null]"
+,92,[],Regen Cuirass,Fire,,"[[""Lord's Cuirass"", 1], [""Vivio Platinum"", 1]]","[null, null, null]"
+,92,[],Ponderous Lance,Fire,,"[[""Orichalcum Lance"", 1], [""Spirit Orichalcum"", 1]]","[null, null, null]"
+,92,[],Phrygian Earring,Wind,,"[[""Phrygian Gold Ingot"", 2]]","[[""Phrygian Earring +1"", 1], null, null]"
+,92,[],Bewitched Handschuhs,Fire,,"[[""Cursed Handschuhs -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Handschuhs"", 1], null, null]"
+,92,[],Vexed Gauntlets,Earth,,"[[""Hexed Gauntlets -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Gauntlets"", 1], null, null]"
+,93,"[[""Alchemy"", 41]]",Cursed Diechlings,Fire,,"[[""Cermet Chunk"", 1], [""Darksteel Cuisses"", 1], [""Platinum Ingot"", 1], [""Platinum Sheet"", 1]]","[[""Cursed Diechlings -1"", 1], null, null]"
+,93,"[[""Leathercraft"", 41], [""Woodworking"", 11]]",Hirenjaku,Fire,,"[[""Copper Ingot"", 1], [""Elm Lumber"", 1], [""Manta Leather"", 1], [""Orichalcum Ingot"", 1], [""Ruby"", 1], [""Silk Thread"", 1], [""Tama-Hagane"", 1]]","[[""Hirenjaku +1"", 1], null, null]"
+,93,[],Orichalcum Ring,Fire,,"[[""Orichalcum Ingot"", 2]]","[[""Triton Ring"", 1], null, null]"
+,93,"[[""Woodworking"", 52]]",Walahra Burner,Fire,,"[[""Ancient Lumber"", 1], [""Gold Ingot"", 1], [""Gold Sheet"", 2], [""Orichalcum Sheet"", 1]]","[null, null, null]"
+,93,[],Rhodium Ingot,Fire,,"[[""Rhodium Ore"", 4]]","[null, null, null]"
+,93,[],Bewitched Diechlings,Fire,,"[[""Cursed Diechlings -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Diechlings"", 1], null, null]"
+,94,"[[""Alchemy"", 41]]",Cursed Schuhs,Fire,,"[[""Cermet Chunk"", 2], [""Darksteel Sabatons"", 1], [""Platinum Ingot"", 2]]","[[""Cursed Schuhs -1"", 1], null, null]"
+,94,"[[""Smithing"", 51]]",Orichalcum Scythe,Fire,,"[[""Darksteel Ingot"", 2], [""Grass Cloth"", 1], [""Orichalcum Ingot"", 1], [""Ruby"", 1], [""Yew Lumber"", 1]]","[[""Triton's Scythe"", 1], null, null]"
+,94,"[[""Clothcraft"", 45]]",Buckler Plaque,Fire,,"[[""Fluorite"", 2], [""Mahogany Lumber"", 1], [""Mythril Ingot"", 1], [""Platinum Ingot"", 1], [""Platinum Sheet"", 1], [""Rainbow Velvet"", 1], [""Silver Sheet"", 1]]","[null, null, null]"
+,94,"[[""Smithing"", 60]]",Shirogatana,Fire,,"[[""Ancient Lumber"", 1], [""Iron Ingot"", 2], [""Manta Leather"", 1], [""Scintillant Ingot"", 1], [""Silver Ingot"", 1], [""Tama-Hagane"", 1], [""Wamoura Silk"", 1]]","[[""Shirogatana +1"", 1], null, null]"
+,94,"[[""Leathercraft"", 46]]",Brise-os,Fire,,"[[""Jadagna"", 1], [""Karakul Leather"", 1], [""Sahagin Gold"", 1]]","[[""Brise-os +1"", 1], null, null]"
+,94,[],Phrygian Ring,Fire,,"[[""Phrygian Gold Ingot"", 2]]","[[""Phrygian Ring +1"", 1], null, null]"
+,94,[],Bewitched Crown,Fire,,"[[""Cursed Crown -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Crown"", 1], null, null]"
+,94,[],Bewitched Schaller,Fire,,"[[""Cursed Schaller -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Schaller"", 1], null, null]"
+,94,[],Vexed Coronet,Fire,,"[[""Hexed Coronet -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Coronet"", 1], null, null]"
+,94,[],Phrygian Ring,Fire,,"[[""Goldsmithing Kit 94"", 1]]","[null, null, null]"
+,95,[],Angel's Ring,Earth,,"[[""Angelstone"", 1], [""Platinum Ring"", 1]]","[[""Heavens Ring"", 1], null, null]"
+,95,[],Death Ring,Earth,,"[[""Deathstone"", 1], [""Platinum Ring"", 1]]","[[""Hades Ring"", 1], null, null]"
+,95,[],Diamond Ring,Earth,,"[[""Diamond"", 1], [""Platinum Ring"", 1]]","[[""Omniscient Ring"", 1], null, null]"
+,95,[],Emerald Ring,Earth,,"[[""Emerald"", 1], [""Platinum Ring"", 1]]","[[""Nimble Ring"", 1], null, null]"
+,95,[],Ruby Ring,Earth,,"[[""Ruby"", 1], [""Platinum Ring"", 1]]","[[""Triumph Ring"", 1], null, null]"
+,95,[],Sapphire Ring,Earth,,"[[""Sapphire"", 1], [""Platinum Ring"", 1]]","[[""Communion Ring"", 1], null, null]"
+,95,[],Spinel Ring,Earth,,"[[""Spinel"", 1], [""Platinum Ring"", 1]]","[[""Adroit Ring"", 1], null, null]"
+,95,[],Topaz Ring,Earth,,"[[""Topaz"", 1], [""Platinum Ring"", 1]]","[[""Robust Ring"", 1], null, null]"
+,95,"[[""Clothcraft"", 60]]",Sha'ir Manteel,Earth,,"[[""Cashmere Cloth"", 1], [""Gold Sheet"", 1], [""Gold Thread"", 2], [""Ruby"", 1], [""Sapphire"", 1], [""Velvet Cloth"", 2]]","[[""Sheikh Manteel"", 1], null, null]"
+,95,[],Tojaku,Fire,,"[[""Hirenjaku"", 1], [""Spirit Orichalcum"", 1]]","[null, null, null]"
+,95,[],Snowsteel Sheet,Fire,,"[[""Snowsteel"", 1]]","[null, null, null]"
+,95,[],Snowsteel Sheet,Fire,Sheeting,"[[""Snowsteel"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,95,[],Bewitched Cuirass,Fire,,"[[""Cursed Cuirass -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Cuirass"", 1], null, null]"
+,95,[],Vexed Haubert,Earth,,"[[""Hexed Haubert -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Haubert"", 1], null, null]"
+,96,[],Cursed Handschuhs,Fire,,"[[""Cermet Chunk"", 1], [""Darksteel Gauntlets"", 1], [""Platinum Ingot"", 2]]","[[""Cursed Handschuhs -1"", 1], null, null]"
+,96,"[[""Woodworking"", 59], [""Smithing"", 42]]",Millionaire Desk,Earth,,"[[""Ancient Lumber"", 1], [""Darksteel Sheet"", 1], [""Gold Sheet"", 2], [""Granite"", 3], [""Platinum Sheet"", 1]]","[null, null, null]"
+,96,[],Poseidon's Ring,Fire,,"[[""Aqueous Orichalcum Ingot"", 1], [""Orichalcum Ring"", 1]]","[null, null, null]"
+,96,[],Rhodium Sheet,Fire,,"[[""Rhodium Ingot"", 1]]","[null, null, null]"
+,96,[],Rhodium Sheet,Fire,Sheeting,"[[""Rhodium Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,96,[],Akua Sainti,Fire,,"[[""Steel Ingot"", 1], [""Darksteel Ingot"", 1], [""Mercury"", 1], [""Rhodium Ingot"", 2], [""Urunday Lumber"", 1]]","[[""Akua Sainti +1"", 1], null, null]"
+,96,[],Rhodium Ring,Fire,,"[[""Rhodium Ingot"", 2]]","[[""Rhodium Ring +1"", 1], null, null]"
+,97,[],Blizzard Scythe,Fire,,"[[""Frigid Orichalcum"", 1], [""Orichalcum Scythe"", 1]]","[null, null, null]"
+,97,"[[""Smithing"", 51]]",Cursed Schaller,Fire,,"[[""Cermet Chunk"", 1], [""Copper Ingot"", 1], [""Darksteel Sheet"", 1], [""Gold Ingot"", 1], [""Platinum Chain"", 1], [""Platinum Sheet"", 1], [""Sheep Leather"", 1]]","[[""Cursed Schaller -1"", 1], null, null]"
+,97,"[[""Smithing"", 58]]",Koenig Shield,Earth,,"[[""Adaman Sheet"", 1], [""General's Shield"", 1], [""Gold Ingot"", 1], [""Gold Sheet"", 1]]","[[""Kaiser Shield"", 1], null, null]"
+,97,"[[""Smithing"", 41]]",Thurible,Fire,,"[[""Aht Urhgan Brass Sheet"", 3], [""Scintillant Ingot"", 1], [""Troll Bronze Ingot"", 1]]","[null, null, null]"
+,98,"[[""Alchemy"", 59]]",Cursed Cuirass,Fire,,"[[""Cermet Chunk"", 3], [""Darksteel Cuirass"", 1], [""Orichalcum Ingot"", 1], [""Platinum Chain"", 1], [""Platinum Ingot"", 1], [""Platinum Sheet"", 1]]","[[""Cursed Cuirass -1"", 1], null, null]"
+,98,[],Dark Lamp,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Dark Ore"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
+,98,[],Earth Lamp,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Earth Ore"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
+,98,[],Fire Lamp,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Fire Ore"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
+,98,[],Ice Lamp,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Ice Ore"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
+,98,[],Light Lamp,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Light Ore"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
+,98,[],Lightning Lamp,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Lightning Ore"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
+,98,[],Water Lamp,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Water Ore"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
+,98,[],Wind Lamp,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Wind Ore"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
+,98,[],Scintillant Ingot,Fire,,"[[""Orichalcum Ore"", 1], [""Luminium Ore"", 3]]","[null, null, null]"
+,98,[],Palladian Brass Ingot,Fire,,"[[""Palladian Brass Ore"", 4]]","[null, null, null]"
+,99,[],Angel's Ring,Earth,,"[[""Angelstone"", 1], [""Platinum Ring +1"", 1]]","[[""Heavens Ring +1"", 1], null, null]"
+,99,[],Death Ring,Earth,,"[[""Deathstone"", 1], [""Platinum Ring +1"", 1]]","[[""Hades Ring +1"", 1], null, null]"
+,99,[],Diamond Ring,Earth,,"[[""Diamond"", 1], [""Platinum Ring +1"", 1]]","[[""Omniscient Ring +1"", 1], null, null]"
+,99,[],Emerald Ring,Earth,,"[[""Emerald"", 1], [""Platinum Ring +1"", 1]]","[[""Nimble Ring +1"", 1], null, null]"
+,99,[],Ruby Ring,Earth,,"[[""Ruby"", 1], [""Platinum Ring +1"", 1]]","[[""Triumph Ring +1"", 1], null, null]"
+,99,[],Sapphire Ring,Earth,,"[[""Sapphire"", 1], [""Platinum Ring +1"", 1]]","[[""Communion Ring +1"", 1], null, null]"
+,99,[],Spinel Ring,Earth,,"[[""Spinel"", 1], [""Platinum Ring +1"", 1]]","[[""Adroit Ring +1"", 1], null, null]"
+,99,[],Topaz Ring,Earth,,"[[""Topaz"", 1], [""Platinum Ring +1"", 1]]","[[""Robust Ring +1"", 1], null, null]"
+,99,[],Shining Ring,Fire,,"[[""Orichalcum Ingot"", 1], [""Scintillant Ingot"", 1]]","[[""Scintillant Ring"", 1], null, null]"
+,99,"[[""Smithing"", 53]]",Verdun,Fire,,"[[""Adaman Ingot"", 2], [""Gold Ingot"", 1], [""Mercury"", 1], [""Platinum Ingot"", 1], [""Spinel"", 1]]","[[""Verdun +1"", 1], null, null]"
+,100,[],Palladian Brass Sheet,Fire,,"[[""Palladian Brass Ingot"", 1]]","[null, null, null]"
+,100,[],Brisingamen,Fire,,"[[""Freya's Tear"", 1], [""Gold Ingot"", 3], [""Gold Chain"", 1], [""Jeweled Collar"", 1], [""Platinum Chain"", 2]]","[[""Brisingamen +1"", 1], null, null]"
+,100,[],Imperial Egg,Fire,,"[[""Angelstone"", 1], [""Deathstone"", 1], [""Bird Egg"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Orichalcum Ingot"", 1], [""Pigeon's Blood Ruby"", 1], [""Platinum Ingot"", 1]]","[[""Tsar's Egg"", 1], null, null]"
+,100,"[[""Smithing"", 30]]",Ugol Moufles,Fire,,"[[""Chain Mittens"", 1], [""Durium Sheet"", 1], [""Palladian Brass Sheet"", 1]]","[[""Mavros Moufles"", 1], null, null]"
+,100,[],Evader Earring,Fire,,"[[""Palladian Brass Ingot"", 2]]","[[""Evader Earring +1"", 1], null, null]"
+,100,[],Crimson Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Pigeon's Blood Ruby"", 1]]","[[""Harmonius Ring"", 1], null, null]"
+,100,[],Star Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Star Sapphire"", 1]]","[[""Celestial Ring"", 1], null, null]"
+,100,[],Snowsteel,Fire,,"[[""Snowsteel Ore"", 4]]","[null, null, null]"
+,101,"[[""Smithing"", 43], [""Woodworking"", 41]]",Amood,Fire,,"[[""Darksteel Ingot"", 1], [""Ebony Lumber"", 1], [""Gold Ingot"", 1], [""Mythril Ingot"", 2], [""Scintillant Ingot"", 2], [""Turquoise"", 1]]","[[""Amood +1"", 1], null, null]"
+,102,[],Aqua Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Water Bead"", 1]]","[null, null, null]"
+,102,[],Breeze Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Wind Bead"", 1]]","[null, null, null]"
+,102,[],Dark Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Dark Bead"", 1]]","[null, null, null]"
+,102,[],Flame Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Fire Bead"", 1]]","[null, null, null]"
+,102,[],Light Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Light Bead"", 1]]","[null, null, null]"
+,102,[],Snow Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Ice Bead"", 1]]","[null, null, null]"
+,102,[],Soil Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Earth Bead"", 1]]","[null, null, null]"
+,102,[],Thunder Ring,Earth,,"[[""Orichalcum Ring"", 1], [""Lightning Bead"", 1]]","[null, null, null]"
+,102,[],Palladian Brass Chain,Earth,,"[[""Palladian Brass Ingot"", 2]]","[[""Palladian Brass Chain"", 2], [""Palladian Brass Chain"", 3], [""Palladian Brass Chain"", 4]]"
+,102,"[[""Smithing"", 33]]",Ugol Sollerets,Fire,,"[[""Palladian Brass Sheet"", 1], [""Durium Sheet"", 1], [""Greaves"", 1]]","[[""Mavros Sollerets"", 1], null, null]"
+,105,[],Arasy Scythe,Fire,,"[[""Adaman Ingot"", 1], [""Ruby"", 1], [""Rhodium Ingot"", 1], [""Akaso Cloth"", 1]]","[[""Arasy Scythe +1"", 1], null, null]"
+,103,"[[""Leathercraft"", 40]]",Hexed Gambieras,Earth,,"[[""Ormolu Ingot"", 2], [""Aht Urhgan Brass Ingot"", 1], [""Black Sollerets"", 1], [""Pelt of Dawon"", 1]]","[[""Hexed Gambieras -1"", 1], null, null]"
+,103,"[[""Leathercraft"", 35], [""Clothcraft"", 22]]",Ugol Brayettes,Fire,,"[[""Durium Chain"", 1], [""Palladian Brass Chain"", 1], [""Linen Cloth"", 1], [""Light Ram Leather"", 2]]","[[""Mavros Brayettes"", 1], null, null]"
+,103,[],Ugol Salade,Fire,,"[[""Palladian Brass Sheet"", 1], [""Durium Ingot"", 1], [""Palladian Brass Chain"", 1], [""Vivio Sheep Leather"", 1], [""Scintillant Ingot"", 2]]","[[""Mavros Salade"", 1], null, null]"
+,104,"[[""Leathercraft"", 39]]",Silver Cassandra,Fire,,"[[""Darksteel Hexagun"", 1], [""Mercury"", 1], [""Orichalcum Ingot"", 2], [""Silver Ingot"", 1], [""Smilodon Leather"", 1]]","[[""Great Cassandra"", 1], null, null]"
+,105,"[[""Clothcraft"", 33]]",Ugol Haubert,Fire,,"[[""Palladian Brass Sheet"", 1], [""Durium Ingot"", 1], [""Durium Sheet"", 1], [""Palladian Brass Chain"", 3], [""Velvet Cloth"", 1], [""Silk Cloth"", 1]]","[[""Mavros Haubert"", 1], null, null]"
+,105,[],Hepatizon Ingot,Fire,,"[[""Mythril Ore"", 3], [""Hepatizon Ore"", 1]]","[null, null, null]"
+,105,[],Nepenthe Grip,Fire,Chainwork,"[[""Mandrel"", 1], [""Rhodium Ingot"", 1], [""Gabbrath Horn"", 1]]","[[""Nepenthe Grip +1"", 1], null, null]"
+,105,[],Gracile Grip,Fire,Chainwork,"[[""Mandrel"", 1], [""Rhodium Ingot"", 1], [""Waktza Crest"", 1]]","[[""Gracile Grip +1"", 1], null, null]"
+,105,[],Ruthenium Ingot,Fire,,"[[""Ruthenium Ore"", 4]]","[null, null, null]"
+,106,[],Hepatizon Baghnakhs,Earth,,"[[""Raaz Leather"", 1], [""Hepatizon Ingot"", 1], [""Maliyakaleya Orb"", 3]]","[[""Hepatizon Baghnakhs +1"", 1], null, null]"
+,106,[],Hepatizon Rapier,Fire,,"[[""Orichalcum Ingot"", 1], [""Mercury"", 1], [""Star Sapphire"", 1], [""Hepatizon Ingot"", 2]]","[[""Hepatizon Rapier +1"", 1], null, null]"
+,106,[],Hepatizon Sapara,Fire,,"[[""Orichalcum Ingot"", 1], [""Hepatizon Ingot"", 2]]","[[""Hepatizon Sapara +1"", 1], null, null]"
+,106,[],Hepatizon Axe,Fire,,"[[""Urunday Lumber"", 1], [""Hepatizon Ingot"", 3]]","[[""Hepatizon Axe +1"", 1], null, null]"
+,107,"[[""Leathercraft"", 40]]",Hexed Coronet,Fire,,"[[""Ormolu Ingot"", 1], [""Freya's Tear"", 1], [""Aht Urhgan Brass Ingot"", 1], [""Aht Urhgan Brass Sheet"", 1], [""Cerberus Leather"", 1]]","[[""Hexed Coronet -1"", 1], null, null]"
+,108,"[[""Leathercraft"", 39]]",Hexed Gauntlets,Earth,,"[[""Ormolu Ingot"", 1], [""Black Gadlings"", 1], [""Aht Urhgan Brass Ingot"", 1], [""Pelt of Dawon"", 1]]","[[""Hexed Gauntlets -1"", 1], null, null]"
+,110,"[[""Clothcraft"", 30]]",Hexed Haubert,Earth,,"[[""Ormolu Ingot"", 3], [""Freya's Tear"", 1], [""Aht Urhgan Brass Ingot"", 1], [""Bloodthread"", 1], [""Plastron"", 1]]","[[""Hexed Haubert -1"", 1], null, null]"
+,110,"[[""Clothcraft"", 55]]",Cleric's Torque,Light,,"[[""Waktza Crest"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Torque"", 1]]","[[""Cleric's Torque +1"", 1], [""Cleric's Torque +2"", 1], null]"
+,110,"[[""Clothcraft"", 55]]",Duelist's Torque,Light,,"[[""Waktza Crest"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Torque"", 1]]","[[""Duelist's Torque +1"", 1], [""Duelist's Torque +2"", 1], null]"
+,110,"[[""Clothcraft"", 55]]",Futhark Torque,Light,,"[[""Waktza Crest"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Torque"", 1]]","[[""Futhark Torque +1"", 1], [""Futhark Torque +2"", 1], null]"
+,111,"[[""Alchemy"", 70]]",Bewitched Schuhs,Fire,,"[[""Cursed Schuhs"", 1], [""Macuil Plating"", 1], [""Douma Weapon's Shard"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Schuhs"", 1], null, null]"
+,111,"[[""Leathercraft"", 70]]",Vexed Gambieras,Earth,,"[[""Hepatizon Ingot"", 1], [""Immanibugard's Hide"", 1], [""Eschite Ore"", 1], [""Hexed Gambieras"", 1]]","[[""Jinxed Gambieras"", 1], null, null]"
+,111,[],Melee Fists,Light,Goldsmith's aurum tome,"[[""Leathercraft - (Information Needed)"", 1], [""Hades' Claw"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Weapon"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Hesychast's Fists"", 1], [""Sagitta"", 1], null]"
+,111,[],Pantin Fists,Light,Goldsmith's aurum tome,"[[""Leathercraft - (Information Needed)"", 1], [""Hades' Claw"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Weapon"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Pitre Fists"", 1], [""Xiucoatl"", 1], null]"
+,111,[],Mirage Sword,Light,Goldsmith's aurum tome,"[[""Clothcraft - (Information Needed)"", 1], [""Plovid Flesh"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Sword"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Luhlaza Sword"", 1], [""Zomorrodnegar"", 1], null]"
+,111,[],Valor Sword,Light,Goldsmith's aurum tome,"[[""Clothcraft - (Information Needed)"", 1], [""Plovid Flesh"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Sword"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Caballarius Sword"", 1], [""Moralltach"", 1], null]"
+,111,[],Duelist's Sword,Light,Goldsmith's aurum tome,"[[""Clothcraft - (Information Needed)"", 1], [""Plovid Flesh"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Sword"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Vitiation Sword"", 1], [""Crocea Mors"", 1], null]"
+,112,"[[""Alchemy"", 70]]",Bewitched Handschuhs,Fire,,"[[""Cursed Handschuhs"", 1], [""Macuil Plating"", 1], [""Douma Weapon's Shard"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Handschuhs"", 1], null, null]"
+,112,"[[""Leathercraft"", 70]]",Vexed Gauntlets,Earth,,"[[""Hepatizon Ingot"", 1], [""Immanibugard's Hide"", 1], [""Eschite Ore"", 1], [""Hexed Gauntlets"", 1]]","[[""Jinxed Gauntlets"", 1], null, null]"
+,113,[],Sharur,Fire,,"[[""Ormolu Ingot"", 1], [""Mercury"", 1], [""Urunday Lumber"", 1], [""Bztavian Stinger"", 1]]","[[""Sharur +1"", 1], null, null]"
+,113,"[[""Alchemy"", 70]]",Bewitched Diechlings,Fire,,"[[""Cursed Diechlings"", 1], [""Macuil Plating"", 1], [""Douma Weapon's Shard"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Diechlings"", 1], null, null]"
+,114,"[[""Clothcraft"", 70]]",Bewitched Crown,Fire,,"[[""Cursed Crown"", 1], [""Hepatizon Ingot"", 1], [""Sif's Macrame"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Crown"", 1], null, null]"
+,114,"[[""Alchemy"", 70]]",Bewitched Schaller,Fire,,"[[""Cursed Schaller"", 1], [""Macuil Plating"", 1], [""Douma Weapon's Shard"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Schaller"", 1], null, null]"
+,114,"[[""Leathercraft"", 70]]",Vexed Coronet,Fire,,"[[""Hepatizon Ingot"", 1], [""Immanibugard's Hide"", 1], [""Eschite Ore"", 1], [""Hexed Coronet"", 1]]","[[""Jinxed Coronet"", 1], null, null]"
+,115,[],Ravenous Breastplate,Fire,,"[[""Ormolu Ingot"", 1], [""Gold Thread"", 1], [""Sealord Leather"", 1], [""Rhodium Ingot"", 1], [""Macuil Plating"", 2]]","[[""Ravenous Breastplate +1"", 1], null, null]"
+,115,[],Stikini Ring,Fire,,"[[""Koh-I-Noor"", 1], [""Dark Matter"", 2], [""Tartarian Chain"", 2]]","[[""Stikini Ring +1"", 1], null, null]"
+,115,"[[""Alchemy"", 70]]",Bewitched Cuirass,Fire,,"[[""Cursed Cuirass"", 1], [""Macuil Plating"", 1], [""Douma Weapon's Shard"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Cuirass"", 1], null, null]"
+,115,"[[""Leathercraft"", 70]]",Vexed Haubert,Earth,,"[[""Hepatizon Ingot"", 1], [""Immanibugard's Hide"", 1], [""Eschite Ore"", 1], [""Hexed Haubert"", 1]]","[[""Jinxed Haubert"", 1], null, null]"
+,115,[],Balder Earring,Fire,,"[[""Ruthenium Ingot"", 2], [""Wyrm Ash"", 1]]","[[""Balder Earring +1"", 1], null, null]"
+,115,[],Moonbeam Necklace,Earth,,"[[""Moonbow Stone"", 1], [""Moonlight Coral"", 1], [""Khoma Thread"", 1]]","[[""Moonlight Necklace"", 1], null, null]"
+,115,[],Enriching Sword,Fire,,"[[""Moonbow Steel"", 1], [""Niobium Ingot"", 1], [""Moonbow Stone"", 1], [""Enhancing Sword"", 1]]","[[""Enriching Sword +1"", 1], null, null]"
+,115,[],Turms Leggings,Fire,Goldsmith's argentum tome,"[[""Tiger Leather"", 1], [""Bztavian Wing"", 1], [""Macuil Horn"", 1], [""Ruthenium Ore"", 3]]","[[""Turms Leggings +1"", 1], null, null]"
+,115,[],Turms Mittens,Fire,Goldsmith's argentum tome,"[[""Tiger Leather"", 2], [""Bztavian Wing"", 1], [""Macuil Horn"", 1], [""Ruthenium Ore"", 3]]","[[""Turms Mittens +1"", 1], null, null]"
+,115,[],Turms Cap,Fire,Goldsmith's argentum tome,"[[""Tiger Leather"", 1], [""Cermet Chunk"", 1], [""Bztavian Wing"", 1], [""Macuil Horn"", 1], [""Ruthenium Ore"", 3]]","[[""Turms Cap +1"", 1], null, null]"
+,115,[],Turms Subligar,Fire,Goldsmith's argentum tome,"[[""Tiger Leather"", 1], [""Cermet Chunk"", 1], [""Bztavian Wing"", 1], [""Macuil Horn"", 1], [""Ruthenium Ore"", 1], [""Ruthenium Ingot"", 1]]","[[""Turms Subligar +1"", 1], null, null]"
+,115,[],Turms Harness,Fire,Goldsmith's argentum tome,"[[""Tiger Leather"", 1], [""Cermet Chunk"", 1], [""Bztavian Wing"", 1], [""Macuil Horn"", 2], [""Ruthenium Ore"", 1], [""Ruthenium Ingot"", 1]]","[[""Turms Harness +1"", 1], null, null]"
+,115,[],Raetic Baghnakhs,Fire,Goldsmith's argentum tome,"[[""Ruthenium Ingot"", 1], [""Rune Baghnakhs"", 1]]","[[""Raetic Baghnakhs +1"", 1], null, null]"
+,115,[],Raetic Blade,Fire,Goldsmith's argentum tome,"[[""Ruthenium Ingot"", 1], [""Rune Blade"", 1]]","[[""Raetic Blade +1"", 1], null, null]"
+,118,[],Mache Earring,Fire,,"[[""Shadow Gem"", 1], [""Hepatizon Ingot"", 1], [""Tartarian Soul"", 1]]","[[""Mache Earring +1"", 1], null, null]"
diff --git a/datasets/Leathercraft.txt b/datasets/Leathercraft.txt
index a5ff780..5e31719 100644
--- a/datasets/Leathercraft.txt
+++ b/datasets/Leathercraft.txt
@@ -1,7 +1,5 @@
Leathercraft Crafted Items
-Amateur (1-10)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Sheep Leather
@@ -276,9 +274,7 @@ Main Craft: Leathercraft - (10)
Leathercraft Kit 10
-Recruit (11-20)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Leather Pouch
@@ -610,9 +606,7 @@ Main Craft: Leathercraft - (20)
Leathercraft Kit 20
-Initiate (21-30)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Dhalmel Leather
@@ -1147,9 +1141,7 @@ Main Craft: Leathercraft - (30)
Leathercraft Kit 30
-Novice (31-40)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Parchment
@@ -1594,9 +1586,7 @@ Main Craft: Leathercraft - (40)
Leathercraft Kit 40
-Apprentice (41-50)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Barbarian's Belt
@@ -1917,9 +1907,7 @@ Main Craft: Leathercraft - (50)
Leathercraft Kit 50
-Journeyman (51-60)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Frigid Skin
@@ -2318,9 +2306,7 @@ Main Craft: Leathercraft - (60)
Leathercraft Kit 60
-Craftsman (61-70)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Tiger Leather
@@ -2843,9 +2829,7 @@ Main Craft: Leathercraft - (70)
Leathercraft Kit 70
-Artisan (71-80)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Coeurl Leather
@@ -3483,9 +3467,7 @@ Sub Craft(s): Smithing - (34)
Darksteel Sheet
-Adept (81-90)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Marid Belt
@@ -4341,9 +4323,7 @@ Main Craft: Leathercraft - (90)
Leathercraft Kit 90
-Veteran (91-100)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Bison Wristbands
@@ -5272,9 +5252,7 @@ Main Craft: Leathercraft - (100)
Bounding Belinda's Hide
-Expert (101-110)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Corselet
@@ -5802,9 +5780,7 @@ Sub Craft(s): Bonecraft - (55)
Moldy Collar
-Authority (111-120)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Bewitched Pumps
diff --git a/datasets/Leathercraft_v2.csv b/datasets/Leathercraft_v2.csv
index ec7b9df..c4c098e 100644
--- a/datasets/Leathercraft_v2.csv
+++ b/datasets/Leathercraft_v2.csv
@@ -1,443 +1,443 @@
category,level,subcrafts,name,crystal,key_item,ingredients,hq_yields
-Amateur,2,[],Sheep Leather,Dark,,"[[""Sheepskin"", 1], [""Willow Log"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,2,[],Sheep Leather,Dark,,"[[""Sheepskin"", 1], [""Windurstian Tea Leaves"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,2,[],Sheep Leather,Dark,Tanning,"[[""Sheepskin"", 3], [""Windurstian Tea Leaves"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,2,[],Smooth Sheep Leather,Dark,Leather Purification,"[[""Sheepskin"", 1], [""Willow Log"", 1], [""Distilled Water"", 1], [""Wind Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,2,[],Smooth Sheep Leather,Dark,Leather Purification,"[[""Sheepskin"", 1], [""Windurstian Tea Leaves"", 1], [""Distilled Water"", 1], [""Wind Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,2,[],Vivio Sheep Leather,Dark,Leather Purification,"[[""Sheepskin"", 1], [""Willow Log"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,2,[],Vivio Sheep Leather,Dark,Leather Purification,"[[""Sheepskin"", 1], [""Windurstian Tea Leaves"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,3,"[[""Woodworking"", 1]]",Cesti,Earth,,"[[""Ash Lumber"", 1], [""Sheep Leather"", 2]]","[[""Cesti +1"", 1], null, null]"
-Amateur,3,[],Vagabond's Gloves,Earth,,"[[""Sheep Leather"", 2], [""Cotton Cloth"", 1]]","[[""Nomad's Gloves"", 1], null, null]"
-Amateur,4,[],Sheep Wool,Wind,,"[[""Sheepskin"", 2]]","[null, null, null]"
-Amateur,5,[],Leather Bandana,Wind,,"[[""Sheep Leather"", 1]]","[[""Leather Bandana +1"", 1], null, null]"
-Amateur,5,[],Vagabond's Boots,Earth,,"[[""Bronze Scales"", 1], [""Grass Cloth"", 1], [""Sheep Leather"", 2]]","[[""Nomad's Boots"", 1], null, null]"
-Amateur,5,[],Leather Bandana,Wind,,"[[""Leathercraft Kit 5"", 1]]","[null, null, null]"
-Amateur,5,[],Fine Parchment,Dark,,"[[""Parchment"", 1], [""Pumice Stone"", 1]]","[null, null, null]"
-Amateur,6,[],Leather Highboots,Earth,,"[[""Bronze Scales"", 1], [""Sheep Leather"", 3]]","[[""Leather Highboots +1"", 1], null, null]"
-Amateur,7,[],Rabbit Mantle,Earth,,"[[""Rabbit Hide"", 5], [""Grass Thread"", 1]]","[[""Rabbit Mantle +1"", 1], null, null]"
-Amateur,8,[],Leather Gloves,Earth,,"[[""Grass Cloth"", 1], [""Sheep Leather"", 2]]","[[""Leather Gloves +1"", 1], null, null]"
-Amateur,8,[],San d'Orian Cesti,Earth,,"[[""Royal Archer's Cesti"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Cesti"", 1], null, null]"
-Amateur,9,[],Leather Trousers,Earth,,"[[""Grass Cloth"", 2], [""Sheep Leather"", 2]]","[[""Leather Trousers +1"", 1], null, null]"
-Amateur,10,[],Leather Vest,Earth,,"[[""Sheep Leather"", 3], [""Lizard Skin"", 1]]","[[""Leather Vest +1"", 1], null, null]"
-Amateur,10,[],Leather Vest,Earth,,"[[""Leathercraft Kit 10"", 1], [""Recruit (11-20)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,11,"[[""Smithing"", 4]]",Leather Pouch,Earth,,"[[""Bronze Scales"", 1], [""Sheep Leather"", 2], [""Rabbit Hide"", 1]]","[null, null, null]"
-Amateur,11,[],Solea,Wind,,"[[""Sheep Leather"", 2]]","[[""Solea +1"", 1], null, null]"
-Amateur,12,[],Karakul Leather,Dark,,"[[""Karakul Skin"", 1], [""Imperial Tea Leaves"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,12,[],Karakul Leather,Dark,Tanning,"[[""Karakul Skin"", 3], [""Imperial Tea Leaves"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,12,[],Lizard Belt,Wind,,"[[""Lizard Skin"", 1], [""Iron Chain"", 1]]","[[""Lizard Belt +1"", 1], null, null]"
-Amateur,12,[],Sturdy Trousers,Earth,Leather Purification,"[[""Leather Trousers"", 1], [""Lambent Fire Cell"", 1], [""Lambent Earth Cell"", 1]]","[null, null, null]"
-Amateur,12,[],Lizard Strap,Wind,,"[[""Lizard Skin"", 2]]","[[""Lizard Strap +1"", 1], null, null]"
-Amateur,13,[],Leather Belt,Wind,,"[[""Sheep Leather"", 1], [""Iron Chain"", 1]]","[[""Leather Belt +1"", 1], null, null]"
-Amateur,14,[],Fisherman's Gloves,Earth,,"[[""Lizard Skin"", 2], [""Cotton Cloth"", 1]]","[[""Angler's Gloves"", 1], null, null]"
-Amateur,14,[],Karakul Wool,Wind,,"[[""Karakul Skin"", 2]]","[null, null, null]"
-Amateur,14,[],Lizard Mantle,Earth,,"[[""Lizard Skin"", 1], [""Lizard Molt"", 1], [""Grass Thread"", 1]]","[[""Lizard Mantle +1"", 1], null, null]"
-Amateur,15,[],Lizard Helm,Earth,,"[[""Lizard Skin"", 2], [""Sheep Leather"", 1]]","[[""Lizard Helm +1"", 1], null, null]"
-Amateur,15,[],Lizard Helm,Earth,,"[[""Leathercraft Kit 15"", 1]]","[null, null, null]"
-Amateur,16,[],Augmenting Belt,Wind,Leather Purification,"[[""Lambent Fire Cell"", 1], [""Lambent Earth Cell"", 1], [""Leather Belt"", 1]]","[null, null, null]"
-Amateur,16,[],Lizard Gloves,Earth,,"[[""Lizard Skin"", 1], [""Leather Gloves"", 1]]","[[""Fine Gloves"", 1], null, null]"
-Amateur,17,[],Lizard Cesti,Earth,,"[[""Cesti"", 1], [""Lizard Skin"", 1]]","[[""Burning Cesti"", 1], null, null]"
-Amateur,17,[],Exactitude Mantle,Earth,,"[[""Immortal Molt"", 1], [""Lizard Skin"", 1], [""Grass Thread"", 1]]","[[""Exactitude Mantle +1"", 1], null, null]"
-Amateur,18,"[[""Goldsmithing"", 5]]",Lizard Ledelsens,Earth,,"[[""Lizard Skin"", 1], [""Brass Sheet"", 1], [""Leather Highboots"", 1]]","[[""Fine Ledelsens"", 1], null, null]"
-Amateur,18,[],Lizard Trousers,Earth,,"[[""Lizard Skin"", 2], [""Leather Trousers"", 1]]","[[""Fine Trousers"", 1], null, null]"
-Amateur,19,[],Lizard Jerkin,Earth,,"[[""Lizard Skin"", 3], [""Sheep Leather"", 1]]","[[""Fine Jerkin"", 1], null, null]"
-Amateur,19,[],Wolf Fur,Wind,,"[[""Wolf Hide"", 3]]","[null, null, null]"
-Amateur,20,[],Fisherman's Boots,Earth,,"[[""Lizard Skin"", 2], [""Bronze Scales"", 1], [""Grass Cloth"", 1]]","[[""Angler's Boots"", 1], null, null]"
-Amateur,20,[],Little Worm Belt,Earth,,"[[""Sheep Leather"", 1], [""Animal Glue"", 1], [""Leather Pouch"", 1], [""Worm Mulch"", 1]]","[null, null, null]"
-Amateur,20,[],Lugworm Belt,Earth,,"[[""Sheep Leather"", 1], [""Animal Glue"", 1], [""Leather Pouch"", 1], [""Lugworm Sand"", 1]]","[null, null, null]"
-Amateur,20,[],Smash Cesti,Earth,Leather Ensorcellment,"[[""Lambent Earth Cell"", 1], [""Lambent Wind Cell"", 1], [""Lizard Cesti"", 1]]","[null, null, null]"
-Amateur,20,[],Fisherman's Boots,Earth,,"[[""Leathercraft Kit 20"", 1], [""Initiate (21-30)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,21,[],Dhalmel Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Dhalmel Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,21,[],Dhalmel Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Dhalmel Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,21,[],Dhalmel Leather,Dark,,"[[""Willow Log"", 1], [""Dhalmel Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,21,[],Fragrant Dhalmel Hide,Water,Leather Ensorcellment,"[[""Dhalmel Hide"", 1], [""Wind Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
-Amateur,21,[],Tough Dhalmel Leather,Dark,Leather Ensorcellment,"[[""Dhalmel Hide"", 1], [""Windurstian Tea Leaves"", 1], [""Distilled Water"", 1], [""Wind Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
-Amateur,21,[],Tough Dhalmel Leather,Dark,Leather Ensorcellment,"[[""Dhalmel Hide"", 1], [""Willow Log"", 1], [""Distilled Water"", 1], [""Wind Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
-Amateur,22,[],Leather Ring,Wind,,"[[""Dhalmel Leather"", 1]]","[[""Leather Ring +1"", 1], null, null]"
-Amateur,22,[],Chocobo Blinkers,Earth,,"[[""Linen Cloth"", 1], [""Silk Cloth"", 1], [""Karakul Leather"", 1]]","[[""Chocobo Blinkers x6 Verification Needed"", 1], [""Chocobo Blinkers x9 Verification Needed"", 1], [""Chocobo Blinkers x12 Verification Needed"", 1]]"
-Amateur,23,[],Chocobo Gloves,Earth,,"[[""Dhalmel Leather"", 1], [""Lizard Skin"", 1], [""Cotton Cloth"", 1]]","[[""Rider's Gloves"", 1], null, null]"
-Amateur,24,[],Bugard Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,24,[],Bugard Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Bugard Skin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,24,[],Bugard Leather,Dark,,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,24,[],Glossy Bugard Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Wind Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,24,[],Glossy Bugard Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Wind Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,24,[],Rugged Bugard Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Fire Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,24,[],Rugged Bugard Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Fire Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,24,[],Soft Bugard Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Lightning Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,24,[],Soft Bugard Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Lightning Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,24,[],Studded Bandana,Earth,,"[[""Iron Chain"", 1], [""Leather Bandana"", 1]]","[[""Strong Bandana"", 1], null, null]"
-Amateur,24,[],Tough Bugard Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Earth Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,24,[],Tough Bugard Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Earth Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,25,[],Armored Ring,Wind,,"[[""Tough Dhalmel Leather"", 1], [""Leather Ring"", 1]]","[null, null, null]"
-Amateur,25,"[[""Clothcraft"", 20]]",Seer's Pumps,Earth,,"[[""Wool Thread"", 2], [""Cotton Cloth"", 2], [""Sheep Leather"", 1]]","[[""Seer's Pumps +1"", 1], null, null]"
-Amateur,25,[],Warrior's Belt,Wind,,"[[""Iron Chain"", 1], [""Dhalmel Leather"", 1]]","[[""Warrior's Belt +1"", 1], null, null]"
-Amateur,25,[],Warrior's Belt,Wind,,"[[""Leathercraft Kit 25"", 1]]","[null, null, null]"
-Amateur,26,[],Studded Gloves,Earth,,"[[""Iron Chain"", 1], [""Dhalmel Leather"", 1], [""Leather Gloves"", 1]]","[[""Strong Gloves"", 1], null, null]"
-Amateur,26,"[[""Clothcraft"", 21]]",Trader's Pigaches,Earth,,"[[""Dhalmel Leather"", 1], [""Sheep Leather"", 1], [""Red Grass Thread"", 1], [""Red Grass Cloth"", 2]]","[[""Baron's Pigaches"", 1], null, null]"
-Amateur,27,[],Dhalmel Mantle,Ice,,"[[""Dhalmel Hide"", 1], [""Wool Thread"", 1]]","[[""Dhalmel Mantle +1"", 1], null, null]"
-Amateur,28,"[[""Clothcraft"", 27]]",Noct Brais,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 2], [""Sheep Leather"", 1]]","[[""Noct Brais +1"", 1], null, null]"
-Amateur,28,[],Studded Boots,Earth,,"[[""Iron Chain"", 1], [""Dhalmel Leather"", 1], [""Leather Highboots"", 1]]","[[""Strong Boots"", 1], null, null]"
-Amateur,29,[],San d'Orian Bandana,Earth,,"[[""Royal Footman's Bandana"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Bandana"", 1], null, null]"
-Amateur,29,[],Sandals,Wind,,"[[""Dhalmel Leather"", 1], [""Sheep Leather"", 1]]","[[""Mage's Sandals"", 1], null, null]"
-Amateur,29,[],Aiming Gloves,Earth,Leather Ensorcellment,"[[""Lambent Water Cell"", 1], [""Lambent Wind Cell"", 1], [""Studded Gloves"", 1]]","[null, null, null]"
-Amateur,29,[],Dhalmel Hair,Wind,,"[[""Dhalmel Hide"", 3]]","[[""Dhalmel Hair"", 2], [""Dhalmel Hair"", 3], [""Dhalmel Hair"", 4]]"
-Amateur,30,[],Breath Mantle,Ice,,"[[""Fragrant Dhalmel Hide"", 1], [""Dhalmel Mantle"", 1]]","[null, null, null]"
-Amateur,30,[],Caliginous Wolf Hide,Ice,Leather Purification,"[[""Wolf Hide"", 1], [""Earth Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,30,[],Chocobo Boots,Earth,,"[[""Dhalmel Leather"", 2], [""Bronze Scales"", 1], [""Grass Cloth"", 1]]","[[""Rider's Boots"", 1], null, null]"
-Amateur,30,[],Studded Trousers,Earth,,"[[""Iron Chain"", 1], [""Dhalmel Leather"", 1], [""Leather Trousers"", 1]]","[[""Strong Trousers"", 1], null, null]"
-Amateur,30,[],Studded Trousers,Earth,,"[[""Leathercraft Kit 30"", 1], [""Novice (31-40)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,31,[],Parchment,Dark,,"[[""Karakul Leather"", 1], [""Rolanberry"", 1]]","[null, null, null]"
-Amateur,31,[],Parchment,Dark,,"[[""Rolanberry"", 1], [""Sheep Leather"", 1]]","[[""Parchment"", 2], [""Parchment"", 3], [""Parchment"", 4]]"
-Amateur,31,[],San d'Orian Gloves,Earth,,"[[""Royal Footman's Gloves"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Gloves"", 1], null, null]"
-Amateur,31,[],Vellum,Dark,,"[[""Rolanberry"", 1], [""Sheep Leather"", 1], [""Gold Dust"", 1]]","[[""Vellum"", 4], null, null]"
-Amateur,32,[],Studded Vest,Earth,,"[[""Dhalmel Leather"", 1], [""Ram Leather"", 1], [""Iron Chain"", 1], [""Leather Vest"", 1]]","[[""Strong Vest"", 1], null, null]"
-Amateur,33,[],Field Gloves,Earth,,"[[""Dhalmel Leather"", 1], [""Cotton Cloth"", 1], [""Ram Leather"", 1]]","[[""Worker Gloves"", 1], null, null]"
-Amateur,33,[],San d'Orian Boots,Earth,,"[[""Royal Footman's Boots"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Boots"", 1], null, null]"
-Amateur,33,[],Wolf Mantle,Ice,,"[[""Wolf Hide"", 1], [""Wool Thread"", 1]]","[[""Wolf Mantle +1"", 1], null, null]"
-Amateur,34,"[[""Clothcraft"", 8]]",Shoes,Earth,,"[[""Dhalmel Leather"", 2], [""Cotton Cloth"", 1]]","[[""Shoes +1"", 1], null, null]"
-Amateur,35,[],Bloody Ram Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Ram Skin"", 1], [""Earth Anima"", 1], [""Lightning Anima"", 1], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,35,[],Healing Vest,Earth,,"[[""Vivio Sheep Leather"", 1], [""Studded Vest"", 1]]","[null, null, null]"
-Amateur,35,[],Light Ram Leather,Dark,Leather Purification,"[[""Ram Skin"", 1], [""Windurstian Tea Leaves"", 1], [""Distilled Water"", 1], [""Ice Anima"", 1], [""Lightning Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,35,[],Ram Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Ram Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,35,[],Ram Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Ram Skin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,35,[],San d'Orian Trousers,Earth,,"[[""Royal Footman's Trousers"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Trousers"", 1], null, null]"
-Amateur,35,[],Ram Leather,Dark,,"[[""Leathercraft Kit 35"", 1]]","[null, null, null]"
-Amateur,36,[],Bloody Ram Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Ram Skin"", 1], [""Earth Anima"", 1], [""Lightning Anima"", 1], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,36,[],Fragrant Ram Skin,Water,Leather Ensorcellment,"[[""Ram Skin"", 1], [""Wind Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
-Amateur,36,[],Invisible Mantle,Ice,,"[[""Caliginous Wolf Hide"", 1], [""Wolf Mantle"", 1]]","[null, null, null]"
-Amateur,36,[],Light Ram Leather,Dark,Leather Purification,"[[""Ram Skin"", 1], [""Willow Log"", 1], [""Distilled Water"", 1], [""Ice Anima"", 1], [""Lightning Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,36,[],Ram Leather,Dark,,"[[""Willow Log"", 1], [""Ram Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,37,"[[""Clothcraft"", 28]]",Garish Pumps,Earth,,"[[""Sheep Leather"", 1], [""Scarlet Linen"", 2], [""Bloodthread"", 2]]","[[""Rubious Pumps"", 1], null, null]"
-Amateur,37,[],Leather Gorget,Earth,,"[[""Ram Leather"", 1], [""Grass Thread"", 1]]","[[""Leather Gorget +1"", 1], null, null]"
-Amateur,37,[],Magic Belt,Wind,,"[[""Toad Oil"", 1], [""Mercury"", 1], [""Ram Leather"", 1]]","[[""Magic Belt +1"", 1], null, null]"
-Amateur,37,[],San d'Orian Vest,Earth,,"[[""Royal Footman's Vest"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Vest"", 1], null, null]"
-Amateur,38,[],Cuir Bandana,Water,,"[[""Ram Leather"", 1], [""Beeswax"", 1], [""Leather Bandana"", 1]]","[[""Cuir Bandana +1"", 1], null, null]"
-Amateur,39,[],Combat Caster's Shoes +1,Earth,,"[[""Combat Caster's Shoes"", 1], [""Dhalmel Leather"", 1]]","[[""Combat Caster's Shoes +2"", 1], null, null]"
-Amateur,39,"[[""Alchemy"", 10]]",Laminated Ram Leather,Earth,,"[[""Ram Leather"", 1], [""Animal Glue"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,39,[],Wolf Gorget,Earth,,"[[""Cotton Thread"", 1], [""Wolf Hide"", 1]]","[[""Wolf Gorget +1"", 1], null, null]"
-Amateur,40,[],Cuir Gloves,Water,,"[[""Ram Leather"", 2], [""Beeswax"", 1], [""Leather Gloves"", 1]]","[[""Cuir Gloves +1"", 1], null, null]"
-Amateur,40,[],Field Boots,Earth,,"[[""Bronze Scales"", 1], [""Grass Cloth"", 1], [""Ram Leather"", 2]]","[[""Worker Boots"", 1], null, null]"
-Amateur,40,[],Mist Pumps,Earth,,"[[""Smooth Sheep Leather"", 1], [""Garish Pumps"", 1]]","[null, null, null]"
-Amateur,40,[],Field Boots,Earth,,"[[""Leathercraft Kit 40"", 1], [""Apprentice (41-50)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,41,[],Barbarian's Belt,Water,,"[[""Leather Belt"", 1], [""Fiend Blood"", 1], [""Beastman Blood"", 1]]","[[""Brave Belt"", 1], null, null]"
-Amateur,42,[],Cuir Highboots,Water,,"[[""Ram Leather"", 2], [""Beeswax"", 1], [""Leather Highboots"", 1]]","[[""Cuir Highboots +1"", 1], null, null]"
-Amateur,43,[],Waistbelt,Wind,,"[[""Grass Thread"", 1], [""Ram Leather"", 2]]","[[""Waistbelt +1"", 1], null, null]"
-Amateur,44,[],Acrobat's Belt,Earth,,"[[""Glossy Bugard Leather"", 1], [""Barbarian's Belt"", 1]]","[null, null, null]"
-Amateur,44,[],Runner's Belt,Earth,,"[[""Soft Bugard Leather"", 1], [""Barbarian's Belt"", 1]]","[null, null, null]"
-Amateur,44,[],Samsonian Belt,Earth,,"[[""Rugged Bugard Leather"", 1], [""Barbarian's Belt"", 1]]","[null, null, null]"
-Amateur,44,[],Tough Belt,Earth,,"[[""Tough Bugard Leather"", 1], [""Barbarian's Belt"", 1]]","[null, null, null]"
-Amateur,45,[],Cuir Trousers,Water,,"[[""Ram Leather"", 2], [""Beeswax"", 1], [""Leather Trousers"", 1]]","[[""Cuir Trousers +1"", 1], null, null]"
-Amateur,45,"[[""Clothcraft"", 27]]",Chocobo Jack Coat,Earth,,"[[""Linen Cloth"", 1], [""Sheep Leather"", 1], [""Wool Thread"", 1], [""Wool Cloth"", 1], [""Ram Leather"", 2]]","[[""Rider's Jack Coat"", 1], null, null]"
-Amateur,45,[],Powder Boots,Earth,,"[[""Tough Dhalmel Leather"", 1], [""Cuir Highboots"", 1]]","[null, null, null]"
-Amateur,45,"[[""Clothcraft"", 4]]",Tarasque Mitts,Earth,,"[[""Saruta Cotton"", 1], [""Tarasque Skin"", 2], [""Grass Thread"", 2]]","[[""Tarasque Mitts +1"", 1], null, null]"
-Amateur,45,[],Cuir Trousers,Water,,"[[""Leathercraft Kit 45"", 1]]","[null, null, null]"
-Amateur,46,[],Cuir Bouilli,Water,,"[[""Ram Leather"", 2], [""Beeswax"", 1], [""Leather Vest"", 1]]","[[""Cuir Bouilli +1"", 1], null, null]"
-Amateur,46,[],Haste Belt,Earth,,"[[""Light Ram Leather"", 1], [""Waistbelt"", 1]]","[null, null, null]"
-Amateur,46,[],Royal Knight's Belt +1,Earth,,"[[""Royal Knight's Belt"", 1], [""Ram Leather"", 1]]","[[""Royal Knight's Belt +2"", 1], null, null]"
-Amateur,46,[],Narasimha Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Narasimha Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,47,[],Narasimha Leather,Dark,,"[[""Willow Log"", 1], [""Narasimha Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,48,[],Corsette,Earth,,"[[""Waistbelt"", 1], [""Coeurl Whisker"", 1], [""Scarlet Ribbon"", 1], [""Dhalmel Leather"", 1], [""Silk Cloth"", 1]]","[[""Corsette +1"", 1], null, null]"
-Amateur,49,[],Buffalo Leather,Dark,,"[[""Willow Log"", 1], [""Buffalo Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,49,[],Buffalo Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Buffalo Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,49,[],Buffalo Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Buffalo Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,49,[],Ram Mantle,Ice,,"[[""Ram Skin"", 1], [""Wool Thread"", 1]]","[[""Ram Mantle +1"", 1], null, null]"
-Amateur,50,[],Narasimha's Cesti,Earth,,"[[""Cesti"", 1], [""Narasimha Leather"", 1]]","[[""Vishnu's Cesti"", 1], null, null]"
-Amateur,50,[],Leather Shield,Earth,,"[[""Ram Leather"", 1], [""Raptor Skin"", 1], [""Lauan Shield"", 1]]","[[""Leather Shield +1"", 1], null, null]"
-Amateur,50,[],Leather Shield,Earth,,"[[""Leathercraft Kit 50"", 1], [""Journeyman (51-60)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,51,[],Frigid Skin,Dark,Leather Ensorcellment,"[[""Raptor Skin"", 1], [""Ice Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
-Amateur,52,[],High Breath Mantle,Ice,,"[[""Fragrant Ram Skin"", 1], [""Ram Mantle"", 1]]","[null, null, null]"
-Amateur,52,[],Himantes,Earth,,"[[""Raptor Skin"", 1], [""Lizard Cesti"", 1]]","[[""Himantes +1"", 1], null, null]"
-Amateur,52,[],Moblin Sheep Leather,Dark,,"[[""Willow Log"", 1], [""Moblin Sheepskin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,52,[],Moblin Sheep Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Moblin Sheepskin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,52,[],Moblin Sheep Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Moblin Sheepskin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,53,"[[""Alchemy"", 9]]",Laminated Buffalo Leather,Earth,,"[[""Animal Glue"", 1], [""Buffalo Leather"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,53,[],Raptor Strap,Wind,,"[[""Raptor Skin"", 2]]","[[""Raptor Strap +1"", 1], null, null]"
-Amateur,53,[],Raptor Mantle,Earth,,"[[""Raptor Skin"", 2], [""Grass Thread"", 1]]","[[""Dino Mantle"", 1], null, null]"
-Amateur,54,[],Moblin Sheep Wool,Wind,,"[[""Moblin Sheepskin"", 2]]","[null, null, null]"
-Amateur,54,[],Raptor Trousers,Earth,,"[[""Raptor Skin"", 2], [""Cuir Trousers"", 1]]","[[""Dino Trousers"", 1], null, null]"
-Amateur,55,"[[""Goldsmithing"", 28]]",Raptor Ledelsens,Earth,,"[[""Raptor Skin"", 1], [""Cuir Highboots"", 1], [""Mythril Sheet"", 1]]","[[""Dino Ledelsens"", 1], null, null]"
-Amateur,55,[],Noble Himantes,Earth,Leather Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Himantes"", 1]]","[null, null, null]"
-Amateur,55,[],Raptor Gloves,Earth,,"[[""Leathercraft Kit 55"", 1]]","[null, null, null]"
-Amateur,56,"[[""Clothcraft"", 49]]",Crow Gaiters,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 3], [""Sheep Leather"", 1], [""Ram Leather"", 1], [""Tiger Leather"", 1]]","[[""Raven Gaiters"", 1], null, null]"
-Amateur,56,"[[""Smithing"", 28]]",Raptor Helm,Earth,,"[[""Raptor Skin"", 2], [""Iron Sheet"", 1], [""Sheep Leather"", 1]]","[[""Dino Helm"", 1], null, null]"
-Amateur,56,[],Royal Squire's Shield +1,Earth,,"[[""Royal Squire's Shield"", 1], [""Ram Leather"", 1]]","[[""Royal Squire's Shield +2"", 1], null, null]"
-Amateur,57,"[[""Goldsmithing"", 50], [""Clothcraft"", 48]]",Brigandine,Earth,,"[[""Lizard Jerkin"", 1], [""Velvet Cloth"", 2], [""Gold Sheet"", 1], [""Ram Leather"", 1], [""Mythril Sheet"", 1], [""Brass Scales"", 1]]","[[""Brigandine +1"", 1], null, null]"
-Amateur,57,[],Desert Boots,Earth,,"[[""Bronze Scales"", 1], [""Sheep Leather"", 2], [""Yowie Skin"", 1]]","[[""Desert Boots +1"", 1], null, null]"
-Amateur,57,[],Ice Trousers,Earth,,"[[""Frigid Skin"", 1], [""Raptor Trousers"", 1]]","[null, null, null]"
-Amateur,57,[],Raptor Gloves,Earth,,"[[""Cuir Gloves"", 1], [""Raptor Skin"", 1]]","[[""Dino Gloves"", 1], null, null]"
-Amateur,58,[],Catoblepas Leather,Dark,,"[[""Willow Log"", 1], [""Catoblepas Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,58,[],Catoblepas Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Catoblepas Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,58,[],Catoblepas Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Catoblepas Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,58,[],Raptor Jerkin,Earth,,"[[""Raptor Skin"", 2], [""Sheep Leather"", 1]]","[[""Dino Jerkin"", 1], null, null]"
-Amateur,59,"[[""Smithing"", 50]]",Brigandine,Earth,,"[[""Clothcraft - (38)"", 1], [""Darksteel Sheet"", 2], [""Linen Cloth"", 1], [""Iron Chain"", 1], [""Tiger Leather"", 1], [""Sheep Leather"", 1], [""Velvet Cloth"", 1], [""Wool Thread"", 1]]","[[""Brigandine +1"", 1], null, null]"
-Amateur,59,"[[""Clothcraft"", 8]]",Moccasins,Earth,,"[[""Dhalmel Leather"", 1], [""Linen Cloth"", 1], [""Raptor Skin"", 1]]","[[""Moccasins +1"", 1], null, null]"
-Amateur,60,[],Amemet Mantle,Earth,,"[[""Amemet Skin"", 1], [""Lizard Molt"", 1], [""Grass Thread"", 1]]","[[""Amemet Mantle +1"", 1], null, null]"
-Amateur,60,[],Blizzard Gloves,Earth,,"[[""Frigid Skin"", 1], [""Raptor Gloves"", 1]]","[null, null, null]"
-Amateur,60,[],Hard Leather Ring,Wind,,"[[""Leathercraft Kit 60"", 1], [""Craftsman (61-70)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,61,[],Tiger Leather,Dark,,"[[""Willow Log"", 1], [""Tiger Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,61,[],Tiger Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Tiger Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,61,[],Tiger Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Tiger Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,61,[],Smilodon Leather,Dark,,"[[""Willow Log"", 1], [""Smilodon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,61,[],Smilodon Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Smilodon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,61,[],Smilodon Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Smilodon Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,61,[],Spirit Smilodon Leather,Dark,Leather Purification,"[[""Earth Anima"", 2], [""Dark Anima"", 1], [""Windurstian Tea Leaves"", 1], [""Smilodon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,61,[],Spirit Smilodon Leather,Dark,Leather Purification,"[[""Earth Anima"", 2], [""Dark Anima"", 1], [""Willow Log"", 1], [""Smilodon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,62,[],Hard Leather Ring,Wind,,"[[""Tiger Leather"", 1]]","[[""Tiger Ring"", 1], null, null]"
-Amateur,62,"[[""Goldsmithing"", 57], [""Clothcraft"", 54]]",Premium Bag,Earth,,"[[""Bugard Leather"", 1], [""Gold Thread"", 1], [""Moblin Sheep Leather"", 1], [""Moblin Sheep Wool"", 1], [""Platinum Ingot"", 1], [""Rainbow Cloth"", 1], [""Rainbow Thread"", 1]]","[null, null, null]"
-Amateur,62,[],Smilodon Ring,Wind,,"[[""Smilodon Leather"", 1]]","[[""Smilodon Ring +1"", 1], null, null]"
-Amateur,63,[],Beak Mantle,Earth,,"[[""Cockatrice Skin"", 2], [""Grass Thread"", 1]]","[[""Beak Mantle +1"", 1], null, null]"
-Amateur,63,"[[""Clothcraft"", 46]]",Crow Hose,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Sheep Leather"", 1], [""Tiger Leather"", 2]]","[[""Raven Hose"", 1], null, null]"
-Amateur,63,[],Bugard Strap,Wind,,"[[""Bugard Leather"", 2]]","[[""Bugard Strap +1"", 1], null, null]"
-Amateur,64,[],Beak Trousers,Earth,,"[[""Cockatrice Skin"", 2], [""Cuir Trousers"", 1]]","[[""Beak Trousers +1"", 1], null, null]"
-Amateur,64,"[[""Clothcraft"", 25]]",Jaridah Khud,Earth,,"[[""Karakul Leather"", 1], [""Marid Leather"", 1], [""Marid Hair"", 1], [""Karakul Cloth"", 1]]","[[""Akinji Khud"", 1], null, null]"
-Amateur,64,[],Stirge Belt,Wind,,"[[""Ram Leather"", 1], [""Mercury"", 1], [""Toad Oil"", 1], [""Volant Serum"", 1]]","[null, null, null]"
-Amateur,65,"[[""Goldsmithing"", 28]]",Beak Ledelsens,Earth,,"[[""Cockatrice Skin"", 1], [""Cuir Highboots"", 1], [""Mythril Sheet"", 1]]","[[""Beak Ledelsens +1"", 1], null, null]"
-Amateur,65,"[[""Alchemy"", 43]]",Sheep Chammy,Dark,,"[[""Sheepskin"", 1], [""Windurstian Tea Leaves"", 1], [""Clot Plasma"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,65,"[[""Alchemy"", 43]]",Sheep Chammy,Dark,,"[[""Sheepskin"", 1], [""Willow Log"", 1], [""Clot Plasma"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,65,[],Protect Ring,Earth,,"[[""Smilodon Ring"", 1], [""Spirit Smilodon Leather"", 1]]","[null, null, null]"
-Amateur,66,[],Battle Boots,Earth,,"[[""Iron Scales"", 1], [""Ram Leather"", 2], [""Tiger Leather"", 1]]","[[""Battle Boots +1"", 1], null, null]"
-Amateur,66,"[[""Smithing"", 43], [""Clothcraft"", 39]]",Jaridah Peti,Earth,,"[[""Steel Ingot"", 1], [""Steel Sheet"", 1], [""Darksteel Chain"", 1], [""Brass Chain"", 1], [""Velvet Cloth"", 1], [""Karakul Leather"", 1], [""Marid Leather"", 1], [""Karakul Cloth"", 1]]","[[""Akinji Peti"", 1], null, null]"
-Amateur,66,[],Battle Boots,Earth,,"[[""Leathercraft Kit 66"", 1]]","[null, null, null]"
-Amateur,67,"[[""Smithing"", 28]]",Beak Helm,Earth,,"[[""Iron Sheet"", 1], [""Sheep Leather"", 1], [""Cockatrice Skin"", 2]]","[[""Beak Helm +1"", 1], null, null]"
-Amateur,67,[],White Mouton,Dark,,"[[""Willow Log"", 1], [""Ram Skin"", 1], [""Shell Powder"", 2], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,67,[],White Mouton,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Ram Skin"", 1], [""Shell Powder"", 2], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,68,[],Beak Gloves,Earth,,"[[""Cockatrice Skin"", 1], [""Cuir Gloves"", 1]]","[[""Beak Gloves +1"", 1], null, null]"
-Amateur,68,"[[""Woodworking"", 53], [""Smithing"", 9]]",Hoplon,Earth,,"[[""Bronze Sheet"", 1], [""Chestnut Lumber"", 1], [""Walnut Lumber"", 1], [""Ram Leather"", 1]]","[[""Hoplon +1"", 1], null, null]"
-Amateur,69,[],Beak Jerkin,Earth,,"[[""Sheep Leather"", 1], [""Cockatrice Skin"", 2]]","[[""Beak Jerkin +1"", 1], null, null]"
-Amateur,69,"[[""Smithing"", 34]]",Byrnie,Earth,,"[[""Darksteel Sheet"", 1], [""Dhalmel Leather"", 1], [""Ram Leather"", 1], [""Tiger Leather"", 1], [""Behemoth Leather"", 1], [""Silver Mail"", 1]]","[[""Byrnie +1"", 1], null, null]"
-Amateur,69,[],Tabin Boots,Earth,,"[[""Marid Leather"", 1], [""Battle Boots"", 1]]","[[""Tabin Boots +1"", 1], null, null]"
-Amateur,69,[],Silky Suede,Wind,,"[[""Garnet"", 1], [""Buffalo Leather"", 1]]","[null, null, null]"
-Amateur,70,[],Behemoth Leather,Dark,,"[[""Willow Log"", 1], [""Behemoth Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,70,[],Behemoth Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Behemoth Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,70,[],Behemoth Mantle,Ice,,"[[""Wool Thread"", 1], [""Behemoth Hide"", 1]]","[[""Behemoth Mantle +1"", 1], null, null]"
-Amateur,70,"[[""Alchemy"", 46], [""Clothcraft"", 32]]",Black Cotehardie,Earth,,"[[""Beak Jerkin"", 1], [""Black Ink"", 1], [""Malboro Fiber"", 1], [""Ram Leather"", 1], [""Tiger Leather"", 1], [""Mistletoe"", 1], [""Fiend Blood"", 1], [""Velvet Robe"", 1]]","[[""Flora Cotehardie"", 1], null, null]"
-Amateur,70,[],Behemoth Mantle,Ice,,"[[""Leathercraft Kit 70"", 1], [""Artisan (71-80)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,71,[],Coeurl Leather,Dark,,"[[""Willow Log"", 1], [""Coeurl Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,71,[],Coeurl Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Coeurl Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,71,[],Coeurl Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Coeurl Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,71,"[[""Clothcraft"", 45]]",Pigaches,Earth,,"[[""Gold Thread"", 1], [""Silk Cloth"", 1], [""Tiger Leather"", 2], [""Raptor Skin"", 1]]","[[""Pigaches +1"", 1], null, null]"
-Amateur,71,"[[""Clothcraft"", 45]]",Silken Pigaches,Earth,,"[[""Gold Thread"", 1], [""Raptor Skin"", 1], [""Tiger Leather"", 2], [""Imperial Silk Cloth"", 1]]","[[""Magi Pigaches"", 1], null, null]"
-Amateur,71,[],Spartan Hoplon,Earth,,"[[""Bloody Ram Leather"", 1], [""Hoplon"", 1]]","[null, null, null]"
-Amateur,71,[],Swordbelt,Earth,,"[[""Iron Chain"", 1], [""Tiger Leather"", 2]]","[[""Swordbelt +1"", 1], null, null]"
-Amateur,71,[],Lynx Leather,Dark,,"[[""Willow Log"", 1], [""Lynx Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,71,[],Lynx Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Lynx Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,71,[],Lynx Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Lynx Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,72,[],Coeurl Cesti,Earth,,"[[""Cesti"", 1], [""Coeurl Leather"", 1]]","[[""Torama Cesti"", 1], null, null]"
-Amateur,72,[],Ovinnik Leather,Dark,,"[[""Willow Log"", 1], [""Ovinnik Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,72,[],Ovinnik Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Ovinnik Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,73,"[[""Clothcraft"", 41]]",Battle Hose,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 2]]","[[""Battle Hose +1"", 1], null, null]"
-Amateur,73,[],Manta Leather,Dark,,"[[""Willow Log"", 1], [""Manta Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,73,[],Manta Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Manta Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,73,[],Manta Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Manta Skin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,74,[],Lamia Mantle,Earth,,"[[""Manta Skin"", 1], [""Lamia Skin"", 1], [""Mohbwa Thread"", 1]]","[[""Lamia Mantle +1"", 1], null, null]"
-Amateur,74,[],Tiger Trousers,Earth,,"[[""Cuir Trousers"", 1], [""Tiger Leather"", 2]]","[[""Feral Trousers"", 1], null, null]"
-Amateur,75,"[[""Smithing"", 38], [""Clothcraft"", 27]]",Goblin Coif,Earth,,"[[""Goblin Cutting"", 1], [""Steel Sheet"", 1], [""Linen Cloth"", 1], [""Artificial Lens"", 2], [""Moblin Thread"", 1], [""Undead Skin"", 1], [""Sheep Leather"", 1]]","[null, null, null]"
-Amateur,75,"[[""Goldsmithing"", 28]]",Tiger Ledelsens,Earth,,"[[""Cuir Highboots"", 1], [""Mythril Sheet"", 1], [""Tiger Leather"", 1]]","[[""Feral Ledelsens"", 1], null, null]"
-Amateur,75,[],Tiger Mantle,Ice,,"[[""Tiger Hide"", 1], [""Wool Thread"", 1]]","[[""Feral Mantle"", 1], null, null]"
-Amateur,75,[],Smilodon Mantle,Ice,,"[[""Smilodon Hide"", 1], [""Wool Thread"", 1]]","[[""Smilodon Mantle +1"", 1], null, null]"
-Amateur,75,[],Tiger Mantle,Ice,,"[[""Leathercraft Kit 75"", 1]]","[null, null, null]"
-Amateur,76,"[[""Goldsmithing"", 44], [""Smithing"", 41]]",Black Adargas,Fire,,"[[""Darksteel Ingot"", 2], [""Oak Lumber"", 1], [""Gold Ingot"", 1], [""Ovinnik Leather"", 1]]","[[""Black Adargas +1"", 1], null, null]"
-Amateur,76,[],Marid Leather,Dark,,"[[""Marid Hide"", 1], [""Imperial Tea Leaves"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,76,[],Marid Leather,Dark,Tanning,"[[""Marid Hide"", 3], [""Imperial Tea Leaves"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,76,"[[""Clothcraft"", 47]]",Silk Pumps,Earth,,"[[""Gold Thread"", 2], [""Silk Cloth"", 2], [""Sheep Leather"", 1]]","[[""Silk Pumps +1"", 1], null, null]"
-Amateur,76,[],Tabin Hose,Earth,,"[[""Marid Leather"", 1], [""Battle Hose"", 1]]","[[""Tabin Hose +1"", 1], null, null]"
-Amateur,76,[],Tactician Magician's Pigaches +1,Earth,,"[[""Tactician Magician's Pigaches"", 1], [""Tiger Leather"", 1]]","[[""Tactician Magician's Pigaches +2"", 1], null, null]"
-Amateur,77,"[[""Goldsmithing"", 46], [""Smithing"", 25]]",Adargas,Fire,,"[[""Steel Ingot"", 2], [""Oak Lumber"", 1], [""Gold Ingot"", 1], [""Rheiyoh Leather"", 1]]","[[""Adargas +1"", 1], null, null]"
-Amateur,77,[],Tiger Gloves,Earth,,"[[""Cuir Gloves"", 1], [""Tiger Leather"", 1]]","[[""Feral Gloves"", 1], null, null]"
-Amateur,77,[],Yellow Mouton,Dark,,"[[""Ram Skin"", 1], [""Distilled Water"", 1], [""Windurstian Tea Leaves"", 1], [""Orpiment"", 2]]","[null, null, null]"
-Amateur,77,[],Yellow Mouton,Dark,,"[[""Ram Skin"", 1], [""Distilled Water"", 1], [""Willow Log"", 1], [""Orpiment"", 2]]","[null, null, null]"
-Amateur,78,[],Black Mantle,Earth,,"[[""Tiger Mantle"", 1], [""Wool Thread"", 1], [""Tiger Leather"", 1]]","[[""Black Mantle +1"", 1], null, null]"
-Amateur,78,"[[""Smithing"", 41]]",Tiger Helm,Earth,,"[[""Darksteel Sheet"", 1], [""Tiger Leather"", 2], [""Sheep Leather"", 1]]","[[""Feral Helm"", 1], null, null]"
-Amateur,78,[],Lavalier,Earth,,"[[""Behemoth Leather"", 1], [""Manticore Hair"", 1]]","[[""Lavalier +1"", 1], null, null]"
-Amateur,79,[],Coeurl Gorget,Earth,,"[[""Coeurl Hide"", 1], [""Cotton Thread"", 1]]","[[""Torama Gorget"", 1], null, null]"
-Amateur,79,[],Marid Mantle,Ice,,"[[""Marid Hide"", 1], [""Karakul Thread"", 1]]","[[""Marid Mantle +1"", 1], null, null]"
-Amateur,79,[],Tiger Jerkin,Earth,,"[[""Tiger Leather"", 2], [""Sheep Leather"", 1]]","[[""Feral Jerkin"", 1], null, null]"
-Amateur,79,[],Finesse Gloves,Earth,,"[[""Coquecigrue Skin"", 1], [""Beak Gloves"", 1]]","[[""Finesse Gloves +1"", 1], null, null]"
-Amateur,79,[],Marid Mantle,Ice,,"[[""Leathercraft Kit 79"", 1]]","[null, null, null]"
-Amateur,80,"[[""Alchemy"", 46], [""Clothcraft"", 32]]",Blue Cotehardie,Earth,,"[[""Beak Jerkin"", 1], [""Velvet Robe"", 1], [""Malboro Fiber"", 1], [""Tiger Leather"", 1], [""Beetle Blood"", 1], [""Mistletoe"", 1], [""Fiend Blood"", 1], [""Ram Leather"", 1]]","[[""Blue Cotehardie +1"", 1], null, null]"
-Amateur,80,[],Manticore Leather,Dark,,"[[""Willow Log"", 1], [""Manticore Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,80,[],Manticore Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Manticore Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,80,[],Manticore Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Manticore Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,80,"[[""Smithing"", 34]]",Styrne Byrnie,Earth,,"[[""Herensugue Skin"", 1], [""Behemoth Leather"", 1], [""Tiger Leather"", 1], [""Dhalmel Leather"", 1], [""Silver Mail"", 1], [""Darksteel Sheet"", 1], [""Adept (81-90)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Styrne Byrnie +1"", 1], null, null]"
-Amateur,81,[],Marid Belt,Earth,,"[[""Darksteel Chain"", 1], [""Marid Leather"", 2]]","[[""Marid Belt +1"", 1], null, null]"
-Amateur,81,"[[""Clothcraft"", 57]]",Noble's Pumps,Earth,,"[[""Gold Thread"", 2], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""Rainbow Cloth"", 1]]","[[""Aristocrat's Pumps"", 1], null, null]"
-Amateur,81,[],Tropical Punches,Earth,,"[[""Sheep Leather"", 1], [""Fruit Punches"", 1]]","[[""Tropical Punches +1"", 1], null, null]"
-Amateur,81,"[[""Smithing"", 58]]",Wivre Shield,Earth,,"[[""Darksteel Sheet"", 3], [""Wivre Hide"", 2], [""Ash Lumber"", 1]]","[[""Wivre Shield +1"", 1], null, null]"
-Amateur,81,[],Cerberus Leather,Dark,,"[[""Imperial Tea Leaves"", 1], [""Cerberus Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,81,[],Peiste Leather,Dark,,"[[""Willow Log"", 1], [""Peiste Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,81,[],Peiste Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Peiste Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,81,[],Peiste Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Peiste Skin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,82,[],Behemoth Cesti,Earth,,"[[""Behemoth Leather"", 1], [""Cesti"", 1]]","[[""Behemoth Cesti +1"", 1], null, null]"
-Amateur,82,[],Troll Coif,Earth,,"[[""Karakul Leather"", 2], [""Manticore Hair"", 1], [""Marid Leather"", 1], [""Marid Hair"", 1], [""Mohbwa Cloth"", 1]]","[null, null, null]"
-Amateur,82,[],Nomad's Mantle,Earth,,"[[""Rabbit Hide"", 1], [""Traveler's Mantle"", 1]]","[[""Nomad's Mantle +1"", 1], null, null]"
-Amateur,83,[],Air Solea,Wind,,"[[""Lizard Molt"", 1], [""Light Soleas"", 1]]","[[""Air Solea +1"", 1], null, null]"
-Amateur,83,[],Coeurl Trousers,Earth,,"[[""Cuir Trousers"", 1], [""Coeurl Leather"", 2]]","[[""Torama Trousers"", 1], null, null]"
-Amateur,83,"[[""Clothcraft"", 55]]",War Beret,Earth,,"[[""Gold Thread"", 1], [""Tiger Leather"", 2], [""Giant Bird Plume"", 1]]","[[""War Beret +1"", 1], null, null]"
-Amateur,83,[],Peiste Belt,Wind,,"[[""Peiste Leather"", 1], [""Iron Chain"", 1]]","[[""Peiste Belt +1"", 1], null, null]"
-Amateur,83,[],Ruszor Leather,Dark,,"[[""Willow Log"", 1], [""Ruszor Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,83,[],Ruszor Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Ruszor Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,83,[],Ruszor Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Ruszor Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,83,[],Fowler's Mantle,Ice,,"[[""Woolly Pelage"", 1], [""Wool Thread"", 1]]","[[""Fowler's Mantle +1"", 1], null, null]"
-Amateur,84,"[[""Goldsmithing"", 23]]",Coeurl Ledelsens,Earth,,"[[""Cuir Highboots"", 1], [""Coeurl Leather"", 1], [""Mythril Sheet"", 1]]","[[""Torama Ledelsens"", 1], null, null]"
-Amateur,84,[],Empowering Mantle,Earth,,"[[""Enhancing Mantle"", 1], [""Lizard Skin"", 1]]","[[""Empowering Mantle +1"", 1], null, null]"
-Amateur,84,[],Ogre Trousers,Earth,,"[[""Coeurl Trousers"", 1], [""Manticore Leather"", 1]]","[[""Ogre Trousers +1"", 1], null, null]"
-Amateur,84,"[[""Clothcraft"", 37]]",Wise Braconi,Earth,,"[[""Silver Thread"", 2], [""Velvet Cloth"", 2], [""Eft Skin"", 1], [""Eltoro Leather"", 1]]","[[""Wise Braconi +1"", 1], null, null]"
-Amateur,84,[],Kinesis Mantle,Earth,,"[[""Ratatoskr Pelt"", 1], [""Nomad's Mantle"", 1]]","[[""Kinesis Mantle +1"", 1], null, null]"
-Amateur,84,[],Raaz Leather,Dark,,"[[""Willow Log"", 1], [""Raaz Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,84,[],Raaz Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Raaz Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,84,[],Raaz Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Raaz Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,85,[],Coeurl Mantle,Ice,,"[[""Coeurl Hide"", 1], [""Wool Thread"", 1]]","[[""Torama Mantle"", 1], null, null]"
-Amateur,85,[],Northern Jerkin,Earth,,"[[""Tiger Jerkin"", 1], [""Undead Skin"", 1]]","[[""Tundra Jerkin"", 1], null, null]"
-Amateur,85,[],Ogre Ledelsens,Earth,,"[[""Coeurl Ledelsens"", 1], [""Manticore Leather"", 1]]","[[""Ogre Ledelsens +1"", 1], null, null]"
-Amateur,85,[],Sonic Belt,Earth,,"[[""Ram Leather"", 1], [""Speed Belt"", 1]]","[[""Sonic Belt +1"", 1], null, null]"
-Amateur,85,[],War Boots,Earth,,"[[""Coeurl Leather"", 1], [""Gold Chain"", 1], [""Tiger Leather"", 2]]","[[""War Boots +1"", 1], null, null]"
-Amateur,85,"[[""Clothcraft"", 34]]",Wise Pigaches,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Sheep Leather"", 1], [""Tiger Leather"", 1], [""Eltoro Leather"", 1]]","[[""Wise Pigaches +1"", 1], null, null]"
-Amateur,85,[],Lynx Mantle,Ice,,"[[""Lynx Hide"", 1], [""Wool Thread"", 1]]","[[""Lynx Mantle +1"", 1], null, null]"
-Amateur,85,[],Coeurl Mantle,Ice,,"[[""Leathercraft Kit 85"", 1]]","[null, null, null]"
-Amateur,86,[],Cavalier's Mantle,Ice,,"[[""Sentinel's Mantle"", 1], [""Wolf Hide"", 1]]","[[""Cavalier's Mantle +1"", 1], null, null]"
-Amateur,86,[],Shadow Bow,Earth,,"[[""Assassin's Bow"", 1], [""Ram Leather"", 1]]","[[""Shadow Bow +1"", 1], null, null]"
-Amateur,86,[],Tariqah,Earth,,"[[""Marid Leather"", 1], [""Marid Hair"", 1], [""Tariqah -1"", 1]]","[[""Tariqah +1"", 1], null, null]"
-Amateur,86,"[[""Alchemy"", 51]]",Khromated Leather,Dark,,"[[""Karakul Skin"", 1], [""Khroma Nugget"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,86,"[[""Alchemy"", 51]]",Khromated Leather,Dark,Tanning,"[[""Karakul Skin"", 3], [""Khroma Nugget"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,87,[],Coeurl Mask,Earth,,"[[""Coeurl Leather"", 2], [""Faceguard"", 1]]","[[""Torama Mask"", 1], null, null]"
-Amateur,87,[],Gaia Mantle,Earth,,"[[""Cockatrice Skin"", 1], [""Earth Mantle"", 1]]","[[""Gaia Mantle +1"", 1], null, null]"
-Amateur,87,"[[""Goldsmithing"", 44], [""Clothcraft"", 19]]",Sipahi Dastanas,Earth,,"[[""Mythril Sheet"", 1], [""Karakul Leather"", 1], [""Marid Leather"", 1], [""Marid Hair"", 1], [""Karakul Cloth"", 1]]","[[""Abtal Dastanas"", 1], null, null]"
-Amateur,87,[],Mamool Ja Helm,Earth,,"[[""Karakul Leather"", 1], [""Lizard Skin"", 1], [""Black Tiger Fang"", 2], [""Coeurl Whisker"", 1], [""Mamool Ja Helmet"", 1], [""Marid Hair"", 1]]","[null, null, null]"
-Amateur,87,[],Wivre Mask,Wind,,"[[""Karakul Leather"", 1], [""Wivre Hide"", 1]]","[[""Wivre Mask +1"", 1], null, null]"
-Amateur,87,[],Radical Mantle,Earth,,"[[""Leafkin Frond"", 1], [""Chapuli Wing"", 2], [""Raptor Mantle"", 1]]","[[""Radical Mantle +1"", 1], null, null]"
-Amateur,88,[],Aurora Mantle,Ice,,"[[""Tiger Hide"", 1], [""Tundra Mantle"", 1]]","[[""Aurora Mantle +1"", 1], null, null]"
-Amateur,88,[],Coeurl Gloves,Earth,,"[[""Coeurl Leather"", 1], [""Cuir Gloves"", 1]]","[[""Torama Gloves"", 1], null, null]"
-Amateur,88,[],Ogre Mask,Earth,,"[[""Coeurl Mask"", 1], [""Manticore Leather"", 1]]","[[""Ogre Mask +1"", 1], null, null]"
-Amateur,88,"[[""Clothcraft"", 40]]",Wise Cap,Earth,,"[[""Silver Thread"", 1], [""Velvet Cloth"", 1], [""Silk Cloth"", 1], [""Manticore Leather"", 1], [""Eltoro Leather"", 1]]","[[""Wise Cap +1"", 1], null, null]"
-Amateur,89,[],Coeurl Jerkin,Earth,,"[[""Coeurl Leather"", 2], [""Sheep Leather"", 1]]","[[""Torama Jerkin"", 1], null, null]"
-Amateur,89,[],Ogre Gloves,Earth,,"[[""Coeurl Gloves"", 1], [""Manticore Leather"", 1]]","[[""Ogre Gloves +1"", 1], null, null]"
-Amateur,89,[],Winged Boots,Earth,,"[[""Lizard Skin"", 1], [""Leaping Boots"", 1]]","[[""Winged Boots +1"", 1], null, null]"
-Amateur,89,"[[""Clothcraft"", 32]]",Wise Gloves,Earth,,"[[""Silver Thread"", 1], [""Velvet Cloth"", 1], [""Saruta Cotton"", 2], [""Eltoro Leather"", 1], [""Leather Gloves"", 1]]","[[""Wise Gloves +1"", 1], null, null]"
-Amateur,90,"[[""Clothcraft"", 54]]",Barone Cosciales,Earth,,"[[""Silk Cloth"", 1], [""Sarcenet Cloth"", 1], [""Buffalo Leather"", 2], [""High-Quality Bugard Skin"", 1]]","[[""Conte Cosciales"", 1], null, null]"
-Amateur,90,"[[""Goldsmithing"", 44], [""Clothcraft"", 40]]",Chasuble,Earth,,"[[""Platinum Ingot"", 1], [""Silver Thread"", 1], [""Velvet Cloth"", 2], [""Manticore Leather"", 1], [""Eft Skin"", 1], [""Eltoro Leather"", 2]]","[[""Chasuble +1"", 1], null, null]"
-Amateur,90,[],Koenigs Belt,Earth,,"[[""Gold Chain"", 1], [""Manticore Leather"", 2]]","[[""Kaiser Belt"", 1], null, null]"
-Amateur,90,[],Ogre Jerkin,Earth,,"[[""Coeurl Jerkin"", 1], [""Undead Skin"", 1], [""Manticore Leather"", 1]]","[[""Ogre Jerkin +1"", 1], null, null]"
-Amateur,90,[],Sniper's Ring,Earth,,"[[""Archer's Ring"", 1], [""Tiger Leather"", 1]]","[[""Sniper's Ring +1"", 1], null, null]"
-Amateur,90,[],Amphiptere Leather,Dark,,"[[""Willow Log"", 1], [""Amphiptere Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,90,[],Amphiptere Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Amphiptere Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,90,[],Amphiptere Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Amphiptere Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,90,[],Koenigs Belt,Earth,,"[[""Leathercraft Kit 90"", 1], [""Veteran (91-100)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,91,[],Bison Wristbands,Earth,,"[[""Manticore Leather"", 2], [""Manticore Hair"", 2], [""Buffalo Leather"", 1]]","[[""Brave's Wristbands"", 1], null, null]"
-Amateur,91,"[[""Clothcraft"", 52]]",Errant Pigaches,Earth,,"[[""Rainbow Thread"", 1], [""Velvet Cloth"", 1], [""Undead Skin"", 1], [""Ram Leather"", 2]]","[[""Mahatma Pigaches"", 1], null, null]"
-Amateur,91,[],Khimaira Wristbands,Earth,,"[[""Manticore Leather"", 2], [""Buffalo Leather"", 1], [""Khimaira Mane"", 2]]","[[""Stout Wristbands"", 1], null, null]"
-Amateur,91,"[[""Goldsmithing"", 51], [""Clothcraft"", 49]]",Sipahi Jawshan,Earth,,"[[""Mythril Sheet"", 1], [""Steel Sheet"", 1], [""Gold Chain"", 1], [""Silk Cloth"", 1], [""Karakul Leather"", 1], [""Marid Leather"", 2], [""Wamoura Cloth"", 1]]","[[""Abtal Jawshan"", 1], null, null]"
-Amateur,91,[],Ebon Brais,Earth,,"[[""Amphiptere Leather"", 1], [""Shagreen"", 1], [""Studded Trousers"", 1]]","[null, null, null]"
-Amateur,91,[],Bewitched Pumps,Earth,,"[[""Cursed Pumps -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Pumps"", 1], null, null]"
-Amateur,91,[],Vexed Boots,Earth,,"[[""Hexed Boots -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Boots"", 1], null, null]"
-Amateur,92,"[[""Clothcraft"", 59]]",Cursed Pumps,Earth,,"[[""Siren's Macrame"", 1], [""Velvet Cloth"", 1], [""Gold Thread"", 1], [""Rainbow Cloth"", 1], [""Manticore Leather"", 1]]","[[""Cursed Pumps -1"", 1], null, null]"
-Amateur,92,[],Desert Mantle,Earth,,"[[""Grass Thread"", 1], [""Yowie Skin"", 2]]","[[""Desert Mantle +1"", 1], null, null]"
-Amateur,92,"[[""Goldsmithing"", 60], [""Clothcraft"", 38]]",Sha'ir Crackows,Earth,,"[[""Orichalcum Ingot"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 2], [""Buffalo Leather"", 1]]","[[""Sheikh Crackows"", 1], null, null]"
-Amateur,92,"[[""Clothcraft"", 47], [""Woodworking"", 43]]",Leather Pot,Fire,,"[[""Hickory Lumber"", 1], [""Karakul Leather"", 1], [""Rheiyoh Leather"", 1], [""Karakul Thread"", 1], [""Kaolin"", 2]]","[null, null, null]"
-Amateur,92,"[[""Clothcraft"", 59], [""Goldsmithing"", 48]]",Cursed Clogs,Earth,,"[[""Velvet Cloth"", 1], [""Undead Skin"", 1], [""Marid Leather"", 2], [""Netherpact Chain"", 1], [""Platinum Silk"", 1]]","[[""Cursed Clogs -1"", 1], null, null]"
-Amateur,92,[],Vexed Tekko,Fire,,"[[""Hexed Tekko -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Tekko"", 1], null, null]"
-Amateur,93,[],Dusk Trousers,Earth,,"[[""Tiger Trousers"", 1], [""Behemoth Leather"", 1]]","[[""Dusk Trousers +1"", 1], null, null]"
-Amateur,93,"[[""Clothcraft"", 11]]",Austere Hat,Earth,,"[[""Rainbow Thread"", 1], [""Sheep Leather"", 1], [""Ram Leather"", 1], [""Yowie Skin"", 1], [""Velvet Hat"", 1]]","[[""Penance Hat"", 1], null, null]"
-Amateur,93,"[[""Clothcraft"", 29]]",Bison Gamashes,Earth,,"[[""Manticore Leather"", 1], [""Manticore Hair"", 2], [""Hippogryph Feather"", 1], [""Buffalo Leather"", 2]]","[[""Brave's Gamashes"", 1], null, null]"
-Amateur,93,[],Sultan's Belt,Earth,,"[[""Rugged Bugard Leather"", 1], [""Koenigs Belt"", 1]]","[null, null, null]"
-Amateur,93,[],Czar's Belt,Earth,,"[[""Tough Bugard Leather"", 1], [""Koenigs Belt"", 1]]","[null, null, null]"
-Amateur,93,[],Pendragon's Belt,Earth,,"[[""Soft Bugard Leather"", 1], [""Koenigs Belt"", 1]]","[null, null, null]"
-Amateur,93,[],Maharaja's Belt,Earth,,"[[""Glossy Bugard Leather"", 1], [""Koenigs Belt"", 1]]","[null, null, null]"
-Amateur,93,"[[""Clothcraft"", 29]]",Khimaira Gamashes,Earth,,"[[""Manticore Leather"", 1], [""Hippogryph Feather"", 1], [""Buffalo Leather"", 2], [""Khimaira Mane"", 2]]","[[""Stout Gamashes"", 1], null, null]"
-Amateur,93,"[[""Goldsmithing"", 53]]",Ebon Gloves,Earth,,"[[""Amphiptere Leather"", 2], [""Shagreen"", 1], [""Platinum Ingot"", 1]]","[null, null, null]"
-Amateur,93,[],Vexed Hakama,Fire,,"[[""Hexed Hakama -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Hakama"", 1], null, null]"
-Amateur,93,[],Vexed Hose,Earth,,"[[""Hexed Hose -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Hose"", 1], null, null]"
-Amateur,94,"[[""Clothcraft"", 11]]",Austere Sabots,Earth,,"[[""Rainbow Thread"", 1], [""Sheep Leather"", 1], [""Ram Leather"", 1], [""Lindwurm Skin"", 1], [""Ebony Sabots"", 1]]","[[""Penance Sabots"", 1], null, null]"
-Amateur,94,"[[""Smithing"", 31]]",Cardinal Vest,Water,,"[[""Clothcraft - (21)"", 1], [""Steel Sheet"", 1], [""Gold Thread"", 1], [""Tiger Leather"", 2], [""Beeswax"", 1], [""Manticore Leather"", 2], [""Ram Leather"", 1]]","[[""Bachelor Vest"", 1], null, null]"
-Amateur,94,[],Dusk Ledelsens,Earth,,"[[""Tiger Ledelsens"", 1], [""Behemoth Leather"", 1]]","[[""Dusk Ledelsens +1"", 1], null, null]"
-Amateur,95,[],Tiger Mask,Ice,,"[[""Tiger Hide"", 2], [""Wyvern Skin"", 1], [""Wool Thread"", 1], [""Ram Leather"", 1]]","[[""Feral Mask"", 1], null, null]"
-Amateur,95,"[[""Clothcraft"", 33]]",Bison Warbonnet,Earth,,"[[""Manticore Leather"", 1], [""Manticore Hair"", 2], [""Hippogryph Feather"", 2], [""Eft Skin"", 1], [""Buffalo Leather"", 1]]","[[""Brave's Warbonnet"", 1], null, null]"
-Amateur,95,[],Cerberus Mantle,Ice,,"[[""Cerberus Hide"", 1], [""Karakul Thread"", 1]]","[[""Cerberus Mantle +1"", 1], null, null]"
-Amateur,95,"[[""Clothcraft"", 33]]",Khimaira Bonnet,Earth,,"[[""Manticore Leather"", 1], [""Hippogryph Feather"", 2], [""Eft Skin"", 1], [""Buffalo Leather"", 1], [""Khimaira Mane"", 2]]","[[""Stout Bonnet"", 1], null, null]"
-Amateur,95,[],Peiste Mantle,Earth,,"[[""Peiste Skin"", 2], [""Grass Thread"", 1]]","[[""Peiste Mantle +1"", 1], null, null]"
-Amateur,95,"[[""Goldsmithing"", 57]]",Ebon Boots,Earth,,"[[""Amphiptere Leather"", 1], [""Shagreen"", 1], [""Molybdenum Sheet"", 1], [""Platinum Ingot"", 1]]","[null, null, null]"
-Amateur,95,[],Peiste Mantle,Earth,,"[[""Leathercraft Kit 95"", 1]]","[null, null, null]"
-Amateur,96,"[[""Clothcraft"", 42]]",Opaline Boots,Light,,"[[""Rainbow Thread"", 1], [""Silk Cloth"", 1], [""Rainbow Cloth"", 1], [""Twinthread"", 1], [""Sheep Leather"", 2], [""Manticore Leather"", 1]]","[[""Ceremonial Boots"", 1], null, null]"
-Amateur,96,"[[""Goldsmithing"", 46], [""Clothcraft"", 41]]",Sha'ir Gages,Earth,,"[[""Gold Ingot"", 1], [""Garnet"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""High-Quality Bugard Skin"", 1]]","[[""Sheikh Gages"", 1], null, null]"
-Amateur,96,"[[""Goldsmithing"", 45]]",Imperial Tapestry,Earth,,"[[""Gold Ingot"", 1], [""Turquoise"", 1], [""Gold Thread"", 2], [""Marid Hair"", 1], [""Wamoura Cloth"", 1], [""Imperial Silk Cloth"", 2]]","[null, null, null]"
-Amateur,97,"[[""Clothcraft"", 11]]",Austere Cuffs,Earth,,"[[""Rainbow Thread"", 1], [""Tarasque Skin"", 1], [""Yowie Skin"", 1], [""Velvet Cuffs"", 1]]","[[""Penance Cuffs"", 1], null, null]"
-Amateur,97,"[[""Clothcraft"", 54]]",Bison Kecks,Earth,,"[[""Tiger Leather"", 1], [""Manticore Leather"", 1], [""Manticore Hair"", 4], [""Buffalo Leather"", 2]]","[[""Brave's Kecks"", 1], null, null]"
-Amateur,97,[],Dusk Mask,Earth,,"[[""Coeurl Mask"", 1], [""Behemoth Leather"", 1]]","[[""Dusk Mask +1"", 1], null, null]"
-Amateur,97,[],Griffon Leather,Dark,,"[[""Willow Log"", 1], [""Griffon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,97,[],Griffon Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Griffon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,97,"[[""Clothcraft"", 54]]",Khimaira Kecks,Earth,,"[[""Tiger Leather"", 1], [""Manticore Leather"", 1], [""Buffalo Leather"", 2], [""Khimaira Mane"", 4]]","[[""Stout Kecks"", 1], null, null]"
-Amateur,97,"[[""Smithing"", 60]]",Ebon Mask,Earth,,"[[""Amphiptere Leather"", 1], [""Shagreen"", 1], [""Molybdenum Sheet"", 1]]","[null, null, null]"
-Amateur,98,[],Amaltheia Leather,Dark,,"[[""Willow Log"", 1], [""Amaltheia Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,98,[],Amaltheia Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Amaltheia Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,98,[],Amaltheia Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Amaltheia Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
-Amateur,98,"[[""Clothcraft"", 11]]",Austere Slops,Earth,,"[[""Rainbow Thread"", 1], [""Undead Skin"", 1], [""Wolf Hide"", 1], [""Lindwurm Skin"", 1], [""Velvet Slops"", 1]]","[[""Penance Slops"", 1], null, null]"
-Amateur,98,[],Heroic Boots,Earth,,"[[""Iron Scales"", 1], [""Ram Leather"", 2], [""Lindwurm Skin"", 1]]","[[""Heroic Boots +1"", 1], null, null]"
-Amateur,99,"[[""Bonecraft"", 60]]",Bison Jacket,Earth,,"[[""Clothcraft - (51)"", 1], [""Manticore Leather"", 2], [""Manticore Hair"", 2], [""Buffalo Horn"", 1], [""Eft Skin"", 1], [""Buffalo Leather"", 2]]","[[""Brave's Jacket"", 1], null, null]"
-Amateur,99,"[[""Clothcraft"", 56]]",Blessed Pumps,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""Manticore Hair"", 1], [""Eltoro Leather"", 1]]","[[""Blessed Pumps +1"", 1], null, null]"
-Amateur,99,[],Dusk Gloves,Earth,,"[[""Tiger Gloves"", 1], [""Behemoth Leather"", 1]]","[[""Dusk Gloves +1"", 1], null, null]"
-Amateur,99,"[[""Bonecraft"", 60], [""Clothcraft"", 54]]",Khimaira Jacket,Earth,,"[[""Manticore Leather"", 2], [""Buffalo Horn"", 1], [""Eft Skin"", 1], [""Buffalo Leather"", 2], [""Khimaira Mane"", 2]]","[[""Stout Jacket"", 1], null, null]"
-Amateur,99,[],Narasimha's Vest,Water,,"[[""Beeswax"", 1], [""Manticore Leather"", 1], [""Narasimha Leather"", 1], [""Cardinal Vest"", 1]]","[[""Vishnu's Vest"", 1], null, null]"
-Amateur,99,[],Dynamic Belt,Wind,,"[[""Behemoth Leather"", 1], [""Mercury"", 1], [""Umbril Ooze"", 1]]","[[""Dynamic Belt +1"", 1], null, null]"
-Amateur,99,"[[""Clothcraft"", 50]]",Chelona Boots,Earth,,"[[""Karakul Thread"", 1], [""Karakul Cloth"", 3], [""Platinum Silk Thread"", 1], [""Amphiptere Leather"", 1]]","[[""Chelona Boots +1"", 1], null, null]"
-Amateur,100,"[[""Clothcraft"", 31]]",Austere Robe,Earth,,"[[""Rainbow Thread"", 1], [""Wool Cloth"", 1], [""Rainbow Cloth"", 1], [""Undead Skin"", 1], [""Ram Leather"", 1], [""Tarasque Skin"", 1], [""Yowie Skin"", 1], [""Velvet Robe"", 1]]","[[""Penance Robe"", 1], null, null]"
-Amateur,100,"[[""Goldsmithing"", 41]]",Dusk Jerkin,Earth,,"[[""Gold Ingot"", 1], [""Northern Jerkin"", 1], [""Behemoth Leather"", 1], [""Wyvern Skin"", 1]]","[[""Dusk Jerkin +1"", 1], null, null]"
-Amateur,100,[],Urja Trousers,Earth,,"[[""Buffalo Leather"", 2], [""Squamous Hide"", 2]]","[[""Sthira Trousers"", 1], null, null]"
-Amateur,100,"[[""Clothcraft"", 60]]",Spolia Pigaches,Earth,,"[[""Catoblepas Leather"", 1], [""Sheep Chammy"", 1], [""Wyrdstrand"", 1], [""Wyrdweave"", 2]]","[[""Opima Pigaches"", 1], null, null]"
-Amateur,100,"[[""Smithing"", 60], [""Bonecraft"", 40]]",Ebon Harness,Earth,,"[[""Molybdenum Sheet"", 1], [""Platinum Sheet"", 1], [""Angel Skin"", 1], [""Red Textile Dye"", 1], [""Amphiptere Leather"", 2], [""Shagreen"", 1]]","[null, null, null]"
-Amateur,100,[],Revealer's Pumps,Earth,,"[[""Ancestral Cloth"", 2], [""Prickly Pitriv's Thread"", 2], [""Warblade Beak's Hide"", 1]]","[[""Revealer's Pumps +1"", 1], null, null]"
-Amateur,100,[],Aptitude Mantle,Earth,,"[[""Wool Thread"", 1], [""Lizard Molt"", 1], [""Raaz Hide"", 1], [""Bounding Belinda's Hide"", 1], [""Expert (101-110)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Aptitude Mantle +1"", 1], null, null]"
-Amateur,101,"[[""Goldsmithing"", 60], [""Smithing"", 60]]",Corselet,Earth,,"[[""Adaman Sheet"", 1], [""Mercury"", 1], [""Laminated Buffalo Leather"", 1], [""Ovinnik Leather"", 1], [""Marid Leather"", 1], [""Marid Hair"", 1], [""Scintillant Ingot"", 1], [""Star Sapphire"", 1]]","[[""Corselet +1"", 1], null, null]"
-Amateur,101,[],Haruspex Pigaches,Earth,,"[[""Gold Thread"", 1], [""Raxa"", 1], [""Akaso Cloth"", 1], [""Raaz Hide"", 1], [""Raaz Leather"", 1]]","[[""Haruspex Pigaches +1"", 1], null, null]"
-Amateur,101,[],Aetosaur Gloves,Earth,,"[[""Squamous Hide"", 1], [""Raaz Leather"", 1], [""Leather Gloves"", 1]]","[[""Aetosaur Gloves +1"", 1], null, null]"
-Amateur,102,[],Panther Mask,Ice,,"[[""Wool Thread"", 1], [""Ram Leather"", 1], [""High-Quality Coeurl Hide"", 2], [""Wyvern Skin"", 1]]","[[""Panther Mask +1"", 1], null, null]"
-Amateur,102,"[[""Smithing"", 55]]",Urja Helm,Earth,,"[[""Marid Leather"", 1], [""Dark Bronze Ingot"", 1], [""Squamous Hide"", 2]]","[[""Sthira Helm"", 1], null, null]"
-Amateur,102,[],Testudo Mantle,Earth,,"[[""Behemoth Leather"", 1], [""Manticore Hair"", 1], [""Herensugue Skin"", 1]]","[[""Testudo Mantle +1"", 1], null, null]"
-Amateur,103,[],Hermes' Sandals,Wind,,"[[""Karakul Leather"", 1], [""Lynx Leather"", 1], [""Dark Ixion Tail"", 1]]","[[""Hermes' Sandals +1"", 1], null, null]"
-Amateur,103,"[[""Clothcraft"", 50]]",Attacker's Mantle,Earth,,"[[""Lizard Molt"", 1], [""Hahava's Mail"", 1], [""Wamoura Silk"", 1], [""Squamous Hide"", 1]]","[[""Dauntless Mantle"", 1], null, null]"
-Amateur,103,[],Aetosaur Ledelsens,Earth,,"[[""Squamous Hide"", 1], [""Rhodium Sheet"", 1], [""Raaz Leather"", 1], [""Leather Highboots"", 1]]","[[""Aetosaur Ledelsens +1"", 1], null, null]"
-Amateur,104,[],Sealord Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Sealord Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,104,[],Sealord Leather,Dark,,"[[""Willow Log"", 1], [""Sealord Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,104,[],Urja Gloves,Earth,,"[[""Buffalo Leather"", 1], [""Squamous Hide"", 2]]","[[""Sthira Gloves"", 1], null, null]"
-Amateur,104,[],Pak Corselet,Earth,,"[[""Adaman Sheet"", 1], [""Behemoth Leather"", 2], [""Mercury"", 1], [""Siren's Macrame"", 1], [""Fiendish Skin"", 1], [""Scintillant Ingot"", 1], [""Tanzanite Jewel"", 1]]","[[""Pak Corselet +1"", 1], null, null]"
-Amateur,105,"[[""Smithing"", 54]]",Urja Ledelsens,Earth,,"[[""Buffalo Leather"", 1], [""Dark Bronze Sheet"", 1], [""Squamous Hide"", 2]]","[[""Sthira Ledelsens"", 1], null, null]"
-Amateur,105,[],Phos Belt,Earth,,"[[""Scarlet Kadife"", 1], [""Sealord Leather"", 1], [""Sonic Belt"", 1]]","[[""Phos Belt +1"", 1], null, null]"
-Amateur,105,"[[""Smithing"", 54]]",Urja Jerkin,Earth,,"[[""Buffalo Leather"", 1], [""Dark Bronze Ingot"", 1], [""Squamous Hide"", 2], [""Ogre Jerkin"", 1]]","[[""Sthira Jerkin"", 1], null, null]"
-Amateur,105,[],Clerisy Strap,Wind,,"[[""Behemoth Hide"", 1], [""Bztavian Wing"", 1]]","[[""Clerisy Strap +1"", 1], null, null]"
-Amateur,105,[],Elan Strap,Wind,,"[[""Cerberus Hide"", 1], [""Cehuetzi Pelt"", 1]]","[[""Elan Strap +1"", 1], null, null]"
-Amateur,105,[],Irenic Strap,Wind,,"[[""Behemoth Hide"", 1], [""Rockfin Fin"", 1]]","[[""Irenic Strap +1"", 1], null, null]"
-Amateur,105,[],Mensch Strap,Wind,,"[[""Cerberus Hide"", 1], [""Yggdreant Root"", 1]]","[[""Mensch Strap +1"", 1], null, null]"
-Amateur,105,[],Faulpie Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""S. Faulpie Leather"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,105,[],Faulpie Leather,Dark,,"[[""Willow Log"", 1], [""S. Faulpie Leather"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,106,[],Aetosaur Helm,Earth,,"[[""Squamous Hide"", 2], [""Raaz Leather"", 1]]","[[""Aetosaur Helm +1"", 1], null, null]"
-Amateur,107,"[[""Clothcraft"", 50]]",Hexed Boots,Earth,,"[[""Silver Thread"", 1], [""Lynx Leather"", 1], [""Kukulkan's Skin"", 1], [""Serica Cloth"", 1]]","[[""Hexed Boots -1"", 1], null, null]"
-Amateur,107,[],Aetosaur Trousers,Earth,,"[[""Squamous Hide"", 2], [""Raaz Leather"", 1], [""Leather Trousers"", 1]]","[[""Aetosaur Trousers +1"", 1], null, null]"
-Amateur,108,"[[""Smithing"", 60], [""Goldsmithing"", 30]]",Hexed Tekko,Fire,,"[[""Scarletite Ingot"", 1], [""Gold Sheet"", 1], [""Durium Chain"", 1], [""Taffeta Cloth"", 1], [""Urushi"", 1], [""Sealord Leather"", 1]]","[[""Hexed Tekko -1"", 1], null, null]"
-Amateur,109,[],Aetosaur Jerkin,Earth,,"[[""Squamous Hide"", 2], [""Raaz Leather"", 2]]","[[""Aetosaur Jerkin +1"", 1], null, null]"
-Amateur,109,"[[""Goldsmithing"", 57]]",Sweordfaetels,Earth,,"[[""Palladian Brass Chain"", 1], [""Sealord Leather"", 1], [""Cehuetzi Pelt"", 1]]","[[""Sweordfaetels +1"", 1], null, null]"
-Amateur,110,"[[""Goldsmithing"", 60]]",Hexed Hose,Earth,,"[[""Ormolu Ingot"", 1], [""Behemoth Leather"", 1], [""Pelt of Dawon"", 1], [""Sealord Leather"", 2]]","[[""Hexed Hose -1"", 1], null, null]"
-Amateur,110,"[[""Clothcraft"", 38]]",Hexed Hakama,Fire,,"[[""Scarletite Ingot"", 1], [""Gold Ingot"", 1], [""Gold Thread"", 1], [""Taffeta Cloth"", 1], [""Red Grass Cloth"", 1], [""Sealord Leather"", 2]]","[[""Hexed Hakama -1"", 1], null, null]"
-Amateur,110,[],Pya'ekue Belt,Earth,,"[[""Behemoth Leather"", 1], [""Bztavian Wing"", 1], [""Phos Belt"", 1]]","[[""Pya'ekue Belt +1"", 1], null, null]"
-Amateur,110,"[[""Bonecraft"", 55]]",Beastmaster Collar,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Collar"", 1]]","[[""Beastmaster Collar +1"", 1], [""Beastmaster Collar +2"", 1], null]"
-Amateur,110,"[[""Bonecraft"", 55]]",Dragoon's Collar,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Collar"", 1]]","[[""Dragoon's Collar +1"", 1], [""Dragoon's Collar +2"", 1], null]"
-Amateur,110,"[[""Bonecraft"", 55]]",Puppetmaster's Collar,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Collar"", 1]]","[[""Puppetmaster's Collar +1"", 1], [""Puppetmaster's Collar +2"", 1], null]"
-Amateur,110,"[[""Bonecraft"", 55]]",Summoner's Collar,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Collar"", 1], [""Authority (111-120)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Summoner's Collar +1"", 1], [""Summoner's Collar +2"", 1], null]"
-Amateur,111,"[[""Clothcraft"", 70]]",Bewitched Pumps,Earth,,"[[""Sif's Macrame"", 1], [""Cehuetzi Pelt"", 1], [""Eschite Ore"", 1], [""Cursed Pumps"", 1]]","[[""Voodoo Pumps"", 1], null, null]"
-Amateur,111,"[[""Clothcraft"", 70]]",Vexed Boots,Earth,,"[[""Sif's Macrame"", 1], [""Cehuetzi Pelt"", 1], [""Eschite Ore"", 1], [""Hexed Boots"", 1]]","[[""Jinxed Boots"", 1], null, null]"
-Amateur,111,[],Tempus Fugit,Earth,,"[[""Pya'ekue Belt"", 1], [""Defiant Scarf"", 1], [""Plovid Flesh"", 1]]","[[""Tempus Fugit +1"", 1], null, null]"
-Amateur,111,[],Saotome-no-tachi,Light,Tanner's aurum tome,"[[""Goldsmithing - (Information Needed)"", 1], [""Macuil Plating"", 1], [""Dark Matter"", 1], [""Ruthenium Ore"", 1], [""Moldy G. Katana"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Sakonji-no-tachi"", 1], [""Fusenaikyo"", 1], null]"
-Amateur,111,[],Koga Shinobi-Gatana,Light,Tanner's aurum tome,"[[""Goldsmithing - (Information Needed)"", 1], [""Macuil Plating"", 1], [""Dark Matter"", 1], [""Ruthenium Ore"", 1], [""Moldy Katana"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Mochizuki Shinobi-Gatana"", 1], [""Fudo Masamune"", 1], null]"
-Amateur,112,[],Aput Mantle,Ice,,"[[""Akaso Thread"", 1], [""Cehuetzi Pelt"", 1]]","[[""Aput Mantle +1"", 1], null, null]"
-Amateur,112,"[[""Clothcraft"", 70]]",Vexed Tekko,Fire,,"[[""Cehuetzi Pelt"", 1], [""Muut's Vestment"", 1], [""Eschite Ore"", 1], [""Hexed Tekko"", 1]]","[[""Jinxed Tekko"", 1], null, null]"
-Amateur,113,"[[""Clothcraft"", 70]]",Vexed Hakama,Fire,,"[[""Cehuetzi Pelt"", 1], [""Muut's Vestment"", 1], [""Eschite Ore"", 1], [""Hexed Hakama"", 1]]","[[""Jinxed Hakama"", 1], null, null]"
-Amateur,113,"[[""Goldsmithing"", 70]]",Vexed Hose,Earth,,"[[""Hepatizon Ingot"", 1], [""Plovid Flesh"", 1], [""Eschite Ore"", 1], [""Hexed Hose"", 1]]","[[""Jinxed Hose"", 1], null, null]"
-Amateur,115,[],Wretched Coat,Wind,,"[[""Malboro Fiber"", 1], [""Eltoro Leather"", 1], [""Penelope's Cloth"", 1], [""Belladonna Sap"", 1], [""Plovid Flesh"", 2]]","[[""Wretched Coat +1"", 1], null, null]"
-Amateur,115,[],Gerdr Belt,Earth,,"[[""Orichalcum Chain"", 1], [""Faulpie Leather"", 2], [""Wyrm Ash"", 1]]","[[""Gerdr Belt +1"", 1], null, null]"
-Amateur,115,[],Arke Gambieras,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 1], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 1], [""Faulpie Leather"", 2]]","[[""Arke Gambieras +1"", 1], null, null]"
-Amateur,115,[],Heyoka Leggings,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 1], [""Yggdreant Root"", 1], [""Macuil Horn"", 1], [""Faulpie Leather"", 2]]","[[""Heyoka Leggings +1"", 1], null, null]"
-Amateur,115,[],Arke Manopolas,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 2], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 1], [""Faulpie Leather"", 2]]","[[""Arke Manopolas +1"", 1], null, null]"
-Amateur,115,[],Heyoka Mittens,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 2], [""Yggdreant Root"", 1], [""Macuil Horn"", 1], [""Faulpie Leather"", 2]]","[[""Heyoka Mittens +1"", 1], null, null]"
-Amateur,115,[],Arke Zuchetto,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 1], [""Faulpie Leather"", 2]]","[[""Arke Zuchetto +1"", 1], null, null]"
-Amateur,115,[],Heyoka Cap,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Yggdreant Root"", 1], [""Macuil Horn"", 1], [""Faulpie Leather"", 2]]","[[""Heyoka Cap +1"", 1], null, null]"
-Amateur,115,[],Arke Cosciales,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 1], [""Faulpie Leather"", 3]]","[[""Arke Cosciales +1"", 1], null, null]"
-Amateur,115,[],Heyoka Subligar,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Yggdreant Root"", 1], [""Macuil Horn"", 1], [""Faulpie Leather"", 3]]","[[""Heyoka Subligar +1"", 1], null, null]"
-Amateur,115,[],Arke Corazza,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 2], [""Faulpie Leather"", 3]]","[[""Arke Corazza +1"", 1], null, null]"
-Amateur,115,[],Heyoka Harness,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Yggdreant Root"", 1], [""Macuil Horn"", 2], [""Faulpie Leather"", 3]]","[[""Heyoka Harness +1"", 1], null, null]"
-Amateur,118,[],Ioskeha Belt,Earth,,"[[""Palladian Brass Chain"", 1], [""Wyrm Blood"", 1], [""Plovid Flesh"", 1]]","[[""Ioskeha Belt +1"", 1], null, null]"
+,2,[],Sheep Leather,Dark,,"[[""Sheepskin"", 1], [""Willow Log"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,2,[],Sheep Leather,Dark,,"[[""Sheepskin"", 1], [""Windurstian Tea Leaves"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,2,[],Sheep Leather,Dark,Tanning,"[[""Sheepskin"", 3], [""Windurstian Tea Leaves"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,2,[],Smooth Sheep Leather,Dark,Leather Purification,"[[""Sheepskin"", 1], [""Willow Log"", 1], [""Distilled Water"", 1], [""Wind Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
+,2,[],Smooth Sheep Leather,Dark,Leather Purification,"[[""Sheepskin"", 1], [""Windurstian Tea Leaves"", 1], [""Distilled Water"", 1], [""Wind Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
+,2,[],Vivio Sheep Leather,Dark,Leather Purification,"[[""Sheepskin"", 1], [""Willow Log"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,2,[],Vivio Sheep Leather,Dark,Leather Purification,"[[""Sheepskin"", 1], [""Windurstian Tea Leaves"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,3,"[[""Woodworking"", 1]]",Cesti,Earth,,"[[""Ash Lumber"", 1], [""Sheep Leather"", 2]]","[[""Cesti +1"", 1], null, null]"
+,3,[],Vagabond's Gloves,Earth,,"[[""Sheep Leather"", 2], [""Cotton Cloth"", 1]]","[[""Nomad's Gloves"", 1], null, null]"
+,4,[],Sheep Wool,Wind,,"[[""Sheepskin"", 2]]","[null, null, null]"
+,5,[],Leather Bandana,Wind,,"[[""Sheep Leather"", 1]]","[[""Leather Bandana +1"", 1], null, null]"
+,5,[],Vagabond's Boots,Earth,,"[[""Bronze Scales"", 1], [""Grass Cloth"", 1], [""Sheep Leather"", 2]]","[[""Nomad's Boots"", 1], null, null]"
+,5,[],Leather Bandana,Wind,,"[[""Leathercraft Kit 5"", 1]]","[null, null, null]"
+,5,[],Fine Parchment,Dark,,"[[""Parchment"", 1], [""Pumice Stone"", 1]]","[null, null, null]"
+,6,[],Leather Highboots,Earth,,"[[""Bronze Scales"", 1], [""Sheep Leather"", 3]]","[[""Leather Highboots +1"", 1], null, null]"
+,7,[],Rabbit Mantle,Earth,,"[[""Rabbit Hide"", 5], [""Grass Thread"", 1]]","[[""Rabbit Mantle +1"", 1], null, null]"
+,8,[],Leather Gloves,Earth,,"[[""Grass Cloth"", 1], [""Sheep Leather"", 2]]","[[""Leather Gloves +1"", 1], null, null]"
+,8,[],San d'Orian Cesti,Earth,,"[[""Royal Archer's Cesti"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Cesti"", 1], null, null]"
+,9,[],Leather Trousers,Earth,,"[[""Grass Cloth"", 2], [""Sheep Leather"", 2]]","[[""Leather Trousers +1"", 1], null, null]"
+,10,[],Leather Vest,Earth,,"[[""Sheep Leather"", 3], [""Lizard Skin"", 1]]","[[""Leather Vest +1"", 1], null, null]"
+,10,[],Leather Vest,Earth,,"[[""Leathercraft Kit 10"", 1]]","[null, null, null]"
+,11,"[[""Smithing"", 4]]",Leather Pouch,Earth,,"[[""Bronze Scales"", 1], [""Sheep Leather"", 2], [""Rabbit Hide"", 1]]","[null, null, null]"
+,11,[],Solea,Wind,,"[[""Sheep Leather"", 2]]","[[""Solea +1"", 1], null, null]"
+,12,[],Karakul Leather,Dark,,"[[""Karakul Skin"", 1], [""Imperial Tea Leaves"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,12,[],Karakul Leather,Dark,Tanning,"[[""Karakul Skin"", 3], [""Imperial Tea Leaves"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,12,[],Lizard Belt,Wind,,"[[""Lizard Skin"", 1], [""Iron Chain"", 1]]","[[""Lizard Belt +1"", 1], null, null]"
+,12,[],Sturdy Trousers,Earth,Leather Purification,"[[""Leather Trousers"", 1], [""Lambent Fire Cell"", 1], [""Lambent Earth Cell"", 1]]","[null, null, null]"
+,12,[],Lizard Strap,Wind,,"[[""Lizard Skin"", 2]]","[[""Lizard Strap +1"", 1], null, null]"
+,13,[],Leather Belt,Wind,,"[[""Sheep Leather"", 1], [""Iron Chain"", 1]]","[[""Leather Belt +1"", 1], null, null]"
+,14,[],Fisherman's Gloves,Earth,,"[[""Lizard Skin"", 2], [""Cotton Cloth"", 1]]","[[""Angler's Gloves"", 1], null, null]"
+,14,[],Karakul Wool,Wind,,"[[""Karakul Skin"", 2]]","[null, null, null]"
+,14,[],Lizard Mantle,Earth,,"[[""Lizard Skin"", 1], [""Lizard Molt"", 1], [""Grass Thread"", 1]]","[[""Lizard Mantle +1"", 1], null, null]"
+,15,[],Lizard Helm,Earth,,"[[""Lizard Skin"", 2], [""Sheep Leather"", 1]]","[[""Lizard Helm +1"", 1], null, null]"
+,15,[],Lizard Helm,Earth,,"[[""Leathercraft Kit 15"", 1]]","[null, null, null]"
+,16,[],Augmenting Belt,Wind,Leather Purification,"[[""Lambent Fire Cell"", 1], [""Lambent Earth Cell"", 1], [""Leather Belt"", 1]]","[null, null, null]"
+,16,[],Lizard Gloves,Earth,,"[[""Lizard Skin"", 1], [""Leather Gloves"", 1]]","[[""Fine Gloves"", 1], null, null]"
+,17,[],Lizard Cesti,Earth,,"[[""Cesti"", 1], [""Lizard Skin"", 1]]","[[""Burning Cesti"", 1], null, null]"
+,17,[],Exactitude Mantle,Earth,,"[[""Immortal Molt"", 1], [""Lizard Skin"", 1], [""Grass Thread"", 1]]","[[""Exactitude Mantle +1"", 1], null, null]"
+,18,"[[""Goldsmithing"", 5]]",Lizard Ledelsens,Earth,,"[[""Lizard Skin"", 1], [""Brass Sheet"", 1], [""Leather Highboots"", 1]]","[[""Fine Ledelsens"", 1], null, null]"
+,18,[],Lizard Trousers,Earth,,"[[""Lizard Skin"", 2], [""Leather Trousers"", 1]]","[[""Fine Trousers"", 1], null, null]"
+,19,[],Lizard Jerkin,Earth,,"[[""Lizard Skin"", 3], [""Sheep Leather"", 1]]","[[""Fine Jerkin"", 1], null, null]"
+,19,[],Wolf Fur,Wind,,"[[""Wolf Hide"", 3]]","[null, null, null]"
+,20,[],Fisherman's Boots,Earth,,"[[""Lizard Skin"", 2], [""Bronze Scales"", 1], [""Grass Cloth"", 1]]","[[""Angler's Boots"", 1], null, null]"
+,20,[],Little Worm Belt,Earth,,"[[""Sheep Leather"", 1], [""Animal Glue"", 1], [""Leather Pouch"", 1], [""Worm Mulch"", 1]]","[null, null, null]"
+,20,[],Lugworm Belt,Earth,,"[[""Sheep Leather"", 1], [""Animal Glue"", 1], [""Leather Pouch"", 1], [""Lugworm Sand"", 1]]","[null, null, null]"
+,20,[],Smash Cesti,Earth,Leather Ensorcellment,"[[""Lambent Earth Cell"", 1], [""Lambent Wind Cell"", 1], [""Lizard Cesti"", 1]]","[null, null, null]"
+,20,[],Fisherman's Boots,Earth,,"[[""Leathercraft Kit 20"", 1]]","[null, null, null]"
+,21,[],Dhalmel Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Dhalmel Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,21,[],Dhalmel Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Dhalmel Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,21,[],Dhalmel Leather,Dark,,"[[""Willow Log"", 1], [""Dhalmel Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,21,[],Fragrant Dhalmel Hide,Water,Leather Ensorcellment,"[[""Dhalmel Hide"", 1], [""Wind Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
+,21,[],Tough Dhalmel Leather,Dark,Leather Ensorcellment,"[[""Dhalmel Hide"", 1], [""Windurstian Tea Leaves"", 1], [""Distilled Water"", 1], [""Wind Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
+,21,[],Tough Dhalmel Leather,Dark,Leather Ensorcellment,"[[""Dhalmel Hide"", 1], [""Willow Log"", 1], [""Distilled Water"", 1], [""Wind Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
+,22,[],Leather Ring,Wind,,"[[""Dhalmel Leather"", 1]]","[[""Leather Ring +1"", 1], null, null]"
+,22,[],Chocobo Blinkers,Earth,,"[[""Linen Cloth"", 1], [""Silk Cloth"", 1], [""Karakul Leather"", 1]]","[[""Chocobo Blinkers x6 Verification Needed"", 1], [""Chocobo Blinkers x9 Verification Needed"", 1], [""Chocobo Blinkers x12 Verification Needed"", 1]]"
+,23,[],Chocobo Gloves,Earth,,"[[""Dhalmel Leather"", 1], [""Lizard Skin"", 1], [""Cotton Cloth"", 1]]","[[""Rider's Gloves"", 1], null, null]"
+,24,[],Bugard Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,24,[],Bugard Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Bugard Skin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,24,[],Bugard Leather,Dark,,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,24,[],Glossy Bugard Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Wind Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,24,[],Glossy Bugard Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Wind Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,24,[],Rugged Bugard Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Fire Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,24,[],Rugged Bugard Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Fire Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,24,[],Soft Bugard Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Lightning Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,24,[],Soft Bugard Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Lightning Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,24,[],Studded Bandana,Earth,,"[[""Iron Chain"", 1], [""Leather Bandana"", 1]]","[[""Strong Bandana"", 1], null, null]"
+,24,[],Tough Bugard Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Earth Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,24,[],Tough Bugard Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Earth Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,25,[],Armored Ring,Wind,,"[[""Tough Dhalmel Leather"", 1], [""Leather Ring"", 1]]","[null, null, null]"
+,25,"[[""Clothcraft"", 20]]",Seer's Pumps,Earth,,"[[""Wool Thread"", 2], [""Cotton Cloth"", 2], [""Sheep Leather"", 1]]","[[""Seer's Pumps +1"", 1], null, null]"
+,25,[],Warrior's Belt,Wind,,"[[""Iron Chain"", 1], [""Dhalmel Leather"", 1]]","[[""Warrior's Belt +1"", 1], null, null]"
+,25,[],Warrior's Belt,Wind,,"[[""Leathercraft Kit 25"", 1]]","[null, null, null]"
+,26,[],Studded Gloves,Earth,,"[[""Iron Chain"", 1], [""Dhalmel Leather"", 1], [""Leather Gloves"", 1]]","[[""Strong Gloves"", 1], null, null]"
+,26,"[[""Clothcraft"", 21]]",Trader's Pigaches,Earth,,"[[""Dhalmel Leather"", 1], [""Sheep Leather"", 1], [""Red Grass Thread"", 1], [""Red Grass Cloth"", 2]]","[[""Baron's Pigaches"", 1], null, null]"
+,27,[],Dhalmel Mantle,Ice,,"[[""Dhalmel Hide"", 1], [""Wool Thread"", 1]]","[[""Dhalmel Mantle +1"", 1], null, null]"
+,28,"[[""Clothcraft"", 27]]",Noct Brais,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 2], [""Sheep Leather"", 1]]","[[""Noct Brais +1"", 1], null, null]"
+,28,[],Studded Boots,Earth,,"[[""Iron Chain"", 1], [""Dhalmel Leather"", 1], [""Leather Highboots"", 1]]","[[""Strong Boots"", 1], null, null]"
+,29,[],San d'Orian Bandana,Earth,,"[[""Royal Footman's Bandana"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Bandana"", 1], null, null]"
+,29,[],Sandals,Wind,,"[[""Dhalmel Leather"", 1], [""Sheep Leather"", 1]]","[[""Mage's Sandals"", 1], null, null]"
+,29,[],Aiming Gloves,Earth,Leather Ensorcellment,"[[""Lambent Water Cell"", 1], [""Lambent Wind Cell"", 1], [""Studded Gloves"", 1]]","[null, null, null]"
+,29,[],Dhalmel Hair,Wind,,"[[""Dhalmel Hide"", 3]]","[[""Dhalmel Hair"", 2], [""Dhalmel Hair"", 3], [""Dhalmel Hair"", 4]]"
+,30,[],Breath Mantle,Ice,,"[[""Fragrant Dhalmel Hide"", 1], [""Dhalmel Mantle"", 1]]","[null, null, null]"
+,30,[],Caliginous Wolf Hide,Ice,Leather Purification,"[[""Wolf Hide"", 1], [""Earth Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
+,30,[],Chocobo Boots,Earth,,"[[""Dhalmel Leather"", 2], [""Bronze Scales"", 1], [""Grass Cloth"", 1]]","[[""Rider's Boots"", 1], null, null]"
+,30,[],Studded Trousers,Earth,,"[[""Iron Chain"", 1], [""Dhalmel Leather"", 1], [""Leather Trousers"", 1]]","[[""Strong Trousers"", 1], null, null]"
+,30,[],Studded Trousers,Earth,,"[[""Leathercraft Kit 30"", 1]]","[null, null, null]"
+,31,[],Parchment,Dark,,"[[""Karakul Leather"", 1], [""Rolanberry"", 1]]","[null, null, null]"
+,31,[],Parchment,Dark,,"[[""Rolanberry"", 1], [""Sheep Leather"", 1]]","[[""Parchment"", 2], [""Parchment"", 3], [""Parchment"", 4]]"
+,31,[],San d'Orian Gloves,Earth,,"[[""Royal Footman's Gloves"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Gloves"", 1], null, null]"
+,31,[],Vellum,Dark,,"[[""Rolanberry"", 1], [""Sheep Leather"", 1], [""Gold Dust"", 1]]","[[""Vellum"", 4], null, null]"
+,32,[],Studded Vest,Earth,,"[[""Dhalmel Leather"", 1], [""Ram Leather"", 1], [""Iron Chain"", 1], [""Leather Vest"", 1]]","[[""Strong Vest"", 1], null, null]"
+,33,[],Field Gloves,Earth,,"[[""Dhalmel Leather"", 1], [""Cotton Cloth"", 1], [""Ram Leather"", 1]]","[[""Worker Gloves"", 1], null, null]"
+,33,[],San d'Orian Boots,Earth,,"[[""Royal Footman's Boots"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Boots"", 1], null, null]"
+,33,[],Wolf Mantle,Ice,,"[[""Wolf Hide"", 1], [""Wool Thread"", 1]]","[[""Wolf Mantle +1"", 1], null, null]"
+,34,"[[""Clothcraft"", 8]]",Shoes,Earth,,"[[""Dhalmel Leather"", 2], [""Cotton Cloth"", 1]]","[[""Shoes +1"", 1], null, null]"
+,35,[],Bloody Ram Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Ram Skin"", 1], [""Earth Anima"", 1], [""Lightning Anima"", 1], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,35,[],Healing Vest,Earth,,"[[""Vivio Sheep Leather"", 1], [""Studded Vest"", 1]]","[null, null, null]"
+,35,[],Light Ram Leather,Dark,Leather Purification,"[[""Ram Skin"", 1], [""Windurstian Tea Leaves"", 1], [""Distilled Water"", 1], [""Ice Anima"", 1], [""Lightning Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
+,35,[],Ram Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Ram Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,35,[],Ram Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Ram Skin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,35,[],San d'Orian Trousers,Earth,,"[[""Royal Footman's Trousers"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Trousers"", 1], null, null]"
+,35,[],Ram Leather,Dark,,"[[""Leathercraft Kit 35"", 1]]","[null, null, null]"
+,36,[],Bloody Ram Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Ram Skin"", 1], [""Earth Anima"", 1], [""Lightning Anima"", 1], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,36,[],Fragrant Ram Skin,Water,Leather Ensorcellment,"[[""Ram Skin"", 1], [""Wind Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
+,36,[],Invisible Mantle,Ice,,"[[""Caliginous Wolf Hide"", 1], [""Wolf Mantle"", 1]]","[null, null, null]"
+,36,[],Light Ram Leather,Dark,Leather Purification,"[[""Ram Skin"", 1], [""Willow Log"", 1], [""Distilled Water"", 1], [""Ice Anima"", 1], [""Lightning Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
+,36,[],Ram Leather,Dark,,"[[""Willow Log"", 1], [""Ram Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,37,"[[""Clothcraft"", 28]]",Garish Pumps,Earth,,"[[""Sheep Leather"", 1], [""Scarlet Linen"", 2], [""Bloodthread"", 2]]","[[""Rubious Pumps"", 1], null, null]"
+,37,[],Leather Gorget,Earth,,"[[""Ram Leather"", 1], [""Grass Thread"", 1]]","[[""Leather Gorget +1"", 1], null, null]"
+,37,[],Magic Belt,Wind,,"[[""Toad Oil"", 1], [""Mercury"", 1], [""Ram Leather"", 1]]","[[""Magic Belt +1"", 1], null, null]"
+,37,[],San d'Orian Vest,Earth,,"[[""Royal Footman's Vest"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Vest"", 1], null, null]"
+,38,[],Cuir Bandana,Water,,"[[""Ram Leather"", 1], [""Beeswax"", 1], [""Leather Bandana"", 1]]","[[""Cuir Bandana +1"", 1], null, null]"
+,39,[],Combat Caster's Shoes +1,Earth,,"[[""Combat Caster's Shoes"", 1], [""Dhalmel Leather"", 1]]","[[""Combat Caster's Shoes +2"", 1], null, null]"
+,39,"[[""Alchemy"", 10]]",Laminated Ram Leather,Earth,,"[[""Ram Leather"", 1], [""Animal Glue"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,39,[],Wolf Gorget,Earth,,"[[""Cotton Thread"", 1], [""Wolf Hide"", 1]]","[[""Wolf Gorget +1"", 1], null, null]"
+,40,[],Cuir Gloves,Water,,"[[""Ram Leather"", 2], [""Beeswax"", 1], [""Leather Gloves"", 1]]","[[""Cuir Gloves +1"", 1], null, null]"
+,40,[],Field Boots,Earth,,"[[""Bronze Scales"", 1], [""Grass Cloth"", 1], [""Ram Leather"", 2]]","[[""Worker Boots"", 1], null, null]"
+,40,[],Mist Pumps,Earth,,"[[""Smooth Sheep Leather"", 1], [""Garish Pumps"", 1]]","[null, null, null]"
+,40,[],Field Boots,Earth,,"[[""Leathercraft Kit 40"", 1]]","[null, null, null]"
+,41,[],Barbarian's Belt,Water,,"[[""Leather Belt"", 1], [""Fiend Blood"", 1], [""Beastman Blood"", 1]]","[[""Brave Belt"", 1], null, null]"
+,42,[],Cuir Highboots,Water,,"[[""Ram Leather"", 2], [""Beeswax"", 1], [""Leather Highboots"", 1]]","[[""Cuir Highboots +1"", 1], null, null]"
+,43,[],Waistbelt,Wind,,"[[""Grass Thread"", 1], [""Ram Leather"", 2]]","[[""Waistbelt +1"", 1], null, null]"
+,44,[],Acrobat's Belt,Earth,,"[[""Glossy Bugard Leather"", 1], [""Barbarian's Belt"", 1]]","[null, null, null]"
+,44,[],Runner's Belt,Earth,,"[[""Soft Bugard Leather"", 1], [""Barbarian's Belt"", 1]]","[null, null, null]"
+,44,[],Samsonian Belt,Earth,,"[[""Rugged Bugard Leather"", 1], [""Barbarian's Belt"", 1]]","[null, null, null]"
+,44,[],Tough Belt,Earth,,"[[""Tough Bugard Leather"", 1], [""Barbarian's Belt"", 1]]","[null, null, null]"
+,45,[],Cuir Trousers,Water,,"[[""Ram Leather"", 2], [""Beeswax"", 1], [""Leather Trousers"", 1]]","[[""Cuir Trousers +1"", 1], null, null]"
+,45,"[[""Clothcraft"", 27]]",Chocobo Jack Coat,Earth,,"[[""Linen Cloth"", 1], [""Sheep Leather"", 1], [""Wool Thread"", 1], [""Wool Cloth"", 1], [""Ram Leather"", 2]]","[[""Rider's Jack Coat"", 1], null, null]"
+,45,[],Powder Boots,Earth,,"[[""Tough Dhalmel Leather"", 1], [""Cuir Highboots"", 1]]","[null, null, null]"
+,45,"[[""Clothcraft"", 4]]",Tarasque Mitts,Earth,,"[[""Saruta Cotton"", 1], [""Tarasque Skin"", 2], [""Grass Thread"", 2]]","[[""Tarasque Mitts +1"", 1], null, null]"
+,45,[],Cuir Trousers,Water,,"[[""Leathercraft Kit 45"", 1]]","[null, null, null]"
+,46,[],Cuir Bouilli,Water,,"[[""Ram Leather"", 2], [""Beeswax"", 1], [""Leather Vest"", 1]]","[[""Cuir Bouilli +1"", 1], null, null]"
+,46,[],Haste Belt,Earth,,"[[""Light Ram Leather"", 1], [""Waistbelt"", 1]]","[null, null, null]"
+,46,[],Royal Knight's Belt +1,Earth,,"[[""Royal Knight's Belt"", 1], [""Ram Leather"", 1]]","[[""Royal Knight's Belt +2"", 1], null, null]"
+,46,[],Narasimha Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Narasimha Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,47,[],Narasimha Leather,Dark,,"[[""Willow Log"", 1], [""Narasimha Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,48,[],Corsette,Earth,,"[[""Waistbelt"", 1], [""Coeurl Whisker"", 1], [""Scarlet Ribbon"", 1], [""Dhalmel Leather"", 1], [""Silk Cloth"", 1]]","[[""Corsette +1"", 1], null, null]"
+,49,[],Buffalo Leather,Dark,,"[[""Willow Log"", 1], [""Buffalo Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,49,[],Buffalo Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Buffalo Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,49,[],Buffalo Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Buffalo Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,49,[],Ram Mantle,Ice,,"[[""Ram Skin"", 1], [""Wool Thread"", 1]]","[[""Ram Mantle +1"", 1], null, null]"
+,50,[],Narasimha's Cesti,Earth,,"[[""Cesti"", 1], [""Narasimha Leather"", 1]]","[[""Vishnu's Cesti"", 1], null, null]"
+,50,[],Leather Shield,Earth,,"[[""Ram Leather"", 1], [""Raptor Skin"", 1], [""Lauan Shield"", 1]]","[[""Leather Shield +1"", 1], null, null]"
+,50,[],Leather Shield,Earth,,"[[""Leathercraft Kit 50"", 1]]","[null, null, null]"
+,51,[],Frigid Skin,Dark,Leather Ensorcellment,"[[""Raptor Skin"", 1], [""Ice Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
+,52,[],High Breath Mantle,Ice,,"[[""Fragrant Ram Skin"", 1], [""Ram Mantle"", 1]]","[null, null, null]"
+,52,[],Himantes,Earth,,"[[""Raptor Skin"", 1], [""Lizard Cesti"", 1]]","[[""Himantes +1"", 1], null, null]"
+,52,[],Moblin Sheep Leather,Dark,,"[[""Willow Log"", 1], [""Moblin Sheepskin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,52,[],Moblin Sheep Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Moblin Sheepskin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,52,[],Moblin Sheep Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Moblin Sheepskin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,53,"[[""Alchemy"", 9]]",Laminated Buffalo Leather,Earth,,"[[""Animal Glue"", 1], [""Buffalo Leather"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,53,[],Raptor Strap,Wind,,"[[""Raptor Skin"", 2]]","[[""Raptor Strap +1"", 1], null, null]"
+,53,[],Raptor Mantle,Earth,,"[[""Raptor Skin"", 2], [""Grass Thread"", 1]]","[[""Dino Mantle"", 1], null, null]"
+,54,[],Moblin Sheep Wool,Wind,,"[[""Moblin Sheepskin"", 2]]","[null, null, null]"
+,54,[],Raptor Trousers,Earth,,"[[""Raptor Skin"", 2], [""Cuir Trousers"", 1]]","[[""Dino Trousers"", 1], null, null]"
+,55,"[[""Goldsmithing"", 28]]",Raptor Ledelsens,Earth,,"[[""Raptor Skin"", 1], [""Cuir Highboots"", 1], [""Mythril Sheet"", 1]]","[[""Dino Ledelsens"", 1], null, null]"
+,55,[],Noble Himantes,Earth,Leather Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Himantes"", 1]]","[null, null, null]"
+,55,[],Raptor Gloves,Earth,,"[[""Leathercraft Kit 55"", 1]]","[null, null, null]"
+,56,"[[""Clothcraft"", 49]]",Crow Gaiters,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 3], [""Sheep Leather"", 1], [""Ram Leather"", 1], [""Tiger Leather"", 1]]","[[""Raven Gaiters"", 1], null, null]"
+,56,"[[""Smithing"", 28]]",Raptor Helm,Earth,,"[[""Raptor Skin"", 2], [""Iron Sheet"", 1], [""Sheep Leather"", 1]]","[[""Dino Helm"", 1], null, null]"
+,56,[],Royal Squire's Shield +1,Earth,,"[[""Royal Squire's Shield"", 1], [""Ram Leather"", 1]]","[[""Royal Squire's Shield +2"", 1], null, null]"
+,57,"[[""Goldsmithing"", 50], [""Clothcraft"", 48]]",Brigandine,Earth,,"[[""Lizard Jerkin"", 1], [""Velvet Cloth"", 2], [""Gold Sheet"", 1], [""Ram Leather"", 1], [""Mythril Sheet"", 1], [""Brass Scales"", 1]]","[[""Brigandine +1"", 1], null, null]"
+,57,[],Desert Boots,Earth,,"[[""Bronze Scales"", 1], [""Sheep Leather"", 2], [""Yowie Skin"", 1]]","[[""Desert Boots +1"", 1], null, null]"
+,57,[],Ice Trousers,Earth,,"[[""Frigid Skin"", 1], [""Raptor Trousers"", 1]]","[null, null, null]"
+,57,[],Raptor Gloves,Earth,,"[[""Cuir Gloves"", 1], [""Raptor Skin"", 1]]","[[""Dino Gloves"", 1], null, null]"
+,58,[],Catoblepas Leather,Dark,,"[[""Willow Log"", 1], [""Catoblepas Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,58,[],Catoblepas Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Catoblepas Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,58,[],Catoblepas Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Catoblepas Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,58,[],Raptor Jerkin,Earth,,"[[""Raptor Skin"", 2], [""Sheep Leather"", 1]]","[[""Dino Jerkin"", 1], null, null]"
+,59,"[[""Smithing"", 50]]",Brigandine,Earth,,"[[""Clothcraft - (38)"", 1], [""Darksteel Sheet"", 2], [""Linen Cloth"", 1], [""Iron Chain"", 1], [""Tiger Leather"", 1], [""Sheep Leather"", 1], [""Velvet Cloth"", 1], [""Wool Thread"", 1]]","[[""Brigandine +1"", 1], null, null]"
+,59,"[[""Clothcraft"", 8]]",Moccasins,Earth,,"[[""Dhalmel Leather"", 1], [""Linen Cloth"", 1], [""Raptor Skin"", 1]]","[[""Moccasins +1"", 1], null, null]"
+,60,[],Amemet Mantle,Earth,,"[[""Amemet Skin"", 1], [""Lizard Molt"", 1], [""Grass Thread"", 1]]","[[""Amemet Mantle +1"", 1], null, null]"
+,60,[],Blizzard Gloves,Earth,,"[[""Frigid Skin"", 1], [""Raptor Gloves"", 1]]","[null, null, null]"
+,60,[],Hard Leather Ring,Wind,,"[[""Leathercraft Kit 60"", 1]]","[null, null, null]"
+,61,[],Tiger Leather,Dark,,"[[""Willow Log"", 1], [""Tiger Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,61,[],Tiger Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Tiger Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,61,[],Tiger Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Tiger Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,61,[],Smilodon Leather,Dark,,"[[""Willow Log"", 1], [""Smilodon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,61,[],Smilodon Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Smilodon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,61,[],Smilodon Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Smilodon Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,61,[],Spirit Smilodon Leather,Dark,Leather Purification,"[[""Earth Anima"", 2], [""Dark Anima"", 1], [""Windurstian Tea Leaves"", 1], [""Smilodon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,61,[],Spirit Smilodon Leather,Dark,Leather Purification,"[[""Earth Anima"", 2], [""Dark Anima"", 1], [""Willow Log"", 1], [""Smilodon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,62,[],Hard Leather Ring,Wind,,"[[""Tiger Leather"", 1]]","[[""Tiger Ring"", 1], null, null]"
+,62,"[[""Goldsmithing"", 57], [""Clothcraft"", 54]]",Premium Bag,Earth,,"[[""Bugard Leather"", 1], [""Gold Thread"", 1], [""Moblin Sheep Leather"", 1], [""Moblin Sheep Wool"", 1], [""Platinum Ingot"", 1], [""Rainbow Cloth"", 1], [""Rainbow Thread"", 1]]","[null, null, null]"
+,62,[],Smilodon Ring,Wind,,"[[""Smilodon Leather"", 1]]","[[""Smilodon Ring +1"", 1], null, null]"
+,63,[],Beak Mantle,Earth,,"[[""Cockatrice Skin"", 2], [""Grass Thread"", 1]]","[[""Beak Mantle +1"", 1], null, null]"
+,63,"[[""Clothcraft"", 46]]",Crow Hose,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Sheep Leather"", 1], [""Tiger Leather"", 2]]","[[""Raven Hose"", 1], null, null]"
+,63,[],Bugard Strap,Wind,,"[[""Bugard Leather"", 2]]","[[""Bugard Strap +1"", 1], null, null]"
+,64,[],Beak Trousers,Earth,,"[[""Cockatrice Skin"", 2], [""Cuir Trousers"", 1]]","[[""Beak Trousers +1"", 1], null, null]"
+,64,"[[""Clothcraft"", 25]]",Jaridah Khud,Earth,,"[[""Karakul Leather"", 1], [""Marid Leather"", 1], [""Marid Hair"", 1], [""Karakul Cloth"", 1]]","[[""Akinji Khud"", 1], null, null]"
+,64,[],Stirge Belt,Wind,,"[[""Ram Leather"", 1], [""Mercury"", 1], [""Toad Oil"", 1], [""Volant Serum"", 1]]","[null, null, null]"
+,65,"[[""Goldsmithing"", 28]]",Beak Ledelsens,Earth,,"[[""Cockatrice Skin"", 1], [""Cuir Highboots"", 1], [""Mythril Sheet"", 1]]","[[""Beak Ledelsens +1"", 1], null, null]"
+,65,"[[""Alchemy"", 43]]",Sheep Chammy,Dark,,"[[""Sheepskin"", 1], [""Windurstian Tea Leaves"", 1], [""Clot Plasma"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,65,"[[""Alchemy"", 43]]",Sheep Chammy,Dark,,"[[""Sheepskin"", 1], [""Willow Log"", 1], [""Clot Plasma"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,65,[],Protect Ring,Earth,,"[[""Smilodon Ring"", 1], [""Spirit Smilodon Leather"", 1]]","[null, null, null]"
+,66,[],Battle Boots,Earth,,"[[""Iron Scales"", 1], [""Ram Leather"", 2], [""Tiger Leather"", 1]]","[[""Battle Boots +1"", 1], null, null]"
+,66,"[[""Smithing"", 43], [""Clothcraft"", 39]]",Jaridah Peti,Earth,,"[[""Steel Ingot"", 1], [""Steel Sheet"", 1], [""Darksteel Chain"", 1], [""Brass Chain"", 1], [""Velvet Cloth"", 1], [""Karakul Leather"", 1], [""Marid Leather"", 1], [""Karakul Cloth"", 1]]","[[""Akinji Peti"", 1], null, null]"
+,66,[],Battle Boots,Earth,,"[[""Leathercraft Kit 66"", 1]]","[null, null, null]"
+,67,"[[""Smithing"", 28]]",Beak Helm,Earth,,"[[""Iron Sheet"", 1], [""Sheep Leather"", 1], [""Cockatrice Skin"", 2]]","[[""Beak Helm +1"", 1], null, null]"
+,67,[],White Mouton,Dark,,"[[""Willow Log"", 1], [""Ram Skin"", 1], [""Shell Powder"", 2], [""Distilled Water"", 1]]","[null, null, null]"
+,67,[],White Mouton,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Ram Skin"", 1], [""Shell Powder"", 2], [""Distilled Water"", 1]]","[null, null, null]"
+,68,[],Beak Gloves,Earth,,"[[""Cockatrice Skin"", 1], [""Cuir Gloves"", 1]]","[[""Beak Gloves +1"", 1], null, null]"
+,68,"[[""Woodworking"", 53], [""Smithing"", 9]]",Hoplon,Earth,,"[[""Bronze Sheet"", 1], [""Chestnut Lumber"", 1], [""Walnut Lumber"", 1], [""Ram Leather"", 1]]","[[""Hoplon +1"", 1], null, null]"
+,69,[],Beak Jerkin,Earth,,"[[""Sheep Leather"", 1], [""Cockatrice Skin"", 2]]","[[""Beak Jerkin +1"", 1], null, null]"
+,69,"[[""Smithing"", 34]]",Byrnie,Earth,,"[[""Darksteel Sheet"", 1], [""Dhalmel Leather"", 1], [""Ram Leather"", 1], [""Tiger Leather"", 1], [""Behemoth Leather"", 1], [""Silver Mail"", 1]]","[[""Byrnie +1"", 1], null, null]"
+,69,[],Tabin Boots,Earth,,"[[""Marid Leather"", 1], [""Battle Boots"", 1]]","[[""Tabin Boots +1"", 1], null, null]"
+,69,[],Silky Suede,Wind,,"[[""Garnet"", 1], [""Buffalo Leather"", 1]]","[null, null, null]"
+,70,[],Behemoth Leather,Dark,,"[[""Willow Log"", 1], [""Behemoth Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,70,[],Behemoth Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Behemoth Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,70,[],Behemoth Mantle,Ice,,"[[""Wool Thread"", 1], [""Behemoth Hide"", 1]]","[[""Behemoth Mantle +1"", 1], null, null]"
+,70,"[[""Alchemy"", 46], [""Clothcraft"", 32]]",Black Cotehardie,Earth,,"[[""Beak Jerkin"", 1], [""Black Ink"", 1], [""Malboro Fiber"", 1], [""Ram Leather"", 1], [""Tiger Leather"", 1], [""Mistletoe"", 1], [""Fiend Blood"", 1], [""Velvet Robe"", 1]]","[[""Flora Cotehardie"", 1], null, null]"
+,70,[],Behemoth Mantle,Ice,,"[[""Leathercraft Kit 70"", 1]]","[null, null, null]"
+,71,[],Coeurl Leather,Dark,,"[[""Willow Log"", 1], [""Coeurl Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,71,[],Coeurl Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Coeurl Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,71,[],Coeurl Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Coeurl Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,71,"[[""Clothcraft"", 45]]",Pigaches,Earth,,"[[""Gold Thread"", 1], [""Silk Cloth"", 1], [""Tiger Leather"", 2], [""Raptor Skin"", 1]]","[[""Pigaches +1"", 1], null, null]"
+,71,"[[""Clothcraft"", 45]]",Silken Pigaches,Earth,,"[[""Gold Thread"", 1], [""Raptor Skin"", 1], [""Tiger Leather"", 2], [""Imperial Silk Cloth"", 1]]","[[""Magi Pigaches"", 1], null, null]"
+,71,[],Spartan Hoplon,Earth,,"[[""Bloody Ram Leather"", 1], [""Hoplon"", 1]]","[null, null, null]"
+,71,[],Swordbelt,Earth,,"[[""Iron Chain"", 1], [""Tiger Leather"", 2]]","[[""Swordbelt +1"", 1], null, null]"
+,71,[],Lynx Leather,Dark,,"[[""Willow Log"", 1], [""Lynx Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,71,[],Lynx Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Lynx Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,71,[],Lynx Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Lynx Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,72,[],Coeurl Cesti,Earth,,"[[""Cesti"", 1], [""Coeurl Leather"", 1]]","[[""Torama Cesti"", 1], null, null]"
+,72,[],Ovinnik Leather,Dark,,"[[""Willow Log"", 1], [""Ovinnik Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,72,[],Ovinnik Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Ovinnik Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,73,"[[""Clothcraft"", 41]]",Battle Hose,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 2]]","[[""Battle Hose +1"", 1], null, null]"
+,73,[],Manta Leather,Dark,,"[[""Willow Log"", 1], [""Manta Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,73,[],Manta Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Manta Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,73,[],Manta Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Manta Skin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,74,[],Lamia Mantle,Earth,,"[[""Manta Skin"", 1], [""Lamia Skin"", 1], [""Mohbwa Thread"", 1]]","[[""Lamia Mantle +1"", 1], null, null]"
+,74,[],Tiger Trousers,Earth,,"[[""Cuir Trousers"", 1], [""Tiger Leather"", 2]]","[[""Feral Trousers"", 1], null, null]"
+,75,"[[""Smithing"", 38], [""Clothcraft"", 27]]",Goblin Coif,Earth,,"[[""Goblin Cutting"", 1], [""Steel Sheet"", 1], [""Linen Cloth"", 1], [""Artificial Lens"", 2], [""Moblin Thread"", 1], [""Undead Skin"", 1], [""Sheep Leather"", 1]]","[null, null, null]"
+,75,"[[""Goldsmithing"", 28]]",Tiger Ledelsens,Earth,,"[[""Cuir Highboots"", 1], [""Mythril Sheet"", 1], [""Tiger Leather"", 1]]","[[""Feral Ledelsens"", 1], null, null]"
+,75,[],Tiger Mantle,Ice,,"[[""Tiger Hide"", 1], [""Wool Thread"", 1]]","[[""Feral Mantle"", 1], null, null]"
+,75,[],Smilodon Mantle,Ice,,"[[""Smilodon Hide"", 1], [""Wool Thread"", 1]]","[[""Smilodon Mantle +1"", 1], null, null]"
+,75,[],Tiger Mantle,Ice,,"[[""Leathercraft Kit 75"", 1]]","[null, null, null]"
+,76,"[[""Goldsmithing"", 44], [""Smithing"", 41]]",Black Adargas,Fire,,"[[""Darksteel Ingot"", 2], [""Oak Lumber"", 1], [""Gold Ingot"", 1], [""Ovinnik Leather"", 1]]","[[""Black Adargas +1"", 1], null, null]"
+,76,[],Marid Leather,Dark,,"[[""Marid Hide"", 1], [""Imperial Tea Leaves"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,76,[],Marid Leather,Dark,Tanning,"[[""Marid Hide"", 3], [""Imperial Tea Leaves"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,76,"[[""Clothcraft"", 47]]",Silk Pumps,Earth,,"[[""Gold Thread"", 2], [""Silk Cloth"", 2], [""Sheep Leather"", 1]]","[[""Silk Pumps +1"", 1], null, null]"
+,76,[],Tabin Hose,Earth,,"[[""Marid Leather"", 1], [""Battle Hose"", 1]]","[[""Tabin Hose +1"", 1], null, null]"
+,76,[],Tactician Magician's Pigaches +1,Earth,,"[[""Tactician Magician's Pigaches"", 1], [""Tiger Leather"", 1]]","[[""Tactician Magician's Pigaches +2"", 1], null, null]"
+,77,"[[""Goldsmithing"", 46], [""Smithing"", 25]]",Adargas,Fire,,"[[""Steel Ingot"", 2], [""Oak Lumber"", 1], [""Gold Ingot"", 1], [""Rheiyoh Leather"", 1]]","[[""Adargas +1"", 1], null, null]"
+,77,[],Tiger Gloves,Earth,,"[[""Cuir Gloves"", 1], [""Tiger Leather"", 1]]","[[""Feral Gloves"", 1], null, null]"
+,77,[],Yellow Mouton,Dark,,"[[""Ram Skin"", 1], [""Distilled Water"", 1], [""Windurstian Tea Leaves"", 1], [""Orpiment"", 2]]","[null, null, null]"
+,77,[],Yellow Mouton,Dark,,"[[""Ram Skin"", 1], [""Distilled Water"", 1], [""Willow Log"", 1], [""Orpiment"", 2]]","[null, null, null]"
+,78,[],Black Mantle,Earth,,"[[""Tiger Mantle"", 1], [""Wool Thread"", 1], [""Tiger Leather"", 1]]","[[""Black Mantle +1"", 1], null, null]"
+,78,"[[""Smithing"", 41]]",Tiger Helm,Earth,,"[[""Darksteel Sheet"", 1], [""Tiger Leather"", 2], [""Sheep Leather"", 1]]","[[""Feral Helm"", 1], null, null]"
+,78,[],Lavalier,Earth,,"[[""Behemoth Leather"", 1], [""Manticore Hair"", 1]]","[[""Lavalier +1"", 1], null, null]"
+,79,[],Coeurl Gorget,Earth,,"[[""Coeurl Hide"", 1], [""Cotton Thread"", 1]]","[[""Torama Gorget"", 1], null, null]"
+,79,[],Marid Mantle,Ice,,"[[""Marid Hide"", 1], [""Karakul Thread"", 1]]","[[""Marid Mantle +1"", 1], null, null]"
+,79,[],Tiger Jerkin,Earth,,"[[""Tiger Leather"", 2], [""Sheep Leather"", 1]]","[[""Feral Jerkin"", 1], null, null]"
+,79,[],Finesse Gloves,Earth,,"[[""Coquecigrue Skin"", 1], [""Beak Gloves"", 1]]","[[""Finesse Gloves +1"", 1], null, null]"
+,79,[],Marid Mantle,Ice,,"[[""Leathercraft Kit 79"", 1]]","[null, null, null]"
+,80,"[[""Alchemy"", 46], [""Clothcraft"", 32]]",Blue Cotehardie,Earth,,"[[""Beak Jerkin"", 1], [""Velvet Robe"", 1], [""Malboro Fiber"", 1], [""Tiger Leather"", 1], [""Beetle Blood"", 1], [""Mistletoe"", 1], [""Fiend Blood"", 1], [""Ram Leather"", 1]]","[[""Blue Cotehardie +1"", 1], null, null]"
+,80,[],Manticore Leather,Dark,,"[[""Willow Log"", 1], [""Manticore Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,80,[],Manticore Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Manticore Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,80,[],Manticore Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Manticore Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,80,"[[""Smithing"", 34]]",Styrne Byrnie,Earth,,"[[""Herensugue Skin"", 1], [""Behemoth Leather"", 1], [""Tiger Leather"", 1], [""Dhalmel Leather"", 1], [""Silver Mail"", 1], [""Darksteel Sheet"", 1]]","[[""Styrne Byrnie +1"", 1], null, null]"
+,81,[],Marid Belt,Earth,,"[[""Darksteel Chain"", 1], [""Marid Leather"", 2]]","[[""Marid Belt +1"", 1], null, null]"
+,81,"[[""Clothcraft"", 57]]",Noble's Pumps,Earth,,"[[""Gold Thread"", 2], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""Rainbow Cloth"", 1]]","[[""Aristocrat's Pumps"", 1], null, null]"
+,81,[],Tropical Punches,Earth,,"[[""Sheep Leather"", 1], [""Fruit Punches"", 1]]","[[""Tropical Punches +1"", 1], null, null]"
+,81,"[[""Smithing"", 58]]",Wivre Shield,Earth,,"[[""Darksteel Sheet"", 3], [""Wivre Hide"", 2], [""Ash Lumber"", 1]]","[[""Wivre Shield +1"", 1], null, null]"
+,81,[],Cerberus Leather,Dark,,"[[""Imperial Tea Leaves"", 1], [""Cerberus Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,81,[],Peiste Leather,Dark,,"[[""Willow Log"", 1], [""Peiste Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,81,[],Peiste Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Peiste Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,81,[],Peiste Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Peiste Skin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,82,[],Behemoth Cesti,Earth,,"[[""Behemoth Leather"", 1], [""Cesti"", 1]]","[[""Behemoth Cesti +1"", 1], null, null]"
+,82,[],Troll Coif,Earth,,"[[""Karakul Leather"", 2], [""Manticore Hair"", 1], [""Marid Leather"", 1], [""Marid Hair"", 1], [""Mohbwa Cloth"", 1]]","[null, null, null]"
+,82,[],Nomad's Mantle,Earth,,"[[""Rabbit Hide"", 1], [""Traveler's Mantle"", 1]]","[[""Nomad's Mantle +1"", 1], null, null]"
+,83,[],Air Solea,Wind,,"[[""Lizard Molt"", 1], [""Light Soleas"", 1]]","[[""Air Solea +1"", 1], null, null]"
+,83,[],Coeurl Trousers,Earth,,"[[""Cuir Trousers"", 1], [""Coeurl Leather"", 2]]","[[""Torama Trousers"", 1], null, null]"
+,83,"[[""Clothcraft"", 55]]",War Beret,Earth,,"[[""Gold Thread"", 1], [""Tiger Leather"", 2], [""Giant Bird Plume"", 1]]","[[""War Beret +1"", 1], null, null]"
+,83,[],Peiste Belt,Wind,,"[[""Peiste Leather"", 1], [""Iron Chain"", 1]]","[[""Peiste Belt +1"", 1], null, null]"
+,83,[],Ruszor Leather,Dark,,"[[""Willow Log"", 1], [""Ruszor Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,83,[],Ruszor Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Ruszor Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,83,[],Ruszor Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Ruszor Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,83,[],Fowler's Mantle,Ice,,"[[""Woolly Pelage"", 1], [""Wool Thread"", 1]]","[[""Fowler's Mantle +1"", 1], null, null]"
+,84,"[[""Goldsmithing"", 23]]",Coeurl Ledelsens,Earth,,"[[""Cuir Highboots"", 1], [""Coeurl Leather"", 1], [""Mythril Sheet"", 1]]","[[""Torama Ledelsens"", 1], null, null]"
+,84,[],Empowering Mantle,Earth,,"[[""Enhancing Mantle"", 1], [""Lizard Skin"", 1]]","[[""Empowering Mantle +1"", 1], null, null]"
+,84,[],Ogre Trousers,Earth,,"[[""Coeurl Trousers"", 1], [""Manticore Leather"", 1]]","[[""Ogre Trousers +1"", 1], null, null]"
+,84,"[[""Clothcraft"", 37]]",Wise Braconi,Earth,,"[[""Silver Thread"", 2], [""Velvet Cloth"", 2], [""Eft Skin"", 1], [""Eltoro Leather"", 1]]","[[""Wise Braconi +1"", 1], null, null]"
+,84,[],Kinesis Mantle,Earth,,"[[""Ratatoskr Pelt"", 1], [""Nomad's Mantle"", 1]]","[[""Kinesis Mantle +1"", 1], null, null]"
+,84,[],Raaz Leather,Dark,,"[[""Willow Log"", 1], [""Raaz Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,84,[],Raaz Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Raaz Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,84,[],Raaz Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Raaz Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,85,[],Coeurl Mantle,Ice,,"[[""Coeurl Hide"", 1], [""Wool Thread"", 1]]","[[""Torama Mantle"", 1], null, null]"
+,85,[],Northern Jerkin,Earth,,"[[""Tiger Jerkin"", 1], [""Undead Skin"", 1]]","[[""Tundra Jerkin"", 1], null, null]"
+,85,[],Ogre Ledelsens,Earth,,"[[""Coeurl Ledelsens"", 1], [""Manticore Leather"", 1]]","[[""Ogre Ledelsens +1"", 1], null, null]"
+,85,[],Sonic Belt,Earth,,"[[""Ram Leather"", 1], [""Speed Belt"", 1]]","[[""Sonic Belt +1"", 1], null, null]"
+,85,[],War Boots,Earth,,"[[""Coeurl Leather"", 1], [""Gold Chain"", 1], [""Tiger Leather"", 2]]","[[""War Boots +1"", 1], null, null]"
+,85,"[[""Clothcraft"", 34]]",Wise Pigaches,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Sheep Leather"", 1], [""Tiger Leather"", 1], [""Eltoro Leather"", 1]]","[[""Wise Pigaches +1"", 1], null, null]"
+,85,[],Lynx Mantle,Ice,,"[[""Lynx Hide"", 1], [""Wool Thread"", 1]]","[[""Lynx Mantle +1"", 1], null, null]"
+,85,[],Coeurl Mantle,Ice,,"[[""Leathercraft Kit 85"", 1]]","[null, null, null]"
+,86,[],Cavalier's Mantle,Ice,,"[[""Sentinel's Mantle"", 1], [""Wolf Hide"", 1]]","[[""Cavalier's Mantle +1"", 1], null, null]"
+,86,[],Shadow Bow,Earth,,"[[""Assassin's Bow"", 1], [""Ram Leather"", 1]]","[[""Shadow Bow +1"", 1], null, null]"
+,86,[],Tariqah,Earth,,"[[""Marid Leather"", 1], [""Marid Hair"", 1], [""Tariqah -1"", 1]]","[[""Tariqah +1"", 1], null, null]"
+,86,"[[""Alchemy"", 51]]",Khromated Leather,Dark,,"[[""Karakul Skin"", 1], [""Khroma Nugget"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,86,"[[""Alchemy"", 51]]",Khromated Leather,Dark,Tanning,"[[""Karakul Skin"", 3], [""Khroma Nugget"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,87,[],Coeurl Mask,Earth,,"[[""Coeurl Leather"", 2], [""Faceguard"", 1]]","[[""Torama Mask"", 1], null, null]"
+,87,[],Gaia Mantle,Earth,,"[[""Cockatrice Skin"", 1], [""Earth Mantle"", 1]]","[[""Gaia Mantle +1"", 1], null, null]"
+,87,"[[""Goldsmithing"", 44], [""Clothcraft"", 19]]",Sipahi Dastanas,Earth,,"[[""Mythril Sheet"", 1], [""Karakul Leather"", 1], [""Marid Leather"", 1], [""Marid Hair"", 1], [""Karakul Cloth"", 1]]","[[""Abtal Dastanas"", 1], null, null]"
+,87,[],Mamool Ja Helm,Earth,,"[[""Karakul Leather"", 1], [""Lizard Skin"", 1], [""Black Tiger Fang"", 2], [""Coeurl Whisker"", 1], [""Mamool Ja Helmet"", 1], [""Marid Hair"", 1]]","[null, null, null]"
+,87,[],Wivre Mask,Wind,,"[[""Karakul Leather"", 1], [""Wivre Hide"", 1]]","[[""Wivre Mask +1"", 1], null, null]"
+,87,[],Radical Mantle,Earth,,"[[""Leafkin Frond"", 1], [""Chapuli Wing"", 2], [""Raptor Mantle"", 1]]","[[""Radical Mantle +1"", 1], null, null]"
+,88,[],Aurora Mantle,Ice,,"[[""Tiger Hide"", 1], [""Tundra Mantle"", 1]]","[[""Aurora Mantle +1"", 1], null, null]"
+,88,[],Coeurl Gloves,Earth,,"[[""Coeurl Leather"", 1], [""Cuir Gloves"", 1]]","[[""Torama Gloves"", 1], null, null]"
+,88,[],Ogre Mask,Earth,,"[[""Coeurl Mask"", 1], [""Manticore Leather"", 1]]","[[""Ogre Mask +1"", 1], null, null]"
+,88,"[[""Clothcraft"", 40]]",Wise Cap,Earth,,"[[""Silver Thread"", 1], [""Velvet Cloth"", 1], [""Silk Cloth"", 1], [""Manticore Leather"", 1], [""Eltoro Leather"", 1]]","[[""Wise Cap +1"", 1], null, null]"
+,89,[],Coeurl Jerkin,Earth,,"[[""Coeurl Leather"", 2], [""Sheep Leather"", 1]]","[[""Torama Jerkin"", 1], null, null]"
+,89,[],Ogre Gloves,Earth,,"[[""Coeurl Gloves"", 1], [""Manticore Leather"", 1]]","[[""Ogre Gloves +1"", 1], null, null]"
+,89,[],Winged Boots,Earth,,"[[""Lizard Skin"", 1], [""Leaping Boots"", 1]]","[[""Winged Boots +1"", 1], null, null]"
+,89,"[[""Clothcraft"", 32]]",Wise Gloves,Earth,,"[[""Silver Thread"", 1], [""Velvet Cloth"", 1], [""Saruta Cotton"", 2], [""Eltoro Leather"", 1], [""Leather Gloves"", 1]]","[[""Wise Gloves +1"", 1], null, null]"
+,90,"[[""Clothcraft"", 54]]",Barone Cosciales,Earth,,"[[""Silk Cloth"", 1], [""Sarcenet Cloth"", 1], [""Buffalo Leather"", 2], [""High-Quality Bugard Skin"", 1]]","[[""Conte Cosciales"", 1], null, null]"
+,90,"[[""Goldsmithing"", 44], [""Clothcraft"", 40]]",Chasuble,Earth,,"[[""Platinum Ingot"", 1], [""Silver Thread"", 1], [""Velvet Cloth"", 2], [""Manticore Leather"", 1], [""Eft Skin"", 1], [""Eltoro Leather"", 2]]","[[""Chasuble +1"", 1], null, null]"
+,90,[],Koenigs Belt,Earth,,"[[""Gold Chain"", 1], [""Manticore Leather"", 2]]","[[""Kaiser Belt"", 1], null, null]"
+,90,[],Ogre Jerkin,Earth,,"[[""Coeurl Jerkin"", 1], [""Undead Skin"", 1], [""Manticore Leather"", 1]]","[[""Ogre Jerkin +1"", 1], null, null]"
+,90,[],Sniper's Ring,Earth,,"[[""Archer's Ring"", 1], [""Tiger Leather"", 1]]","[[""Sniper's Ring +1"", 1], null, null]"
+,90,[],Amphiptere Leather,Dark,,"[[""Willow Log"", 1], [""Amphiptere Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,90,[],Amphiptere Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Amphiptere Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,90,[],Amphiptere Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Amphiptere Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,90,[],Koenigs Belt,Earth,,"[[""Leathercraft Kit 90"", 1]]","[null, null, null]"
+,91,[],Bison Wristbands,Earth,,"[[""Manticore Leather"", 2], [""Manticore Hair"", 2], [""Buffalo Leather"", 1]]","[[""Brave's Wristbands"", 1], null, null]"
+,91,"[[""Clothcraft"", 52]]",Errant Pigaches,Earth,,"[[""Rainbow Thread"", 1], [""Velvet Cloth"", 1], [""Undead Skin"", 1], [""Ram Leather"", 2]]","[[""Mahatma Pigaches"", 1], null, null]"
+,91,[],Khimaira Wristbands,Earth,,"[[""Manticore Leather"", 2], [""Buffalo Leather"", 1], [""Khimaira Mane"", 2]]","[[""Stout Wristbands"", 1], null, null]"
+,91,"[[""Goldsmithing"", 51], [""Clothcraft"", 49]]",Sipahi Jawshan,Earth,,"[[""Mythril Sheet"", 1], [""Steel Sheet"", 1], [""Gold Chain"", 1], [""Silk Cloth"", 1], [""Karakul Leather"", 1], [""Marid Leather"", 2], [""Wamoura Cloth"", 1]]","[[""Abtal Jawshan"", 1], null, null]"
+,91,[],Ebon Brais,Earth,,"[[""Amphiptere Leather"", 1], [""Shagreen"", 1], [""Studded Trousers"", 1]]","[null, null, null]"
+,91,[],Bewitched Pumps,Earth,,"[[""Cursed Pumps -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Pumps"", 1], null, null]"
+,91,[],Vexed Boots,Earth,,"[[""Hexed Boots -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Boots"", 1], null, null]"
+,92,"[[""Clothcraft"", 59]]",Cursed Pumps,Earth,,"[[""Siren's Macrame"", 1], [""Velvet Cloth"", 1], [""Gold Thread"", 1], [""Rainbow Cloth"", 1], [""Manticore Leather"", 1]]","[[""Cursed Pumps -1"", 1], null, null]"
+,92,[],Desert Mantle,Earth,,"[[""Grass Thread"", 1], [""Yowie Skin"", 2]]","[[""Desert Mantle +1"", 1], null, null]"
+,92,"[[""Goldsmithing"", 60], [""Clothcraft"", 38]]",Sha'ir Crackows,Earth,,"[[""Orichalcum Ingot"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 2], [""Buffalo Leather"", 1]]","[[""Sheikh Crackows"", 1], null, null]"
+,92,"[[""Clothcraft"", 47], [""Woodworking"", 43]]",Leather Pot,Fire,,"[[""Hickory Lumber"", 1], [""Karakul Leather"", 1], [""Rheiyoh Leather"", 1], [""Karakul Thread"", 1], [""Kaolin"", 2]]","[null, null, null]"
+,92,"[[""Clothcraft"", 59], [""Goldsmithing"", 48]]",Cursed Clogs,Earth,,"[[""Velvet Cloth"", 1], [""Undead Skin"", 1], [""Marid Leather"", 2], [""Netherpact Chain"", 1], [""Platinum Silk"", 1]]","[[""Cursed Clogs -1"", 1], null, null]"
+,92,[],Vexed Tekko,Fire,,"[[""Hexed Tekko -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Tekko"", 1], null, null]"
+,93,[],Dusk Trousers,Earth,,"[[""Tiger Trousers"", 1], [""Behemoth Leather"", 1]]","[[""Dusk Trousers +1"", 1], null, null]"
+,93,"[[""Clothcraft"", 11]]",Austere Hat,Earth,,"[[""Rainbow Thread"", 1], [""Sheep Leather"", 1], [""Ram Leather"", 1], [""Yowie Skin"", 1], [""Velvet Hat"", 1]]","[[""Penance Hat"", 1], null, null]"
+,93,"[[""Clothcraft"", 29]]",Bison Gamashes,Earth,,"[[""Manticore Leather"", 1], [""Manticore Hair"", 2], [""Hippogryph Feather"", 1], [""Buffalo Leather"", 2]]","[[""Brave's Gamashes"", 1], null, null]"
+,93,[],Sultan's Belt,Earth,,"[[""Rugged Bugard Leather"", 1], [""Koenigs Belt"", 1]]","[null, null, null]"
+,93,[],Czar's Belt,Earth,,"[[""Tough Bugard Leather"", 1], [""Koenigs Belt"", 1]]","[null, null, null]"
+,93,[],Pendragon's Belt,Earth,,"[[""Soft Bugard Leather"", 1], [""Koenigs Belt"", 1]]","[null, null, null]"
+,93,[],Maharaja's Belt,Earth,,"[[""Glossy Bugard Leather"", 1], [""Koenigs Belt"", 1]]","[null, null, null]"
+,93,"[[""Clothcraft"", 29]]",Khimaira Gamashes,Earth,,"[[""Manticore Leather"", 1], [""Hippogryph Feather"", 1], [""Buffalo Leather"", 2], [""Khimaira Mane"", 2]]","[[""Stout Gamashes"", 1], null, null]"
+,93,"[[""Goldsmithing"", 53]]",Ebon Gloves,Earth,,"[[""Amphiptere Leather"", 2], [""Shagreen"", 1], [""Platinum Ingot"", 1]]","[null, null, null]"
+,93,[],Vexed Hakama,Fire,,"[[""Hexed Hakama -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Hakama"", 1], null, null]"
+,93,[],Vexed Hose,Earth,,"[[""Hexed Hose -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Hose"", 1], null, null]"
+,94,"[[""Clothcraft"", 11]]",Austere Sabots,Earth,,"[[""Rainbow Thread"", 1], [""Sheep Leather"", 1], [""Ram Leather"", 1], [""Lindwurm Skin"", 1], [""Ebony Sabots"", 1]]","[[""Penance Sabots"", 1], null, null]"
+,94,"[[""Smithing"", 31]]",Cardinal Vest,Water,,"[[""Clothcraft - (21)"", 1], [""Steel Sheet"", 1], [""Gold Thread"", 1], [""Tiger Leather"", 2], [""Beeswax"", 1], [""Manticore Leather"", 2], [""Ram Leather"", 1]]","[[""Bachelor Vest"", 1], null, null]"
+,94,[],Dusk Ledelsens,Earth,,"[[""Tiger Ledelsens"", 1], [""Behemoth Leather"", 1]]","[[""Dusk Ledelsens +1"", 1], null, null]"
+,95,[],Tiger Mask,Ice,,"[[""Tiger Hide"", 2], [""Wyvern Skin"", 1], [""Wool Thread"", 1], [""Ram Leather"", 1]]","[[""Feral Mask"", 1], null, null]"
+,95,"[[""Clothcraft"", 33]]",Bison Warbonnet,Earth,,"[[""Manticore Leather"", 1], [""Manticore Hair"", 2], [""Hippogryph Feather"", 2], [""Eft Skin"", 1], [""Buffalo Leather"", 1]]","[[""Brave's Warbonnet"", 1], null, null]"
+,95,[],Cerberus Mantle,Ice,,"[[""Cerberus Hide"", 1], [""Karakul Thread"", 1]]","[[""Cerberus Mantle +1"", 1], null, null]"
+,95,"[[""Clothcraft"", 33]]",Khimaira Bonnet,Earth,,"[[""Manticore Leather"", 1], [""Hippogryph Feather"", 2], [""Eft Skin"", 1], [""Buffalo Leather"", 1], [""Khimaira Mane"", 2]]","[[""Stout Bonnet"", 1], null, null]"
+,95,[],Peiste Mantle,Earth,,"[[""Peiste Skin"", 2], [""Grass Thread"", 1]]","[[""Peiste Mantle +1"", 1], null, null]"
+,95,"[[""Goldsmithing"", 57]]",Ebon Boots,Earth,,"[[""Amphiptere Leather"", 1], [""Shagreen"", 1], [""Molybdenum Sheet"", 1], [""Platinum Ingot"", 1]]","[null, null, null]"
+,95,[],Peiste Mantle,Earth,,"[[""Leathercraft Kit 95"", 1]]","[null, null, null]"
+,96,"[[""Clothcraft"", 42]]",Opaline Boots,Light,,"[[""Rainbow Thread"", 1], [""Silk Cloth"", 1], [""Rainbow Cloth"", 1], [""Twinthread"", 1], [""Sheep Leather"", 2], [""Manticore Leather"", 1]]","[[""Ceremonial Boots"", 1], null, null]"
+,96,"[[""Goldsmithing"", 46], [""Clothcraft"", 41]]",Sha'ir Gages,Earth,,"[[""Gold Ingot"", 1], [""Garnet"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""High-Quality Bugard Skin"", 1]]","[[""Sheikh Gages"", 1], null, null]"
+,96,"[[""Goldsmithing"", 45]]",Imperial Tapestry,Earth,,"[[""Gold Ingot"", 1], [""Turquoise"", 1], [""Gold Thread"", 2], [""Marid Hair"", 1], [""Wamoura Cloth"", 1], [""Imperial Silk Cloth"", 2]]","[null, null, null]"
+,97,"[[""Clothcraft"", 11]]",Austere Cuffs,Earth,,"[[""Rainbow Thread"", 1], [""Tarasque Skin"", 1], [""Yowie Skin"", 1], [""Velvet Cuffs"", 1]]","[[""Penance Cuffs"", 1], null, null]"
+,97,"[[""Clothcraft"", 54]]",Bison Kecks,Earth,,"[[""Tiger Leather"", 1], [""Manticore Leather"", 1], [""Manticore Hair"", 4], [""Buffalo Leather"", 2]]","[[""Brave's Kecks"", 1], null, null]"
+,97,[],Dusk Mask,Earth,,"[[""Coeurl Mask"", 1], [""Behemoth Leather"", 1]]","[[""Dusk Mask +1"", 1], null, null]"
+,97,[],Griffon Leather,Dark,,"[[""Willow Log"", 1], [""Griffon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,97,[],Griffon Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Griffon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,97,"[[""Clothcraft"", 54]]",Khimaira Kecks,Earth,,"[[""Tiger Leather"", 1], [""Manticore Leather"", 1], [""Buffalo Leather"", 2], [""Khimaira Mane"", 4]]","[[""Stout Kecks"", 1], null, null]"
+,97,"[[""Smithing"", 60]]",Ebon Mask,Earth,,"[[""Amphiptere Leather"", 1], [""Shagreen"", 1], [""Molybdenum Sheet"", 1]]","[null, null, null]"
+,98,[],Amaltheia Leather,Dark,,"[[""Willow Log"", 1], [""Amaltheia Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,98,[],Amaltheia Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Amaltheia Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,98,[],Amaltheia Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Amaltheia Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
+,98,"[[""Clothcraft"", 11]]",Austere Slops,Earth,,"[[""Rainbow Thread"", 1], [""Undead Skin"", 1], [""Wolf Hide"", 1], [""Lindwurm Skin"", 1], [""Velvet Slops"", 1]]","[[""Penance Slops"", 1], null, null]"
+,98,[],Heroic Boots,Earth,,"[[""Iron Scales"", 1], [""Ram Leather"", 2], [""Lindwurm Skin"", 1]]","[[""Heroic Boots +1"", 1], null, null]"
+,99,"[[""Bonecraft"", 60]]",Bison Jacket,Earth,,"[[""Clothcraft - (51)"", 1], [""Manticore Leather"", 2], [""Manticore Hair"", 2], [""Buffalo Horn"", 1], [""Eft Skin"", 1], [""Buffalo Leather"", 2]]","[[""Brave's Jacket"", 1], null, null]"
+,99,"[[""Clothcraft"", 56]]",Blessed Pumps,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""Manticore Hair"", 1], [""Eltoro Leather"", 1]]","[[""Blessed Pumps +1"", 1], null, null]"
+,99,[],Dusk Gloves,Earth,,"[[""Tiger Gloves"", 1], [""Behemoth Leather"", 1]]","[[""Dusk Gloves +1"", 1], null, null]"
+,99,"[[""Bonecraft"", 60], [""Clothcraft"", 54]]",Khimaira Jacket,Earth,,"[[""Manticore Leather"", 2], [""Buffalo Horn"", 1], [""Eft Skin"", 1], [""Buffalo Leather"", 2], [""Khimaira Mane"", 2]]","[[""Stout Jacket"", 1], null, null]"
+,99,[],Narasimha's Vest,Water,,"[[""Beeswax"", 1], [""Manticore Leather"", 1], [""Narasimha Leather"", 1], [""Cardinal Vest"", 1]]","[[""Vishnu's Vest"", 1], null, null]"
+,99,[],Dynamic Belt,Wind,,"[[""Behemoth Leather"", 1], [""Mercury"", 1], [""Umbril Ooze"", 1]]","[[""Dynamic Belt +1"", 1], null, null]"
+,99,"[[""Clothcraft"", 50]]",Chelona Boots,Earth,,"[[""Karakul Thread"", 1], [""Karakul Cloth"", 3], [""Platinum Silk Thread"", 1], [""Amphiptere Leather"", 1]]","[[""Chelona Boots +1"", 1], null, null]"
+,100,"[[""Clothcraft"", 31]]",Austere Robe,Earth,,"[[""Rainbow Thread"", 1], [""Wool Cloth"", 1], [""Rainbow Cloth"", 1], [""Undead Skin"", 1], [""Ram Leather"", 1], [""Tarasque Skin"", 1], [""Yowie Skin"", 1], [""Velvet Robe"", 1]]","[[""Penance Robe"", 1], null, null]"
+,100,"[[""Goldsmithing"", 41]]",Dusk Jerkin,Earth,,"[[""Gold Ingot"", 1], [""Northern Jerkin"", 1], [""Behemoth Leather"", 1], [""Wyvern Skin"", 1]]","[[""Dusk Jerkin +1"", 1], null, null]"
+,100,[],Urja Trousers,Earth,,"[[""Buffalo Leather"", 2], [""Squamous Hide"", 2]]","[[""Sthira Trousers"", 1], null, null]"
+,100,"[[""Clothcraft"", 60]]",Spolia Pigaches,Earth,,"[[""Catoblepas Leather"", 1], [""Sheep Chammy"", 1], [""Wyrdstrand"", 1], [""Wyrdweave"", 2]]","[[""Opima Pigaches"", 1], null, null]"
+,100,"[[""Smithing"", 60], [""Bonecraft"", 40]]",Ebon Harness,Earth,,"[[""Molybdenum Sheet"", 1], [""Platinum Sheet"", 1], [""Angel Skin"", 1], [""Red Textile Dye"", 1], [""Amphiptere Leather"", 2], [""Shagreen"", 1]]","[null, null, null]"
+,100,[],Revealer's Pumps,Earth,,"[[""Ancestral Cloth"", 2], [""Prickly Pitriv's Thread"", 2], [""Warblade Beak's Hide"", 1]]","[[""Revealer's Pumps +1"", 1], null, null]"
+,100,[],Aptitude Mantle,Earth,,"[[""Wool Thread"", 1], [""Lizard Molt"", 1], [""Raaz Hide"", 1], [""Bounding Belinda's Hide"", 1]]","[[""Aptitude Mantle +1"", 1], null, null]"
+,101,"[[""Goldsmithing"", 60], [""Smithing"", 60]]",Corselet,Earth,,"[[""Adaman Sheet"", 1], [""Mercury"", 1], [""Laminated Buffalo Leather"", 1], [""Ovinnik Leather"", 1], [""Marid Leather"", 1], [""Marid Hair"", 1], [""Scintillant Ingot"", 1], [""Star Sapphire"", 1]]","[[""Corselet +1"", 1], null, null]"
+,101,[],Haruspex Pigaches,Earth,,"[[""Gold Thread"", 1], [""Raxa"", 1], [""Akaso Cloth"", 1], [""Raaz Hide"", 1], [""Raaz Leather"", 1]]","[[""Haruspex Pigaches +1"", 1], null, null]"
+,101,[],Aetosaur Gloves,Earth,,"[[""Squamous Hide"", 1], [""Raaz Leather"", 1], [""Leather Gloves"", 1]]","[[""Aetosaur Gloves +1"", 1], null, null]"
+,102,[],Panther Mask,Ice,,"[[""Wool Thread"", 1], [""Ram Leather"", 1], [""High-Quality Coeurl Hide"", 2], [""Wyvern Skin"", 1]]","[[""Panther Mask +1"", 1], null, null]"
+,102,"[[""Smithing"", 55]]",Urja Helm,Earth,,"[[""Marid Leather"", 1], [""Dark Bronze Ingot"", 1], [""Squamous Hide"", 2]]","[[""Sthira Helm"", 1], null, null]"
+,102,[],Testudo Mantle,Earth,,"[[""Behemoth Leather"", 1], [""Manticore Hair"", 1], [""Herensugue Skin"", 1]]","[[""Testudo Mantle +1"", 1], null, null]"
+,103,[],Hermes' Sandals,Wind,,"[[""Karakul Leather"", 1], [""Lynx Leather"", 1], [""Dark Ixion Tail"", 1]]","[[""Hermes' Sandals +1"", 1], null, null]"
+,103,"[[""Clothcraft"", 50]]",Attacker's Mantle,Earth,,"[[""Lizard Molt"", 1], [""Hahava's Mail"", 1], [""Wamoura Silk"", 1], [""Squamous Hide"", 1]]","[[""Dauntless Mantle"", 1], null, null]"
+,103,[],Aetosaur Ledelsens,Earth,,"[[""Squamous Hide"", 1], [""Rhodium Sheet"", 1], [""Raaz Leather"", 1], [""Leather Highboots"", 1]]","[[""Aetosaur Ledelsens +1"", 1], null, null]"
+,104,[],Sealord Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Sealord Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,104,[],Sealord Leather,Dark,,"[[""Willow Log"", 1], [""Sealord Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,104,[],Urja Gloves,Earth,,"[[""Buffalo Leather"", 1], [""Squamous Hide"", 2]]","[[""Sthira Gloves"", 1], null, null]"
+,104,[],Pak Corselet,Earth,,"[[""Adaman Sheet"", 1], [""Behemoth Leather"", 2], [""Mercury"", 1], [""Siren's Macrame"", 1], [""Fiendish Skin"", 1], [""Scintillant Ingot"", 1], [""Tanzanite Jewel"", 1]]","[[""Pak Corselet +1"", 1], null, null]"
+,105,"[[""Smithing"", 54]]",Urja Ledelsens,Earth,,"[[""Buffalo Leather"", 1], [""Dark Bronze Sheet"", 1], [""Squamous Hide"", 2]]","[[""Sthira Ledelsens"", 1], null, null]"
+,105,[],Phos Belt,Earth,,"[[""Scarlet Kadife"", 1], [""Sealord Leather"", 1], [""Sonic Belt"", 1]]","[[""Phos Belt +1"", 1], null, null]"
+,105,"[[""Smithing"", 54]]",Urja Jerkin,Earth,,"[[""Buffalo Leather"", 1], [""Dark Bronze Ingot"", 1], [""Squamous Hide"", 2], [""Ogre Jerkin"", 1]]","[[""Sthira Jerkin"", 1], null, null]"
+,105,[],Clerisy Strap,Wind,,"[[""Behemoth Hide"", 1], [""Bztavian Wing"", 1]]","[[""Clerisy Strap +1"", 1], null, null]"
+,105,[],Elan Strap,Wind,,"[[""Cerberus Hide"", 1], [""Cehuetzi Pelt"", 1]]","[[""Elan Strap +1"", 1], null, null]"
+,105,[],Irenic Strap,Wind,,"[[""Behemoth Hide"", 1], [""Rockfin Fin"", 1]]","[[""Irenic Strap +1"", 1], null, null]"
+,105,[],Mensch Strap,Wind,,"[[""Cerberus Hide"", 1], [""Yggdreant Root"", 1]]","[[""Mensch Strap +1"", 1], null, null]"
+,105,[],Faulpie Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""S. Faulpie Leather"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,105,[],Faulpie Leather,Dark,,"[[""Willow Log"", 1], [""S. Faulpie Leather"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,106,[],Aetosaur Helm,Earth,,"[[""Squamous Hide"", 2], [""Raaz Leather"", 1]]","[[""Aetosaur Helm +1"", 1], null, null]"
+,107,"[[""Clothcraft"", 50]]",Hexed Boots,Earth,,"[[""Silver Thread"", 1], [""Lynx Leather"", 1], [""Kukulkan's Skin"", 1], [""Serica Cloth"", 1]]","[[""Hexed Boots -1"", 1], null, null]"
+,107,[],Aetosaur Trousers,Earth,,"[[""Squamous Hide"", 2], [""Raaz Leather"", 1], [""Leather Trousers"", 1]]","[[""Aetosaur Trousers +1"", 1], null, null]"
+,108,"[[""Smithing"", 60], [""Goldsmithing"", 30]]",Hexed Tekko,Fire,,"[[""Scarletite Ingot"", 1], [""Gold Sheet"", 1], [""Durium Chain"", 1], [""Taffeta Cloth"", 1], [""Urushi"", 1], [""Sealord Leather"", 1]]","[[""Hexed Tekko -1"", 1], null, null]"
+,109,[],Aetosaur Jerkin,Earth,,"[[""Squamous Hide"", 2], [""Raaz Leather"", 2]]","[[""Aetosaur Jerkin +1"", 1], null, null]"
+,109,"[[""Goldsmithing"", 57]]",Sweordfaetels,Earth,,"[[""Palladian Brass Chain"", 1], [""Sealord Leather"", 1], [""Cehuetzi Pelt"", 1]]","[[""Sweordfaetels +1"", 1], null, null]"
+,110,"[[""Goldsmithing"", 60]]",Hexed Hose,Earth,,"[[""Ormolu Ingot"", 1], [""Behemoth Leather"", 1], [""Pelt of Dawon"", 1], [""Sealord Leather"", 2]]","[[""Hexed Hose -1"", 1], null, null]"
+,110,"[[""Clothcraft"", 38]]",Hexed Hakama,Fire,,"[[""Scarletite Ingot"", 1], [""Gold Ingot"", 1], [""Gold Thread"", 1], [""Taffeta Cloth"", 1], [""Red Grass Cloth"", 1], [""Sealord Leather"", 2]]","[[""Hexed Hakama -1"", 1], null, null]"
+,110,[],Pya'ekue Belt,Earth,,"[[""Behemoth Leather"", 1], [""Bztavian Wing"", 1], [""Phos Belt"", 1]]","[[""Pya'ekue Belt +1"", 1], null, null]"
+,110,"[[""Bonecraft"", 55]]",Beastmaster Collar,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Collar"", 1]]","[[""Beastmaster Collar +1"", 1], [""Beastmaster Collar +2"", 1], null]"
+,110,"[[""Bonecraft"", 55]]",Dragoon's Collar,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Collar"", 1]]","[[""Dragoon's Collar +1"", 1], [""Dragoon's Collar +2"", 1], null]"
+,110,"[[""Bonecraft"", 55]]",Puppetmaster's Collar,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Collar"", 1]]","[[""Puppetmaster's Collar +1"", 1], [""Puppetmaster's Collar +2"", 1], null]"
+,110,"[[""Bonecraft"", 55]]",Summoner's Collar,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Collar"", 1]]","[[""Summoner's Collar +1"", 1], [""Summoner's Collar +2"", 1], null]"
+,111,"[[""Clothcraft"", 70]]",Bewitched Pumps,Earth,,"[[""Sif's Macrame"", 1], [""Cehuetzi Pelt"", 1], [""Eschite Ore"", 1], [""Cursed Pumps"", 1]]","[[""Voodoo Pumps"", 1], null, null]"
+,111,"[[""Clothcraft"", 70]]",Vexed Boots,Earth,,"[[""Sif's Macrame"", 1], [""Cehuetzi Pelt"", 1], [""Eschite Ore"", 1], [""Hexed Boots"", 1]]","[[""Jinxed Boots"", 1], null, null]"
+,111,[],Tempus Fugit,Earth,,"[[""Pya'ekue Belt"", 1], [""Defiant Scarf"", 1], [""Plovid Flesh"", 1]]","[[""Tempus Fugit +1"", 1], null, null]"
+,111,[],Saotome-no-tachi,Light,Tanner's aurum tome,"[[""Goldsmithing - (Information Needed)"", 1], [""Macuil Plating"", 1], [""Dark Matter"", 1], [""Ruthenium Ore"", 1], [""Moldy G. Katana"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Sakonji-no-tachi"", 1], [""Fusenaikyo"", 1], null]"
+,111,[],Koga Shinobi-Gatana,Light,Tanner's aurum tome,"[[""Goldsmithing - (Information Needed)"", 1], [""Macuil Plating"", 1], [""Dark Matter"", 1], [""Ruthenium Ore"", 1], [""Moldy Katana"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Mochizuki Shinobi-Gatana"", 1], [""Fudo Masamune"", 1], null]"
+,112,[],Aput Mantle,Ice,,"[[""Akaso Thread"", 1], [""Cehuetzi Pelt"", 1]]","[[""Aput Mantle +1"", 1], null, null]"
+,112,"[[""Clothcraft"", 70]]",Vexed Tekko,Fire,,"[[""Cehuetzi Pelt"", 1], [""Muut's Vestment"", 1], [""Eschite Ore"", 1], [""Hexed Tekko"", 1]]","[[""Jinxed Tekko"", 1], null, null]"
+,113,"[[""Clothcraft"", 70]]",Vexed Hakama,Fire,,"[[""Cehuetzi Pelt"", 1], [""Muut's Vestment"", 1], [""Eschite Ore"", 1], [""Hexed Hakama"", 1]]","[[""Jinxed Hakama"", 1], null, null]"
+,113,"[[""Goldsmithing"", 70]]",Vexed Hose,Earth,,"[[""Hepatizon Ingot"", 1], [""Plovid Flesh"", 1], [""Eschite Ore"", 1], [""Hexed Hose"", 1]]","[[""Jinxed Hose"", 1], null, null]"
+,115,[],Wretched Coat,Wind,,"[[""Malboro Fiber"", 1], [""Eltoro Leather"", 1], [""Penelope's Cloth"", 1], [""Belladonna Sap"", 1], [""Plovid Flesh"", 2]]","[[""Wretched Coat +1"", 1], null, null]"
+,115,[],Gerdr Belt,Earth,,"[[""Orichalcum Chain"", 1], [""Faulpie Leather"", 2], [""Wyrm Ash"", 1]]","[[""Gerdr Belt +1"", 1], null, null]"
+,115,[],Arke Gambieras,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 1], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 1], [""Faulpie Leather"", 2]]","[[""Arke Gambieras +1"", 1], null, null]"
+,115,[],Heyoka Leggings,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 1], [""Yggdreant Root"", 1], [""Macuil Horn"", 1], [""Faulpie Leather"", 2]]","[[""Heyoka Leggings +1"", 1], null, null]"
+,115,[],Arke Manopolas,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 2], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 1], [""Faulpie Leather"", 2]]","[[""Arke Manopolas +1"", 1], null, null]"
+,115,[],Heyoka Mittens,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 2], [""Yggdreant Root"", 1], [""Macuil Horn"", 1], [""Faulpie Leather"", 2]]","[[""Heyoka Mittens +1"", 1], null, null]"
+,115,[],Arke Zuchetto,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 1], [""Faulpie Leather"", 2]]","[[""Arke Zuchetto +1"", 1], null, null]"
+,115,[],Heyoka Cap,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Yggdreant Root"", 1], [""Macuil Horn"", 1], [""Faulpie Leather"", 2]]","[[""Heyoka Cap +1"", 1], null, null]"
+,115,[],Arke Cosciales,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 1], [""Faulpie Leather"", 3]]","[[""Arke Cosciales +1"", 1], null, null]"
+,115,[],Heyoka Subligar,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Yggdreant Root"", 1], [""Macuil Horn"", 1], [""Faulpie Leather"", 3]]","[[""Heyoka Subligar +1"", 1], null, null]"
+,115,[],Arke Corazza,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 2], [""Faulpie Leather"", 3]]","[[""Arke Corazza +1"", 1], null, null]"
+,115,[],Heyoka Harness,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Yggdreant Root"", 1], [""Macuil Horn"", 2], [""Faulpie Leather"", 3]]","[[""Heyoka Harness +1"", 1], null, null]"
+,118,[],Ioskeha Belt,Earth,,"[[""Palladian Brass Chain"", 1], [""Wyrm Blood"", 1], [""Plovid Flesh"", 1]]","[[""Ioskeha Belt +1"", 1], null, null]"
diff --git a/datasets/Smithing.txt b/datasets/Smithing.txt
index 28be97a..3eae87a 100644
--- a/datasets/Smithing.txt
+++ b/datasets/Smithing.txt
@@ -1,7 +1,5 @@
Smithing Crafted Items
-Amateur (1-10)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Bronze Ingot
@@ -340,9 +338,7 @@ Main Craft: Smithing - (10)
Smithing Kit 10
-Recruit (11-20)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Bronze Harness
@@ -637,9 +633,7 @@ Main Craft: Smithing - (20)
Smithing Kit 20
-Initiate (21-30)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Iron Ingot
@@ -1102,9 +1096,7 @@ Main Craft: Smithing - (30)
Smithing Kit 30
-Novice (31-40)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Chain Mittens
@@ -1814,9 +1806,7 @@ Main Craft: Smithing - (40)
Smithing Kit 40
-Apprentice (41-50)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Iron Mittens
@@ -2495,9 +2485,7 @@ Main Craft: Smithing - (50)
Smithing Kit 50
-Journeyman (51-60)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Bastokan Hammer
@@ -3220,9 +3208,7 @@ Main Craft: Smithing - (60)
Smithing Kit 60
-Craftsman (61-70)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Tsukumo
@@ -4031,9 +4017,7 @@ Main Craft: Smithing - (70)
Smithing Kit 70
-Artisan (71-80)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Falsiam Vase
@@ -4607,9 +4591,7 @@ Main Craft: Smithing - (80)
Smithing Kit 80
-Adept (81-90)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Darksteel Cuisses
@@ -5280,9 +5262,7 @@ Main Craft: Smithing - (90)
Kunwu Ore x3
-Veteran (91-100)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Adaman Ingot
@@ -6782,9 +6762,7 @@ Main Craft: Smithing - (100)
Titanium Sheet
-Expert (101-110)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Cursed Sabatons
@@ -7976,9 +7954,7 @@ Sub Craft(s): Alchemy - (55)
Moldy Nodowa
-Authority (111-120)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Bewitched Sollerets
diff --git a/datasets/Smithing_v2.csv b/datasets/Smithing_v2.csv
index e5b8cde..3a2a080 100644
--- a/datasets/Smithing_v2.csv
+++ b/datasets/Smithing_v2.csv
@@ -1,594 +1,594 @@
category,level,subcrafts,name,crystal,key_item,ingredients,hq_yields
-Amateur,1,[],Bronze Ingot,Fire,,"[[""Beastcoin"", 4]]","[null, null, null]"
-Amateur,2,[],Bronze Ingot,Fire,,"[[""Copper Ore"", 3], [""Tin Ore"", 1]]","[null, null, null]"
-Amateur,2,[],Bronze Leggings,Light,,"[[""Rusty Leggings"", 1]]","[[""Bronze Leggings +1"", 1], null, null]"
-Amateur,3,[],Bronze Dagger,Fire,,"[[""Bronze Ingot"", 1], [""Copper Ingot"", 1]]","[[""Bronze Dagger +1"", 1], null, null]"
-Amateur,3,[],Bronze Ingot,Fire,,"[[""Bronze Nugget"", 6], [""Tin Ore"", 1]]","[null, null, null]"
-Amateur,4,"[[""Leathercraft"", 3]]",Bronze Cap,Earth,,"[[""Bronze Sheet"", 1], [""Sheep Leather"", 2]]","[[""Bronze Cap +1"", 1], null, null]"
-Amateur,4,[],Bronze Sheet,Fire,,"[[""Bronze Ingot"", 1]]","[null, null, null]"
-Amateur,4,[],Bronze Sheet,Fire,Sheeting,"[[""Bronze Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,5,[],Bronze Knife,Fire,,"[[""Ash Lumber"", 1], [""Bronze Ingot"", 1]]","[[""Bronze Knife +1"", 1], null, null]"
-Amateur,5,"[[""Leathercraft"", 3]]",Bronze Mittens,Earth,,"[[""Bronze Sheet"", 1], [""Sheep Leather"", 1]]","[[""Bronze Mittens +1"", 1], null, null]"
-Amateur,5,[],Bronze Subligar,Light,,"[[""Rusty Subligar"", 1]]","[[""Bronze Subligar +1"", 1], null, null]"
-Amateur,5,"[[""Woodworking"", 2]]",Sickle,Fire,,"[[""Ash Lumber"", 1], [""Bronze Ingot"", 1], [""Grass Cloth"", 1]]","[[""Sickle"", 2], [""Sickle"", 3], [""Sickle"", 4]]"
-Amateur,5,"[[""Woodworking"", 2]]",Pickaxe,Fire,,"[[""Bronze Ingot"", 1], [""Maple Lumber"", 1]]","[[""Pickaxe"", 2], [""Pickaxe"", 3], [""Pickaxe"", 4]]"
-Amateur,5,[],Bronze Knife,Fire,,"[[""Smithing Kit 5"", 1]]","[null, null, null]"
-Amateur,6,[],Bronze Sword,Fire,,"[[""Bronze Ingot"", 2], [""Sheep Leather"", 1]]","[[""Bronze Sword +1"", 1], null, null]"
-Amateur,6,"[[""Woodworking"", 2]]",Bronze Knuckles,Fire,,"[[""Ash Lumber"", 1], [""Bronze Ingot"", 1], [""Bronze Sheet"", 1]]","[[""Bronze Knuckles +1"", 1], null, null]"
-Amateur,7,"[[""Woodworking"", 2]]",Bronze Axe,Fire,,"[[""Ash Lumber"", 1], [""Bronze Ingot"", 2]]","[[""Bronze Axe +1"", 1], null, null]"
-Amateur,7,"[[""Leathercraft"", 3]]",Bronze Leggings,Earth,,"[[""Bronze Sheet"", 2], [""Sheep Leather"", 2]]","[[""Bronze Leggings +1"", 1], null, null]"
-Amateur,8,"[[""Woodworking"", 6]]",Bronze Zaghnal,Fire,,"[[""Ash Lumber"", 1], [""Bronze Ingot"", 2], [""Grass Cloth"", 1]]","[[""Bronze Zaghnal +1"", 1], null, null]"
-Amateur,8,"[[""Woodworking"", 3]]",Hatchet,Fire,,"[[""Bronze Ingot"", 2], [""Maple Lumber"", 1]]","[[""Hatchet"", 2], [""Hatchet"", 3], [""Hatchet"", 4]]"
-Amateur,8,"[[""Bonecraft"", 2]]",Xiphos,Fire,,"[[""Bronze Ingot"", 2], [""Giant Femur"", 1]]","[[""Xiphos +1"", 1], null, null]"
-Amateur,9,"[[""Leathercraft"", 3]]",Bronze Subligar,Earth,,"[[""Bronze Sheet"", 1], [""Grass Cloth"", 1], [""Sheep Leather"", 1]]","[[""Bronze Subligar +1"", 1], null, null]"
-Amateur,9,[],Faceguard,Wind,,"[[""Bronze Sheet"", 1], [""Sheep Leather"", 1]]","[[""Faceguard +1"", 1], null, null]"
-Amateur,10,[],Bronze Mace,Fire,,"[[""Bronze Ingot"", 3]]","[[""Bronze Mace +1"", 1], null, null]"
-Amateur,10,[],Bronze Scales,Wind,,"[[""Bronze Sheet"", 1]]","[null, null, null]"
-Amateur,10,[],Bronze Mace,Fire,,"[[""Smithing Kit 10"", 1], [""Recruit (11-20)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,11,"[[""Leathercraft"", 3]]",Bronze Harness,Earth,,"[[""Bronze Sheet"", 3], [""Sheep Leather"", 2]]","[[""Bronze Harness +1"", 1], null, null]"
-Amateur,11,[],Scale Finger Gauntlets,Earth,,"[[""Bronze Scales"", 2], [""Cotton Thread"", 1], [""Leather Gloves"", 1]]","[[""Solid Finger Gauntlets"", 1], null, null]"
-Amateur,12,[],Bronze Rod,Fire,,"[[""Bronze Ingot"", 2], [""Copper Ingot"", 1]]","[[""Bronze Rod +1"", 1], null, null]"
-Amateur,13,[],Scale Greaves,Earth,,"[[""Bronze Scales"", 2], [""Cotton Thread"", 1], [""leather Highboots"", 1]]","[[""Solid Greaves"", 1], null, null]"
-Amateur,14,[],Bronze Bolt Heads,Wind,,"[[""Bronze Ingot"", 1]]","[[""Bronze Bolt Heads"", 8], [""Bronze Bolt Heads"", 10], [""Bronze Bolt Heads"", 12]]"
-Amateur,14,[],Bronze Hammer,Fire,,"[[""Bronze Ingot"", 2], [""Chestnut Lumber"", 1]]","[[""Bronze Hammer +1"", 1], null, null]"
-Amateur,15,[],Dagger,Light,,"[[""Rusty Dagger"", 1]]","[[""Dagger +1"", 1], null, null]"
-Amateur,15,"[[""Leathercraft"", 5]]",Scale Cuisses,Earth,,"[[""Bronze Scales"", 2], [""Cotton Thread"", 1], [""Leather Trousers"", 1]]","[[""Solid Cuisses"", 1], null, null]"
-Amateur,15,[],Tin Ingot,Fire,,"[[""Tin Ore"", 4]]","[null, null, null]"
-Amateur,15,[],Pizza Cutter,Fire,,"[[""Iron Ingot"", 1], [""Holly Lumber"", 1]]","[[""Pizza Cutter"", 8], [""Pizza Cutter"", 10], [""Pizza Cutter"", 12]]"
-Amateur,15,[],Tin Ingot,Fire,,"[[""Smithing Kit 15"", 1]]","[null, null, null]"
-Amateur,16,"[[""Woodworking"", 4]]",Crossbow Bolt,Wind,,"[[""Ash Lumber"", 1], [""Bronze Ingot"", 1]]","[[""Crossbow Bolt"", 66], [""Crossbow Bolt"", 99], [""Crossbow Bolt"", 99]]"
-Amateur,17,[],Scale Mail,Earth,,"[[""Bronze Scales"", 4], [""Cotton Thread"", 1], [""Leather Vest"", 1], [""Sheep Leather"", 1]]","[[""Solid Mail"", 1], null, null]"
-Amateur,18,[],Aspis,Fire,,"[[""Ash Lumber"", 1], [""Bronze Sheet"", 2]]","[[""Aspis +1"", 1], null, null]"
-Amateur,19,"[[""Clothcraft"", 19]]",Bronze Bed,Fire,,"[[""Bronze Ingot"", 4], [""Cotton Cloth"", 2], [""Grass Thread"", 1], [""Saruta Cotton"", 1]]","[null, null, null]"
-Amateur,20,[],Dagger,Fire,,"[[""Bronze Ingot"", 1], [""Iron Ingot"", 1]]","[[""Dagger +1"", 1], null, null]"
-Amateur,20,[],Iron Arrowheads,Wind,,"[[""Copper Ingot"", 1], [""Iron Ingot"", 1]]","[[""Iron Arrowheads"", 8], [""Iron Arrowheads"", 10], [""Iron Arrowheads"", 12]]"
-Amateur,20,[],Iron Ingot,Fire,,"[[""Iron Ore"", 4]]","[[""Steel Ingot"", 1], null, null]"
-Amateur,20,[],Light Steel Ingot,Fire,Metal Purification,"[[""Iron Ore"", 4], [""Ice Anima"", 1], [""Light Anima"", 1], [""Lightning Anima"", 1]]","[null, null, null]"
-Amateur,20,[],Lucent Iron Ingot,Fire,Metal Purification,"[[""Iron Ore"", 4], [""Earth Anima"", 1], [""Light Anima"", 1], [""Lightning Anima"", 1]]","[null, null, null]"
-Amateur,20,[],Paktong Ingot,Fire,,"[[""Copper Ore"", 2], [""Kopparnickel Ore"", 1], [""Zinc Ore"", 1]]","[null, null, null]"
-Amateur,20,[],Iron Arrowheads,Wind,,"[[""Smithing Kit 20"", 1], [""Initiate (21-30)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,21,[],Iron Ingot,Fire,,"[[""Iron Nugget"", 6], [""Iron Ore"", 1]]","[[""Steel Ingot"", 1], null, null]"
-Amateur,21,[],Knife,Fire,,"[[""Iron Ingot"", 1], [""Elm Lumber"", 1]]","[[""Knife +1"", 1], null, null]"
-Amateur,21,"[[""Woodworking"", 6]]",Metal Knuckles,Fire,,"[[""Iron Ingot"", 1], [""Iron Sheet"", 1], [""Holly Lumber"", 1]]","[[""Metal Knuckles +1"", 1], null, null]"
-Amateur,21,"[[""Leathercraft"", 10]]",Pellet Belt,Fire,,"[[""Sheep Leather"", 1], [""Igneous Rock"", 2], [""Leather Pouch"", 1]]","[null, null, null]"
-Amateur,22,[],Iron Sheet,Fire,,"[[""Iron Ingot"", 1]]","[null, null, null]"
-Amateur,22,[],Iron Sheet,Fire,Sheeting,"[[""Iron Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,22,[],Shuriken,Wind,,"[[""Steel Ingot"", 1], [""Cotton Thread"", 1]]","[[""Shuriken"", 66], [""Shuriken"", 99], [""Shuriken"", 99]]"
-Amateur,23,[],Baghnakhs,Fire,,"[[""Iron Ingot"", 1], [""Iron Sheet"", 1]]","[[""Baghnakhs +1"", 1], null, null]"
-Amateur,23,"[[""Woodworking"", 5]]",Butterfly Axe,Fire,,"[[""Iron Ingot"", 1], [""Bronze Ingot"", 2], [""Maple Lumber"", 1]]","[[""Butterfly Axe +1"", 1], null, null]"
-Amateur,23,[],Makibishi,Wind,,"[[""Iron Scales"", 1]]","[[""Makibishi"", 66], [""Makibishi"", 99], [""Makibishi"", 99]]"
-Amateur,24,[],Debahocho,Fire,,"[[""Iron Ingot"", 1], [""Willow Lumber"", 1]]","[[""Debahocho +1"", 1], null, null]"
-Amateur,24,[],Mace,Fire,,"[[""Iron Ingot"", 3]]","[[""Mace +1"", 1], null, null]"
-Amateur,24,"[[""Goldsmithing"", 6]]",Scimitar,Fire,,"[[""Steel Ingot"", 2], [""Brass Ingot"", 1]]","[[""Scimitar +1"", 1], null, null]"
-Amateur,25,[],Baselard,Fire,,"[[""Iron Ingot"", 1], [""Steel Ingot"", 1]]","[[""Baselard +1"", 1], null, null]"
-Amateur,25,[],Iron Sword,Fire,,"[[""Iron Ingot"", 2], [""Lizard Skin"", 1]]","[[""Iron Sword +1"", 1], null, null]"
-Amateur,25,[],Spatha,Fire,,"[[""Bronze Ingot"", 3], [""Lizard Skin"", 1]]","[[""Spatha +1"", 1], null, null]"
-Amateur,25,[],Spatha,Fire,,"[[""Smithing Kit 25"", 1]]","[null, null, null]"
-Amateur,26,[],Assailant's Axe,Fire,Metal Ensorcellment,"[[""Lambent Water Cell"", 1], [""Lambent Wind Cell"", 1], [""Butterfly Axe"", 1]]","[null, null, null]"
-Amateur,26,"[[""Woodworking"", 4]]",Battleaxe,Fire,,"[[""Iron Ingot"", 2], [""Holly Lumber"", 1]]","[[""Battleaxe +1"", 1], null, null]"
-Amateur,26,[],Iron Scales,Wind,,"[[""Iron Sheet"", 1]]","[null, null, null]"
-Amateur,26,[],Windurstian Knife,Fire,,"[[""Iron Ingot"", 1], [""Mercenary's Knife"", 1]]","[[""Federation Knife"", 1], null, null]"
-Amateur,27,"[[""Goldsmithing"", 26], [""Woodworking"", 9]]",Athenienne,Fire,,"[[""Iron Ingot"", 1], [""Iron Sheet"", 1], [""Maple Lumber"", 1], [""Aht Urhgan Brass Ingot"", 1]]","[null, null, null]"
-Amateur,27,[],Longsword,Fire,,"[[""Iron Ingot"", 3], [""Dhalmel Leather"", 1]]","[[""Longsword +1"", 1], null, null]"
-Amateur,28,"[[""Goldsmithing"", 7]]",Bilbo,Fire,,"[[""Iron Ingot"", 1], [""Silver Ingot"", 1]]","[[""Bilbo +1"", 1], null, null]"
-Amateur,28,[],Degen,Fire,,"[[""Steel Ingot"", 2], [""Silver Ingot"", 1]]","[[""Degen +1"", 1], null, null]"
-Amateur,28,[],Zaghnal,Fire,,"[[""Iron Ingot"", 2], [""Holly Lumber"", 1], [""Grass Cloth"", 1]]","[[""Zaghnal +1"", 1], null, null]"
-Amateur,29,"[[""Bonecraft"", 8]]",Gladius,Fire,,"[[""Iron Ingot"", 2], [""Ram Horn"", 1]]","[[""Gladiator"", 1], null, null]"
-Amateur,29,[],Iron Mask,Earth,,"[[""Iron Sheet"", 1], [""Brass Sheet"", 1]]","[[""Iron Mask +1"", 1], null, null]"
-Amateur,29,[],Iron Visor,Wind,,"[[""Iron Scales"", 1], [""Iron Sheet"", 1], [""Sheep Leather"", 1]]","[[""Iron Visor +1"", 1], null, null]"
-Amateur,30,[],Iron Chain,Earth,,"[[""Iron Ingot"", 2]]","[[""Iron Chain"", 2], [""Iron Chain"", 3], [""Iron Chain"", 4]]"
-Amateur,30,[],Iron Chain,Earth,Chainwork,"[[""Iron Ingot"", 6], [""Mandrel"", 1]]","[[""Iron Chain"", 6], [""Iron Chain"", 9], [""Iron Chain"", 12]]"
-Amateur,30,[],Kunai,Fire,,"[[""Steel Ingot"", 1], [""Lizard Skin"", 1]]","[[""Kunai +1"", 1], null, null]"
-Amateur,30,[],Mythril Dagger,Fire,,"[[""Iron Ingot"", 1], [""Mythril Ingot"", 1]]","[[""Mythril Dagger +1"", 1], null, null]"
-Amateur,30,[],Tathlum,Wind,,"[[""Steel Ingot"", 1]]","[[""Tathlum"", 12], [""Tathlum"", 16], [""Tathlum"", 20]]"
-Amateur,30,[],Tathlum,Wind,,"[[""Smithing Kit 30"", 1], [""Novice (31-40)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,31,"[[""Leathercraft"", 5]]",Chain Mittens,Earth,,"[[""Iron Chain"", 2], [""Ram Leather"", 1]]","[[""Chain Mittens +1"", 1], null, null]"
-Amateur,31,"[[""Woodworking"", 8]]",Greataxe,Fire,,"[[""Iron Ingot"", 2], [""Holly Lumber"", 1], [""Mythril Ingot"", 1]]","[[""Greataxe +1"", 1], null, null]"
-Amateur,31,[],Iron Finger Gauntlets,Earth,,"[[""Iron Scales"", 2], [""Leather Gloves"", 1], [""Cotton Thread"", 1]]","[[""Iron Finger Gauntlets +1"", 1], null, null]"
-Amateur,31,[],Plain Sword,Light,,"[[""Rusty Greatsword"", 1]]","[null, null, null]"
-Amateur,31,[],Rod,Fire,,"[[""Iron Ingot"", 2], [""Bronze Ingot"", 1]]","[[""Rod +1"", 1], null, null]"
-Amateur,31,"[[""Goldsmithing"", 8]]",Tuck,Fire,,"[[""Silver Ingot"", 1], [""Mythril Ingot"", 1]]","[[""Tuck +1"", 1], null, null]"
-Amateur,32,"[[""Bonecraft"", 8]]",Claws,Fire,,"[[""Steel Ingot"", 1], [""Beetle Jaw"", 1]]","[[""Claws +1"", 1], null, null]"
-Amateur,32,"[[""Leathercraft"", 7], [""Woodworking"", 6]]",Claymore,Fire,,"[[""Ash Lumber"", 1], [""Steel Ingot"", 4], [""Lizard Skin"", 1]]","[[""Claymore +1"", 1], null, null]"
-Amateur,32,"[[""Woodworking"", 7]]",Scythe,Fire,,"[[""Iron Ingot"", 3], [""Holly Lumber"", 1], [""Grass Cloth"", 1]]","[[""Scythe +1"", 1], null, null]"
-Amateur,32,[],Temple Knight Army Sword +1,Fire,,"[[""Temple Knight Army Sword"", 1], [""Iron Ingot"", 1]]","[[""Temple Knight Army Sword +2"", 1], null, null]"
-Amateur,32,"[[""Goldsmithing"", 6], [""Woodworking"", 3]]",Tomahawk,Fire,,"[[""Brass Ingot"", 1], [""Steel Ingot"", 1], [""Ash Lumber"", 1]]","[[""Tomahawk +1"", 1], null, null]"
-Amateur,33,"[[""Leathercraft"", 6]]",Greaves,Earth,,"[[""Iron Chain"", 1], [""Iron Sheet"", 1], [""Ram Leather"", 1]]","[[""Greaves +1"", 1], null, null]"
-Amateur,33,[],Junior Musketeer's Tuck +1,Fire,,"[[""Junior Musketeer's Tuck"", 1], [""Iron Ingot"", 1]]","[[""Junior Musketeer's Tuck +2"", 1], null, null]"
-Amateur,33,[],Kukri,Fire,,"[[""Steel Ingot"", 1], [""Chestnut Lumber"", 1], [""Lizard Skin"", 1]]","[[""Kukri +1"", 1], null, null]"
-Amateur,33,[],Plain Pick,Light,,"[[""Rusty Pick"", 1]]","[null, null, null]"
-Amateur,33,[],Tachi,Fire,"Leathercraft - (7), Woodworking - (4)","[[""Iron Ingot"", 3], [""Copper Ingot"", 1], [""Lizard Skin"", 1], [""Tama-Hagane"", 1], [""Cotton Thread"", 1], [""Ash Lumber"", 1]]","[[""Tachi +1"", 1], null, null]"
-Amateur,34,[],Mythril Knife,Fire,,"[[""Mythril Ingot"", 1], [""Chestnut Lumber"", 1]]","[[""Mythril Knife +1"", 1], null, null]"
-Amateur,34,[],Plain Cap,Light,,"[[""Rusty Cap"", 1]]","[null, null, null]"
-Amateur,34,[],Warhammer,Fire,,"[[""Iron Ingot"", 2], [""Elm Lumber"", 1]]","[[""Warhammer +1"", 1], null, null]"
-Amateur,35,[],Bastokan Dagger,Fire,,"[[""Decurion's Dagger"", 1], [""Mythril Ingot"", 1]]","[[""Republic Dagger"", 1], null, null]"
-Amateur,35,"[[""Leathercraft"", 7]]",Chain Hose,Earth,,"[[""Iron Chain"", 2], [""Linen Cloth"", 1], [""Ram Leather"", 2]]","[[""Chain Hose +1"", 1], null, null]"
-Amateur,35,"[[""Leathercraft"", 5]]",Iron Cuisses,Earth,,"[[""Iron Scales"", 2], [""Leather Trousers"", 1], [""Cotton Thread"", 1]]","[[""Iron Cuisses +1"", 1], null, null]"
-Amateur,35,[],Lucent Scythe,Fire,,"[[""Lucent Iron"", 1], [""Scythe"", 1]]","[null, null, null]"
-Amateur,35,[],Targe,Fire,,"[[""Iron Sheet"", 2], [""Holly Lumber"", 1]]","[[""Targe +1"", 1], null, null]"
-Amateur,35,[],Targe,Fire,,"[[""Smithing Kit 35"", 1]]","[null, null, null]"
-Amateur,36,"[[""Leathercraft"", 2]]",Iron Greaves,Earth,,"[[""Iron Scales"", 2], [""Cotton Thread"", 1], [""Leather Highboots"", 1]]","[[""Iron Greaves +1"", 1], null, null]"
-Amateur,36,[],Lightweight Steel Sheet,Fire,,"[[""Light Steel Ingot"", 1]]","[null, null, null]"
-Amateur,36,[],Lightweight Steel Sheet,Fire,Sheeting,"[[""Light Steel Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,36,[],Steel Sheet,Fire,,"[[""Steel Ingot"", 1]]","[null, null, null]"
-Amateur,36,[],Steel Sheet,Fire,Sheeting,"[[""Steel Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,36,"[[""Goldsmithing"", 25], [""Woodworking"", 8]]",Voulge,Fire,,"[[""Brass Ingot"", 1], [""Steel Ingot"", 2], [""Mythril Ingot"", 1], [""Holly Lumber"", 1]]","[[""Voulge +1"", 1], null, null]"
-Amateur,36,"[[""Woodworking"", 11], [""Leathercraft"", 7]]",Wakizashi,Fire,,"[[""Iron Ingot"", 1], [""Elm Lumber"", 1], [""Copper Ingot"", 1], [""Lizard Skin"", 1], [""Tama-Hagane"", 1], [""Silk Thread"", 1]]","[[""Wakizashi +1"", 1], null, null]"
-Amateur,37,"[[""Leathercraft"", 8]]",Chainmail,Earth,,"[[""Iron Chain"", 4], [""Iron Sheet"", 1], [""Ram Leather"", 1]]","[[""Chainmail +1"", 1], null, null]"
-Amateur,37,"[[""Leathercraft"", 14]]",Eisendiechlings,Fire,,"[[""Bronze Sheet"", 1], [""Iron Sheet"", 1], [""Dhalmel Leather"", 1], [""Sheep Leather"", 1]]","[[""Kampfdiechlings"", 1], null, null]"
-Amateur,37,[],Iron Scale Mail,Earth,,"[[""Iron Scales"", 4], [""Leather Vest"", 1], [""Cotton Thread"", 1], [""Sheep Leather"", 1]]","[[""Iron Scale Mail +1"", 1], null, null]"
-Amateur,37,[],Katars,Fire,,"[[""Steel Ingot"", 2], [""Bronze Sheet"", 1], [""Ram Leather"", 1]]","[[""Katars +1"", 1], null, null]"
-Amateur,37,[],Windurstian Sword,Fire,,"[[""Iron Ingot"", 1], [""Mercenary's Greatsword"", 1]]","[[""Federation Sword"", 1], null, null]"
-Amateur,37,[],Tyro Katars,Fire,,"[[""Steel Ingot"", 2], [""Ram Leather"", 1], [""Grimy Bronze Sheet"", 1]]","[[""Tyro Katars +1"", 1], null, null]"
-Amateur,38,"[[""Goldsmithing"", 12]]",Eisenschaller,Fire,,"[[""Iron Sheet"", 2], [""Copper Ingot"", 1], [""Silver Ingot"", 1], [""Sheep Leather"", 1], [""Mercury"", 1]]","[[""Kampfschaller"", 1], null, null]"
-Amateur,38,"[[""Goldsmithing"", 15]]",Kris,Fire,,"[[""Iron Ingot"", 1], [""Steel Ingot"", 1], [""Black Pearl"", 1]]","[[""Kris +1"", 1], null, null]"
-Amateur,38,"[[""Woodworking"", 6]]",War Pick,Fire,,"[[""Ash Lumber"", 1], [""Steel Ingot"", 1]]","[[""War Pick +1"", 1], null, null]"
-Amateur,38,[],Windurstian Kukri,Fire,,"[[""Mercenary Captain's Kukri"", 1], [""Steel Ingot"", 1]]","[[""Federation Kukri"", 1], null, null]"
-Amateur,39,"[[""Goldsmithing"", 25], [""Leathercraft"", 20]]",Falx,Fire,,"[[""Steel Ingot"", 3], [""Mythril Ingot"", 1], [""Holly Lumber"", 1], [""Pearl"", 1], [""Dhalmel Leather"", 1]]","[[""Falx +1"", 1], null, null]"
-Amateur,39,"[[""Goldsmithing"", 19]]",Fleuret,Fire,,"[[""Silver Ingot"", 1], [""Steel Ingot"", 2], [""Light Opal"", 1]]","[[""Fleuret +1"", 1], null, null]"
-Amateur,39,"[[""Leathercraft"", 9]]",Padded Cap,Earth,,"[[""Iron Sheet"", 1], [""Lizard Skin"", 2]]","[[""Strong Cap"", 1], null, null]"
-Amateur,39,[],Twicer,Fire,,"[[""Light Steel Ingot"", 1], [""Voulge"", 1]]","[null, null, null]"
-Amateur,39,"[[""Leathercraft"", 7], [""Woodworking"", 4]]",Midare,Fire,,"[[""Mythril Ingot"", 1], [""Ash Lumber"", 1], [""Copper Ingot"", 1], [""Tokkyu Tama-Hagane"", 1], [""Cotton Thread"", 1], [""Lizard Skin"", 1]]","[[""Midare +1"", 1], null, null]"
-Amateur,40,[],Bannaret Mail,Earth,Metal Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Chainmail"", 1]]","[null, null, null]"
-Amateur,40,[],Mythril Mace,Fire,,"[[""Mythril Ingot"", 3]]","[[""Mythril Mace +1"", 1], null, null]"
-Amateur,40,[],Mythril Sword,Fire,,"[[""Mythril Ingot"", 2], [""Dhalmel Leather"", 1]]","[[""Mythril Sword +1"", 1], null, null]"
-Amateur,40,[],Steel Scales,Wind,,"[[""Steel Sheet"", 1]]","[null, null, null]"
-Amateur,40,[],Steel Scales,Wind,,"[[""Smithing Kit 40"", 1], [""Apprentice (41-50)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,41,"[[""Leathercraft"", 10]]",Iron Mittens,Earth,,"[[""Iron Sheet"", 1], [""Lizard Skin"", 1]]","[[""Iron Mittens +1"", 1], null, null]"
-Amateur,41,"[[""Leathercraft"", 11], [""Woodworking"", 9]]",Mythril Claymore,Fire,,"[[""Dhalmel Leather"", 1], [""Holly Lumber"", 1], [""Mythril Ingot"", 4]]","[[""Fine Claymore"", 1], null, null]"
-Amateur,41,"[[""Goldsmithing"", 11]]",Tulwar,Fire,,"[[""Silver Ingot"", 1], [""Mythril Ingot"", 2]]","[[""Tulwar +1"", 1], null, null]"
-Amateur,41,"[[""Woodworking"", 14]]",Heavy Axe,Fire,,"[[""Oak Lumber"", 1], [""Steel Ingot"", 3]]","[[""Heavy Axe +1"", 1], null, null]"
-Amateur,41,"[[""Leathercraft"", 15], [""Goldsmithing"", 9]]",Eisenschuhs,Fire,,"[[""Dhalmel Leather"", 1], [""Iron Sheet"", 2], [""Mercury"", 1], [""Sheep Leather"", 1], [""Silver Ingot"", 1]]","[[""Kampfschuhs"", 1], null, null]"
-Amateur,41,[],Lucent Lance,Fire,,"[[""Lance"", 1], [""Lucent Steel Ingot"", 1]]","[null, null, null]"
-Amateur,41,[],Bastokan Targe,Earth,,"[[""Iron Sheet"", 1], [""Decurion's Shield"", 1]]","[[""Republic Targe"", 1], null, null]"
-Amateur,42,[],Combat Caster's Dagger +1,Fire,,"[[""Mythril Ingot"", 1], [""Combat Caster's Dagger"", 1]]","[[""Combat Caster's Dagger +2"", 1], null, null]"
-Amateur,42,"[[""Goldsmithing"", 14]]",Eisenhentzes,Fire,,"[[""Silver Ingot"", 1], [""Mercury"", 1], [""Leather Gloves"", 2], [""Bronze Sheet"", 1], [""Iron Sheet"", 1]]","[[""Kampfhentzes"", 1], null, null]"
-Amateur,42,"[[""Woodworking"", 11]]",Mythril Axe,Fire,,"[[""Chestnut Lumber"", 1], [""Mythril Ingot"", 2]]","[[""Mythril Axe +1"", 1], null, null]"
-Amateur,42,"[[""Woodworking"", 11]]",Mythril Kukri,Fire,,"[[""Oak Lumber"", 1], [""Raptor Skin"", 1], [""Mythril Ingot"", 1]]","[[""Mythril Kukri +1"", 1], null, null]"
-Amateur,42,[],Throwing Tomahawk,Fire,,"[[""Chestnut Lumber"", 2], [""Steel Ingot"", 2]]","[[""Throwing Tomahawk"", 66], [""Throwing Tomahawk"", 99], [""Throwing Tomahawk"", 99]]"
-Amateur,42,"[[""Leathercraft"", 7], [""Woodworking"", 6]]",Two-Handed Sword,Fire,,"[[""Ash Lumber"", 1], [""Lizard Skin"", 1], [""Steel Ingot"", 5]]","[[""Two-Handed Sword +1"", 1], null, null]"
-Amateur,43,"[[""Goldsmithing"", 15], [""Leathercraft"", 5]]",Eisenbrust,Fire,,"[[""Bronze Sheet"", 2], [""Iron Sheet"", 2], [""Mercury"", 1], [""Sheep Leather"", 1], [""Silver Ingot"", 1]]","[[""Kampfbrust"", 1], null, null]"
-Amateur,43,[],Falchion,Fire,,"[[""Iron Ingot"", 1], [""Steel Ingot"", 3]]","[[""Falchion +1"", 1], null, null]"
-Amateur,43,"[[""Leathercraft"", 11]]",Leggings,Earth,,"[[""Iron Sheet"", 2], [""Lizard Skin"", 2]]","[[""Leggings +1"", 1], null, null]"
-Amateur,43,"[[""Woodworking"", 21]]",Musketoon,Fire,,"[[""Brass Ingot"", 1], [""Bronze Ingot"", 2], [""Willow Lumber"", 1]]","[[""Musketoon +1"", 1], null, null]"
-Amateur,43,"[[""Woodworking"", 11], [""Leathercraft"", 7]]",Shinobi-Gatana,Fire,,"[[""Copper Ingot"", 1], [""Cotton Thread"", 1], [""Elm Lumber"", 1], [""Iron Ingot"", 1], [""Lizard Skin"", 1], [""Tama-Hagane"", 1]]","[[""Shinobi-Gatana +1"", 1], null, null]"
-Amateur,44,[],Juji Shuriken,Wind,,"[[""Iron Sheet"", 1], [""Steel Ingot"", 1]]","[[""Juji Shuriken"", 66], [""Juji Shuriken"", 99], [""Juji Shuriken"", 99]]"
-Amateur,44,[],Lucent Axe,Fire,,"[[""Heavy Axe"", 1], [""Lucent Steel Ingot"", 1]]","[null, null, null]"
-Amateur,44,"[[""Woodworking"", 12]]",Mythril Knuckles,Fire,,"[[""Chestnut Lumber"", 1], [""Mythril Sheet"", 1], [""Steel Ingot"", 1]]","[[""Mythril Knuckles +1"", 1], null, null]"
-Amateur,44,[],Mythril Bolt Heads,Wind,,"[[""Mythril Ingot"", 1]]","[[""Mythril Bolt Heads"", 8], [""Mythril Bolt Heads"", 10], [""Mythril Bolt Heads"", 12]]"
-Amateur,44,[],Halo Claymore,Fire,Metal Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Mythril Claymore"", 1]]","[null, null, null]"
-Amateur,45,[],Bastokan Sword,Fire,,"[[""Centurion's Sword"", 1], [""Mythril Ingot"", 1]]","[[""Republic Sword"", 1], null, null]"
-Amateur,45,"[[""Leathercraft"", 12]]",Iron Subligar,Earth,,"[[""Cotton Cloth"", 1], [""Iron Sheet"", 1], [""Lizard Skin"", 1]]","[[""Iron Subligar +1"", 1], null, null]"
-Amateur,45,[],Lucent Sword,Fire,,"[[""Lucent Iron Ingot"", 1], [""Two-Handed Sword"", 1]]","[null, null, null]"
-Amateur,45,[],Navy Axe,Fire,Metal Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Mythril Axe"", 1]]","[null, null, null]"
-Amateur,45,[],Mythril Rod,Fire,,"[[""Mythril Ingot"", 2], [""Steel Ingot"", 1]]","[[""Mythril Rod +1"", 1], null, null]"
-Amateur,45,[],San d'Orian Mace,Fire,,"[[""Mythril Ingot"", 1], [""Royal Squire's Mace"", 1]]","[[""Kingdom Mace"", 1], null, null]"
-Amateur,45,[],Mythril Rod,Fire,,"[[""Smithing Kit 45"", 1]]","[null, null, null]"
-Amateur,46,[],Bastokan Greataxe,Fire,,"[[""Steel Ingot"", 1], [""Centurion's Axe"", 1]]","[[""Republic Greataxe"", 1], null, null]"
-Amateur,46,[],Combat Caster's Scimitar +1,Fire,,"[[""Mythril Ingot"", 1], [""Combat Caster's Scimitar"", 1]]","[[""Combat Caster's Scimitar +2"", 1], null, null]"
-Amateur,46,[],Hibari,Fire,,"[[""Lizard Skin"", 1], [""Tama-Hagane"", 1]]","[[""Hibari +1"", 1], null, null]"
-Amateur,46,[],Maul,Fire,,"[[""Mythril Ingot"", 2], [""Oak Lumber"", 1]]","[[""Maul +1"", 1], null, null]"
-Amateur,46,"[[""Woodworking"", 12]]",Mythril Bolt,Wind,,"[[""Mythril Ingot"", 1], [""Chestnut Lumber"", 1]]","[[""Mythril Bolt"", 66], [""Mythril Bolt"", 99], [""Mythril Bolt"", 99]]"
-Amateur,47,"[[""Woodworking"", 8]]",Mythril Pick,Fire,,"[[""Mythril Ingot"", 1], [""Elm Lumber"", 1]]","[[""Mythril Pick +1"", 1], null, null]"
-Amateur,47,"[[""Leathercraft"", 13]]",Padded Armor,Earth,,"[[""Iron Sheet"", 3], [""Lizard Skin"", 2]]","[[""Strong Harness"", 1], null, null]"
-Amateur,48,"[[""Bonecraft"", 13]]",Mythril Claws,Fire,,"[[""Mythril Ingot"", 1], [""Beetle Jaw"", 1]]","[[""Mythril Claws +1"", 1], null, null]"
-Amateur,48,"[[""Woodworking"", 19]]",Mythril Scythe,Fire,,"[[""Grass Cloth"", 1], [""Mythril Ingot"", 3], [""Yew Lumber"", 1]]","[[""Mythril Scythe +1"", 1], null, null]"
-Amateur,48,"[[""Clothcraft"", 37]]",Republican Legionnaire's Bedding,Earth,,"[[""Iron Ingot"", 1], [""Steel Ingot"", 1], [""Iron Sheet"", 2], [""Chestnut Lumber"", 1], [""Linen Cloth"", 2], [""Saruta Cotton"", 1]]","[null, null, null]"
-Amateur,48,"[[""Leathercraft"", 7], [""Woodworking"", 4]]",Nodachi,Fire,,"[[""Ash Lumber"", 1], [""Copper Ingot"", 1], [""Cotton Thread"", 1], [""Iron Ingot"", 2], [""Lizard Skin"", 1], [""Tama-Hagane"", 2]]","[[""Nodachi +1"", 1], null, null]"
-Amateur,49,[],Gust Claymore,Earth,,"[[""Claymore"", 1], [""Iron Sheet"", 1], [""Tin Ingot"", 1]]","[[""Gust Claymore +1"", 1], null, null]"
-Amateur,49,[],Knight's Sword,Fire,,"[[""Mythril Ingot"", 3], [""Ram Leather"", 1]]","[[""Knight's Sword +1"", 1], null, null]"
-Amateur,49,[],Steel Visor,Wind,,"[[""Iron Scales"", 1], [""Sheep Leather"", 1], [""Steel Sheet"", 1]]","[[""Steel Visor +1"", 1], null, null]"
-Amateur,50,"[[""Woodworking"", 38], [""Goldsmithing"", 19]]",Arquebus,Fire,,"[[""Brass Ingot"", 1], [""Mahogany Lumber"", 1], [""Steel Ingot"", 2]]","[[""Arquebus +1"", 1], null, null]"
-Amateur,50,"[[""Woodworking"", 40], [""Leathercraft"", 12]]",Faussar,Fire,,"[[""Lizard Skin"", 1], [""Mahogany Lumber"", 1], [""Mythril Ingot"", 2], [""Steel Ingot"", 4]]","[[""Faussar +1"", 1], null, null]"
-Amateur,50,[],Kite Shield,Earth,,"[[""Ash Lumber"", 1], [""Darksteel Sheet"", 1], [""Iron Sheet"", 2]]","[[""Kite Shield +1"", 1], null, null]"
-Amateur,50,[],Kite Shield,Earth,,"[[""Smithing Kit 50"", 1], [""Journeyman (51-60)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,51,[],Bastokan Hammer,Fire,,"[[""Darksteel Ingot"", 1], [""Decurion's Hammer"", 1]]","[[""Republic Hammer"", 1], null, null]"
-Amateur,51,[],Broadsword,Fire,,"[[""Lizard Skin"", 1], [""Mythril Ingot"", 2]]","[[""Broadsword +1"", 1], null, null]"
-Amateur,51,[],Patas,Fire,,"[[""Carbon Fiber"", 1], [""Iron Sheet"", 1], [""Steel Ingot"", 2]]","[[""Patas +1"", 1], null, null]"
-Amateur,51,[],Steel Finger Gauntlets,Earth,,"[[""Cotton Thread"", 1], [""Leather Gloves"", 1], [""Steel Scales"", 2]]","[[""Steel Finger Gauntlets +1"", 1], null, null]"
-Amateur,51,"[[""Woodworking"", 11]]",Tabar,Fire,,"[[""Chestnut Lumber"", 1], [""Mythril Ingot"", 3]]","[[""Tabar +1"", 1], null, null]"
-Amateur,52,[],Darksteel Ingot,Fire,,"[[""Darksteel Ore"", 1], [""Iron Ore"", 3]]","[null, null, null]"
-Amateur,52,"[[""Woodworking"", 19]]",Smiting Scythe,Fire,,"[[""Tenebrium"", 1], [""Mythril Scythe"", 1]]","[[""Smiting Scythe +1"", 1], null, null]"
-Amateur,52,"[[""Leathercraft"", 11], [""Woodworking"", 9]]",Greatsword,Fire,,"[[""Dhalmel Leather"", 1], [""Holly Lumber"", 1], [""Mythril Ingot"", 5]]","[[""Greatsword +1"", 1], null, null]"
-Amateur,53,[],Darksteel Ingot,Fire,,"[[""Darksteel Ore"", 1], [""Darksteel Nugget"", 6]]","[null, null, null]"
-Amateur,53,[],Darksteel Knife,Fire,,"[[""Darksteel Ingot"", 1], [""Oak Lumber"", 1]]","[[""Darksteel Knife +1"", 1], null, null]"
-Amateur,53,[],Gorget,Fire,,"[[""Iron Sheet"", 1], [""Sheep Leather"", 1]]","[[""Gorget +1"", 1], null, null]"
-Amateur,53,"[[""Woodworking"", 7], [""Leathercraft"", 4]]",Kodachi,Fire,,"[[""Ash Lumber"", 1], [""Copper Ingot"", 1], [""Cotton Thread"", 1], [""Lizard Skin"", 1], [""Mythril Ingot"", 1], [""Tama-Hagane"", 1]]","[[""Kodachi +1"", 1], null, null]"
-Amateur,53,"[[""Woodworking"", 11], [""Leathercraft"", 7]]",Uchigatana,Fire,,"[[""Copper Ingot"", 1], [""Elm Lumber"", 1], [""Iron Ingot"", 2], [""Lizard Skin"", 1], [""Silk Thread"", 1], [""Tama-Hagane"", 1]]","[[""Uchigatana +1"", 1], null, null]"
-Amateur,54,[],Cuisses,Fire,,"[[""Iron Sheet"", 2], [""Sheep Leather"", 1]]","[[""Cuisses +1"", 1], null, null]"
-Amateur,54,[],Steel Ingot,Fire,,"[[""Bomb Ash"", 4], [""Iron Sand"", 4]]","[[""Tama-Hagane"", 1], null, null]"
-Amateur,54,"[[""Woodworking"", 30], [""Goldsmithing"", 9]]",Tanegashima,Fire,,"[[""Copper Ingot"", 1], [""Oak Lumber"", 1], [""Steel Ingot"", 2]]","[[""Tanegashima +1"", 1], null, null]"
-Amateur,55,[],Darksteel Sheet,Fire,,"[[""Darksteel Ingot"", 1]]","[null, null, null]"
-Amateur,55,[],Darksteel Sheet,Fire,Sheeting,"[[""Darksteel Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,55,[],Darksteel Sword,Fire,,"[[""Darksteel Ingot"", 2], [""Raptor Skin"", 1]]","[[""Darksteel Sword +1"", 1], null, null]"
-Amateur,55,[],Sallet,Fire,,"[[""Copper Ingot"", 1], [""Iron Sheet"", 2], [""Sheep Leather"", 1]]","[[""Sallet +1"", 1], null, null]"
-Amateur,55,"[[""Leathercraft"", 5]]",Steel Cuisses,Earth,,"[[""Cotton Thread"", 1], [""Leather Trousers"", 1], [""Steel Scales"", 2]]","[[""Steel Cuisses +1"", 1], null, null]"
-Amateur,55,[],Steel Ingot,Fire,,"[[""Bomb Ash"", 1], [""Cluster Ash"", 1], [""Iron Sand"", 4]]","[[""Tama-Hagane"", 1], null, null]"
-Amateur,55,[],Steel Ingot,Fire,,"[[""Iron Ore"", 1], [""Steel Nugget"", 6]]","[[""Tama-Hagane"", 1], null, null]"
-Amateur,55,[],Sallet,Fire,,"[[""Smithing Kit 55"", 1]]","[null, null, null]"
-Amateur,56,[],Combat Caster's Axe +1,Fire,,"[[""Mythril Ingot"", 1], [""Combat Caster's Axe"", 1]]","[[""Combat Caster's Axe +2"", 1], null, null]"
-Amateur,56,[],Steel Ingot,Fire,,"[[""Djinn Ash"", 1], [""Iron Sand"", 4]]","[[""Tama-Hagane"", 1], null, null]"
-Amateur,56,"[[""Bonecraft"", 14]]",Darksteel Claws,Fire,,"[[""Beetle Jaw"", 1], [""Darksteel Ingot"", 1]]","[[""Darksteel Claws +1"", 1], null, null]"
-Amateur,56,[],Plate Leggings,Fire,,"[[""Iron Sheet"", 3], [""Sheep Leather"", 2]]","[[""Plate Leggings +1"", 1], null, null]"
-Amateur,56,[],Steel Greaves,Earth,,"[[""Cotton Thread"", 1], [""Steel Scales"", 2], [""Leather Highboots"", 1]]","[[""Steel Greaves +1"", 1], null, null]"
-Amateur,57,[],Alumine Solerets,Earth,,"[[""Aluminum Sheet"", 1], [""Darksteel Sheet"", 1], [""Greaves"", 1]]","[[""Luisant Solerets"", 1], null, null]"
-Amateur,57,[],Gauntlets,Fire,,"[[""Iron Sheet"", 2], [""Leather Gloves"", 2]]","[[""Gauntlets +1"", 1], null, null]"
-Amateur,57,[],Hunting Sword,Fire,,"[[""Dhalmel Leather"", 1], [""Mythril Ingot"", 3]]","[[""War Sword"", 1], null, null]"
-Amateur,57,"[[""Woodworking"", 33], [""Goldsmithing"", 16]]",Mars's Hexagun,Fire,,"[[""Rosewood Lumber"", 2], [""Silver Ingot"", 1], [""Steel Ingot"", 2]]","[[""Mars's Hexagun +1"", 1], null, null]"
-Amateur,57,[],Severus Claws,Fire,,"[[""Darksteel Ingot"", 1], [""Likho Talon"", 1]]","[[""Severus Claws +1"", 1], null, null]"
-Amateur,57,[],Royal Swordsman's Blade +1,Fire,,"[[""Mythril Ingot"", 1], [""Royal Swordsman's Blade"", 1]]","[[""Royal Swordsman's Blade +2"", 1], null, null]"
-Amateur,57,[],Steel Scale Mail,Earth,,"[[""Cotton Thread"", 1], [""Leather Vest"", 1], [""Sheep Leather"", 1], [""Steel Scales"", 4]]","[[""Steel Scale Mail +1"", 1], null, null]"
-Amateur,58,"[[""Alchemy"", 34]]",Armor Plate,Fire,,"[[""Darksteel Sheet"", 1], [""Imperial Cermet"", 1], [""Iron Sheet"", 1], [""Steel Sheet"", 1], [""Carbon Fiber"", 1]]","[null, null, null]"
-Amateur,58,[],Breastplate,Fire,,"[[""Iron Sheet"", 4], [""Sheep Leather"", 2]]","[[""Breastplate +1"", 1], null, null]"
-Amateur,58,"[[""Leathercraft"", 30], [""Woodworking"", 4]]",Jindachi,Fire,,"[[""Ash Lumber"", 1], [""Copper Ingot"", 1], [""Cotton Thread"", 1], [""Iron Ingot"", 2], [""Raptor Skin"", 1], [""Tama-Hagane"", 2]]","[[""Jindachi +1"", 1], null, null]"
-Amateur,58,[],Kyofu,Earth,,"[[""Iron Sheet"", 1], [""Tin Ingot"", 1], [""Shinobi-Gatana"", 1]]","[[""Kyofu +1"", 1], null, null]"
-Amateur,59,[],Alumine Moufles,Earth,,"[[""Aluminum Sheet"", 1], [""Chain Mittens"", 1], [""Darksteel Sheet"", 1]]","[[""Luisant Moufles"", 1], null, null]"
-Amateur,59,"[[""Woodworking"", 20], [""Goldsmithing"", 17]]",Blunderbuss,Fire,,"[[""Brass Ingot"", 1], [""Steel Ingot"", 2], [""Elm Lumber"", 1], [""Silver Ingot"", 1]]","[[""Blunderbuss +1"", 1], null, null]"
-Amateur,59,[],Darksteel Scales,Wind,,"[[""Darksteel Sheet"", 1]]","[null, null, null]"
-Amateur,59,[],Gust Sword,Earth,,"[[""Greatsword"", 1], [""Steel Sheet"", 1], [""Tin Ingot"", 1]]","[[""Gust Sword +1"", 1], null, null]"
-Amateur,59,"[[""Goldsmithing"", 14]]",Schlaeger,Fire,,"[[""Darksteel Ingot"", 2], [""Silver Ingot"", 1]]","[[""Schlaeger +1"", 1], null, null]"
-Amateur,59,[],Scutum,Earth,,"[[""Darksteel Sheet"", 2], [""Iron Sheet"", 2], [""Oak Lumber"", 1]]","[[""Scutum +1"", 1], null, null]"
-Amateur,60,"[[""Leathercraft"", 18], [""Woodworking"", 14]]",Darksteel Claymore,Fire,,"[[""Chestnut Lumber"", 1], [""Darksteel Ingot"", 4], [""Ram Leather"", 1]]","[[""Darksteel Claymore +1"", 1], null, null]"
-Amateur,60,[],Darksteel Falchion,Fire,,"[[""Darksteel Ingot"", 3], [""Steel Ingot"", 1]]","[[""Crescent Sword"", 1], null, null]"
-Amateur,60,"[[""Woodworking"", 23]]",Darksteel Knuckles,Fire,,"[[""Darksteel Ingot"", 1], [""Darksteel Sheet"", 1], [""Oak Lumber"", 1]]","[[""Darksteel Knuckles +1"", 1], null, null]"
-Amateur,60,[],Iyo Scale,Wind,,"[[""Darksteel Sheet"", 2]]","[null, null, null]"
-Amateur,60,[],Erlking's Blade,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Darksteel Ingot"", 2], [""Steel Ingot"", 1]]","[null, null, null]"
-Amateur,60,"[[""Goldsmithing"", 25], [""Woodworking"", 8]]",Tewhatewha,Fire,,"[[""Iron Ingot"", 1], [""Steel Ingot"", 2], [""Holly Lumber"", 1], [""Aramid Fiber"", 1]]","[[""Tewhatewha +1"", 1], null, null]"
-Amateur,60,[],Darksteel Mace,Fire,,"[[""Smithing Kit 60"", 1], [""Craftsman (61-70)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,61,"[[""Goldsmithing"", 54]]",Tsukumo,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Gargouille Shank"", 1], [""Ruszor Leather"", 1]]","[null, null, null]"
-Amateur,61,"[[""Leathercraft"", 22]]",Alumine Brayettes,Earth,,"[[""Aluminum Chain"", 1], [""Darksteel Chain"", 1], [""Linen Cloth"", 1], [""Ram Leather"", 2]]","[[""Luisant Brayettes"", 1], null, null]"
-Amateur,61,"[[""Alchemy"", 59], [""Woodworking"", 19]]",Dweomer Scythe,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Steel Ingot"", 1], [""Darksteel Ingot"", 2], [""Yew Lumber"", 1], [""Grass Cloth"", 1], [""Fiend Blood"", 1]]","[null, null, null]"
-Amateur,61,[],Darksteel Mace,Fire,,"[[""Darksteel Ingot"", 3]]","[[""Darksteel Mace +1"", 1], null, null]"
-Amateur,61,"[[""Woodworking"", 19]]",Mythril Zaghnal,Fire,,"[[""Grass Cloth"", 1], [""Mythril Ingot"", 2], [""Walnut Lumber"", 1]]","[[""Mythril Zaghnal +1"", 1], null, null]"
-Amateur,61,"[[""Leathercraft"", 37]]",Sai,Fire,,"[[""Habu Skin"", 1], [""Silver Thread"", 1], [""Steel Ingot"", 2]]","[[""Sai +1"", 1], null, null]"
-Amateur,62,"[[""Goldsmithing"", 21]]",Alumine Salade,Fire,,"[[""Aluminum Sheet"", 1], [""Copper Ingot"", 1], [""Darksteel Chain"", 1], [""Darksteel Sheet"", 1], [""Sheep Leather"", 1]]","[[""Luisant Salade"", 1], null, null]"
-Amateur,62,"[[""Woodworking"", 29]]",Darksteel Axe,Fire,,"[[""Darksteel Ingot"", 2], [""Oak Lumber"", 1]]","[[""Darksteel Axe +1"", 1], null, null]"
-Amateur,62,[],Darksteel Bolt Heads,Wind,,"[[""Darksteel Ingot"", 1]]","[[""Darksteel Bolt Heads"", 8], [""Darksteel Bolt Heads"", 10], [""Darksteel Bolt Heads"", 12]]"
-Amateur,62,[],Darksteel Sollerets,Earth,,"[[""Darksteel Sheet"", 2], [""Greaves"", 1]]","[[""Darksteel Sollerets +1"", 1], null, null]"
-Amateur,62,"[[""Clothcraft"", 44]]",Haidate,Earth,,"[[""Iron Sheet"", 2], [""Sheep Leather"", 1], [""Silk Cloth"", 1], [""Silk Thread"", 1]]","[[""Haidate +1"", 1], null, null]"
-Amateur,62,"[[""Goldsmithing"", 50], [""Woodworking"", 33]]",Steel Kilij,Fire,,"[[""Aluminum Ingot"", 2], [""Amethyst"", 1], [""Ametrine"", 1], [""Karakul Leather"", 1], [""Rosewood Lumber"", 1], [""Steel Ingot"", 2]]","[[""Steel Kilij +1"", 1], null, null]"
-Amateur,62,[],Tactician Magician's Espadon +1,Fire,,"[[""Mythril Ingot"", 1], [""Tactician Magician's Espadon"", 1]]","[[""Tactician Magician's Espadon +2"", 1], null, null]"
-Amateur,62,"[[""Alchemy"", 51], [""Woodworking"", 11]]",Sakurafubuki,Fire,,"[[""Cermet Chunk"", 1], [""Copper Ingot"", 1], [""Raptor Skin"", 1], [""Silk Thread"", 1], [""Tama-Hagane"", 1]]","[[""Sakurafubuki +1"", 1], null, null]"
-Amateur,63,[],Darksteel Baselard,Fire,,"[[""Mythril Ingot"", 1], [""Darksteel Ingot"", 1]]","[[""Darksteel Baselard +1"", 1], null, null]"
-Amateur,63,[],Darksteel Chain,Earth,,"[[""Darksteel Ingot"", 2]]","[[""Darksteel Chain"", 4], null, null]"
-Amateur,63,[],Darksteel Chain,Earth,Chainwork,"[[""Darksteel Ingot"", 6], [""Mandrel"", 1]]","[[""Darksteel Chain"", 12], null, null]"
-Amateur,63,[],Dweomer Knife,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Jacaranda Lumber"", 1]]","[null, null, null]"
-Amateur,64,"[[""Clothcraft"", 41]]",Sune-Ate,Fire,,"[[""Iron Sheet"", 2], [""Sheep Leather"", 1], [""Silk Cloth"", 1], [""Silk Thread"", 1]]","[[""Sune-Ate +1"", 1], null, null]"
-Amateur,64,[],Darksteel Mufflers,Earth,,"[[""Chain Mittens"", 1], [""Darksteel Sheet"", 2]]","[[""Darksteel Mufflers +1"", 1], null, null]"
-Amateur,64,"[[""Goldsmithing"", 28], [""Clothcraft"", 25]]",Alumine Haubert,Earth,,"[[""Aluminum Ingot"", 1], [""Aluminum Sheet"", 1], [""Darksteel Sheet"", 1], [""Darksteel Chain"", 3], [""Silk Cloth"", 1], [""Velvet Cloth"", 1]]","[[""Luisant Haubert"", 1], null, null]"
-Amateur,64,[],Dweomer Maul,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Mahogany Lumber"", 1], [""Darksteel Ingot"", 1]]","[null, null, null]"
-Amateur,64,"[[""Woodworking"", 26]]",Darksteel Bolt,Wind,,"[[""Darksteel Ingot"", 1], [""Rosewood Lumber"", 1]]","[[""Darksteel Bolt"", 66], [""Darksteel Bolt"", 99], [""Darksteel Bolt"", 99]]"
-Amateur,65,[],Darksteel Kukri,Fire,,"[[""Cockatrice Skin"", 1], [""Darksteel Ingot"", 1], [""Mahogany Lumber"", 1]]","[[""Darksteel Kukri +1"", 1], null, null]"
-Amateur,65,[],Manji Shuriken,Wind,,"[[""Darksteel Sheet"", 1], [""Tama-Hagane"", 1]]","[[""Manji Shuriken"", 66], [""Manji Shuriken"", 99], [""Manji Shuriken"", 99]]"
-Amateur,65,[],Reppu,Earth,,"[[""Kodachi"", 1], [""Steel Sheet"", 1], [""Tin Ingot"", 1]]","[[""Reppu +1"", 1], null, null]"
-Amateur,65,"[[""Woodworking"", 23]]",Erlking's Tabar,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Oak Lumber"", 1], [""Darksteel Ingot"", 2]]","[null, null, null]"
-Amateur,65,[],Fane Baselard,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Dark Adaman"", 1]]","[null, null, null]"
-Amateur,65,[],Darksteel Kukri,Fire,,"[[""Smithing Kit 65"", 1]]","[null, null, null]"
-Amateur,66,"[[""Leathercraft"", 27]]",Darksteel Breeches,Earth,,"[[""Darksteel Chain"", 2], [""Linen Cloth"", 1], [""Ram Leather"", 2]]","[[""Darksteel Breeches +1"", 1], null, null]"
-Amateur,66,"[[""Woodworking"", 30], [""Goldsmithing"", 9]]",Negoroshiki,Fire,,"[[""Copper Ingot"", 1], [""Darksteel Ingot"", 1], [""Oak Lumber"", 1], [""Steel Ingot"", 1]]","[[""Negoroshiki +1"", 1], null, null]"
-Amateur,66,[],Nodowa,Earth,,"[[""Iron Sheet"", 1], [""Silk Thread"", 1]]","[[""Nodowa +1"", 1], null, null]"
-Amateur,66,"[[""Leathercraft"", 39], [""Clothcraft"", 28]]",Jaridah Nails,Earth,,"[[""Karakul Cloth"", 1], [""Karakul Leather"", 1], [""Marid Hair"", 1], [""Marid Leather"", 1], [""Steel Sheet"", 1]]","[[""Akinji Nails"", 1], null, null]"
-Amateur,66,[],Hanafubuki,Fire,Metal Ensorcellment,"[[""Lambent Wind Cell"", 1], [""Lambent Fire Cell"", 1], [""Sakurafubuki"", 1]]","[null, null, null]"
-Amateur,67,[],Bascinet,Fire,,"[[""Copper Ingot"", 1], [""Darksteel Chain"", 1], [""Darksteel Sheet"", 1], [""Sheep Leather"", 1], [""Iron Sheet"", 1]]","[[""Bascinet +1"", 1], null, null]"
-Amateur,67,[],Dweomer Steel,Fire,,"[[""Iron Ore"", 3], [""Swamp Ore"", 1]]","[null, null, null]"
-Amateur,67,"[[""Clothcraft"", 46]]",Kote,Fire,,"[[""Iron Chain"", 2], [""Iron Sheet"", 2], [""Silk Cloth"", 1], [""Silk Thread"", 1]]","[[""Kote +1"", 1], null, null]"
-Amateur,67,[],Royal Knight's Sollerets +1,Earth,,"[[""Darksteel Chain"", 1], [""Royal Knight's Sollerets"", 1]]","[[""Royal Knight's Sollerets +2"", 1], null, null]"
-Amateur,67,"[[""Goldsmithing"", 16]]",Darksteel Hexagun,Fire,,"[[""Darksteel Ingot"", 1], [""Ebony Lumber"", 2], [""Silver Ingot"", 1], [""Steel Ingot"", 1]]","[[""Darksteel Hexagun +1"", 1], null, null]"
-Amateur,67,"[[""Woodworking"", 37], [""Goldsmithing"", 16]]",Fane Hexagun,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Darksteel Ingot"", 1], [""Silver Ingot"", 1], [""Ebony Lumber"", 2]]","[null, null, null]"
-Amateur,68,"[[""Alchemy"", 34]]",Armor Plate II,Fire,,"[[""Carbon Fiber"", 1], [""Darksteel Sheet"", 2], [""Imperial Cermet"", 1], [""Steel Sheet"", 1]]","[null, null, null]"
-Amateur,68,[],Darksteel Katars,Fire,,"[[""Darksteel Ingot"", 2], [""Iron Sheet"", 1], [""Tiger Leather"", 1]]","[[""Darksteel Katars +1"", 1], null, null]"
-Amateur,68,"[[""Clothcraft"", 49]]",Hara-Ate,Fire,,"[[""Iron Chain"", 2], [""Iron Sheet"", 3], [""Sheep Leather"", 1], [""Silk Cloth"", 1], [""Silk Thread"", 1]]","[[""Hara-Ate +1"", 1], null, null]"
-Amateur,68,"[[""Leathercraft"", 31], [""Clothcraft"", 22]]",Jaridah Bazubands,Earth,,"[[""Karakul Leather"", 1], [""Marid Hair"", 1], [""Mohbwa Cloth"", 1], [""Steel Sheet"", 2]]","[[""Akinji Bazubands"", 1], null, null]"
-Amateur,68,"[[""Goldsmithing"", 55]]",Tsukumo,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Gargouille Shank"", 1], [""Ruszor Leather"", 1]]","[null, null, null]"
-Amateur,69,[],Erlking's Kheten,Fire,,"[[""Darksteel Ingot"", 1], [""Rosewood Lumber"", 1], [""Dweomer Steel Ingot"", 1], [""Steel Ingot"", 1]]","[null, null, null]"
-Amateur,69,"[[""Clothcraft"", 38]]",Haubergeon,Earth,,"[[""Damascus Ingot"", 1], [""Darksteel Chain"", 3], [""Darksteel Sheet"", 2], [""Silk Cloth"", 1], [""Velvet Cloth"", 1]]","[[""Haubergeon +1"", 1], null, null]"
-Amateur,69,[],Royal Knight's Mufflers +1,Earth,,"[[""Darksteel Chain"", 1], [""Royal Knight's Mufflers"", 1]]","[[""Royal Knight's Mufflers +2"", 1], null, null]"
-Amateur,69,"[[""Clothcraft"", 34]]",Zunari Kabuto,Fire,,"[[""Copper Ingot"", 1], [""Iron Sheet"", 2], [""Silk Cloth"", 1], [""Silk Thread"", 1]]","[[""Zunari Kabuto +1"", 1], null, null]"
-Amateur,69,"[[""Leathercraft"", 53], [""Woodworking"", 4]]",Rindomaru,Fire,,"[[""Copper Ingot"", 1], [""Darksteel Ingot"", 1], [""Iron Ingot"", 1], [""Tama-Hagane"", 1], [""Ash Lumber"", 1], [""Cotton Thread"", 1], [""Raptor Skin"", 1], [""Dweomer Steel Ingot"", 1]]","[null, null, null]"
-Amateur,70,"[[""Clothcraft"", 34]]",Darksteel Buckler,Fire,,"[[""Darksteel Sheet"", 2], [""Steel Ingot"", 1], [""Walnut Lumber"", 1]]","[[""Spiked Buckler"", 1], null, null]"
-Amateur,70,[],Gust Tongue,Earth,,"[[""Darksteel Sheet"", 1], [""Flamberge"", 1], [""Tin Ingot"", 1]]","[[""Gust Tongue +1"", 1], null, null]"
-Amateur,70,[],Hien,Fire,,"[[""Darksteel Ingot"", 1], [""Lizard Skin"", 1]]","[[""Hien +1"", 1], null, null]"
-Amateur,70,"[[""Woodworking"", 25]]",Odorous Knife,Fire,,"[[""Darksteel Ingot"", 1], [""Magnolia Lumber"", 1], [""White Steel"", 1]]","[[""Odorous Knife +1"", 1], null, null]"
-Amateur,70,[],Erlking's Sword,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Peiste Leather"", 1], [""Darksteel Ingot"", 1]]","[null, null, null]"
-Amateur,70,[],Hien,Fire,,"[[""Smithing Kit 70"", 1], [""Artisan (71-80)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,71,[],Falsiam Vase,Fire,,"[[""Darksteel Ingot"", 1], [""Mythril Ingot"", 1], [""Tin Ingot"", 1]]","[null, null, null]"
-Amateur,71,"[[""Woodworking"", 44], [""Leathercraft"", 30]]",Ram-Dao,Fire,,"[[""Mahogany Lumber"", 1], [""Mythril Ingot"", 6], [""Raptor Skin"", 1]]","[[""Ram-Dao +1"", 1], null, null]"
-Amateur,71,"[[""Alchemy"", 56], [""Goldsmithing"", 38]]",Schwert,Fire,,"[[""Cermet Chunk"", 1], [""Moonstone"", 1], [""Mythril Ingot"", 1], [""Steel Ingot"", 2]]","[[""Schwert +1"", 1], null, null]"
-Amateur,72,"[[""Leathercraft"", 38]]",Darksteel Cap,Earth,,"[[""Darksteel Sheet"", 1], [""Tiger Leather"", 2]]","[[""Darksteel Cap +1"", 1], null, null]"
-Amateur,72,"[[""Goldsmithing"", 15]]",Darksteel Kris,Fire,,"[[""Darksteel Ingot"", 1], [""Painite"", 1], [""Steel Ingot"", 1]]","[[""Darksteel Kris +1"", 1], null, null]"
-Amateur,72,"[[""Goldsmithing"", 49], [""Woodworking"", 41]]",Kilij,Fire,,"[[""Ebony Lumber"", 1], [""Gold Ingot"", 2], [""Lapis Lazuli"", 1], [""Marid Leather"", 1], [""Mythril Ingot"", 2], [""Turquoise"", 1]]","[[""Kilij +1"", 1], null, null]"
-Amateur,73,"[[""Woodworking"", 8]]",Darksteel Pick,Fire,,"[[""Darksteel Ingot"", 1], [""Elm Lumber"", 1]]","[[""Darksteel Pick +1"", 1], null, null]"
-Amateur,73,"[[""Leathercraft"", 41]]",Darksteel Mittens,Earth,,"[[""Darksteel Sheet"", 1], [""Tiger Leather"", 1]]","[[""Darksteel Mittens +1"", 1], null, null]"
-Amateur,73,"[[""Leathercraft"", 41]]",Muketsu,Fire,,"[[""Sakurafubuki"", 1], [""Steel Ingot"", 1]]","[[""Muketsu +1"", 1], null, null]"
-Amateur,73,[],Armor Plate III,Fire,,"[[""Adaman Sheet"", 2], [""Carbon Fiber"", 1], [""Dark Adaman Sheet"", 1], [""Imperial Cermet"", 1]]","[null, null, null]"
-Amateur,74,[],Dark Bronze Ingot,Fire,,"[[""Darksteel Ore"", 1], [""Copper Ore"", 2], [""Tin Ore"", 1]]","[null, null, null]"
-Amateur,74,"[[""Leathercraft"", 42]]",Darksteel Subligar,Earth,,"[[""Darksteel Sheet"", 1], [""Linen Cloth"", 1], [""Tiger Leather"", 1]]","[[""Darksteel Subligar +1"", 1], null, null]"
-Amateur,74,"[[""Leathercraft"", 40]]",Kabutowari,Fire,,"[[""Copper Ingot"", 1], [""Cotton Thread"", 1], [""Darksteel Ingot"", 1], [""Elm Lumber"", 1], [""Raptor Skin"", 1], [""Tama-Hagane"", 1]]","[[""Kabutowari +1"", 1], null, null]"
-Amateur,75,"[[""Woodworking"", 24]]",Kheten,Fire,,"[[""Darksteel Ingot"", 1], [""Rosewood Lumber"", 1], [""Steel Ingot"", 2]]","[[""Kheten +1"", 1], null, null]"
-Amateur,75,[],Dark Bronze Sheet,Fire,,"[[""Dark Bronze Ingot"", 1]]","[null, null, null]"
-Amateur,75,[],Dark Bronze Sheet,Fire,Sheeting,"[[""Dark Bronze Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,75,"[[""Leathercraft"", 42]]",Darksteel Leggings,Earth,,"[[""Darksteel Sheet"", 2], [""Tiger Leather"", 2]]","[[""Darksteel Leggings +1"", 1], null, null]"
-Amateur,76,"[[""Goldsmithing"", 51]]",Darksteel Voulge,Fire,,"[[""Brass Ingot"", 1], [""Darksteel Ingot"", 2], [""Ebony Lumber"", 1], [""Gold Ingot"", 1]]","[[""Darksteel Voulge +1"", 1], null, null]"
-Amateur,76,[],Durium Ingot,Fire,,"[[""Darksteel Ore"", 1], [""Durium Ore"", 3]]","[null, null, null]"
-Amateur,76,[],Keppu,Earth,,"[[""Darksteel Sheet"", 1], [""Muketsu"", 1], [""Tin Ingot"", 1]]","[[""Keppu +1"", 1], null, null]"
-Amateur,76,"[[""Leathercraft"", 7]]",Mikazuki,Fire,,"[[""Ash Lumber"", 1], [""Copper Ingot"", 1], [""Cotton Thread"", 1], [""Lizard Skin"", 1], [""Mythril Ingot"", 3], [""Tama-Hagane"", 1]]","[[""Mikazuki +1"", 1], null, null]"
-Amateur,76,[],Keppu,Earth,,"[[""Smithing Kit 76"", 1]]","[null, null, null]"
-Amateur,77,[],Bastard Sword,Fire,,"[[""Darksteel Ingot"", 3], [""Ram Leather"", 1]]","[[""Bastard Sword +1"", 1], null, null]"
-Amateur,77,"[[""Goldsmithing"", 45], [""Woodworking"", 43]]",Hexagun,Fire,,"[[""Bloodwood Lumber"", 1], [""Darksteel Ingot"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Steel Ingot"", 1], [""Walnut Lumber"", 1]]","[[""Hexagun +1"", 1], null, null]"
-Amateur,77,[],Darksteel Rod,Fire,,"[[""Darksteel Ingot"", 2], [""Steel Ingot"", 1]]","[[""Darksteel Rod +1"", 1], null, null]"
-Amateur,77,[],Durium Sheet,Fire,,"[[""Durium Ingot"", 1]]","[null, null, null]"
-Amateur,77,[],Durium Sheet,Fire,Sheeting,"[[""Durium Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,78,"[[""Leathercraft"", 43]]",Darksteel Harness,Earth,,"[[""Darksteel Sheet"", 3], [""Tiger Leather"", 2]]","[[""Darksteel Harness +1"", 1], null, null]"
-Amateur,78,"[[""Woodworking"", 19]]",Darksteel Scythe,Fire,,"[[""Darksteel Ingot"", 3], [""Grass Cloth"", 1], [""Yew Lumber"", 1]]","[[""Darksteel Scythe +1"", 1], null, null]"
-Amateur,78,[],Regiment Kheten,Fire,Metal Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Kheten"", 1]]","[null, null, null]"
-Amateur,78,[],Armor Plate IV,Fire,,"[[""Adaman Sheet"", 1], [""Carbon Fiber"", 1], [""Dark Adaman Sheet"", 1], [""Imperial Cermet"", 1], [""Titanium Sheet"", 1]]","[null, null, null]"
-Amateur,79,"[[""Woodworking"", 41], [""Goldsmithing"", 29]]",Matchlock Gun,Fire,,"[[""Brass Ingot"", 1], [""Darksteel Ingot"", 1], [""Steel Ingot"", 1], [""Walnut Lumber"", 1]]","[[""Matchlock Gun +1"", 1], null, null]"
-Amateur,79,"[[""Goldsmithing"", 49], [""Woodworking"", 42]]",Darksteel Falx,Fire,,"[[""Black Pearl"", 1], [""Buffalo Leather"", 1], [""Darksteel Ingot"", 3], [""Ebony Lumber"", 1], [""Mythril Ingot"", 1]]","[[""Darksteel Falx +1"", 1], null, null]"
-Amateur,79,[],Karimata Arrowheads,Wind,,"[[""Iron Ingot"", 1], [""Tama-Hagane"", 1]]","[[""Karimata Arrowheads"", 8], [""Karimata Arrowheads"", 10], [""Karimata Arrowheads"", 12]]"
-Amateur,80,"[[""Goldsmithing"", 41], [""Woodworking"", 37]]",Dark Amood,Fire,,"[[""Darksteel Ingot"", 2], [""Ebony Lumber"", 1], [""Garnet"", 1], [""Moblumin Ingot"", 1], [""Silver Ingot"", 1], [""Steel Ingot"", 2]]","[[""Dark Amood +1"", 1], null, null]"
-Amateur,80,"[[""Leathercraft"", 37], [""Goldsmithing"", 34]]",Holy Breastplate,Earth,,"[[""Blessed Mythril Sheet"", 3], [""Darksteel Sheet"", 1], [""Ram Leather"", 2], [""Sheep Leather"", 1], [""Silver Ingot"", 1]]","[[""Divine Breastplate"", 1], null, null]"
-Amateur,80,[],Katzbalger,Fire,,"[[""Broadsword"", 1], [""Darksteel Ingot"", 1], [""Raptor Skin"", 1]]","[[""Katzbalger +1"", 1], null, null]"
-Amateur,80,[],Durium Chain,Fire,,"[[""Durium Ingot"", 2]]","[[""Durium Chain"", 2], [""Durium Chain"", 3], [""Durium Chain"", 4]]"
-Amateur,80,[],Durium Chain,Fire,Chainwork,"[[""Durium Ingot"", 6], [""Mandrel"", 1]]","[[""Durium Chain"", 6], [""Durium Chain"", 9], [""Durium Chain"", 12]]"
-Amateur,80,[],Katzbalger,Fire,,"[[""Smithing Kit 80"", 1], [""Adept (81-90)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,81,[],Darksteel Cuisses,Fire,,"[[""Darksteel Sheet"", 2], [""Ram Leather"", 1]]","[[""Darksteel Cuisses +1"", 1], null, null]"
-Amateur,81,[],Darksteel Gorget,Fire,,"[[""Darksteel Sheet"", 1], [""Ram Leather"", 1]]","[[""Darksteel Gorget +1"", 1], null, null]"
-Amateur,81,"[[""Leathercraft"", 21], [""Woodworking"", 18]]",Zweihander,Fire,,"[[""Chestnut Lumber"", 1], [""Darksteel Ingot"", 4], [""Mythril Ingot"", 1], [""Ram Leather"", 1]]","[[""Zweihander +1"", 1], null, null]"
-Amateur,82,"[[""Goldsmithing"", 51]]",Darksteel Armet,Fire,,"[[""Copper Ingot"", 1], [""Darksteel Sheet"", 2], [""Gold Ingot"", 1], [""Mercury"", 1], [""Sheep Leather"", 1]]","[[""Darksteel Armet +1"", 1], null, null]"
-Amateur,82,"[[""Goldsmithing"", 53], [""Woodworking"", 41]]",Darksteel Kilij,Fire,,"[[""Darksteel Ingot"", 2], [""Ebony Lumber"", 1], [""Garnet"", 1], [""Marid Leather"", 1], [""Platinum Ingot"", 2], [""Ruby"", 1]]","[[""Darksteel Kilij +1"", 1], null, null]"
-Amateur,82,[],Darksteel Maul,Fire,,"[[""Darksteel Ingot"", 2], [""Mahogany Lumber"", 1]]","[[""Darksteel Maul +1"", 1], null, null]"
-Amateur,82,[],Troll Bronze Sheet,Fire,,"[[""Troll Bronze Ingot"", 1]]","[null, null, null]"
-Amateur,83,[],Darksteel Nodowa,Earth,,"[[""Darksteel Sheet"", 1], [""Silk Thread"", 1]]","[[""Darksteel Nodowa +1"", 1], null, null]"
-Amateur,83,"[[""Woodworking"", 23]]",Darksteel Tabar,Fire,,"[[""Darksteel Ingot"", 3], [""Oak Lumber"", 1]]","[[""Darksteel Tabar +1"", 1], null, null]"
-Amateur,83,[],Mythril Heart,Fire,,"[[""Lockheart"", 1], [""Mythril Ingot"", 1]]","[[""Mythril Heart +1"", 1], null, null]"
-Amateur,83,[],Thick Sollerets,Earth,,"[[""Darksteel Sollerets"", 1], [""Steel Sheet"", 1]]","[[""Thick Sollerets +1"", 1], null, null]"
-Amateur,83,[],Windurstian Scythe,Fire,,"[[""Darksteel Ingot"", 1], [""Mercenary Captain's Scythe"", 1]]","[[""Federation Scythe"", 1], null, null]"
-Amateur,84,"[[""Goldsmithing"", 54]]",Darksteel Sabatons,Fire,,"[[""Darksteel Sheet"", 3], [""Gold Ingot"", 1], [""Mercury"", 1], [""Ram Leather"", 2]]","[[""Darksteel Sabatons +1"", 1], null, null]"
-Amateur,84,"[[""Woodworking"", 15]]",Kotetsu +1,Fire,,"[[""Iron Ingot"", 1], [""Kotetsu"", 1], [""Rosewood Lumber"", 1], [""Silver Thread"", 1]]","[[""Shinkotetsu"", 1], null, null]"
-Amateur,84,[],Thick Mufflers,Earth,,"[[""Darksteel Mufflers"", 1], [""Steel Sheet"", 1]]","[[""Thick Mufflers +1"", 1], null, null]"
-Amateur,84,"[[""Goldsmithing"", 42]]",Fuma Shuriken,Wind,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Mythril Sheet"", 1], [""Tama-Hagane"", 1]]","[[""Fuma Shuriken"", 66], [""Fuma Shuriken"", 99], [""Fuma Shuriken"", 99]]"
-Amateur,84,[],Thick Mufflers,Earth,,"[[""Smithing Kit 84"", 1]]","[null, null, null]"
-Amateur,85,"[[""Goldsmithing"", 37], [""Woodworking"", 7]]",Flanged Mace,Fire,,"[[""Iron Ingot"", 2], [""Darksteel Ingot"", 1], [""Mahogany Lumber"", 1], [""Gold Ingot"", 1], [""Smilodon Leather"", 1]]","[[""Flanged Mace +1"", 1], null, null]"
-Amateur,85,[],Adaman Sheet,Fire,,"[[""Adaman Ingot"", 1]]","[null, null, null]"
-Amateur,85,[],Adaman Sheet,Fire,Sheeting,"[[""Adaman Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,85,[],Musketeer Gun +1,Fire,,"[[""Darksteel Ingot"", 1], [""Musketeer Gun"", 1]]","[[""Musketeer Gun +2"", 1], null, null]"
-Amateur,86,[],Dark Adaman Ingot,Fire,,"[[""Adaman Ore"", 1], [""Darksteel Ore"", 2], [""Iron Ore"", 1]]","[null, null, null]"
-Amateur,86,"[[""Goldsmithing"", 45]]",Darksteel Gauntlets,Fire,,"[[""Darksteel Sheet"", 2], [""Gold Ingot"", 1], [""Leather Gloves"", 2], [""Mercury"", 1]]","[[""Darksteel Gauntlets +1"", 1], null, null]"
-Amateur,86,[],Thick Breeches,Earth,,"[[""Darksteel Breeches"", 1], [""Mythril Chain"", 1]]","[[""Thick Breeches +1"", 1], null, null]"
-Amateur,87,[],Celata,Fire,,"[[""Copper Ingot"", 1], [""Darksteel Chain"", 1], [""Darksteel Sheet"", 1], [""Sheep Leather"", 1], [""Steel Sheet"", 1]]","[[""Celata +1"", 1], null, null]"
-Amateur,87,"[[""Goldsmithing"", 49]]",Darksteel Cuirass,Fire,,"[[""Darksteel Sheet"", 4], [""Gold Ingot"", 1], [""Mercury"", 1], [""Ram Leather"", 2]]","[[""Darksteel Cuirass +1"", 1], null, null]"
-Amateur,87,"[[""Goldsmithing"", 56], [""Woodworking"", 11]]",Izayoi,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Copper Ingot"", 1], [""Elm Lumber"", 1], [""Imperial Wootz Ingot"", 1], [""Manta Leather"", 1], [""Rainbow Thread"", 1]]","[[""Izayoi +1"", 1], null, null]"
-Amateur,87,"[[""Goldsmithing"", 51]]",Rising Sun,Wind,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Tama-Hagane"", 1]]","[[""Rising Sun +1"", 1], null, null]"
-Amateur,88,[],Colossal Axe,Fire,,"[[""Gigant Axe"", 1], [""Steel Ingot"", 1]]","[[""Colossal Axe +1"", 1], null, null]"
-Amateur,88,"[[""Goldsmithing"", 55]]",Hayabusa,Fire,,"[[""Imperial Wootz Ingot"", 1], [""Manta Leather"", 1], [""Scintillant Ingot"", 1]]","[[""Hayabusa +1"", 1], null, null]"
-Amateur,88,"[[""Woodworking"", 31]]",Heavy Darksteel Axe,Fire,,"[[""Darksteel Ingot"", 3], [""Mahogany Lumber"", 1]]","[[""Massive Darksteel Axe"", 1], null, null]"
-Amateur,88,"[[""Woodworking"", 15]]",Kanesada +1,Fire,,"[[""Kanesada"", 1], [""Rosewood Lumber"", 1], [""Silver Thread"", 1], [""Steel Ingot"", 1]]","[[""Shinkanesada"", 1], null, null]"
-Amateur,89,[],Dark Adaman Sheet,Fire,,"[[""Dark Adaman Ingot"", 1]]","[null, null, null]"
-Amateur,89,[],Dark Adaman Sheet,Fire,Sheeting,"[[""Dark Adaman Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,89,"[[""Clothcraft"", 38]]",Hauberk,Earth,,"[[""Darksteel Chain"", 1], [""Haubergeon"", 1], [""Silk Cloth"", 1], [""Steel Sheet"", 1], [""Velvet Cloth"", 1]]","[[""Hauberk +1"", 1], null, null]"
-Amateur,89,"[[""Goldsmithing"", 54]]",Hellfire,Fire,,"[[""Brass Ingot"", 1], [""Darksteel Ingot"", 2], [""Gold Ingot"", 1], [""Walnut Lumber"", 1]]","[[""Hellfire +1"", 1], null, null]"
-Amateur,89,"[[""Leathercraft"", 40], [""Woodworking"", 4]]",Zanbato,Fire,,"[[""Ash Lumber"", 1], [""Copper Ingot"", 1], [""Cotton Thread"", 1], [""Darksteel Ingot"", 2], [""Iron Ingot"", 1], [""Raptor Skin"", 1], [""Tama-Hagane"", 1]]","[[""Zanbato +1"", 1], null, null]"
-Amateur,89,[],Dark Adaman Bolt Heads,Wind,,"[[""Dark Adaman Ingot"", 1]]","[[""Dark Adaman Bolt Heads"", 8], [""Dark Adaman Bolt Heads"", 10], [""Dark Adaman Bolt Heads"", 12]]"
-Amateur,90,[],Adaman Ingot,Fire,,"[[""Adaman Ore"", 3], [""Iron Ore"", 1]]","[null, null, null]"
-Amateur,90,"[[""Woodworking"", 44], [""Leathercraft"", 23]]",Flamberge,Fire,,"[[""Cockatrice Skin"", 1], [""Darksteel Ingot"", 6], [""Mahogany Lumber"", 1]]","[[""Flamberge +1"", 1], null, null]"
-Amateur,90,"[[""Goldsmithing"", 58], [""Leathercraft"", 4]]",General's Shield,Fire,,"[[""Darksteel Sheet"", 3], [""Gold Ingot"", 1], [""Mercury"", 1], [""Mythril Sheet"", 1], [""Platinum Sheet"", 1], [""Sheep Leather"", 1]]","[[""Admiral's Shield"", 1], null, null]"
-Amateur,90,[],Frigid Core,Fire,Metal Ensorcellment,"[[""Adaman Ore"", 3], [""Dark Anima"", 1], [""Ice Anima"", 2], [""Iron Ore"", 1]]","[null, null, null]"
-Amateur,90,[],Inferno Core,Fire,Metal Ensorcellment,"[[""Adaman Ore"", 3], [""Dark Anima"", 1], [""Fire Anima"", 2], [""Iron Ore"", 1]]","[null, null, null]"
-Amateur,90,[],Luminous Core,Fire,Metal Ensorcellment,"[[""Adaman Ore"", 3], [""Dark Anima"", 1], [""Lightning Anima"", 2], [""Iron Ore"", 1]]","[null, null, null]"
-Amateur,90,[],Spirit Core,Fire,Metal Ensorcellment,"[[""Adaman Ore"", 3], [""Dark Anima"", 1], [""Earth Anima"", 2], [""Iron Ore"", 1]]","[null, null, null]"
-Amateur,90,[],Midrium Bolt Heads,Wind,,"[[""Midrium Ingot"", 1]]","[[""Midrium Bolt Heads"", 8], [""Midrium Bolt Heads"", 10], [""Midrium Bolt Heads"", 12]]"
-Amateur,90,[],Kunwu Iron,Fire,,"[[""Darksteel Ore"", 1], [""Kunwu Ore"", 3], [""Veteran (91-100)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,91,[],Adaman Ingot,Fire,,"[[""Adaman Nugget"", 6], [""Adaman Ore"", 1]]","[null, null, null]"
-Amateur,91,"[[""Goldsmithing"", 45], [""Woodworking"", 42]]",Adaman Sainti,Fire,,"[[""Adaman Ingot"", 1], [""Brass Ingot"", 1], [""Ebony Lumber"", 1], [""Gold Ingot"", 2], [""Mercury"", 1]]","[[""Gem Sainti"", 1], null, null]"
-Amateur,91,[],Gully,Fire,,"[[""Adaman Ingot"", 1], [""Mahogany Lumber"", 1]]","[[""Gully +1"", 1], null, null]"
-Amateur,91,[],Jadagna,Fire,,"[[""Jadagna -1"", 1], [""Troll Bronze Ingot"", 2]]","[[""Jadagna +1"", 1], null, null]"
-Amateur,91,"[[""Goldsmithing"", 42]]",Koenigs Knuckles,Fire,,"[[""Darksteel Sheet"", 1], [""Diamond Knuckles"", 1], [""Gold Ingot"", 1], [""Mercury"", 1]]","[[""Kaiser Knuckles"", 1], null, null]"
-Amateur,91,[],Molybdenum Ingot,Fire,,"[[""Iron Ore"", 3], [""Molybdenum Ore"", 1]]","[null, null, null]"
-Amateur,91,"[[""Goldsmithing"", 40], [""Leathercraft"", 30]]",Ebon Leggings,Fire,,"[[""Drk. Adm. Sheet"", 2], [""Wool Thread"", 1], [""Ram Leather"", 1], [""Scintillant Ingot"", 1], [""Iridium Ingot"", 1]]","[null, null, null]"
-Amateur,91,[],Bewitched Sollerets,Earth,,"[[""Cursed Sollerets -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Sollerets"", 1], null, null]"
-Amateur,91,[],Vexed Sune-Ate,Fire,,"[[""Hexed Sune-Ate -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Sune-Ate"", 1], null, null]"
-Amateur,91,[],Gully,Fire,,"[[""Smithing Kit 91"", 1]]","[null, null, null]"
-Amateur,92,[],Adaman Scales,Wind,,"[[""Adaman Sheet"", 1]]","[null, null, null]"
-Amateur,92,"[[""Leathercraft"", 44]]",Cursed Breeches,Earth,,"[[""Adaman Chain"", 1], [""Darksteel Chain"", 1], [""Linen Cloth"", 1], [""Tiger Leather"", 2]]","[[""Cursed Breeches -1"", 1], null, null]"
-Amateur,92,"[[""Clothcraft"", 45]]",Hachiman Jinpachi,Wind,,"[[""Adaman Chain"", 1], [""Kejusu Satin"", 1], [""Silk Cloth"", 1], [""Steel Sheet"", 1], [""Urushi"", 1]]","[[""Hachiman Jinpachi +1"", 1], null, null]"
-Amateur,92,[],Misericorde,Fire,,"[[""Adaman Ingot"", 1], [""Darksteel Ingot"", 1]]","[[""Misericorde +1"", 1], null, null]"
-Amateur,92,[],Molybdenum Sheet,Fire,,"[[""Molybdenum Ingot"", 1]]","[null, null, null]"
-Amateur,92,[],Adaman Bolt Heads,Wind,,"[[""Adaman Ingot"", 1]]","[[""Adaman Bolt Heads"", 8], [""Adaman Bolt Heads"", 10], [""Adaman Bolt Heads"", 12]]"
-Amateur,92,[],Bewitched Mufflers,Earth,,"[[""Cursed Mufflers -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Mufflers"", 1], null, null]"
-Amateur,93,"[[""Leathercraft"", 47]]",Black Cuisses,Fire,,"[[""Darksteel Sheet"", 1], [""Kunwu Sheet"", 1], [""Tiger Leather"", 2]]","[[""Onyx Cuisses"", 1], null, null]"
-Amateur,93,"[[""Goldsmithing"", 23]]",Cursed Sollerets,Earth,,"[[""Adaman Chain"", 1], [""Adaman Sheet"", 1], [""Brass Ingot"", 1], [""Thick Sollerets"", 1]]","[[""Cursed Sollerets -1"", 1], null, null]"
-Amateur,93,"[[""Alchemy"", 59], [""Woodworking"", 19]]",Death Scythe,Fire,,"[[""Darksteel Ingot"", 3], [""Fiend Blood"", 1], [""Grass Cloth"", 1], [""Steel Ingot"", 1], [""Yew Lumber"", 1]]","[[""Death Scythe +1"", 1], null, null]"
-Amateur,93,"[[""Leathercraft"", 46]]",Hachiman Kote,Fire,,"[[""Darksteel Chain"", 2], [""Darksteel Sheet"", 2], [""Gold Ingot"", 1], [""Tiger Leather"", 1], [""Viridian Urushi"", 1]]","[[""Hachiman Kote +1"", 1], null, null]"
-Amateur,93,"[[""Goldsmithing"", 49], [""Woodworking"", 13]]",Nadziak,Fire,,"[[""Adaman Ingot"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Oak Lumber"", 1]]","[[""Nadziak +1"", 1], null, null]"
-Amateur,93,"[[""Clothcraft"", 58]]",Yasha Jinpachi,Wind,,"[[""Darksteel Chain"", 1], [""Darksteel Sheet"", 1], [""Kejusu Satin"", 2]]","[[""Yasha Jinpachi +1"", 1], null, null]"
-Amateur,93,"[[""Goldsmithing"", 40], [""Leathercraft"", 25]]",Ebon Gauntlets,Fire,,"[[""Drk. Adm. Sheet"", 2], [""Studded Gloves"", 1], [""Scintillant Ingot"", 1], [""Iridium Ingot"", 1]]","[null, null, null]"
-Amateur,93,[],Midrium Ingot,Fire,,"[[""Midrium Ore"", 4]]","[null, null, null]"
-Amateur,93,[],Kunwu Iron Sheet,Fire,,"[[""Kunwu Iron"", 1]]","[null, null, null]"
-Amateur,93,[],Ra'Kaznar Arrowheads,Wind,,"[[""Steel Ingot"", 1], [""Ra'Kaznar Ingot"", 1]]","[[""Ra'Kaznar Arrowheads"", 8], [""Ra'Kaznar Arrowheads"", 10], [""Ra'Kaznar Arrowheads"", 12]]"
-Amateur,93,[],Bewitched Breeches,Earth,,"[[""Cursed Breeches -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Breeches"", 1], null, null]"
-Amateur,94,"[[""Goldsmithing"", 51]]",Barone Manopolas,Earth,,"[[""Adaman Sheet"", 2], [""Buffalo Leather"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Scarlet Linen"", 2]]","[[""Conte Manopolas"", 1], null, null]"
-Amateur,94,"[[""Goldsmithing"", 23]]",Cursed Mufflers,Earth,,"[[""Adaman Sheet"", 1], [""Brass Ingot"", 1], [""Thick Mufflers"", 1]]","[[""Cursed Mufflers -1"", 1], null, null]"
-Amateur,94,[],Adaman Chain,Earth,,"[[""Adaman Ingot"", 2]]","[[""Adaman Chain"", 2], [""Adaman Chain"", 3], [""Adaman Chain"", 4]]"
-Amateur,94,[],Adaman Chain,Earth,Chainwork,"[[""Adaman Ingot"", 6], [""Mandrel"", 1]]","[[""Adaman Chain"", 6], [""Adaman Chain"", 9], [""Adaman Chain"", 12]]"
-Amateur,94,[],Anelace,Fire,,"[[""Adaman Ingot"", 2], [""Cockatrice Skin"", 1], [""Gold Ingot"", 1], [""Mercury"", 1]]","[[""Anelace +1"", 1], null, null]"
-Amateur,94,[],Black Sollerets,Fire,,"[[""Darksteel Sheet"", 2], [""Kunwu Sheet"", 1], [""Tiger Ledelsens"", 1]]","[[""Onyx Sollerets"", 1], null, null]"
-Amateur,94,[],Ponderous Gully,Fire,,"[[""Spirit Core"", 1], [""Gully"", 1]]","[null, null, null]"
-Amateur,94,[],Tzustes Knife,Fire,,"[[""Midrium Ingot"", 1], [""Urunday Lumber"", 1]]","[[""Tzustes Knife +1"", 1], null, null]"
-Amateur,94,[],Bewitched Celata,Fire,,"[[""Cursed Celata -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Celata"", 1], null, null]"
-Amateur,94,[],Vexed Somen,Fire,,"[[""Hexed Somen -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Somen"", 1], null, null]"
-Amateur,94,[],Anelace,Fire,,"[[""Smithing Kit 94"", 1]]","[null, null, null]"
-Amateur,95,"[[""Goldsmithing"", 18]]",Ritter Shield,Earth,,"[[""Adaman Sheet"", 2], [""Ash Lumber"", 1], [""Brass Sheet"", 1], [""Sheep Leather"", 1]]","[[""Ritter Shield +1"", 1], null, null]"
-Amateur,95,"[[""Goldsmithing"", 60], [""Leathercraft"", 35]]",Barone Corazza,Earth,,"[[""Buffalo Leather"", 1], [""Darksteel Sheet"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Molybdenum Sheet"", 1], [""Orichalcum Chain"", 1], [""Scarlet Linen"", 1], [""Water Bead"", 1]]","[[""Conte Corazza"", 1], null, null]"
-Amateur,95,"[[""Goldsmithing"", 44], [""Woodworking"", 43]]",Bhuj,Fire,,"[[""Darksteel Ingot"", 2], [""Ebony Lumber"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Steel Ingot"", 1]]","[[""Bhuj +1"", 1], null, null]"
-Amateur,95,[],Black Gadlings,Fire,,"[[""Darksteel Sheet"", 1], [""Kunwu Sheet"", 1], [""Tiger Gloves"", 1]]","[[""Onyx Gadlings"", 1], null, null]"
-Amateur,95,"[[""Goldsmithing"", 26]]",Cursed Celata,Fire,,"[[""Adaman Chain"", 1], [""Adaman Sheet"", 1], [""Brass Sheet"", 1], [""Copper Ingot"", 1], [""Sheep Leather"", 1]]","[[""Cursed Celata -1"", 1], null, null]"
-Amateur,95,"[[""Goldsmithing"", 52], [""Clothcraft"", 41]]",Hachiman Sune-Ate,Fire,,"[[""Adaman Ingot"", 1], [""Darksteel Sheet"", 2], [""Gold Ingot"", 1], [""Mercury"", 1], [""Rainbow Thread"", 1], [""Tiger Leather"", 1], [""Velvet Cloth"", 1]]","[[""Hachiman Sune-Ate +1"", 1], null, null]"
-Amateur,95,"[[""Woodworking"", 41]]",Adaman Kilij,Fire,,"[[""Adaman Ingot"", 2], [""Ebony Lumber"", 1], [""Aquamarine"", 1], [""Deathstone"", 1], [""Marid Leather"", 1], [""Scintillant Ingot"", 2]]","[[""Adaman Kilij +1"", 1], null, null]"
-Amateur,95,"[[""Goldsmithing"", 40]]",Ebon Armet,Fire,,"[[""Drk. Adm. Sheet"", 2], [""Scintillant Ingot"", 2], [""Iridium Ingot"", 1]]","[null, null, null]"
-Amateur,95,[],Bihkah Sword,Fire,,"[[""Peiste Leather"", 1], [""Midrium Ingot"", 2]]","[[""Bihkah Sword +1"", 1], null, null]"
-Amateur,95,[],Butznar Shield,Fire,,"[[""Darksteel Sheet"", 1], [""Urunday Lumber"", 1], [""Midrium Sheet"", 2]]","[[""Butznar Shield +1"", 1], null, null]"
-Amateur,95,[],Titanium Sheet,Fire,,"[[""Titanium Ingot"", 1]]","[null, null, null]"
-Amateur,95,[],Titanium Sheet,Fire,Sheeting,"[[""Titanium Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,95,[],Bewitched Hauberk,Earth,,"[[""Cursed Hauberk -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Hauberk"", 1], null, null]"
-Amateur,95,[],Vexed Domaru,Fire,,"[[""Hexed Domaru -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Domaru"", 1], null, null]"
-Amateur,96,"[[""Goldsmithing"", 55]]",Black Sallet,Fire,,"[[""Copper Ingot"", 1], [""Darksteel Sheet"", 1], [""Kunwu Sheet"", 1], [""Ocl. Ingot"", 1], [""Sheep Leather"", 1]]","[[""Onyx Sallet"", 1], null, null]"
-Amateur,96,"[[""Clothcraft"", 48], [""Goldsmithing"", 30]]",Cursed Hauberk,Earth,,"[[""Adaman Chain"", 1], [""Adaman Sheet"", 1], [""Brass Ingot"", 1], [""Gold Thread"", 1], [""Hauberk"", 1], [""Rainbow Cloth"", 1], [""Sheep Leather"", 1], [""Southern Pearl"", 1]]","[[""Cursed Hauberk -1"", 1], null, null]"
-Amateur,96,"[[""Leathercraft"", 38]]",Hachiman Domaru,Fire,,"[[""Adaman Sheet"", 1], [""Darksteel Scales"", 2], [""Darksteel Chain"", 2], [""Gold Thread"", 1], [""Tiger Leather"", 1], [""Viridian Urushi"", 1]]","[[""Hachiman Domaru +1"", 1], null, null]"
-Amateur,96,[],Januwiyah,Earth,,"[[""Januwiyah -1"", 1], [""Troll Bronze Sheet"", 2]]","[[""Januwiyah +1"", 1], null, null]"
-Amateur,96,[],Scepter,Fire,,"[[""Adaman Ingot"", 2], [""Darksteel Ingot"", 1], [""Gold Ingot"", 1], [""Mercury"", 1]]","[[""Scepter +1"", 1], null, null]"
-Amateur,97,"[[""Leathercraft"", 48]]",Nagan,Fire,,"[[""Adaman Ingot"", 6], [""Mahogany Lumber"", 1], [""Gold Ingot"", 1], [""Wyvern Skin"", 1]]","[[""Nagan +1"", 1], null, null]"
-Amateur,96,[],Uruz Blade,Fire,,"[[""Lizard Skin"", 1], [""Midrium Ingot"", 4], [""Urunday Lumber"", 1], [""Twitherym Scale"", 1]]","[[""Uruz Blade +1"", 1], null, null]"
-Amateur,96,[],Nohkux Axe,Fire,,"[[""Midrium Ingot"", 2], [""Rhodium Ingot"", 1], [""Urunday Lumber"", 1]]","[[""Nohkux Axe +1"", 1], null, null]"
-Amateur,96,[],Midrium Sheet,Fire,,"[[""Midrium Ingot"", 1]]","[null, null, null]"
-Amateur,96,[],Midrium Sheet,Fire,Sheeting,"[[""Midrium Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,96,[],Enju,Fire,,"[[""Tama-Hagane"", 1], [""Ancient Lumber"", 1], [""Cotton Thread"", 1], [""Raptor Skin"", 1], [""Midrium Ingot"", 1], [""Mantid Carapace"", 1]]","[[""Enju +1"", 1], null, null]"
-Amateur,96,[],Tomonari,Fire,,"[[""Tama-Hagane"", 1], [""Ancient Lumber"", 1], [""Manta Leather"", 1], [""Scintillant Ingot"", 1], [""Wamoura Silk"", 1], [""Midrium Ingot"", 2], [""Mantid Carapace"", 1]]","[[""Tomonari +1"", 1], null, null]"
-Amateur,96,"[[""Woodworking"", 60]]",Aalak' Axe,Fire,,"[[""Darksteel Ingot"", 2], [""Midrium Ingot"", 1], [""Urunday Lumber"", 1]]","[[""Aalak' Axe +1"", 1], null, null]"
-Amateur,97,"[[""Goldsmithing"", 58]]",Adaman Cuisses,Fire,,"[[""Adaman Sheet"", 1], [""Darksteel Sheet"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Tiger Leather"", 1]]","[[""Gem Cuisses"", 1], null, null]"
-Amateur,97,[],Relic Steel,Fire,,"[[""Relic Iron"", 2]]","[null, null, null]"
-Amateur,97,"[[""Goldsmithing"", 59], [""Leathercraft"", 39]]",Plastron,Fire,,"[[""Darksteel Sheet"", 2], [""Darksteel Chain"", 1], [""Orichalcum Ingot"", 1], [""Tiger Leather"", 2], [""Kunwu Iron"", 1], [""Kunwu Sheet"", 1]]","[[""Plastron +1"", 1], null, null]"
-Amateur,97,[],Pealing Anelace,Fire,,"[[""Luminous Core"", 1], [""Anelace"", 1]]","[null, null, null]"
-Amateur,97,"[[""Goldsmithing"", 60], [""Leathercraft"", 30]]",Ebon Hose,Fire,,"[[""Drk. Adm. Sheet"", 2], [""Ram Leather"", 2], [""Iridium Ingot"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
-Amateur,97,[],Bandeiras Gun,Fire,,"[[""Brass Ingot"", 1], [""Walnut Lumber"", 1], [""Midrium Ingot"", 1], [""Rhodium Ingot"", 1]]","[[""Bandeiras Gun +1"", 1], null, null]"
-Amateur,97,[],Hatzoaar Sword,Fire,,"[[""Peiste Leather"", 1], [""Midrium Ingot"", 4], [""Urunday Lumber"", 1]]","[[""Hatzoaar Sword +1"", 1], null, null]"
-Amateur,97,[],Damascus Bolt Heads,Wind,,"[[""Damascus Ingot"", 1]]","[[""Damascus Bolt Heads"", 8], [""Damascus Bolt Heads"", 10], [""Damascus Bolt Heads"", 12]]"
-Amateur,97,[],Gefechtdiechlings,Fire,,"[[""Buffalo Leather"", 1], [""Cerberus Leather"", 1], [""Largantua's Shard"", 1], [""Jester Malatrix's Shard"", 1]]","[[""Wildheitdiechlings"", 1], null, null]"
-Amateur,98,[],Buzdygan,Fire,,"[[""Adaman Ingot"", 3], [""Gold Ingot"", 1], [""Mercury"", 1]]","[[""Buzdygan +1"", 1], null, null]"
-Amateur,98,[],Manoples,Fire,,"[[""Adaman Ingot"", 2], [""Darksteel Sheet"", 1], [""Carbon Fiber"", 1], [""Scintillant Ingot"", 1]]","[[""Manoples +1"", 1], null, null]"
-Amateur,98,"[[""Goldsmithing"", 60]]",Adaman Barbuta,Fire,,"[[""Adaman Sheet"", 1], [""Darksteel Sheet"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Sheep Leather"", 1], [""Copper Ingot"", 1]]","[[""Gem Barbuta"", 1], null, null]"
-Amateur,98,[],Kaskara,Fire,,"[[""Adaman Ingot"", 3], [""Bugard Leather"", 1]]","[[""Kaskara +1"", 1], null, null]"
-Amateur,98,[],Cursed Cuishes,Fire,,"[[""Orichalcum Sheet"", 1], [""Drk. Adm. Sheet"", 1], [""Marid Leather"", 1], [""Scintillant Ingot"", 1], [""Rubber Chausses"", 1]]","[[""Cursed Cuishes -1"", 1], null, null]"
-Amateur,98,[],Iga Shuriken,Wind,,"[[""Tama-Hagane"", 1], [""Gold Ingot"", 1], [""Palladian Brass Sheet"", 1], [""Mercury"", 1]]","[[""Iga Shuriken"", 66], [""Iga Shuriken"", 99], [""Iga Shuriken"", 99]]"
-Amateur,98,[],Thokcha Ingot,Fire,,"[[""Thokcha Ore"", 4]]","[null, null, null]"
-Amateur,98,[],Aak'ab Scythe,Fire,,"[[""Darksteel Ingot"", 2], [""Mohbwa Cloth"", 1], [""Rhodium Ingot"", 2], [""Urunday Lumber"", 1], [""Umbril Ooze"", 1]]","[[""Aak'ab Scythe +1"", 1], null, null]"
-Amateur,98,[],Gefechtschaller,Fire,,"[[""Orichalcum Ingot"", 1], [""Mercury"", 1], [""Cerberus Leather"", 1], [""Scintillant Ingot"", 1], [""Umbril Ooze"", 1], [""Largantua's Shard"", 1], [""Jester Malatrix's Shard"", 1]]","[[""Wildheitschaller"", 1], null, null]"
-Amateur,98,[],Dashing Subligar,Light,,"[[""Stinky Subligar"", 1]]","[null, null, null]"
-Amateur,99,"[[""Goldsmithing"", 52], [""Woodworking"", 33]]",Tabarzin,Fire,,"[[""Adaman Ingot"", 2], [""Gold Ingot"", 1], [""Darksteel Ingot"", 1], [""Mahogany Lumber"", 1], [""Mercury"", 1]]","[[""Tabarzin +1"", 1], null, null]"
-Amateur,99,[],Wootz Ingot,Fire,,"[[""Wootz Ore"", 1], [""Rosewood Lumber"", 1], [""Steel Ingot"", 1]]","[null, null, null]"
-Amateur,99,"[[""Goldsmithing"", 51], [""Woodworking"", 48]]",Toporok,Fire,,"[[""Adaman Ingot"", 3], [""Ebony Lumber"", 1], [""Gold Ingot"", 1], [""Painite"", 2], [""Mercury"", 1]]","[[""Toporok +1"", 1], null, null]"
-Amateur,99,[],Imperial Wootz Ingot,Fire,,"[[""Iron Ore"", 1], [""Khroma Ore"", 2], [""Wootz Ore"", 1]]","[null, null, null]"
-Amateur,99,"[[""Goldsmithing"", 60]]",Cursed Helm,Fire,,"[[""Copper Ingot"", 1], [""Orichalcum Sheet"", 1], [""Karakul Leather"", 1], [""Drk. Adm. Sheet"", 1], [""Scintillant Ingot"", 1], [""Rubber Cap"", 1]]","[[""Cursed Helm -1"", 1], null, null]"
-Amateur,99,"[[""Goldsmithing"", 30]]",Bronze Rose,Fire,,"[[""Imperial Wootz Ingot"", 1], [""Drk. Adm. Sheet"", 1], [""Troll Bronze Sheet"", 1], [""Aht Urhgan Brass Ingot"", 1]]","[null, null, null]"
-Amateur,100,"[[""Goldsmithing"", 59]]",Adaman Sabatons,Fire,,"[[""Darksteel Sheet"", 2], [""Adaman Sheet"", 1], [""Gold Ingot"", 1], [""Tiger Leather"", 2], [""Mercury"", 1]]","[[""Gem Sabatons"", 1], null, null]"
-Amateur,100,"[[""Leathercraft"", 51], [""Woodworking"", 44]]",Butachi,Fire,,"[[""Adaman Ingot"", 2], [""Ancient Lumber"", 1], [""Brass Ingot"", 1], [""Cotton Thread"", 1], [""Darksteel Ingot"", 1], [""Manta Leather"", 1], [""Tama-Hagane"", 1]]","[[""Butachi +1"", 1], null, null]"
-Amateur,100,"[[""Woodworking"", 51], [""Goldsmithing"", 29]]",Culverin,Fire,,"[[""Adaman Ingot"", 1], [""Brass Ingot"", 1], [""Darksteel Ingot"", 2], [""Mahogany Lumber"", 1]]","[[""Culverin +1"", 1], null, null]"
-Amateur,100,[],Pealing Nagan,Fire,,"[[""Luminous Core"", 1], [""Nagan"", 1]]","[null, null, null]"
-Amateur,100,"[[""Goldsmithing"", 60]]",Mythril Bell,Fire,,"[[""Mythril Ingot"", 4], [""Tin Ingot"", 1], [""Manticore Hair"", 1], [""Molybdenum Ingot"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
-Amateur,100,[],Gorkhali Kukri,Fire,,"[[""Ancient Lumber"", 1], [""Thokcha Ingot"", 1], [""Griffon Leather"", 1]]","[[""Mahakali's Kukri"", 1], null, null]"
-Amateur,100,"[[""Goldsmithing"", 50]]",Etourdissante,Fire,,"[[""Chestnut Lumber"", 1], [""Palladian Brass Ingot"", 1], [""Durium Ingot"", 4], [""Buffalo Leather"", 1], [""Paralyze Potion"", 1]]","[[""Etourdissante +1"", 1], null, null]"
-Amateur,100,[],Aisa,Fire,,"[[""Copper Ingot"", 1], [""Tama-Hagane"", 1], [""Elm Lumber"", 1], [""Thokcha Ingot"", 1], [""Behemoth Leather"", 1], [""Khimaira Mane"", 1]]","[[""Aisa +1"", 1], null, null]"
-Amateur,100,"[[""Goldsmithing"", 60]]",Ebon Breastplate,Fire,,"[[""Dark Adaman Sheet"", 2], [""Scintillant Ingot"", 2], [""Orichalcum Sheet"", 2], [""Iridium Ingot"", 1]]","[null, null, null]"
-Amateur,100,[],Thurisaz Blade,Fire,,"[[""Lizard Skin"", 1], [""Rhodium Ingot"", 4], [""Urunday Lumber"", 1], [""Twitherym Scale"", 1]]","[[""Thurisaz Blade +1"", 1], null, null]"
-Amateur,100,[],Titanium Ingot,Fire,,"[[""Titanium Ore"", 4]]","[null, null, null]"
-Amateur,100,[],Roppo Shuriken,Wind,,"[[""Tama-Hagane"", 1], [""Mercury"", 1], [""Titanium Sheet"", 1], [""Expert (101-110)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Roppo Shuriken"", 66], [""Roppo Shuriken"", 99], [""Roppo Shuriken +1"", 99]]"
-Amateur,101,"[[""Goldsmithing"", 60]]",Cursed Sabatons,Fire,,"[[""Orichalcum Sheet"", 1], [""Dark Adaman Sheet"", 2], [""Marid Leather"", 2], [""Scintillant Ingot"", 1], [""Rubber Soles"", 1]]","[[""Cursed Sabatons -1"", 1], null, null]"
-Amateur,101,"[[""Goldsmithing"", 60]]",Winged Plaque,Fire,,"[[""Steel Sheet"", 2], [""Blessed Mythril Sheet"", 2], [""Orichalcum Sheet"", 1], [""Platinum Sheet"", 1], [""Sapphire"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
-Amateur,101,"[[""Bonecraft"", 60]]",Apaisante,Fire,,"[[""Buffalo Horn"", 1], [""Thokcha Ingot"", 2]]","[[""Apaisante +1"", 1], null, null]"
-Amateur,101,[],Firnaxe,Fire,,"[[""Darksteel Ingot"", 1], [""Thokcha Ingot"", 1], [""Heavy Darksteel Axe"", 1]]","[[""Firnaxe +1"", 1], null, null]"
-Amateur,101,[],Bismuth Ingot,Fire,,"[[""Tin Ore"", 1], [""Zinc Ore"", 1], [""Bismuth Ore"", 2]]","[null, null, null]"
-Amateur,101,[],Shabti Cuisses,Fire,,"[[""Gold Ingot"", 1], [""Ram Leather"", 1], [""Bismuth Sheet"", 2]]","[[""Shabti Cuisses +1"", 1], null, null]"
-Amateur,101,[],Gefechtschuhs,Fire,,"[[""Orichalcum Ingot"", 1], [""Mercury"", 1], [""Buffalo Leather"", 1], [""Cerberus Leather"", 1], [""Largantua's Shard"", 1], [""Jester Malatrix's Shard"", 1]]","[[""Wildheitschuhs"", 1], null, null]"
-Amateur,102,"[[""Goldsmithing"", 60]]",Adaman Gauntlets,Fire,,"[[""Darksteel Sheet"", 1], [""Adaman Sheet"", 1], [""Gold Ingot"", 1], [""Leather Gloves"", 2], [""Mercury"", 1]]","[[""Gem Gauntlets"", 1], null, null]"
-Amateur,102,"[[""Goldsmithing"", 37]]",Adaman Kris,Fire,,"[[""Adaman Ingot"", 1], [""Deathstone"", 1], [""Gold Ingot"", 1]]","[[""Adaman Kris +1"", 1], null, null]"
-Amateur,102,"[[""Leathercraft"", 55], [""Woodworking"", 24]]",Sasanuki,Fire,,"[[""Tama-Hagane"", 1], [""Ancient Lumber"", 1], [""Thokcha Ingot"", 2], [""Gold Ingot"", 1], [""Rainbow Thread"", 1], [""Scintillant Ingot"", 1], [""Smilodon Leather"", 1]]","[[""Sasanuki +1"", 1], null, null]"
-Amateur,102,[],Titanium Bolt Heads,Wind,,"[[""Titanium Ingot"", 1]]","[[""Titanium Bolt Heads"", 8], [""Titanium Bolt Heads"", 10], [""Titanium Bolt Heads"", 12]]"
-Amateur,102,[],Bismuth Sheet,Fire,,"[[""Bismuth Ingot"", 1]]","[null, null, null]"
-Amateur,102,[],Bismuth Sheet,Fire,Sheeting,"[[""Bismuth Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
-Amateur,102,[],Ra'Kaznar Ingot,Fire,,"[[""Darksteel Ore"", 3], [""Ra'Kaznar Ore"", 1]]","[null, null, null]"
-Amateur,102,[],Gefechthentzes,Fire,,"[[""Orichalcum Ingot"", 1], [""Mercury"", 1], [""Largantua's Shard"", 1], [""Jester Malatrix's Shard"", 1], [""Leather Gloves"", 2]]","[[""Wildheithentzes"", 1], null, null]"
-Amateur,102,[],Arasy Knife,Fire,,"[[""Bloodwood Lumber"", 1], [""Bismuth Ingot"", 1]]","[[""Arasy Knife +1"", 1], null, null]"
-Amateur,102,[],Arasy Sainti,Fire,,"[[""Adaman Ingot"", 1], [""Ebony Lumber"", 1], [""Bismuth Ingot"", 1]]","[[""Arasy Sainti +1"", 1], null, null]"
-Amateur,102,[],Arasy Sword,Fire,,"[[""Adaman Ingot"", 1], [""Wyvern Skin"", 1], [""Electrum Ingot"", 1], [""Bismuth Ingot"", 1]]","[[""Arasy Sword +1"", 1], null, null]"
-Amateur,102,[],Arasy Claymore,Fire,,"[[""Adaman Ingot"", 2], [""Ebony Lumber"", 1], [""Wyvern Skin"", 1], [""Bismuth Ingot"", 1]]","[[""Arasy Claymore +1"", 1], null, null]"
-Amateur,102,[],Arasy Tabar,Fire,,"[[""Adaman Ingot"", 1], [""Ebony Lumber"", 1], [""Electrum Ingot"", 1], [""Bismuth Ingot"", 1]]","[[""Arasy Tabar +1"", 1], null, null]"
-Amateur,102,[],Arasy Axe,Fire,,"[[""Adaman Ingot"", 1], [""Ebony Lumber"", 1], [""Deathstone"", 1], [""Electrum Ingot"", 1], [""Bismuth Ingot"", 1]]","[[""Arasy Axe +1"", 1], null, null]"
-Amateur,102,[],Yoshikiri,Fire,,"[[""Tama-Hagane"", 1], [""Ebony Lumber"", 1], [""Rainbow Thread"", 1], [""Wyvern Skin"", 1], [""Bismuth Ingot"", 1]]","[[""Yoshikiri +1"", 1], null, null]"
-Amateur,102,[],Ashijiro No Tachi,Fire,,"[[""Adaman Ingot"", 1], [""Tama-Hagane"", 1], [""Ebony Lumber"", 1], [""Rainbow Thread"", 1], [""Wyvern Skin"", 1], [""Bismuth Ingot"", 1]]","[[""Ashijiro No Tachi +1"", 1], null, null]"
-Amateur,102,[],Arasy Rod,Fire,,"[[""Adaman Ingot"", 1], [""Electrum Ingot"", 1], [""Bismuth Ingot"", 1]]","[[""Arasy Rod +1"", 1], null, null]"
-Amateur,102,[],Arasy Gun,Fire,,"[[""Darksteel Ingot"", 1], [""Adaman Ingot"", 1], [""Ebony Lumber"", 1], [""Bismuth Ingot"", 1]]","[[""Arasy Gun +1"", 1], null, null]"
-Amateur,103,"[[""Woodworking"", 45]]",Breidox,Fire,,"[[""Thokcha Ingot"", 2], [""Dark Adaman Ingot"", 1], [""Rosewood Lumber"", 1]]","[[""Breidox +1"", 1], null, null]"
-Amateur,103,"[[""Goldsmithing"", 60]]",Cursed Gauntlets,Fire,,"[[""Orichalcum Sheet"", 1], [""Dark Adaman Sheet"", 1], [""Leather Gloves"", 2], [""Scintillant Ingot"", 1], [""Rubber Gloves"", 1]]","[[""Cursed Gauntlets -1"", 1], null, null]"
-Amateur,103,"[[""Goldsmithing"", 60]]",Adaman Cuirass,Fire,,"[[""Darksteel Sheet"", 2], [""Adaman Sheet"", 2], [""Gold Ingot"", 1], [""Tiger Leather"", 2], [""Mercury"", 1]]","[[""Gem Cuirass"", 1], null, null]"
-Amateur,103,[],Damascus Ingot,Fire,,"[[""Relic Iron"", 1], [""Wootz Ore"", 1], [""Vanadium Ore"", 2]]","[null, null, null]"
-Amateur,103,[],Bismuth Bolt Heads,Wind,,"[[""Bismuth Ingot"", 1]]","[[""Bismuth Bolt Heads"", 8], [""Bismuth Bolt Heads"", 10], [""Bismuth Bolt Heads"", 12]]"
-Amateur,103,[],Shabti Gauntlets,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Bismuth Sheet"", 2], [""Leather Gloves"", 2]]","[[""Shabti Gauntlets +1"", 1], null, null]"
-Amateur,103,[],Gefechtbrust,Fire,,"[[""Orichalcum Ingot"", 1], [""Mercury"", 1], [""Cerberus Leather"", 1], [""Largantua's Shard"", 2], [""Jester Malatrix's Shard"", 2]]","[[""Wildheitbrust"", 1], null, null]"
-Amateur,104,"[[""Goldsmithing"", 60], [""Leathercraft"", 60]]",Cursed Breastplate,Fire,,"[[""Orichalcum Sheet"", 2], [""Dark Adaman Sheet"", 2], [""Cerberus Leather"", 2], [""Scintillant Ingot"", 1], [""Rubber Harness"", 1]]","[[""Cursed Breastplate -1"", 1], null, null]"
-Amateur,104,"[[""Woodworking"", 60]]",Yhatdhara,Fire,,"[[""Divine Lumber"", 1], [""Thokcha Ingot"", 3], [""Linen Cloth"", 1]]","[[""Yhatdhara +1"", 1], null, null]"
-Amateur,104,"[[""Goldsmithing"", 51]]",Bahadur,Fire,,"[[""Adaman Ingot"", 4], [""Gold Ingot"", 3], [""Jacaranda Lumber"", 1]]","[[""Bahadur +1"", 1], null, null]"
-Amateur,104,"[[""Goldsmithing"", 58], [""Woodworking"", 30]]",Opprimo,Fire,,"[[""Brass Ingot"", 1], [""Walnut Lumber"", 1], [""Thokcha Ingot"", 2], [""Palladian Brass Ingot"", 1]]","[[""Opprimo +1"", 1], null, null]"
-Amateur,104,[],Voay Staff,Fire,,"[[""Guatambu Lumber"", 1], [""Snowsteel Ore"", 1], [""Voay Staff -1"", 1]]","[[""Voay Staff +1"", 1], null, null]"
-Amateur,104,[],Ra'Kaznar Bolt Heads,Wind,,"[[""Ra'Kaznar Ingot"", 1]]","[[""Ra'Kaznar Bolt Heads"", 8], [""Ra'Kaznar Bolt Heads"", 10], [""Ra'Kaznar Bolt Heads"", 12]]"
-Amateur,105,"[[""Goldsmithing"", 59], [""Woodworking"", 52]]",Wootz Amood,Fire,,"[[""Brass Ingot"", 1], [""Steel Ingot"", 2], [""Imperial Wootz Ingot"", 2], [""Scintillant Ingot"", 2], [""Jacaranda Lumber"", 1]]","[[""Wootz Amood +1"", 1], null, null]"
-Amateur,105,[],Voay Sword,Fire,,"[[""Guatambu Lumber"", 1], [""Titanium Ore"", 1], [""Voay Sword -1"", 1]]","[[""Voay Sword +1"", 1], null, null]"
-Amateur,105,[],Beryllium Ingot,Fire,,"[[""Iron Ore"", 3], [""Beryllium Ore"", 1]]","[null, null, null]"
-Amateur,105,[],Blurred Axe,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Tabarzin"", 1]]","[[""Blurred Axe +1"", 1], null, null]"
-Amateur,105,[],Blurred Bow,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Amazon Bow"", 1]]","[[""Blurred Bow +1"", 1], null, null]"
-Amateur,105,[],Blurred Claws,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Dragon Claws"", 1]]","[[""Blurred Claws +1"", 1], null, null]"
-Amateur,105,[],Blurred Claymore,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Nagan"", 1]]","[[""Blurred Claymore +1"", 1], null, null]"
-Amateur,105,[],Blurred Cleaver,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Toporok"", 1]]","[[""Blurred Cleaver +1"", 1], null, null]"
-Amateur,105,[],Blurred Crossbow,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Repeating Crossbow"", 1]]","[[""Blurred Crossbow +1"", 1], null, null]"
-Amateur,105,[],Blurred Harp,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Cythara Anglica"", 1]]","[[""Blurred Harp +1"", 1], null, null]"
-Amateur,105,[],Blurred Knife,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Misericorde"", 1]]","[[""Blurred Knife +1"", 1], null, null]"
-Amateur,105,[],Blurred Lance,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Dabo"", 1]]","[[""Blurred Lance +1"", 1], null, null]"
-Amateur,105,[],Blurred Rod,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Scepter"", 1]]","[[""Blurred Rod +1"", 1], null, null]"
-Amateur,105,[],Blurred Scythe,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Death Scythe"", 1]]","[[""Blurred Scythe +1"", 1], null, null]"
-Amateur,105,[],Blurred Shield,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Koenig Shield"", 1]]","[[""Blurred Shield +1"", 1], null, null]"
-Amateur,105,[],Blurred Staff,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Mythic Pole"", 1]]","[[""Blurred Staff +1"", 1], null, null]"
-Amateur,105,[],Blurred Sword,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Adaman Kilij"", 1]]","[[""Blurred Sword +1"", 1], null, null]"
-Amateur,105,[],Kujaku,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Hirenjaku"", 1]]","[[""Kujaku +1"", 1], null, null]"
-Amateur,105,[],Kunitsuna,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Butachi"", 1]]","[[""Kunitsuna +1"", 1], null, null]"
-Amateur,105,[],Niobium Ingot,Fire,,"[[""Niobium Ore"", 4]]","[null, null, null]"
-Amateur,106,"[[""Leathercraft"", 60], [""Goldsmithing"", 30]]",Hexed Sune-Ate,Fire,,"[[""Scarletite Ingot"", 1], [""Gold Sheet"", 1], [""Taffeta Cloth"", 1], [""Amphiptere Leather"", 1], [""Sealord Leather"", 1]]","[[""Hexed Sune-Ate -1"", 1], null, null]"
-Amateur,106,[],Shabti Armet,Fire,,"[[""Copper Ingot"", 1], [""Gold Ingot"", 1], [""Sheep Leather"", 1], [""Mercury"", 1], [""Bismuth Sheet"", 2]]","[[""Shabti Armet +1"", 1], null, null]"
-Amateur,106,[],Beryllium Kris,Fire,,"[[""Black Pearl"", 1], [""Beryllium Ingot"", 1], [""Ra'Kaznar Ingot"", 1]]","[[""Beryllium Kris +1"", 1], null, null]"
-Amateur,106,[],Beryllium Mace,Fire,,"[[""Beryllium Ingot"", 3]]","[[""Beryllium Mace +1"", 1], null, null]"
-Amateur,106,[],Beryllium Pick,Fire,,"[[""Urunday Lumber"", 1], [""Beryllium Ingot"", 1]]","[[""Beryllium Pick +1"", 1], null, null]"
-Amateur,106,[],Beryllium Sword,Fire,,"[[""Urunday Lumber"", 1], [""Raaz Leather"", 1], [""Beryllium Ingot"", 3]]","[[""Beryllium Sword +1"", 1], null, null]"
-Amateur,106,[],Beryllium Tachi,Fire,,"[[""Tama-Hagane"", 1], [""Urunday Lumber"", 1], [""Akaso Thread"", 1], [""Raaz Leather"", 1], [""Beryllium Ingot"", 2], [""Ra'Kaznar Ingot"", 1]]","[[""Beryllium Tachi +1"", 1], null, null]"
-Amateur,106,[],Beryllium Arrowheads,Wind,,"[[""Steel Ingot"", 1], [""Beryllium Ingot"", 1]]","[[""Beryllium Arrowheads"", 8], [""Beryllium Arrowheads"", 10], [""Beryllium Arrowheads"", 12]]"
-Amateur,106,[],Beryllium Bolt Heads,Wind,,"[[""Beryllium Ingot"", 1]]","[[""Beryllium Bolt Heads"", 8], [""Beryllium Bolt Heads"", 10], [""Beryllium Bolt Heads"", 12]]"
-Amateur,107,"[[""Leathercraft"", 60], [""Clothcraft"", 30]]",Hexed Somen,Fire,,"[[""Scarletite Ingot"", 1], [""Gold Ingot"", 1], [""Taffeta Cloth"", 1], [""Urushi"", 1], [""Sealord Leather"", 1]]","[[""Hexed Somen -1"", 1], null, null]"
-Amateur,107,[],Shabti Sabatons,Fire,,"[[""Gold Ingot"", 1], [""Ram Leather"", 2], [""Mercury"", 1], [""Bismuth Sheet"", 3]]","[[""Shabti Sabatons +1"", 1], null, null]"
-Amateur,107,[],Dakatsu-No-Nodowa,Fire,,"[[""Silk Thread"", 1], [""Beryllium Ingot"", 1], [""Wyrm Blood"", 1]]","[[""Dakatsu-No-Nodowa +1"", 1], null, null]"
-Amateur,107,[],Happo Shuriken,Wind,,"[[""Tama-Hagane"", 1], [""Mercury"", 1], [""Waktza Rostrum"", 1], [""Bismuth Sheet"", 1]]","[[""Happo Shuriken"", 66], [""Happo Shuriken"", 99], [""Happo Shuriken +1"", 99]]"
-Amateur,107,[],Sasuke Shuriken,Wind,,"[[""Tama-Hagane"", 1], [""Mercury"", 1], [""Bismuth Sheet"", 1]]","[[""Sasuke Shuriken"", 66], [""Sasuke Shuriken"", 99], [""Sasuke Shuriken +1"", 99]]"
-Amateur,109,[],Shabti Cuirass,Fire,,"[[""Gold Ingot"", 1], [""Ram Leather"", 2], [""Mercury"", 1], [""Bismuth Sheet"", 4]]","[[""Shabti Cuirass +1"", 1], null, null]"
-Amateur,110,"[[""Leathercraft"", 60]]",Hexed Domaru,Fire,,"[[""Scarletite Ingot"", 2], [""Gold Ingot"", 1], [""Taffeta Cloth"", 1], [""Urushi"", 1], [""Sealord Leather"", 1]]","[[""Hexed Domaru -1"", 1], null, null]"
-Amateur,110,[],Sukezane,Fire,,"[[""Brass Ingot"", 1], [""Adaman Ingot"", 3], [""Cotton Thread"", 1], [""Manta Leather"", 1], [""Kunwu Iron"", 1], [""Yggdreant Bole"", 1]]","[[""Sukezane +1"", 1], null, null]"
-Amateur,110,"[[""Alchemy"", 55]]",Samurai's Nodowa,Light,,"[[""Yggdreant Root"", 1], [""Dark Matter"", 1], [""Azure Leaf"", 1], [""Moldy Nodowa"", 1]]","[[""Samurai's Nodowa +1"", 1], [""Samurai's Nodowa +2"", 1], null]"
-Amateur,110,"[[""Alchemy"", 55]]",Ninja Nodowa,Light,,"[[""Yggdreant Root"", 1], [""Dark Matter"", 1], [""Azure Leaf"", 1], [""Moldy Nodowa"", 1]]","[[""Ninja Nodowa +1"", 1], [""Ninja Nodowa +2"", 1], null]"
-Amateur,110,"[[""Alchemy"", 55]]",Monk's Nodowa,Light,,"[[""Yggdreant Root"", 1], [""Dark Matter"", 1], [""Azure Leaf"", 1], [""Moldy Nodowa"", 1], [""Authority (111-120)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Monk's Nodowa +1"", 1], [""Monk's Nodowa +2"", 1], null]"
-Amateur,111,"[[""Goldsmithing"", 70]]",Bewitched Sollerets,Earth,,"[[""Cursed Sollerets"", 1], [""Jester Malatrix's Shard"", 1], [""Tartarian Chain"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Sollerets"", 1], null, null]"
-Amateur,111,"[[""Clothcraft"", 70]]",Vexed Sune-Ate,Fire,,"[[""Beryllium Ingot"", 1], [""Muut's Vestment"", 1], [""Eschite Ore"", 1], [""Hexed Sune-Ate"", 1]]","[[""Jinxed Sune-Ate"", 1], null, null]"
-Amateur,111,[],Scout's Bolt,Light,Blacksmith's aurum tome,"[[""Dark Matter"", 1], [""Moldy Bolt"", 1], [""Relic Adaman"", 1]]","[[""Scout's Bolt"", 99], [""Scout's Bolt"", 99], [""Scout's Bolt"", 99]]"
-Amateur,111,[],Assassin's Knife,Light,Blacksmith's aurum tome,"[[""Goldsmithing - (Information Needed)"", 1], [""Macuil Horn"", 1], [""Dark Matter"", 1], [""Ruthenium Ore"", 1], [""Moldy Dagger"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Plunderer's Knife"", 1], [""Gandring"", 1], null]"
-Amateur,111,[],Bard's Knife,Light,Blacksmith's aurum tome,"[[""Goldsmithing - (Information Needed)"", 1], [""Macuil Horn"", 1], [""Dark Matter"", 1], [""Ruthenium Ore"", 1], [""Moldy Dagger"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Bihu Knife"", 1], [""Barfawc"", 1], null]"
-Amateur,111,[],Commodore's Knife,Light,Blacksmith's aurum tome,"[[""Goldsmithing - (Information Needed)"", 1], [""Macuil Horn"", 1], [""Dark Matter"", 1], [""Ruthenium Ore"", 1], [""Moldy Dagger"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Lanun Knife"", 1], [""Rostam"", 1], null]"
-Amateur,111,[],Etoile Knife,Light,Blacksmith's aurum tome,"[[""Goldsmithing - (Information Needed)"", 1], [""Macuil Horn"", 1], [""Dark Matter"", 1], [""Ruthenium Ore"", 1], [""Moldy Dagger"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Horos Knife"", 1], [""Setan Kober"", 1], null]"
-Amateur,111,[],Warrior's Chopper,Light,Blacksmith's aurum tome,"[[""Clothcraft - (Information Needed)"", 1], [""Plovid Flesh"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Great Axe"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Agoge Chopper"", 1], [""Labraunda"", 1], null]"
-Amateur,112,"[[""Goldsmithing"", 70]]",Bewitched Mufflers,Earth,,"[[""Cursed Mufflers"", 1], [""Jester Malatrix's Shard"", 1], [""Tartarian Chain"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Mufflers"", 1], null, null]"
-Amateur,113,[],Senbaak Nagan,Fire,,"[[""Damascus Ingot"", 4], [""Scarletite Ingot"", 1], [""Wyvern Skin"", 1], [""Urunday Lumber"", 1], [""Gabbrath Horn"", 1]]","[[""Senbaak Nagan +1"", 1], null, null]"
-Amateur,113,[],Razorfury,Fire,,"[[""Mythril Ingot"", 1], [""Damascus Ingot"", 2], [""Ormolu Ingot"", 1], [""Urunday Lumber"", 1], [""Rockfin Tooth"", 1]]","[[""Razorfury +1"", 1], null, null]"
-Amateur,113,[],Pamun,Fire,,"[[""Damascus Ingot"", 1], [""Ormolu Ingot"", 1], [""Habu Skin"", 1], [""Bztavian Wing"", 1]]","[[""Pamun +1"", 1], null, null]"
-Amateur,113,"[[""Leathercraft"", 70]]",Bewitched Breeches,Earth,,"[[""Cursed Breeches"", 1], [""Warblade Beak's Hide"", 1], [""Tartarian Chain"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Breeches"", 1], null, null]"
-Amateur,114,"[[""Leathercraft"", 70]]",Bewitched Celata,Fire,,"[[""Cursed Celata"", 1], [""Warblade Beak's Hide"", 1], [""Tartarian Chain"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Celata"", 1], null, null]"
-Amateur,114,"[[""Clothcraft"", 70]]",Vexed Somen,Fire,,"[[""Beryllium Ingot"", 1], [""Muut's Vestment"", 1], [""Eschite Ore"", 1], [""Hexed Somen"", 1]]","[[""Jinxed Somen"", 1], null, null]"
-Amateur,115,[],Malfeasance,Fire,,"[[""Damascus Ingot"", 2], [""Ormolu Ingot"", 1], [""Squamous Hide"", 1], [""Yggdreant Bole"", 1], [""Hades' Claw"", 1], [""Tartarian Soul"", 1]]","[[""Malfeasance +1"", 1], null, null]"
-Amateur,115,"[[""Clothcraft"", 70]]",Bewitched Hauberk,Earth,,"[[""Cursed Hauberk"", 1], [""Sif's Macrame"", 1], [""Tartarian Chain"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Hauberk"", 1], null, null]"
-Amateur,115,"[[""Clothcraft"", 70]]",Vexed Domaru,Fire,,"[[""Beryllium Ingot"", 1], [""Muut's Vestment"", 1], [""Eschite Ore"", 1], [""Hexed Domaru"", 1]]","[[""Jinxed Domaru"", 1], null, null]"
-Amateur,115,[],Dyrnwyn,Fire,,"[[""Moonbow Steel"", 1], [""Moonbow Urushi"", 1], [""Cypress Lumber"", 1], [""Balmung"", 1]]","[[""Dyrnwyn +1"", 1], null, null]"
-Amateur,115,[],Barbarity,Fire,,"[[""Moonbow Steel"", 1], [""Moonbow Leather"", 1], [""Faulpie Leather"", 1], [""Juggernaut"", 1]]","[[""Barbarity +1"", 1], null, null]"
-Amateur,115,[],Jolt Counter,Fire,,"[[""Moonbow Steel"", 1], [""Moonbow Stone"", 1], [""Ruthenium Ingot"", 1], [""Cross-Counters"", 1]]","[[""Jolt Counter +1"", 1], null, null]"
-Amateur,115,[],Moonbeam Nodowa,Earth,,"[[""Moonbow Steel"", 1], [""Moonlight Coral"", 1], [""Khoma Thread"", 1]]","[[""Moonlight Nodowa"", 1], null, null]"
-Amateur,115,[],Ea Pigaches,Fire,Blacksmith's argentum tome,"[[""Gold Sheet"", 1], [""Bztavian Stinger"", 1], [""Defiant Scarf"", 1], [""Niobium Ore"", 3]]","[[""Ea Pigaches +1"", 1], null, null]"
-Amateur,115,[],Ea Cuffs,Fire,Blacksmith's argentum tome,"[[""Gold Sheet"", 2], [""Bztavian Stinger"", 1], [""Defiant Scarf"", 1], [""Niobium Ore"", 3]]","[[""Ea Cuffs +1"", 1], null, null]"
-Amateur,115,[],Ea Hat,Fire,Blacksmith's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Bztavian Stinger"", 1], [""Defiant Scarf"", 1], [""Niobium Ore"", 3]]","[[""Ea Hat +1"", 1], null, null]"
-Amateur,115,[],Ea Slops,Fire,Blacksmith's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Bztavian Stinger"", 1], [""Defiant Scarf"", 1], [""Niobium Ore"", 1], [""Niobium Ingot"", 1]]","[[""Ea Slops +1"", 1], null, null]"
-Amateur,115,[],Ea Houppelande,Fire,Blacksmith's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Bztavian Stinger"", 1], [""Defiant Scarf"", 2], [""Niobium Ore"", 1], [""Niobium Ingot"", 1]]","[[""Ea Houppelande +1"", 1], null, null]"
-Amateur,0,[],Raetic Axe,Fire,Blacksmith's argentum tome,"[[""Main Craft: Blacksmithing - (115~120)"", 1], [""Niobium Ingot"", 1], [""Rune Axe"", 1]]","[[""Raetic Axe +1"", 1], null, null]"
-Amateur,0,[],Raetic Kris,Fire,Blacksmith's argentum tome,"[[""Main Craft: Blacksmithing - (115~120)"", 1], [""Niobium Ingot"", 1], [""Rune Kris"", 1]]","[[""Raetic Kris +1"", 1], null, null]"
-Amateur,115,[],Raetic Chopper,Fire,Blacksmith's argentum tome,"[[""Niobium Ingot"", 1], [""Rune Chopper"", 1]]","[[""Raetic Chopper +1"", 1], null, null]"
-Amateur,0,[],Raetic Rod,Fire,Blacksmith's argentum tome,"[[""Main Craft: Blacksmithing - (115~120)"", 1], [""Niobium Ingot"", 1], [""Rune Rod"", 1]]","[[""Raetic Rod +1"", 1], null, null]"
-Amateur,116,[],Kwahu Kachina Belt,Earth,,"[[""Sealord Leather"", 1], [""Ra'Kaznar Ingot"", 1], [""Macuil Plating"", 1]]","[[""K. Kachina Belt +1"", 1], null, null]"
-Amateur,118,[],Varar Ring,Fire,,"[[""Scarletite Ingot"", 1], [""Beryllium Ingot"", 1], [""Tartarian Chain"", 1]]","[[""Varar Ring +1"", 1], null, null]"
+,1,[],Bronze Ingot,Fire,,"[[""Beastcoin"", 4]]","[null, null, null]"
+,2,[],Bronze Ingot,Fire,,"[[""Copper Ore"", 3], [""Tin Ore"", 1]]","[null, null, null]"
+,2,[],Bronze Leggings,Light,,"[[""Rusty Leggings"", 1]]","[[""Bronze Leggings +1"", 1], null, null]"
+,3,[],Bronze Dagger,Fire,,"[[""Bronze Ingot"", 1], [""Copper Ingot"", 1]]","[[""Bronze Dagger +1"", 1], null, null]"
+,3,[],Bronze Ingot,Fire,,"[[""Bronze Nugget"", 6], [""Tin Ore"", 1]]","[null, null, null]"
+,4,"[[""Leathercraft"", 3]]",Bronze Cap,Earth,,"[[""Bronze Sheet"", 1], [""Sheep Leather"", 2]]","[[""Bronze Cap +1"", 1], null, null]"
+,4,[],Bronze Sheet,Fire,,"[[""Bronze Ingot"", 1]]","[null, null, null]"
+,4,[],Bronze Sheet,Fire,Sheeting,"[[""Bronze Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,5,[],Bronze Knife,Fire,,"[[""Ash Lumber"", 1], [""Bronze Ingot"", 1]]","[[""Bronze Knife +1"", 1], null, null]"
+,5,"[[""Leathercraft"", 3]]",Bronze Mittens,Earth,,"[[""Bronze Sheet"", 1], [""Sheep Leather"", 1]]","[[""Bronze Mittens +1"", 1], null, null]"
+,5,[],Bronze Subligar,Light,,"[[""Rusty Subligar"", 1]]","[[""Bronze Subligar +1"", 1], null, null]"
+,5,"[[""Woodworking"", 2]]",Sickle,Fire,,"[[""Ash Lumber"", 1], [""Bronze Ingot"", 1], [""Grass Cloth"", 1]]","[[""Sickle"", 2], [""Sickle"", 3], [""Sickle"", 4]]"
+,5,"[[""Woodworking"", 2]]",Pickaxe,Fire,,"[[""Bronze Ingot"", 1], [""Maple Lumber"", 1]]","[[""Pickaxe"", 2], [""Pickaxe"", 3], [""Pickaxe"", 4]]"
+,5,[],Bronze Knife,Fire,,"[[""Smithing Kit 5"", 1]]","[null, null, null]"
+,6,[],Bronze Sword,Fire,,"[[""Bronze Ingot"", 2], [""Sheep Leather"", 1]]","[[""Bronze Sword +1"", 1], null, null]"
+,6,"[[""Woodworking"", 2]]",Bronze Knuckles,Fire,,"[[""Ash Lumber"", 1], [""Bronze Ingot"", 1], [""Bronze Sheet"", 1]]","[[""Bronze Knuckles +1"", 1], null, null]"
+,7,"[[""Woodworking"", 2]]",Bronze Axe,Fire,,"[[""Ash Lumber"", 1], [""Bronze Ingot"", 2]]","[[""Bronze Axe +1"", 1], null, null]"
+,7,"[[""Leathercraft"", 3]]",Bronze Leggings,Earth,,"[[""Bronze Sheet"", 2], [""Sheep Leather"", 2]]","[[""Bronze Leggings +1"", 1], null, null]"
+,8,"[[""Woodworking"", 6]]",Bronze Zaghnal,Fire,,"[[""Ash Lumber"", 1], [""Bronze Ingot"", 2], [""Grass Cloth"", 1]]","[[""Bronze Zaghnal +1"", 1], null, null]"
+,8,"[[""Woodworking"", 3]]",Hatchet,Fire,,"[[""Bronze Ingot"", 2], [""Maple Lumber"", 1]]","[[""Hatchet"", 2], [""Hatchet"", 3], [""Hatchet"", 4]]"
+,8,"[[""Bonecraft"", 2]]",Xiphos,Fire,,"[[""Bronze Ingot"", 2], [""Giant Femur"", 1]]","[[""Xiphos +1"", 1], null, null]"
+,9,"[[""Leathercraft"", 3]]",Bronze Subligar,Earth,,"[[""Bronze Sheet"", 1], [""Grass Cloth"", 1], [""Sheep Leather"", 1]]","[[""Bronze Subligar +1"", 1], null, null]"
+,9,[],Faceguard,Wind,,"[[""Bronze Sheet"", 1], [""Sheep Leather"", 1]]","[[""Faceguard +1"", 1], null, null]"
+,10,[],Bronze Mace,Fire,,"[[""Bronze Ingot"", 3]]","[[""Bronze Mace +1"", 1], null, null]"
+,10,[],Bronze Scales,Wind,,"[[""Bronze Sheet"", 1]]","[null, null, null]"
+,10,[],Bronze Mace,Fire,,"[[""Smithing Kit 10"", 1]]","[null, null, null]"
+,11,"[[""Leathercraft"", 3]]",Bronze Harness,Earth,,"[[""Bronze Sheet"", 3], [""Sheep Leather"", 2]]","[[""Bronze Harness +1"", 1], null, null]"
+,11,[],Scale Finger Gauntlets,Earth,,"[[""Bronze Scales"", 2], [""Cotton Thread"", 1], [""Leather Gloves"", 1]]","[[""Solid Finger Gauntlets"", 1], null, null]"
+,12,[],Bronze Rod,Fire,,"[[""Bronze Ingot"", 2], [""Copper Ingot"", 1]]","[[""Bronze Rod +1"", 1], null, null]"
+,13,[],Scale Greaves,Earth,,"[[""Bronze Scales"", 2], [""Cotton Thread"", 1], [""leather Highboots"", 1]]","[[""Solid Greaves"", 1], null, null]"
+,14,[],Bronze Bolt Heads,Wind,,"[[""Bronze Ingot"", 1]]","[[""Bronze Bolt Heads"", 8], [""Bronze Bolt Heads"", 10], [""Bronze Bolt Heads"", 12]]"
+,14,[],Bronze Hammer,Fire,,"[[""Bronze Ingot"", 2], [""Chestnut Lumber"", 1]]","[[""Bronze Hammer +1"", 1], null, null]"
+,15,[],Dagger,Light,,"[[""Rusty Dagger"", 1]]","[[""Dagger +1"", 1], null, null]"
+,15,"[[""Leathercraft"", 5]]",Scale Cuisses,Earth,,"[[""Bronze Scales"", 2], [""Cotton Thread"", 1], [""Leather Trousers"", 1]]","[[""Solid Cuisses"", 1], null, null]"
+,15,[],Tin Ingot,Fire,,"[[""Tin Ore"", 4]]","[null, null, null]"
+,15,[],Pizza Cutter,Fire,,"[[""Iron Ingot"", 1], [""Holly Lumber"", 1]]","[[""Pizza Cutter"", 8], [""Pizza Cutter"", 10], [""Pizza Cutter"", 12]]"
+,15,[],Tin Ingot,Fire,,"[[""Smithing Kit 15"", 1]]","[null, null, null]"
+,16,"[[""Woodworking"", 4]]",Crossbow Bolt,Wind,,"[[""Ash Lumber"", 1], [""Bronze Ingot"", 1]]","[[""Crossbow Bolt"", 66], [""Crossbow Bolt"", 99], [""Crossbow Bolt"", 99]]"
+,17,[],Scale Mail,Earth,,"[[""Bronze Scales"", 4], [""Cotton Thread"", 1], [""Leather Vest"", 1], [""Sheep Leather"", 1]]","[[""Solid Mail"", 1], null, null]"
+,18,[],Aspis,Fire,,"[[""Ash Lumber"", 1], [""Bronze Sheet"", 2]]","[[""Aspis +1"", 1], null, null]"
+,19,"[[""Clothcraft"", 19]]",Bronze Bed,Fire,,"[[""Bronze Ingot"", 4], [""Cotton Cloth"", 2], [""Grass Thread"", 1], [""Saruta Cotton"", 1]]","[null, null, null]"
+,20,[],Dagger,Fire,,"[[""Bronze Ingot"", 1], [""Iron Ingot"", 1]]","[[""Dagger +1"", 1], null, null]"
+,20,[],Iron Arrowheads,Wind,,"[[""Copper Ingot"", 1], [""Iron Ingot"", 1]]","[[""Iron Arrowheads"", 8], [""Iron Arrowheads"", 10], [""Iron Arrowheads"", 12]]"
+,20,[],Iron Ingot,Fire,,"[[""Iron Ore"", 4]]","[[""Steel Ingot"", 1], null, null]"
+,20,[],Light Steel Ingot,Fire,Metal Purification,"[[""Iron Ore"", 4], [""Ice Anima"", 1], [""Light Anima"", 1], [""Lightning Anima"", 1]]","[null, null, null]"
+,20,[],Lucent Iron Ingot,Fire,Metal Purification,"[[""Iron Ore"", 4], [""Earth Anima"", 1], [""Light Anima"", 1], [""Lightning Anima"", 1]]","[null, null, null]"
+,20,[],Paktong Ingot,Fire,,"[[""Copper Ore"", 2], [""Kopparnickel Ore"", 1], [""Zinc Ore"", 1]]","[null, null, null]"
+,20,[],Iron Arrowheads,Wind,,"[[""Smithing Kit 20"", 1]]","[null, null, null]"
+,21,[],Iron Ingot,Fire,,"[[""Iron Nugget"", 6], [""Iron Ore"", 1]]","[[""Steel Ingot"", 1], null, null]"
+,21,[],Knife,Fire,,"[[""Iron Ingot"", 1], [""Elm Lumber"", 1]]","[[""Knife +1"", 1], null, null]"
+,21,"[[""Woodworking"", 6]]",Metal Knuckles,Fire,,"[[""Iron Ingot"", 1], [""Iron Sheet"", 1], [""Holly Lumber"", 1]]","[[""Metal Knuckles +1"", 1], null, null]"
+,21,"[[""Leathercraft"", 10]]",Pellet Belt,Fire,,"[[""Sheep Leather"", 1], [""Igneous Rock"", 2], [""Leather Pouch"", 1]]","[null, null, null]"
+,22,[],Iron Sheet,Fire,,"[[""Iron Ingot"", 1]]","[null, null, null]"
+,22,[],Iron Sheet,Fire,Sheeting,"[[""Iron Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,22,[],Shuriken,Wind,,"[[""Steel Ingot"", 1], [""Cotton Thread"", 1]]","[[""Shuriken"", 66], [""Shuriken"", 99], [""Shuriken"", 99]]"
+,23,[],Baghnakhs,Fire,,"[[""Iron Ingot"", 1], [""Iron Sheet"", 1]]","[[""Baghnakhs +1"", 1], null, null]"
+,23,"[[""Woodworking"", 5]]",Butterfly Axe,Fire,,"[[""Iron Ingot"", 1], [""Bronze Ingot"", 2], [""Maple Lumber"", 1]]","[[""Butterfly Axe +1"", 1], null, null]"
+,23,[],Makibishi,Wind,,"[[""Iron Scales"", 1]]","[[""Makibishi"", 66], [""Makibishi"", 99], [""Makibishi"", 99]]"
+,24,[],Debahocho,Fire,,"[[""Iron Ingot"", 1], [""Willow Lumber"", 1]]","[[""Debahocho +1"", 1], null, null]"
+,24,[],Mace,Fire,,"[[""Iron Ingot"", 3]]","[[""Mace +1"", 1], null, null]"
+,24,"[[""Goldsmithing"", 6]]",Scimitar,Fire,,"[[""Steel Ingot"", 2], [""Brass Ingot"", 1]]","[[""Scimitar +1"", 1], null, null]"
+,25,[],Baselard,Fire,,"[[""Iron Ingot"", 1], [""Steel Ingot"", 1]]","[[""Baselard +1"", 1], null, null]"
+,25,[],Iron Sword,Fire,,"[[""Iron Ingot"", 2], [""Lizard Skin"", 1]]","[[""Iron Sword +1"", 1], null, null]"
+,25,[],Spatha,Fire,,"[[""Bronze Ingot"", 3], [""Lizard Skin"", 1]]","[[""Spatha +1"", 1], null, null]"
+,25,[],Spatha,Fire,,"[[""Smithing Kit 25"", 1]]","[null, null, null]"
+,26,[],Assailant's Axe,Fire,Metal Ensorcellment,"[[""Lambent Water Cell"", 1], [""Lambent Wind Cell"", 1], [""Butterfly Axe"", 1]]","[null, null, null]"
+,26,"[[""Woodworking"", 4]]",Battleaxe,Fire,,"[[""Iron Ingot"", 2], [""Holly Lumber"", 1]]","[[""Battleaxe +1"", 1], null, null]"
+,26,[],Iron Scales,Wind,,"[[""Iron Sheet"", 1]]","[null, null, null]"
+,26,[],Windurstian Knife,Fire,,"[[""Iron Ingot"", 1], [""Mercenary's Knife"", 1]]","[[""Federation Knife"", 1], null, null]"
+,27,"[[""Goldsmithing"", 26], [""Woodworking"", 9]]",Athenienne,Fire,,"[[""Iron Ingot"", 1], [""Iron Sheet"", 1], [""Maple Lumber"", 1], [""Aht Urhgan Brass Ingot"", 1]]","[null, null, null]"
+,27,[],Longsword,Fire,,"[[""Iron Ingot"", 3], [""Dhalmel Leather"", 1]]","[[""Longsword +1"", 1], null, null]"
+,28,"[[""Goldsmithing"", 7]]",Bilbo,Fire,,"[[""Iron Ingot"", 1], [""Silver Ingot"", 1]]","[[""Bilbo +1"", 1], null, null]"
+,28,[],Degen,Fire,,"[[""Steel Ingot"", 2], [""Silver Ingot"", 1]]","[[""Degen +1"", 1], null, null]"
+,28,[],Zaghnal,Fire,,"[[""Iron Ingot"", 2], [""Holly Lumber"", 1], [""Grass Cloth"", 1]]","[[""Zaghnal +1"", 1], null, null]"
+,29,"[[""Bonecraft"", 8]]",Gladius,Fire,,"[[""Iron Ingot"", 2], [""Ram Horn"", 1]]","[[""Gladiator"", 1], null, null]"
+,29,[],Iron Mask,Earth,,"[[""Iron Sheet"", 1], [""Brass Sheet"", 1]]","[[""Iron Mask +1"", 1], null, null]"
+,29,[],Iron Visor,Wind,,"[[""Iron Scales"", 1], [""Iron Sheet"", 1], [""Sheep Leather"", 1]]","[[""Iron Visor +1"", 1], null, null]"
+,30,[],Iron Chain,Earth,,"[[""Iron Ingot"", 2]]","[[""Iron Chain"", 2], [""Iron Chain"", 3], [""Iron Chain"", 4]]"
+,30,[],Iron Chain,Earth,Chainwork,"[[""Iron Ingot"", 6], [""Mandrel"", 1]]","[[""Iron Chain"", 6], [""Iron Chain"", 9], [""Iron Chain"", 12]]"
+,30,[],Kunai,Fire,,"[[""Steel Ingot"", 1], [""Lizard Skin"", 1]]","[[""Kunai +1"", 1], null, null]"
+,30,[],Mythril Dagger,Fire,,"[[""Iron Ingot"", 1], [""Mythril Ingot"", 1]]","[[""Mythril Dagger +1"", 1], null, null]"
+,30,[],Tathlum,Wind,,"[[""Steel Ingot"", 1]]","[[""Tathlum"", 12], [""Tathlum"", 16], [""Tathlum"", 20]]"
+,30,[],Tathlum,Wind,,"[[""Smithing Kit 30"", 1]]","[null, null, null]"
+,31,"[[""Leathercraft"", 5]]",Chain Mittens,Earth,,"[[""Iron Chain"", 2], [""Ram Leather"", 1]]","[[""Chain Mittens +1"", 1], null, null]"
+,31,"[[""Woodworking"", 8]]",Greataxe,Fire,,"[[""Iron Ingot"", 2], [""Holly Lumber"", 1], [""Mythril Ingot"", 1]]","[[""Greataxe +1"", 1], null, null]"
+,31,[],Iron Finger Gauntlets,Earth,,"[[""Iron Scales"", 2], [""Leather Gloves"", 1], [""Cotton Thread"", 1]]","[[""Iron Finger Gauntlets +1"", 1], null, null]"
+,31,[],Plain Sword,Light,,"[[""Rusty Greatsword"", 1]]","[null, null, null]"
+,31,[],Rod,Fire,,"[[""Iron Ingot"", 2], [""Bronze Ingot"", 1]]","[[""Rod +1"", 1], null, null]"
+,31,"[[""Goldsmithing"", 8]]",Tuck,Fire,,"[[""Silver Ingot"", 1], [""Mythril Ingot"", 1]]","[[""Tuck +1"", 1], null, null]"
+,32,"[[""Bonecraft"", 8]]",Claws,Fire,,"[[""Steel Ingot"", 1], [""Beetle Jaw"", 1]]","[[""Claws +1"", 1], null, null]"
+,32,"[[""Leathercraft"", 7], [""Woodworking"", 6]]",Claymore,Fire,,"[[""Ash Lumber"", 1], [""Steel Ingot"", 4], [""Lizard Skin"", 1]]","[[""Claymore +1"", 1], null, null]"
+,32,"[[""Woodworking"", 7]]",Scythe,Fire,,"[[""Iron Ingot"", 3], [""Holly Lumber"", 1], [""Grass Cloth"", 1]]","[[""Scythe +1"", 1], null, null]"
+,32,[],Temple Knight Army Sword +1,Fire,,"[[""Temple Knight Army Sword"", 1], [""Iron Ingot"", 1]]","[[""Temple Knight Army Sword +2"", 1], null, null]"
+,32,"[[""Goldsmithing"", 6], [""Woodworking"", 3]]",Tomahawk,Fire,,"[[""Brass Ingot"", 1], [""Steel Ingot"", 1], [""Ash Lumber"", 1]]","[[""Tomahawk +1"", 1], null, null]"
+,33,"[[""Leathercraft"", 6]]",Greaves,Earth,,"[[""Iron Chain"", 1], [""Iron Sheet"", 1], [""Ram Leather"", 1]]","[[""Greaves +1"", 1], null, null]"
+,33,[],Junior Musketeer's Tuck +1,Fire,,"[[""Junior Musketeer's Tuck"", 1], [""Iron Ingot"", 1]]","[[""Junior Musketeer's Tuck +2"", 1], null, null]"
+,33,[],Kukri,Fire,,"[[""Steel Ingot"", 1], [""Chestnut Lumber"", 1], [""Lizard Skin"", 1]]","[[""Kukri +1"", 1], null, null]"
+,33,[],Plain Pick,Light,,"[[""Rusty Pick"", 1]]","[null, null, null]"
+,33,[],Tachi,Fire,"Leathercraft - (7), Woodworking - (4)","[[""Iron Ingot"", 3], [""Copper Ingot"", 1], [""Lizard Skin"", 1], [""Tama-Hagane"", 1], [""Cotton Thread"", 1], [""Ash Lumber"", 1]]","[[""Tachi +1"", 1], null, null]"
+,34,[],Mythril Knife,Fire,,"[[""Mythril Ingot"", 1], [""Chestnut Lumber"", 1]]","[[""Mythril Knife +1"", 1], null, null]"
+,34,[],Plain Cap,Light,,"[[""Rusty Cap"", 1]]","[null, null, null]"
+,34,[],Warhammer,Fire,,"[[""Iron Ingot"", 2], [""Elm Lumber"", 1]]","[[""Warhammer +1"", 1], null, null]"
+,35,[],Bastokan Dagger,Fire,,"[[""Decurion's Dagger"", 1], [""Mythril Ingot"", 1]]","[[""Republic Dagger"", 1], null, null]"
+,35,"[[""Leathercraft"", 7]]",Chain Hose,Earth,,"[[""Iron Chain"", 2], [""Linen Cloth"", 1], [""Ram Leather"", 2]]","[[""Chain Hose +1"", 1], null, null]"
+,35,"[[""Leathercraft"", 5]]",Iron Cuisses,Earth,,"[[""Iron Scales"", 2], [""Leather Trousers"", 1], [""Cotton Thread"", 1]]","[[""Iron Cuisses +1"", 1], null, null]"
+,35,[],Lucent Scythe,Fire,,"[[""Lucent Iron"", 1], [""Scythe"", 1]]","[null, null, null]"
+,35,[],Targe,Fire,,"[[""Iron Sheet"", 2], [""Holly Lumber"", 1]]","[[""Targe +1"", 1], null, null]"
+,35,[],Targe,Fire,,"[[""Smithing Kit 35"", 1]]","[null, null, null]"
+,36,"[[""Leathercraft"", 2]]",Iron Greaves,Earth,,"[[""Iron Scales"", 2], [""Cotton Thread"", 1], [""Leather Highboots"", 1]]","[[""Iron Greaves +1"", 1], null, null]"
+,36,[],Lightweight Steel Sheet,Fire,,"[[""Light Steel Ingot"", 1]]","[null, null, null]"
+,36,[],Lightweight Steel Sheet,Fire,Sheeting,"[[""Light Steel Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,36,[],Steel Sheet,Fire,,"[[""Steel Ingot"", 1]]","[null, null, null]"
+,36,[],Steel Sheet,Fire,Sheeting,"[[""Steel Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,36,"[[""Goldsmithing"", 25], [""Woodworking"", 8]]",Voulge,Fire,,"[[""Brass Ingot"", 1], [""Steel Ingot"", 2], [""Mythril Ingot"", 1], [""Holly Lumber"", 1]]","[[""Voulge +1"", 1], null, null]"
+,36,"[[""Woodworking"", 11], [""Leathercraft"", 7]]",Wakizashi,Fire,,"[[""Iron Ingot"", 1], [""Elm Lumber"", 1], [""Copper Ingot"", 1], [""Lizard Skin"", 1], [""Tama-Hagane"", 1], [""Silk Thread"", 1]]","[[""Wakizashi +1"", 1], null, null]"
+,37,"[[""Leathercraft"", 8]]",Chainmail,Earth,,"[[""Iron Chain"", 4], [""Iron Sheet"", 1], [""Ram Leather"", 1]]","[[""Chainmail +1"", 1], null, null]"
+,37,"[[""Leathercraft"", 14]]",Eisendiechlings,Fire,,"[[""Bronze Sheet"", 1], [""Iron Sheet"", 1], [""Dhalmel Leather"", 1], [""Sheep Leather"", 1]]","[[""Kampfdiechlings"", 1], null, null]"
+,37,[],Iron Scale Mail,Earth,,"[[""Iron Scales"", 4], [""Leather Vest"", 1], [""Cotton Thread"", 1], [""Sheep Leather"", 1]]","[[""Iron Scale Mail +1"", 1], null, null]"
+,37,[],Katars,Fire,,"[[""Steel Ingot"", 2], [""Bronze Sheet"", 1], [""Ram Leather"", 1]]","[[""Katars +1"", 1], null, null]"
+,37,[],Windurstian Sword,Fire,,"[[""Iron Ingot"", 1], [""Mercenary's Greatsword"", 1]]","[[""Federation Sword"", 1], null, null]"
+,37,[],Tyro Katars,Fire,,"[[""Steel Ingot"", 2], [""Ram Leather"", 1], [""Grimy Bronze Sheet"", 1]]","[[""Tyro Katars +1"", 1], null, null]"
+,38,"[[""Goldsmithing"", 12]]",Eisenschaller,Fire,,"[[""Iron Sheet"", 2], [""Copper Ingot"", 1], [""Silver Ingot"", 1], [""Sheep Leather"", 1], [""Mercury"", 1]]","[[""Kampfschaller"", 1], null, null]"
+,38,"[[""Goldsmithing"", 15]]",Kris,Fire,,"[[""Iron Ingot"", 1], [""Steel Ingot"", 1], [""Black Pearl"", 1]]","[[""Kris +1"", 1], null, null]"
+,38,"[[""Woodworking"", 6]]",War Pick,Fire,,"[[""Ash Lumber"", 1], [""Steel Ingot"", 1]]","[[""War Pick +1"", 1], null, null]"
+,38,[],Windurstian Kukri,Fire,,"[[""Mercenary Captain's Kukri"", 1], [""Steel Ingot"", 1]]","[[""Federation Kukri"", 1], null, null]"
+,39,"[[""Goldsmithing"", 25], [""Leathercraft"", 20]]",Falx,Fire,,"[[""Steel Ingot"", 3], [""Mythril Ingot"", 1], [""Holly Lumber"", 1], [""Pearl"", 1], [""Dhalmel Leather"", 1]]","[[""Falx +1"", 1], null, null]"
+,39,"[[""Goldsmithing"", 19]]",Fleuret,Fire,,"[[""Silver Ingot"", 1], [""Steel Ingot"", 2], [""Light Opal"", 1]]","[[""Fleuret +1"", 1], null, null]"
+,39,"[[""Leathercraft"", 9]]",Padded Cap,Earth,,"[[""Iron Sheet"", 1], [""Lizard Skin"", 2]]","[[""Strong Cap"", 1], null, null]"
+,39,[],Twicer,Fire,,"[[""Light Steel Ingot"", 1], [""Voulge"", 1]]","[null, null, null]"
+,39,"[[""Leathercraft"", 7], [""Woodworking"", 4]]",Midare,Fire,,"[[""Mythril Ingot"", 1], [""Ash Lumber"", 1], [""Copper Ingot"", 1], [""Tokkyu Tama-Hagane"", 1], [""Cotton Thread"", 1], [""Lizard Skin"", 1]]","[[""Midare +1"", 1], null, null]"
+,40,[],Bannaret Mail,Earth,Metal Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Chainmail"", 1]]","[null, null, null]"
+,40,[],Mythril Mace,Fire,,"[[""Mythril Ingot"", 3]]","[[""Mythril Mace +1"", 1], null, null]"
+,40,[],Mythril Sword,Fire,,"[[""Mythril Ingot"", 2], [""Dhalmel Leather"", 1]]","[[""Mythril Sword +1"", 1], null, null]"
+,40,[],Steel Scales,Wind,,"[[""Steel Sheet"", 1]]","[null, null, null]"
+,40,[],Steel Scales,Wind,,"[[""Smithing Kit 40"", 1]]","[null, null, null]"
+,41,"[[""Leathercraft"", 10]]",Iron Mittens,Earth,,"[[""Iron Sheet"", 1], [""Lizard Skin"", 1]]","[[""Iron Mittens +1"", 1], null, null]"
+,41,"[[""Leathercraft"", 11], [""Woodworking"", 9]]",Mythril Claymore,Fire,,"[[""Dhalmel Leather"", 1], [""Holly Lumber"", 1], [""Mythril Ingot"", 4]]","[[""Fine Claymore"", 1], null, null]"
+,41,"[[""Goldsmithing"", 11]]",Tulwar,Fire,,"[[""Silver Ingot"", 1], [""Mythril Ingot"", 2]]","[[""Tulwar +1"", 1], null, null]"
+,41,"[[""Woodworking"", 14]]",Heavy Axe,Fire,,"[[""Oak Lumber"", 1], [""Steel Ingot"", 3]]","[[""Heavy Axe +1"", 1], null, null]"
+,41,"[[""Leathercraft"", 15], [""Goldsmithing"", 9]]",Eisenschuhs,Fire,,"[[""Dhalmel Leather"", 1], [""Iron Sheet"", 2], [""Mercury"", 1], [""Sheep Leather"", 1], [""Silver Ingot"", 1]]","[[""Kampfschuhs"", 1], null, null]"
+,41,[],Lucent Lance,Fire,,"[[""Lance"", 1], [""Lucent Steel Ingot"", 1]]","[null, null, null]"
+,41,[],Bastokan Targe,Earth,,"[[""Iron Sheet"", 1], [""Decurion's Shield"", 1]]","[[""Republic Targe"", 1], null, null]"
+,42,[],Combat Caster's Dagger +1,Fire,,"[[""Mythril Ingot"", 1], [""Combat Caster's Dagger"", 1]]","[[""Combat Caster's Dagger +2"", 1], null, null]"
+,42,"[[""Goldsmithing"", 14]]",Eisenhentzes,Fire,,"[[""Silver Ingot"", 1], [""Mercury"", 1], [""Leather Gloves"", 2], [""Bronze Sheet"", 1], [""Iron Sheet"", 1]]","[[""Kampfhentzes"", 1], null, null]"
+,42,"[[""Woodworking"", 11]]",Mythril Axe,Fire,,"[[""Chestnut Lumber"", 1], [""Mythril Ingot"", 2]]","[[""Mythril Axe +1"", 1], null, null]"
+,42,"[[""Woodworking"", 11]]",Mythril Kukri,Fire,,"[[""Oak Lumber"", 1], [""Raptor Skin"", 1], [""Mythril Ingot"", 1]]","[[""Mythril Kukri +1"", 1], null, null]"
+,42,[],Throwing Tomahawk,Fire,,"[[""Chestnut Lumber"", 2], [""Steel Ingot"", 2]]","[[""Throwing Tomahawk"", 66], [""Throwing Tomahawk"", 99], [""Throwing Tomahawk"", 99]]"
+,42,"[[""Leathercraft"", 7], [""Woodworking"", 6]]",Two-Handed Sword,Fire,,"[[""Ash Lumber"", 1], [""Lizard Skin"", 1], [""Steel Ingot"", 5]]","[[""Two-Handed Sword +1"", 1], null, null]"
+,43,"[[""Goldsmithing"", 15], [""Leathercraft"", 5]]",Eisenbrust,Fire,,"[[""Bronze Sheet"", 2], [""Iron Sheet"", 2], [""Mercury"", 1], [""Sheep Leather"", 1], [""Silver Ingot"", 1]]","[[""Kampfbrust"", 1], null, null]"
+,43,[],Falchion,Fire,,"[[""Iron Ingot"", 1], [""Steel Ingot"", 3]]","[[""Falchion +1"", 1], null, null]"
+,43,"[[""Leathercraft"", 11]]",Leggings,Earth,,"[[""Iron Sheet"", 2], [""Lizard Skin"", 2]]","[[""Leggings +1"", 1], null, null]"
+,43,"[[""Woodworking"", 21]]",Musketoon,Fire,,"[[""Brass Ingot"", 1], [""Bronze Ingot"", 2], [""Willow Lumber"", 1]]","[[""Musketoon +1"", 1], null, null]"
+,43,"[[""Woodworking"", 11], [""Leathercraft"", 7]]",Shinobi-Gatana,Fire,,"[[""Copper Ingot"", 1], [""Cotton Thread"", 1], [""Elm Lumber"", 1], [""Iron Ingot"", 1], [""Lizard Skin"", 1], [""Tama-Hagane"", 1]]","[[""Shinobi-Gatana +1"", 1], null, null]"
+,44,[],Juji Shuriken,Wind,,"[[""Iron Sheet"", 1], [""Steel Ingot"", 1]]","[[""Juji Shuriken"", 66], [""Juji Shuriken"", 99], [""Juji Shuriken"", 99]]"
+,44,[],Lucent Axe,Fire,,"[[""Heavy Axe"", 1], [""Lucent Steel Ingot"", 1]]","[null, null, null]"
+,44,"[[""Woodworking"", 12]]",Mythril Knuckles,Fire,,"[[""Chestnut Lumber"", 1], [""Mythril Sheet"", 1], [""Steel Ingot"", 1]]","[[""Mythril Knuckles +1"", 1], null, null]"
+,44,[],Mythril Bolt Heads,Wind,,"[[""Mythril Ingot"", 1]]","[[""Mythril Bolt Heads"", 8], [""Mythril Bolt Heads"", 10], [""Mythril Bolt Heads"", 12]]"
+,44,[],Halo Claymore,Fire,Metal Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Mythril Claymore"", 1]]","[null, null, null]"
+,45,[],Bastokan Sword,Fire,,"[[""Centurion's Sword"", 1], [""Mythril Ingot"", 1]]","[[""Republic Sword"", 1], null, null]"
+,45,"[[""Leathercraft"", 12]]",Iron Subligar,Earth,,"[[""Cotton Cloth"", 1], [""Iron Sheet"", 1], [""Lizard Skin"", 1]]","[[""Iron Subligar +1"", 1], null, null]"
+,45,[],Lucent Sword,Fire,,"[[""Lucent Iron Ingot"", 1], [""Two-Handed Sword"", 1]]","[null, null, null]"
+,45,[],Navy Axe,Fire,Metal Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Mythril Axe"", 1]]","[null, null, null]"
+,45,[],Mythril Rod,Fire,,"[[""Mythril Ingot"", 2], [""Steel Ingot"", 1]]","[[""Mythril Rod +1"", 1], null, null]"
+,45,[],San d'Orian Mace,Fire,,"[[""Mythril Ingot"", 1], [""Royal Squire's Mace"", 1]]","[[""Kingdom Mace"", 1], null, null]"
+,45,[],Mythril Rod,Fire,,"[[""Smithing Kit 45"", 1]]","[null, null, null]"
+,46,[],Bastokan Greataxe,Fire,,"[[""Steel Ingot"", 1], [""Centurion's Axe"", 1]]","[[""Republic Greataxe"", 1], null, null]"
+,46,[],Combat Caster's Scimitar +1,Fire,,"[[""Mythril Ingot"", 1], [""Combat Caster's Scimitar"", 1]]","[[""Combat Caster's Scimitar +2"", 1], null, null]"
+,46,[],Hibari,Fire,,"[[""Lizard Skin"", 1], [""Tama-Hagane"", 1]]","[[""Hibari +1"", 1], null, null]"
+,46,[],Maul,Fire,,"[[""Mythril Ingot"", 2], [""Oak Lumber"", 1]]","[[""Maul +1"", 1], null, null]"
+,46,"[[""Woodworking"", 12]]",Mythril Bolt,Wind,,"[[""Mythril Ingot"", 1], [""Chestnut Lumber"", 1]]","[[""Mythril Bolt"", 66], [""Mythril Bolt"", 99], [""Mythril Bolt"", 99]]"
+,47,"[[""Woodworking"", 8]]",Mythril Pick,Fire,,"[[""Mythril Ingot"", 1], [""Elm Lumber"", 1]]","[[""Mythril Pick +1"", 1], null, null]"
+,47,"[[""Leathercraft"", 13]]",Padded Armor,Earth,,"[[""Iron Sheet"", 3], [""Lizard Skin"", 2]]","[[""Strong Harness"", 1], null, null]"
+,48,"[[""Bonecraft"", 13]]",Mythril Claws,Fire,,"[[""Mythril Ingot"", 1], [""Beetle Jaw"", 1]]","[[""Mythril Claws +1"", 1], null, null]"
+,48,"[[""Woodworking"", 19]]",Mythril Scythe,Fire,,"[[""Grass Cloth"", 1], [""Mythril Ingot"", 3], [""Yew Lumber"", 1]]","[[""Mythril Scythe +1"", 1], null, null]"
+,48,"[[""Clothcraft"", 37]]",Republican Legionnaire's Bedding,Earth,,"[[""Iron Ingot"", 1], [""Steel Ingot"", 1], [""Iron Sheet"", 2], [""Chestnut Lumber"", 1], [""Linen Cloth"", 2], [""Saruta Cotton"", 1]]","[null, null, null]"
+,48,"[[""Leathercraft"", 7], [""Woodworking"", 4]]",Nodachi,Fire,,"[[""Ash Lumber"", 1], [""Copper Ingot"", 1], [""Cotton Thread"", 1], [""Iron Ingot"", 2], [""Lizard Skin"", 1], [""Tama-Hagane"", 2]]","[[""Nodachi +1"", 1], null, null]"
+,49,[],Gust Claymore,Earth,,"[[""Claymore"", 1], [""Iron Sheet"", 1], [""Tin Ingot"", 1]]","[[""Gust Claymore +1"", 1], null, null]"
+,49,[],Knight's Sword,Fire,,"[[""Mythril Ingot"", 3], [""Ram Leather"", 1]]","[[""Knight's Sword +1"", 1], null, null]"
+,49,[],Steel Visor,Wind,,"[[""Iron Scales"", 1], [""Sheep Leather"", 1], [""Steel Sheet"", 1]]","[[""Steel Visor +1"", 1], null, null]"
+,50,"[[""Woodworking"", 38], [""Goldsmithing"", 19]]",Arquebus,Fire,,"[[""Brass Ingot"", 1], [""Mahogany Lumber"", 1], [""Steel Ingot"", 2]]","[[""Arquebus +1"", 1], null, null]"
+,50,"[[""Woodworking"", 40], [""Leathercraft"", 12]]",Faussar,Fire,,"[[""Lizard Skin"", 1], [""Mahogany Lumber"", 1], [""Mythril Ingot"", 2], [""Steel Ingot"", 4]]","[[""Faussar +1"", 1], null, null]"
+,50,[],Kite Shield,Earth,,"[[""Ash Lumber"", 1], [""Darksteel Sheet"", 1], [""Iron Sheet"", 2]]","[[""Kite Shield +1"", 1], null, null]"
+,50,[],Kite Shield,Earth,,"[[""Smithing Kit 50"", 1]]","[null, null, null]"
+,51,[],Bastokan Hammer,Fire,,"[[""Darksteel Ingot"", 1], [""Decurion's Hammer"", 1]]","[[""Republic Hammer"", 1], null, null]"
+,51,[],Broadsword,Fire,,"[[""Lizard Skin"", 1], [""Mythril Ingot"", 2]]","[[""Broadsword +1"", 1], null, null]"
+,51,[],Patas,Fire,,"[[""Carbon Fiber"", 1], [""Iron Sheet"", 1], [""Steel Ingot"", 2]]","[[""Patas +1"", 1], null, null]"
+,51,[],Steel Finger Gauntlets,Earth,,"[[""Cotton Thread"", 1], [""Leather Gloves"", 1], [""Steel Scales"", 2]]","[[""Steel Finger Gauntlets +1"", 1], null, null]"
+,51,"[[""Woodworking"", 11]]",Tabar,Fire,,"[[""Chestnut Lumber"", 1], [""Mythril Ingot"", 3]]","[[""Tabar +1"", 1], null, null]"
+,52,[],Darksteel Ingot,Fire,,"[[""Darksteel Ore"", 1], [""Iron Ore"", 3]]","[null, null, null]"
+,52,"[[""Woodworking"", 19]]",Smiting Scythe,Fire,,"[[""Tenebrium"", 1], [""Mythril Scythe"", 1]]","[[""Smiting Scythe +1"", 1], null, null]"
+,52,"[[""Leathercraft"", 11], [""Woodworking"", 9]]",Greatsword,Fire,,"[[""Dhalmel Leather"", 1], [""Holly Lumber"", 1], [""Mythril Ingot"", 5]]","[[""Greatsword +1"", 1], null, null]"
+,53,[],Darksteel Ingot,Fire,,"[[""Darksteel Ore"", 1], [""Darksteel Nugget"", 6]]","[null, null, null]"
+,53,[],Darksteel Knife,Fire,,"[[""Darksteel Ingot"", 1], [""Oak Lumber"", 1]]","[[""Darksteel Knife +1"", 1], null, null]"
+,53,[],Gorget,Fire,,"[[""Iron Sheet"", 1], [""Sheep Leather"", 1]]","[[""Gorget +1"", 1], null, null]"
+,53,"[[""Woodworking"", 7], [""Leathercraft"", 4]]",Kodachi,Fire,,"[[""Ash Lumber"", 1], [""Copper Ingot"", 1], [""Cotton Thread"", 1], [""Lizard Skin"", 1], [""Mythril Ingot"", 1], [""Tama-Hagane"", 1]]","[[""Kodachi +1"", 1], null, null]"
+,53,"[[""Woodworking"", 11], [""Leathercraft"", 7]]",Uchigatana,Fire,,"[[""Copper Ingot"", 1], [""Elm Lumber"", 1], [""Iron Ingot"", 2], [""Lizard Skin"", 1], [""Silk Thread"", 1], [""Tama-Hagane"", 1]]","[[""Uchigatana +1"", 1], null, null]"
+,54,[],Cuisses,Fire,,"[[""Iron Sheet"", 2], [""Sheep Leather"", 1]]","[[""Cuisses +1"", 1], null, null]"
+,54,[],Steel Ingot,Fire,,"[[""Bomb Ash"", 4], [""Iron Sand"", 4]]","[[""Tama-Hagane"", 1], null, null]"
+,54,"[[""Woodworking"", 30], [""Goldsmithing"", 9]]",Tanegashima,Fire,,"[[""Copper Ingot"", 1], [""Oak Lumber"", 1], [""Steel Ingot"", 2]]","[[""Tanegashima +1"", 1], null, null]"
+,55,[],Darksteel Sheet,Fire,,"[[""Darksteel Ingot"", 1]]","[null, null, null]"
+,55,[],Darksteel Sheet,Fire,Sheeting,"[[""Darksteel Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,55,[],Darksteel Sword,Fire,,"[[""Darksteel Ingot"", 2], [""Raptor Skin"", 1]]","[[""Darksteel Sword +1"", 1], null, null]"
+,55,[],Sallet,Fire,,"[[""Copper Ingot"", 1], [""Iron Sheet"", 2], [""Sheep Leather"", 1]]","[[""Sallet +1"", 1], null, null]"
+,55,"[[""Leathercraft"", 5]]",Steel Cuisses,Earth,,"[[""Cotton Thread"", 1], [""Leather Trousers"", 1], [""Steel Scales"", 2]]","[[""Steel Cuisses +1"", 1], null, null]"
+,55,[],Steel Ingot,Fire,,"[[""Bomb Ash"", 1], [""Cluster Ash"", 1], [""Iron Sand"", 4]]","[[""Tama-Hagane"", 1], null, null]"
+,55,[],Steel Ingot,Fire,,"[[""Iron Ore"", 1], [""Steel Nugget"", 6]]","[[""Tama-Hagane"", 1], null, null]"
+,55,[],Sallet,Fire,,"[[""Smithing Kit 55"", 1]]","[null, null, null]"
+,56,[],Combat Caster's Axe +1,Fire,,"[[""Mythril Ingot"", 1], [""Combat Caster's Axe"", 1]]","[[""Combat Caster's Axe +2"", 1], null, null]"
+,56,[],Steel Ingot,Fire,,"[[""Djinn Ash"", 1], [""Iron Sand"", 4]]","[[""Tama-Hagane"", 1], null, null]"
+,56,"[[""Bonecraft"", 14]]",Darksteel Claws,Fire,,"[[""Beetle Jaw"", 1], [""Darksteel Ingot"", 1]]","[[""Darksteel Claws +1"", 1], null, null]"
+,56,[],Plate Leggings,Fire,,"[[""Iron Sheet"", 3], [""Sheep Leather"", 2]]","[[""Plate Leggings +1"", 1], null, null]"
+,56,[],Steel Greaves,Earth,,"[[""Cotton Thread"", 1], [""Steel Scales"", 2], [""Leather Highboots"", 1]]","[[""Steel Greaves +1"", 1], null, null]"
+,57,[],Alumine Solerets,Earth,,"[[""Aluminum Sheet"", 1], [""Darksteel Sheet"", 1], [""Greaves"", 1]]","[[""Luisant Solerets"", 1], null, null]"
+,57,[],Gauntlets,Fire,,"[[""Iron Sheet"", 2], [""Leather Gloves"", 2]]","[[""Gauntlets +1"", 1], null, null]"
+,57,[],Hunting Sword,Fire,,"[[""Dhalmel Leather"", 1], [""Mythril Ingot"", 3]]","[[""War Sword"", 1], null, null]"
+,57,"[[""Woodworking"", 33], [""Goldsmithing"", 16]]",Mars's Hexagun,Fire,,"[[""Rosewood Lumber"", 2], [""Silver Ingot"", 1], [""Steel Ingot"", 2]]","[[""Mars's Hexagun +1"", 1], null, null]"
+,57,[],Severus Claws,Fire,,"[[""Darksteel Ingot"", 1], [""Likho Talon"", 1]]","[[""Severus Claws +1"", 1], null, null]"
+,57,[],Royal Swordsman's Blade +1,Fire,,"[[""Mythril Ingot"", 1], [""Royal Swordsman's Blade"", 1]]","[[""Royal Swordsman's Blade +2"", 1], null, null]"
+,57,[],Steel Scale Mail,Earth,,"[[""Cotton Thread"", 1], [""Leather Vest"", 1], [""Sheep Leather"", 1], [""Steel Scales"", 4]]","[[""Steel Scale Mail +1"", 1], null, null]"
+,58,"[[""Alchemy"", 34]]",Armor Plate,Fire,,"[[""Darksteel Sheet"", 1], [""Imperial Cermet"", 1], [""Iron Sheet"", 1], [""Steel Sheet"", 1], [""Carbon Fiber"", 1]]","[null, null, null]"
+,58,[],Breastplate,Fire,,"[[""Iron Sheet"", 4], [""Sheep Leather"", 2]]","[[""Breastplate +1"", 1], null, null]"
+,58,"[[""Leathercraft"", 30], [""Woodworking"", 4]]",Jindachi,Fire,,"[[""Ash Lumber"", 1], [""Copper Ingot"", 1], [""Cotton Thread"", 1], [""Iron Ingot"", 2], [""Raptor Skin"", 1], [""Tama-Hagane"", 2]]","[[""Jindachi +1"", 1], null, null]"
+,58,[],Kyofu,Earth,,"[[""Iron Sheet"", 1], [""Tin Ingot"", 1], [""Shinobi-Gatana"", 1]]","[[""Kyofu +1"", 1], null, null]"
+,59,[],Alumine Moufles,Earth,,"[[""Aluminum Sheet"", 1], [""Chain Mittens"", 1], [""Darksteel Sheet"", 1]]","[[""Luisant Moufles"", 1], null, null]"
+,59,"[[""Woodworking"", 20], [""Goldsmithing"", 17]]",Blunderbuss,Fire,,"[[""Brass Ingot"", 1], [""Steel Ingot"", 2], [""Elm Lumber"", 1], [""Silver Ingot"", 1]]","[[""Blunderbuss +1"", 1], null, null]"
+,59,[],Darksteel Scales,Wind,,"[[""Darksteel Sheet"", 1]]","[null, null, null]"
+,59,[],Gust Sword,Earth,,"[[""Greatsword"", 1], [""Steel Sheet"", 1], [""Tin Ingot"", 1]]","[[""Gust Sword +1"", 1], null, null]"
+,59,"[[""Goldsmithing"", 14]]",Schlaeger,Fire,,"[[""Darksteel Ingot"", 2], [""Silver Ingot"", 1]]","[[""Schlaeger +1"", 1], null, null]"
+,59,[],Scutum,Earth,,"[[""Darksteel Sheet"", 2], [""Iron Sheet"", 2], [""Oak Lumber"", 1]]","[[""Scutum +1"", 1], null, null]"
+,60,"[[""Leathercraft"", 18], [""Woodworking"", 14]]",Darksteel Claymore,Fire,,"[[""Chestnut Lumber"", 1], [""Darksteel Ingot"", 4], [""Ram Leather"", 1]]","[[""Darksteel Claymore +1"", 1], null, null]"
+,60,[],Darksteel Falchion,Fire,,"[[""Darksteel Ingot"", 3], [""Steel Ingot"", 1]]","[[""Crescent Sword"", 1], null, null]"
+,60,"[[""Woodworking"", 23]]",Darksteel Knuckles,Fire,,"[[""Darksteel Ingot"", 1], [""Darksteel Sheet"", 1], [""Oak Lumber"", 1]]","[[""Darksteel Knuckles +1"", 1], null, null]"
+,60,[],Iyo Scale,Wind,,"[[""Darksteel Sheet"", 2]]","[null, null, null]"
+,60,[],Erlking's Blade,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Darksteel Ingot"", 2], [""Steel Ingot"", 1]]","[null, null, null]"
+,60,"[[""Goldsmithing"", 25], [""Woodworking"", 8]]",Tewhatewha,Fire,,"[[""Iron Ingot"", 1], [""Steel Ingot"", 2], [""Holly Lumber"", 1], [""Aramid Fiber"", 1]]","[[""Tewhatewha +1"", 1], null, null]"
+,60,[],Darksteel Mace,Fire,,"[[""Smithing Kit 60"", 1]]","[null, null, null]"
+,61,"[[""Goldsmithing"", 54]]",Tsukumo,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Gargouille Shank"", 1], [""Ruszor Leather"", 1]]","[null, null, null]"
+,61,"[[""Leathercraft"", 22]]",Alumine Brayettes,Earth,,"[[""Aluminum Chain"", 1], [""Darksteel Chain"", 1], [""Linen Cloth"", 1], [""Ram Leather"", 2]]","[[""Luisant Brayettes"", 1], null, null]"
+,61,"[[""Alchemy"", 59], [""Woodworking"", 19]]",Dweomer Scythe,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Steel Ingot"", 1], [""Darksteel Ingot"", 2], [""Yew Lumber"", 1], [""Grass Cloth"", 1], [""Fiend Blood"", 1]]","[null, null, null]"
+,61,[],Darksteel Mace,Fire,,"[[""Darksteel Ingot"", 3]]","[[""Darksteel Mace +1"", 1], null, null]"
+,61,"[[""Woodworking"", 19]]",Mythril Zaghnal,Fire,,"[[""Grass Cloth"", 1], [""Mythril Ingot"", 2], [""Walnut Lumber"", 1]]","[[""Mythril Zaghnal +1"", 1], null, null]"
+,61,"[[""Leathercraft"", 37]]",Sai,Fire,,"[[""Habu Skin"", 1], [""Silver Thread"", 1], [""Steel Ingot"", 2]]","[[""Sai +1"", 1], null, null]"
+,62,"[[""Goldsmithing"", 21]]",Alumine Salade,Fire,,"[[""Aluminum Sheet"", 1], [""Copper Ingot"", 1], [""Darksteel Chain"", 1], [""Darksteel Sheet"", 1], [""Sheep Leather"", 1]]","[[""Luisant Salade"", 1], null, null]"
+,62,"[[""Woodworking"", 29]]",Darksteel Axe,Fire,,"[[""Darksteel Ingot"", 2], [""Oak Lumber"", 1]]","[[""Darksteel Axe +1"", 1], null, null]"
+,62,[],Darksteel Bolt Heads,Wind,,"[[""Darksteel Ingot"", 1]]","[[""Darksteel Bolt Heads"", 8], [""Darksteel Bolt Heads"", 10], [""Darksteel Bolt Heads"", 12]]"
+,62,[],Darksteel Sollerets,Earth,,"[[""Darksteel Sheet"", 2], [""Greaves"", 1]]","[[""Darksteel Sollerets +1"", 1], null, null]"
+,62,"[[""Clothcraft"", 44]]",Haidate,Earth,,"[[""Iron Sheet"", 2], [""Sheep Leather"", 1], [""Silk Cloth"", 1], [""Silk Thread"", 1]]","[[""Haidate +1"", 1], null, null]"
+,62,"[[""Goldsmithing"", 50], [""Woodworking"", 33]]",Steel Kilij,Fire,,"[[""Aluminum Ingot"", 2], [""Amethyst"", 1], [""Ametrine"", 1], [""Karakul Leather"", 1], [""Rosewood Lumber"", 1], [""Steel Ingot"", 2]]","[[""Steel Kilij +1"", 1], null, null]"
+,62,[],Tactician Magician's Espadon +1,Fire,,"[[""Mythril Ingot"", 1], [""Tactician Magician's Espadon"", 1]]","[[""Tactician Magician's Espadon +2"", 1], null, null]"
+,62,"[[""Alchemy"", 51], [""Woodworking"", 11]]",Sakurafubuki,Fire,,"[[""Cermet Chunk"", 1], [""Copper Ingot"", 1], [""Raptor Skin"", 1], [""Silk Thread"", 1], [""Tama-Hagane"", 1]]","[[""Sakurafubuki +1"", 1], null, null]"
+,63,[],Darksteel Baselard,Fire,,"[[""Mythril Ingot"", 1], [""Darksteel Ingot"", 1]]","[[""Darksteel Baselard +1"", 1], null, null]"
+,63,[],Darksteel Chain,Earth,,"[[""Darksteel Ingot"", 2]]","[[""Darksteel Chain"", 4], null, null]"
+,63,[],Darksteel Chain,Earth,Chainwork,"[[""Darksteel Ingot"", 6], [""Mandrel"", 1]]","[[""Darksteel Chain"", 12], null, null]"
+,63,[],Dweomer Knife,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Jacaranda Lumber"", 1]]","[null, null, null]"
+,64,"[[""Clothcraft"", 41]]",Sune-Ate,Fire,,"[[""Iron Sheet"", 2], [""Sheep Leather"", 1], [""Silk Cloth"", 1], [""Silk Thread"", 1]]","[[""Sune-Ate +1"", 1], null, null]"
+,64,[],Darksteel Mufflers,Earth,,"[[""Chain Mittens"", 1], [""Darksteel Sheet"", 2]]","[[""Darksteel Mufflers +1"", 1], null, null]"
+,64,"[[""Goldsmithing"", 28], [""Clothcraft"", 25]]",Alumine Haubert,Earth,,"[[""Aluminum Ingot"", 1], [""Aluminum Sheet"", 1], [""Darksteel Sheet"", 1], [""Darksteel Chain"", 3], [""Silk Cloth"", 1], [""Velvet Cloth"", 1]]","[[""Luisant Haubert"", 1], null, null]"
+,64,[],Dweomer Maul,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Mahogany Lumber"", 1], [""Darksteel Ingot"", 1]]","[null, null, null]"
+,64,"[[""Woodworking"", 26]]",Darksteel Bolt,Wind,,"[[""Darksteel Ingot"", 1], [""Rosewood Lumber"", 1]]","[[""Darksteel Bolt"", 66], [""Darksteel Bolt"", 99], [""Darksteel Bolt"", 99]]"
+,65,[],Darksteel Kukri,Fire,,"[[""Cockatrice Skin"", 1], [""Darksteel Ingot"", 1], [""Mahogany Lumber"", 1]]","[[""Darksteel Kukri +1"", 1], null, null]"
+,65,[],Manji Shuriken,Wind,,"[[""Darksteel Sheet"", 1], [""Tama-Hagane"", 1]]","[[""Manji Shuriken"", 66], [""Manji Shuriken"", 99], [""Manji Shuriken"", 99]]"
+,65,[],Reppu,Earth,,"[[""Kodachi"", 1], [""Steel Sheet"", 1], [""Tin Ingot"", 1]]","[[""Reppu +1"", 1], null, null]"
+,65,"[[""Woodworking"", 23]]",Erlking's Tabar,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Oak Lumber"", 1], [""Darksteel Ingot"", 2]]","[null, null, null]"
+,65,[],Fane Baselard,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Dark Adaman"", 1]]","[null, null, null]"
+,65,[],Darksteel Kukri,Fire,,"[[""Smithing Kit 65"", 1]]","[null, null, null]"
+,66,"[[""Leathercraft"", 27]]",Darksteel Breeches,Earth,,"[[""Darksteel Chain"", 2], [""Linen Cloth"", 1], [""Ram Leather"", 2]]","[[""Darksteel Breeches +1"", 1], null, null]"
+,66,"[[""Woodworking"", 30], [""Goldsmithing"", 9]]",Negoroshiki,Fire,,"[[""Copper Ingot"", 1], [""Darksteel Ingot"", 1], [""Oak Lumber"", 1], [""Steel Ingot"", 1]]","[[""Negoroshiki +1"", 1], null, null]"
+,66,[],Nodowa,Earth,,"[[""Iron Sheet"", 1], [""Silk Thread"", 1]]","[[""Nodowa +1"", 1], null, null]"
+,66,"[[""Leathercraft"", 39], [""Clothcraft"", 28]]",Jaridah Nails,Earth,,"[[""Karakul Cloth"", 1], [""Karakul Leather"", 1], [""Marid Hair"", 1], [""Marid Leather"", 1], [""Steel Sheet"", 1]]","[[""Akinji Nails"", 1], null, null]"
+,66,[],Hanafubuki,Fire,Metal Ensorcellment,"[[""Lambent Wind Cell"", 1], [""Lambent Fire Cell"", 1], [""Sakurafubuki"", 1]]","[null, null, null]"
+,67,[],Bascinet,Fire,,"[[""Copper Ingot"", 1], [""Darksteel Chain"", 1], [""Darksteel Sheet"", 1], [""Sheep Leather"", 1], [""Iron Sheet"", 1]]","[[""Bascinet +1"", 1], null, null]"
+,67,[],Dweomer Steel,Fire,,"[[""Iron Ore"", 3], [""Swamp Ore"", 1]]","[null, null, null]"
+,67,"[[""Clothcraft"", 46]]",Kote,Fire,,"[[""Iron Chain"", 2], [""Iron Sheet"", 2], [""Silk Cloth"", 1], [""Silk Thread"", 1]]","[[""Kote +1"", 1], null, null]"
+,67,[],Royal Knight's Sollerets +1,Earth,,"[[""Darksteel Chain"", 1], [""Royal Knight's Sollerets"", 1]]","[[""Royal Knight's Sollerets +2"", 1], null, null]"
+,67,"[[""Goldsmithing"", 16]]",Darksteel Hexagun,Fire,,"[[""Darksteel Ingot"", 1], [""Ebony Lumber"", 2], [""Silver Ingot"", 1], [""Steel Ingot"", 1]]","[[""Darksteel Hexagun +1"", 1], null, null]"
+,67,"[[""Woodworking"", 37], [""Goldsmithing"", 16]]",Fane Hexagun,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Darksteel Ingot"", 1], [""Silver Ingot"", 1], [""Ebony Lumber"", 2]]","[null, null, null]"
+,68,"[[""Alchemy"", 34]]",Armor Plate II,Fire,,"[[""Carbon Fiber"", 1], [""Darksteel Sheet"", 2], [""Imperial Cermet"", 1], [""Steel Sheet"", 1]]","[null, null, null]"
+,68,[],Darksteel Katars,Fire,,"[[""Darksteel Ingot"", 2], [""Iron Sheet"", 1], [""Tiger Leather"", 1]]","[[""Darksteel Katars +1"", 1], null, null]"
+,68,"[[""Clothcraft"", 49]]",Hara-Ate,Fire,,"[[""Iron Chain"", 2], [""Iron Sheet"", 3], [""Sheep Leather"", 1], [""Silk Cloth"", 1], [""Silk Thread"", 1]]","[[""Hara-Ate +1"", 1], null, null]"
+,68,"[[""Leathercraft"", 31], [""Clothcraft"", 22]]",Jaridah Bazubands,Earth,,"[[""Karakul Leather"", 1], [""Marid Hair"", 1], [""Mohbwa Cloth"", 1], [""Steel Sheet"", 2]]","[[""Akinji Bazubands"", 1], null, null]"
+,68,"[[""Goldsmithing"", 55]]",Tsukumo,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Gargouille Shank"", 1], [""Ruszor Leather"", 1]]","[null, null, null]"
+,69,[],Erlking's Kheten,Fire,,"[[""Darksteel Ingot"", 1], [""Rosewood Lumber"", 1], [""Dweomer Steel Ingot"", 1], [""Steel Ingot"", 1]]","[null, null, null]"
+,69,"[[""Clothcraft"", 38]]",Haubergeon,Earth,,"[[""Damascus Ingot"", 1], [""Darksteel Chain"", 3], [""Darksteel Sheet"", 2], [""Silk Cloth"", 1], [""Velvet Cloth"", 1]]","[[""Haubergeon +1"", 1], null, null]"
+,69,[],Royal Knight's Mufflers +1,Earth,,"[[""Darksteel Chain"", 1], [""Royal Knight's Mufflers"", 1]]","[[""Royal Knight's Mufflers +2"", 1], null, null]"
+,69,"[[""Clothcraft"", 34]]",Zunari Kabuto,Fire,,"[[""Copper Ingot"", 1], [""Iron Sheet"", 2], [""Silk Cloth"", 1], [""Silk Thread"", 1]]","[[""Zunari Kabuto +1"", 1], null, null]"
+,69,"[[""Leathercraft"", 53], [""Woodworking"", 4]]",Rindomaru,Fire,,"[[""Copper Ingot"", 1], [""Darksteel Ingot"", 1], [""Iron Ingot"", 1], [""Tama-Hagane"", 1], [""Ash Lumber"", 1], [""Cotton Thread"", 1], [""Raptor Skin"", 1], [""Dweomer Steel Ingot"", 1]]","[null, null, null]"
+,70,"[[""Clothcraft"", 34]]",Darksteel Buckler,Fire,,"[[""Darksteel Sheet"", 2], [""Steel Ingot"", 1], [""Walnut Lumber"", 1]]","[[""Spiked Buckler"", 1], null, null]"
+,70,[],Gust Tongue,Earth,,"[[""Darksteel Sheet"", 1], [""Flamberge"", 1], [""Tin Ingot"", 1]]","[[""Gust Tongue +1"", 1], null, null]"
+,70,[],Hien,Fire,,"[[""Darksteel Ingot"", 1], [""Lizard Skin"", 1]]","[[""Hien +1"", 1], null, null]"
+,70,"[[""Woodworking"", 25]]",Odorous Knife,Fire,,"[[""Darksteel Ingot"", 1], [""Magnolia Lumber"", 1], [""White Steel"", 1]]","[[""Odorous Knife +1"", 1], null, null]"
+,70,[],Erlking's Sword,Fire,,"[[""Dweomer Steel Ingot"", 1], [""Peiste Leather"", 1], [""Darksteel Ingot"", 1]]","[null, null, null]"
+,70,[],Hien,Fire,,"[[""Smithing Kit 70"", 1]]","[null, null, null]"
+,71,[],Falsiam Vase,Fire,,"[[""Darksteel Ingot"", 1], [""Mythril Ingot"", 1], [""Tin Ingot"", 1]]","[null, null, null]"
+,71,"[[""Woodworking"", 44], [""Leathercraft"", 30]]",Ram-Dao,Fire,,"[[""Mahogany Lumber"", 1], [""Mythril Ingot"", 6], [""Raptor Skin"", 1]]","[[""Ram-Dao +1"", 1], null, null]"
+,71,"[[""Alchemy"", 56], [""Goldsmithing"", 38]]",Schwert,Fire,,"[[""Cermet Chunk"", 1], [""Moonstone"", 1], [""Mythril Ingot"", 1], [""Steel Ingot"", 2]]","[[""Schwert +1"", 1], null, null]"
+,72,"[[""Leathercraft"", 38]]",Darksteel Cap,Earth,,"[[""Darksteel Sheet"", 1], [""Tiger Leather"", 2]]","[[""Darksteel Cap +1"", 1], null, null]"
+,72,"[[""Goldsmithing"", 15]]",Darksteel Kris,Fire,,"[[""Darksteel Ingot"", 1], [""Painite"", 1], [""Steel Ingot"", 1]]","[[""Darksteel Kris +1"", 1], null, null]"
+,72,"[[""Goldsmithing"", 49], [""Woodworking"", 41]]",Kilij,Fire,,"[[""Ebony Lumber"", 1], [""Gold Ingot"", 2], [""Lapis Lazuli"", 1], [""Marid Leather"", 1], [""Mythril Ingot"", 2], [""Turquoise"", 1]]","[[""Kilij +1"", 1], null, null]"
+,73,"[[""Woodworking"", 8]]",Darksteel Pick,Fire,,"[[""Darksteel Ingot"", 1], [""Elm Lumber"", 1]]","[[""Darksteel Pick +1"", 1], null, null]"
+,73,"[[""Leathercraft"", 41]]",Darksteel Mittens,Earth,,"[[""Darksteel Sheet"", 1], [""Tiger Leather"", 1]]","[[""Darksteel Mittens +1"", 1], null, null]"
+,73,"[[""Leathercraft"", 41]]",Muketsu,Fire,,"[[""Sakurafubuki"", 1], [""Steel Ingot"", 1]]","[[""Muketsu +1"", 1], null, null]"
+,73,[],Armor Plate III,Fire,,"[[""Adaman Sheet"", 2], [""Carbon Fiber"", 1], [""Dark Adaman Sheet"", 1], [""Imperial Cermet"", 1]]","[null, null, null]"
+,74,[],Dark Bronze Ingot,Fire,,"[[""Darksteel Ore"", 1], [""Copper Ore"", 2], [""Tin Ore"", 1]]","[null, null, null]"
+,74,"[[""Leathercraft"", 42]]",Darksteel Subligar,Earth,,"[[""Darksteel Sheet"", 1], [""Linen Cloth"", 1], [""Tiger Leather"", 1]]","[[""Darksteel Subligar +1"", 1], null, null]"
+,74,"[[""Leathercraft"", 40]]",Kabutowari,Fire,,"[[""Copper Ingot"", 1], [""Cotton Thread"", 1], [""Darksteel Ingot"", 1], [""Elm Lumber"", 1], [""Raptor Skin"", 1], [""Tama-Hagane"", 1]]","[[""Kabutowari +1"", 1], null, null]"
+,75,"[[""Woodworking"", 24]]",Kheten,Fire,,"[[""Darksteel Ingot"", 1], [""Rosewood Lumber"", 1], [""Steel Ingot"", 2]]","[[""Kheten +1"", 1], null, null]"
+,75,[],Dark Bronze Sheet,Fire,,"[[""Dark Bronze Ingot"", 1]]","[null, null, null]"
+,75,[],Dark Bronze Sheet,Fire,Sheeting,"[[""Dark Bronze Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,75,"[[""Leathercraft"", 42]]",Darksteel Leggings,Earth,,"[[""Darksteel Sheet"", 2], [""Tiger Leather"", 2]]","[[""Darksteel Leggings +1"", 1], null, null]"
+,76,"[[""Goldsmithing"", 51]]",Darksteel Voulge,Fire,,"[[""Brass Ingot"", 1], [""Darksteel Ingot"", 2], [""Ebony Lumber"", 1], [""Gold Ingot"", 1]]","[[""Darksteel Voulge +1"", 1], null, null]"
+,76,[],Durium Ingot,Fire,,"[[""Darksteel Ore"", 1], [""Durium Ore"", 3]]","[null, null, null]"
+,76,[],Keppu,Earth,,"[[""Darksteel Sheet"", 1], [""Muketsu"", 1], [""Tin Ingot"", 1]]","[[""Keppu +1"", 1], null, null]"
+,76,"[[""Leathercraft"", 7]]",Mikazuki,Fire,,"[[""Ash Lumber"", 1], [""Copper Ingot"", 1], [""Cotton Thread"", 1], [""Lizard Skin"", 1], [""Mythril Ingot"", 3], [""Tama-Hagane"", 1]]","[[""Mikazuki +1"", 1], null, null]"
+,76,[],Keppu,Earth,,"[[""Smithing Kit 76"", 1]]","[null, null, null]"
+,77,[],Bastard Sword,Fire,,"[[""Darksteel Ingot"", 3], [""Ram Leather"", 1]]","[[""Bastard Sword +1"", 1], null, null]"
+,77,"[[""Goldsmithing"", 45], [""Woodworking"", 43]]",Hexagun,Fire,,"[[""Bloodwood Lumber"", 1], [""Darksteel Ingot"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Steel Ingot"", 1], [""Walnut Lumber"", 1]]","[[""Hexagun +1"", 1], null, null]"
+,77,[],Darksteel Rod,Fire,,"[[""Darksteel Ingot"", 2], [""Steel Ingot"", 1]]","[[""Darksteel Rod +1"", 1], null, null]"
+,77,[],Durium Sheet,Fire,,"[[""Durium Ingot"", 1]]","[null, null, null]"
+,77,[],Durium Sheet,Fire,Sheeting,"[[""Durium Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,78,"[[""Leathercraft"", 43]]",Darksteel Harness,Earth,,"[[""Darksteel Sheet"", 3], [""Tiger Leather"", 2]]","[[""Darksteel Harness +1"", 1], null, null]"
+,78,"[[""Woodworking"", 19]]",Darksteel Scythe,Fire,,"[[""Darksteel Ingot"", 3], [""Grass Cloth"", 1], [""Yew Lumber"", 1]]","[[""Darksteel Scythe +1"", 1], null, null]"
+,78,[],Regiment Kheten,Fire,Metal Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Kheten"", 1]]","[null, null, null]"
+,78,[],Armor Plate IV,Fire,,"[[""Adaman Sheet"", 1], [""Carbon Fiber"", 1], [""Dark Adaman Sheet"", 1], [""Imperial Cermet"", 1], [""Titanium Sheet"", 1]]","[null, null, null]"
+,79,"[[""Woodworking"", 41], [""Goldsmithing"", 29]]",Matchlock Gun,Fire,,"[[""Brass Ingot"", 1], [""Darksteel Ingot"", 1], [""Steel Ingot"", 1], [""Walnut Lumber"", 1]]","[[""Matchlock Gun +1"", 1], null, null]"
+,79,"[[""Goldsmithing"", 49], [""Woodworking"", 42]]",Darksteel Falx,Fire,,"[[""Black Pearl"", 1], [""Buffalo Leather"", 1], [""Darksteel Ingot"", 3], [""Ebony Lumber"", 1], [""Mythril Ingot"", 1]]","[[""Darksteel Falx +1"", 1], null, null]"
+,79,[],Karimata Arrowheads,Wind,,"[[""Iron Ingot"", 1], [""Tama-Hagane"", 1]]","[[""Karimata Arrowheads"", 8], [""Karimata Arrowheads"", 10], [""Karimata Arrowheads"", 12]]"
+,80,"[[""Goldsmithing"", 41], [""Woodworking"", 37]]",Dark Amood,Fire,,"[[""Darksteel Ingot"", 2], [""Ebony Lumber"", 1], [""Garnet"", 1], [""Moblumin Ingot"", 1], [""Silver Ingot"", 1], [""Steel Ingot"", 2]]","[[""Dark Amood +1"", 1], null, null]"
+,80,"[[""Leathercraft"", 37], [""Goldsmithing"", 34]]",Holy Breastplate,Earth,,"[[""Blessed Mythril Sheet"", 3], [""Darksteel Sheet"", 1], [""Ram Leather"", 2], [""Sheep Leather"", 1], [""Silver Ingot"", 1]]","[[""Divine Breastplate"", 1], null, null]"
+,80,[],Katzbalger,Fire,,"[[""Broadsword"", 1], [""Darksteel Ingot"", 1], [""Raptor Skin"", 1]]","[[""Katzbalger +1"", 1], null, null]"
+,80,[],Durium Chain,Fire,,"[[""Durium Ingot"", 2]]","[[""Durium Chain"", 2], [""Durium Chain"", 3], [""Durium Chain"", 4]]"
+,80,[],Durium Chain,Fire,Chainwork,"[[""Durium Ingot"", 6], [""Mandrel"", 1]]","[[""Durium Chain"", 6], [""Durium Chain"", 9], [""Durium Chain"", 12]]"
+,80,[],Katzbalger,Fire,,"[[""Smithing Kit 80"", 1]]","[null, null, null]"
+,81,[],Darksteel Cuisses,Fire,,"[[""Darksteel Sheet"", 2], [""Ram Leather"", 1]]","[[""Darksteel Cuisses +1"", 1], null, null]"
+,81,[],Darksteel Gorget,Fire,,"[[""Darksteel Sheet"", 1], [""Ram Leather"", 1]]","[[""Darksteel Gorget +1"", 1], null, null]"
+,81,"[[""Leathercraft"", 21], [""Woodworking"", 18]]",Zweihander,Fire,,"[[""Chestnut Lumber"", 1], [""Darksteel Ingot"", 4], [""Mythril Ingot"", 1], [""Ram Leather"", 1]]","[[""Zweihander +1"", 1], null, null]"
+,82,"[[""Goldsmithing"", 51]]",Darksteel Armet,Fire,,"[[""Copper Ingot"", 1], [""Darksteel Sheet"", 2], [""Gold Ingot"", 1], [""Mercury"", 1], [""Sheep Leather"", 1]]","[[""Darksteel Armet +1"", 1], null, null]"
+,82,"[[""Goldsmithing"", 53], [""Woodworking"", 41]]",Darksteel Kilij,Fire,,"[[""Darksteel Ingot"", 2], [""Ebony Lumber"", 1], [""Garnet"", 1], [""Marid Leather"", 1], [""Platinum Ingot"", 2], [""Ruby"", 1]]","[[""Darksteel Kilij +1"", 1], null, null]"
+,82,[],Darksteel Maul,Fire,,"[[""Darksteel Ingot"", 2], [""Mahogany Lumber"", 1]]","[[""Darksteel Maul +1"", 1], null, null]"
+,82,[],Troll Bronze Sheet,Fire,,"[[""Troll Bronze Ingot"", 1]]","[null, null, null]"
+,83,[],Darksteel Nodowa,Earth,,"[[""Darksteel Sheet"", 1], [""Silk Thread"", 1]]","[[""Darksteel Nodowa +1"", 1], null, null]"
+,83,"[[""Woodworking"", 23]]",Darksteel Tabar,Fire,,"[[""Darksteel Ingot"", 3], [""Oak Lumber"", 1]]","[[""Darksteel Tabar +1"", 1], null, null]"
+,83,[],Mythril Heart,Fire,,"[[""Lockheart"", 1], [""Mythril Ingot"", 1]]","[[""Mythril Heart +1"", 1], null, null]"
+,83,[],Thick Sollerets,Earth,,"[[""Darksteel Sollerets"", 1], [""Steel Sheet"", 1]]","[[""Thick Sollerets +1"", 1], null, null]"
+,83,[],Windurstian Scythe,Fire,,"[[""Darksteel Ingot"", 1], [""Mercenary Captain's Scythe"", 1]]","[[""Federation Scythe"", 1], null, null]"
+,84,"[[""Goldsmithing"", 54]]",Darksteel Sabatons,Fire,,"[[""Darksteel Sheet"", 3], [""Gold Ingot"", 1], [""Mercury"", 1], [""Ram Leather"", 2]]","[[""Darksteel Sabatons +1"", 1], null, null]"
+,84,"[[""Woodworking"", 15]]",Kotetsu +1,Fire,,"[[""Iron Ingot"", 1], [""Kotetsu"", 1], [""Rosewood Lumber"", 1], [""Silver Thread"", 1]]","[[""Shinkotetsu"", 1], null, null]"
+,84,[],Thick Mufflers,Earth,,"[[""Darksteel Mufflers"", 1], [""Steel Sheet"", 1]]","[[""Thick Mufflers +1"", 1], null, null]"
+,84,"[[""Goldsmithing"", 42]]",Fuma Shuriken,Wind,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Mythril Sheet"", 1], [""Tama-Hagane"", 1]]","[[""Fuma Shuriken"", 66], [""Fuma Shuriken"", 99], [""Fuma Shuriken"", 99]]"
+,84,[],Thick Mufflers,Earth,,"[[""Smithing Kit 84"", 1]]","[null, null, null]"
+,85,"[[""Goldsmithing"", 37], [""Woodworking"", 7]]",Flanged Mace,Fire,,"[[""Iron Ingot"", 2], [""Darksteel Ingot"", 1], [""Mahogany Lumber"", 1], [""Gold Ingot"", 1], [""Smilodon Leather"", 1]]","[[""Flanged Mace +1"", 1], null, null]"
+,85,[],Adaman Sheet,Fire,,"[[""Adaman Ingot"", 1]]","[null, null, null]"
+,85,[],Adaman Sheet,Fire,Sheeting,"[[""Adaman Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,85,[],Musketeer Gun +1,Fire,,"[[""Darksteel Ingot"", 1], [""Musketeer Gun"", 1]]","[[""Musketeer Gun +2"", 1], null, null]"
+,86,[],Dark Adaman Ingot,Fire,,"[[""Adaman Ore"", 1], [""Darksteel Ore"", 2], [""Iron Ore"", 1]]","[null, null, null]"
+,86,"[[""Goldsmithing"", 45]]",Darksteel Gauntlets,Fire,,"[[""Darksteel Sheet"", 2], [""Gold Ingot"", 1], [""Leather Gloves"", 2], [""Mercury"", 1]]","[[""Darksteel Gauntlets +1"", 1], null, null]"
+,86,[],Thick Breeches,Earth,,"[[""Darksteel Breeches"", 1], [""Mythril Chain"", 1]]","[[""Thick Breeches +1"", 1], null, null]"
+,87,[],Celata,Fire,,"[[""Copper Ingot"", 1], [""Darksteel Chain"", 1], [""Darksteel Sheet"", 1], [""Sheep Leather"", 1], [""Steel Sheet"", 1]]","[[""Celata +1"", 1], null, null]"
+,87,"[[""Goldsmithing"", 49]]",Darksteel Cuirass,Fire,,"[[""Darksteel Sheet"", 4], [""Gold Ingot"", 1], [""Mercury"", 1], [""Ram Leather"", 2]]","[[""Darksteel Cuirass +1"", 1], null, null]"
+,87,"[[""Goldsmithing"", 56], [""Woodworking"", 11]]",Izayoi,Fire,,"[[""Aht Urhgan Brass Ingot"", 1], [""Copper Ingot"", 1], [""Elm Lumber"", 1], [""Imperial Wootz Ingot"", 1], [""Manta Leather"", 1], [""Rainbow Thread"", 1]]","[[""Izayoi +1"", 1], null, null]"
+,87,"[[""Goldsmithing"", 51]]",Rising Sun,Wind,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Tama-Hagane"", 1]]","[[""Rising Sun +1"", 1], null, null]"
+,88,[],Colossal Axe,Fire,,"[[""Gigant Axe"", 1], [""Steel Ingot"", 1]]","[[""Colossal Axe +1"", 1], null, null]"
+,88,"[[""Goldsmithing"", 55]]",Hayabusa,Fire,,"[[""Imperial Wootz Ingot"", 1], [""Manta Leather"", 1], [""Scintillant Ingot"", 1]]","[[""Hayabusa +1"", 1], null, null]"
+,88,"[[""Woodworking"", 31]]",Heavy Darksteel Axe,Fire,,"[[""Darksteel Ingot"", 3], [""Mahogany Lumber"", 1]]","[[""Massive Darksteel Axe"", 1], null, null]"
+,88,"[[""Woodworking"", 15]]",Kanesada +1,Fire,,"[[""Kanesada"", 1], [""Rosewood Lumber"", 1], [""Silver Thread"", 1], [""Steel Ingot"", 1]]","[[""Shinkanesada"", 1], null, null]"
+,89,[],Dark Adaman Sheet,Fire,,"[[""Dark Adaman Ingot"", 1]]","[null, null, null]"
+,89,[],Dark Adaman Sheet,Fire,Sheeting,"[[""Dark Adaman Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,89,"[[""Clothcraft"", 38]]",Hauberk,Earth,,"[[""Darksteel Chain"", 1], [""Haubergeon"", 1], [""Silk Cloth"", 1], [""Steel Sheet"", 1], [""Velvet Cloth"", 1]]","[[""Hauberk +1"", 1], null, null]"
+,89,"[[""Goldsmithing"", 54]]",Hellfire,Fire,,"[[""Brass Ingot"", 1], [""Darksteel Ingot"", 2], [""Gold Ingot"", 1], [""Walnut Lumber"", 1]]","[[""Hellfire +1"", 1], null, null]"
+,89,"[[""Leathercraft"", 40], [""Woodworking"", 4]]",Zanbato,Fire,,"[[""Ash Lumber"", 1], [""Copper Ingot"", 1], [""Cotton Thread"", 1], [""Darksteel Ingot"", 2], [""Iron Ingot"", 1], [""Raptor Skin"", 1], [""Tama-Hagane"", 1]]","[[""Zanbato +1"", 1], null, null]"
+,89,[],Dark Adaman Bolt Heads,Wind,,"[[""Dark Adaman Ingot"", 1]]","[[""Dark Adaman Bolt Heads"", 8], [""Dark Adaman Bolt Heads"", 10], [""Dark Adaman Bolt Heads"", 12]]"
+,90,[],Adaman Ingot,Fire,,"[[""Adaman Ore"", 3], [""Iron Ore"", 1]]","[null, null, null]"
+,90,"[[""Woodworking"", 44], [""Leathercraft"", 23]]",Flamberge,Fire,,"[[""Cockatrice Skin"", 1], [""Darksteel Ingot"", 6], [""Mahogany Lumber"", 1]]","[[""Flamberge +1"", 1], null, null]"
+,90,"[[""Goldsmithing"", 58], [""Leathercraft"", 4]]",General's Shield,Fire,,"[[""Darksteel Sheet"", 3], [""Gold Ingot"", 1], [""Mercury"", 1], [""Mythril Sheet"", 1], [""Platinum Sheet"", 1], [""Sheep Leather"", 1]]","[[""Admiral's Shield"", 1], null, null]"
+,90,[],Frigid Core,Fire,Metal Ensorcellment,"[[""Adaman Ore"", 3], [""Dark Anima"", 1], [""Ice Anima"", 2], [""Iron Ore"", 1]]","[null, null, null]"
+,90,[],Inferno Core,Fire,Metal Ensorcellment,"[[""Adaman Ore"", 3], [""Dark Anima"", 1], [""Fire Anima"", 2], [""Iron Ore"", 1]]","[null, null, null]"
+,90,[],Luminous Core,Fire,Metal Ensorcellment,"[[""Adaman Ore"", 3], [""Dark Anima"", 1], [""Lightning Anima"", 2], [""Iron Ore"", 1]]","[null, null, null]"
+,90,[],Spirit Core,Fire,Metal Ensorcellment,"[[""Adaman Ore"", 3], [""Dark Anima"", 1], [""Earth Anima"", 2], [""Iron Ore"", 1]]","[null, null, null]"
+,90,[],Midrium Bolt Heads,Wind,,"[[""Midrium Ingot"", 1]]","[[""Midrium Bolt Heads"", 8], [""Midrium Bolt Heads"", 10], [""Midrium Bolt Heads"", 12]]"
+,90,[],Kunwu Iron,Fire,,"[[""Darksteel Ore"", 1], [""Kunwu Ore"", 3]]","[null, null, null]"
+,91,[],Adaman Ingot,Fire,,"[[""Adaman Nugget"", 6], [""Adaman Ore"", 1]]","[null, null, null]"
+,91,"[[""Goldsmithing"", 45], [""Woodworking"", 42]]",Adaman Sainti,Fire,,"[[""Adaman Ingot"", 1], [""Brass Ingot"", 1], [""Ebony Lumber"", 1], [""Gold Ingot"", 2], [""Mercury"", 1]]","[[""Gem Sainti"", 1], null, null]"
+,91,[],Gully,Fire,,"[[""Adaman Ingot"", 1], [""Mahogany Lumber"", 1]]","[[""Gully +1"", 1], null, null]"
+,91,[],Jadagna,Fire,,"[[""Jadagna -1"", 1], [""Troll Bronze Ingot"", 2]]","[[""Jadagna +1"", 1], null, null]"
+,91,"[[""Goldsmithing"", 42]]",Koenigs Knuckles,Fire,,"[[""Darksteel Sheet"", 1], [""Diamond Knuckles"", 1], [""Gold Ingot"", 1], [""Mercury"", 1]]","[[""Kaiser Knuckles"", 1], null, null]"
+,91,[],Molybdenum Ingot,Fire,,"[[""Iron Ore"", 3], [""Molybdenum Ore"", 1]]","[null, null, null]"
+,91,"[[""Goldsmithing"", 40], [""Leathercraft"", 30]]",Ebon Leggings,Fire,,"[[""Drk. Adm. Sheet"", 2], [""Wool Thread"", 1], [""Ram Leather"", 1], [""Scintillant Ingot"", 1], [""Iridium Ingot"", 1]]","[null, null, null]"
+,91,[],Bewitched Sollerets,Earth,,"[[""Cursed Sollerets -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Sollerets"", 1], null, null]"
+,91,[],Vexed Sune-Ate,Fire,,"[[""Hexed Sune-Ate -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Sune-Ate"", 1], null, null]"
+,91,[],Gully,Fire,,"[[""Smithing Kit 91"", 1]]","[null, null, null]"
+,92,[],Adaman Scales,Wind,,"[[""Adaman Sheet"", 1]]","[null, null, null]"
+,92,"[[""Leathercraft"", 44]]",Cursed Breeches,Earth,,"[[""Adaman Chain"", 1], [""Darksteel Chain"", 1], [""Linen Cloth"", 1], [""Tiger Leather"", 2]]","[[""Cursed Breeches -1"", 1], null, null]"
+,92,"[[""Clothcraft"", 45]]",Hachiman Jinpachi,Wind,,"[[""Adaman Chain"", 1], [""Kejusu Satin"", 1], [""Silk Cloth"", 1], [""Steel Sheet"", 1], [""Urushi"", 1]]","[[""Hachiman Jinpachi +1"", 1], null, null]"
+,92,[],Misericorde,Fire,,"[[""Adaman Ingot"", 1], [""Darksteel Ingot"", 1]]","[[""Misericorde +1"", 1], null, null]"
+,92,[],Molybdenum Sheet,Fire,,"[[""Molybdenum Ingot"", 1]]","[null, null, null]"
+,92,[],Adaman Bolt Heads,Wind,,"[[""Adaman Ingot"", 1]]","[[""Adaman Bolt Heads"", 8], [""Adaman Bolt Heads"", 10], [""Adaman Bolt Heads"", 12]]"
+,92,[],Bewitched Mufflers,Earth,,"[[""Cursed Mufflers -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Mufflers"", 1], null, null]"
+,93,"[[""Leathercraft"", 47]]",Black Cuisses,Fire,,"[[""Darksteel Sheet"", 1], [""Kunwu Sheet"", 1], [""Tiger Leather"", 2]]","[[""Onyx Cuisses"", 1], null, null]"
+,93,"[[""Goldsmithing"", 23]]",Cursed Sollerets,Earth,,"[[""Adaman Chain"", 1], [""Adaman Sheet"", 1], [""Brass Ingot"", 1], [""Thick Sollerets"", 1]]","[[""Cursed Sollerets -1"", 1], null, null]"
+,93,"[[""Alchemy"", 59], [""Woodworking"", 19]]",Death Scythe,Fire,,"[[""Darksteel Ingot"", 3], [""Fiend Blood"", 1], [""Grass Cloth"", 1], [""Steel Ingot"", 1], [""Yew Lumber"", 1]]","[[""Death Scythe +1"", 1], null, null]"
+,93,"[[""Leathercraft"", 46]]",Hachiman Kote,Fire,,"[[""Darksteel Chain"", 2], [""Darksteel Sheet"", 2], [""Gold Ingot"", 1], [""Tiger Leather"", 1], [""Viridian Urushi"", 1]]","[[""Hachiman Kote +1"", 1], null, null]"
+,93,"[[""Goldsmithing"", 49], [""Woodworking"", 13]]",Nadziak,Fire,,"[[""Adaman Ingot"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Oak Lumber"", 1]]","[[""Nadziak +1"", 1], null, null]"
+,93,"[[""Clothcraft"", 58]]",Yasha Jinpachi,Wind,,"[[""Darksteel Chain"", 1], [""Darksteel Sheet"", 1], [""Kejusu Satin"", 2]]","[[""Yasha Jinpachi +1"", 1], null, null]"
+,93,"[[""Goldsmithing"", 40], [""Leathercraft"", 25]]",Ebon Gauntlets,Fire,,"[[""Drk. Adm. Sheet"", 2], [""Studded Gloves"", 1], [""Scintillant Ingot"", 1], [""Iridium Ingot"", 1]]","[null, null, null]"
+,93,[],Midrium Ingot,Fire,,"[[""Midrium Ore"", 4]]","[null, null, null]"
+,93,[],Kunwu Iron Sheet,Fire,,"[[""Kunwu Iron"", 1]]","[null, null, null]"
+,93,[],Ra'Kaznar Arrowheads,Wind,,"[[""Steel Ingot"", 1], [""Ra'Kaznar Ingot"", 1]]","[[""Ra'Kaznar Arrowheads"", 8], [""Ra'Kaznar Arrowheads"", 10], [""Ra'Kaznar Arrowheads"", 12]]"
+,93,[],Bewitched Breeches,Earth,,"[[""Cursed Breeches -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Breeches"", 1], null, null]"
+,94,"[[""Goldsmithing"", 51]]",Barone Manopolas,Earth,,"[[""Adaman Sheet"", 2], [""Buffalo Leather"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Scarlet Linen"", 2]]","[[""Conte Manopolas"", 1], null, null]"
+,94,"[[""Goldsmithing"", 23]]",Cursed Mufflers,Earth,,"[[""Adaman Sheet"", 1], [""Brass Ingot"", 1], [""Thick Mufflers"", 1]]","[[""Cursed Mufflers -1"", 1], null, null]"
+,94,[],Adaman Chain,Earth,,"[[""Adaman Ingot"", 2]]","[[""Adaman Chain"", 2], [""Adaman Chain"", 3], [""Adaman Chain"", 4]]"
+,94,[],Adaman Chain,Earth,Chainwork,"[[""Adaman Ingot"", 6], [""Mandrel"", 1]]","[[""Adaman Chain"", 6], [""Adaman Chain"", 9], [""Adaman Chain"", 12]]"
+,94,[],Anelace,Fire,,"[[""Adaman Ingot"", 2], [""Cockatrice Skin"", 1], [""Gold Ingot"", 1], [""Mercury"", 1]]","[[""Anelace +1"", 1], null, null]"
+,94,[],Black Sollerets,Fire,,"[[""Darksteel Sheet"", 2], [""Kunwu Sheet"", 1], [""Tiger Ledelsens"", 1]]","[[""Onyx Sollerets"", 1], null, null]"
+,94,[],Ponderous Gully,Fire,,"[[""Spirit Core"", 1], [""Gully"", 1]]","[null, null, null]"
+,94,[],Tzustes Knife,Fire,,"[[""Midrium Ingot"", 1], [""Urunday Lumber"", 1]]","[[""Tzustes Knife +1"", 1], null, null]"
+,94,[],Bewitched Celata,Fire,,"[[""Cursed Celata -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Celata"", 1], null, null]"
+,94,[],Vexed Somen,Fire,,"[[""Hexed Somen -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Somen"", 1], null, null]"
+,94,[],Anelace,Fire,,"[[""Smithing Kit 94"", 1]]","[null, null, null]"
+,95,"[[""Goldsmithing"", 18]]",Ritter Shield,Earth,,"[[""Adaman Sheet"", 2], [""Ash Lumber"", 1], [""Brass Sheet"", 1], [""Sheep Leather"", 1]]","[[""Ritter Shield +1"", 1], null, null]"
+,95,"[[""Goldsmithing"", 60], [""Leathercraft"", 35]]",Barone Corazza,Earth,,"[[""Buffalo Leather"", 1], [""Darksteel Sheet"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Molybdenum Sheet"", 1], [""Orichalcum Chain"", 1], [""Scarlet Linen"", 1], [""Water Bead"", 1]]","[[""Conte Corazza"", 1], null, null]"
+,95,"[[""Goldsmithing"", 44], [""Woodworking"", 43]]",Bhuj,Fire,,"[[""Darksteel Ingot"", 2], [""Ebony Lumber"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Steel Ingot"", 1]]","[[""Bhuj +1"", 1], null, null]"
+,95,[],Black Gadlings,Fire,,"[[""Darksteel Sheet"", 1], [""Kunwu Sheet"", 1], [""Tiger Gloves"", 1]]","[[""Onyx Gadlings"", 1], null, null]"
+,95,"[[""Goldsmithing"", 26]]",Cursed Celata,Fire,,"[[""Adaman Chain"", 1], [""Adaman Sheet"", 1], [""Brass Sheet"", 1], [""Copper Ingot"", 1], [""Sheep Leather"", 1]]","[[""Cursed Celata -1"", 1], null, null]"
+,95,"[[""Goldsmithing"", 52], [""Clothcraft"", 41]]",Hachiman Sune-Ate,Fire,,"[[""Adaman Ingot"", 1], [""Darksteel Sheet"", 2], [""Gold Ingot"", 1], [""Mercury"", 1], [""Rainbow Thread"", 1], [""Tiger Leather"", 1], [""Velvet Cloth"", 1]]","[[""Hachiman Sune-Ate +1"", 1], null, null]"
+,95,"[[""Woodworking"", 41]]",Adaman Kilij,Fire,,"[[""Adaman Ingot"", 2], [""Ebony Lumber"", 1], [""Aquamarine"", 1], [""Deathstone"", 1], [""Marid Leather"", 1], [""Scintillant Ingot"", 2]]","[[""Adaman Kilij +1"", 1], null, null]"
+,95,"[[""Goldsmithing"", 40]]",Ebon Armet,Fire,,"[[""Drk. Adm. Sheet"", 2], [""Scintillant Ingot"", 2], [""Iridium Ingot"", 1]]","[null, null, null]"
+,95,[],Bihkah Sword,Fire,,"[[""Peiste Leather"", 1], [""Midrium Ingot"", 2]]","[[""Bihkah Sword +1"", 1], null, null]"
+,95,[],Butznar Shield,Fire,,"[[""Darksteel Sheet"", 1], [""Urunday Lumber"", 1], [""Midrium Sheet"", 2]]","[[""Butznar Shield +1"", 1], null, null]"
+,95,[],Titanium Sheet,Fire,,"[[""Titanium Ingot"", 1]]","[null, null, null]"
+,95,[],Titanium Sheet,Fire,Sheeting,"[[""Titanium Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,95,[],Bewitched Hauberk,Earth,,"[[""Cursed Hauberk -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Hauberk"", 1], null, null]"
+,95,[],Vexed Domaru,Fire,,"[[""Hexed Domaru -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Domaru"", 1], null, null]"
+,96,"[[""Goldsmithing"", 55]]",Black Sallet,Fire,,"[[""Copper Ingot"", 1], [""Darksteel Sheet"", 1], [""Kunwu Sheet"", 1], [""Ocl. Ingot"", 1], [""Sheep Leather"", 1]]","[[""Onyx Sallet"", 1], null, null]"
+,96,"[[""Clothcraft"", 48], [""Goldsmithing"", 30]]",Cursed Hauberk,Earth,,"[[""Adaman Chain"", 1], [""Adaman Sheet"", 1], [""Brass Ingot"", 1], [""Gold Thread"", 1], [""Hauberk"", 1], [""Rainbow Cloth"", 1], [""Sheep Leather"", 1], [""Southern Pearl"", 1]]","[[""Cursed Hauberk -1"", 1], null, null]"
+,96,"[[""Leathercraft"", 38]]",Hachiman Domaru,Fire,,"[[""Adaman Sheet"", 1], [""Darksteel Scales"", 2], [""Darksteel Chain"", 2], [""Gold Thread"", 1], [""Tiger Leather"", 1], [""Viridian Urushi"", 1]]","[[""Hachiman Domaru +1"", 1], null, null]"
+,96,[],Januwiyah,Earth,,"[[""Januwiyah -1"", 1], [""Troll Bronze Sheet"", 2]]","[[""Januwiyah +1"", 1], null, null]"
+,96,[],Scepter,Fire,,"[[""Adaman Ingot"", 2], [""Darksteel Ingot"", 1], [""Gold Ingot"", 1], [""Mercury"", 1]]","[[""Scepter +1"", 1], null, null]"
+,97,"[[""Leathercraft"", 48]]",Nagan,Fire,,"[[""Adaman Ingot"", 6], [""Mahogany Lumber"", 1], [""Gold Ingot"", 1], [""Wyvern Skin"", 1]]","[[""Nagan +1"", 1], null, null]"
+,96,[],Uruz Blade,Fire,,"[[""Lizard Skin"", 1], [""Midrium Ingot"", 4], [""Urunday Lumber"", 1], [""Twitherym Scale"", 1]]","[[""Uruz Blade +1"", 1], null, null]"
+,96,[],Nohkux Axe,Fire,,"[[""Midrium Ingot"", 2], [""Rhodium Ingot"", 1], [""Urunday Lumber"", 1]]","[[""Nohkux Axe +1"", 1], null, null]"
+,96,[],Midrium Sheet,Fire,,"[[""Midrium Ingot"", 1]]","[null, null, null]"
+,96,[],Midrium Sheet,Fire,Sheeting,"[[""Midrium Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,96,[],Enju,Fire,,"[[""Tama-Hagane"", 1], [""Ancient Lumber"", 1], [""Cotton Thread"", 1], [""Raptor Skin"", 1], [""Midrium Ingot"", 1], [""Mantid Carapace"", 1]]","[[""Enju +1"", 1], null, null]"
+,96,[],Tomonari,Fire,,"[[""Tama-Hagane"", 1], [""Ancient Lumber"", 1], [""Manta Leather"", 1], [""Scintillant Ingot"", 1], [""Wamoura Silk"", 1], [""Midrium Ingot"", 2], [""Mantid Carapace"", 1]]","[[""Tomonari +1"", 1], null, null]"
+,96,"[[""Woodworking"", 60]]",Aalak' Axe,Fire,,"[[""Darksteel Ingot"", 2], [""Midrium Ingot"", 1], [""Urunday Lumber"", 1]]","[[""Aalak' Axe +1"", 1], null, null]"
+,97,"[[""Goldsmithing"", 58]]",Adaman Cuisses,Fire,,"[[""Adaman Sheet"", 1], [""Darksteel Sheet"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Tiger Leather"", 1]]","[[""Gem Cuisses"", 1], null, null]"
+,97,[],Relic Steel,Fire,,"[[""Relic Iron"", 2]]","[null, null, null]"
+,97,"[[""Goldsmithing"", 59], [""Leathercraft"", 39]]",Plastron,Fire,,"[[""Darksteel Sheet"", 2], [""Darksteel Chain"", 1], [""Orichalcum Ingot"", 1], [""Tiger Leather"", 2], [""Kunwu Iron"", 1], [""Kunwu Sheet"", 1]]","[[""Plastron +1"", 1], null, null]"
+,97,[],Pealing Anelace,Fire,,"[[""Luminous Core"", 1], [""Anelace"", 1]]","[null, null, null]"
+,97,"[[""Goldsmithing"", 60], [""Leathercraft"", 30]]",Ebon Hose,Fire,,"[[""Drk. Adm. Sheet"", 2], [""Ram Leather"", 2], [""Iridium Ingot"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
+,97,[],Bandeiras Gun,Fire,,"[[""Brass Ingot"", 1], [""Walnut Lumber"", 1], [""Midrium Ingot"", 1], [""Rhodium Ingot"", 1]]","[[""Bandeiras Gun +1"", 1], null, null]"
+,97,[],Hatzoaar Sword,Fire,,"[[""Peiste Leather"", 1], [""Midrium Ingot"", 4], [""Urunday Lumber"", 1]]","[[""Hatzoaar Sword +1"", 1], null, null]"
+,97,[],Damascus Bolt Heads,Wind,,"[[""Damascus Ingot"", 1]]","[[""Damascus Bolt Heads"", 8], [""Damascus Bolt Heads"", 10], [""Damascus Bolt Heads"", 12]]"
+,97,[],Gefechtdiechlings,Fire,,"[[""Buffalo Leather"", 1], [""Cerberus Leather"", 1], [""Largantua's Shard"", 1], [""Jester Malatrix's Shard"", 1]]","[[""Wildheitdiechlings"", 1], null, null]"
+,98,[],Buzdygan,Fire,,"[[""Adaman Ingot"", 3], [""Gold Ingot"", 1], [""Mercury"", 1]]","[[""Buzdygan +1"", 1], null, null]"
+,98,[],Manoples,Fire,,"[[""Adaman Ingot"", 2], [""Darksteel Sheet"", 1], [""Carbon Fiber"", 1], [""Scintillant Ingot"", 1]]","[[""Manoples +1"", 1], null, null]"
+,98,"[[""Goldsmithing"", 60]]",Adaman Barbuta,Fire,,"[[""Adaman Sheet"", 1], [""Darksteel Sheet"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Sheep Leather"", 1], [""Copper Ingot"", 1]]","[[""Gem Barbuta"", 1], null, null]"
+,98,[],Kaskara,Fire,,"[[""Adaman Ingot"", 3], [""Bugard Leather"", 1]]","[[""Kaskara +1"", 1], null, null]"
+,98,[],Cursed Cuishes,Fire,,"[[""Orichalcum Sheet"", 1], [""Drk. Adm. Sheet"", 1], [""Marid Leather"", 1], [""Scintillant Ingot"", 1], [""Rubber Chausses"", 1]]","[[""Cursed Cuishes -1"", 1], null, null]"
+,98,[],Iga Shuriken,Wind,,"[[""Tama-Hagane"", 1], [""Gold Ingot"", 1], [""Palladian Brass Sheet"", 1], [""Mercury"", 1]]","[[""Iga Shuriken"", 66], [""Iga Shuriken"", 99], [""Iga Shuriken"", 99]]"
+,98,[],Thokcha Ingot,Fire,,"[[""Thokcha Ore"", 4]]","[null, null, null]"
+,98,[],Aak'ab Scythe,Fire,,"[[""Darksteel Ingot"", 2], [""Mohbwa Cloth"", 1], [""Rhodium Ingot"", 2], [""Urunday Lumber"", 1], [""Umbril Ooze"", 1]]","[[""Aak'ab Scythe +1"", 1], null, null]"
+,98,[],Gefechtschaller,Fire,,"[[""Orichalcum Ingot"", 1], [""Mercury"", 1], [""Cerberus Leather"", 1], [""Scintillant Ingot"", 1], [""Umbril Ooze"", 1], [""Largantua's Shard"", 1], [""Jester Malatrix's Shard"", 1]]","[[""Wildheitschaller"", 1], null, null]"
+,98,[],Dashing Subligar,Light,,"[[""Stinky Subligar"", 1]]","[null, null, null]"
+,99,"[[""Goldsmithing"", 52], [""Woodworking"", 33]]",Tabarzin,Fire,,"[[""Adaman Ingot"", 2], [""Gold Ingot"", 1], [""Darksteel Ingot"", 1], [""Mahogany Lumber"", 1], [""Mercury"", 1]]","[[""Tabarzin +1"", 1], null, null]"
+,99,[],Wootz Ingot,Fire,,"[[""Wootz Ore"", 1], [""Rosewood Lumber"", 1], [""Steel Ingot"", 1]]","[null, null, null]"
+,99,"[[""Goldsmithing"", 51], [""Woodworking"", 48]]",Toporok,Fire,,"[[""Adaman Ingot"", 3], [""Ebony Lumber"", 1], [""Gold Ingot"", 1], [""Painite"", 2], [""Mercury"", 1]]","[[""Toporok +1"", 1], null, null]"
+,99,[],Imperial Wootz Ingot,Fire,,"[[""Iron Ore"", 1], [""Khroma Ore"", 2], [""Wootz Ore"", 1]]","[null, null, null]"
+,99,"[[""Goldsmithing"", 60]]",Cursed Helm,Fire,,"[[""Copper Ingot"", 1], [""Orichalcum Sheet"", 1], [""Karakul Leather"", 1], [""Drk. Adm. Sheet"", 1], [""Scintillant Ingot"", 1], [""Rubber Cap"", 1]]","[[""Cursed Helm -1"", 1], null, null]"
+,99,"[[""Goldsmithing"", 30]]",Bronze Rose,Fire,,"[[""Imperial Wootz Ingot"", 1], [""Drk. Adm. Sheet"", 1], [""Troll Bronze Sheet"", 1], [""Aht Urhgan Brass Ingot"", 1]]","[null, null, null]"
+,100,"[[""Goldsmithing"", 59]]",Adaman Sabatons,Fire,,"[[""Darksteel Sheet"", 2], [""Adaman Sheet"", 1], [""Gold Ingot"", 1], [""Tiger Leather"", 2], [""Mercury"", 1]]","[[""Gem Sabatons"", 1], null, null]"
+,100,"[[""Leathercraft"", 51], [""Woodworking"", 44]]",Butachi,Fire,,"[[""Adaman Ingot"", 2], [""Ancient Lumber"", 1], [""Brass Ingot"", 1], [""Cotton Thread"", 1], [""Darksteel Ingot"", 1], [""Manta Leather"", 1], [""Tama-Hagane"", 1]]","[[""Butachi +1"", 1], null, null]"
+,100,"[[""Woodworking"", 51], [""Goldsmithing"", 29]]",Culverin,Fire,,"[[""Adaman Ingot"", 1], [""Brass Ingot"", 1], [""Darksteel Ingot"", 2], [""Mahogany Lumber"", 1]]","[[""Culverin +1"", 1], null, null]"
+,100,[],Pealing Nagan,Fire,,"[[""Luminous Core"", 1], [""Nagan"", 1]]","[null, null, null]"
+,100,"[[""Goldsmithing"", 60]]",Mythril Bell,Fire,,"[[""Mythril Ingot"", 4], [""Tin Ingot"", 1], [""Manticore Hair"", 1], [""Molybdenum Ingot"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
+,100,[],Gorkhali Kukri,Fire,,"[[""Ancient Lumber"", 1], [""Thokcha Ingot"", 1], [""Griffon Leather"", 1]]","[[""Mahakali's Kukri"", 1], null, null]"
+,100,"[[""Goldsmithing"", 50]]",Etourdissante,Fire,,"[[""Chestnut Lumber"", 1], [""Palladian Brass Ingot"", 1], [""Durium Ingot"", 4], [""Buffalo Leather"", 1], [""Paralyze Potion"", 1]]","[[""Etourdissante +1"", 1], null, null]"
+,100,[],Aisa,Fire,,"[[""Copper Ingot"", 1], [""Tama-Hagane"", 1], [""Elm Lumber"", 1], [""Thokcha Ingot"", 1], [""Behemoth Leather"", 1], [""Khimaira Mane"", 1]]","[[""Aisa +1"", 1], null, null]"
+,100,"[[""Goldsmithing"", 60]]",Ebon Breastplate,Fire,,"[[""Dark Adaman Sheet"", 2], [""Scintillant Ingot"", 2], [""Orichalcum Sheet"", 2], [""Iridium Ingot"", 1]]","[null, null, null]"
+,100,[],Thurisaz Blade,Fire,,"[[""Lizard Skin"", 1], [""Rhodium Ingot"", 4], [""Urunday Lumber"", 1], [""Twitherym Scale"", 1]]","[[""Thurisaz Blade +1"", 1], null, null]"
+,100,[],Titanium Ingot,Fire,,"[[""Titanium Ore"", 4]]","[null, null, null]"
+,100,[],Roppo Shuriken,Wind,,"[[""Tama-Hagane"", 1], [""Mercury"", 1], [""Titanium Sheet"", 1]]","[[""Roppo Shuriken"", 66], [""Roppo Shuriken"", 99], [""Roppo Shuriken +1"", 99]]"
+,101,"[[""Goldsmithing"", 60]]",Cursed Sabatons,Fire,,"[[""Orichalcum Sheet"", 1], [""Dark Adaman Sheet"", 2], [""Marid Leather"", 2], [""Scintillant Ingot"", 1], [""Rubber Soles"", 1]]","[[""Cursed Sabatons -1"", 1], null, null]"
+,101,"[[""Goldsmithing"", 60]]",Winged Plaque,Fire,,"[[""Steel Sheet"", 2], [""Blessed Mythril Sheet"", 2], [""Orichalcum Sheet"", 1], [""Platinum Sheet"", 1], [""Sapphire"", 1], [""Scintillant Ingot"", 1]]","[null, null, null]"
+,101,"[[""Bonecraft"", 60]]",Apaisante,Fire,,"[[""Buffalo Horn"", 1], [""Thokcha Ingot"", 2]]","[[""Apaisante +1"", 1], null, null]"
+,101,[],Firnaxe,Fire,,"[[""Darksteel Ingot"", 1], [""Thokcha Ingot"", 1], [""Heavy Darksteel Axe"", 1]]","[[""Firnaxe +1"", 1], null, null]"
+,101,[],Bismuth Ingot,Fire,,"[[""Tin Ore"", 1], [""Zinc Ore"", 1], [""Bismuth Ore"", 2]]","[null, null, null]"
+,101,[],Shabti Cuisses,Fire,,"[[""Gold Ingot"", 1], [""Ram Leather"", 1], [""Bismuth Sheet"", 2]]","[[""Shabti Cuisses +1"", 1], null, null]"
+,101,[],Gefechtschuhs,Fire,,"[[""Orichalcum Ingot"", 1], [""Mercury"", 1], [""Buffalo Leather"", 1], [""Cerberus Leather"", 1], [""Largantua's Shard"", 1], [""Jester Malatrix's Shard"", 1]]","[[""Wildheitschuhs"", 1], null, null]"
+,102,"[[""Goldsmithing"", 60]]",Adaman Gauntlets,Fire,,"[[""Darksteel Sheet"", 1], [""Adaman Sheet"", 1], [""Gold Ingot"", 1], [""Leather Gloves"", 2], [""Mercury"", 1]]","[[""Gem Gauntlets"", 1], null, null]"
+,102,"[[""Goldsmithing"", 37]]",Adaman Kris,Fire,,"[[""Adaman Ingot"", 1], [""Deathstone"", 1], [""Gold Ingot"", 1]]","[[""Adaman Kris +1"", 1], null, null]"
+,102,"[[""Leathercraft"", 55], [""Woodworking"", 24]]",Sasanuki,Fire,,"[[""Tama-Hagane"", 1], [""Ancient Lumber"", 1], [""Thokcha Ingot"", 2], [""Gold Ingot"", 1], [""Rainbow Thread"", 1], [""Scintillant Ingot"", 1], [""Smilodon Leather"", 1]]","[[""Sasanuki +1"", 1], null, null]"
+,102,[],Titanium Bolt Heads,Wind,,"[[""Titanium Ingot"", 1]]","[[""Titanium Bolt Heads"", 8], [""Titanium Bolt Heads"", 10], [""Titanium Bolt Heads"", 12]]"
+,102,[],Bismuth Sheet,Fire,,"[[""Bismuth Ingot"", 1]]","[null, null, null]"
+,102,[],Bismuth Sheet,Fire,Sheeting,"[[""Bismuth Ingot"", 6], [""Workshop Anvil"", 1]]","[null, null, null]"
+,102,[],Ra'Kaznar Ingot,Fire,,"[[""Darksteel Ore"", 3], [""Ra'Kaznar Ore"", 1]]","[null, null, null]"
+,102,[],Gefechthentzes,Fire,,"[[""Orichalcum Ingot"", 1], [""Mercury"", 1], [""Largantua's Shard"", 1], [""Jester Malatrix's Shard"", 1], [""Leather Gloves"", 2]]","[[""Wildheithentzes"", 1], null, null]"
+,102,[],Arasy Knife,Fire,,"[[""Bloodwood Lumber"", 1], [""Bismuth Ingot"", 1]]","[[""Arasy Knife +1"", 1], null, null]"
+,102,[],Arasy Sainti,Fire,,"[[""Adaman Ingot"", 1], [""Ebony Lumber"", 1], [""Bismuth Ingot"", 1]]","[[""Arasy Sainti +1"", 1], null, null]"
+,102,[],Arasy Sword,Fire,,"[[""Adaman Ingot"", 1], [""Wyvern Skin"", 1], [""Electrum Ingot"", 1], [""Bismuth Ingot"", 1]]","[[""Arasy Sword +1"", 1], null, null]"
+,102,[],Arasy Claymore,Fire,,"[[""Adaman Ingot"", 2], [""Ebony Lumber"", 1], [""Wyvern Skin"", 1], [""Bismuth Ingot"", 1]]","[[""Arasy Claymore +1"", 1], null, null]"
+,102,[],Arasy Tabar,Fire,,"[[""Adaman Ingot"", 1], [""Ebony Lumber"", 1], [""Electrum Ingot"", 1], [""Bismuth Ingot"", 1]]","[[""Arasy Tabar +1"", 1], null, null]"
+,102,[],Arasy Axe,Fire,,"[[""Adaman Ingot"", 1], [""Ebony Lumber"", 1], [""Deathstone"", 1], [""Electrum Ingot"", 1], [""Bismuth Ingot"", 1]]","[[""Arasy Axe +1"", 1], null, null]"
+,102,[],Yoshikiri,Fire,,"[[""Tama-Hagane"", 1], [""Ebony Lumber"", 1], [""Rainbow Thread"", 1], [""Wyvern Skin"", 1], [""Bismuth Ingot"", 1]]","[[""Yoshikiri +1"", 1], null, null]"
+,102,[],Ashijiro No Tachi,Fire,,"[[""Adaman Ingot"", 1], [""Tama-Hagane"", 1], [""Ebony Lumber"", 1], [""Rainbow Thread"", 1], [""Wyvern Skin"", 1], [""Bismuth Ingot"", 1]]","[[""Ashijiro No Tachi +1"", 1], null, null]"
+,102,[],Arasy Rod,Fire,,"[[""Adaman Ingot"", 1], [""Electrum Ingot"", 1], [""Bismuth Ingot"", 1]]","[[""Arasy Rod +1"", 1], null, null]"
+,102,[],Arasy Gun,Fire,,"[[""Darksteel Ingot"", 1], [""Adaman Ingot"", 1], [""Ebony Lumber"", 1], [""Bismuth Ingot"", 1]]","[[""Arasy Gun +1"", 1], null, null]"
+,103,"[[""Woodworking"", 45]]",Breidox,Fire,,"[[""Thokcha Ingot"", 2], [""Dark Adaman Ingot"", 1], [""Rosewood Lumber"", 1]]","[[""Breidox +1"", 1], null, null]"
+,103,"[[""Goldsmithing"", 60]]",Cursed Gauntlets,Fire,,"[[""Orichalcum Sheet"", 1], [""Dark Adaman Sheet"", 1], [""Leather Gloves"", 2], [""Scintillant Ingot"", 1], [""Rubber Gloves"", 1]]","[[""Cursed Gauntlets -1"", 1], null, null]"
+,103,"[[""Goldsmithing"", 60]]",Adaman Cuirass,Fire,,"[[""Darksteel Sheet"", 2], [""Adaman Sheet"", 2], [""Gold Ingot"", 1], [""Tiger Leather"", 2], [""Mercury"", 1]]","[[""Gem Cuirass"", 1], null, null]"
+,103,[],Damascus Ingot,Fire,,"[[""Relic Iron"", 1], [""Wootz Ore"", 1], [""Vanadium Ore"", 2]]","[null, null, null]"
+,103,[],Bismuth Bolt Heads,Wind,,"[[""Bismuth Ingot"", 1]]","[[""Bismuth Bolt Heads"", 8], [""Bismuth Bolt Heads"", 10], [""Bismuth Bolt Heads"", 12]]"
+,103,[],Shabti Gauntlets,Fire,,"[[""Gold Ingot"", 1], [""Mercury"", 1], [""Bismuth Sheet"", 2], [""Leather Gloves"", 2]]","[[""Shabti Gauntlets +1"", 1], null, null]"
+,103,[],Gefechtbrust,Fire,,"[[""Orichalcum Ingot"", 1], [""Mercury"", 1], [""Cerberus Leather"", 1], [""Largantua's Shard"", 2], [""Jester Malatrix's Shard"", 2]]","[[""Wildheitbrust"", 1], null, null]"
+,104,"[[""Goldsmithing"", 60], [""Leathercraft"", 60]]",Cursed Breastplate,Fire,,"[[""Orichalcum Sheet"", 2], [""Dark Adaman Sheet"", 2], [""Cerberus Leather"", 2], [""Scintillant Ingot"", 1], [""Rubber Harness"", 1]]","[[""Cursed Breastplate -1"", 1], null, null]"
+,104,"[[""Woodworking"", 60]]",Yhatdhara,Fire,,"[[""Divine Lumber"", 1], [""Thokcha Ingot"", 3], [""Linen Cloth"", 1]]","[[""Yhatdhara +1"", 1], null, null]"
+,104,"[[""Goldsmithing"", 51]]",Bahadur,Fire,,"[[""Adaman Ingot"", 4], [""Gold Ingot"", 3], [""Jacaranda Lumber"", 1]]","[[""Bahadur +1"", 1], null, null]"
+,104,"[[""Goldsmithing"", 58], [""Woodworking"", 30]]",Opprimo,Fire,,"[[""Brass Ingot"", 1], [""Walnut Lumber"", 1], [""Thokcha Ingot"", 2], [""Palladian Brass Ingot"", 1]]","[[""Opprimo +1"", 1], null, null]"
+,104,[],Voay Staff,Fire,,"[[""Guatambu Lumber"", 1], [""Snowsteel Ore"", 1], [""Voay Staff -1"", 1]]","[[""Voay Staff +1"", 1], null, null]"
+,104,[],Ra'Kaznar Bolt Heads,Wind,,"[[""Ra'Kaznar Ingot"", 1]]","[[""Ra'Kaznar Bolt Heads"", 8], [""Ra'Kaznar Bolt Heads"", 10], [""Ra'Kaznar Bolt Heads"", 12]]"
+,105,"[[""Goldsmithing"", 59], [""Woodworking"", 52]]",Wootz Amood,Fire,,"[[""Brass Ingot"", 1], [""Steel Ingot"", 2], [""Imperial Wootz Ingot"", 2], [""Scintillant Ingot"", 2], [""Jacaranda Lumber"", 1]]","[[""Wootz Amood +1"", 1], null, null]"
+,105,[],Voay Sword,Fire,,"[[""Guatambu Lumber"", 1], [""Titanium Ore"", 1], [""Voay Sword -1"", 1]]","[[""Voay Sword +1"", 1], null, null]"
+,105,[],Beryllium Ingot,Fire,,"[[""Iron Ore"", 3], [""Beryllium Ore"", 1]]","[null, null, null]"
+,105,[],Blurred Axe,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Tabarzin"", 1]]","[[""Blurred Axe +1"", 1], null, null]"
+,105,[],Blurred Bow,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Amazon Bow"", 1]]","[[""Blurred Bow +1"", 1], null, null]"
+,105,[],Blurred Claws,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Dragon Claws"", 1]]","[[""Blurred Claws +1"", 1], null, null]"
+,105,[],Blurred Claymore,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Nagan"", 1]]","[[""Blurred Claymore +1"", 1], null, null]"
+,105,[],Blurred Cleaver,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Toporok"", 1]]","[[""Blurred Cleaver +1"", 1], null, null]"
+,105,[],Blurred Crossbow,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Repeating Crossbow"", 1]]","[[""Blurred Crossbow +1"", 1], null, null]"
+,105,[],Blurred Harp,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Cythara Anglica"", 1]]","[[""Blurred Harp +1"", 1], null, null]"
+,105,[],Blurred Knife,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Misericorde"", 1]]","[[""Blurred Knife +1"", 1], null, null]"
+,105,[],Blurred Lance,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Dabo"", 1]]","[[""Blurred Lance +1"", 1], null, null]"
+,105,[],Blurred Rod,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Scepter"", 1]]","[[""Blurred Rod +1"", 1], null, null]"
+,105,[],Blurred Scythe,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Death Scythe"", 1]]","[[""Blurred Scythe +1"", 1], null, null]"
+,105,[],Blurred Shield,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Koenig Shield"", 1]]","[[""Blurred Shield +1"", 1], null, null]"
+,105,[],Blurred Staff,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Mythic Pole"", 1]]","[[""Blurred Staff +1"", 1], null, null]"
+,105,[],Blurred Sword,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Adaman Kilij"", 1]]","[[""Blurred Sword +1"", 1], null, null]"
+,105,[],Kujaku,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Hirenjaku"", 1]]","[[""Kujaku +1"", 1], null, null]"
+,105,[],Kunitsuna,Fire,,"[[""Dark Matter"", 1], [""Vulcanite Ore"", 2], [""Butachi"", 1]]","[[""Kunitsuna +1"", 1], null, null]"
+,105,[],Niobium Ingot,Fire,,"[[""Niobium Ore"", 4]]","[null, null, null]"
+,106,"[[""Leathercraft"", 60], [""Goldsmithing"", 30]]",Hexed Sune-Ate,Fire,,"[[""Scarletite Ingot"", 1], [""Gold Sheet"", 1], [""Taffeta Cloth"", 1], [""Amphiptere Leather"", 1], [""Sealord Leather"", 1]]","[[""Hexed Sune-Ate -1"", 1], null, null]"
+,106,[],Shabti Armet,Fire,,"[[""Copper Ingot"", 1], [""Gold Ingot"", 1], [""Sheep Leather"", 1], [""Mercury"", 1], [""Bismuth Sheet"", 2]]","[[""Shabti Armet +1"", 1], null, null]"
+,106,[],Beryllium Kris,Fire,,"[[""Black Pearl"", 1], [""Beryllium Ingot"", 1], [""Ra'Kaznar Ingot"", 1]]","[[""Beryllium Kris +1"", 1], null, null]"
+,106,[],Beryllium Mace,Fire,,"[[""Beryllium Ingot"", 3]]","[[""Beryllium Mace +1"", 1], null, null]"
+,106,[],Beryllium Pick,Fire,,"[[""Urunday Lumber"", 1], [""Beryllium Ingot"", 1]]","[[""Beryllium Pick +1"", 1], null, null]"
+,106,[],Beryllium Sword,Fire,,"[[""Urunday Lumber"", 1], [""Raaz Leather"", 1], [""Beryllium Ingot"", 3]]","[[""Beryllium Sword +1"", 1], null, null]"
+,106,[],Beryllium Tachi,Fire,,"[[""Tama-Hagane"", 1], [""Urunday Lumber"", 1], [""Akaso Thread"", 1], [""Raaz Leather"", 1], [""Beryllium Ingot"", 2], [""Ra'Kaznar Ingot"", 1]]","[[""Beryllium Tachi +1"", 1], null, null]"
+,106,[],Beryllium Arrowheads,Wind,,"[[""Steel Ingot"", 1], [""Beryllium Ingot"", 1]]","[[""Beryllium Arrowheads"", 8], [""Beryllium Arrowheads"", 10], [""Beryllium Arrowheads"", 12]]"
+,106,[],Beryllium Bolt Heads,Wind,,"[[""Beryllium Ingot"", 1]]","[[""Beryllium Bolt Heads"", 8], [""Beryllium Bolt Heads"", 10], [""Beryllium Bolt Heads"", 12]]"
+,107,"[[""Leathercraft"", 60], [""Clothcraft"", 30]]",Hexed Somen,Fire,,"[[""Scarletite Ingot"", 1], [""Gold Ingot"", 1], [""Taffeta Cloth"", 1], [""Urushi"", 1], [""Sealord Leather"", 1]]","[[""Hexed Somen -1"", 1], null, null]"
+,107,[],Shabti Sabatons,Fire,,"[[""Gold Ingot"", 1], [""Ram Leather"", 2], [""Mercury"", 1], [""Bismuth Sheet"", 3]]","[[""Shabti Sabatons +1"", 1], null, null]"
+,107,[],Dakatsu-No-Nodowa,Fire,,"[[""Silk Thread"", 1], [""Beryllium Ingot"", 1], [""Wyrm Blood"", 1]]","[[""Dakatsu-No-Nodowa +1"", 1], null, null]"
+,107,[],Happo Shuriken,Wind,,"[[""Tama-Hagane"", 1], [""Mercury"", 1], [""Waktza Rostrum"", 1], [""Bismuth Sheet"", 1]]","[[""Happo Shuriken"", 66], [""Happo Shuriken"", 99], [""Happo Shuriken +1"", 99]]"
+,107,[],Sasuke Shuriken,Wind,,"[[""Tama-Hagane"", 1], [""Mercury"", 1], [""Bismuth Sheet"", 1]]","[[""Sasuke Shuriken"", 66], [""Sasuke Shuriken"", 99], [""Sasuke Shuriken +1"", 99]]"
+,109,[],Shabti Cuirass,Fire,,"[[""Gold Ingot"", 1], [""Ram Leather"", 2], [""Mercury"", 1], [""Bismuth Sheet"", 4]]","[[""Shabti Cuirass +1"", 1], null, null]"
+,110,"[[""Leathercraft"", 60]]",Hexed Domaru,Fire,,"[[""Scarletite Ingot"", 2], [""Gold Ingot"", 1], [""Taffeta Cloth"", 1], [""Urushi"", 1], [""Sealord Leather"", 1]]","[[""Hexed Domaru -1"", 1], null, null]"
+,110,[],Sukezane,Fire,,"[[""Brass Ingot"", 1], [""Adaman Ingot"", 3], [""Cotton Thread"", 1], [""Manta Leather"", 1], [""Kunwu Iron"", 1], [""Yggdreant Bole"", 1]]","[[""Sukezane +1"", 1], null, null]"
+,110,"[[""Alchemy"", 55]]",Samurai's Nodowa,Light,,"[[""Yggdreant Root"", 1], [""Dark Matter"", 1], [""Azure Leaf"", 1], [""Moldy Nodowa"", 1]]","[[""Samurai's Nodowa +1"", 1], [""Samurai's Nodowa +2"", 1], null]"
+,110,"[[""Alchemy"", 55]]",Ninja Nodowa,Light,,"[[""Yggdreant Root"", 1], [""Dark Matter"", 1], [""Azure Leaf"", 1], [""Moldy Nodowa"", 1]]","[[""Ninja Nodowa +1"", 1], [""Ninja Nodowa +2"", 1], null]"
+,110,"[[""Alchemy"", 55]]",Monk's Nodowa,Light,,"[[""Yggdreant Root"", 1], [""Dark Matter"", 1], [""Azure Leaf"", 1], [""Moldy Nodowa"", 1]]","[[""Monk's Nodowa +1"", 1], [""Monk's Nodowa +2"", 1], null]"
+,111,"[[""Goldsmithing"", 70]]",Bewitched Sollerets,Earth,,"[[""Cursed Sollerets"", 1], [""Jester Malatrix's Shard"", 1], [""Tartarian Chain"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Sollerets"", 1], null, null]"
+,111,"[[""Clothcraft"", 70]]",Vexed Sune-Ate,Fire,,"[[""Beryllium Ingot"", 1], [""Muut's Vestment"", 1], [""Eschite Ore"", 1], [""Hexed Sune-Ate"", 1]]","[[""Jinxed Sune-Ate"", 1], null, null]"
+,111,[],Scout's Bolt,Light,Blacksmith's aurum tome,"[[""Dark Matter"", 1], [""Moldy Bolt"", 1], [""Relic Adaman"", 1]]","[[""Scout's Bolt"", 99], [""Scout's Bolt"", 99], [""Scout's Bolt"", 99]]"
+,111,[],Assassin's Knife,Light,Blacksmith's aurum tome,"[[""Goldsmithing - (Information Needed)"", 1], [""Macuil Horn"", 1], [""Dark Matter"", 1], [""Ruthenium Ore"", 1], [""Moldy Dagger"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Plunderer's Knife"", 1], [""Gandring"", 1], null]"
+,111,[],Bard's Knife,Light,Blacksmith's aurum tome,"[[""Goldsmithing - (Information Needed)"", 1], [""Macuil Horn"", 1], [""Dark Matter"", 1], [""Ruthenium Ore"", 1], [""Moldy Dagger"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Bihu Knife"", 1], [""Barfawc"", 1], null]"
+,111,[],Commodore's Knife,Light,Blacksmith's aurum tome,"[[""Goldsmithing - (Information Needed)"", 1], [""Macuil Horn"", 1], [""Dark Matter"", 1], [""Ruthenium Ore"", 1], [""Moldy Dagger"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Lanun Knife"", 1], [""Rostam"", 1], null]"
+,111,[],Etoile Knife,Light,Blacksmith's aurum tome,"[[""Goldsmithing - (Information Needed)"", 1], [""Macuil Horn"", 1], [""Dark Matter"", 1], [""Ruthenium Ore"", 1], [""Moldy Dagger"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Horos Knife"", 1], [""Setan Kober"", 1], null]"
+,111,[],Warrior's Chopper,Light,Blacksmith's aurum tome,"[[""Clothcraft - (Information Needed)"", 1], [""Plovid Flesh"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Great Axe"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Agoge Chopper"", 1], [""Labraunda"", 1], null]"
+,112,"[[""Goldsmithing"", 70]]",Bewitched Mufflers,Earth,,"[[""Cursed Mufflers"", 1], [""Jester Malatrix's Shard"", 1], [""Tartarian Chain"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Mufflers"", 1], null, null]"
+,113,[],Senbaak Nagan,Fire,,"[[""Damascus Ingot"", 4], [""Scarletite Ingot"", 1], [""Wyvern Skin"", 1], [""Urunday Lumber"", 1], [""Gabbrath Horn"", 1]]","[[""Senbaak Nagan +1"", 1], null, null]"
+,113,[],Razorfury,Fire,,"[[""Mythril Ingot"", 1], [""Damascus Ingot"", 2], [""Ormolu Ingot"", 1], [""Urunday Lumber"", 1], [""Rockfin Tooth"", 1]]","[[""Razorfury +1"", 1], null, null]"
+,113,[],Pamun,Fire,,"[[""Damascus Ingot"", 1], [""Ormolu Ingot"", 1], [""Habu Skin"", 1], [""Bztavian Wing"", 1]]","[[""Pamun +1"", 1], null, null]"
+,113,"[[""Leathercraft"", 70]]",Bewitched Breeches,Earth,,"[[""Cursed Breeches"", 1], [""Warblade Beak's Hide"", 1], [""Tartarian Chain"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Breeches"", 1], null, null]"
+,114,"[[""Leathercraft"", 70]]",Bewitched Celata,Fire,,"[[""Cursed Celata"", 1], [""Warblade Beak's Hide"", 1], [""Tartarian Chain"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Celata"", 1], null, null]"
+,114,"[[""Clothcraft"", 70]]",Vexed Somen,Fire,,"[[""Beryllium Ingot"", 1], [""Muut's Vestment"", 1], [""Eschite Ore"", 1], [""Hexed Somen"", 1]]","[[""Jinxed Somen"", 1], null, null]"
+,115,[],Malfeasance,Fire,,"[[""Damascus Ingot"", 2], [""Ormolu Ingot"", 1], [""Squamous Hide"", 1], [""Yggdreant Bole"", 1], [""Hades' Claw"", 1], [""Tartarian Soul"", 1]]","[[""Malfeasance +1"", 1], null, null]"
+,115,"[[""Clothcraft"", 70]]",Bewitched Hauberk,Earth,,"[[""Cursed Hauberk"", 1], [""Sif's Macrame"", 1], [""Tartarian Chain"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Hauberk"", 1], null, null]"
+,115,"[[""Clothcraft"", 70]]",Vexed Domaru,Fire,,"[[""Beryllium Ingot"", 1], [""Muut's Vestment"", 1], [""Eschite Ore"", 1], [""Hexed Domaru"", 1]]","[[""Jinxed Domaru"", 1], null, null]"
+,115,[],Dyrnwyn,Fire,,"[[""Moonbow Steel"", 1], [""Moonbow Urushi"", 1], [""Cypress Lumber"", 1], [""Balmung"", 1]]","[[""Dyrnwyn +1"", 1], null, null]"
+,115,[],Barbarity,Fire,,"[[""Moonbow Steel"", 1], [""Moonbow Leather"", 1], [""Faulpie Leather"", 1], [""Juggernaut"", 1]]","[[""Barbarity +1"", 1], null, null]"
+,115,[],Jolt Counter,Fire,,"[[""Moonbow Steel"", 1], [""Moonbow Stone"", 1], [""Ruthenium Ingot"", 1], [""Cross-Counters"", 1]]","[[""Jolt Counter +1"", 1], null, null]"
+,115,[],Moonbeam Nodowa,Earth,,"[[""Moonbow Steel"", 1], [""Moonlight Coral"", 1], [""Khoma Thread"", 1]]","[[""Moonlight Nodowa"", 1], null, null]"
+,115,[],Ea Pigaches,Fire,Blacksmith's argentum tome,"[[""Gold Sheet"", 1], [""Bztavian Stinger"", 1], [""Defiant Scarf"", 1], [""Niobium Ore"", 3]]","[[""Ea Pigaches +1"", 1], null, null]"
+,115,[],Ea Cuffs,Fire,Blacksmith's argentum tome,"[[""Gold Sheet"", 2], [""Bztavian Stinger"", 1], [""Defiant Scarf"", 1], [""Niobium Ore"", 3]]","[[""Ea Cuffs +1"", 1], null, null]"
+,115,[],Ea Hat,Fire,Blacksmith's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Bztavian Stinger"", 1], [""Defiant Scarf"", 1], [""Niobium Ore"", 3]]","[[""Ea Hat +1"", 1], null, null]"
+,115,[],Ea Slops,Fire,Blacksmith's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Bztavian Stinger"", 1], [""Defiant Scarf"", 1], [""Niobium Ore"", 1], [""Niobium Ingot"", 1]]","[[""Ea Slops +1"", 1], null, null]"
+,115,[],Ea Houppelande,Fire,Blacksmith's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Bztavian Stinger"", 1], [""Defiant Scarf"", 2], [""Niobium Ore"", 1], [""Niobium Ingot"", 1]]","[[""Ea Houppelande +1"", 1], null, null]"
+,0,[],Raetic Axe,Fire,Blacksmith's argentum tome,"[[""Main Craft: Blacksmithing - (115~120)"", 1], [""Niobium Ingot"", 1], [""Rune Axe"", 1]]","[[""Raetic Axe +1"", 1], null, null]"
+,0,[],Raetic Kris,Fire,Blacksmith's argentum tome,"[[""Main Craft: Blacksmithing - (115~120)"", 1], [""Niobium Ingot"", 1], [""Rune Kris"", 1]]","[[""Raetic Kris +1"", 1], null, null]"
+,115,[],Raetic Chopper,Fire,Blacksmith's argentum tome,"[[""Niobium Ingot"", 1], [""Rune Chopper"", 1]]","[[""Raetic Chopper +1"", 1], null, null]"
+,0,[],Raetic Rod,Fire,Blacksmith's argentum tome,"[[""Main Craft: Blacksmithing - (115~120)"", 1], [""Niobium Ingot"", 1], [""Rune Rod"", 1]]","[[""Raetic Rod +1"", 1], null, null]"
+,116,[],Kwahu Kachina Belt,Earth,,"[[""Sealord Leather"", 1], [""Ra'Kaznar Ingot"", 1], [""Macuil Plating"", 1]]","[[""K. Kachina Belt +1"", 1], null, null]"
+,118,[],Varar Ring,Fire,,"[[""Scarletite Ingot"", 1], [""Beryllium Ingot"", 1], [""Tartarian Chain"", 1]]","[[""Varar Ring +1"", 1], null, null]"
diff --git a/datasets/Woodworking.txt b/datasets/Woodworking.txt
index 486ae0a..647e01d 100644
--- a/datasets/Woodworking.txt
+++ b/datasets/Woodworking.txt
@@ -1,7 +1,4 @@
Woodworking Crafted Items
-Amateur (1-10)
-Synthesis Information
-Yield Requirements Ingredients
NQ: Banquet Table
@@ -373,9 +370,7 @@ Main Craft: Woodworking - (10)
Woodworking Kit 10
-Recruit (11-20)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Ash Clogs
@@ -1161,9 +1156,7 @@ Sub Craft(s): Alchemy - (??)
Glass Sheet
-Initiate (21-30)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Chestnut Club
@@ -1657,9 +1650,7 @@ Sub Craft(s): Alchemy - (??)
Pebble
-Novice (31-40)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Book Holder
@@ -2202,9 +2193,7 @@ Sub Craft(s): Alchemy
Glass Sheet
-Apprentice (41-50)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Mokujin x33
@@ -2656,9 +2645,7 @@ Sub Craft(s): Clothcraft - (~24)
Bomb Arm
-Journeyman (51-60)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Desk
@@ -3212,9 +3199,7 @@ Main Craft: Woodworking - (60)
Woodworking Kit 60
-Craftsman (61-70)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Chest
@@ -3914,9 +3899,7 @@ Sub Craft(s): Goldsmithing - (??)
Gold Ingot
-Artisan (71-80)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Ebony Harp
@@ -4568,9 +4551,7 @@ Sub Craft(s): Goldsmithing - (??)
Gold Ingot x2
-Adept (81-90)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Battle Fork
@@ -5228,9 +5209,7 @@ Main Craft: Woodworking - (90)
Woodworking Kit 90
-Veteran (91-100)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: 3-Drawer Almirah
@@ -6085,9 +6064,7 @@ Main Craft: Woodworking - (100)
Black Chocobo Feather
-Expert (101-110)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Kinkobo
@@ -6662,9 +6639,7 @@ Sub Craft(s): Clothcraft - (55)
Moldy Bead Necklace
-Authority (111-120)
-Synthesis Information
-Yield Requirements Ingredients
+
NQ: Bewitched Sune-Ate
diff --git a/datasets/Woodworking_v2.csv b/datasets/Woodworking_v2.csv
index c58cf2c..f7be349 100644
--- a/datasets/Woodworking_v2.csv
+++ b/datasets/Woodworking_v2.csv
@@ -1,504 +1,504 @@
category,level,subcrafts,name,crystal,key_item,ingredients,hq_yields
-Amateur,1,[],Banquet Table,Earth,,"[[""Banquet Table Blueprint"", 1], [""Banquet Table Fabric"", 1], [""Banquet Table Wood"", 1]]","[null, null, null]"
-Amateur,2,[],Arrowwood Lumber,Wind,,"[[""Arrowwood Log"", 1]]","[[""Arrowwood Lumber"", 2], [""Arrowwood Lumber"", 3], [""Arrowwood Lumber"", 4]]"
-Amateur,2,[],Arrowwood Lumber,Wind,Lumberjack,"[[""Arrowwood Log"", 3], [""Bundling Twine"", 1]]","[[""Arrowwood Lumber"", 6], [""Arrowwood Lumber"", 9], [""Arrowwood Lumber"", 12]]"
-Amateur,2,[],Flute,Wind,,"[[""Maple Lumber"", 1], [""Parchment"", 1]]","[[""Flute +1"", 1], [""Flute +2"", 1], null]"
-Amateur,3,[],Lauan Lumber,Wind,,"[[""Lauan Log"", 1]]","[[""Lauan Lumber"", 2], [""Lauan Lumber"", 3], [""Lauan Lumber"", 4]]"
-Amateur,3,[],Lauan Lumber,Wind,Lumberjack,"[[""Lauan Log"", 3], [""Bundling Twine"", 1]]","[[""Lauan Lumber"", 6], [""Lauan Lumber"", 9], [""Lauan Lumber"", 12]]"
-Amateur,3,[],Stone Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Stone Arrowheads"", 1], [""Chocobo Fletchings"", 1]]","[[""Stone Arrow"", 66], [""Stone Arrow"", 99], [""Stone Arrow"", 99]]"
-Amateur,4,[],Wooden Arrow,Wind,,"[[""Arrowwood Lumber"", 1], [""Chocobo Feather"", 2], [""Flint Stone"", 1]]","[[""Wooden Arrow"", 66], [""Wooden Arrow"", 99], [""Wooden Arrow"", 99]]"
-Amateur,5,[],Maple Lumber,Wind,,"[[""Maple Log"", 1]]","[[""Maple Lumber"", 2], [""Maple Lumber"", 3], [""Maple Lumber"", 4]]"
-Amateur,5,[],Maple Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Maple Log"", 3]]","[[""Maple Lumber"", 6], [""Maple Lumber"", 9], [""Maple Lumber"", 12]]"
-Amateur,5,[],Padded Box,Earth,,"[[""Bast Parchment"", 2], [""Inferior Cocoon"", 1]]","[null, null, null]"
-Amateur,5,[],Padded Box,Earth,,"[[""Woodworking Kit 5"", 1]]","[null, null, null]"
-Amateur,6,[],Maple Wand,Wind,,"[[""Maple Lumber"", 1], [""Chocobo Feather"", 1]]","[[""Maple Wand +1"", 1], null, null]"
-Amateur,7,"[[""Smithing"", 2]]",Lauan Shield,Earth,,"[[""Bronze Sheet"", 1], [""Lauan Lumber"", 2]]","[[""Lauan Shield +1"", 1], null, null]"
-Amateur,7,[],Workbench,Earth,,"[[""Lauan Lumber"", 4]]","[null, null, null]"
-Amateur,8,[],Ash Lumber,Wind,,"[[""Ash Log"", 1]]","[[""Ash Lumber"", 2], [""Ash Lumber"", 3], [""Ash Lumber"", 4]]"
-Amateur,8,[],Ash Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Ash Log"", 3]]","[[""Ash Lumber"", 6], [""Ash Lumber"", 9], [""Ash Lumber"", 12]]"
-Amateur,8,[],Ash Pole,Wind,,"[[""Ash Lumber"", 2]]","[[""Ash Pole +1"", 1], null, null]"
-Amateur,8,[],Bewitched Ash Lumber,Wind,Wood Purification,"[[""Ash Log"", 1], [""Fire Anima"", 1], [""Ice Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,8,[],Humus,Dark,,"[[""Elm Log"", 1], [""Bay Leaves"", 1]]","[[""Rich Humus"", 1], null, null]"
-Amateur,9,[],Ash Club,Wind,,"[[""Ash Lumber"", 1]]","[[""Ash Club +1"", 1], null, null]"
-Amateur,9,[],Bone Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Yagudo Fletchings"", 1], [""Bone Arrowheads"", 1]]","[[""Bone Arrow"", 66], [""Bone Arrow"", 99], [""Bone Arrow"", 99]]"
-Amateur,10,[],Ash Staff,Wind,,"[[""Ash Lumber"", 1], [""Bat Fang"", 1]]","[[""Ash Staff +1"", 1], null, null]"
-Amateur,10,"[[""Smithing"", 4], [""Alchemy"", 7]]",Goldfish Bowl,Light,,"[[""Bronze Ingot"", 1], [""Lauan Lumber"", 1], [""Crawler Calculus"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Goldfish Set"", 1], [""Tiny Goldfish"", 1], [""Black Bubble-Eye"", 1]]","[null, null, null]"
-Amateur,10,"[[""Bonecraft"", 2]]",Harpoon,Wind,,"[[""Ash Lumber"", 1], [""Grass Thread"", 1], [""Sheep Tooth"", 1]]","[[""Harpoon +1"", 1], null, null]"
-Amateur,10,[],Willow Fishing Rod,Light,,"[[""Broken Willow Rod"", 1]]","[null, null, null]"
-Amateur,10,[],Ash Staff,Wind,,"[[""Woodworking Kit 10"", 1], [""Recruit (11-20)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,11,[],Ash Clogs,Wind,,"[[""Ash Lumber"", 1], [""Sheep Leather"", 1]]","[[""Ash Clogs +1"", 1], null, null]"
-Amateur,11,[],Bamboo Fishing Rod,Light,,"[[""Broken Bamboo Rod"", 1]]","[null, null, null]"
-Amateur,11,"[[""Goldsmithing"", 2]]",Maple Shield,Earth,,"[[""Brass Sheet"", 1], [""Maple Lumber"", 2]]","[[""Maple Shield +1"", 1], null, null]"
-Amateur,11,[],Mandarin,Wind,,"[[""Bamboo Stick"", 1], [""Saruta Orange"", 4]]","[null, null, null]"
-Amateur,12,[],Holly Lumber,Wind,,"[[""Holly Log"", 1]]","[[""Holly Lumber"", 2], [""Holly Lumber"", 3], [""Holly Lumber"", 4]]"
-Amateur,12,[],Holly Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Holly Log"", 3]]","[[""Holly Lumber"", 6], [""Holly Lumber"", 9], [""Holly Lumber"", 12]]"
-Amateur,12,"[[""Smithing"", 3]]",Light Crossbow,Earth,,"[[""Ash Lumber"", 1], [""Bronze Ingot"", 1], [""Grass Thread"", 1]]","[[""Light Crossbow +1"", 1], null, null]"
-Amateur,12,[],Tree Sap,Lightning,,"[[""Chestnut Log"", 1], [""Maple Sugar"", 1]]","[[""Scarlet Sap"", 1], null, null]"
-Amateur,13,[],Holly Pole,Wind,,"[[""Holly Lumber"", 2]]","[[""Holly Pole +1"", 1], null, null]"
-Amateur,13,[],Mana Willow Lumber,Wind,Wood Purification,"[[""Willow Log"", 1], [""Earth Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,13,[],Willow Lumber,Wind,,"[[""Willow Log"", 1]]","[[""Willow Lumber"", 2], [""Willow Lumber"", 3], [""Willow Lumber"", 4]]"
-Amateur,13,[],Willow Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Willow Log"", 3]]","[[""Willow Lumber"", 6], [""Willow Lumber"", 9], [""Willow Lumber"", 12]]"
-Amateur,13,[],Windurstian Pole,Earth,,"[[""Ash Lumber"", 1], [""Mercenary's Pole"", 1]]","[[""Federation Pole"", 1], null, null]"
-Amateur,14,[],Willow Fishing Rod,Wind,,"[[""Willow Lumber"", 1], [""Grass Thread"", 1]]","[null, null, null]"
-Amateur,14,[],Willow Wand,Wind,,"[[""Willow Lumber"", 1], [""Insect Wing"", 1]]","[[""Willow Wand +1"", 1], null, null]"
-Amateur,14,[],Windurstian Club,Wind,,"[[""Freesword's Club"", 1], [""Ash Lumber"", 1]]","[[""Federation Club"", 1], null, null]"
-Amateur,14,"[[""Smithing"", 3]]",Butterfly Cage,Earth,,"[[""Bronze Ingot"", 1], [""Rattan Lumber"", 2], [""Dogwood Lumber"", 1], [""White Butterfly"", 1]]","[null, null, null]"
-Amateur,14,"[[""Smithing"", 3]]",Cricket Cage,Earth,,"[[""Bronze Ingot"", 1], [""Rattan Lumber"", 2], [""Dogwood Lumber"", 1], [""Bell Cricket"", 1]]","[null, null, null]"
-Amateur,14,"[[""Smithing"", 3]]",Glowfly Cage,Earth,,"[[""Bronze Ingot"", 1], [""Rattan Lumber"", 2], [""Dogwood Lumber"", 1], [""Glowfly"", 1]]","[null, null, null]"
-Amateur,15,[],Bamboo Fishing Rod,Wind,,"[[""Bamboo Stick"", 1], [""Grass Thread"", 1]]","[null, null, null]"
-Amateur,15,[],Bronze Bolt,Earth,,"[[""Ash Lumber"", 1], [""Bronze Bolt Heads"", 1]]","[[""Bronze Bolt"", 66], [""Bronze Bolt"", 99], [""Bronze Bolt"", 99]]"
-Amateur,15,[],Bronze Bolt,Earth,Boltmaker,"[[""Ash Lumber"", 3], [""Bronze Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
-Amateur,15,[],Shortbow,Wind,,"[[""Willow Lumber"", 1], [""Grass Thread"", 1], [""Grass Cloth"", 1]]","[[""Shortbow +1"", 1], null, null]"
-Amateur,15,[],Bamboo Fishing Rod,Wind,,"[[""Woodworking Kit 15"", 1]]","[null, null, null]"
-Amateur,16,[],Acid Bolt,Earth,,"[[""Ash Lumber"", 1], [""Acid Bolt Heads"", 1]]","[[""Acid Bolt"", 66], [""Acid Bolt"", 99], [""Acid Bolt"", 99]]"
-Amateur,16,[],Acid Bolt,Earth,Boltmaker,"[[""Ash Lumber"", 3], [""Acid Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
-Amateur,16,[],Blind Bolt,Earth,,"[[""Ash Lumber"", 1], [""Blind Bolt Heads"", 1]]","[[""Blind Bolt"", 66], [""Blind Bolt"", 99], [""Blind Bolt"", 99]]"
-Amateur,16,[],Blind Bolt,Earth,Boltmaker,"[[""Ash Lumber"", 3], [""Blind Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
-Amateur,16,[],Bloody Bolt,Earth,,"[[""Ash Lumber"", 1], [""Bloody Bolt Heads"", 1]]","[[""Bloody Bolt"", 66], [""Bloody Bolt"", 99], [""Bloody Bolt"", 99]]"
-Amateur,16,[],Bloody Bolt,Earth,Boltmaker,"[[""Ash Lumber"", 3], [""Bloody Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
-Amateur,16,[],Flexible Pole,Wind,Wood Ensorcellment,"[[""Lambent Water Cell"", 1], [""Lambent Earth Cell"", 1], [""Holly Pole"", 1]]","[null, null, null]"
-Amateur,16,[],Holy Bolt,Earth,,"[[""Ash Lumber"", 1], [""Holy Bolt Heads"", 1]]","[[""Holy Bolt"", 66], [""Holy Bolt"", 99], [""Holy Bolt"", 99]]"
-Amateur,16,[],Holy Bolt,Earth,Boltmaker,"[[""Ash Lumber"", 3], [""Holy Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
-Amateur,16,[],Maple Table,Earth,,"[[""Maple Lumber"", 4]]","[null, null, null]"
-Amateur,16,"[[""Bonecraft"", 5]]",Self Bow,Wind,,"[[""Willow Lumber"", 1], [""Grass Thread"", 1], [""Giant Femur"", 1], [""Cotton Cloth"", 1]]","[[""Self Bow +1"", 1], null, null]"
-Amateur,16,[],Sleep Bolt,Earth,,"[[""Ash Lumber"", 1], [""Sleep Bolt Heads"", 1]]","[[""Sleep Bolt"", 66], [""Sleep Bolt"", 99], [""Sleep Bolt"", 99]]"
-Amateur,16,[],Sleep Bolt,Earth,Boltmaker,"[[""Ash Lumber"", 3], [""Sleep Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
-Amateur,16,[],Venom Bolt,Earth,,"[[""Ash Lumber"", 1], [""Venom Bolt Heads"", 1]]","[[""Venom Bolt"", 66], [""Venom Bolt"", 99], [""Venom Bolt"", 99]]"
-Amateur,16,[],Venom Bolt,Earth,Boltmaker,"[[""Ash Lumber"", 3], [""Venom Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
-Amateur,17,[],Bastokan Crossbow,Earth,,"[[""Ash Lumber"", 1], [""Legionnaire's Crossbow"", 1]]","[[""Republic Crossbow"", 1], null, null]"
-Amateur,17,[],Boomerang,Wind,,"[[""Maple Lumber"", 1], [""Cotton Thread"", 1]]","[[""Boomerang +1"", 1], null, null]"
-Amateur,17,"[[""Bonecraft"", 1]]",Longbow,Wind,,"[[""Coeurl Whisker"", 1], [""Yew Lumber"", 2], [""Linen Cloth"", 1], [""Ram Horn"", 1]]","[[""Longbow +1"", 1], null, null]"
-Amateur,17,[],Mana Wand,Wind,,"[[""Mana Willow Lumber"", 1], [""Willow Wand"", 1]]","[null, null, null]"
-Amateur,18,"[[""Smithing"", 9]]",Bronze Spear,Wind,,"[[""Ash Lumber"", 1], [""Bronze Ingot"", 1], [""Grass Thread"", 1]]","[[""Bronze Spear +1"", 1], null, null]"
-Amateur,18,[],Holly Clogs,Wind,,"[[""Holly Lumber"", 1], [""Sheep Leather"", 1]]","[[""Holly Clogs +1"", 1], null, null]"
-Amateur,19,[],Holly Staff,Wind,,"[[""Holly Lumber"", 1], [""Sheep Tooth"", 1]]","[[""Holly Staff +1"", 1], null, null]"
-Amateur,19,[],Steel Walnut Lumber,Wind,Wood Ensorcellment,"[[""Walnut Log"", 1], [""Earth Anima"", 2], [""Dark Anima"", 1]]","[[""Steel Walnut Lumber"", 6], [""Steel Walnut Lumber"", 9], [""Steel Walnut Lumber"", 12]]"
-Amateur,19,[],Walnut Lumber,Wind,,"[[""Walnut Log"", 1]]","[[""Walnut Lumber"", 2], [""Walnut Lumber"", 3], [""Walnut Lumber"", 4]]"
-Amateur,19,[],Walnut Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Walnut Log"", 3]]","[[""Walnut Lumber"", 6], [""Walnut Lumber"", 9], [""Walnut Lumber"", 12]]"
-Amateur,20,"[[""Alchemy"", 7], [""Smithing"", 4]]",Fighting Fish Tank,Light,,"[[""Bronze Ingot"", 1], [""Lauan Lumber"", 1], [""Crawler Calculus"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Goldfish Set"", 1], [""Lamp Marimo"", 1], [""Betta"", 1]]","[null, null, null]"
-Amateur,20,[],Piccolo,Wind,,"[[""Holly Lumber"", 1], [""Parchment"", 1]]","[[""Piccolo +1"", 1], null, null]"
-Amateur,20,"[[""Clothcraft"", 5]]",Simple Bed,Earth,,"[[""Holly Lumber"", 2], [""Lauan Lumber"", 2], [""Grass Thread"", 1], [""Grass Cloth"", 3]]","[null, null, null]"
-Amateur,20,[],Windurstian Bow,Earth,,"[[""Willow Lumber"", 1], [""Freesword's Bow"", 1]]","[[""Federation Bow"", 1], null, null]"
-Amateur,20,[],Yew Fishing Rod,Light,,"[[""Broken Yew Rod"", 1]]","[null, null, null]"
-Amateur,20,[],Piccolo,Wind,,"[[""Woodworking Kit 20"", 1]]","[null, null, null]"
-Amateur,20,[],Awning,Earth,,"[[""Elm Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1]]","[null, null, null]"
-Amateur,20,[],Triangular Jalousie,Earth,,"[[""Walnut Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1]]","[null, null, null]"
-Amateur,20,[],Square Jalousie,Earth,,"[[""Rosewood Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Initiate (21-30)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,21,[],Chestnut Club,Wind,,"[[""Chestnut Lumber"", 1]]","[[""Solid Club"", 1], null, null]"
-Amateur,21,[],Gimlet Spear,Wind,Wood Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Bronze Spear"", 1]]","[null, null, null]"
-Amateur,21,[],Maple Sugar,Lightning,,"[[""Maple Log"", 1]]","[[""Maple Sugar"", 6], [""Maple Sugar"", 9], [""Maple Sugar"", 12]]"
-Amateur,22,"[[""Goldsmithing"", 5]]",Brass Spear,Wind,,"[[""Ash Lumber"", 1], [""Brass Ingot"", 1], [""Linen Thread"", 1]]","[[""Brass Spear +1"", 1], null, null]"
-Amateur,22,[],San d'Orian Bow,Earth,,"[[""Royal Archer's Longbow"", 1], [""Yew Lumber"", 1]]","[[""Kingdom Bow"", 1], null, null]"
-Amateur,22,[],Yew Lumber,Wind,,"[[""Yew Log"", 1]]","[[""Yew Lumber"", 2], [""Yew Lumber"", 3], [""Yew Lumber"", 4]]"
-Amateur,22,[],Yew Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Yew Log"", 3]]","[[""Yew Lumber"", 6], [""Yew Lumber"", 9], [""Yew Lumber"", 12]]"
-Amateur,23,[],Maple Harp,Earth,,"[[""Coeurl Whisker"", 1], [""Maple Lumber"", 2]]","[[""Maple Harp +1"", 1], null, null]"
-Amateur,23,[],San d'Orian Clogs,Wind,,"[[""Holly Lumber"", 1], [""Royal Footman's Clogs"", 1]]","[[""Kingdom Clogs"", 1], null, null]"
-Amateur,23,[],San d'Orian Spear,Earth,,"[[""Ash Lumber"", 1], [""Royal Spearman's Spear"", 1]]","[[""Kingdom Spear"", 1], null, null]"
-Amateur,23,[],Yew Wand,Wind,,"[[""Yew Lumber"", 1], [""Yagudo Feather"", 1]]","[[""Yew Wand +1"", 1], null, null]"
-Amateur,24,[],Windurstian Staff,Earth,,"[[""Holly Lumber"", 1], [""Freesword's Staff"", 1]]","[[""Federation Staff"", 1], null, null]"
-Amateur,24,"[[""Leathercraft"", 6]]",Wrapped Bow,Wind,,"[[""Yew Lumber"", 1], [""Sheep Leather"", 1], [""Wool Thread"", 1]]","[[""Wrapped Bow +1"", 1], null, null]"
-Amateur,24,[],Yew Fishing Rod,Wind,,"[[""Yew Lumber"", 1], [""Linen Thread"", 1]]","[null, null, null]"
-Amateur,25,[],Bolt Belt,Earth,,"[[""Ash Lumber"", 2], [""Sheep Leather"", 1], [""Bronze Bolt Heads"", 2], [""Leather Pouch"", 1]]","[null, null, null]"
-Amateur,25,[],Elm Lumber,Wind,,"[[""Elm Log"", 1]]","[[""Elm Lumber"", 2], [""Elm Lumber"", 3], [""Elm Lumber"", 4]]"
-Amateur,25,[],Elm Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Elm Log"", 3]]","[[""Elm Lumber"", 6], [""Elm Lumber"", 9], [""Elm Lumber"", 12]]"
-Amateur,25,[],Tarutaru Stool,Earth,,"[[""Elm Lumber"", 1], [""Lauan Lumber"", 1]]","[null, null, null]"
-Amateur,25,[],Tarutaru Stool,Earth,,"[[""Woodworking Kit 25"", 1]]","[null, null, null]"
-Amateur,26,"[[""Smithing"", 22]]",Elm Shield,Earth,,"[[""Iron Sheet"", 1], [""Elm Lumber"", 2]]","[[""Elm Shield +1"", 1], null, null]"
-Amateur,26,[],Uchitake,Earth,,"[[""Toad Oil"", 1], [""Bamboo Stick"", 1], [""Grass Cloth"", 1]]","[[""Uchitake"", 66], [""Uchitake"", 99], [""Uchitake"", 99]]"
-Amateur,27,[],Harp,Earth,,"[[""Coeurl Whisker"", 1], [""Chestnut Lumber"", 2]]","[[""Harp +1"", 1], null, null]"
-Amateur,27,"[[""Smithing"", 6]]",Iron Arrow,Wind,,"[[""Iron Ingot"", 1], [""Ash Lumber"", 1], [""Chocobo Feather"", 2]]","[[""Iron Arrow"", 66], [""Iron Arrow"", 99], [""Iron Arrow"", 99]]"
-Amateur,27,[],Iron Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Chocobo Fletchings"", 1], [""Iron Arrowheads"", 1]]","[[""Iron Arrow"", 66], [""Iron Arrow"", 99], [""Iron Arrow"", 99]]"
-Amateur,28,[],Chestnut Lumber,Wind,,"[[""Chestnut Log"", 1]]","[[""Chestnut Lumber"", 2], [""Chestnut Lumber"", 3], [""Chestnut Lumber"", 4]]"
-Amateur,28,[],Chestnut Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Chestnut Log"", 3]]","[[""Chestnut Lumber"", 6], [""Chestnut Lumber"", 9], [""Chestnut Lumber"", 12]]"
-Amateur,28,[],Mana Chestnut Lumber,Wind,Wood Purification,"[[""Chestnut Log"", 1], [""Earth Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,28,[],Poison Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Chocobo Fletchings"", 1], [""Poison Arrowheads"", 1]]","[[""Poison Arrow"", 66], [""Poison Arrow"", 99], [""Poison Arrow"", 99]]"
-Amateur,28,"[[""Bonecraft"", 8]]",Power Bow,Wind,,"[[""Elm Lumber"", 2], [""Coeurl Whisker"", 1], [""Scorpion Claw"", 1], [""Wool Cloth"", 1]]","[[""Power Bow +1"", 1], null, null]"
-Amateur,29,[],Elm Staff,Wind,,"[[""Elm Lumber"", 1], [""Ram Horn"", 1]]","[[""Elm Staff +1"", 1], null, null]"
-Amateur,29,[],Shihei,Wind,,"[[""Black Ink"", 1], [""Bast Parchment"", 2]]","[[""Shihei"", 66], [""Shihei"", 99], [""Shihei"", 99]]"
-Amateur,30,[],Silver Arrow,Earth,,"[[""Ash Lumber"", 1], [""Yagudo Fletchings"", 1], [""Silver Arrowheads"", 1]]","[[""Silver Arrow"", 66], [""Silver Arrow"", 99], [""Silver Arrow"", 99]]"
-Amateur,30,"[[""Goldsmithing"", 7]]",Silver Arrow,Wind,,"[[""Arrowwood Lumber"", 1], [""Yagudo Feather"", 2], [""Silver Ingot"", 1]]","[[""Silver Arrow"", 66], [""Silver Arrow"", 99], [""Silver Arrow"", 99]]"
-Amateur,30,[],Silver Arrow,Earth,,"[[""Woodworking Kit 30"", 1]]","[null, null, null]"
-Amateur,30,[],Transom,Earth,,"[[""Mahogany Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Silica"", 1], [""Pebble"", 1], [""Novice (31-40)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,31,[],Book Holder,Earth,,"[[""Holly Lumber"", 1], [""Lauan Lumber"", 1]]","[null, null, null]"
-Amateur,31,[],Dogwood Lumber,Wind,,"[[""Dogwood Log"", 1]]","[[""Dogwood Lumber"", 2], [""Dogwood Lumber"", 3], [""Dogwood Lumber"", 4]]"
-Amateur,31,[],Dogwood Lumber,Wind,Lumberjack,"[[""Dogwood Log"", 3], [""Bundling Twine"", 1]]","[[""Dogwood Lumber"", 6], [""Dogwood Lumber"", 9], [""Dogwood Lumber"", 12]]"
-Amateur,31,"[[""Smithing"", 6]]",Spear,Wind,,"[[""Iron Ingot"", 1], [""Ash Lumber"", 1], [""Linen Thread"", 1]]","[[""Spear +1"", 1], null, null]"
-Amateur,32,[],Chestnut Sabots,Wind,,"[[""Chestnut Lumber"", 1], [""Sheep Leather"", 1]]","[[""Chestnut Sabots +1"", 1], null, null]"
-Amateur,32,[],Chestnut Wand,Wind,,"[[""Chestnut Lumber"", 1], [""Bird Feather"", 1]]","[[""Solid Wand"", 1], null, null]"
-Amateur,32,[],Soshi,Earth,,"[[""Grass Thread"", 1], [""Black Ink"", 1], [""Bast Parchment"", 2]]","[[""Soshi"", 66], [""Soshi"", 99], [""Soshi"", 99]]"
-Amateur,33,"[[""Smithing"", 8]]",Crossbow,Wind,,"[[""Iron Ingot"", 1], [""Glass Fiber"", 1], [""Chestnut Lumber"", 1]]","[[""Crossbow +1"", 1], null, null]"
-Amateur,33,"[[""Smithing"", 6]]",Spiked Club,Wind,,"[[""Walnut Lumber"", 2], [""Bronze Ingot"", 1]]","[[""Spiked Club +1"", 1], null, null]"
-Amateur,34,[],Mahogany Shield,Earth,,"[[""Iron Sheet"", 1], [""Mahogany Lumber"", 2]]","[[""Strong Shield"", 1], null, null]"
-Amateur,34,"[[""Smithing"", 7]]",Mizu-Deppo,Earth,,"[[""Chestnut Lumber"", 1], [""Bronze Sheet"", 1], [""Distilled Water"", 1]]","[[""Mizu-Deppo"", 66], [""Mizu-Deppo"", 99], [""Mizu-Deppo"", 99]]"
-Amateur,35,[],Ethereal Oak Lumber,Wind,Wood Ensorcellment,"[[""Oak Log"", 1], [""Ice Anima"", 1], [""Wind Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
-Amateur,35,[],Exorcismal Oak Lumber,Wind,Wood Purification,"[[""Oak Lumber"", 1], [""Ice Anima"", 1], [""Earth Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
-Amateur,35,[],High Mana Wand,Wind,,"[[""Mana Chestnut Lumber"", 1], [""Chestnut Wand"", 1]]","[null, null, null]"
-Amateur,35,[],Oak Lumber,Wind,,"[[""Oak Log"", 1]]","[[""Oak Lumber"", 2], [""Oak Lumber"", 3], [""Oak Lumber"", 4]]"
-Amateur,35,[],Oak Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Oak Log"", 3]]","[[""Oak Lumber"", 6], [""Oak Lumber"", 9], [""Oak Lumber"", 12]]"
-Amateur,35,"[[""Leathercraft"", 30]]",Wicker Box,Earth,,"[[""Willow Lumber"", 1], [""Rattan Lumber"", 3], [""Ram Leather"", 1]]","[null, null, null]"
-Amateur,35,[],Black Bolt,Earth,,"[[""Teak Lumber"", 1], [""Black Bolt Heads"", 1]]","[[""Black Bolt"", 66], [""Black Bolt"", 99], [""Black Bolt"", 99]]"
-Amateur,35,[],Black Bolt,Earth,,"[[""Bundling Twine"", 1], [""Teak Lumber"", 3], [""Black Bolt Heads"", 3]]","[null, null, null]"
-Amateur,35,[],Black Bolt,Earth,,"[[""Woodworking Kit 35"", 1]]","[null, null, null]"
-Amateur,35,[],Valance,Earth,,"[[""Chestnut Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1]]","[null, null, null]"
-Amateur,36,[],Tarutaru Desk,Earth,,"[[""Lauan Lumber"", 5], [""Linen Cloth"", 2]]","[null, null, null]"
-Amateur,36,[],Fairweather Fetish,Earth,,"[[""Saruta Cotton"", 1], [""Bast Parchment"", 1]]","[null, null, null]"
-Amateur,36,"[[""Smithing"", 8]]",Tracker's Bow,Wind,,"[[""Mahogany Heartwood"", 1], [""Crossbow"", 1]]","[[""Tracker's Bow +1"", 1], null, null]"
-Amateur,37,[],Tactician Magician's Wand +1,Wind,,"[[""Tactician Magician's Wand"", 1], [""Chestnut Lumber"", 1]]","[[""Tactician Magician's Wand +2"", 1], null, null]"
-Amateur,37,[],Traversiere,Wind,,"[[""Oak Lumber"", 1], [""Parchment"", 1]]","[[""Traversiere +1"", 1], [""Traversiere +2"", 1], null]"
-Amateur,38,"[[""Smithing"", 30]]",Caisson,Earth,,"[[""Bronze Sheet"", 2], [""Chestnut Lumber"", 2]]","[null, null, null]"
-Amateur,38,"[[""Bonecraft"", 15]]",Great Bow,Wind,,"[[""Coeurl Whisker"", 1], [""Chestnut Lumber"", 2], [""Velvet Cloth"", 1], [""Scorpion Claw"", 1]]","[[""Great Bow +1"", 1], null, null]"
-Amateur,39,[],Beetle Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Chocobo Fletchings"", 1], [""Beetle Arrowheads"", 1]]","[[""Beetle Arrow"", 66], [""Beetle Arrow"", 99], [""Beetle Arrow"", 99]]"
-Amateur,39,[],Composite Bow,Wind,,"[[""Ash Lumber"", 1], [""Willow Lumber"", 1], [""Linen Cloth"", 1], [""Wool Thread"", 1]]","[[""Composite Bow +1"", 1], null, null]"
-Amateur,39,[],Kawahori-Ogi,Earth,,"[[""Animal Glue"", 1], [""Bamboo Stick"", 1], [""Bast Parchment"", 1]]","[[""Kawahori-Ogi"", 66], [""Kawahori-Ogi"", 99], [""Kawahori-Ogi"", 99]]"
-Amateur,39,[],Vermihumus,Dark,,"[[""Humus"", 2]]","[[""Vermihumus"", 6], [""Vermihumus"", 8], [""Vermihumus"", 10]]"
-Amateur,39,[],Vermihumus,Dark,,"[[""Derfland Humus"", 1]]","[[""Vermihumus"", 6], [""Vermihumus"", 8], [""Vermihumus"", 10]]"
-Amateur,39,[],Vermihumus,Dark,,"[[""Rich Humus"", 2]]","[[""Vermihumus"", 8], [""Vermihumus"", 10], [""Vermihumus"", 12]]"
-Amateur,40,[],Oak Table,Earth,,"[[""Oak Lumber"", 4]]","[null, null, null]"
-Amateur,40,[],Bahut,Earth,,"[[""Walnut Lumber"", 5], [""Rattan Lumber"", 3]]","[null, null, null]"
-Amateur,40,[],Bahut,Earth,,"[[""Woodworking Kit 40"", 1]]","[null, null, null]"
-Amateur,40,[],San d'Orian Sill,Earth,,"[[""Mahogany Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1]]","[null, null, null]"
-Amateur,40,[],Windurstian Sill,Earth,,"[[""Dogwood Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1]]","[null, null, null]"
-Amateur,40,[],Bastokan Sill,Earth,,"[[""Ebony Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Apprentice (41-50)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,41,[],Mokujin,Earth,,"[[""Linen Thread"", 1], [""Silk Cloth"", 1], [""Feyweald Log"", 1]]","[[""Mokujin"", 66], [""Mokujin"", 99], [""Mokujin"", 99]]"
-Amateur,41,"[[""Smithing"", 38]]",Lance,Fire,,"[[""Ash Lumber"", 2], [""Steel Ingot"", 2]]","[[""Lance +1"", 1], null, null]"
-Amateur,41,[],Oak Cudgel,Wind,,"[[""Oak Lumber"", 1]]","[[""Oak Cudgel +1"", 1], null, null]"
-Amateur,42,[],Fang Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Yagudo Fletchings"", 1], [""Fang Arrowheads"", 1]]","[[""Fang Arrow"", 66], [""Fang Arrow"", 99], [""Fang Arrow"", 99]]"
-Amateur,42,"[[""Smithing"", 11]]",Halberd,Earth,,"[[""Ash Lumber"", 1], [""Steel Ingot"", 1], [""Wool Thread"", 1]]","[[""Halberd +1"", 1], null, null]"
-Amateur,43,[],Bulky Coffer,Earth,,"[[""Gold Ore"", 1], [""Light Chest"", 1]]","[null, null, null]"
-Amateur,43,[],Ebony Sabots,Wind,,"[[""Ebony Lumber"", 1], [""Sheep Leather"", 1]]","[[""Ebony Sabots +1"", 1], null, null]"
-Amateur,43,"[[""Smithing"", 19]]",Zamburak,Wind,,"[[""Coeurl Whisker"", 1], [""Steel Ingot"", 1], [""Oak Lumber"", 1]]","[[""Zamburak +1"", 1], null, null]"
-Amateur,44,[],Flower Stand,Earth,,"[[""Yew Lumber"", 1], [""Lauan Lumber"", 1]]","[null, null, null]"
-Amateur,44,[],Oak Staff,Wind,,"[[""Oak Lumber"", 1], [""Black Tiger Fang"", 1]]","[[""Oak Staff +1"", 1], null, null]"
-Amateur,44,[],Warp Cudgel,Wind,,"[[""Ethereal Oak Lumber"", 1], [""Oak Cudgel"", 1]]","[null, null, null]"
-Amateur,45,"[[""Alchemy"", 29]]",Bast Parchment,Lightning,,"[[""Elm Log"", 1], [""Moko Grass"", 1], [""Distilled Water"", 1]]","[null, null, null]"
-Amateur,45,[],Rosewood Lumber,Wind,,"[[""Rosewood Log"", 1]]","[[""Rosewood Lumber"", 2], [""Rosewood Lumber"", 3], [""Rosewood Lumber"", 4]]"
-Amateur,45,[],Rosewood Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Rosewood Log"", 3]]","[[""Rosewood Lumber"", 6], [""Rosewood Lumber"", 9], [""Rosewood Lumber"", 12]]"
-Amateur,45,[],Rosewood Lumber,Wind,,"[[""Woodworking Kit 45"", 1]]","[null, null, null]"
-Amateur,45,[],Puce Chest,Earth,,"[[""Iron Ingot"", 1], [""Thief's Tools"", 1], [""Green Textile Dye"", 1], [""Yellow Textile Dye"", 1], [""Guatambu Lumber"", 1]]","[null, null, null]"
-Amateur,46,[],Elm Pole,Wind,,"[[""Elm Lumber"", 2]]","[[""Elm Pole +1"", 1], null, null]"
-Amateur,46,[],Mythril Bolt,Earth,,"[[""Walnut Lumber"", 1], [""Mythril Bolt Heads"", 1]]","[[""Mythril Bolt"", 66], [""Mythril Bolt"", 99], [""Mythril Bolt"", 99]]"
-Amateur,46,[],Mythril Bolt,Earth,Boltmaker,"[[""Walnut Lumber"", 3], [""Mythril Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
-Amateur,46,[],Royal Knight Army Lance +1,Earth,,"[[""Royal Knight Army Lance"", 1], [""Ash Lumber"", 1]]","[[""Royal Knight Army Lance +2"", 1], null, null]"
-Amateur,47,[],Fire Arrow,Earth,,"[[""Ash Lumber"", 1], [""Fire Arrowheads"", 1], [""Bird Fletchings"", 1]]","[[""Fire Arrow"", 66], [""Fire Arrow"", 99], [""Fire Arrow"", 99]]"
-Amateur,47,[],Rose Wand,Wind,,"[[""Rosewood Lumber"", 1], [""Black Chocobo Feather"", 1]]","[[""Rose Wand +1"", 1], null, null]"
-Amateur,47,[],San d'Orian Halberd,Earth,,"[[""Ash Lumber"", 1], [""Royal Squire's Halberd"", 1]]","[[""Kingdom Halberd"", 1], null, null]"
-Amateur,48,"[[""Bonecraft"", 15]]",Battle Bow,Wind,,"[[""Coeurl Whisker"", 1], [""Chestnut Lumber"", 2], [""Silk Cloth"", 1], [""Scorpion Claw"", 1]]","[[""Battle Bow +1"", 1], null, null]"
-Amateur,48,"[[""Smithing"", 12]]",Oak Shield,Earth,,"[[""Iron Sheet"", 1], [""Oak Lumber"", 2]]","[[""Oak Shield +1"", 1], null, null]"
-Amateur,48,[],Passaddhi Staff,Wind,,"[[""Hefty Oak Lumber"", 1], [""Black Tiger Fang"", 1]]","[[""Passaddhi Staff +1"", 1], null, null]"
-Amateur,49,[],Horn Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Horn Arrowheads"", 1], [""Bird Fletchings"", 1]]","[[""Horn Arrow"", 66], [""Horn Arrow"", 99], [""Horn Arrow"", 99]]"
-Amateur,49,"[[""Clothcraft"", 49]]",Oak Bed,Earth,,"[[""Oak Lumber"", 4], [""Linen Thread"", 1], [""Linen Cloth"", 3]]","[null, null, null]"
-Amateur,50,[],Coated Shield,Earth,,"[[""Exorcismal Oak Lumber"", 1], [""Oak Shield"", 1]]","[null, null, null]"
-Amateur,50,"[[""Smithing"", 11]]",Quarterstaff,Wind,,"[[""Iron Ingot"", 1], [""Walnut Lumber"", 2]]","[[""Footman's Staff"", 1], null, null]"
-Amateur,50,[],Sleep Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Bird Fletchings"", 1], [""Sleep Arrowheads"", 1]]","[[""Sleep Arrow"", 66], [""Sleep Arrow"", 99], [""Sleep Arrow"", 99]]"
-Amateur,50,[],Sleep Arrow,Earth,,"[[""Woodworking Kit 50"", 1]]","[null, null, null]"
-Amateur,50,[],Kotatsu Table,Wind,,"[[""Bronze Ingot"", 1], [""Rosewood Lumber"", 1], [""Cotton Cloth"", 2], [""Saruta Cotton"", 2], [""Bomb Arm"", 1], [""Journeyman (51-60)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,51,"[[""Clothcraft"", 26]]",Desk,Earth,,"[[""Lauan Lumber"", 1], [""Elm Lumber"", 1], [""Linen Cloth"", 1]]","[null, null, null]"
-Amateur,51,[],Fastwater Fishing Rod,Light,,"[[""Broken Fastwater Rod"", 1]]","[null, null, null]"
-Amateur,51,[],Mahogany Lumber,Wind,,"[[""Mahogany Log"", 1]]","[[""Mahogany Lumber"", 2], [""Mahogany Lumber"", 3], [""Mahogany Lumber"", 4]]"
-Amateur,51,[],Mahogany Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Mahogany Log"", 3]]","[[""Mahogany Lumber"", 6], [""Mahogany Lumber"", 9], [""Mahogany Lumber"", 12]]"
-Amateur,52,"[[""Smithing"", 41]]",Kamayari,Earth,,"[[""Iron Ingot"", 1], [""Oak Lumber"", 1], [""Tama-Hagane"", 1], [""Silk Thread"", 1]]","[[""Kamayari +1"", 1], null, null]"
-Amateur,52,[],Paralysis Arrow,Earth,,"[[""Dogwood Lumber"", 1], [""Apkallu Fletchings"", 1], [""Paralysis Arrowheads"", 1]]","[[""Paralysis Arrow"", 66], [""Paralysis Arrow"", 99], [""Paralysis Arrow"", 99]]"
-Amateur,52,[],Furusumi,Earth,,"[[""Kapor Log"", 1], [""Animal Glue"", 1], [""Distilled Water"", 1], [""Soot"", 1]]","[[""Furusumi"", 66], [""Furusumi"", 66], [""Furusumi"", 99]]"
-Amateur,53,[],Azure Chest,Earth,,"[[""Gold Ore"", 1], [""Blue Textile Dye"", 1], [""Light Chest"", 1]]","[null, null, null]"
-Amateur,53,"[[""Clothcraft"", 11], [""Alchemy"", 46]]",Meifu Goma,Earth,,"[[""Arrowwood Lumber"", 1], [""Koma"", 1], [""Firesand"", 1], [""Cotton Thread"", 1]]","[[""Meifu Goma"", 66], [""Meifu Goma"", 99], [""Meifu Goma"", 99]]"
-Amateur,53,[],Rose Harp,Earth,,"[[""Coeurl Whisker"", 1], [""Rosewood Lumber"", 2]]","[[""Rose Harp +1"", 1], null, null]"
-Amateur,53,[],Pastoral Staff,Earth,Wood Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Quarterstaff"", 1]]","[null, null, null]"
-Amateur,53,[],Tavern Bench,Earth,,"[[""Mahogany Lumber"", 2], [""Rosewood Lumber"", 2]]","[null, null, null]"
-Amateur,54,"[[""Smithing"", 14]]",Great Club,Wind,,"[[""Bronze Ingot"", 1], [""Mahogany Lumber"", 1]]","[[""Great Club +1"", 1], null, null]"
-Amateur,54,"[[""Alchemy"", 16]]",Amigo Cactus,Earth,,"[[""Cactus Arm"", 1], [""Humus"", 1], [""Karugo Clay"", 1], [""Red Gravel"", 1], [""Yellow Rock"", 1]]","[null, null, null]"
-Amateur,54,"[[""Alchemy"", 16]]",Amiga Cactus,Earth,,"[[""Cactus Arm"", 1], [""Humus"", 1], [""Karugo Clay"", 1], [""Red Gravel"", 1], [""Red Rock"", 1]]","[null, null, null]"
-Amateur,55,[],Oak Pole,Wind,,"[[""Oak Lumber"", 2]]","[[""Oak Pole +1"", 1], null, null]"
-Amateur,55,[],Obsidian Arrow,Earth,,"[[""Obsidian Arrowheads"", 1], [""Teak Lumber"", 1], [""Gnat Fletchings"", 1]]","[[""Obsidian Arrow"", 66], [""Obsidian Arrow"", 99], [""Obsidian Arrow"", 99]]"
-Amateur,55,[],Fastwater Fishing Rod,Wind,,"[[""Woodworking Kit 55"", 1]]","[null, null, null]"
-Amateur,55,[],Jinko,Wind,,"[[""Aquilaria Log"", 1]]","[[""Jinko"", 66], [""Jinko"", 99], [""Jinko"", 99]]"
-Amateur,56,[],Fastwater Fishing Rod,Wind,,"[[""Elm Lumber"", 1], [""Wool Thread"", 1]]","[null, null, null]"
-Amateur,56,[],Stepping Stool,Earth,,"[[""Ebony Lumber"", 2], [""Oak Lumber"", 3]]","[null, null, null]"
-Amateur,57,[],Kaman,Wind,,"[[""Elm Lumber"", 1], [""Bamboo Stick"", 1], [""Silk Thread"", 1], [""Wool Cloth"", 1]]","[[""Kaman +1"", 1], null, null]"
-Amateur,57,[],Earth Arrow,Earth,,"[[""Dogwood Lumber"", 1], [""Puk Fletchings"", 1], [""Earth Arrowheads"", 1]]","[[""Earth Arrow"", 66], [""Earth Arrow"", 99], [""Earth Arrow"", 99]]"
-Amateur,57,[],Ice Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Insect Fletchings"", 1], [""Ice Arrowheads"", 1]]","[[""Ice Arrow"", 66], [""Ice Arrow"", 99], [""Ice Arrow"", 99]]"
-Amateur,57,[],Lightning Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Insect Fletchings"", 1], [""Lightning Arrowheads"", 1]]","[[""Lightning Arrow"", 66], [""Lightning Arrow"", 99], [""Lightning Arrow"", 99]]"
-Amateur,57,[],Water Arrow,Earth,,"[[""Dogwood Lumber"", 1], [""Puk Fletchings"", 1], [""Water Arrowheads"", 1]]","[[""Water Arrow"", 66], [""Water Arrow"", 99], [""Water Arrow"", 99]]"
-Amateur,57,[],Wind Arrow,Earth,,"[[""Dogwood Lumber"", 1], [""Puk Fletchings"", 1], [""Wind Arrowheads"", 1]]","[[""Wind Arrow"", 66], [""Wind Arrow"", 99], [""Wind Arrow"", 99]]"
-Amateur,58,"[[""Alchemy"", 25]]",War Bow,Wind,,"[[""Oak Lumber"", 2], [""Silk Cloth"", 1], [""Carbon Fiber"", 1], [""Glass Fiber"", 1]]","[[""War Bow +1"", 1], null, null]"
-Amateur,59,"[[""Smithing"", 28]]",Arbalest,Wind,,"[[""Carbon Fiber"", 1], [""Mahogany Lumber"", 1], [""Mythril Ingot"", 1]]","[[""Arbalest +1"", 1], null, null]"
-Amateur,59,[],Scorpion Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Scorpion Arrowheads"", 1], [""Insect Fletchings"", 1]]","[[""Scorpion Arrow"", 66], [""Scorpion Arrow"", 99], [""Scorpion Arrow"", 99]]"
-Amateur,59,[],Federal Mercenary's Hammock,Earth,,"[[""Bamboo Stick"", 1], [""Lauan Lumber"", 1], [""Holly Lumber"", 2], [""Rattan Lumber"", 3], [""Wisteria Lumber"", 1]]","[null, null, null]"
-Amateur,60,"[[""Clothcraft"", 53]]",Mahogany Bed,Earth,,"[[""Mahogany Lumber"", 4], [""Wool Thread"", 1], [""Wool Cloth"", 3]]","[null, null, null]"
-Amateur,60,"[[""Smithing"", 42]]",Mythril Lance,Fire,,"[[""Mythril Ingot"", 2], [""Ash Lumber"", 2]]","[[""Mythril Lance +1"", 1], null, null]"
-Amateur,60,[],Red Viola,Water,,"[[""Red Rock"", 1], [""Granite"", 1], [""Red Gravel"", 1], [""Wildgrass Seeds"", 1], [""Humus"", 1]]","[null, null, null]"
-Amateur,60,[],Blue Viola,Water,,"[[""Blue Rock"", 1], [""Granite"", 1], [""Red Gravel"", 1], [""Wildgrass Seeds"", 1], [""Humus"", 1]]","[null, null, null]"
-Amateur,60,[],Yellow Viola,Water,,"[[""Yellow Rock"", 1], [""Granite"", 1], [""Red Gravel"", 1], [""Wildgrass Seeds"", 1], [""Humus"", 1]]","[null, null, null]"
-Amateur,60,[],White Viola,Water,,"[[""White Rock"", 1], [""Granite"", 1], [""Red Gravel"", 1], [""Wildgrass Seeds"", 1], [""Humus"", 1]]","[null, null, null]"
-Amateur,60,[],Personal Table,Earth,,"[[""Walnut Lumber"", 1], [""Rosewood Lumber"", 1], [""Gold Ingot"", 1]]","[null, null, null]"
-Amateur,60,[],White Viola,Water,,"[[""Woodworking Kit 60"", 1], [""Craftsman (61-70)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,61,[],Chest,Earth,,"[[""Rattan Lumber"", 3], [""Lauan Lumber"", 2]]","[null, null, null]"
-Amateur,61,[],Ebony Lumber,Wind,,"[[""Ebony Log"", 1]]","[[""Ebony Lumber"", 2], [""Ebony Lumber"", 3], [""Ebony Lumber"", 4]]"
-Amateur,61,[],Ebony Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Ebony Log"", 3]]","[[""Ebony Lumber"", 6], [""Ebony Lumber"", 9], [""Ebony Lumber"", 12]]"
-Amateur,61,[],Gueridon,Earth,,"[[""Walnut Lumber"", 2], [""Rosewood Lumber"", 1], [""Gold Ingot"", 1]]","[null, null, null]"
-Amateur,62,[],Darksteel Bolt,Earth,,"[[""Darksteel Bolt Heads"", 1], [""Yew Lumber"", 1]]","[[""Darksteel Bolt"", 66], [""Darksteel Bolt"", 99], [""Darksteel Bolt"", 99]]"
-Amateur,62,[],Darksteel Bolt,Earth,Boltmaker,"[[""Yew Lumber"", 3], [""Darksteel Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
-Amateur,62,[],Mahogany Staff,Wind,,"[[""Demon Horn"", 1], [""Turquoise"", 1], [""Mahogany Lumber"", 1]]","[[""Heavy Staff"", 1], null, null]"
-Amateur,62,[],Fay Staff,Wind,,"[[""Turquoise"", 1], [""Gargouille Horn"", 1], [""Feyweald Lumber"", 1]]","[null, null, null]"
-Amateur,62,[],Aureous Chest,Earth,,"[[""Walnut Lumber"", 2], [""Mahogany Lumber"", 1], [""Gold Ingot"", 1]]","[null, null, null]"
-Amateur,63,"[[""Goldsmithing"", 11]]",Coffer,Earth,,"[[""Brass Sheet"", 1], [""Yew Lumber"", 5], [""Rosewood Lumber"", 1]]","[null, null, null]"
-Amateur,63,"[[""Alchemy"", 54]]",Hydro Pump,Earth,,"[[""Bamboo Stick"", 1], [""Chestnut Lumber"", 1], [""Coeurl Whisker"", 1], [""Carbon Fiber"", 1], [""Animal Glue"", 1], [""Water Cluster"", 1]]","[[""Hydro Pump"", 99], null, null]"
-Amateur,63,[],Tarutaru Fishing Rod,Light,,"[[""Broken Tarutaru Rod"", 1]]","[null, null, null]"
-Amateur,63,[],Fay Crozier,Wind,,"[[""Gargouille Eye"", 1], [""Feyweald Lumber"", 1]]","[null, null, null]"
-Amateur,64,[],Angel's Flute,Wind,,"[[""Rosewood Lumber"", 1], [""Parchment"", 1]]","[[""Angel Flute +1"", 1], null, null]"
-Amateur,64,[],Lightning Bow,Earth,,"[[""Ose Whisker"", 1], [""Kaman"", 1]]","[[""Lightning Bow +1"", 1], null, null]"
-Amateur,64,[],Royal Squire's Bunk,Earth,,"[[""Iron Sheet"", 1], [""Chestnut Lumber"", 1], [""Walnut Lumber"", 1], [""Ash Lumber"", 2], [""Wool Cloth"", 2], [""Sheep Wool"", 1]]","[null, null, null]"
-Amateur,64,[],Qi Staff,Wind,,"[[""Mahogany Lumber"", 1], [""Demon Horn"", 1], [""Blue Jasper"", 1]]","[[""Qi Staff +1"", 1], null, null]"
-Amateur,64,[],Floral Nightstand,Earth,,"[[""Rosewood Lumber"", 1], [""Ebony Lumber"", 1], [""Gold Ingot"", 1]]","[null, null, null]"
-Amateur,65,[],Gold Arrow,Earth,,"[[""Ash Lumber"", 1], [""Yagudo Fletchings"", 1], [""Gold Arrowheads"", 1]]","[[""Gold Arrow"", 66], [""Gold Arrow"", 99], [""Gold Arrow"", 99]]"
-Amateur,65,[],Secretaire,Earth,,"[[""Mahogany Lumber"", 4]]","[null, null, null]"
-Amateur,65,[],Tarutaru Fishing Rod,Wind,,"[[""Walnut Lumber"", 1], [""Silk Thread"", 1]]","[null, null, null]"
-Amateur,65,[],Oxidant Bolt,Earth,,"[[""Urunday Lumber"", 1], [""Acid Bolt Heads"", 1]]","[[""Oxidant Bolt"", 66], [""Oxidant Bolt"", 99], [""Oxidant Bolt"", 99]]"
-Amateur,65,[],Oxidant Bolt,Earth,Boltmaker,"[[""Urunday Lumber"", 3], [""Acid Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
-Amateur,65,[],Gilded Chest,Earth,,"[[""Walnut Lumber"", 1], [""Mahogany Lumber"", 2], [""Gold Ingot"", 1]]","[null, null, null]"
-Amateur,65,[],Tarutaru Fishing Rod,Wind,,"[[""Woodworking Kit 65"", 1]]","[null, null, null]"
-Amateur,66,[],Ebony Wand,Wind,,"[[""Ebony Lumber"", 1], [""Giant Bird Feather"", 1]]","[[""Ebony Wand +1"", 1], null, null]"
-Amateur,66,[],Revenging Staff,Wind,,"[[""Arioch Fang"", 1], [""Oak Lumber"", 1]]","[[""Revenging Staff +1"", 1], null, null]"
-Amateur,66,[],Fay Lance,Fire,,"[[""Darksteel Ingot"", 2], [""Ash Lumber"", 1], [""Feyweald Lumber"", 1]]","[null, null, null]"
-Amateur,66,[],Feyweald Lumber,Wind,,"[[""Feyweald Log"", 1]]","[[""Feyweald Lumber"", 2], [""Feyweald Lumber"", 3], [""Feyweald Lumber"", 4]]"
-Amateur,66,"[[""Cooking"", 15]]",Deepbed Soil,Dark,,"[[""Beech Log"", 1], [""Woozyshroom"", 1], [""Danceshroom"", 1], [""Sleepshroom"", 1]]","[[""Deepbed Soil"", 6], [""Deepbed Soil"", 8], [""Deepbed Soil"", 10]]"
-Amateur,66,[],Mensa Lunata,Earth,,"[[""Walnut Lumber"", 3], [""Rosewood Lumber"", 1], [""Gold Ingot"", 1]]","[null, null, null]"
-Amateur,67,"[[""Cooking"", 32]]",Beverage Barrel,Earth,,"[[""Water Barrel"", 1], [""Oak Lumber"", 2], [""Grape Juice"", 3]]","[null, null, null]"
-Amateur,67,"[[""Smithing"", 37]]",Partisan,Wind,,"[[""Ash Lumber"", 1], [""Darksteel Ingot"", 1], [""Silver Thread"", 1]]","[[""Partisan +1"", 1], null, null]"
-Amateur,67,"[[""Clothcraft"", 46], [""Alchemy"", 7]]",Red Round Table,Earth,,"[[""Lauan Lumber"", 1], [""Linen Cloth"", 2], [""Velvet Cloth"", 2], [""Platinum Silk Thread"", 1], [""Teak Lumber"", 1], [""Red Textile Dye"", 1]]","[null, null, null]"
-Amateur,67,"[[""Clothcraft"", 46], [""Alchemy"", 7]]",Blue Round Table,Earth,,"[[""Lauan Lumber"", 1], [""Linen Cloth"", 2], [""Velvet Cloth"", 2], [""Platinum Silk Thread"", 1], [""Teak Lumber"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
-Amateur,67,"[[""Clothcraft"", 46], [""Alchemy"", 7]]",Green Round Table,Earth,,"[[""Lauan Lumber"", 1], [""Linen Cloth"", 2], [""Velvet Cloth"", 2], [""Platinum Silk Thread"", 1], [""Teak Lumber"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
-Amateur,67,"[[""Clothcraft"", 46], [""Alchemy"", 7]]",Yellow Round Table,Earth,,"[[""Lauan Lumber"", 1], [""Linen Cloth"", 2], [""Velvet Cloth"", 2], [""Platinum Silk Thread"", 1], [""Teak Lumber"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
-Amateur,67,"[[""Clothcraft"", 46], [""Alchemy"", 7]]",White Round Table,Earth,,"[[""Lauan Lumber"", 1], [""Linen Cloth"", 2], [""Velvet Cloth"", 2], [""Platinum Silk Thread"", 1], [""Teak Lumber"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
-Amateur,67,[],Rococo Table,Earth,,"[[""Ebony Lumber"", 4]]","[null, null, null]"
-Amateur,68,[],Bodkin Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Black Chocobo Fletchings"", 1], [""Armored Arrowheads"", 1]]","[[""Bodkin Arrow"", 66], [""Bodkin Arrow"", 99], [""Bodkin Arrow"", 99]]"
-Amateur,68,[],Mahogany Pole,Wind,,"[[""Mahogany Lumber"", 2]]","[[""Mahogany Pole +1"", 1], null, null]"
-Amateur,69,"[[""Smithing"", 21]]",Angon,Wind,,"[[""Iron Ingot"", 2], [""Yew Lumber"", 3], [""Wool Thread"", 1]]","[[""Angon"", 66], [""Angon"", 99], [""Angon"", 99]]"
-Amateur,69,"[[""Smithing"", 40]]",Console,Earth,,"[[""Iron Sheet"", 2], [""Dogwood Lumber"", 3]]","[null, null, null]"
-Amateur,69,[],Demon Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Black Chocobo Fletchings"", 1], [""Demon Arrowheads"", 1]]","[[""Demon Arrow"", 66], [""Demon Arrow"", 99], [""Demon Arrow"", 99]]"
-Amateur,69,[],Rapid Bow,Wind,,"[[""Walnut Lumber"", 1], [""Ebony Lumber"", 1], [""Silver Thread"", 1], [""Silk Cloth"", 1]]","[[""Rapid Bow +1"", 1], null, null]"
-Amateur,70,"[[""Smithing"", 32], [""Bonecraft"", 19]]",Heavy Crossbow,Wind,,"[[""Ebony Lumber"", 1], [""Carbon Fiber"", 1], [""Darksteel Ingot"", 1], [""Mahogany Lumber"", 1], [""Giant Femur"", 1]]","[[""Heavy Crossbow +1"", 1], null, null]"
-Amateur,70,"[[""Smithing"", 8]]",Hickory Shield,Earth,,"[[""Iron Sheet"", 1], [""Hickory Lumber"", 2]]","[[""Picaroon's Shield"", 1], null, null]"
-Amateur,70,"[[""Bonecraft"", 45]]",Fay Gendawa,Wind,,"[[""Ancient Lumber"", 1], [""Rainbow Cloth"", 1], [""Rafflesia Vine"", 1], [""Gargouille Horn"", 1], [""Feyweald Lumber"", 1]]","[null, null, null]"
-Amateur,70,[],Lu Shang's Fishing Rod,Light,,"[[""Broken Lu Shang's Rod"", 1]]","[null, null, null]"
-Amateur,70,[],Lu Shang's Fishing Rod +1,Light,,"[[""Broken Lu Shang's Fishing Rod +1"", 1]]","[null, null, null]"
-Amateur,70,[],Luxurious Chest,Earth,,"[[""Walnut Lumber"", 4], [""Mahogany Lumber"", 2], [""Gold Ingot"", 1], [""Artisan (71-80)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,71,[],Ebony Harp,Earth,,"[[""Ebony Lumber"", 2], [""Coeurl Whisker"", 1]]","[[""Ebony Harp +1"", 1], [""Ebony Harp +2"", 1], null]"
-Amateur,71,[],Water Barrel,Earth,,"[[""Iron Sheet"", 1], [""Oak Lumber"", 3]]","[null, null, null]"
-Amateur,71,[],Bongo Drum,Earth,,"[[""Bamboo Stick"", 1], [""Dhalmel Hide"", 1], [""Buffalo Leather"", 1]]","[null, null, null]"
-Amateur,71,[],Ebony Harp,Earth,,"[[""Woodworking Kit 71"", 1]]","[null, null, null]"
-Amateur,72,[],Ancient Lumber,Wind,,"[[""Petrified Log"", 1]]","[[""Ancient Lumber"", 2], [""Ancient Lumber"", 3], [""Ancient Lumber"", 4]]"
-Amateur,72,[],Ancient Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Petrified Log"", 3]]","[[""Ancient Lumber"", 6], [""Ancient Lumber"", 9], [""Ancient Lumber"", 12]]"
-Amateur,72,[],Hume Fishing Rod,Light,,"[[""Broken Hume Rod"", 1]]","[null, null, null]"
-Amateur,72,[],Tarutaru Folding Screen,Earth,,"[[""Rattan Lumber"", 3], [""Parchment"", 3]]","[null, null, null]"
-Amateur,72,[],Sanctified Lumber,Wind,Wood Purification,"[[""Petrified Log"", 1], [""Water Anima"", 1], [""Ice Anima"", 1], [""Light Anima"", 1]]","[[""Sanctified Lumber"", 2], [""Sanctified Lumber"", 3], [""Sanctified Lumber"", 4]]"
-Amateur,73,"[[""Smithing"", 26]]",Chiffonier,Earth,,"[[""Iron Sheet"", 2], [""Rosewood Lumber"", 3]]","[null, null, null]"
-Amateur,73,[],Clothespole,Light,,"[[""Broken Clothespole"", 1]]","[null, null, null]"
-Amateur,73,[],Musketeer's Pole +1,Earth,,"[[""Musketeer's Pole"", 1], [""Mahogany Lumber"", 1]]","[[""Musketeer's Pole +2"", 1], null, null]"
-Amateur,73,[],Platinum Arrow,Earth,,"[[""Ash Lumber"", 1], [""Yagudo Fletchings"", 1], [""Platinum Arrowheads"", 1]]","[[""Platinum Arrow"", 66], [""Platinum Arrow"", 99], [""Platinum Arrow"", 99]]"
-Amateur,73,[],Gilded Shelf,Earth,,"[[""Walnut Lumber"", 4], [""Mahogany Lumber"", 2], [""Gold Ingot"", 2]]","[null, null, null]"
-Amateur,74,[],Bastokan Staff,Earth,,"[[""Legionnaire's Staff"", 1], [""Ebony Lumber"", 1]]","[[""Republic Staff"", 1], null, null]"
-Amateur,74,"[[""Smithing"", 42], [""Goldsmithing"", 5]]",Couse,Fire,,"[[""Brass Ingot"", 1], [""Darksteel Ingot"", 2], [""Ash Lumber"", 1]]","[[""Couse +1"", 1], null, null]"
-Amateur,74,[],Jeunoan Armoire,Earth,,"[[""Walnut Lumber"", 1], [""Rosewood Lumber"", 1], [""Ebony Lumber"", 2], [""Gold Ingot"", 1]]","[null, null, null]"
-Amateur,74,[],Jeunoan Dresser,Earth,,"[[""Walnut Lumber"", 2], [""Rosewood Lumber"", 1], [""Ebony Lumber"", 4], [""Gold Ingot"", 1]]","[null, null, null]"
-Amateur,74,[],Hume Fishing Rod,Wind,,"[[""Rosewood Lumber"", 1], [""Silver Thread"", 1]]","[null, null, null]"
-Amateur,74,"[[""Smithing"", 19]]",Round Shield,Earth,,"[[""Iron Sheet"", 1], [""Oak Lumber"", 1], [""Mahogany Lumber"", 1]]","[[""Round Shield +1"", 1], null, null]"
-Amateur,74,[],Hume Fishing Rod,Wind,,"[[""Woodworking Kit 74"", 1]]","[null, null, null]"
-Amateur,75,"[[""Smithing"", 41]]",Bureau,Earth,,"[[""Darksteel Sheet"", 1], [""Rosewood Lumber"", 2], [""Mahogany Lumber"", 2]]","[null, null, null]"
-Amateur,75,[],Dark Staff,Wind,,"[[""Ebony Lumber"", 1], [""Dark Bead"", 1]]","[[""Pluto's Staff"", 1], null, null]"
-Amateur,75,[],Earth Staff,Wind,,"[[""Ebony Lumber"", 1], [""Earth Bead"", 1]]","[[""Terra's Staff"", 1], null, null]"
-Amateur,75,[],Fire Staff,Wind,,"[[""Ebony Lumber"", 1], [""Fire Bead"", 1]]","[[""Vulcan's Staff"", 1], null, null]"
-Amateur,75,[],Ice Staff,Wind,,"[[""Ebony Lumber"", 1], [""Ice Bead"", 1]]","[[""Aquilo's Staff"", 1], null, null]"
-Amateur,75,[],Light Staff,Wind,,"[[""Ebony Lumber"", 1], [""Light Bead"", 1]]","[[""Apollo's Staff"", 1], null, null]"
-Amateur,75,[],Thunder Staff,Wind,,"[[""Ebony Lumber"", 1], [""Lightning Bead"", 1]]","[[""Jupiter's Staff"", 1], null, null]"
-Amateur,75,[],Water Staff,Wind,,"[[""Ebony Lumber"", 1], [""Water Bead"", 1]]","[[""Neptune's Staff"", 1], null, null]"
-Amateur,75,[],Wind Staff,Wind,,"[[""Ebony Lumber"", 1], [""Wind Bead"", 1]]","[[""Auster's Staff"", 1], null, null]"
-Amateur,76,"[[""Smithing"", 51]]",Darksteel Lance,Fire,,"[[""Ash Lumber"", 2], [""Darksteel Ingot"", 2]]","[[""Darksteel Lance +1"", 1], null, null]"
-Amateur,76,"[[""Alchemy"", 54]]",Kilo Pump,Earth,,"[[""Bamboo Stick"", 1], [""Chestnut Lumber"", 1], [""Coeurl Whisker"", 2], [""Carbon Fiber"", 1], [""Animal Glue"", 1], [""Water Cluster"", 1]]","[[""Kilo Pump"", 99], null, null]"
-Amateur,76,"[[""Leathercraft"", 60]]",Ngoma,Wind,,"[[""Divine Log"", 1], [""Buffalo Leather"", 1]]","[null, null, null]"
-Amateur,77,[],Clothespole,Wind,,"[[""Mahogany Lumber"", 1], [""Silk Thread"", 1]]","[null, null, null]"
-Amateur,77,[],Commode,Earth,,"[[""Rosewood Lumber"", 5]]","[null, null, null]"
-Amateur,77,[],Dispel Couse,Wind,,"[[""Bewitched Ash Lumber"", 1], [""Couse"", 1]]","[null, null, null]"
-Amateur,78,"[[""Goldsmithing"", 50], [""Clothcraft"", 56]]",Noble's Bed,Earth,,"[[""Gold Ingot"", 1], [""Velvet Cloth"", 1], [""Mahogany Lumber"", 1], [""Rosewood Lumber"", 3], [""Gold Thread"", 1], [""Silk Cloth"", 1]]","[null, null, null]"
-Amateur,78,[],Velocity Bow,Earth,,"[[""Flauros Whisker"", 1], [""Heavy Crossbow"", 1]]","[[""Velocity Bow +1"", 1], null, null]"
-Amateur,78,[],Partition,Earth,,"[[""Mahogany Lumber"", 4], [""Rattan Lumber"", 4]]","[null, null, null]"
-Amateur,78,"[[""Smithing"", 44]]",Spence,Earth,,"[[""Hickory Lumber"", 2], [""Teak Lumber"", 2], [""Walnut Lumber"", 3], [""Darksteel Ingot"", 1]]","[null, null, null]"
-Amateur,79,[],Ebony Pole,Wind,,"[[""Ebony Lumber"", 2]]","[[""Ebony Pole +1"", 1], null, null]"
-Amateur,79,"[[""Smithing"", 20]]",Scimitar Cactus,Water,,"[[""Iron Sheet"", 1], [""Red Gravel"", 1], [""Cactus Arm"", 1], [""Humus"", 1]]","[null, null, null]"
-Amateur,79,[],Windurstian Tea Set,Wind,,"[[""Jacaranda Lumber"", 1], [""Bast Parchment"", 1]]","[null, null, null]"
-Amateur,80,"[[""Goldsmithing"", 11]]",Tower Shield,Earth,,"[[""Ebony Lumber"", 1], [""Brass Ingot"", 1], [""Brass Sheet"", 1], [""Oak Lumber"", 2], [""Mahogany Lumber"", 1]]","[[""Tower Shield +1"", 1], null, null]"
-Amateur,80,"[[""Alchemy"", 36]]",River Aquarium,Light,,"[[""Petrified Log"", 1], [""Oak Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Freshwater Set"", 1], [""Kayabaligi"", 3]]","[null, null, null]"
-Amateur,80,"[[""Alchemy"", 36]]",Freshwater Aquarium,Light,,"[[""Petrified Log"", 1], [""Oak Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Freshwater Set"", 1], [""Pipira"", 3]]","[null, null, null]"
-Amateur,80,[],Beech Lumber,Wind,,"[[""Beech Log"", 1]]","[[""Beech Lumber"", 2], [""Beech Lumber"", 3], [""Beech Lumber"", 4]]"
-Amateur,80,[],Beech Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Beech Log"", 3]]","[[""Beech Lumber"", 6], [""Beech Lumber"", 9], [""Beech Lumber"", 12]]"
-Amateur,80,[],Semainier,Earth,,"[[""Rosewood Lumber"", 1], [""Ebony Lumber"", 5], [""Gold Ingot"", 2], [""Adept (81-90)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,81,[],Battle Fork,Earth,,"[[""Ash Lumber"", 1], [""Trident"", 1]]","[[""Battle Fork +1"", 1], null, null]"
-Amateur,81,[],Cabinet,Earth,,"[[""Holly Lumber"", 1], [""Oak Lumber"", 4]]","[null, null, null]"
-Amateur,81,[],Marid Arrow,Earth,,"[[""Dogwood Lumber"", 1], [""Apkallu Fletchings"", 1], [""Marid Tusk Arrowheads"", 1]]","[[""Marid Arrow"", 66], [""Marid Arrow"", 99], [""Marid Arrow"", 99]]"
-Amateur,81,[],Cabinet,Earth,,"[[""Woodworking Kit 81"", 1]]","[null, null, null]"
-Amateur,82,"[[""Goldsmithing"", 50], [""Smithing"", 49]]",Dark Mezraq,Wind,,"[[""Darksteel Ingot"", 2], [""Ebony Lumber"", 1], [""Platinum Ingot"", 1], [""Wamoura Silk"", 1]]","[[""Dark Mezraq +1"", 1], null, null]"
-Amateur,82,[],Leo Crossbow,Earth,,"[[""Mahogany Lumber"", 1], [""Lion Crossbow"", 1]]","[[""Leo Crossbow +1"", 1], null, null]"
-Amateur,82,[],Nymph Shield,Earth,,"[[""Faerie Shield"", 1], [""Oak Lumber"", 1]]","[[""Nymph Shield +1"", 1], null, null]"
-Amateur,82,"[[""Goldsmithing"", 7]]",Yellow Hobby Bo,Earth,,"[[""Chestnut Lumber"", 1], [""Dogwood Lumber"", 1], [""Hickory Lumber"", 1], [""Onyx"", 2], [""Yellow Chocobo Dye"", 1]]","[null, null, null]"
-Amateur,82,"[[""Goldsmithing"", 7]]",Red Hobby Bo,Earth,,"[[""Chestnut Lumber"", 1], [""Dogwood Lumber"", 1], [""Hickory Lumber"", 1], [""Onyx"", 2], [""Red Chocobo Dye"", 1]]","[null, null, null]"
-Amateur,82,"[[""Goldsmithing"", 7]]",Black Hobby Bo,Earth,,"[[""Chestnut Lumber"", 1], [""Dogwood Lumber"", 1], [""Hickory Lumber"", 1], [""Onyx"", 2], [""Black Chocobo Dye"", 1]]","[null, null, null]"
-Amateur,82,"[[""Goldsmithing"", 7]]",Blue Hobby Bo,Earth,,"[[""Chestnut Lumber"", 1], [""Dogwood Lumber"", 1], [""Hickory Lumber"", 1], [""Onyx"", 2], [""Blue Chocobo Dye"", 1]]","[null, null, null]"
-Amateur,82,"[[""Goldsmithing"", 7]]",Green Hobby Bo,Earth,,"[[""Chestnut Lumber"", 1], [""Dogwood Lumber"", 1], [""Hickory Lumber"", 1], [""Onyx"", 2], [""Green Chocobo Dye"", 1]]","[null, null, null]"
-Amateur,83,[],Elshimo Palm,Water,,"[[""Willow Log"", 1], [""Rattan Lumber"", 1], [""Red Gravel"", 1], [""Elshimo Coconut"", 1], [""Humus"", 1]]","[null, null, null]"
-Amateur,83,[],Mithran Fishing Rod,Light,,"[[""Broken Mithran Rod"", 1]]","[null, null, null]"
-Amateur,83,[],Obelisk Lance,Earth,,"[[""Willow Lumber"", 1], [""Lance"", 1], [""Obelisk"", 1]]","[[""Obelisk Lance +1"", 1], null, null]"
-Amateur,83,[],Credenza,Earth,,"[[""Jacaranda Lumber"", 1], [""Rattan Lumber"", 3], [""Teak Lumber"", 4]]","[null, null, null]"
-Amateur,84,"[[""Alchemy"", 54]]",Mega Pump,Earth,,"[[""Bamboo Stick"", 1], [""Chestnut Lumber"", 1], [""Coeurl Whisker"", 3], [""Carbon Fiber"", 1], [""Animal Glue"", 1], [""Water Cluster"", 1]]","[[""Mega Pump"", 99], null, null]"
-Amateur,84,[],Mythic Wand,Wind,,"[[""Phoenix Feather"", 1], [""Ancient Lumber"", 1]]","[[""Mythic Wand +1"", 1], null, null]"
-Amateur,84,[],Numinous Shield,Earth,,"[[""Woodworking Kit 84"", 1]]","[null, null, null]"
-Amateur,85,"[[""Smithing"", 21]]",Battle Staff,Wind,,"[[""Walnut Lumber"", 2], [""Steel Ingot"", 1]]","[[""Battle Staff +1"", 1], null, null]"
-Amateur,85,"[[""Goldsmithing"", 49], [""Clothcraft"", 39]]",Dresser,Earth,,"[[""Gold Ingot"", 1], [""Velvet Cloth"", 1], [""Mythril Sheet"", 1], [""Rosewood Lumber"", 4], [""Gold Thread"", 1]]","[null, null, null]"
-Amateur,85,[],Numinous Shield,Earth,,"[[""Ancient Lumber"", 2], [""Round Shield"", 1]]","[[""Numinous Shield +1"", 1], null, null]"
-Amateur,85,"[[""Goldsmithing"", 9]]",Bookstack,Earth,,"[[""Walnut Lumber"", 3], [""Marble"", 3]]","[null, null, null]"
-Amateur,85,[],Teak Lumber,Wind,,"[[""Teak Log"", 1]]","[[""Teak Lumber"", 2], [""Teak Lumber"", 3], [""Teak Lumber"", 4]]"
-Amateur,85,[],Teak Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Teak Log"", 3]]","[[""Teak Lumber"", 6], [""Teak Lumber"", 9], [""Teak Lumber"", 12]]"
-Amateur,86,"[[""Alchemy"", 57]]",Cermet Lance,Fire,,"[[""Ash Lumber"", 2], [""Cermet Chunk"", 2]]","[[""Cermet Lance +1"", 1], null, null]"
-Amateur,86,[],Eremite's Wand,Earth,,"[[""Willow Lumber"", 1], [""Hermit's Wand"", 1]]","[[""Eremite's Wand +1"", 1], null, null]"
-Amateur,86,[],Broach Lance,Earth,Wood Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Obelisk Lance"", 1]]","[null, null, null]"
-Amateur,87,[],Dominus Shield,Earth,,"[[""Sanctified Lumber"", 1], [""Numinous Shield"", 1]]","[null, null, null]"
-Amateur,87,[],Mithran Fishing Rod,Wind,,"[[""Rattan Lumber"", 1], [""Rainbow Thread"", 1]]","[null, null, null]"
-Amateur,87,"[[""Goldsmithing"", 54], [""Clothcraft"", 59]]",Royal Bed,Earth,,"[[""Ebony Lumber"", 1], [""Gold Ingot"", 1], [""Damascene Cloth"", 1], [""Mahogany Lumber"", 1], [""Ruby"", 1], [""Gold Thread"", 1], [""Silk Cloth"", 1], [""Ancient Lumber"", 1]]","[null, null, null]"
-Amateur,87,[],Whale Staff,Wind,,"[[""Ash Lumber"", 1], [""Dolphin Staff"", 1]]","[[""Whale Staff +1"", 1], null, null]"
-Amateur,87,[],Feasting Table,Earth,,"[[""Jacaranda Lumber"", 1], [""Teak Lumber"", 2], [""Gold Ingot"", 1]]","[null, null, null]"
-Amateur,88,"[[""Smithing"", 59], [""Bonecraft"", 46]]",Repeating Crossbow,Wind,,"[[""Carbon Fiber"", 1], [""Coeurl Whisker"", 1], [""Darksteel Ingot"", 1], [""Mahogany Lumber"", 1], [""Rosewood Lumber"", 1], [""Scorpion Claw"", 1]]","[[""Machine Crossbow"", 1], null, null]"
-Amateur,88,"[[""Alchemy"", 59]]",Rosenbogen,Dark,,"[[""Rapid Bow"", 1], [""Leshonki Bulb"", 1], [""Red Rose"", 1], [""Mercury"", 1], [""Fiend Blood"", 1], [""Dryad Root"", 1]]","[[""Rosenbogen +1"", 1], null, null]"
-Amateur,88,[],Parclose,Earth,,"[[""Mahogany Lumber"", 6], [""Teak Lumber"", 2]]","[null, null, null]"
-Amateur,88,"[[""Clothcraft"", 40]]",Harp Stool,Earth,,"[[""Mahogany Lumber"", 1], [""Walnut Lumber"", 1], [""Wolf Felt"", 1]]","[null, null, null]"
-Amateur,88,[],Half Partition,Earth,,"[[""Mahogany Lumber"", 6]]","[null, null, null]"
-Amateur,89,[],Mythic Pole,Wind,,"[[""Ancient Lumber"", 2]]","[[""Mythic Pole +1"", 1], null, null]"
-Amateur,89,"[[""Alchemy"", 39]]",Reef Aquarium,Light,,"[[""Oak Lumber"", 1], [""Coral Fragment"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Saltwater Set"", 1], [""Coral Butterfly"", 3]]","[null, null, null]"
-Amateur,89,"[[""Alchemy"", 39]]",Saltwater Aquarium,Light,,"[[""Oak Lumber"", 1], [""Coral Fragment"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Saltwater Set"", 1], [""Moorish Idol"", 3]]","[null, null, null]"
-Amateur,89,"[[""Alchemy"", 39]]",Bay Aquarium,Light,,"[[""Oak Lumber"", 1], [""Coral Fragment"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Saltwater Set"", 1], [""Bibikibo"", 3]]","[null, null, null]"
-Amateur,90,"[[""Goldsmithing"", 49]]",Armoire,Earth,,"[[""Ebony Lumber"", 7], [""Gold Ingot"", 1]]","[null, null, null]"
-Amateur,90,[],Bonfire,Fire,,"[[""Beech Lumber"", 2], [""Firesand"", 1], [""Teak Lumber"", 1]]","[null, null, null]"
-Amateur,90,"[[""Goldsmithing"", 60], [""Smithing"", 51]]",Engetsuto,Fire,,"[[""Steel Ingot"", 1], [""Darksteel Ingot"", 1], [""Dogwood Lumber"", 1], [""Scintillant Ingot"", 1]]","[[""Engetsuto +1"", 1], null, null]"
-Amateur,90,[],Mythic Harp,Earth,,"[[""Coeurl Whisker"", 1], [""Ancient Lumber"", 2]]","[[""Mythic Harp +1"", 1], null, null]"
-Amateur,90,"[[""Clothcraft"", 60]]",Recital Bench,Earth,,"[[""Hickory Lumber"", 1], [""Ancient Lumber"", 1], [""Wolf Felt"", 1]]","[null, null, null]"
-Amateur,90,[],Mythic Harp,Earth,,"[[""Woodworking Kit 90"", 1], [""Veteran (91-100)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
-Amateur,91,"[[""Clothcraft"", 45]]",3-Drawer Almirah,Earth,,"[[""Mahogany Lumber"", 2], [""Ebony Lumber"", 1], [""Ancient Lumber"", 1], [""Gold Thread"", 1], [""Silk Cloth"", 1]]","[null, null, null]"
-Amateur,91,"[[""Clothcraft"", 45]]",6-Drawer Almirah,Earth,,"[[""Mahogany Lumber"", 3], [""Ebony Lumber"", 1], [""Ancient Lumber"", 1], [""Gold Thread"", 1], [""Silk Cloth"", 1]]","[null, null, null]"
-Amateur,91,"[[""Clothcraft"", 45]]",9-Drawer Almirah,Earth,,"[[""Mahogany Lumber"", 4], [""Ebony Lumber"", 1], [""Ancient Lumber"", 1], [""Gold Thread"", 1], [""Silk Cloth"", 1]]","[null, null, null]"
-Amateur,91,"[[""Bonecraft"", 53]]",Kabura Arrow,Earth,,"[[""Bamboo Stick"", 1], [""Karimata Arrowheads"", 1], [""Giant Bird Fletchings"", 1], [""Ram Horn"", 1]]","[[""Kabura Arrow"", 66], [""Kabura Arrow"", 99], [""Kabura Arrow"", 99]]"
-Amateur,91,[],Lacquer Tree Lumber,Wind,,"[[""Lacquer Tree Log"", 1]]","[[""Lacquer Tree Lumber"", 2], [""Lacquer Tree Lumber"", 3], [""Lacquer Tree Lumber"", 4]]"
-Amateur,91,[],Lacquer Tree Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Lacquer Tree Log"", 3]]","[[""Lacquer Tree Lumber"", 6], [""Lacquer Tree Lumber"", 9], [""Lacquer Tree Lumber"", 12]]"
-Amateur,91,[],Bewitched Sune-Ate,Wind,,"[[""Cursed Sune-Ate -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Sune-Ate"", 1], null, null]"
-Amateur,92,"[[""Smithing"", 50], [""Goldsmithing"", 39]]",Barchha,Fire,,"[[""Darksteel Ingot"", 2], [""Ash Lumber"", 2], [""Gold Ingot"", 1]]","[[""Barchha +1"", 1], null, null]"
-Amateur,92,[],Divine Lumber,Wind,,"[[""Divine Log"", 1]]","[[""Divine Lumber"", 2], [""Divine Lumber"", 3], [""Divine Lumber"", 4]]"
-Amateur,92,[],Divine Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Divine Log"", 3]]","[[""Divine Lumber"", 6], [""Divine Lumber"", 9], [""Divine Lumber"", 12]]"
-Amateur,92,"[[""Smithing"", 48], [""Clothcraft"", 53]]",Tsahyan Mask,Wind,,"[[""Darksteel Sheet"", 1], [""Ebony Lumber"", 2], [""Giant Bird Plume"", 3], [""Manticore Hair"", 1], [""Avatar Blood"", 1]]","[null, null, null]"
-Amateur,92,[],Urunday Lumber,Wind,,"[[""Urunday Log"", 1]]","[[""Urunday Lumber"", 2], [""Urunday Lumber"", 3], [""Urunday Lumber"", 4]]"
-Amateur,92,[],Urunday Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Urunday Log"", 3]]","[[""Urunday Lumber"", 6], [""Urunday Lumber"", 9], [""Urunday Lumber"", 12]]"
-Amateur,92,[],Bewitched Kote,Wind,,"[[""Cursed Kote -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Kote"", 1], null, null]"
-Amateur,93,[],Cursed Haidate,Earth,,"[[""Animal Glue"", 1], [""Urushi"", 1], [""Divine Lumber"", 1], [""Haidate"", 1]]","[[""Cursed Haidate -1"", 1], null, null]"
-Amateur,93,"[[""Bonecraft"", 41]]",Gendawa,Wind,,"[[""Ancient Lumber"", 2], [""Rainbow Cloth"", 1], [""Coeurl Whisker"", 1], [""Taurus Horn"", 1]]","[[""Gendawa +1"", 1], null, null]"
-Amateur,93,"[[""Bonecraft"", 33]]",Totem Pole,Wind,,"[[""Walnut Lumber"", 1], [""Rosewood Lumber"", 3], [""White Rock"", 1], [""Manticore Hair"", 2], [""Wivre Horn"", 1]]","[null, null, null]"
-Amateur,93,"[[""Smithing"", 46]]",Wyvern Spear,Earth,,"[[""Iron Ingot"", 1], [""Mahogany Lumber"", 1], [""Tama-Hagane"", 1], [""Gold Thread"", 1], [""Wyvern Skin"", 1]]","[[""Wyvern Spear +1"", 1], null, null]"
-Amateur,93,[],Bewitched Haidate,Earth,,"[[""Cursed Haidate -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Haidate"", 1], null, null]"
-Amateur,94,[],Cursed Sune-Ate,Wind,,"[[""Animal Glue"", 1], [""Urushi"", 1], [""Divine Lumber"", 1], [""Sune-Ate"", 1]]","[[""Cursed Sune-Ate -1"", 1], null, null]"
-Amateur,94,"[[""Smithing"", 31]]",Eight-Sided Pole,Wind,,"[[""Walnut Lumber"", 2], [""Mythril Ingot"", 1]]","[[""Eight-Sided Pole +1"", 1], null, null]"
-Amateur,94,"[[""Goldsmithing"", 41], [""Alchemy"", 52]]",The Big One,Ice,,"[[""Mahogany Lumber"", 1], [""Ebony Lumber"", 1], [""Gold Sheet"", 1], [""Saruta Cotton"", 1], [""Beeswax"", 1], [""Animal Glue"", 1], [""Beetle Blood"", 1], [""Titanic Sawfish"", 1]]","[null, null, null]"
-Amateur,94,[],Sasah Wand,Wind,,"[[""Urunday Lumber"", 1], [""Phoenix Feather"", 1]]","[[""Sasah Wand +1"", 1], null, null]"
-Amateur,94,[],Bewitched Kabuto,Earth,,"[[""Cursed Kabuto -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Kabuto"", 1], null, null]"
-Amateur,94,[],Sasah Wand,Wind,,"[[""Woodworking Kit 94"", 1]]","[null, null, null]"
-Amateur,95,[],Bloodwood Lumber,Wind,,"[[""Bloodwood Log"", 1]]","[[""Bloodwood Lumber"", 2], [""Bloodwood Lumber"", 3], [""Bloodwood Lumber"", 4]]"
-Amateur,95,[],Bloodwood Lumber,Wind,Lumberjack,"[[""Bloodwood Log"", 3], [""Bundling Twine"", 1]]","[[""Bloodwood Lumber"", 6], [""Bloodwood Lumber"", 9], [""Bloodwood Lumber"", 12]]"
-Amateur,95,"[[""Goldsmithing"", 5]]",Bookshelf,Earth,,"[[""Mahogany Lumber"", 3], [""Tufa"", 3]]","[null, null, null]"
-Amateur,95,"[[""Clothcraft"", 55], [""Goldsmithing"", 44]]",Coffee Table,Wind,,"[[""Gold Ingot"", 1], [""Gold Thread"", 1], [""Lancewood Lumber"", 3], [""Silver Brocade"", 1]]","[null, null, null]"
-Amateur,95,[],Hemolele Staff,Wind,,"[[""Urunday Lumber"", 1], [""Chapuli Horn"", 1]]","[[""Hemolele Staff +1"", 1], null, null]"
-Amateur,95,"[[""Goldsmithing"", 39]]",Shigeto Bow,Wind,,"[[""Wisteria Lumber"", 2], [""Gold Sheet"", 1], [""Shortbow"", 1], [""Bamboo Stick"", 1], [""Urushi"", 1]]","[[""Shigeto Bow +1"", 1], null, null]"
-Amateur,95,[],Bewitched Togi,Wind,,"[[""Cursed Togi -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Togi"", 1], null, null]"
-Amateur,96,[],Cursed Kote,Wind,,"[[""Animal Glue"", 1], [""Urushi"", 1], [""Ancient Lumber"", 1], [""Divine Lumber"", 1], [""Kote"", 1]]","[[""Cursed Kote -1"", 1], null, null]"
-Amateur,96,[],Lacquer Tree Sap,Water,,"[[""Lacquer Tree Log"", 1]]","[[""Lacquer Tree Sap"", 6], [""Lacquer Tree Sap"", 8], [""Lacquer Tree Sap"", 10]]"
-Amateur,96,"[[""Goldsmithing"", 23]]",Star Globe,Wind,,"[[""Rosewood Lumber"", 1], [""Garnet"", 1], [""Gold Thread"", 1], [""Animal Glue"", 1], [""Bast Parchment"", 2], [""Wisteria Lumber"", 1], [""Lacquer Tree Lumber"", 1]]","[null, null, null]"
-Amateur,96,"[[""Smithing"", 35]]",Cartonnier,Earth,,"[[""Iron Sheet"", 2], [""Mahogany Lumber"", 3], [""Bloodwood Lumber"", 1], [""Cassia Lumber"", 2]]","[null, null, null]"
-Amateur,96,[],Chanar Xyston,Fire,,"[[""Midrium Ingot"", 2], [""Urunday Lumber"", 2]]","[[""Chanar Xyston +1"", 1], null, null]"
-Amateur,96,"[[""Bonecraft"", 41]]",Ahkormaar Bow,Wind,,"[[""Grass Cloth"", 1], [""Coeurl Whisker"", 1], [""Urunday Lumber"", 2], [""Chapuli Horn"", 1]]","[[""Ahkormaar Bow +1"", 1], null, null]"
-Amateur,96,[],Malayo Crossbow,Earth,,"[[""Durium Ingot"", 1], [""Giant Femur"", 1], [""Carbon Fiber"", 1], [""Urunday Lumber"", 2]]","[[""Malayo Crossbow +1"", 1], null, null]"
-Amateur,96,[],Marbled Drawers,Earth,,"[[""Walnut Lumber"", 3], [""Gold Ingot"", 1], [""Tufa"", 3]]","[null, null, null]"
-Amateur,97,[],Cursed Kabuto,Earth,,"[[""Animal Glue"", 1], [""Urushi"", 1], [""Ancient Lumber"", 1], [""Divine Lumber"", 1], [""Zunari Kabuto"", 1]]","[[""Cursed Kabuto -1"", 1], null, null]"
-Amateur,97,[],Divine Sap,Water,,"[[""Divine Log"", 1]]","[[""Divine Sap"", 8], [""Divine Sap"", 10], [""Divine Sap"", 12]]"
-Amateur,97,"[[""Bonecraft"", 55]]",Cerberus Bow,Wind,,"[[""Bloodwood Lumber"", 2], [""Coeurl Whisker"", 1], [""Cerberus Claw"", 1], [""Karakul Cloth"", 1]]","[[""Cerberus Bow +1"", 1], null, null]"
-Amateur,97,[],Kapor Lumber,Wind,,"[[""Kapor Log"", 1]]","[[""Kapor Lumber"", 2], [""Kapor Lumber"", 3], [""Kapor Lumber"", 4]]"
-Amateur,97,[],Kapor Lumber,Wind,Lumberjack,"[[""Kapor Log"", 3], [""Bundling Twine"", 1]]","[[""Kapor Lumber"", 6], [""Kapor Lumber"", 9], [""Kapor Lumber"", 12]]"
-Amateur,98,[],Cythara Anglica,Earth,,"[[""Ebony Lumber"", 2], [""Coeurl Whisker"", 1], [""Ancient Lumber"", 2]]","[[""Cythara Anglica +1"", 1], null, null]"
-Amateur,98,"[[""Goldsmithing"", 10]]",Royal Bookshelf,Earth,,"[[""Brass Ingot"", 1], [""Mahogany Lumber"", 3], [""Ebony Lumber"", 2], [""Lacquer Tree Lumber"", 2]]","[null, null, null]"
-Amateur,98,"[[""Goldsmithing"", 58]]",Wardrobe,Earth,,"[[""Walnut Lumber"", 4], [""Glass Sheet"", 1], [""Aht Urhgan Brass Ingot"", 1], [""Aht Urhgan Brass Sheet"", 2]]","[null, null, null]"
-Amateur,99,"[[""Leathercraft"", 41]]",Cursed Togi,Wind,,"[[""Animal Glue"", 1], [""Tiger Leather"", 1], [""Urushi"", 1], [""Ancient Lumber"", 2], [""Divine Lumber"", 2], [""Hara-Ate"", 1]]","[[""Cursed Togi -1"", 1], null, null]"
-Amateur,99,[],Lancewood Lumber,Wind,,"[[""Lancewood Log"", 1]]","[[""Lancewood Lumber"", 2], [""Lancewood Lumber"", 3], [""Lancewood Lumber"", 4]]"
-Amateur,99,[],Lancewood Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Lancewood Log"", 3]]","[[""Lancewood Lumber"", 6], [""Lancewood Lumber"", 9], [""Lancewood Lumber"", 12]]"
-Amateur,99,"[[""Smithing"", 47], [""Goldsmithing"", 53]]",Primate Staff,Wind,,"[[""Darksteel Ingot"", 1], [""Gold Ingot"", 1], [""Yellow Rock"", 2], [""Mercury"", 1], [""Cassia Lumber"", 2], [""Vermilion Lacquer"", 1]]","[[""Primate Staff +1"", 1], null, null]"
-Amateur,100,"[[""Smithing"", 60], [""Goldsmithing"", 60]]",Orichalcum Lance,Fire,,"[[""Darksteel Ingot"", 1], [""Ash Lumber"", 2], [""Orichalcum Ingot"", 1], [""Ruby"", 1]]","[[""Triton's Lance"", 1], null, null]"
-Amateur,100,"[[""Smithing"", 60], [""Goldsmithing"", 57]]",Ox Tongue,Wind,,"[[""Aquamarine"", 1], [""Adaman Ingot"", 1], [""Ash Lumber"", 1], [""Gold Ingot"", 1], [""Gold Thread"", 1]]","[[""Ox Tongue +1"", 1], null, null]"
-Amateur,100,"[[""Bonecraft"", 60], [""Smithing"", 51]]",Staurobow,Wind,,"[[""Darksteel Ingot"", 1], [""Mahogany Lumber"", 1], [""Ebony Lumber"", 1], [""Rattan Lumber"", 1], [""Carbon Fiber"", 1], [""Flauros Whisker"", 1], [""Unicorn Horn"", 1]]","[[""Staurobow +1"", 1], null, null]"
-Amateur,100,"[[""Clothcraft"", 60]]",Lanner Bow,Wind,,"[[""Ancient Lumber"", 1], [""Lancewood Lumber"", 1], [""Karakul Cloth"", 1], [""Wyrdstrand"", 1]]","[[""Lanner Bow +1"", 1], null, null]"
-Amateur,100,[],Vejovis Wand,Wind,,"[[""Kapor Lumber"", 1], [""Black Chocobo Feather"", 1], [""Expert (101-110)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Vejovis Wand +1"", 1], null, null]"
-Amateur,102,"[[""Alchemy"", 21]]",Kinkobo,Wind,,"[[""Ethereal Vermilion Lacquer"", 1], [""Primate Staff"", 1]]","[null, null, null]"
-Amateur,102,"[[""Smithing"", 60], [""Goldsmithing"", 52]]",Mezraq,Wind,,"[[""Imperial Wootz Ingot"", 2], [""Bloodwood Lumber"", 1], [""Platinum Ingot"", 1], [""Wamoura Silk"", 1]]","[[""Mezraq +1"", 1], null, null]"
-Amateur,102,"[[""Smithing"", 60], [""Goldsmithing"", 48]]",Dabo,Fire,,"[[""Darksteel Ingot"", 1], [""Ash Lumber"", 2], [""Scintillant Ingot"", 1], [""Dark Ixion Tail"", 1], [""Dk. Ixion Ferrule"", 1]]","[[""Dabo +1"", 1], null, null]"
-Amateur,102,[],Arasy Lance,Fire,,"[[""Ruby"", 1], [""Rhodium Ingot"", 1], [""Guatambu Lumber"", 1]]","[[""Arasy Lance +1"", 1], null, null]"
-Amateur,102,[],Arasy Bow,Wind,,"[[""Carbon Fiber"", 1], [""Glass Fiber"", 1], [""Guatambu Lumber"", 1], [""Akaso Cloth"", 1]]","[[""Arasy Bow +1"", 1], null, null]"
-Amateur,102,"[[""Bonecraft"", 50]]",Arasy Staff,Wind,,"[[""Guatambu Lumber"", 1], [""Raaz Tusk"", 1]]","[[""Arasy Staff +1"", 1], null, null]"
-Amateur,102,"[[""Smithing"", 60]]",Iron-splitter,Wind,,"[[""Walnut Lumber"", 2], [""Adaman Ingot"", 1]]","[[""Iron-splitter +1"", 1], null, null]"
-Amateur,103,"[[""Smithing"", 60], [""Goldsmithing"", 30]]",Rosschinder,Earth,,"[[""Adaman Ingot"", 1], [""Ash Lumber"", 1], [""Thokcha Ingot"", 1], [""Larimar"", 1], [""Wyrdstrand"", 1], [""Paralyze Potion"", 1]]","[[""Rosschinder +1"", 1], null, null]"
-Amateur,103,[],Jacaranda Lumber,Wind,,"[[""Jacaranda Log"", 1]]","[[""Jacaranda Lumber"", 2], [""Jacaranda Lumber"", 3], [""Jacaranda Lumber"", 4]]"
-Amateur,103,[],Jacaranda Lumber,Wind,Lumberjack,"[[""Jacaranda Log"", 3], [""Bundling Twine"", 1]]","[[""Jacaranda Lumber"", 6], [""Jacaranda Lumber"", 9], [""Jacaranda Lumber"", 12]]"
-Amateur,104,"[[""Clothcraft"", 60], [""Goldsmithing"", 60]]",Winged Altar,Fire,,"[[""Mythril Ingot"", 1], [""Platinum Ingot"", 1], [""Orichalcum Ingot"", 1], [""Ruby"", 1], [""Gold Brocade"", 1], [""Teak Lumber"", 1], [""Jacaranda Lumber"", 2]]","[null, null, null]"
-Amateur,104,[],Guatambu Lumber,Wind,,"[[""Guatambu Log"", 1]]","[[""Guatambu Lumber"", 2], [""Guatambu Lumber"", 3], [""Guatambu Lumber"", 4]]"
-Amateur,104,[],Guatambu Lumber,Wind,Lumberjack,"[[""Guatambu Log"", 3], [""Bundling Twine"", 1]]","[[""Guatambu Lumber"", 6], [""Guatambu Lumber"", 9], [""Guatambu Lumber"", 12]]"
-Amateur,105,[],Animator P,Earth,,"[[""Divine Lumber"", 1], [""Exalted Lumber"", 2], [""Vulcanite Ore"", 1], [""Animator Z"", 1]]","[[""Animator P +1"", 1], null, null]"
-Amateur,105,[],Animator P II,Earth,,"[[""Divine Lumber"", 1], [""Glass Fiber"", 1], [""Exalted Lumber"", 2], [""Vulcanite Ore"", 1], [""Animator Z"", 1]]","[[""Animator P II +1"", 1], null, null]"
-Amateur,105,"[[""Goldsmithing"", 46]]",Nurigomeyumi,Earth,,"[[""Bamboo Stick"", 1], [""Palladian Brass Sheet"", 1], [""Wisteria Lumber"", 2], [""Urushi"", 1], [""Gendawa"", 1]]","[[""Nurigomeyumi +1"", 1], null, null]"
-Amateur,105,[],Exalted Lumber,Wind,,"[[""Exalted Log"", 1]]","[[""Exalted Lumber"", 2], [""Exalted Lumber"", 3], [""Exalted Lumber"", 4]]"
-Amateur,105,[],Exalted Lumber,Wind,Lumberjack,"[[""Exalted Log"", 3], [""Bundling Twine"", 1]]","[[""Exalted Lumber"", 6], [""Exalted Lumber"", 9], [""Exalted Lumber"", 12]]"
-Amateur,105,[],Cypress Lumber,Wind,,"[[""Cypress Log"", 1]]","[[""Cypress Lumber"", 2], [""Cypress Lumber"", 3], [""Cypress Lumber"", 4]]"
-Amateur,105,[],Cypress Lumber,Wind,Lumberjack,"[[""Cypress Log"", 3], [""Bundling Twine"", 1]]","[[""Cypress Lumber"", 6], [""Cypress Lumber"", 9], [""Cypress Lumber"", 12]]"
-Amateur,105,[],Pristine Sap,Light,,"[[""Divine Sap"", 1], [""Holy Water"", 2]]","[[""Truly Pristine Sap"", 2], [""Truly Pristine Sap x4 Verification Needed"", 1], [""Truly Pristine Sap x8 Verification Needed"", 1]]"
-Amateur,105,[],Steel-splitter,Wind,,"[[""Steel Walnut Lumber"", 1], [""Iron-Splitter"", 1]]","[null, null, null]"
-Amateur,106,"[[""Smithing"", 60], [""Goldsmithing"", 60]]",Thalassocrat,Wind,,"[[""Adaman Ingot"", 2], [""Scintillant Ingot"", 1], [""Wamoura Silk"", 1], [""Jacaranda Lumber"", 1]]","[[""Thalassocrat +1"", 1], null, null]"
-Amateur,106,"[[""Goldsmithing"", 32]]",Isula Sideboard,Earth,,"[[""Gold Ingot"", 1], [""Jacaranda Lumber"", 5]]","[null, null, null]"
-Amateur,106,[],Exalted Bow,Wind,,"[[""Akaso Thread"", 1], [""Akaso Cloth"", 1], [""Exalted Lumber"", 2]]","[[""Exalted Bow +1"", 1], null, null]"
-Amateur,106,[],Exalted Crossbow,Wind,,"[[""Akaso Thread"", 1], [""Bismuth Ingot"", 1], [""Exalted Lumber"", 1]]","[[""Exalted Crossbow +1"", 1], null, null]"
-Amateur,106,[],Exalted Spear,Wind,,"[[""Akaso Thread"", 1], [""Exalted Lumber"", 1], [""Ra'Kaznar Ingot"", 1]]","[[""Exalted Spear +1"", 1], null, null]"
-Amateur,106,[],Exalted Staff,Wind,,"[[""Exalted Lumber"", 2]]","[[""Exalted Staff +1"", 1], null, null]"
-Amateur,106,[],Zestful Sap,Lightning,,"[[""Maple Sugar"", 3], [""Urunday Log"", 1]]","[[""Gassy Sap xInformation Needed"", 1], null, null]"
-Amateur,108,"[[""Goldsmithing"", 50]]",Flete Pole,Wind,,"[[""Kapor Lumber"", 2], [""Scintillant Ingot"", 1]]","[[""Flete Pole +1"", 1], null, null]"
-Amateur,109,[],Zamzummim Staff,Wind,,"[[""Ruby"", 1], [""Jacaranda Lumber"", 2], [""Daimonic Mandible"", 1]]","[[""Melisseus Staff"", 1], null, null]"
-Amateur,110,[],Planus Table,Earth,,"[[""Gold Ingot"", 1], [""Silk Cloth"", 2], [""Siren's Macrame"", 1], [""Lancewood Lumber"", 3], [""Bloodthread"", 1]]","[null, null, null]"
-Amateur,110,[],Nathushne,Earth,,"[[""Kidney Stone"", 1], [""Belladonna Sap"", 1], [""Healing Staff"", 1]]","[[""Nathushne +1"", 1], null, null]"
-Amateur,110,[],Terebrokath,Fire,,"[[""Damascus Ingot"", 2], [""Gold Ingot"", 1], [""Mercury"", 1], [""Yggdreant Bole"", 1]]","[[""Terebrokath +1"", 1], null, null]"
-Amateur,110,[],Iqonde Crossbow,Wind,,"[[""Damascus Ingot"", 1], [""Ebony Lumber"", 1], [""Carbon Fiber"", 1], [""Craklaw Pincer"", 1], [""Yggdreant Bole"", 1]]","[[""Iqonde Crossbow +1"", 1], null, null]"
-Amateur,110,"[[""Clothcraft"", 55]]",Abyssal Beads,Light,,"[[""Waktza Crest"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Bead Necklace"", 1]]","[[""Abyssal Beads +1"", 1], [""Abyssal Beads +2"", 1], null]"
-Amateur,110,"[[""Clothcraft"", 55]]",Knight's Beads,Light,,"[[""Waktza Crest"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Bead Necklace"", 1]]","[[""Knight's Beads +1"", 1], [""Knight's Beads +2"", 1], null]"
-Amateur,110,"[[""Clothcraft"", 55]]",Warrior's Beads,Light,,"[[""Waktza Crest"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Bead Necklace"", 1], [""Authority (111-120)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Warrior's Beads +1"", 1], [""Warrior's Beads +2"", 1], null]"
-Amateur,111,"[[""Smithing"", 70]]",Bewitched Sune-Ate,Wind,,"[[""Cursed Sune-Ate"", 1], [""Yggdreant Bole"", 1], [""Specter's Ore"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Sune-Ate"", 1], null, null]"
-Amateur,111,[],Scout's Crossbow,Light,Carpenter's aurum tome,"[[""Bonecraft - (Information Needed)"", 1], [""Macuil Plating"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Crossbow"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Arke Crossbow"", 1], [""Sharanga"", 1], null]"
-Amateur,111,[],Sorcerer's Staff,Light,Carpenter's aurum tome,"[[""Clothcraft - (Information Needed)"", 1], [""Plovid Effluvium"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Staff"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Archmage's Staff"", 1], [""Kaumodaki"", 1], null]"
-Amateur,111,[],Argute Staff,Light,Carpenter's aurum tome,"[[""Clothcraft - (Information Needed)"", 1], [""Plovid Effluvium"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Staff"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Pedagogy Staff"", 1], [""Musa"", 1], null]"
-Amateur,111,[],Summoner's Staff,Light,Carpenter's aurum tome,"[[""Clothcraft - (Information Needed)"", 1], [""Plovid Effluvium"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Staff"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Glyphic Staff"", 1], [""Draumstafir"", 1], null]"
-Amateur,112,"[[""Smithing"", 70]]",Bewitched Kote,Wind,,"[[""Cursed Kote"", 1], [""Yggdreant Bole"", 1], [""Specter's Ore"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Kote"", 1], null, null]"
-Amateur,113,[],Balsam Staff,Wind,,"[[""Tanzanite Jewel"", 1], [""Urunday Lumber"", 1], [""Rockfin Tooth"", 1]]","[[""Astralwatcher"", 1], null, null]"
-Amateur,113,[],Echidna's Bow,Wind,,"[[""Bloodwood Lumber"", 2], [""Damascene Cloth"", 1], [""Simian Mane"", 1], [""Gabbrath Horn"", 1]]","[[""Echidna's Bow +1"", 1], null, null]"
-Amateur,113,[],Atinian Staff,Wind,,"[[""Belladonna Sap"", 1], [""Urunday Lumber"", 1], [""Gabbrath Horn"", 1]]","[[""Atinian Staff +1"", 1], null, null]"
-Amateur,113,"[[""Smithing"", 70]]",Bewitched Haidate,Earth,,"[[""Cursed Haidate"", 1], [""Yggdreant Bole"", 1], [""Specter's Ore"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Haidate"", 1], null, null]"
-Amateur,114,"[[""Smithing"", 70]]",Bewitched Kabuto,Earth,,"[[""Cursed Kabuto"", 1], [""Yggdreant Bole"", 1], [""Specter's Ore"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Kabuto"", 1], null, null]"
-Amateur,115,"[[""Smithing"", 70]]",Bewitched Togi,Wind,,"[[""Cursed Togi"", 1], [""Yggdreant Bole"", 1], [""Specter's Ore"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Togi"", 1], null, null]"
-Amateur,115,[],Was,Earth,,"[[""Moonbow Cloth"", 1], [""Moonbow Urushi"", 1], [""Khoma Cloth"", 1], [""Astral Signa"", 1]]","[[""Was +1"", 1], null, null]"
-Amateur,115,[],Ames,Earth,,"[[""Moonbow Urushi"", 1], [""Moonbow Stone"", 1], [""Ruthenium Ingot"", 1], [""Mistilteinn"", 1]]","[[""Ames +1"", 1], null, null]"
-Amateur,115,[],Kendatsuba Sune-Ate,Earth,Carpenter's argentum tome,"[[""Rainbow Thread"", 1], [""Cehuetzi Pelt"", 1], [""Defiant Sweat"", 1], [""Cypress Lumber"", 2]]","[[""Kendatsuba Sune-Ate +1"", 1], null, null]"
-Amateur,115,[],Oshosi Leggings,Earth,Carpenter's argentum tome,"[[""Gold Sheet"", 1], [""Waktza Crest"", 1], [""Plovid Flesh"", 1], [""Cypress Lumber"", 2]]","[[""Oshosi Leggings +1"", 1], null, null]"
-Amateur,115,[],Kendatsuba Tekko,Earth,Carpenter's argentum tome,"[[""Rainbow Thread"", 2], [""Cehuetzi Pelt"", 1], [""Defiant Sweat"", 1], [""Cypress Lumber"", 2]]","[[""Kendatsuba Tekko +1"", 1], null, null]"
-Amateur,115,[],Oshosi Gloves,Earth,Carpenter's argentum tome,"[[""Gold Sheet"", 2], [""Waktza Crest"", 1], [""Plovid Flesh"", 1], [""Cypress Lumber"", 2]]","[[""Oshosi Gloves +1"", 1], null, null]"
-Amateur,115,[],Kendatsuba Jinpachi,Earth,Carpenter's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Cehuetzi Pelt"", 1], [""Defiant Sweat"", 1], [""Cypress Lumber"", 2]]","[[""Kendatsuba Jinpachi +1"", 1], null, null]"
-Amateur,115,[],Oshosi Mask,Earth,Carpenter's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Waktza Crest"", 1], [""Plovid Flesh"", 1], [""Cypress Lumber"", 2]]","[[""Oshosi Mask +1"", 1], null, null]"
-Amateur,115,[],Kendatsuba Hakama,Earth,Carpenter's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Cehuetzi Pelt"", 1], [""Defiant Sweat"", 1], [""Cypress Lumber"", 3]]","[[""Kendatsuba Hakama +1"", 1], null, null]"
-Amateur,115,[],Oshosi Trousers,Earth,Carpenter's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Waktza Crest"", 1], [""Plovid Flesh"", 1], [""Cypress Lumber"", 3]]","[[""Oshosi Trousers +1"", 1], null, null]"
-Amateur,115,[],Kendatsuba Samue,Earth,Carpenter's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Cehuetzi Pelt"", 1], [""Defiant Sweat"", 2], [""Cypress Lumber"", 3]]","[[""Kendatsuba Samue +1"", 1], null, null]"
-Amateur,115,[],Oshosi Vest,Earth,Carpenter's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Waktza Crest"", 1], [""Plovid Flesh"", 2], [""Cypress Lumber"", 3]]","[[""Oshosi Vest +1"", 1], null, null]"
-Amateur,115,[],Raetic Bow,Fire,Carpenter's argentum tome,"[[""Cypress Lumber"", 3], [""Rune Bow"", 1]]","[[""Raetic Bow +1"", 1], null, null]"
-Amateur,115,[],Raetic Halberd,Fire,Carpenter's argentum tome,"[[""Cypress Lumber"", 3], [""Rune Halberd"", 1]]","[[""Raetic Halberd +1"", 1], null, null]"
-Amateur,115,[],Raetic Staff,Fire,Carpenter's argentum tome,"[[""Cypress Lumber"", 3], [""Rune Staff"", 1]]","[[""Raetic Staff +1"", 1], null, null]"
-Amateur,115,[],Raetic Arrow xVerification Needed,Fire,Carpenter's argentum tome,"[[""Cypress Lumber"", 1], [""Niobium Ore"", 1], [""Rune Arrow"", 3]]","[[""Raetic Arrow xVerification Needed"", 1], null, null]"
+,1,[],Banquet Table,Earth,,"[[""Banquet Table Blueprint"", 1], [""Banquet Table Fabric"", 1], [""Banquet Table Wood"", 1]]","[null, null, null]"
+,2,[],Arrowwood Lumber,Wind,,"[[""Arrowwood Log"", 1]]","[[""Arrowwood Lumber"", 2], [""Arrowwood Lumber"", 3], [""Arrowwood Lumber"", 4]]"
+,2,[],Arrowwood Lumber,Wind,Lumberjack,"[[""Arrowwood Log"", 3], [""Bundling Twine"", 1]]","[[""Arrowwood Lumber"", 6], [""Arrowwood Lumber"", 9], [""Arrowwood Lumber"", 12]]"
+,2,[],Flute,Wind,,"[[""Maple Lumber"", 1], [""Parchment"", 1]]","[[""Flute +1"", 1], [""Flute +2"", 1], null]"
+,3,[],Lauan Lumber,Wind,,"[[""Lauan Log"", 1]]","[[""Lauan Lumber"", 2], [""Lauan Lumber"", 3], [""Lauan Lumber"", 4]]"
+,3,[],Lauan Lumber,Wind,Lumberjack,"[[""Lauan Log"", 3], [""Bundling Twine"", 1]]","[[""Lauan Lumber"", 6], [""Lauan Lumber"", 9], [""Lauan Lumber"", 12]]"
+,3,[],Stone Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Stone Arrowheads"", 1], [""Chocobo Fletchings"", 1]]","[[""Stone Arrow"", 66], [""Stone Arrow"", 99], [""Stone Arrow"", 99]]"
+,4,[],Wooden Arrow,Wind,,"[[""Arrowwood Lumber"", 1], [""Chocobo Feather"", 2], [""Flint Stone"", 1]]","[[""Wooden Arrow"", 66], [""Wooden Arrow"", 99], [""Wooden Arrow"", 99]]"
+,5,[],Maple Lumber,Wind,,"[[""Maple Log"", 1]]","[[""Maple Lumber"", 2], [""Maple Lumber"", 3], [""Maple Lumber"", 4]]"
+,5,[],Maple Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Maple Log"", 3]]","[[""Maple Lumber"", 6], [""Maple Lumber"", 9], [""Maple Lumber"", 12]]"
+,5,[],Padded Box,Earth,,"[[""Bast Parchment"", 2], [""Inferior Cocoon"", 1]]","[null, null, null]"
+,5,[],Padded Box,Earth,,"[[""Woodworking Kit 5"", 1]]","[null, null, null]"
+,6,[],Maple Wand,Wind,,"[[""Maple Lumber"", 1], [""Chocobo Feather"", 1]]","[[""Maple Wand +1"", 1], null, null]"
+,7,"[[""Smithing"", 2]]",Lauan Shield,Earth,,"[[""Bronze Sheet"", 1], [""Lauan Lumber"", 2]]","[[""Lauan Shield +1"", 1], null, null]"
+,7,[],Workbench,Earth,,"[[""Lauan Lumber"", 4]]","[null, null, null]"
+,8,[],Ash Lumber,Wind,,"[[""Ash Log"", 1]]","[[""Ash Lumber"", 2], [""Ash Lumber"", 3], [""Ash Lumber"", 4]]"
+,8,[],Ash Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Ash Log"", 3]]","[[""Ash Lumber"", 6], [""Ash Lumber"", 9], [""Ash Lumber"", 12]]"
+,8,[],Ash Pole,Wind,,"[[""Ash Lumber"", 2]]","[[""Ash Pole +1"", 1], null, null]"
+,8,[],Bewitched Ash Lumber,Wind,Wood Purification,"[[""Ash Log"", 1], [""Fire Anima"", 1], [""Ice Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
+,8,[],Humus,Dark,,"[[""Elm Log"", 1], [""Bay Leaves"", 1]]","[[""Rich Humus"", 1], null, null]"
+,9,[],Ash Club,Wind,,"[[""Ash Lumber"", 1]]","[[""Ash Club +1"", 1], null, null]"
+,9,[],Bone Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Yagudo Fletchings"", 1], [""Bone Arrowheads"", 1]]","[[""Bone Arrow"", 66], [""Bone Arrow"", 99], [""Bone Arrow"", 99]]"
+,10,[],Ash Staff,Wind,,"[[""Ash Lumber"", 1], [""Bat Fang"", 1]]","[[""Ash Staff +1"", 1], null, null]"
+,10,"[[""Smithing"", 4], [""Alchemy"", 7]]",Goldfish Bowl,Light,,"[[""Bronze Ingot"", 1], [""Lauan Lumber"", 1], [""Crawler Calculus"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Goldfish Set"", 1], [""Tiny Goldfish"", 1], [""Black Bubble-Eye"", 1]]","[null, null, null]"
+,10,"[[""Bonecraft"", 2]]",Harpoon,Wind,,"[[""Ash Lumber"", 1], [""Grass Thread"", 1], [""Sheep Tooth"", 1]]","[[""Harpoon +1"", 1], null, null]"
+,10,[],Willow Fishing Rod,Light,,"[[""Broken Willow Rod"", 1]]","[null, null, null]"
+,10,[],Ash Staff,Wind,,"[[""Woodworking Kit 10"", 1]]","[null, null, null]"
+,11,[],Ash Clogs,Wind,,"[[""Ash Lumber"", 1], [""Sheep Leather"", 1]]","[[""Ash Clogs +1"", 1], null, null]"
+,11,[],Bamboo Fishing Rod,Light,,"[[""Broken Bamboo Rod"", 1]]","[null, null, null]"
+,11,"[[""Goldsmithing"", 2]]",Maple Shield,Earth,,"[[""Brass Sheet"", 1], [""Maple Lumber"", 2]]","[[""Maple Shield +1"", 1], null, null]"
+,11,[],Mandarin,Wind,,"[[""Bamboo Stick"", 1], [""Saruta Orange"", 4]]","[null, null, null]"
+,12,[],Holly Lumber,Wind,,"[[""Holly Log"", 1]]","[[""Holly Lumber"", 2], [""Holly Lumber"", 3], [""Holly Lumber"", 4]]"
+,12,[],Holly Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Holly Log"", 3]]","[[""Holly Lumber"", 6], [""Holly Lumber"", 9], [""Holly Lumber"", 12]]"
+,12,"[[""Smithing"", 3]]",Light Crossbow,Earth,,"[[""Ash Lumber"", 1], [""Bronze Ingot"", 1], [""Grass Thread"", 1]]","[[""Light Crossbow +1"", 1], null, null]"
+,12,[],Tree Sap,Lightning,,"[[""Chestnut Log"", 1], [""Maple Sugar"", 1]]","[[""Scarlet Sap"", 1], null, null]"
+,13,[],Holly Pole,Wind,,"[[""Holly Lumber"", 2]]","[[""Holly Pole +1"", 1], null, null]"
+,13,[],Mana Willow Lumber,Wind,Wood Purification,"[[""Willow Log"", 1], [""Earth Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
+,13,[],Willow Lumber,Wind,,"[[""Willow Log"", 1]]","[[""Willow Lumber"", 2], [""Willow Lumber"", 3], [""Willow Lumber"", 4]]"
+,13,[],Willow Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Willow Log"", 3]]","[[""Willow Lumber"", 6], [""Willow Lumber"", 9], [""Willow Lumber"", 12]]"
+,13,[],Windurstian Pole,Earth,,"[[""Ash Lumber"", 1], [""Mercenary's Pole"", 1]]","[[""Federation Pole"", 1], null, null]"
+,14,[],Willow Fishing Rod,Wind,,"[[""Willow Lumber"", 1], [""Grass Thread"", 1]]","[null, null, null]"
+,14,[],Willow Wand,Wind,,"[[""Willow Lumber"", 1], [""Insect Wing"", 1]]","[[""Willow Wand +1"", 1], null, null]"
+,14,[],Windurstian Club,Wind,,"[[""Freesword's Club"", 1], [""Ash Lumber"", 1]]","[[""Federation Club"", 1], null, null]"
+,14,"[[""Smithing"", 3]]",Butterfly Cage,Earth,,"[[""Bronze Ingot"", 1], [""Rattan Lumber"", 2], [""Dogwood Lumber"", 1], [""White Butterfly"", 1]]","[null, null, null]"
+,14,"[[""Smithing"", 3]]",Cricket Cage,Earth,,"[[""Bronze Ingot"", 1], [""Rattan Lumber"", 2], [""Dogwood Lumber"", 1], [""Bell Cricket"", 1]]","[null, null, null]"
+,14,"[[""Smithing"", 3]]",Glowfly Cage,Earth,,"[[""Bronze Ingot"", 1], [""Rattan Lumber"", 2], [""Dogwood Lumber"", 1], [""Glowfly"", 1]]","[null, null, null]"
+,15,[],Bamboo Fishing Rod,Wind,,"[[""Bamboo Stick"", 1], [""Grass Thread"", 1]]","[null, null, null]"
+,15,[],Bronze Bolt,Earth,,"[[""Ash Lumber"", 1], [""Bronze Bolt Heads"", 1]]","[[""Bronze Bolt"", 66], [""Bronze Bolt"", 99], [""Bronze Bolt"", 99]]"
+,15,[],Bronze Bolt,Earth,Boltmaker,"[[""Ash Lumber"", 3], [""Bronze Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
+,15,[],Shortbow,Wind,,"[[""Willow Lumber"", 1], [""Grass Thread"", 1], [""Grass Cloth"", 1]]","[[""Shortbow +1"", 1], null, null]"
+,15,[],Bamboo Fishing Rod,Wind,,"[[""Woodworking Kit 15"", 1]]","[null, null, null]"
+,16,[],Acid Bolt,Earth,,"[[""Ash Lumber"", 1], [""Acid Bolt Heads"", 1]]","[[""Acid Bolt"", 66], [""Acid Bolt"", 99], [""Acid Bolt"", 99]]"
+,16,[],Acid Bolt,Earth,Boltmaker,"[[""Ash Lumber"", 3], [""Acid Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
+,16,[],Blind Bolt,Earth,,"[[""Ash Lumber"", 1], [""Blind Bolt Heads"", 1]]","[[""Blind Bolt"", 66], [""Blind Bolt"", 99], [""Blind Bolt"", 99]]"
+,16,[],Blind Bolt,Earth,Boltmaker,"[[""Ash Lumber"", 3], [""Blind Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
+,16,[],Bloody Bolt,Earth,,"[[""Ash Lumber"", 1], [""Bloody Bolt Heads"", 1]]","[[""Bloody Bolt"", 66], [""Bloody Bolt"", 99], [""Bloody Bolt"", 99]]"
+,16,[],Bloody Bolt,Earth,Boltmaker,"[[""Ash Lumber"", 3], [""Bloody Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
+,16,[],Flexible Pole,Wind,Wood Ensorcellment,"[[""Lambent Water Cell"", 1], [""Lambent Earth Cell"", 1], [""Holly Pole"", 1]]","[null, null, null]"
+,16,[],Holy Bolt,Earth,,"[[""Ash Lumber"", 1], [""Holy Bolt Heads"", 1]]","[[""Holy Bolt"", 66], [""Holy Bolt"", 99], [""Holy Bolt"", 99]]"
+,16,[],Holy Bolt,Earth,Boltmaker,"[[""Ash Lumber"", 3], [""Holy Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
+,16,[],Maple Table,Earth,,"[[""Maple Lumber"", 4]]","[null, null, null]"
+,16,"[[""Bonecraft"", 5]]",Self Bow,Wind,,"[[""Willow Lumber"", 1], [""Grass Thread"", 1], [""Giant Femur"", 1], [""Cotton Cloth"", 1]]","[[""Self Bow +1"", 1], null, null]"
+,16,[],Sleep Bolt,Earth,,"[[""Ash Lumber"", 1], [""Sleep Bolt Heads"", 1]]","[[""Sleep Bolt"", 66], [""Sleep Bolt"", 99], [""Sleep Bolt"", 99]]"
+,16,[],Sleep Bolt,Earth,Boltmaker,"[[""Ash Lumber"", 3], [""Sleep Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
+,16,[],Venom Bolt,Earth,,"[[""Ash Lumber"", 1], [""Venom Bolt Heads"", 1]]","[[""Venom Bolt"", 66], [""Venom Bolt"", 99], [""Venom Bolt"", 99]]"
+,16,[],Venom Bolt,Earth,Boltmaker,"[[""Ash Lumber"", 3], [""Venom Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
+,17,[],Bastokan Crossbow,Earth,,"[[""Ash Lumber"", 1], [""Legionnaire's Crossbow"", 1]]","[[""Republic Crossbow"", 1], null, null]"
+,17,[],Boomerang,Wind,,"[[""Maple Lumber"", 1], [""Cotton Thread"", 1]]","[[""Boomerang +1"", 1], null, null]"
+,17,"[[""Bonecraft"", 1]]",Longbow,Wind,,"[[""Coeurl Whisker"", 1], [""Yew Lumber"", 2], [""Linen Cloth"", 1], [""Ram Horn"", 1]]","[[""Longbow +1"", 1], null, null]"
+,17,[],Mana Wand,Wind,,"[[""Mana Willow Lumber"", 1], [""Willow Wand"", 1]]","[null, null, null]"
+,18,"[[""Smithing"", 9]]",Bronze Spear,Wind,,"[[""Ash Lumber"", 1], [""Bronze Ingot"", 1], [""Grass Thread"", 1]]","[[""Bronze Spear +1"", 1], null, null]"
+,18,[],Holly Clogs,Wind,,"[[""Holly Lumber"", 1], [""Sheep Leather"", 1]]","[[""Holly Clogs +1"", 1], null, null]"
+,19,[],Holly Staff,Wind,,"[[""Holly Lumber"", 1], [""Sheep Tooth"", 1]]","[[""Holly Staff +1"", 1], null, null]"
+,19,[],Steel Walnut Lumber,Wind,Wood Ensorcellment,"[[""Walnut Log"", 1], [""Earth Anima"", 2], [""Dark Anima"", 1]]","[[""Steel Walnut Lumber"", 6], [""Steel Walnut Lumber"", 9], [""Steel Walnut Lumber"", 12]]"
+,19,[],Walnut Lumber,Wind,,"[[""Walnut Log"", 1]]","[[""Walnut Lumber"", 2], [""Walnut Lumber"", 3], [""Walnut Lumber"", 4]]"
+,19,[],Walnut Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Walnut Log"", 3]]","[[""Walnut Lumber"", 6], [""Walnut Lumber"", 9], [""Walnut Lumber"", 12]]"
+,20,"[[""Alchemy"", 7], [""Smithing"", 4]]",Fighting Fish Tank,Light,,"[[""Bronze Ingot"", 1], [""Lauan Lumber"", 1], [""Crawler Calculus"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Goldfish Set"", 1], [""Lamp Marimo"", 1], [""Betta"", 1]]","[null, null, null]"
+,20,[],Piccolo,Wind,,"[[""Holly Lumber"", 1], [""Parchment"", 1]]","[[""Piccolo +1"", 1], null, null]"
+,20,"[[""Clothcraft"", 5]]",Simple Bed,Earth,,"[[""Holly Lumber"", 2], [""Lauan Lumber"", 2], [""Grass Thread"", 1], [""Grass Cloth"", 3]]","[null, null, null]"
+,20,[],Windurstian Bow,Earth,,"[[""Willow Lumber"", 1], [""Freesword's Bow"", 1]]","[[""Federation Bow"", 1], null, null]"
+,20,[],Yew Fishing Rod,Light,,"[[""Broken Yew Rod"", 1]]","[null, null, null]"
+,20,[],Piccolo,Wind,,"[[""Woodworking Kit 20"", 1]]","[null, null, null]"
+,20,[],Awning,Earth,,"[[""Elm Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1]]","[null, null, null]"
+,20,[],Triangular Jalousie,Earth,,"[[""Walnut Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1]]","[null, null, null]"
+,20,[],Square Jalousie,Earth,,"[[""Rosewood Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1]]","[null, null, null]"
+,21,[],Chestnut Club,Wind,,"[[""Chestnut Lumber"", 1]]","[[""Solid Club"", 1], null, null]"
+,21,[],Gimlet Spear,Wind,Wood Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Bronze Spear"", 1]]","[null, null, null]"
+,21,[],Maple Sugar,Lightning,,"[[""Maple Log"", 1]]","[[""Maple Sugar"", 6], [""Maple Sugar"", 9], [""Maple Sugar"", 12]]"
+,22,"[[""Goldsmithing"", 5]]",Brass Spear,Wind,,"[[""Ash Lumber"", 1], [""Brass Ingot"", 1], [""Linen Thread"", 1]]","[[""Brass Spear +1"", 1], null, null]"
+,22,[],San d'Orian Bow,Earth,,"[[""Royal Archer's Longbow"", 1], [""Yew Lumber"", 1]]","[[""Kingdom Bow"", 1], null, null]"
+,22,[],Yew Lumber,Wind,,"[[""Yew Log"", 1]]","[[""Yew Lumber"", 2], [""Yew Lumber"", 3], [""Yew Lumber"", 4]]"
+,22,[],Yew Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Yew Log"", 3]]","[[""Yew Lumber"", 6], [""Yew Lumber"", 9], [""Yew Lumber"", 12]]"
+,23,[],Maple Harp,Earth,,"[[""Coeurl Whisker"", 1], [""Maple Lumber"", 2]]","[[""Maple Harp +1"", 1], null, null]"
+,23,[],San d'Orian Clogs,Wind,,"[[""Holly Lumber"", 1], [""Royal Footman's Clogs"", 1]]","[[""Kingdom Clogs"", 1], null, null]"
+,23,[],San d'Orian Spear,Earth,,"[[""Ash Lumber"", 1], [""Royal Spearman's Spear"", 1]]","[[""Kingdom Spear"", 1], null, null]"
+,23,[],Yew Wand,Wind,,"[[""Yew Lumber"", 1], [""Yagudo Feather"", 1]]","[[""Yew Wand +1"", 1], null, null]"
+,24,[],Windurstian Staff,Earth,,"[[""Holly Lumber"", 1], [""Freesword's Staff"", 1]]","[[""Federation Staff"", 1], null, null]"
+,24,"[[""Leathercraft"", 6]]",Wrapped Bow,Wind,,"[[""Yew Lumber"", 1], [""Sheep Leather"", 1], [""Wool Thread"", 1]]","[[""Wrapped Bow +1"", 1], null, null]"
+,24,[],Yew Fishing Rod,Wind,,"[[""Yew Lumber"", 1], [""Linen Thread"", 1]]","[null, null, null]"
+,25,[],Bolt Belt,Earth,,"[[""Ash Lumber"", 2], [""Sheep Leather"", 1], [""Bronze Bolt Heads"", 2], [""Leather Pouch"", 1]]","[null, null, null]"
+,25,[],Elm Lumber,Wind,,"[[""Elm Log"", 1]]","[[""Elm Lumber"", 2], [""Elm Lumber"", 3], [""Elm Lumber"", 4]]"
+,25,[],Elm Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Elm Log"", 3]]","[[""Elm Lumber"", 6], [""Elm Lumber"", 9], [""Elm Lumber"", 12]]"
+,25,[],Tarutaru Stool,Earth,,"[[""Elm Lumber"", 1], [""Lauan Lumber"", 1]]","[null, null, null]"
+,25,[],Tarutaru Stool,Earth,,"[[""Woodworking Kit 25"", 1]]","[null, null, null]"
+,26,"[[""Smithing"", 22]]",Elm Shield,Earth,,"[[""Iron Sheet"", 1], [""Elm Lumber"", 2]]","[[""Elm Shield +1"", 1], null, null]"
+,26,[],Uchitake,Earth,,"[[""Toad Oil"", 1], [""Bamboo Stick"", 1], [""Grass Cloth"", 1]]","[[""Uchitake"", 66], [""Uchitake"", 99], [""Uchitake"", 99]]"
+,27,[],Harp,Earth,,"[[""Coeurl Whisker"", 1], [""Chestnut Lumber"", 2]]","[[""Harp +1"", 1], null, null]"
+,27,"[[""Smithing"", 6]]",Iron Arrow,Wind,,"[[""Iron Ingot"", 1], [""Ash Lumber"", 1], [""Chocobo Feather"", 2]]","[[""Iron Arrow"", 66], [""Iron Arrow"", 99], [""Iron Arrow"", 99]]"
+,27,[],Iron Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Chocobo Fletchings"", 1], [""Iron Arrowheads"", 1]]","[[""Iron Arrow"", 66], [""Iron Arrow"", 99], [""Iron Arrow"", 99]]"
+,28,[],Chestnut Lumber,Wind,,"[[""Chestnut Log"", 1]]","[[""Chestnut Lumber"", 2], [""Chestnut Lumber"", 3], [""Chestnut Lumber"", 4]]"
+,28,[],Chestnut Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Chestnut Log"", 3]]","[[""Chestnut Lumber"", 6], [""Chestnut Lumber"", 9], [""Chestnut Lumber"", 12]]"
+,28,[],Mana Chestnut Lumber,Wind,Wood Purification,"[[""Chestnut Log"", 1], [""Earth Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
+,28,[],Poison Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Chocobo Fletchings"", 1], [""Poison Arrowheads"", 1]]","[[""Poison Arrow"", 66], [""Poison Arrow"", 99], [""Poison Arrow"", 99]]"
+,28,"[[""Bonecraft"", 8]]",Power Bow,Wind,,"[[""Elm Lumber"", 2], [""Coeurl Whisker"", 1], [""Scorpion Claw"", 1], [""Wool Cloth"", 1]]","[[""Power Bow +1"", 1], null, null]"
+,29,[],Elm Staff,Wind,,"[[""Elm Lumber"", 1], [""Ram Horn"", 1]]","[[""Elm Staff +1"", 1], null, null]"
+,29,[],Shihei,Wind,,"[[""Black Ink"", 1], [""Bast Parchment"", 2]]","[[""Shihei"", 66], [""Shihei"", 99], [""Shihei"", 99]]"
+,30,[],Silver Arrow,Earth,,"[[""Ash Lumber"", 1], [""Yagudo Fletchings"", 1], [""Silver Arrowheads"", 1]]","[[""Silver Arrow"", 66], [""Silver Arrow"", 99], [""Silver Arrow"", 99]]"
+,30,"[[""Goldsmithing"", 7]]",Silver Arrow,Wind,,"[[""Arrowwood Lumber"", 1], [""Yagudo Feather"", 2], [""Silver Ingot"", 1]]","[[""Silver Arrow"", 66], [""Silver Arrow"", 99], [""Silver Arrow"", 99]]"
+,30,[],Silver Arrow,Earth,,"[[""Woodworking Kit 30"", 1]]","[null, null, null]"
+,30,[],Transom,Earth,,"[[""Mahogany Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Silica"", 1], [""Pebble"", 1]]","[null, null, null]"
+,31,[],Book Holder,Earth,,"[[""Holly Lumber"", 1], [""Lauan Lumber"", 1]]","[null, null, null]"
+,31,[],Dogwood Lumber,Wind,,"[[""Dogwood Log"", 1]]","[[""Dogwood Lumber"", 2], [""Dogwood Lumber"", 3], [""Dogwood Lumber"", 4]]"
+,31,[],Dogwood Lumber,Wind,Lumberjack,"[[""Dogwood Log"", 3], [""Bundling Twine"", 1]]","[[""Dogwood Lumber"", 6], [""Dogwood Lumber"", 9], [""Dogwood Lumber"", 12]]"
+,31,"[[""Smithing"", 6]]",Spear,Wind,,"[[""Iron Ingot"", 1], [""Ash Lumber"", 1], [""Linen Thread"", 1]]","[[""Spear +1"", 1], null, null]"
+,32,[],Chestnut Sabots,Wind,,"[[""Chestnut Lumber"", 1], [""Sheep Leather"", 1]]","[[""Chestnut Sabots +1"", 1], null, null]"
+,32,[],Chestnut Wand,Wind,,"[[""Chestnut Lumber"", 1], [""Bird Feather"", 1]]","[[""Solid Wand"", 1], null, null]"
+,32,[],Soshi,Earth,,"[[""Grass Thread"", 1], [""Black Ink"", 1], [""Bast Parchment"", 2]]","[[""Soshi"", 66], [""Soshi"", 99], [""Soshi"", 99]]"
+,33,"[[""Smithing"", 8]]",Crossbow,Wind,,"[[""Iron Ingot"", 1], [""Glass Fiber"", 1], [""Chestnut Lumber"", 1]]","[[""Crossbow +1"", 1], null, null]"
+,33,"[[""Smithing"", 6]]",Spiked Club,Wind,,"[[""Walnut Lumber"", 2], [""Bronze Ingot"", 1]]","[[""Spiked Club +1"", 1], null, null]"
+,34,[],Mahogany Shield,Earth,,"[[""Iron Sheet"", 1], [""Mahogany Lumber"", 2]]","[[""Strong Shield"", 1], null, null]"
+,34,"[[""Smithing"", 7]]",Mizu-Deppo,Earth,,"[[""Chestnut Lumber"", 1], [""Bronze Sheet"", 1], [""Distilled Water"", 1]]","[[""Mizu-Deppo"", 66], [""Mizu-Deppo"", 99], [""Mizu-Deppo"", 99]]"
+,35,[],Ethereal Oak Lumber,Wind,Wood Ensorcellment,"[[""Oak Log"", 1], [""Ice Anima"", 1], [""Wind Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
+,35,[],Exorcismal Oak Lumber,Wind,Wood Purification,"[[""Oak Lumber"", 1], [""Ice Anima"", 1], [""Earth Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
+,35,[],High Mana Wand,Wind,,"[[""Mana Chestnut Lumber"", 1], [""Chestnut Wand"", 1]]","[null, null, null]"
+,35,[],Oak Lumber,Wind,,"[[""Oak Log"", 1]]","[[""Oak Lumber"", 2], [""Oak Lumber"", 3], [""Oak Lumber"", 4]]"
+,35,[],Oak Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Oak Log"", 3]]","[[""Oak Lumber"", 6], [""Oak Lumber"", 9], [""Oak Lumber"", 12]]"
+,35,"[[""Leathercraft"", 30]]",Wicker Box,Earth,,"[[""Willow Lumber"", 1], [""Rattan Lumber"", 3], [""Ram Leather"", 1]]","[null, null, null]"
+,35,[],Black Bolt,Earth,,"[[""Teak Lumber"", 1], [""Black Bolt Heads"", 1]]","[[""Black Bolt"", 66], [""Black Bolt"", 99], [""Black Bolt"", 99]]"
+,35,[],Black Bolt,Earth,,"[[""Bundling Twine"", 1], [""Teak Lumber"", 3], [""Black Bolt Heads"", 3]]","[null, null, null]"
+,35,[],Black Bolt,Earth,,"[[""Woodworking Kit 35"", 1]]","[null, null, null]"
+,35,[],Valance,Earth,,"[[""Chestnut Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1]]","[null, null, null]"
+,36,[],Tarutaru Desk,Earth,,"[[""Lauan Lumber"", 5], [""Linen Cloth"", 2]]","[null, null, null]"
+,36,[],Fairweather Fetish,Earth,,"[[""Saruta Cotton"", 1], [""Bast Parchment"", 1]]","[null, null, null]"
+,36,"[[""Smithing"", 8]]",Tracker's Bow,Wind,,"[[""Mahogany Heartwood"", 1], [""Crossbow"", 1]]","[[""Tracker's Bow +1"", 1], null, null]"
+,37,[],Tactician Magician's Wand +1,Wind,,"[[""Tactician Magician's Wand"", 1], [""Chestnut Lumber"", 1]]","[[""Tactician Magician's Wand +2"", 1], null, null]"
+,37,[],Traversiere,Wind,,"[[""Oak Lumber"", 1], [""Parchment"", 1]]","[[""Traversiere +1"", 1], [""Traversiere +2"", 1], null]"
+,38,"[[""Smithing"", 30]]",Caisson,Earth,,"[[""Bronze Sheet"", 2], [""Chestnut Lumber"", 2]]","[null, null, null]"
+,38,"[[""Bonecraft"", 15]]",Great Bow,Wind,,"[[""Coeurl Whisker"", 1], [""Chestnut Lumber"", 2], [""Velvet Cloth"", 1], [""Scorpion Claw"", 1]]","[[""Great Bow +1"", 1], null, null]"
+,39,[],Beetle Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Chocobo Fletchings"", 1], [""Beetle Arrowheads"", 1]]","[[""Beetle Arrow"", 66], [""Beetle Arrow"", 99], [""Beetle Arrow"", 99]]"
+,39,[],Composite Bow,Wind,,"[[""Ash Lumber"", 1], [""Willow Lumber"", 1], [""Linen Cloth"", 1], [""Wool Thread"", 1]]","[[""Composite Bow +1"", 1], null, null]"
+,39,[],Kawahori-Ogi,Earth,,"[[""Animal Glue"", 1], [""Bamboo Stick"", 1], [""Bast Parchment"", 1]]","[[""Kawahori-Ogi"", 66], [""Kawahori-Ogi"", 99], [""Kawahori-Ogi"", 99]]"
+,39,[],Vermihumus,Dark,,"[[""Humus"", 2]]","[[""Vermihumus"", 6], [""Vermihumus"", 8], [""Vermihumus"", 10]]"
+,39,[],Vermihumus,Dark,,"[[""Derfland Humus"", 1]]","[[""Vermihumus"", 6], [""Vermihumus"", 8], [""Vermihumus"", 10]]"
+,39,[],Vermihumus,Dark,,"[[""Rich Humus"", 2]]","[[""Vermihumus"", 8], [""Vermihumus"", 10], [""Vermihumus"", 12]]"
+,40,[],Oak Table,Earth,,"[[""Oak Lumber"", 4]]","[null, null, null]"
+,40,[],Bahut,Earth,,"[[""Walnut Lumber"", 5], [""Rattan Lumber"", 3]]","[null, null, null]"
+,40,[],Bahut,Earth,,"[[""Woodworking Kit 40"", 1]]","[null, null, null]"
+,40,[],San d'Orian Sill,Earth,,"[[""Mahogany Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1]]","[null, null, null]"
+,40,[],Windurstian Sill,Earth,,"[[""Dogwood Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1]]","[null, null, null]"
+,40,[],Bastokan Sill,Earth,,"[[""Ebony Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1]]","[null, null, null]"
+,41,[],Mokujin,Earth,,"[[""Linen Thread"", 1], [""Silk Cloth"", 1], [""Feyweald Log"", 1]]","[[""Mokujin"", 66], [""Mokujin"", 99], [""Mokujin"", 99]]"
+,41,"[[""Smithing"", 38]]",Lance,Fire,,"[[""Ash Lumber"", 2], [""Steel Ingot"", 2]]","[[""Lance +1"", 1], null, null]"
+,41,[],Oak Cudgel,Wind,,"[[""Oak Lumber"", 1]]","[[""Oak Cudgel +1"", 1], null, null]"
+,42,[],Fang Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Yagudo Fletchings"", 1], [""Fang Arrowheads"", 1]]","[[""Fang Arrow"", 66], [""Fang Arrow"", 99], [""Fang Arrow"", 99]]"
+,42,"[[""Smithing"", 11]]",Halberd,Earth,,"[[""Ash Lumber"", 1], [""Steel Ingot"", 1], [""Wool Thread"", 1]]","[[""Halberd +1"", 1], null, null]"
+,43,[],Bulky Coffer,Earth,,"[[""Gold Ore"", 1], [""Light Chest"", 1]]","[null, null, null]"
+,43,[],Ebony Sabots,Wind,,"[[""Ebony Lumber"", 1], [""Sheep Leather"", 1]]","[[""Ebony Sabots +1"", 1], null, null]"
+,43,"[[""Smithing"", 19]]",Zamburak,Wind,,"[[""Coeurl Whisker"", 1], [""Steel Ingot"", 1], [""Oak Lumber"", 1]]","[[""Zamburak +1"", 1], null, null]"
+,44,[],Flower Stand,Earth,,"[[""Yew Lumber"", 1], [""Lauan Lumber"", 1]]","[null, null, null]"
+,44,[],Oak Staff,Wind,,"[[""Oak Lumber"", 1], [""Black Tiger Fang"", 1]]","[[""Oak Staff +1"", 1], null, null]"
+,44,[],Warp Cudgel,Wind,,"[[""Ethereal Oak Lumber"", 1], [""Oak Cudgel"", 1]]","[null, null, null]"
+,45,"[[""Alchemy"", 29]]",Bast Parchment,Lightning,,"[[""Elm Log"", 1], [""Moko Grass"", 1], [""Distilled Water"", 1]]","[null, null, null]"
+,45,[],Rosewood Lumber,Wind,,"[[""Rosewood Log"", 1]]","[[""Rosewood Lumber"", 2], [""Rosewood Lumber"", 3], [""Rosewood Lumber"", 4]]"
+,45,[],Rosewood Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Rosewood Log"", 3]]","[[""Rosewood Lumber"", 6], [""Rosewood Lumber"", 9], [""Rosewood Lumber"", 12]]"
+,45,[],Rosewood Lumber,Wind,,"[[""Woodworking Kit 45"", 1]]","[null, null, null]"
+,45,[],Puce Chest,Earth,,"[[""Iron Ingot"", 1], [""Thief's Tools"", 1], [""Green Textile Dye"", 1], [""Yellow Textile Dye"", 1], [""Guatambu Lumber"", 1]]","[null, null, null]"
+,46,[],Elm Pole,Wind,,"[[""Elm Lumber"", 2]]","[[""Elm Pole +1"", 1], null, null]"
+,46,[],Mythril Bolt,Earth,,"[[""Walnut Lumber"", 1], [""Mythril Bolt Heads"", 1]]","[[""Mythril Bolt"", 66], [""Mythril Bolt"", 99], [""Mythril Bolt"", 99]]"
+,46,[],Mythril Bolt,Earth,Boltmaker,"[[""Walnut Lumber"", 3], [""Mythril Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
+,46,[],Royal Knight Army Lance +1,Earth,,"[[""Royal Knight Army Lance"", 1], [""Ash Lumber"", 1]]","[[""Royal Knight Army Lance +2"", 1], null, null]"
+,47,[],Fire Arrow,Earth,,"[[""Ash Lumber"", 1], [""Fire Arrowheads"", 1], [""Bird Fletchings"", 1]]","[[""Fire Arrow"", 66], [""Fire Arrow"", 99], [""Fire Arrow"", 99]]"
+,47,[],Rose Wand,Wind,,"[[""Rosewood Lumber"", 1], [""Black Chocobo Feather"", 1]]","[[""Rose Wand +1"", 1], null, null]"
+,47,[],San d'Orian Halberd,Earth,,"[[""Ash Lumber"", 1], [""Royal Squire's Halberd"", 1]]","[[""Kingdom Halberd"", 1], null, null]"
+,48,"[[""Bonecraft"", 15]]",Battle Bow,Wind,,"[[""Coeurl Whisker"", 1], [""Chestnut Lumber"", 2], [""Silk Cloth"", 1], [""Scorpion Claw"", 1]]","[[""Battle Bow +1"", 1], null, null]"
+,48,"[[""Smithing"", 12]]",Oak Shield,Earth,,"[[""Iron Sheet"", 1], [""Oak Lumber"", 2]]","[[""Oak Shield +1"", 1], null, null]"
+,48,[],Passaddhi Staff,Wind,,"[[""Hefty Oak Lumber"", 1], [""Black Tiger Fang"", 1]]","[[""Passaddhi Staff +1"", 1], null, null]"
+,49,[],Horn Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Horn Arrowheads"", 1], [""Bird Fletchings"", 1]]","[[""Horn Arrow"", 66], [""Horn Arrow"", 99], [""Horn Arrow"", 99]]"
+,49,"[[""Clothcraft"", 49]]",Oak Bed,Earth,,"[[""Oak Lumber"", 4], [""Linen Thread"", 1], [""Linen Cloth"", 3]]","[null, null, null]"
+,50,[],Coated Shield,Earth,,"[[""Exorcismal Oak Lumber"", 1], [""Oak Shield"", 1]]","[null, null, null]"
+,50,"[[""Smithing"", 11]]",Quarterstaff,Wind,,"[[""Iron Ingot"", 1], [""Walnut Lumber"", 2]]","[[""Footman's Staff"", 1], null, null]"
+,50,[],Sleep Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Bird Fletchings"", 1], [""Sleep Arrowheads"", 1]]","[[""Sleep Arrow"", 66], [""Sleep Arrow"", 99], [""Sleep Arrow"", 99]]"
+,50,[],Sleep Arrow,Earth,,"[[""Woodworking Kit 50"", 1]]","[null, null, null]"
+,50,[],Kotatsu Table,Wind,,"[[""Bronze Ingot"", 1], [""Rosewood Lumber"", 1], [""Cotton Cloth"", 2], [""Saruta Cotton"", 2], [""Bomb Arm"", 1]]","[null, null, null]"
+,51,"[[""Clothcraft"", 26]]",Desk,Earth,,"[[""Lauan Lumber"", 1], [""Elm Lumber"", 1], [""Linen Cloth"", 1]]","[null, null, null]"
+,51,[],Fastwater Fishing Rod,Light,,"[[""Broken Fastwater Rod"", 1]]","[null, null, null]"
+,51,[],Mahogany Lumber,Wind,,"[[""Mahogany Log"", 1]]","[[""Mahogany Lumber"", 2], [""Mahogany Lumber"", 3], [""Mahogany Lumber"", 4]]"
+,51,[],Mahogany Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Mahogany Log"", 3]]","[[""Mahogany Lumber"", 6], [""Mahogany Lumber"", 9], [""Mahogany Lumber"", 12]]"
+,52,"[[""Smithing"", 41]]",Kamayari,Earth,,"[[""Iron Ingot"", 1], [""Oak Lumber"", 1], [""Tama-Hagane"", 1], [""Silk Thread"", 1]]","[[""Kamayari +1"", 1], null, null]"
+,52,[],Paralysis Arrow,Earth,,"[[""Dogwood Lumber"", 1], [""Apkallu Fletchings"", 1], [""Paralysis Arrowheads"", 1]]","[[""Paralysis Arrow"", 66], [""Paralysis Arrow"", 99], [""Paralysis Arrow"", 99]]"
+,52,[],Furusumi,Earth,,"[[""Kapor Log"", 1], [""Animal Glue"", 1], [""Distilled Water"", 1], [""Soot"", 1]]","[[""Furusumi"", 66], [""Furusumi"", 66], [""Furusumi"", 99]]"
+,53,[],Azure Chest,Earth,,"[[""Gold Ore"", 1], [""Blue Textile Dye"", 1], [""Light Chest"", 1]]","[null, null, null]"
+,53,"[[""Clothcraft"", 11], [""Alchemy"", 46]]",Meifu Goma,Earth,,"[[""Arrowwood Lumber"", 1], [""Koma"", 1], [""Firesand"", 1], [""Cotton Thread"", 1]]","[[""Meifu Goma"", 66], [""Meifu Goma"", 99], [""Meifu Goma"", 99]]"
+,53,[],Rose Harp,Earth,,"[[""Coeurl Whisker"", 1], [""Rosewood Lumber"", 2]]","[[""Rose Harp +1"", 1], null, null]"
+,53,[],Pastoral Staff,Earth,Wood Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Quarterstaff"", 1]]","[null, null, null]"
+,53,[],Tavern Bench,Earth,,"[[""Mahogany Lumber"", 2], [""Rosewood Lumber"", 2]]","[null, null, null]"
+,54,"[[""Smithing"", 14]]",Great Club,Wind,,"[[""Bronze Ingot"", 1], [""Mahogany Lumber"", 1]]","[[""Great Club +1"", 1], null, null]"
+,54,"[[""Alchemy"", 16]]",Amigo Cactus,Earth,,"[[""Cactus Arm"", 1], [""Humus"", 1], [""Karugo Clay"", 1], [""Red Gravel"", 1], [""Yellow Rock"", 1]]","[null, null, null]"
+,54,"[[""Alchemy"", 16]]",Amiga Cactus,Earth,,"[[""Cactus Arm"", 1], [""Humus"", 1], [""Karugo Clay"", 1], [""Red Gravel"", 1], [""Red Rock"", 1]]","[null, null, null]"
+,55,[],Oak Pole,Wind,,"[[""Oak Lumber"", 2]]","[[""Oak Pole +1"", 1], null, null]"
+,55,[],Obsidian Arrow,Earth,,"[[""Obsidian Arrowheads"", 1], [""Teak Lumber"", 1], [""Gnat Fletchings"", 1]]","[[""Obsidian Arrow"", 66], [""Obsidian Arrow"", 99], [""Obsidian Arrow"", 99]]"
+,55,[],Fastwater Fishing Rod,Wind,,"[[""Woodworking Kit 55"", 1]]","[null, null, null]"
+,55,[],Jinko,Wind,,"[[""Aquilaria Log"", 1]]","[[""Jinko"", 66], [""Jinko"", 99], [""Jinko"", 99]]"
+,56,[],Fastwater Fishing Rod,Wind,,"[[""Elm Lumber"", 1], [""Wool Thread"", 1]]","[null, null, null]"
+,56,[],Stepping Stool,Earth,,"[[""Ebony Lumber"", 2], [""Oak Lumber"", 3]]","[null, null, null]"
+,57,[],Kaman,Wind,,"[[""Elm Lumber"", 1], [""Bamboo Stick"", 1], [""Silk Thread"", 1], [""Wool Cloth"", 1]]","[[""Kaman +1"", 1], null, null]"
+,57,[],Earth Arrow,Earth,,"[[""Dogwood Lumber"", 1], [""Puk Fletchings"", 1], [""Earth Arrowheads"", 1]]","[[""Earth Arrow"", 66], [""Earth Arrow"", 99], [""Earth Arrow"", 99]]"
+,57,[],Ice Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Insect Fletchings"", 1], [""Ice Arrowheads"", 1]]","[[""Ice Arrow"", 66], [""Ice Arrow"", 99], [""Ice Arrow"", 99]]"
+,57,[],Lightning Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Insect Fletchings"", 1], [""Lightning Arrowheads"", 1]]","[[""Lightning Arrow"", 66], [""Lightning Arrow"", 99], [""Lightning Arrow"", 99]]"
+,57,[],Water Arrow,Earth,,"[[""Dogwood Lumber"", 1], [""Puk Fletchings"", 1], [""Water Arrowheads"", 1]]","[[""Water Arrow"", 66], [""Water Arrow"", 99], [""Water Arrow"", 99]]"
+,57,[],Wind Arrow,Earth,,"[[""Dogwood Lumber"", 1], [""Puk Fletchings"", 1], [""Wind Arrowheads"", 1]]","[[""Wind Arrow"", 66], [""Wind Arrow"", 99], [""Wind Arrow"", 99]]"
+,58,"[[""Alchemy"", 25]]",War Bow,Wind,,"[[""Oak Lumber"", 2], [""Silk Cloth"", 1], [""Carbon Fiber"", 1], [""Glass Fiber"", 1]]","[[""War Bow +1"", 1], null, null]"
+,59,"[[""Smithing"", 28]]",Arbalest,Wind,,"[[""Carbon Fiber"", 1], [""Mahogany Lumber"", 1], [""Mythril Ingot"", 1]]","[[""Arbalest +1"", 1], null, null]"
+,59,[],Scorpion Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Scorpion Arrowheads"", 1], [""Insect Fletchings"", 1]]","[[""Scorpion Arrow"", 66], [""Scorpion Arrow"", 99], [""Scorpion Arrow"", 99]]"
+,59,[],Federal Mercenary's Hammock,Earth,,"[[""Bamboo Stick"", 1], [""Lauan Lumber"", 1], [""Holly Lumber"", 2], [""Rattan Lumber"", 3], [""Wisteria Lumber"", 1]]","[null, null, null]"
+,60,"[[""Clothcraft"", 53]]",Mahogany Bed,Earth,,"[[""Mahogany Lumber"", 4], [""Wool Thread"", 1], [""Wool Cloth"", 3]]","[null, null, null]"
+,60,"[[""Smithing"", 42]]",Mythril Lance,Fire,,"[[""Mythril Ingot"", 2], [""Ash Lumber"", 2]]","[[""Mythril Lance +1"", 1], null, null]"
+,60,[],Red Viola,Water,,"[[""Red Rock"", 1], [""Granite"", 1], [""Red Gravel"", 1], [""Wildgrass Seeds"", 1], [""Humus"", 1]]","[null, null, null]"
+,60,[],Blue Viola,Water,,"[[""Blue Rock"", 1], [""Granite"", 1], [""Red Gravel"", 1], [""Wildgrass Seeds"", 1], [""Humus"", 1]]","[null, null, null]"
+,60,[],Yellow Viola,Water,,"[[""Yellow Rock"", 1], [""Granite"", 1], [""Red Gravel"", 1], [""Wildgrass Seeds"", 1], [""Humus"", 1]]","[null, null, null]"
+,60,[],White Viola,Water,,"[[""White Rock"", 1], [""Granite"", 1], [""Red Gravel"", 1], [""Wildgrass Seeds"", 1], [""Humus"", 1]]","[null, null, null]"
+,60,[],Personal Table,Earth,,"[[""Walnut Lumber"", 1], [""Rosewood Lumber"", 1], [""Gold Ingot"", 1]]","[null, null, null]"
+,60,[],White Viola,Water,,"[[""Woodworking Kit 60"", 1]]","[null, null, null]"
+,61,[],Chest,Earth,,"[[""Rattan Lumber"", 3], [""Lauan Lumber"", 2]]","[null, null, null]"
+,61,[],Ebony Lumber,Wind,,"[[""Ebony Log"", 1]]","[[""Ebony Lumber"", 2], [""Ebony Lumber"", 3], [""Ebony Lumber"", 4]]"
+,61,[],Ebony Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Ebony Log"", 3]]","[[""Ebony Lumber"", 6], [""Ebony Lumber"", 9], [""Ebony Lumber"", 12]]"
+,61,[],Gueridon,Earth,,"[[""Walnut Lumber"", 2], [""Rosewood Lumber"", 1], [""Gold Ingot"", 1]]","[null, null, null]"
+,62,[],Darksteel Bolt,Earth,,"[[""Darksteel Bolt Heads"", 1], [""Yew Lumber"", 1]]","[[""Darksteel Bolt"", 66], [""Darksteel Bolt"", 99], [""Darksteel Bolt"", 99]]"
+,62,[],Darksteel Bolt,Earth,Boltmaker,"[[""Yew Lumber"", 3], [""Darksteel Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
+,62,[],Mahogany Staff,Wind,,"[[""Demon Horn"", 1], [""Turquoise"", 1], [""Mahogany Lumber"", 1]]","[[""Heavy Staff"", 1], null, null]"
+,62,[],Fay Staff,Wind,,"[[""Turquoise"", 1], [""Gargouille Horn"", 1], [""Feyweald Lumber"", 1]]","[null, null, null]"
+,62,[],Aureous Chest,Earth,,"[[""Walnut Lumber"", 2], [""Mahogany Lumber"", 1], [""Gold Ingot"", 1]]","[null, null, null]"
+,63,"[[""Goldsmithing"", 11]]",Coffer,Earth,,"[[""Brass Sheet"", 1], [""Yew Lumber"", 5], [""Rosewood Lumber"", 1]]","[null, null, null]"
+,63,"[[""Alchemy"", 54]]",Hydro Pump,Earth,,"[[""Bamboo Stick"", 1], [""Chestnut Lumber"", 1], [""Coeurl Whisker"", 1], [""Carbon Fiber"", 1], [""Animal Glue"", 1], [""Water Cluster"", 1]]","[[""Hydro Pump"", 99], null, null]"
+,63,[],Tarutaru Fishing Rod,Light,,"[[""Broken Tarutaru Rod"", 1]]","[null, null, null]"
+,63,[],Fay Crozier,Wind,,"[[""Gargouille Eye"", 1], [""Feyweald Lumber"", 1]]","[null, null, null]"
+,64,[],Angel's Flute,Wind,,"[[""Rosewood Lumber"", 1], [""Parchment"", 1]]","[[""Angel Flute +1"", 1], null, null]"
+,64,[],Lightning Bow,Earth,,"[[""Ose Whisker"", 1], [""Kaman"", 1]]","[[""Lightning Bow +1"", 1], null, null]"
+,64,[],Royal Squire's Bunk,Earth,,"[[""Iron Sheet"", 1], [""Chestnut Lumber"", 1], [""Walnut Lumber"", 1], [""Ash Lumber"", 2], [""Wool Cloth"", 2], [""Sheep Wool"", 1]]","[null, null, null]"
+,64,[],Qi Staff,Wind,,"[[""Mahogany Lumber"", 1], [""Demon Horn"", 1], [""Blue Jasper"", 1]]","[[""Qi Staff +1"", 1], null, null]"
+,64,[],Floral Nightstand,Earth,,"[[""Rosewood Lumber"", 1], [""Ebony Lumber"", 1], [""Gold Ingot"", 1]]","[null, null, null]"
+,65,[],Gold Arrow,Earth,,"[[""Ash Lumber"", 1], [""Yagudo Fletchings"", 1], [""Gold Arrowheads"", 1]]","[[""Gold Arrow"", 66], [""Gold Arrow"", 99], [""Gold Arrow"", 99]]"
+,65,[],Secretaire,Earth,,"[[""Mahogany Lumber"", 4]]","[null, null, null]"
+,65,[],Tarutaru Fishing Rod,Wind,,"[[""Walnut Lumber"", 1], [""Silk Thread"", 1]]","[null, null, null]"
+,65,[],Oxidant Bolt,Earth,,"[[""Urunday Lumber"", 1], [""Acid Bolt Heads"", 1]]","[[""Oxidant Bolt"", 66], [""Oxidant Bolt"", 99], [""Oxidant Bolt"", 99]]"
+,65,[],Oxidant Bolt,Earth,Boltmaker,"[[""Urunday Lumber"", 3], [""Acid Bolt Heads"", 3], [""Bundling Twine"", 1]]","[null, null, null]"
+,65,[],Gilded Chest,Earth,,"[[""Walnut Lumber"", 1], [""Mahogany Lumber"", 2], [""Gold Ingot"", 1]]","[null, null, null]"
+,65,[],Tarutaru Fishing Rod,Wind,,"[[""Woodworking Kit 65"", 1]]","[null, null, null]"
+,66,[],Ebony Wand,Wind,,"[[""Ebony Lumber"", 1], [""Giant Bird Feather"", 1]]","[[""Ebony Wand +1"", 1], null, null]"
+,66,[],Revenging Staff,Wind,,"[[""Arioch Fang"", 1], [""Oak Lumber"", 1]]","[[""Revenging Staff +1"", 1], null, null]"
+,66,[],Fay Lance,Fire,,"[[""Darksteel Ingot"", 2], [""Ash Lumber"", 1], [""Feyweald Lumber"", 1]]","[null, null, null]"
+,66,[],Feyweald Lumber,Wind,,"[[""Feyweald Log"", 1]]","[[""Feyweald Lumber"", 2], [""Feyweald Lumber"", 3], [""Feyweald Lumber"", 4]]"
+,66,"[[""Cooking"", 15]]",Deepbed Soil,Dark,,"[[""Beech Log"", 1], [""Woozyshroom"", 1], [""Danceshroom"", 1], [""Sleepshroom"", 1]]","[[""Deepbed Soil"", 6], [""Deepbed Soil"", 8], [""Deepbed Soil"", 10]]"
+,66,[],Mensa Lunata,Earth,,"[[""Walnut Lumber"", 3], [""Rosewood Lumber"", 1], [""Gold Ingot"", 1]]","[null, null, null]"
+,67,"[[""Cooking"", 32]]",Beverage Barrel,Earth,,"[[""Water Barrel"", 1], [""Oak Lumber"", 2], [""Grape Juice"", 3]]","[null, null, null]"
+,67,"[[""Smithing"", 37]]",Partisan,Wind,,"[[""Ash Lumber"", 1], [""Darksteel Ingot"", 1], [""Silver Thread"", 1]]","[[""Partisan +1"", 1], null, null]"
+,67,"[[""Clothcraft"", 46], [""Alchemy"", 7]]",Red Round Table,Earth,,"[[""Lauan Lumber"", 1], [""Linen Cloth"", 2], [""Velvet Cloth"", 2], [""Platinum Silk Thread"", 1], [""Teak Lumber"", 1], [""Red Textile Dye"", 1]]","[null, null, null]"
+,67,"[[""Clothcraft"", 46], [""Alchemy"", 7]]",Blue Round Table,Earth,,"[[""Lauan Lumber"", 1], [""Linen Cloth"", 2], [""Velvet Cloth"", 2], [""Platinum Silk Thread"", 1], [""Teak Lumber"", 1], [""Blue Textile Dye"", 1]]","[null, null, null]"
+,67,"[[""Clothcraft"", 46], [""Alchemy"", 7]]",Green Round Table,Earth,,"[[""Lauan Lumber"", 1], [""Linen Cloth"", 2], [""Velvet Cloth"", 2], [""Platinum Silk Thread"", 1], [""Teak Lumber"", 1], [""Green Textile Dye"", 1]]","[null, null, null]"
+,67,"[[""Clothcraft"", 46], [""Alchemy"", 7]]",Yellow Round Table,Earth,,"[[""Lauan Lumber"", 1], [""Linen Cloth"", 2], [""Velvet Cloth"", 2], [""Platinum Silk Thread"", 1], [""Teak Lumber"", 1], [""Yellow Textile Dye"", 1]]","[null, null, null]"
+,67,"[[""Clothcraft"", 46], [""Alchemy"", 7]]",White Round Table,Earth,,"[[""Lauan Lumber"", 1], [""Linen Cloth"", 2], [""Velvet Cloth"", 2], [""Platinum Silk Thread"", 1], [""Teak Lumber"", 1], [""White Textile Dye"", 1]]","[null, null, null]"
+,67,[],Rococo Table,Earth,,"[[""Ebony Lumber"", 4]]","[null, null, null]"
+,68,[],Bodkin Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Black Chocobo Fletchings"", 1], [""Armored Arrowheads"", 1]]","[[""Bodkin Arrow"", 66], [""Bodkin Arrow"", 99], [""Bodkin Arrow"", 99]]"
+,68,[],Mahogany Pole,Wind,,"[[""Mahogany Lumber"", 2]]","[[""Mahogany Pole +1"", 1], null, null]"
+,69,"[[""Smithing"", 21]]",Angon,Wind,,"[[""Iron Ingot"", 2], [""Yew Lumber"", 3], [""Wool Thread"", 1]]","[[""Angon"", 66], [""Angon"", 99], [""Angon"", 99]]"
+,69,"[[""Smithing"", 40]]",Console,Earth,,"[[""Iron Sheet"", 2], [""Dogwood Lumber"", 3]]","[null, null, null]"
+,69,[],Demon Arrow,Earth,,"[[""Arrowwood Lumber"", 1], [""Black Chocobo Fletchings"", 1], [""Demon Arrowheads"", 1]]","[[""Demon Arrow"", 66], [""Demon Arrow"", 99], [""Demon Arrow"", 99]]"
+,69,[],Rapid Bow,Wind,,"[[""Walnut Lumber"", 1], [""Ebony Lumber"", 1], [""Silver Thread"", 1], [""Silk Cloth"", 1]]","[[""Rapid Bow +1"", 1], null, null]"
+,70,"[[""Smithing"", 32], [""Bonecraft"", 19]]",Heavy Crossbow,Wind,,"[[""Ebony Lumber"", 1], [""Carbon Fiber"", 1], [""Darksteel Ingot"", 1], [""Mahogany Lumber"", 1], [""Giant Femur"", 1]]","[[""Heavy Crossbow +1"", 1], null, null]"
+,70,"[[""Smithing"", 8]]",Hickory Shield,Earth,,"[[""Iron Sheet"", 1], [""Hickory Lumber"", 2]]","[[""Picaroon's Shield"", 1], null, null]"
+,70,"[[""Bonecraft"", 45]]",Fay Gendawa,Wind,,"[[""Ancient Lumber"", 1], [""Rainbow Cloth"", 1], [""Rafflesia Vine"", 1], [""Gargouille Horn"", 1], [""Feyweald Lumber"", 1]]","[null, null, null]"
+,70,[],Lu Shang's Fishing Rod,Light,,"[[""Broken Lu Shang's Rod"", 1]]","[null, null, null]"
+,70,[],Lu Shang's Fishing Rod +1,Light,,"[[""Broken Lu Shang's Fishing Rod +1"", 1]]","[null, null, null]"
+,70,[],Luxurious Chest,Earth,,"[[""Walnut Lumber"", 4], [""Mahogany Lumber"", 2], [""Gold Ingot"", 1]]","[null, null, null]"
+,71,[],Ebony Harp,Earth,,"[[""Ebony Lumber"", 2], [""Coeurl Whisker"", 1]]","[[""Ebony Harp +1"", 1], [""Ebony Harp +2"", 1], null]"
+,71,[],Water Barrel,Earth,,"[[""Iron Sheet"", 1], [""Oak Lumber"", 3]]","[null, null, null]"
+,71,[],Bongo Drum,Earth,,"[[""Bamboo Stick"", 1], [""Dhalmel Hide"", 1], [""Buffalo Leather"", 1]]","[null, null, null]"
+,71,[],Ebony Harp,Earth,,"[[""Woodworking Kit 71"", 1]]","[null, null, null]"
+,72,[],Ancient Lumber,Wind,,"[[""Petrified Log"", 1]]","[[""Ancient Lumber"", 2], [""Ancient Lumber"", 3], [""Ancient Lumber"", 4]]"
+,72,[],Ancient Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Petrified Log"", 3]]","[[""Ancient Lumber"", 6], [""Ancient Lumber"", 9], [""Ancient Lumber"", 12]]"
+,72,[],Hume Fishing Rod,Light,,"[[""Broken Hume Rod"", 1]]","[null, null, null]"
+,72,[],Tarutaru Folding Screen,Earth,,"[[""Rattan Lumber"", 3], [""Parchment"", 3]]","[null, null, null]"
+,72,[],Sanctified Lumber,Wind,Wood Purification,"[[""Petrified Log"", 1], [""Water Anima"", 1], [""Ice Anima"", 1], [""Light Anima"", 1]]","[[""Sanctified Lumber"", 2], [""Sanctified Lumber"", 3], [""Sanctified Lumber"", 4]]"
+,73,"[[""Smithing"", 26]]",Chiffonier,Earth,,"[[""Iron Sheet"", 2], [""Rosewood Lumber"", 3]]","[null, null, null]"
+,73,[],Clothespole,Light,,"[[""Broken Clothespole"", 1]]","[null, null, null]"
+,73,[],Musketeer's Pole +1,Earth,,"[[""Musketeer's Pole"", 1], [""Mahogany Lumber"", 1]]","[[""Musketeer's Pole +2"", 1], null, null]"
+,73,[],Platinum Arrow,Earth,,"[[""Ash Lumber"", 1], [""Yagudo Fletchings"", 1], [""Platinum Arrowheads"", 1]]","[[""Platinum Arrow"", 66], [""Platinum Arrow"", 99], [""Platinum Arrow"", 99]]"
+,73,[],Gilded Shelf,Earth,,"[[""Walnut Lumber"", 4], [""Mahogany Lumber"", 2], [""Gold Ingot"", 2]]","[null, null, null]"
+,74,[],Bastokan Staff,Earth,,"[[""Legionnaire's Staff"", 1], [""Ebony Lumber"", 1]]","[[""Republic Staff"", 1], null, null]"
+,74,"[[""Smithing"", 42], [""Goldsmithing"", 5]]",Couse,Fire,,"[[""Brass Ingot"", 1], [""Darksteel Ingot"", 2], [""Ash Lumber"", 1]]","[[""Couse +1"", 1], null, null]"
+,74,[],Jeunoan Armoire,Earth,,"[[""Walnut Lumber"", 1], [""Rosewood Lumber"", 1], [""Ebony Lumber"", 2], [""Gold Ingot"", 1]]","[null, null, null]"
+,74,[],Jeunoan Dresser,Earth,,"[[""Walnut Lumber"", 2], [""Rosewood Lumber"", 1], [""Ebony Lumber"", 4], [""Gold Ingot"", 1]]","[null, null, null]"
+,74,[],Hume Fishing Rod,Wind,,"[[""Rosewood Lumber"", 1], [""Silver Thread"", 1]]","[null, null, null]"
+,74,"[[""Smithing"", 19]]",Round Shield,Earth,,"[[""Iron Sheet"", 1], [""Oak Lumber"", 1], [""Mahogany Lumber"", 1]]","[[""Round Shield +1"", 1], null, null]"
+,74,[],Hume Fishing Rod,Wind,,"[[""Woodworking Kit 74"", 1]]","[null, null, null]"
+,75,"[[""Smithing"", 41]]",Bureau,Earth,,"[[""Darksteel Sheet"", 1], [""Rosewood Lumber"", 2], [""Mahogany Lumber"", 2]]","[null, null, null]"
+,75,[],Dark Staff,Wind,,"[[""Ebony Lumber"", 1], [""Dark Bead"", 1]]","[[""Pluto's Staff"", 1], null, null]"
+,75,[],Earth Staff,Wind,,"[[""Ebony Lumber"", 1], [""Earth Bead"", 1]]","[[""Terra's Staff"", 1], null, null]"
+,75,[],Fire Staff,Wind,,"[[""Ebony Lumber"", 1], [""Fire Bead"", 1]]","[[""Vulcan's Staff"", 1], null, null]"
+,75,[],Ice Staff,Wind,,"[[""Ebony Lumber"", 1], [""Ice Bead"", 1]]","[[""Aquilo's Staff"", 1], null, null]"
+,75,[],Light Staff,Wind,,"[[""Ebony Lumber"", 1], [""Light Bead"", 1]]","[[""Apollo's Staff"", 1], null, null]"
+,75,[],Thunder Staff,Wind,,"[[""Ebony Lumber"", 1], [""Lightning Bead"", 1]]","[[""Jupiter's Staff"", 1], null, null]"
+,75,[],Water Staff,Wind,,"[[""Ebony Lumber"", 1], [""Water Bead"", 1]]","[[""Neptune's Staff"", 1], null, null]"
+,75,[],Wind Staff,Wind,,"[[""Ebony Lumber"", 1], [""Wind Bead"", 1]]","[[""Auster's Staff"", 1], null, null]"
+,76,"[[""Smithing"", 51]]",Darksteel Lance,Fire,,"[[""Ash Lumber"", 2], [""Darksteel Ingot"", 2]]","[[""Darksteel Lance +1"", 1], null, null]"
+,76,"[[""Alchemy"", 54]]",Kilo Pump,Earth,,"[[""Bamboo Stick"", 1], [""Chestnut Lumber"", 1], [""Coeurl Whisker"", 2], [""Carbon Fiber"", 1], [""Animal Glue"", 1], [""Water Cluster"", 1]]","[[""Kilo Pump"", 99], null, null]"
+,76,"[[""Leathercraft"", 60]]",Ngoma,Wind,,"[[""Divine Log"", 1], [""Buffalo Leather"", 1]]","[null, null, null]"
+,77,[],Clothespole,Wind,,"[[""Mahogany Lumber"", 1], [""Silk Thread"", 1]]","[null, null, null]"
+,77,[],Commode,Earth,,"[[""Rosewood Lumber"", 5]]","[null, null, null]"
+,77,[],Dispel Couse,Wind,,"[[""Bewitched Ash Lumber"", 1], [""Couse"", 1]]","[null, null, null]"
+,78,"[[""Goldsmithing"", 50], [""Clothcraft"", 56]]",Noble's Bed,Earth,,"[[""Gold Ingot"", 1], [""Velvet Cloth"", 1], [""Mahogany Lumber"", 1], [""Rosewood Lumber"", 3], [""Gold Thread"", 1], [""Silk Cloth"", 1]]","[null, null, null]"
+,78,[],Velocity Bow,Earth,,"[[""Flauros Whisker"", 1], [""Heavy Crossbow"", 1]]","[[""Velocity Bow +1"", 1], null, null]"
+,78,[],Partition,Earth,,"[[""Mahogany Lumber"", 4], [""Rattan Lumber"", 4]]","[null, null, null]"
+,78,"[[""Smithing"", 44]]",Spence,Earth,,"[[""Hickory Lumber"", 2], [""Teak Lumber"", 2], [""Walnut Lumber"", 3], [""Darksteel Ingot"", 1]]","[null, null, null]"
+,79,[],Ebony Pole,Wind,,"[[""Ebony Lumber"", 2]]","[[""Ebony Pole +1"", 1], null, null]"
+,79,"[[""Smithing"", 20]]",Scimitar Cactus,Water,,"[[""Iron Sheet"", 1], [""Red Gravel"", 1], [""Cactus Arm"", 1], [""Humus"", 1]]","[null, null, null]"
+,79,[],Windurstian Tea Set,Wind,,"[[""Jacaranda Lumber"", 1], [""Bast Parchment"", 1]]","[null, null, null]"
+,80,"[[""Goldsmithing"", 11]]",Tower Shield,Earth,,"[[""Ebony Lumber"", 1], [""Brass Ingot"", 1], [""Brass Sheet"", 1], [""Oak Lumber"", 2], [""Mahogany Lumber"", 1]]","[[""Tower Shield +1"", 1], null, null]"
+,80,"[[""Alchemy"", 36]]",River Aquarium,Light,,"[[""Petrified Log"", 1], [""Oak Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Freshwater Set"", 1], [""Kayabaligi"", 3]]","[null, null, null]"
+,80,"[[""Alchemy"", 36]]",Freshwater Aquarium,Light,,"[[""Petrified Log"", 1], [""Oak Lumber"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Freshwater Set"", 1], [""Pipira"", 3]]","[null, null, null]"
+,80,[],Beech Lumber,Wind,,"[[""Beech Log"", 1]]","[[""Beech Lumber"", 2], [""Beech Lumber"", 3], [""Beech Lumber"", 4]]"
+,80,[],Beech Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Beech Log"", 3]]","[[""Beech Lumber"", 6], [""Beech Lumber"", 9], [""Beech Lumber"", 12]]"
+,80,[],Semainier,Earth,,"[[""Rosewood Lumber"", 1], [""Ebony Lumber"", 5], [""Gold Ingot"", 2]]","[null, null, null]"
+,81,[],Battle Fork,Earth,,"[[""Ash Lumber"", 1], [""Trident"", 1]]","[[""Battle Fork +1"", 1], null, null]"
+,81,[],Cabinet,Earth,,"[[""Holly Lumber"", 1], [""Oak Lumber"", 4]]","[null, null, null]"
+,81,[],Marid Arrow,Earth,,"[[""Dogwood Lumber"", 1], [""Apkallu Fletchings"", 1], [""Marid Tusk Arrowheads"", 1]]","[[""Marid Arrow"", 66], [""Marid Arrow"", 99], [""Marid Arrow"", 99]]"
+,81,[],Cabinet,Earth,,"[[""Woodworking Kit 81"", 1]]","[null, null, null]"
+,82,"[[""Goldsmithing"", 50], [""Smithing"", 49]]",Dark Mezraq,Wind,,"[[""Darksteel Ingot"", 2], [""Ebony Lumber"", 1], [""Platinum Ingot"", 1], [""Wamoura Silk"", 1]]","[[""Dark Mezraq +1"", 1], null, null]"
+,82,[],Leo Crossbow,Earth,,"[[""Mahogany Lumber"", 1], [""Lion Crossbow"", 1]]","[[""Leo Crossbow +1"", 1], null, null]"
+,82,[],Nymph Shield,Earth,,"[[""Faerie Shield"", 1], [""Oak Lumber"", 1]]","[[""Nymph Shield +1"", 1], null, null]"
+,82,"[[""Goldsmithing"", 7]]",Yellow Hobby Bo,Earth,,"[[""Chestnut Lumber"", 1], [""Dogwood Lumber"", 1], [""Hickory Lumber"", 1], [""Onyx"", 2], [""Yellow Chocobo Dye"", 1]]","[null, null, null]"
+,82,"[[""Goldsmithing"", 7]]",Red Hobby Bo,Earth,,"[[""Chestnut Lumber"", 1], [""Dogwood Lumber"", 1], [""Hickory Lumber"", 1], [""Onyx"", 2], [""Red Chocobo Dye"", 1]]","[null, null, null]"
+,82,"[[""Goldsmithing"", 7]]",Black Hobby Bo,Earth,,"[[""Chestnut Lumber"", 1], [""Dogwood Lumber"", 1], [""Hickory Lumber"", 1], [""Onyx"", 2], [""Black Chocobo Dye"", 1]]","[null, null, null]"
+,82,"[[""Goldsmithing"", 7]]",Blue Hobby Bo,Earth,,"[[""Chestnut Lumber"", 1], [""Dogwood Lumber"", 1], [""Hickory Lumber"", 1], [""Onyx"", 2], [""Blue Chocobo Dye"", 1]]","[null, null, null]"
+,82,"[[""Goldsmithing"", 7]]",Green Hobby Bo,Earth,,"[[""Chestnut Lumber"", 1], [""Dogwood Lumber"", 1], [""Hickory Lumber"", 1], [""Onyx"", 2], [""Green Chocobo Dye"", 1]]","[null, null, null]"
+,83,[],Elshimo Palm,Water,,"[[""Willow Log"", 1], [""Rattan Lumber"", 1], [""Red Gravel"", 1], [""Elshimo Coconut"", 1], [""Humus"", 1]]","[null, null, null]"
+,83,[],Mithran Fishing Rod,Light,,"[[""Broken Mithran Rod"", 1]]","[null, null, null]"
+,83,[],Obelisk Lance,Earth,,"[[""Willow Lumber"", 1], [""Lance"", 1], [""Obelisk"", 1]]","[[""Obelisk Lance +1"", 1], null, null]"
+,83,[],Credenza,Earth,,"[[""Jacaranda Lumber"", 1], [""Rattan Lumber"", 3], [""Teak Lumber"", 4]]","[null, null, null]"
+,84,"[[""Alchemy"", 54]]",Mega Pump,Earth,,"[[""Bamboo Stick"", 1], [""Chestnut Lumber"", 1], [""Coeurl Whisker"", 3], [""Carbon Fiber"", 1], [""Animal Glue"", 1], [""Water Cluster"", 1]]","[[""Mega Pump"", 99], null, null]"
+,84,[],Mythic Wand,Wind,,"[[""Phoenix Feather"", 1], [""Ancient Lumber"", 1]]","[[""Mythic Wand +1"", 1], null, null]"
+,84,[],Numinous Shield,Earth,,"[[""Woodworking Kit 84"", 1]]","[null, null, null]"
+,85,"[[""Smithing"", 21]]",Battle Staff,Wind,,"[[""Walnut Lumber"", 2], [""Steel Ingot"", 1]]","[[""Battle Staff +1"", 1], null, null]"
+,85,"[[""Goldsmithing"", 49], [""Clothcraft"", 39]]",Dresser,Earth,,"[[""Gold Ingot"", 1], [""Velvet Cloth"", 1], [""Mythril Sheet"", 1], [""Rosewood Lumber"", 4], [""Gold Thread"", 1]]","[null, null, null]"
+,85,[],Numinous Shield,Earth,,"[[""Ancient Lumber"", 2], [""Round Shield"", 1]]","[[""Numinous Shield +1"", 1], null, null]"
+,85,"[[""Goldsmithing"", 9]]",Bookstack,Earth,,"[[""Walnut Lumber"", 3], [""Marble"", 3]]","[null, null, null]"
+,85,[],Teak Lumber,Wind,,"[[""Teak Log"", 1]]","[[""Teak Lumber"", 2], [""Teak Lumber"", 3], [""Teak Lumber"", 4]]"
+,85,[],Teak Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Teak Log"", 3]]","[[""Teak Lumber"", 6], [""Teak Lumber"", 9], [""Teak Lumber"", 12]]"
+,86,"[[""Alchemy"", 57]]",Cermet Lance,Fire,,"[[""Ash Lumber"", 2], [""Cermet Chunk"", 2]]","[[""Cermet Lance +1"", 1], null, null]"
+,86,[],Eremite's Wand,Earth,,"[[""Willow Lumber"", 1], [""Hermit's Wand"", 1]]","[[""Eremite's Wand +1"", 1], null, null]"
+,86,[],Broach Lance,Earth,Wood Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Obelisk Lance"", 1]]","[null, null, null]"
+,87,[],Dominus Shield,Earth,,"[[""Sanctified Lumber"", 1], [""Numinous Shield"", 1]]","[null, null, null]"
+,87,[],Mithran Fishing Rod,Wind,,"[[""Rattan Lumber"", 1], [""Rainbow Thread"", 1]]","[null, null, null]"
+,87,"[[""Goldsmithing"", 54], [""Clothcraft"", 59]]",Royal Bed,Earth,,"[[""Ebony Lumber"", 1], [""Gold Ingot"", 1], [""Damascene Cloth"", 1], [""Mahogany Lumber"", 1], [""Ruby"", 1], [""Gold Thread"", 1], [""Silk Cloth"", 1], [""Ancient Lumber"", 1]]","[null, null, null]"
+,87,[],Whale Staff,Wind,,"[[""Ash Lumber"", 1], [""Dolphin Staff"", 1]]","[[""Whale Staff +1"", 1], null, null]"
+,87,[],Feasting Table,Earth,,"[[""Jacaranda Lumber"", 1], [""Teak Lumber"", 2], [""Gold Ingot"", 1]]","[null, null, null]"
+,88,"[[""Smithing"", 59], [""Bonecraft"", 46]]",Repeating Crossbow,Wind,,"[[""Carbon Fiber"", 1], [""Coeurl Whisker"", 1], [""Darksteel Ingot"", 1], [""Mahogany Lumber"", 1], [""Rosewood Lumber"", 1], [""Scorpion Claw"", 1]]","[[""Machine Crossbow"", 1], null, null]"
+,88,"[[""Alchemy"", 59]]",Rosenbogen,Dark,,"[[""Rapid Bow"", 1], [""Leshonki Bulb"", 1], [""Red Rose"", 1], [""Mercury"", 1], [""Fiend Blood"", 1], [""Dryad Root"", 1]]","[[""Rosenbogen +1"", 1], null, null]"
+,88,[],Parclose,Earth,,"[[""Mahogany Lumber"", 6], [""Teak Lumber"", 2]]","[null, null, null]"
+,88,"[[""Clothcraft"", 40]]",Harp Stool,Earth,,"[[""Mahogany Lumber"", 1], [""Walnut Lumber"", 1], [""Wolf Felt"", 1]]","[null, null, null]"
+,88,[],Half Partition,Earth,,"[[""Mahogany Lumber"", 6]]","[null, null, null]"
+,89,[],Mythic Pole,Wind,,"[[""Ancient Lumber"", 2]]","[[""Mythic Pole +1"", 1], null, null]"
+,89,"[[""Alchemy"", 39]]",Reef Aquarium,Light,,"[[""Oak Lumber"", 1], [""Coral Fragment"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Saltwater Set"", 1], [""Coral Butterfly"", 3]]","[null, null, null]"
+,89,"[[""Alchemy"", 39]]",Saltwater Aquarium,Light,,"[[""Oak Lumber"", 1], [""Coral Fragment"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Saltwater Set"", 1], [""Moorish Idol"", 3]]","[null, null, null]"
+,89,"[[""Alchemy"", 39]]",Bay Aquarium,Light,,"[[""Oak Lumber"", 1], [""Coral Fragment"", 1], [""Sieglinde Putty"", 1], [""Glass Sheet"", 1], [""Saltwater Set"", 1], [""Bibikibo"", 3]]","[null, null, null]"
+,90,"[[""Goldsmithing"", 49]]",Armoire,Earth,,"[[""Ebony Lumber"", 7], [""Gold Ingot"", 1]]","[null, null, null]"
+,90,[],Bonfire,Fire,,"[[""Beech Lumber"", 2], [""Firesand"", 1], [""Teak Lumber"", 1]]","[null, null, null]"
+,90,"[[""Goldsmithing"", 60], [""Smithing"", 51]]",Engetsuto,Fire,,"[[""Steel Ingot"", 1], [""Darksteel Ingot"", 1], [""Dogwood Lumber"", 1], [""Scintillant Ingot"", 1]]","[[""Engetsuto +1"", 1], null, null]"
+,90,[],Mythic Harp,Earth,,"[[""Coeurl Whisker"", 1], [""Ancient Lumber"", 2]]","[[""Mythic Harp +1"", 1], null, null]"
+,90,"[[""Clothcraft"", 60]]",Recital Bench,Earth,,"[[""Hickory Lumber"", 1], [""Ancient Lumber"", 1], [""Wolf Felt"", 1]]","[null, null, null]"
+,90,[],Mythic Harp,Earth,,"[[""Woodworking Kit 90"", 1]]","[null, null, null]"
+,91,"[[""Clothcraft"", 45]]",3-Drawer Almirah,Earth,,"[[""Mahogany Lumber"", 2], [""Ebony Lumber"", 1], [""Ancient Lumber"", 1], [""Gold Thread"", 1], [""Silk Cloth"", 1]]","[null, null, null]"
+,91,"[[""Clothcraft"", 45]]",6-Drawer Almirah,Earth,,"[[""Mahogany Lumber"", 3], [""Ebony Lumber"", 1], [""Ancient Lumber"", 1], [""Gold Thread"", 1], [""Silk Cloth"", 1]]","[null, null, null]"
+,91,"[[""Clothcraft"", 45]]",9-Drawer Almirah,Earth,,"[[""Mahogany Lumber"", 4], [""Ebony Lumber"", 1], [""Ancient Lumber"", 1], [""Gold Thread"", 1], [""Silk Cloth"", 1]]","[null, null, null]"
+,91,"[[""Bonecraft"", 53]]",Kabura Arrow,Earth,,"[[""Bamboo Stick"", 1], [""Karimata Arrowheads"", 1], [""Giant Bird Fletchings"", 1], [""Ram Horn"", 1]]","[[""Kabura Arrow"", 66], [""Kabura Arrow"", 99], [""Kabura Arrow"", 99]]"
+,91,[],Lacquer Tree Lumber,Wind,,"[[""Lacquer Tree Log"", 1]]","[[""Lacquer Tree Lumber"", 2], [""Lacquer Tree Lumber"", 3], [""Lacquer Tree Lumber"", 4]]"
+,91,[],Lacquer Tree Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Lacquer Tree Log"", 3]]","[[""Lacquer Tree Lumber"", 6], [""Lacquer Tree Lumber"", 9], [""Lacquer Tree Lumber"", 12]]"
+,91,[],Bewitched Sune-Ate,Wind,,"[[""Cursed Sune-Ate -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Sune-Ate"", 1], null, null]"
+,92,"[[""Smithing"", 50], [""Goldsmithing"", 39]]",Barchha,Fire,,"[[""Darksteel Ingot"", 2], [""Ash Lumber"", 2], [""Gold Ingot"", 1]]","[[""Barchha +1"", 1], null, null]"
+,92,[],Divine Lumber,Wind,,"[[""Divine Log"", 1]]","[[""Divine Lumber"", 2], [""Divine Lumber"", 3], [""Divine Lumber"", 4]]"
+,92,[],Divine Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Divine Log"", 3]]","[[""Divine Lumber"", 6], [""Divine Lumber"", 9], [""Divine Lumber"", 12]]"
+,92,"[[""Smithing"", 48], [""Clothcraft"", 53]]",Tsahyan Mask,Wind,,"[[""Darksteel Sheet"", 1], [""Ebony Lumber"", 2], [""Giant Bird Plume"", 3], [""Manticore Hair"", 1], [""Avatar Blood"", 1]]","[null, null, null]"
+,92,[],Urunday Lumber,Wind,,"[[""Urunday Log"", 1]]","[[""Urunday Lumber"", 2], [""Urunday Lumber"", 3], [""Urunday Lumber"", 4]]"
+,92,[],Urunday Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Urunday Log"", 3]]","[[""Urunday Lumber"", 6], [""Urunday Lumber"", 9], [""Urunday Lumber"", 12]]"
+,92,[],Bewitched Kote,Wind,,"[[""Cursed Kote -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Kote"", 1], null, null]"
+,93,[],Cursed Haidate,Earth,,"[[""Animal Glue"", 1], [""Urushi"", 1], [""Divine Lumber"", 1], [""Haidate"", 1]]","[[""Cursed Haidate -1"", 1], null, null]"
+,93,"[[""Bonecraft"", 41]]",Gendawa,Wind,,"[[""Ancient Lumber"", 2], [""Rainbow Cloth"", 1], [""Coeurl Whisker"", 1], [""Taurus Horn"", 1]]","[[""Gendawa +1"", 1], null, null]"
+,93,"[[""Bonecraft"", 33]]",Totem Pole,Wind,,"[[""Walnut Lumber"", 1], [""Rosewood Lumber"", 3], [""White Rock"", 1], [""Manticore Hair"", 2], [""Wivre Horn"", 1]]","[null, null, null]"
+,93,"[[""Smithing"", 46]]",Wyvern Spear,Earth,,"[[""Iron Ingot"", 1], [""Mahogany Lumber"", 1], [""Tama-Hagane"", 1], [""Gold Thread"", 1], [""Wyvern Skin"", 1]]","[[""Wyvern Spear +1"", 1], null, null]"
+,93,[],Bewitched Haidate,Earth,,"[[""Cursed Haidate -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Haidate"", 1], null, null]"
+,94,[],Cursed Sune-Ate,Wind,,"[[""Animal Glue"", 1], [""Urushi"", 1], [""Divine Lumber"", 1], [""Sune-Ate"", 1]]","[[""Cursed Sune-Ate -1"", 1], null, null]"
+,94,"[[""Smithing"", 31]]",Eight-Sided Pole,Wind,,"[[""Walnut Lumber"", 2], [""Mythril Ingot"", 1]]","[[""Eight-Sided Pole +1"", 1], null, null]"
+,94,"[[""Goldsmithing"", 41], [""Alchemy"", 52]]",The Big One,Ice,,"[[""Mahogany Lumber"", 1], [""Ebony Lumber"", 1], [""Gold Sheet"", 1], [""Saruta Cotton"", 1], [""Beeswax"", 1], [""Animal Glue"", 1], [""Beetle Blood"", 1], [""Titanic Sawfish"", 1]]","[null, null, null]"
+,94,[],Sasah Wand,Wind,,"[[""Urunday Lumber"", 1], [""Phoenix Feather"", 1]]","[[""Sasah Wand +1"", 1], null, null]"
+,94,[],Bewitched Kabuto,Earth,,"[[""Cursed Kabuto -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Kabuto"", 1], null, null]"
+,94,[],Sasah Wand,Wind,,"[[""Woodworking Kit 94"", 1]]","[null, null, null]"
+,95,[],Bloodwood Lumber,Wind,,"[[""Bloodwood Log"", 1]]","[[""Bloodwood Lumber"", 2], [""Bloodwood Lumber"", 3], [""Bloodwood Lumber"", 4]]"
+,95,[],Bloodwood Lumber,Wind,Lumberjack,"[[""Bloodwood Log"", 3], [""Bundling Twine"", 1]]","[[""Bloodwood Lumber"", 6], [""Bloodwood Lumber"", 9], [""Bloodwood Lumber"", 12]]"
+,95,"[[""Goldsmithing"", 5]]",Bookshelf,Earth,,"[[""Mahogany Lumber"", 3], [""Tufa"", 3]]","[null, null, null]"
+,95,"[[""Clothcraft"", 55], [""Goldsmithing"", 44]]",Coffee Table,Wind,,"[[""Gold Ingot"", 1], [""Gold Thread"", 1], [""Lancewood Lumber"", 3], [""Silver Brocade"", 1]]","[null, null, null]"
+,95,[],Hemolele Staff,Wind,,"[[""Urunday Lumber"", 1], [""Chapuli Horn"", 1]]","[[""Hemolele Staff +1"", 1], null, null]"
+,95,"[[""Goldsmithing"", 39]]",Shigeto Bow,Wind,,"[[""Wisteria Lumber"", 2], [""Gold Sheet"", 1], [""Shortbow"", 1], [""Bamboo Stick"", 1], [""Urushi"", 1]]","[[""Shigeto Bow +1"", 1], null, null]"
+,95,[],Bewitched Togi,Wind,,"[[""Cursed Togi -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Togi"", 1], null, null]"
+,96,[],Cursed Kote,Wind,,"[[""Animal Glue"", 1], [""Urushi"", 1], [""Ancient Lumber"", 1], [""Divine Lumber"", 1], [""Kote"", 1]]","[[""Cursed Kote -1"", 1], null, null]"
+,96,[],Lacquer Tree Sap,Water,,"[[""Lacquer Tree Log"", 1]]","[[""Lacquer Tree Sap"", 6], [""Lacquer Tree Sap"", 8], [""Lacquer Tree Sap"", 10]]"
+,96,"[[""Goldsmithing"", 23]]",Star Globe,Wind,,"[[""Rosewood Lumber"", 1], [""Garnet"", 1], [""Gold Thread"", 1], [""Animal Glue"", 1], [""Bast Parchment"", 2], [""Wisteria Lumber"", 1], [""Lacquer Tree Lumber"", 1]]","[null, null, null]"
+,96,"[[""Smithing"", 35]]",Cartonnier,Earth,,"[[""Iron Sheet"", 2], [""Mahogany Lumber"", 3], [""Bloodwood Lumber"", 1], [""Cassia Lumber"", 2]]","[null, null, null]"
+,96,[],Chanar Xyston,Fire,,"[[""Midrium Ingot"", 2], [""Urunday Lumber"", 2]]","[[""Chanar Xyston +1"", 1], null, null]"
+,96,"[[""Bonecraft"", 41]]",Ahkormaar Bow,Wind,,"[[""Grass Cloth"", 1], [""Coeurl Whisker"", 1], [""Urunday Lumber"", 2], [""Chapuli Horn"", 1]]","[[""Ahkormaar Bow +1"", 1], null, null]"
+,96,[],Malayo Crossbow,Earth,,"[[""Durium Ingot"", 1], [""Giant Femur"", 1], [""Carbon Fiber"", 1], [""Urunday Lumber"", 2]]","[[""Malayo Crossbow +1"", 1], null, null]"
+,96,[],Marbled Drawers,Earth,,"[[""Walnut Lumber"", 3], [""Gold Ingot"", 1], [""Tufa"", 3]]","[null, null, null]"
+,97,[],Cursed Kabuto,Earth,,"[[""Animal Glue"", 1], [""Urushi"", 1], [""Ancient Lumber"", 1], [""Divine Lumber"", 1], [""Zunari Kabuto"", 1]]","[[""Cursed Kabuto -1"", 1], null, null]"
+,97,[],Divine Sap,Water,,"[[""Divine Log"", 1]]","[[""Divine Sap"", 8], [""Divine Sap"", 10], [""Divine Sap"", 12]]"
+,97,"[[""Bonecraft"", 55]]",Cerberus Bow,Wind,,"[[""Bloodwood Lumber"", 2], [""Coeurl Whisker"", 1], [""Cerberus Claw"", 1], [""Karakul Cloth"", 1]]","[[""Cerberus Bow +1"", 1], null, null]"
+,97,[],Kapor Lumber,Wind,,"[[""Kapor Log"", 1]]","[[""Kapor Lumber"", 2], [""Kapor Lumber"", 3], [""Kapor Lumber"", 4]]"
+,97,[],Kapor Lumber,Wind,Lumberjack,"[[""Kapor Log"", 3], [""Bundling Twine"", 1]]","[[""Kapor Lumber"", 6], [""Kapor Lumber"", 9], [""Kapor Lumber"", 12]]"
+,98,[],Cythara Anglica,Earth,,"[[""Ebony Lumber"", 2], [""Coeurl Whisker"", 1], [""Ancient Lumber"", 2]]","[[""Cythara Anglica +1"", 1], null, null]"
+,98,"[[""Goldsmithing"", 10]]",Royal Bookshelf,Earth,,"[[""Brass Ingot"", 1], [""Mahogany Lumber"", 3], [""Ebony Lumber"", 2], [""Lacquer Tree Lumber"", 2]]","[null, null, null]"
+,98,"[[""Goldsmithing"", 58]]",Wardrobe,Earth,,"[[""Walnut Lumber"", 4], [""Glass Sheet"", 1], [""Aht Urhgan Brass Ingot"", 1], [""Aht Urhgan Brass Sheet"", 2]]","[null, null, null]"
+,99,"[[""Leathercraft"", 41]]",Cursed Togi,Wind,,"[[""Animal Glue"", 1], [""Tiger Leather"", 1], [""Urushi"", 1], [""Ancient Lumber"", 2], [""Divine Lumber"", 2], [""Hara-Ate"", 1]]","[[""Cursed Togi -1"", 1], null, null]"
+,99,[],Lancewood Lumber,Wind,,"[[""Lancewood Log"", 1]]","[[""Lancewood Lumber"", 2], [""Lancewood Lumber"", 3], [""Lancewood Lumber"", 4]]"
+,99,[],Lancewood Lumber,Wind,Lumberjack,"[[""Bundling Twine"", 1], [""Lancewood Log"", 3]]","[[""Lancewood Lumber"", 6], [""Lancewood Lumber"", 9], [""Lancewood Lumber"", 12]]"
+,99,"[[""Smithing"", 47], [""Goldsmithing"", 53]]",Primate Staff,Wind,,"[[""Darksteel Ingot"", 1], [""Gold Ingot"", 1], [""Yellow Rock"", 2], [""Mercury"", 1], [""Cassia Lumber"", 2], [""Vermilion Lacquer"", 1]]","[[""Primate Staff +1"", 1], null, null]"
+,100,"[[""Smithing"", 60], [""Goldsmithing"", 60]]",Orichalcum Lance,Fire,,"[[""Darksteel Ingot"", 1], [""Ash Lumber"", 2], [""Orichalcum Ingot"", 1], [""Ruby"", 1]]","[[""Triton's Lance"", 1], null, null]"
+,100,"[[""Smithing"", 60], [""Goldsmithing"", 57]]",Ox Tongue,Wind,,"[[""Aquamarine"", 1], [""Adaman Ingot"", 1], [""Ash Lumber"", 1], [""Gold Ingot"", 1], [""Gold Thread"", 1]]","[[""Ox Tongue +1"", 1], null, null]"
+,100,"[[""Bonecraft"", 60], [""Smithing"", 51]]",Staurobow,Wind,,"[[""Darksteel Ingot"", 1], [""Mahogany Lumber"", 1], [""Ebony Lumber"", 1], [""Rattan Lumber"", 1], [""Carbon Fiber"", 1], [""Flauros Whisker"", 1], [""Unicorn Horn"", 1]]","[[""Staurobow +1"", 1], null, null]"
+,100,"[[""Clothcraft"", 60]]",Lanner Bow,Wind,,"[[""Ancient Lumber"", 1], [""Lancewood Lumber"", 1], [""Karakul Cloth"", 1], [""Wyrdstrand"", 1]]","[[""Lanner Bow +1"", 1], null, null]"
+,100,[],Vejovis Wand,Wind,,"[[""Kapor Lumber"", 1], [""Black Chocobo Feather"", 1]]","[[""Vejovis Wand +1"", 1], null, null]"
+,102,"[[""Alchemy"", 21]]",Kinkobo,Wind,,"[[""Ethereal Vermilion Lacquer"", 1], [""Primate Staff"", 1]]","[null, null, null]"
+,102,"[[""Smithing"", 60], [""Goldsmithing"", 52]]",Mezraq,Wind,,"[[""Imperial Wootz Ingot"", 2], [""Bloodwood Lumber"", 1], [""Platinum Ingot"", 1], [""Wamoura Silk"", 1]]","[[""Mezraq +1"", 1], null, null]"
+,102,"[[""Smithing"", 60], [""Goldsmithing"", 48]]",Dabo,Fire,,"[[""Darksteel Ingot"", 1], [""Ash Lumber"", 2], [""Scintillant Ingot"", 1], [""Dark Ixion Tail"", 1], [""Dk. Ixion Ferrule"", 1]]","[[""Dabo +1"", 1], null, null]"
+,102,[],Arasy Lance,Fire,,"[[""Ruby"", 1], [""Rhodium Ingot"", 1], [""Guatambu Lumber"", 1]]","[[""Arasy Lance +1"", 1], null, null]"
+,102,[],Arasy Bow,Wind,,"[[""Carbon Fiber"", 1], [""Glass Fiber"", 1], [""Guatambu Lumber"", 1], [""Akaso Cloth"", 1]]","[[""Arasy Bow +1"", 1], null, null]"
+,102,"[[""Bonecraft"", 50]]",Arasy Staff,Wind,,"[[""Guatambu Lumber"", 1], [""Raaz Tusk"", 1]]","[[""Arasy Staff +1"", 1], null, null]"
+,102,"[[""Smithing"", 60]]",Iron-splitter,Wind,,"[[""Walnut Lumber"", 2], [""Adaman Ingot"", 1]]","[[""Iron-splitter +1"", 1], null, null]"
+,103,"[[""Smithing"", 60], [""Goldsmithing"", 30]]",Rosschinder,Earth,,"[[""Adaman Ingot"", 1], [""Ash Lumber"", 1], [""Thokcha Ingot"", 1], [""Larimar"", 1], [""Wyrdstrand"", 1], [""Paralyze Potion"", 1]]","[[""Rosschinder +1"", 1], null, null]"
+,103,[],Jacaranda Lumber,Wind,,"[[""Jacaranda Log"", 1]]","[[""Jacaranda Lumber"", 2], [""Jacaranda Lumber"", 3], [""Jacaranda Lumber"", 4]]"
+,103,[],Jacaranda Lumber,Wind,Lumberjack,"[[""Jacaranda Log"", 3], [""Bundling Twine"", 1]]","[[""Jacaranda Lumber"", 6], [""Jacaranda Lumber"", 9], [""Jacaranda Lumber"", 12]]"
+,104,"[[""Clothcraft"", 60], [""Goldsmithing"", 60]]",Winged Altar,Fire,,"[[""Mythril Ingot"", 1], [""Platinum Ingot"", 1], [""Orichalcum Ingot"", 1], [""Ruby"", 1], [""Gold Brocade"", 1], [""Teak Lumber"", 1], [""Jacaranda Lumber"", 2]]","[null, null, null]"
+,104,[],Guatambu Lumber,Wind,,"[[""Guatambu Log"", 1]]","[[""Guatambu Lumber"", 2], [""Guatambu Lumber"", 3], [""Guatambu Lumber"", 4]]"
+,104,[],Guatambu Lumber,Wind,Lumberjack,"[[""Guatambu Log"", 3], [""Bundling Twine"", 1]]","[[""Guatambu Lumber"", 6], [""Guatambu Lumber"", 9], [""Guatambu Lumber"", 12]]"
+,105,[],Animator P,Earth,,"[[""Divine Lumber"", 1], [""Exalted Lumber"", 2], [""Vulcanite Ore"", 1], [""Animator Z"", 1]]","[[""Animator P +1"", 1], null, null]"
+,105,[],Animator P II,Earth,,"[[""Divine Lumber"", 1], [""Glass Fiber"", 1], [""Exalted Lumber"", 2], [""Vulcanite Ore"", 1], [""Animator Z"", 1]]","[[""Animator P II +1"", 1], null, null]"
+,105,"[[""Goldsmithing"", 46]]",Nurigomeyumi,Earth,,"[[""Bamboo Stick"", 1], [""Palladian Brass Sheet"", 1], [""Wisteria Lumber"", 2], [""Urushi"", 1], [""Gendawa"", 1]]","[[""Nurigomeyumi +1"", 1], null, null]"
+,105,[],Exalted Lumber,Wind,,"[[""Exalted Log"", 1]]","[[""Exalted Lumber"", 2], [""Exalted Lumber"", 3], [""Exalted Lumber"", 4]]"
+,105,[],Exalted Lumber,Wind,Lumberjack,"[[""Exalted Log"", 3], [""Bundling Twine"", 1]]","[[""Exalted Lumber"", 6], [""Exalted Lumber"", 9], [""Exalted Lumber"", 12]]"
+,105,[],Cypress Lumber,Wind,,"[[""Cypress Log"", 1]]","[[""Cypress Lumber"", 2], [""Cypress Lumber"", 3], [""Cypress Lumber"", 4]]"
+,105,[],Cypress Lumber,Wind,Lumberjack,"[[""Cypress Log"", 3], [""Bundling Twine"", 1]]","[[""Cypress Lumber"", 6], [""Cypress Lumber"", 9], [""Cypress Lumber"", 12]]"
+,105,[],Pristine Sap,Light,,"[[""Divine Sap"", 1], [""Holy Water"", 2]]","[[""Truly Pristine Sap"", 2], [""Truly Pristine Sap x4 Verification Needed"", 1], [""Truly Pristine Sap x8 Verification Needed"", 1]]"
+,105,[],Steel-splitter,Wind,,"[[""Steel Walnut Lumber"", 1], [""Iron-Splitter"", 1]]","[null, null, null]"
+,106,"[[""Smithing"", 60], [""Goldsmithing"", 60]]",Thalassocrat,Wind,,"[[""Adaman Ingot"", 2], [""Scintillant Ingot"", 1], [""Wamoura Silk"", 1], [""Jacaranda Lumber"", 1]]","[[""Thalassocrat +1"", 1], null, null]"
+,106,"[[""Goldsmithing"", 32]]",Isula Sideboard,Earth,,"[[""Gold Ingot"", 1], [""Jacaranda Lumber"", 5]]","[null, null, null]"
+,106,[],Exalted Bow,Wind,,"[[""Akaso Thread"", 1], [""Akaso Cloth"", 1], [""Exalted Lumber"", 2]]","[[""Exalted Bow +1"", 1], null, null]"
+,106,[],Exalted Crossbow,Wind,,"[[""Akaso Thread"", 1], [""Bismuth Ingot"", 1], [""Exalted Lumber"", 1]]","[[""Exalted Crossbow +1"", 1], null, null]"
+,106,[],Exalted Spear,Wind,,"[[""Akaso Thread"", 1], [""Exalted Lumber"", 1], [""Ra'Kaznar Ingot"", 1]]","[[""Exalted Spear +1"", 1], null, null]"
+,106,[],Exalted Staff,Wind,,"[[""Exalted Lumber"", 2]]","[[""Exalted Staff +1"", 1], null, null]"
+,106,[],Zestful Sap,Lightning,,"[[""Maple Sugar"", 3], [""Urunday Log"", 1]]","[[""Gassy Sap xInformation Needed"", 1], null, null]"
+,108,"[[""Goldsmithing"", 50]]",Flete Pole,Wind,,"[[""Kapor Lumber"", 2], [""Scintillant Ingot"", 1]]","[[""Flete Pole +1"", 1], null, null]"
+,109,[],Zamzummim Staff,Wind,,"[[""Ruby"", 1], [""Jacaranda Lumber"", 2], [""Daimonic Mandible"", 1]]","[[""Melisseus Staff"", 1], null, null]"
+,110,[],Planus Table,Earth,,"[[""Gold Ingot"", 1], [""Silk Cloth"", 2], [""Siren's Macrame"", 1], [""Lancewood Lumber"", 3], [""Bloodthread"", 1]]","[null, null, null]"
+,110,[],Nathushne,Earth,,"[[""Kidney Stone"", 1], [""Belladonna Sap"", 1], [""Healing Staff"", 1]]","[[""Nathushne +1"", 1], null, null]"
+,110,[],Terebrokath,Fire,,"[[""Damascus Ingot"", 2], [""Gold Ingot"", 1], [""Mercury"", 1], [""Yggdreant Bole"", 1]]","[[""Terebrokath +1"", 1], null, null]"
+,110,[],Iqonde Crossbow,Wind,,"[[""Damascus Ingot"", 1], [""Ebony Lumber"", 1], [""Carbon Fiber"", 1], [""Craklaw Pincer"", 1], [""Yggdreant Bole"", 1]]","[[""Iqonde Crossbow +1"", 1], null, null]"
+,110,"[[""Clothcraft"", 55]]",Abyssal Beads,Light,,"[[""Waktza Crest"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Bead Necklace"", 1]]","[[""Abyssal Beads +1"", 1], [""Abyssal Beads +2"", 1], null]"
+,110,"[[""Clothcraft"", 55]]",Knight's Beads,Light,,"[[""Waktza Crest"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Bead Necklace"", 1]]","[[""Knight's Beads +1"", 1], [""Knight's Beads +2"", 1], null]"
+,110,"[[""Clothcraft"", 55]]",Warrior's Beads,Light,,"[[""Waktza Crest"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Bead Necklace"", 1]]","[[""Warrior's Beads +1"", 1], [""Warrior's Beads +2"", 1], null]"
+,111,"[[""Smithing"", 70]]",Bewitched Sune-Ate,Wind,,"[[""Cursed Sune-Ate"", 1], [""Yggdreant Bole"", 1], [""Specter's Ore"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Sune-Ate"", 1], null, null]"
+,111,[],Scout's Crossbow,Light,Carpenter's aurum tome,"[[""Bonecraft - (Information Needed)"", 1], [""Macuil Plating"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Crossbow"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Arke Crossbow"", 1], [""Sharanga"", 1], null]"
+,111,[],Sorcerer's Staff,Light,Carpenter's aurum tome,"[[""Clothcraft - (Information Needed)"", 1], [""Plovid Effluvium"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Staff"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Archmage's Staff"", 1], [""Kaumodaki"", 1], null]"
+,111,[],Argute Staff,Light,Carpenter's aurum tome,"[[""Clothcraft - (Information Needed)"", 1], [""Plovid Effluvium"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Staff"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Pedagogy Staff"", 1], [""Musa"", 1], null]"
+,111,[],Summoner's Staff,Light,Carpenter's aurum tome,"[[""Clothcraft - (Information Needed)"", 1], [""Plovid Effluvium"", 1], [""Dark Matter"", 1], [""Khoma Thread"", 1], [""Moldy Staff"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Glyphic Staff"", 1], [""Draumstafir"", 1], null]"
+,112,"[[""Smithing"", 70]]",Bewitched Kote,Wind,,"[[""Cursed Kote"", 1], [""Yggdreant Bole"", 1], [""Specter's Ore"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Kote"", 1], null, null]"
+,113,[],Balsam Staff,Wind,,"[[""Tanzanite Jewel"", 1], [""Urunday Lumber"", 1], [""Rockfin Tooth"", 1]]","[[""Astralwatcher"", 1], null, null]"
+,113,[],Echidna's Bow,Wind,,"[[""Bloodwood Lumber"", 2], [""Damascene Cloth"", 1], [""Simian Mane"", 1], [""Gabbrath Horn"", 1]]","[[""Echidna's Bow +1"", 1], null, null]"
+,113,[],Atinian Staff,Wind,,"[[""Belladonna Sap"", 1], [""Urunday Lumber"", 1], [""Gabbrath Horn"", 1]]","[[""Atinian Staff +1"", 1], null, null]"
+,113,"[[""Smithing"", 70]]",Bewitched Haidate,Earth,,"[[""Cursed Haidate"", 1], [""Yggdreant Bole"", 1], [""Specter's Ore"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Haidate"", 1], null, null]"
+,114,"[[""Smithing"", 70]]",Bewitched Kabuto,Earth,,"[[""Cursed Kabuto"", 1], [""Yggdreant Bole"", 1], [""Specter's Ore"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Kabuto"", 1], null, null]"
+,115,"[[""Smithing"", 70]]",Bewitched Togi,Wind,,"[[""Cursed Togi"", 1], [""Yggdreant Bole"", 1], [""Specter's Ore"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Togi"", 1], null, null]"
+,115,[],Was,Earth,,"[[""Moonbow Cloth"", 1], [""Moonbow Urushi"", 1], [""Khoma Cloth"", 1], [""Astral Signa"", 1]]","[[""Was +1"", 1], null, null]"
+,115,[],Ames,Earth,,"[[""Moonbow Urushi"", 1], [""Moonbow Stone"", 1], [""Ruthenium Ingot"", 1], [""Mistilteinn"", 1]]","[[""Ames +1"", 1], null, null]"
+,115,[],Kendatsuba Sune-Ate,Earth,Carpenter's argentum tome,"[[""Rainbow Thread"", 1], [""Cehuetzi Pelt"", 1], [""Defiant Sweat"", 1], [""Cypress Lumber"", 2]]","[[""Kendatsuba Sune-Ate +1"", 1], null, null]"
+,115,[],Oshosi Leggings,Earth,Carpenter's argentum tome,"[[""Gold Sheet"", 1], [""Waktza Crest"", 1], [""Plovid Flesh"", 1], [""Cypress Lumber"", 2]]","[[""Oshosi Leggings +1"", 1], null, null]"
+,115,[],Kendatsuba Tekko,Earth,Carpenter's argentum tome,"[[""Rainbow Thread"", 2], [""Cehuetzi Pelt"", 1], [""Defiant Sweat"", 1], [""Cypress Lumber"", 2]]","[[""Kendatsuba Tekko +1"", 1], null, null]"
+,115,[],Oshosi Gloves,Earth,Carpenter's argentum tome,"[[""Gold Sheet"", 2], [""Waktza Crest"", 1], [""Plovid Flesh"", 1], [""Cypress Lumber"", 2]]","[[""Oshosi Gloves +1"", 1], null, null]"
+,115,[],Kendatsuba Jinpachi,Earth,Carpenter's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Cehuetzi Pelt"", 1], [""Defiant Sweat"", 1], [""Cypress Lumber"", 2]]","[[""Kendatsuba Jinpachi +1"", 1], null, null]"
+,115,[],Oshosi Mask,Earth,Carpenter's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Waktza Crest"", 1], [""Plovid Flesh"", 1], [""Cypress Lumber"", 2]]","[[""Oshosi Mask +1"", 1], null, null]"
+,115,[],Kendatsuba Hakama,Earth,Carpenter's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Cehuetzi Pelt"", 1], [""Defiant Sweat"", 1], [""Cypress Lumber"", 3]]","[[""Kendatsuba Hakama +1"", 1], null, null]"
+,115,[],Oshosi Trousers,Earth,Carpenter's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Waktza Crest"", 1], [""Plovid Flesh"", 1], [""Cypress Lumber"", 3]]","[[""Oshosi Trousers +1"", 1], null, null]"
+,115,[],Kendatsuba Samue,Earth,Carpenter's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Cehuetzi Pelt"", 1], [""Defiant Sweat"", 2], [""Cypress Lumber"", 3]]","[[""Kendatsuba Samue +1"", 1], null, null]"
+,115,[],Oshosi Vest,Earth,Carpenter's argentum tome,"[[""Gold Sheet"", 1], [""Gold Chain"", 1], [""Waktza Crest"", 1], [""Plovid Flesh"", 2], [""Cypress Lumber"", 3]]","[[""Oshosi Vest +1"", 1], null, null]"
+,115,[],Raetic Bow,Fire,Carpenter's argentum tome,"[[""Cypress Lumber"", 3], [""Rune Bow"", 1]]","[[""Raetic Bow +1"", 1], null, null]"
+,115,[],Raetic Halberd,Fire,Carpenter's argentum tome,"[[""Cypress Lumber"", 3], [""Rune Halberd"", 1]]","[[""Raetic Halberd +1"", 1], null, null]"
+,115,[],Raetic Staff,Fire,Carpenter's argentum tome,"[[""Cypress Lumber"", 3], [""Rune Staff"", 1]]","[[""Raetic Staff +1"", 1], null, null]"
+,115,[],Raetic Arrow xVerification Needed,Fire,Carpenter's argentum tome,"[[""Cypress Lumber"", 1], [""Niobium Ore"", 1], [""Rune Arrow"", 3]]","[[""Raetic Arrow xVerification Needed"", 1], null, null]"
diff --git a/datasets/desythesis_recipes.csv b/datasets/desythesis_recipes.csv
new file mode 100644
index 0000000..6c11249
--- /dev/null
+++ b/datasets/desythesis_recipes.csv
@@ -0,0 +1,239 @@
+Alchemy
+Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap
+Distilled Water x3,Lightning,Tahrongi Cactus,Distilled Water x6,Distilled Water x9,Distilled Water x12,2
+Bronze Ingot x2,Lightning,Bee Spatha,Bronze Ingot x3,Beeswax x2,Lizard Skin x2,14
+Poison Dust x2,Fire,Gigas Socks,Poison Dust x4,Poison Dust x6,Poison Dust x8,15
+Glass Fiber x2,Lightning,Goblin Mask,Glass Fiber x4,Glass Fiber x6,Glass Fiber x8,21
+Glass Fiber x3,Lightning,Tonberry Lantern,Glass Fiber x6,Glass Fiber x9,Glass Fiber x12,23
+Olive Oil x3,Water,Tonberry Lantern,Toad Oil x2,Slime Oil,Slime Oil,24
+Glass Fiber x2,Lightning,Moblin Mask,Glass Fiber x4,Glass Fiber x6,Glass Fiber x8,29
+Copper Ingot,Lightning,Minnow,Copper Ingot,Glass Fiber,Glass Fiber,31
+Ash Lumber,Lightning,Blind Knife,Animal Glue,Bronze Ingot,Blinding Potion,34
+Holy Water,Lightning,Holy Mace,Oak Lumber,Mythril Nugget x10,Mythril Ingot x2,51
+Carbon Fiber,Lightning,Carbon Fishing Rod,Carbon Fiber x2,Carbon Fiber x3,Carbon Fiber x4,53
+Venom Dust,Lightning,Monke-Onke,Venom Dust x4,,,62
+Glass Fiber x4,Lightning,Bugbear Mask,Glass Fiber x6,Glass Fiber x8,Glass Fiber x10,62
+Beetle Jaw,Lightning,Cermet Claws,,,,63
+Cermet Chunk,Lightning,Composite Fishing Rod,Cermet Chunk x2,Glass Fiber,Carbon Fiber,89
+Cermet Chunk x2,Lightning,Espadon,Cermet Chunk x3,Coeurl Leather,,90
+Paralyze Potion,Lightning,Mamushito,Elm Lumber,Iron Nugget x6,Tama-Hagane,91
+Smithing
+Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap
+Bronze Ingot,Lightning,Bronze Cap,Sheep Leather,Bronze Ingot,Sheep Leather x2,4
+Bronze Ingot,Lightning,Bronze Mittens,Bronze Ingot,Sheep Leather,,5
+Bronze Ingot,Lightning,Bronze Sword,Bronze Ingot x2,Sheep Leather,,6
+Bronze Ingot,Lightning,Bronze Leggings,Bronze Ingot x2,Sheep Leather,Sheep Leather x2,7
+Bronze Ingot,Lightning,Xiphos,Bronze Ingot,Giant Femur,,8
+Grass Thread x3,Lightning,Bronze Zaghnal,Ash Lumber,Bronze Ingot,Bronze Ingot x2,8
+Bronze Ingot,Lightning,Bronze Subligar,Grass Thread x3,Sheep Leather,,9
+Bronze Ingot,Lightning,Bronze Mace,Bronze Ingot,Bronze Ingot x2,Bronze Ingot x3,10
+Bronze Ingot x2,Lightning,Scale Finger Gauntlets,Cotton Thread,Grass Thread x3,Sheep Leather x2,11
+Bronze Ingot,Lightning,Bronze Rod,Bronze Ingot,Bronze Ingot x2,Copper Ingot,12
+Lauan Lumber,Lightning,Light Axe,Bronze Ingot,Bronze Ingot x2,Tourmaline,16
+Ash Lumber,Lightning,Aspis,Bronze Ingot,Bronze Ingot x2,Bronze Ingot x3,18
+Bronze Ingot x3,Lightning,Goblin Mail,Iron Ingot x2,Steel Ingot,Steel Ingot,19
+Bronze Ingot,Lightning,Goblin Helm,Iron Ingot,Steel Ingot,Steel Ingot,19
+Bronze Sheet,Wind,Goblin Helm,Iron Sheet,Steel Ingot,Steel Ingot,20
+Bronze Sheet x3,Wind,Goblin Mail,Iron Sheet,,,21
+Brass Ingot,Lightning,Scimitar,Brass Ingot,Steel Ingot,Steel Ingot x2,24
+Lizard Skin,Lightning,Iron Sword,Iron Ingot,Iron Ingot x2,,25
+Bronze Ingot,Lightning,Spatha,Bronze Ingot x2,Bronze Ingot x3,Lizard Skin,25
+Iron Ingot x2,Lightning,Longsword,,,,27
+Lizard Skin,Lightning,Kunai,Lizard Skin,Steel Ingot,,29
+Brass Ingot,Lightning,Iron Mask,Brass Ingot,Iron Ingot,,29
+Ram Leather,Lightning,Chain Mittens,Ram Leather x2,Iron Ingot x3,,31
+Ash Lumber,Lightning,Claymore,Lizard Skin,Iron Ingot x3,Steel Ingot x4,32
+Sheep Leather,Lightning,Iron Cuisses,,,,35
+Lizard Skin,Lightning,Wakizashi,Elm Lumber,Iron Ingot,Tama-Hagane,36
+Lizard Skin,Lightning,Padded Cap,Lizard Skin x2,Iron Ingot,,38
+Ash Lumber,Lightning,War Pick,Ash Lumber,Steel Ingot,,38
+Mythril Ingot,Lightning,Mythril Kukri,,,,42
+Bronze Ingot,Lightning,Musketoon,Bronze Ingot,?,,43
+Oak Lumber,Lightning,Maul,,,,46
+Bronze Ingot,Lightning,Quadav Helm,Iron Ingot,Steel Ingot,Darksteel Ingot,49
+Steel Ingot,Lightning,Arquebus,,,,50
+Bronze Sheet,Wind,Tonberry Lantern,Bronze Sheet,Glass Fiber x9,Glass Fiber x12,51
+Animal Glue,Lightning,Corrosive Claws,Bronze Ingot,,,51
+Bronze Ingot,Lightning,Quadav Backplate,Iron Ingot,Iron Ingot,Darksteel Ingot,51
+Bronze Sheet,Wind,Quadav Helm,Iron Sheet,Steel Sheet,Darksteel Sheet,51
+Bronze Sheet,Wind,Quadav Backplate,Iron Sheet,Iron Sheet,Darksteel Sheet,53
+Mythril Nugget x4,Lightning,Darksteel Baselard,,,,63
+Bronze Ingot x2,Lightning,Antican Pauldron,Darksteel Ingot,,,78
+Bronze Sheet x2,Wind,Antican Pauldron,Darksteel Sheet,,,78
+Bronze Ingot,Lightning,Cougar Baghnakhs,,,,?
+Bronze Ingot,Lightning,Royal Archer's Sword,,,,?
+Bronze Ingot,Lightning,Legionnaire's Knuckles,Bronze Ingot,,,?
+Bronze Ingot,Lightning,Goblin Cup,Bronze Ingot,,,?
+Silver Ingot,Lightning,Curtana,Mythril Nugget x6,Darksteel Ingot,,?
+Ram Horn,Lightning,Kaiser Sword,Chrysoberyl,Iron Ingot,Iron Ingot x2,?
+Grass Thread x3,Lightning,Plantreaper,Iron Ingot,Ash Lumber,,?
+Bonecraft
+Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap
+Seashell,Lightning,Shell Earring,Seashell,Seashell x2,,3
+Bone Chip,Lightning,Bone Hairpin,Bone Chip,,,4
+Rabbit Hide,Lightning,Cat Baghnakhs,Bronze Ingot,Bone Chip x2,Bone Chip x3,9
+Brass Ingot,Lightning,Cornette,Brass Ingot,Bone Chip,,14
+Flint Stone x4,Lightning,Gigas Necklace,Pearl x2,Black Pearl,,18
+Giant Femur,Lightning,Shell Shield,Giant Femur,Turtle Shell,,23
+Ash Lumber,Lightning,Bone Pick,Ash Lumber,Giant Femur,,23
+Beetle Jaw,Lightning,Beetle Ring,Beetle Jaw,,,25
+Beetle Shell,Lightning,Justaucorps,,,,26
+Ram Horn,Lightning,Horn Hairpin,Ram Horn,,,29
+Beetle Jaw,Lightning,Beetle Gorget,Beetle Jaw,Beetle Jaw x2,Beetle Shell,31
+Fish Scales,Lightning,Horn Ring,Ram Horn,,,36
+Bone Chip x2,Lightning,Bone Cudgel,,,,39
+Turtle Shell,Lightning,Shell Hairpin,,,,53
+Grass Thread,Lightning,Blood Stone,Fiend Blood,Giant Femur,,57
+Scorpion Shell,Lightning,Scorpion Ring,Scorpion Shell,,,60
+Fish Scales,Lightning,Demon's Ring,Fish Scales,Demon Horn,,70
+Linen Thread x2,Lightning,Coral Subligar,Coeurl Leather,Coral Fragment,,71
+Silver Ingot,Lightning,Coral Earring,Silver Ingot,Coral Fragment,,83
+Bronze Ingot,Lightning,Lynx Baghnakhs,Bone Chip x2,Bone Chip x3,Tiger Leather,?
+Goldsmithing
+Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap
+Copper Ingot,Lightning,Yagudo Necklace,,,,1
+Copper Ingot,Lightning,Copper Ring,Copper Ingot,Copper Ingot x2,,5
+Copper Ingot,Lightning,Copper Hairpin,Copper Ingot,,,7
+Copper Ingot,Lightning,Circlet,Brass Ingot,,,9
+Bronze Ingot,Lightning,Brass Cap,Brass Ingot,Sheep Leather,Sheep Leather x2,10
+Brass Ingot,Lightning,Brass Mittens,Sheep Leather,Bronze Ingot,,12
+Ash Lumber,Lightning,Brass Axe,,,,12
+Bronze Ingot,Lightning,Brass Leggings,Brass Ingot,Sheep Leather,Sheep Leather x2,14
+Brass Ingot,Lightning,Brass Ring,Brass Ingot,Brass Ingot x2,,15
+Grass Thread x3,Lightning,Brass Subligar,Sheep Leather,Bronze Ingot,Brass Ingot,16
+Brass Ingot,Lightning,Brass Hairpin,Brass Ingot,,,17
+Silver Ingot,Lightning,Silver Earring,Silver Ingot,Silver Ingot x2,,22
+Bronze Ingot,Lightning,Bronze Rod,Bronze Ingot,Bronze Ingot x2,Copper Ingot,23
+Tourmaline,Lightning,Tourmaline Earring,Tourmaline,Silver Ingot,Silver Ingot x2,25
+Amber,Lightning,Amber Earring,Amber,Silver Ingot,Silver Ingot x2,25
+Silver Ingot,Lightning,Silver Hairpin,Silver Ingot,,,27
+Bronze Ingot,Lightning,Heat Rod,Iron Ingot,Iron Ingot x2,Amethyst,31
+Silver Ingot,Lightning,Silver Ring,Silver Ingot,Silver Ingot x2,,32
+Onyx,Lightning,Onyx Ring,Onyx,Silver Ingot,Silver Ingot x2,35
+Clear Topaz,Lightning,Clear Ring,Clear Topaz,Silver Ingot,Silver Ingot x2,35
+Pearl,Lightning,Pearl Earring,Pearl,Mythril Ingot,Mythril Ingot x2,45
+Mythril Ingot,Lightning,Mythril Ring,Mythril Ingot,Mythril Ingot x2,,47
+Silver Ingot,Lightning,Silver Bangles,Silver Ingot,Silver Ingot x2,Silver Ingot x3,49
+Mythril Ingot,Lightning,Buckler,,,,49
+Gold Ingot,Lightning,Gold Orcmask,,,,52
+Iron Ingot,Lightning,Mythril Degen,Iron Ingot x2,Mythril Ingot,Mythril Ingot x2,52
+Gold Ingot,Lightning,Gold Hairpin,Gold Ingot,58
+Iron Ingot,Lightning,Gold Buckler,Holly Lumber,Mercury,Gold Ingot,80
+Silver Ingot,Lightning,Electrum Ring,Silver Ingot Gold Ingot,,,?
+Mythril Nugget x6,Lightning,Mythril Dagger,,,,?
+Brass Ingot,Lightning,Bastokan Leggings,,,,?
+Bronze Ingot,Lightning,Legionnaire's Harness,Sheep Leather x2,?
+Copper Ingot,Lightning,Compound Eye Circlet,Copper Ingot,Hecteyes Eye,Mythril Ingot,?
+Copper Ingot,Lightning,Onion Dagger,Copper Ingot x2,,,?
+Silver Chain,Wind,Corse Bracelet,Amber,Sphene,Chrysoberyl,?
+Leathercraft
+Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap
+Sheep Leather,Wind,Goblin Mask,Sheep Leather,Sheep Leather x2,Sheep Leather x?,2
+Ash Lumber,Lightning,Cesti,Sheep Leather,Sheep Leather x2,Sheep Leather x?,3
+Sheep Leather,Lightning,Leather Bandana,,,,5
+Bronze Ingot,Lightning,Leather Highboots,Sheep Leather,Sheep Leather x2,Sheep Leather x3,6
+Grass Thread,Lightning,Rabbit Mantle,Rabbit Hide x3,Rabbit Hide x4,Rabbit Hide x5,7
+Sheep Leather,Lightning,Leather Gloves,Grass Thread x2,Grass Thread x3,Sheep Leather x2,8
+Grass Thread x5,Lightning,Leather Trousers,Grass Thread x6,Sheep Leather x6,Sheep Leather x2,8
+Sheep Leather,Lightning,Leather Vest,Sheep Leather x2,Sheep Leather x3,Lizard Skin,9
+Sheep Leather,Lightning,Solea,Sheep Leather,Sheep Leather x2,Sheep Leather x2,11
+Sheep Leather,Lightning,Leather Belt,Sheep Leather,Iron Ingot,Iron Ingot x2,13
+Sheep Leather,Lightning,Lizard Helm,Lizard Skin,Sheep Leather x2,Sheep Leather x?,15
+Grass Thread x3,Lightning,Lizard Gloves,Sheep Leather,Lizard Skin x2,Lizard Skin x?,16
+Ash Lumber,Lightning,Lizard Cesti,Lizard Skin,Lizard Skin x2,,17
+Dhalmel Leather,Lightning,Leather Ring,,,,22
+Dhalmel Hide,Lightning,Dhalmel Mantle,Wool Thread,,,24
+Sheep Leather,Lightning,Studded Bandana,Iron Ingot,Iron Ingot x2,Iron Ingot x?,24
+Dhalmel Leather,Lightning,Studded Boots,Iron Ingot,,,28
+Sheep Leather,Lightning,Sandals,Dhalmel Leather,,,29
+Sheep Leather,Wind,Moblin Mask,,,,31
+Ram Leather x3,Wind,Bugbear Mask,,,,35
+Sheep Leather,Wind,Goblin Armor,Ram Leather,Ram Leather x?,,36
+Grass Thread,Lightning,Leather Gorget,Ram Leather,Grass Thread,Grass Thread x?,37
+Cotton Thread,Lightning,Wolf Gorget,,,,39
+Grass Thread,Lightning,Raptor Mantle,Raptor Skin,Raptor Skin x2,,53
+Wool Thread,Lightning,Behemoth Mantle,Wool Thread,,,70
+Cotton Thread,Lightning,Coeurl Gorget,Cotton Thread,Coeurl Hide x2,,79
+Sheep Leather,Lightning,Coeurl Jerkin,Sheep Leather,Coeurl Leather,Coeurl Leather x2,89
+Sheep Leather,Lightning,Ogre Jerkin,Coeurl Leather x2,Manticore Leather,,90
+Tiger Hide,Lightning,Tiger Mask,Wool Thread,Ram Leather x2,Wyvern Skin,95
+Wool Thread,Lightning,Panther Mask,Ram Leather,High-Quality Coeurl Hide,Wyvern Skin,102
+Clothcraft
+Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap
+Grass Thread x3,Wind,Yagudo Necklace,Grass Thread x6,Grass Thread x9,Grass Thread x12,1
+Grass Thread x4,Lightning,Headgear,Grass Thread x5,Grass Thread x6,Grass Thread x7,5
+Grass Thread x8,Lightning,Gaiters,Grass Thread x9,Cotton Thread,,6
+Grass Thread x6,Lightning,Gloves,Grass Thread x7,Saruta Cotton,Saruta Cotton x2,6
+Grass Thread x4,Lightning,Cape,Grass Thread x5,Grass Thread x6,Grass Thread x7,8
+Lauan Lumber,Lightning,Tekko,Grass Thread x2,Grass Thread x5,Grass Thread x6,8
+Cotton Thread x2,Lightning,Goblin Armor,Cotton Thread x4,Cotton Thread x6,Cotton Thread x8,9
+Cotton Thread x2,Lightning,Antican Robe,Cotton Thread x4,Cotton Thread x6,Cotton Thread x8,9
+Cotton Cloth,Wind,Antican Robe,Cotton Cloth x2,Cotton Cloth x3,Cotton Cloth x4,10
+Grass Thread x10,Lightning,Doublet,Grass Thread x12,Saruta Cotton x2,Saruta Cotton x3,10
+Grass Thread x3,Lightning,Hachimaki,Grass Thread x4,Grass Thread x5,Grass Thread x6,10
+Grass Thread x2,Lightning,Mitts,Grass Thread x3,,,12
+Grass Thread x3,Lightning,Cuffs,Flint Stone x2,Cotton Thread x3,Cotton Thread x4,12
+Grass Thread x7,Lightning,Kyahan,Grass Thread x8,Grass Thread x9,Sheep Leather,14
+Grass Thread x2,Lightning,Slops,Grass Thread x3,Cotton Thread x3,Cotton Thread x4,14
+Cotton Thread x7,Lightning,Slacks,Cotton Thread x8,,,15
+Cotton Thread x4,Lightning,Cotton Headgear,Cotton Thread x5,Cotton Thread x6,Cotton Thread x7,15
+Grass Thread x5,Lightning,Robe,Grass Thread x7,Cotton Thread x5,Cotton Thread x6,16
+Grass Thread x6,Lightning,Sitabaki,Grass Thread x7,Cotton Thread x2,Cotton Thread x3,16
+Linen Thread x2,Lightning,Tonberry Coat,Linen Thread x4,Linen Thread x6,Linen Thread x8,17
+Cotton Thread x4,Lightning,Cotton Cape,Cotton Thread x5,Cotton Thread x6,Cotton Thread x7,18
+Grass Thread x7,Lightning,Kenpogi,Grass Thread x8,Grass Thread x9,Grass Thread x10,18
+Linen Thread,Lightning,Cotton Headband,Linen Thread x2,Linen Thread x3,Carbon Fiber,20
+Linen Cloth,Wind,Tonberry Coat,Linen Cloth x2,Linen Cloth x2,Linen Cloth x2,22
+Cotton Thread x3,Lightning,Linen Cuffs,Linen Thread x4,Sardonyx,Sardonyx x2,23
+Cotton Thread x7,Lightning,Cotton Kyahan,Cotton Thread x8,Cotton Thread x9,Linen Thread,24
+Lauan Lumber,Lightning,Cotton Tekko,Grass Thread,Cotton Thread x5,Cotton Thread x6,24
+Cotton Thread x2,Lightning,Linen Slops,Cotton Thread x3,Linen Thread x6,Linen Thread x7,25
+Grass Thread,Lightning,Heko Obi,Cotton Thread x4,Cotton Thread x5,Cotton Thread x6,27
+Grass Thread,Lightning,Cotton Dogi,Cotton Thread x7,Cotton Thread x8,Cotton Thread x9,28
+Bat Fang,Lightning,Fly Lure,Chocobo Feather,Animal Glue,,29
+Wool Thread x2,Lightning,Gigas Socks,Wool Thread x4,Wool Thread x6,Wool Thread x8,35
+Grass Thread x5,Lightning,Hemp Gorget,Grass Thread x6,Grass Thread x7,Grass Thread x8,43
+Saruta Cotton x2,Lightning,Wool Bracers,Wool Thread x5,Wool Thread x6,Wool Thread x7,46
+Silk Thread x2,Lightning,Black Cape,Silver Thread,Wool Thread x3,Wool Thread x4,54
+Silk Thread,Lightning,Green Ribbon,Silk Thread,Silk Thread x2,Silk Thread x3,62
+Silk Thread x4,Lightning,White Cape,Silk Thread x5,Silk Thread x6,Wool Thread,64
+Saruta Cotton,Lightning,White Mitts,Silk Thread x4,Wool Thread x2,Gold Thread,64
+Silver Thread,Lightning,Silk Hat,Silk Thread x6,,,65
+Silk Thread,Lightning,Silk Headband,Silk Thread x2,Silk Thread x3,Carbon Fiber,69
+Gold Thread,Lightning,Gold Obi,Gold Thread x2,,,70
+Black Ink,Lightning,Black Silk Neckerchief,Silk Thread x7,Silk Thread x8,Silk Thread x9,?
+Cotton Thread x2,Lightning,Moblin Armor,Cotton Thread x4,Cotton Thread x6,Cotton Thread x8,?
+Cotton Thread x4,Lightning,Corse Robe,Cotton Thread x6,Silk Thread,Gold Thread,?
+Velvet Cloth x2,Wind,Corse Robe,Velvet Cloth x3,,,?
+Wool Thread x4,Lightning,Wool Cuffs,?,?,?,?
+Saruta Cotton x2,Lightning,Linen Doublet,Saruta Cotton x3,Linen Cloth x2,?,?
+Woodworking
+Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap
+Parchment,Lightning,Flute,Parchment,Maple Lumber,Maple Lumber,1
+Lauan Lumber,Lightning,Lauan Shield,Lauan Lumber x2,,,7
+Ash Lumber,Lightning,Ash Pole,,,,8
+Ash Lumber,Lightning,Ash Staff,Bat Fang,,,9
+Ash Lumber,Lightning,Ash Club,,,,9
+Maple Lumber,Lightning,Maple Shield,Maple Lumber x2,,,11
+Ash Lumber,Lightning,Ash Clogs,Sheep Leather,Sheep Leather x?,,11
+Willow Lumber,Lightning,Willow Wand,HQ1:Willow Lumber,HQ2:Willow Lumber,HQ3:Insect Wing,14
+Bamboo Stick,Lightning,Bamboo Fishing Rod,,,,15
+Holly Lumber,Lightning,Holly Staff,,,,19
+Linen Thread,Lightning,Yew Fishing Rod,HQ1:Yew Lumber,HQ2:Linen Thread,,20
+Yew Lumber,Lightning,Yew Fishing Rod,HQ1:Linen Thread,HQ2:Yew Lumber,,20
+Parchment,Lightning,Piccolo,HQ1:Parchment,HQ2:Holly Lumber,,20
+Maple Lumber,Lightning,Maple Harp,HQ1:Coeurl Whisker x2,,,23
+Yagudo Feather,Lightning,Yew Wand,HQ1:Yew Lumber,,,23
+Chestnut Lumber,Lightning,Bouncer Club,,,,27
+Elm Lumber,Lightning,Elm Staff,HQ1:Ram Horn,,,31
+Elm Lumber,Lightning,Misery Staff,HQ1:Slime Oil,HQ2:Black Pearl,,31
+Chestnut Lumber,Lightning,Chestnut Wand,HQ1:Bird Feather,,,32
+Parchment,Lightning,Traversiere,HQ1:Oak Lumber,,,37
+Elm Lumber,Lightning,Elm Pole,,,,46
+Bronze Ingot,Lightning,Great Club,HQ1:Mahogany Lumber,,,54
+Silk Thread,Lightning,Tarutaru Fishing Rod,HQ1:Walnut Lumber,,,63
+Silk Thread,Lightning,Clothespole,HQ1:Mahogany Lumber,,,77
+Walnut Lumber,Lightning,Battle Staff,HQ1:Walnut Lumber x2,HQ2:Walnut Lumber x4,,85
+Rainbow Thread,Lightning,Mithran Fishing Rod,HQ1:Rattan Lumber,,,87
+Walnut Lumber,Lightning,Eight-Sided Pole,Walnut Lumber x2,Walnut Lumber x6,Mythril Nugget x6,94
+Holly Lumber,Lightning,Hypno Staff,Peridot,,,99
\ No newline at end of file
diff --git a/datasets/desythesis_recipes.csv.bak b/datasets/desythesis_recipes.csv.bak
new file mode 100644
index 0000000..855459f
--- /dev/null
+++ b/datasets/desythesis_recipes.csv.bak
@@ -0,0 +1,239 @@
+Alchemy
+Item,Crystal,Ingredients,HQ,Cap
+Distilled Water x3,Lightning,Tahrongi Cactus,HQ1: Distilled Water x6,HQ2: Distilled Water x9,HQ3: Distilled Waterx12,2
+Bronze Ingot x2,Lightning,Bee Spatha,HQ1: Bronze Ingot x3,HQ2: Beeswax x2,HQ3: Lizard Skin x2,14
+Poison Dust x2,Fire,Gigas Socks,HQ1: Poison Dust x4,HQ2: Poison Dust x6,HQ3: Poison Dust x8,15
+Glass Fiber x2,Lightning,Goblin Mask,HQ1: Glass Fiber x4,HQ2: Glass Fiber x6,HQ3: Glass Fiber x8,21
+Glass Fiber x3,Lightning,Tonberry Lantern,HQ1: Glass Fiber x6,HQ2: Glass Fiber x9,HQ3: Glass Fiber x12,23
+Olive Oil x3,Water,Tonberry Lantern,HQ1: Toad Oil x2,HQ2: Slime Oil,HQ3: Slime Oil,24
+Glass Fiber x2,Lightning,Moblin Mask,HQ1: Glass Fiber x4,HQ2: Glass Fiber x6,HQ3: Glass Fiber x8,29
+Copper Ingot,Lightning,Minnow,HQ1: Copper Ingot,HQ2: Glass Fiber,HQ3: Glass Fiber,31
+Ash Lumber,Lightning,Blind Knife,HQ1: Animal Glue,HQ2: Bronze Ingot,HQ3: Blinding Potion,34
+Holy Water,Lightning,Holy Mace,HQ1: Oak Lumber,HQ2: Mythril Nugget x10,HQ3: Mythril Ingot x2,51
+Carbon Fiber,Lightning,Carbon Fishing Rod,HQ1: Carbon Fiber x2,HQ2: Carbon Fiber x3,HQ3: Carbon Fiber x4,53
+Venom Dust,Lightning,Monke-Onke,HQ1: Venom Dust x4,62
+Glass Fiber x4,Lightning,Bugbear Mask,HQ1: Glass Fiber x6,HQ2: Glass Fiber x8,HQ3: Glass Fiber x10,62
+Beetle Jaw,Lightning,Cermet Claws,,63
+Cermet Chunk,Lightning,Composite Fishing Rod,HQ1: Cermet Chunk x2,HQ2: Glass Fiber,HQ3: Carbon Fiber,89
+Cermet Chunk x2,Lightning,Espadon,HQ1: Cermet Chunk x3,HQ2: Coeurl Leather,90
+Paralyze Potion,Lightning,Mamushito,HQ1: Elm Lumber,HQ2: Iron Nugget x6,HQ3: Tama-Hagane,91
+Smithing
+Item,Crystal,Ingredients,HQ,Cap
+Bronze Ingot,Lightning,Bronze Cap,HQ1: Sheep Leather,HQ2: Bronze Ingot,HQ3: Sheep Leather x2,4
+Bronze Ingot,Lightning,Bronze Mittens,HQ1: Bronze Ingot,HQ2: Sheep Leather,5
+Bronze Ingot,Lightning,Bronze Sword,HQ1: Bronze Ingot x2,HQ2: Sheep Leather,6
+Bronze Ingot,Lightning,Bronze Leggings,HQ1: Bronze Ingot x2,HQ2: Sheep Leather,HQ3: Sheep Leather x2,7
+Bronze Ingot,Lightning,Xiphos,HQ1: Bronze Ingot,HQ2: Giant Femur,8
+Grass Thread x3,Lightning,Bronze Zaghnal,HQ1: Ash Lumber,HQ2: Bronze Ingot,HQ3: Bronze Ingot x2,8
+Bronze Ingot,Lightning,Bronze Subligar,HQ1: Grass Thread x3,HQ2: Sheep Leather,9
+Bronze Ingot,Lightning,Bronze Mace,HQ1: Bronze Ingot,HQ2: Bronze Ingot x2,HQ3: Bronze Ingot x3,10
+Bronze Ingot x2,Lightning,Scale Finger Gauntlets,HQ1: Cotton Thread,HQ2: Grass Thread x3,HQ3: Sheep Leather x2 (unverified),11
+Bronze Ingot,Lightning,Bronze Rod,HQ1: Bronze Ingot,HQ2: Bronze Ingot x2,HQ3: Copper Ingot,12
+Lauan Lumber,Lightning,Light Axe,HQ1: Bronze Ingot,HQ2: Bronze Ingot x2,HQ3: Tourmaline,16
+Ash Lumber,Lightning,Aspis,HQ1: Bronze Ingot,HQ2: Bronze Ingot x2,HQ3: Bronze Ingot x3,18
+Bronze Ingot x3,Lightning,Goblin Mail,HQ1: Iron Ingot x2,HQ2: Steel Ingot,HQ3: Steel Ingot,19
+Bronze Ingot,Lightning,Goblin Helm,HQ1: Iron Ingot,HQ2: Steel Ingot,HQ3: Steel Ingot,19
+Bronze Sheet,Wind,Goblin Helm,HQ1: Iron Sheet,HQ2: Steel Ingot,HQ3: Steel Ingot,20
+Bronze Sheet x3,Wind,Goblin Mail,HQ1: Iron Sheet,21
+Brass Ingot,Lightning,Scimitar,HQ1: Brass Ingot,HQ2: Steel Ingot,HQ3: Steel Ingot x2,24
+Lizard Skin,Lightning,Iron Sword,HQ1: Iron Ingot,HQ2: Iron Ingot x2,25
+Bronze Ingot,Lightning,Spatha,HQ1: Bronze Ingot x2,HQ2: Bronze Ingot x3,HQ3: Lizard Skin,25
+Iron Ingot x2,Lightning,Longsword,,27
+Lizard Skin,Lightning,Kunai,HQ1: Lizard Skin HQ2: Steel Ingot,29
+Brass Ingot,Lightning,Iron Mask,HQ1: Brass Ingot HQ2: Iron Ingot,29
+Ram Leather,Lightning,Chain Mittens,HQ1: Ram Leather x2,HQ2: Iron Ingot x3,31
+Ash Lumber,Lightning,Claymore,HQ1: Lizard Skin,HQ2: Iron Ingot x3,HQ3: Steel Ingot x4,32
+Sheep Leather,Lightning,Iron Cuisses,,35
+Lizard Skin,Lightning,Wakizashi,HQ1: Elm Lumber,HQ2: Iron Ingot,HQ3: Tama-Hagane,36
+Lizard Skin,Lightning,Padded Cap,HQ1: Lizard Skin x2,HQ2: Iron Ingot,38
+Ash Lumber,Lightning,War Pick,HQ1: Ash Lumber,HQ2: Steel Ingot,38
+Mythril Ingot,Lightning,Mythril Kukri,,42
+Bronze Ingot,Lightning,Musketoon,HQ1: Bronze Ingot,HQ2: ??? (unverified),43
+Oak Lumber,Lightning,Maul,HQ1: Oak Lumber,HQ2: Mythril Nugget x6,46
+Bronze Ingot,Lightning,Quadav Helm,HQ1: Iron Ingot,HQ2: Steel Ingot,HQ2: Darksteel Ingot,49
+Steel Ingot,Lightning,Arquebus,,50
+Bronze Sheet,Wind,Tonberry Lantern,HQ1: Bronze Sheet,HQ2: Glass Fiber x9,HQ3: Glass Fiber x12,51
+Animal Glue,Lightning,Corrosive Claws,HQ1: Bronze Ingot,51
+Bronze Ingot,Lightning,Quadav Backplate,HQ1: Iron Ingot,HQ2: Iron Ingot,HQ3: Darksteel Ingot,51
+Bronze Sheet,Wind,Quadav Helm,HQ1: Iron Sheet,HQ2: Steel Sheet,HQ3: Darksteel Sheet,51
+Bronze Sheet,Wind,Quadav Backplate,HQ1: Iron Sheet,HQ2: Iron Sheet,HQ3: Darksteel Sheet,53
+Mythril Nugget x4,Lightning,Darksteel Baselard,,63
+Bronze Ingot x2,Lightning,Antican Pauldron,HQ1: Darksteel Ingot,78
+Bronze Sheet x2,Wind,Antican Pauldron,HQ1: Darksteel Sheet,78
+Bronze Ingot,Lightning,Cougar Baghnakhs,,?
+Bronze Ingot,Lightning,Royal Archer's Sword,,?
+Bronze Ingot,Lightning,Legionnaire's Knuckles,HQ1: Bronze Ingot,?
+Bronze Ingot,Lightning,Goblin Cup,HQ1: Bronze Ingot,?
+Silver Ingot,Lightning,Curtana,HQ1: Mythril Nugget x6,HQ2: Darksteel Ingot,?
+Ram Horn,Lightning,Kaiser Sword,HQ1: Chrysoberyl,HQ2: Iron Ingot,HQ3: Iron Ingot x2,?
+Grass Thread x3,Lightning,Plantreaper,HQ1: Iron Ingot,HQ2: Ash Lumber,?
+Bonecraft
+Item,Crystal,Ingredients,HQ,Cap
+Seashell,Lightning,Shell Earring,HQ1: Seashell,HQ2: Seashell x2,3
+Bone Chip,Lightning,Bone Hairpin,HQ1: Bone Chip,4
+Rabbit Hide,Lightning,Cat Baghnakhs,HQ1: Bronze Ingot,HQ2: Bone Chip x2,HQ3: Bone Chip x3,9
+Brass Ingot,Lightning,Cornette,HQ1: Brass Ingot,HQ2: Bone Chip,14
+Flint Stone x4,Lightning,Gigas Necklace,HQ1: Pearl x2,HQ2: Black Pearl,18
+Giant Femur,Lightning,Shell Shield,HQ1: Giant Femur,HQ2: Turtle Shell,23
+Ash Lumber,Lightning,Bone Pick,HQ1: Ash Lumber,HQ2: Giant Femur,23
+Beetle Jaw,Lightning,Beetle Ring,HQ1: Beetle Jaw,25
+Beetle Shell,Lightning,Justaucorps,,26
+Ram Horn,Lightning,Horn Hairpin,HQ1: Ram Horn,29
+Beetle Jaw,Lightning,Beetle Gorget,HQ1: Beetle Jaw,HQ2: Beetle Jaw x2,HQ3: Beetle Shell,31
+Fish Scales,Lightning,Horn Ring,HQ1: Ram Horn,36
+Bone Chip x2,Lightning,Bone Cudgel,,39
+Turtle Shell,Lightning,Shell Hairpin,,53
+Grass Thread,Lightning,Blood Stone,HQ1: Fiend Blood,HQ2: Giant Femur,57
+Scorpion Shell,Lightning,Scorpion Ring,HQ1: Scorpion Shell,60
+Fish Scales,Lightning,Demon's Ring,HQ1: Fish Scales,HQ2: Demon Horn,70
+Linen Thread x2,Lightning,Coral Subligar,HQ1: Coeurl Leather,HQ2: Coral Fragment,71
+Silver Ingot,Lightning,Coral Earring,HQ1: Silver Ingot,HQ2: Coral Fragment,83
+Bronze Ingot,Lightning,Lynx Baghnakhs,HQ1: Bone Chip x2,HQ2: Bone Chip x3,HQ3: Tiger Leather,?
+Goldsmithing
+Item,Crystal,Ingredients,HQ,Cap
+Copper Ingot,Lightning,Yagudo Necklace,,1
+Copper Ingot,Lightning,Copper Ring,HQ1: Copper Ingot,HQ2: Copper Ingot x2,5
+Copper Ingot,Lightning,Copper Hairpin,HQ1: Copper Ingot,7
+Copper Ingot,Lightning,Circlet,HQ1: Brass Ingot,9
+Bronze Ingot,Lightning,Brass Cap,HQ1: Brass Ingot,HQ2: Sheep Leather,HQ3: Sheep Leather x2,10
+Brass Ingot,Lightning,Brass Mittens,HQ1: Sheep Leather,HQ2: Bronze Ingot,12
+Ash Lumber,Lightning,Brass Axe,,12
+Bronze Ingot,Lightning,Brass Leggings,HQ1: Brass Ingot,HQ2: Sheep Leather,HQ3: Sheep Leather x2,14
+Brass Ingot,Lightning,Brass Ring,HQ1: Brass Ingot,HQ2: Brass Ingot x2,15
+Grass Thread x3,Lightning,Brass Subligar,HQ1: Sheep Leather,HQ2: Bronze Ingot,HQ3: Brass Ingot,16
+Brass Ingot,Lightning,Brass Hairpin,HQ1: Brass Ingot,17
+Silver Ingot,Lightning,Silver Earring,HQ1: Silver Ingot,HQ2: Silver Ingot x2,22
+Bronze Ingot,Lightning,Bronze Rod,HQ1: Bronze Ingot,HQ2: Bronze Ingot x2,HQ3: Copper Ingot,23
+Tourmaline,Lightning,Tourmaline Earring,HQ1: Tourmaline,HQ2: Silver Ingot,HQ3: Silver Ingot x2,25
+Amber,Lightning,Amber Earring,HQ1: Amber,HQ2: Silver Ingot,HQ3: Silver Ingot x2,25
+Silver Ingot,Lightning,Silver Hairpin,HQ1: Silver Ingot,27
+Bronze Ingot,Lightning,Heat Rod,HQ1: Iron Ingot,HQ2: Iron Ingot x2,HQ3: Amethyst,31
+Silver Ingot,Lightning,Silver Ring,HQ1: Silver Ingot,HQ2: Silver Ingot x2,32
+Onyx,Lightning,Onyx Ring,HQ1: Onyx,HQ2: Silver Ingot,HQ3: Silver Ingot x2,35
+Clear Topaz,Lightning,Clear Ring,HQ1: Clear Topaz,HQ2: Silver Ingot,HQ3: Silver Ingot x2,35
+Pearl,Lightning,Pearl Earring,HQ1: Pearl,HQ2: Mythril Ingot,HQ3: Mythril Ingot x2,45
+Mythril Ingot,Lightning,Mythril Ring,HQ1: Mythril Ingot,HQ2: Mythril Ingot x2,47
+Silver Ingot,Lightning,Silver Bangles,HQ1: Silver Ingot,HQ2: Silver Ingot x2,HQ3: Silver Ingot x3,49
+Mythril Ingot,Lightning,Buckler,,49
+Gold Ingot,Lightning,Gold Orcmask,,52
+Iron Ingot,Lightning,Mythril Degen,HQ1: Iron Ingot x2,HQ2: Mythril Ingot,HQ3: Mythril Ingot x2,52
+Gold Ingot,Lightning,Gold Hairpin,HQ1: Gold Ingot,58
+Iron Ingot,Lightning,Gold Buckler,HQ1: Holly Lumber,HQ2: Mercury,HQ3: Gold Ingot,80
+Silver Ingot,Lightning,Electrum Ring,HQ1: Silver Ingot HQ2: Gold Ingot,?
+Mythril Nugget x6,Lightning,Mythril Dagger,,?
+Brass Ingot,Lightning,Bastokan Leggings,,?
+Bronze Ingot,Lightning,Legionnaire's Harness,HQ1: Sheep Leather x2,?
+Copper Ingot,Lightning,Compound Eye Circlet,HQ1: Copper Ingot,HQ2: Hecteyes Eye,HQ3: Mythril Ingot,?
+Copper Ingot,Lightning,Onion Dagger,HQ1: Copper Ingot x2,?
+Silver Chain,Wind,Corse Bracelet,HQ1: Amber,HQ2: Sphene,HQ3: Chrysoberyl,?
+Leathercraft
+Item,Crystal,Ingredients,HQ,Cap
+Sheep Leather,Wind,Goblin Mask,HQ1: Sheep Leather,HQ2: Sheep Leather x2,HQ3: Sheep Leatherx ?,2
+Ash Lumber,Lightning,Cesti,HQ1: Sheep Leather,HQ2: Sheep Leather x2,HQ3: Sheep Leather x ?,3
+Sheep Leather,Lightning,Leather Bandana,,5
+Bronze Ingot,Lightning,Leather Highboots,HQ1: Sheep Leather,HQ2: Sheep Leather x2,HQ3: Sheep Leather x3,6
+Grass Thread,Lightning,Rabbit Mantle,HQ1: Rabbit Hide x3,HQ2: Rabbit Hide x4,HQ3: Rabbit Hide x5,7
+Sheep Leather,Lightning,Leather Gloves,HQ1: Grass Thread x2,HQ2: Grass Thread x3,HQ3: Sheep Leather x2,8
+Grass Thread x5,Lightning,Leather Trousers,HQ1: Grass Thread x6,HQ2: Sheep Leather x6,HQ3: Sheep Leather x2,8
+Sheep Leather,Lightning,Leather Vest,HQ1: Sheep Leather x2,HQ2: Sheep Leather x3,HQ3: Lizard Skin,9
+Sheep Leather,Lightning,Solea,HQ1: Sheep Leather x1,HQ2: Sheep Leather x2,HQ3: Sheep Leather x2,11
+Sheep Leather,Lightning,Leather Belt,HQ1: Sheep Leather,HQ2: Iron Ingot,HQ3: Iron Ingot x2,13
+Sheep Leather,Lightning,Lizard Helm,HQ1: Lizard Skin,HQ2: Sheep Leather x2,HQ3: Sheep Leather x?,15
+Grass Thread x3,Lightning,Lizard Gloves,HQ1: Sheep Leather,HQ2: Lizard Skin x2,HQ3: Lizard Skin x?,16
+Ash Lumber,Lightning,Lizard Cesti,HQ1: Lizard Skin,HQ2: Lizard Skin x2,17
+Dhalmel Leather,Lightning,Leather Ring,,22
+Dhalmel Hide,Lightning,Dhalmel Mantle,HQ1: Wool Thread,24
+Sheep Leather,Lightning,Studded Bandana,HQ1: Iron Ingot,HQ2: Iron Ingot x2,HQ3: Iron Ingot x?,24
+Dhalmel Leather,Lightning,Studded Boots,HQ1: Iron Ingot,28
+Sheep Leather,Lightning,Sandals,HQ1: Dhalmel Leather,29
+Sheep Leather,Wind,Moblin Mask,,31
+Ram Leather x3,Wind,Bugbear Mask,,35
+Sheep Leather,Wind,Goblin Armor,HQ1: Ram Leather,HQ2: Ram Leather x?,36
+Grass Thread,Lightning,Leather Gorget,HQ1: Ram Leather,HQ2: Grass Thread,HQ3: Grass Thread x?,37
+Cotton Thread,Lightning,Wolf Gorget,,39
+Grass Thread,Lightning,Raptor Mantle,HQ1: Raptor Skin,HQ2: Raptor Skin x2,53
+Wool Thread,Lightning,Behemoth Mantle,HQ1: Wool Thread,70
+Cotton Thread,Lightning,Coeurl Gorget,HQ1: Cotton Thread,HQ2: Coeurl Hide x2,79
+Sheep Leather,Lightning,Coeurl Jerkin,HQ1: Sheep Leather,HQ2: Coeurl Leather,HQ3: Coeurl Leather x2,89
+Sheep Leather,Lightning,Ogre Jerkin,HQ1: Coeurl Leather x2,HQ2: Manticore Leather,90
+Tiger Hide,Lightning,Tiger Mask,HQ1: Wool Thread,HQ2: Ram Leather x2,HQ3: Wyvern Skin,95
+Wool Thread,Lightning,Panther Mask,HQ1: Ram Leather,HQ2: High-Quality Coeurl Hide,HQ3: Wyvern Skin,102
+Clothcraft
+Item,Crystal,Ingredients,HQ,Cap
+Grass Thread x3,Wind,Yagudo Necklace,HQ1: Grass Thread x6,HQ2: Grass Thread x9,HQ3: Grass Thread x12,1
+Grass Thread x4,Lightning,Headgear,HQ1: Grass Thread x5,HQ2: Grass Thread x6,HQ3: Grass Thread x7,5
+Grass Thread x8,Lightning,Gaiters,HQ1: Grass Thread x9,HQ2: Cotton Thread x1,6
+Grass Thread x6,Lightning,Gloves,HQ1: Grass Thread x7,HQ2: Saruta Cotton x1,HQ3: Saruta Cotton x2,6
+Grass Thread x4,Lightning,Cape,HQ1: Grass Thread x5,HQ2: Grass Thread x6,HQ3: Grass Thread x7,8
+Lauan Lumber x1,Lightning,Tekko,HQ1: Grass Thread x2,HQ2: Grass Thread x5,HQ3: Grass Thread x6,8
+Cotton Thread x2,Lightning,Goblin Armor,HQ1: Cotton Thread x4,HQ2: Cotton Thread x6,HQ3: Cotton Thread x8,9
+Cotton Thread x2,Lightning,Antican Robe,HQ1: Cotton Thread x4,HQ2: Cotton Thread x6,HQ3: Cotton Thread x8,9
+Cotton Cloth x1,Wind,Antican Robe,HQ1: Cotton Cloth x2,HQ2: Cotton Cloth x3,HQ3: Cotton Cloth x4,10
+Grass Thread x10,Lightning,Doublet,HQ1: Grass Thread x12,HQ2: Saruta Cotton x2,HQ3: Saruta Cotton x3,10
+Grass Thread x3,Lightning,Hachimaki,HQ1: Grass Thread x4,HQ2: Grass Thread x5,HQ3: Grass Thread x6,10
+Grass Thread x2,Lightning,Mitts,HQ1: Grass Thread x3,12
+Grass Thread x3,Lightning,Cuffs,HQ1: Flint Stone x2,HQ2: Cotton Thread x3,HQ3: Cotton Thread x4,12
+Grass Thread x7,Lightning,Kyahan,HQ1: Grass Thread x8,HQ2: Grass Thread x9,HQ3: Sheep Leather x1,14
+Grass Thread x2,Lightning,Slops,HQ1: Grass Thread x3,HQ2: Cotton Thread x3,HQ3: Cotton Thread x4,14
+Cotton Thread x7,Lightning,Slacks,HQ1: Cotton Thread x8,15
+Cotton Thread x4,Lightning,Cotton Headgear,HQ1: Cotton Thread x5,HQ2: Cotton Thread x6,HQ3: Cotton Thread x7,15
+Grass Thread x5,Lightning,Robe,HQ1: Grass Thread x7,HQ2: Cotton Thread x5,HQ3: Cotton Thread x6,16
+Grass Thread x6,Lightning,Sitabaki,HQ1: Grass Thread x7,HQ2: Cotton Thread x2,HQ3: Cotton Thread x3,16
+Linen Thread x2,Lightning,Tonberry Coat,HQ1: Linen Thread x4,HQ2: Linen Thread x6,HQ3: Linen Thread x8,17
+Cotton Thread x4,Lightning,Cotton Cape,HQ1: Cotton Thread x5,HQ2: Cotton Thread x6,HQ3: Cotton Thread x7,18
+Grass Thread x7,Lightning,Kenpogi,HQ1: Grass Thread x8,HQ2: Grass Thread x9,HQ3: Grass Thread x10,18
+Linen Thread x1,Lightning,Cotton Headband,HQ1: Linen Thread x2,HQ2: Linen Thread x3,HQ3: Carbon Fiber x1,20
+Linen Cloth x1,Wind,Tonberry Coat,HQ1: Linen Cloth x2,HQ2: Linen Cloth x2,HQ3: Linen Cloth x2,22
+Cotton Thread x3,Lightning,Linen Cuffs,HQ1: Linen Thread x4,HQ2: Sardonyx x1,HQ3: Sardonyx x2,23
+Cotton Thread x7,Lightning,Cotton Kyahan,HQ1: Cotton Thread x8,HQ2: Cotton Thread x9,HQ3: Linen Thread x1,24
+Lauan Lumber x1,Lightning,Cotton Tekko,HQ1: Grass Thread x1,HQ2: Cotton Thread x5,HQ3: Cotton Thread x6,24
+Cotton Thread x2,Lightning,Linen Slops,HQ1: Cotton Thread x3,HQ2: Linen Thread x6,HQ3: Linen Thread x7,25
+Grass Thread x1,Lightning,Heko Obi,HQ1: Cotton Thread x4,HQ2: Cotton Thread x5,HQ3: Cotton Thread x6,27
+Grass Thread x1,Lightning,Cotton Dogi,HQ1: Cotton Thread x7,HQ2: Cotton Thread x8,HQ3: Cotton Thread x9,28
+Bat Fang x1,Lightning,Fly Lure,HQ1: Chocobo Feather x1,HQ2: Animal Glue x1,29
+Wool Thread x2,Lightning,Gigas Socks,HQ1: Wool Thread x4,HQ2: Wool Thread x6,HQ3: Wool Thread x8,35
+Grass Thread x5,Lightning,Hemp Gorget,HQ1: Grass Thread x6,HQ2: Grass Thread x7,HQ3: Grass Thread x8,43
+Saruta Cotton x2,Lightning,Wool Bracers,HQ1: Wool Thread x5,HQ2: Wool Thread x6,HQ3: Wool Thread x7,46
+Silk Thread x2,Lightning,Black Cape,HQ1: Silver Thread x1,HQ2: Wool Thread x3,HQ3: Wool Thread x4,54
+Silk Thread x1,Lightning,Green Ribbon,HQ1: Silk Thread x1,HQ2: Silk Thread x2,HQ3: Silk Thread x3,62
+Silk Thread x4,Lightning,White Cape,HQ1: Silk Thread x5,HQ2: Silk Thread x6,HQ3: Wool Thread x1,64
+Saruta Cotton x1,Lightning,White Mitts,HQ1: Silk Thread x4,HQ2: Wool Thread x2,HQ3: Gold Thread x1,64
+Silver Thread x1,Lightning,Silk Hat,HQ1: Silk Thread x6,65
+Silk Thread x1,Lightning,Silk Headband,HQ1: Silk Thread x2,HQ2: Silk Thread x3,HQ3: Carbon Fiber x1,69
+Gold Thread x1,Lightning,Gold Obi,HQ1: Gold Thread x2,70
+Black Ink x1,Lightning,Black Silk Neckerchief,HQ1: Silk Thread x7,HQ2: Silk Thread x8,HQ3: Silk Thread x9,???
+Cotton Thread x2,Lightning,Moblin Armor,HQ1: Cotton Thread x4,HQ2: Cotton Thread x6,HQ3: Cotton Thread x8,???
+Cotton Thread x4,Lightning,Corse Robe,HQ1: Cotton Thread x6,HQ2: Silk Thread x1,HQ3: Gold Thread x1,???
+Velvet Cloth x2,Wind,Corse Robe,HQ1: Velvet Cloth x3,???
+Wool Thread x4,Lightning,Wool Cuffs,HQ1: ???,HQ2: ???,HQ3: ???,???
+Saruta Cotton x2,Lightning,Linen Doublet,HQ1: Saruta Cotton x3,HQ2: Linen Cloth x2,HQ3: ???,???
+Woodworking
+Item,Crystal,Ingredients,HQ,Cap
+Parchment x1,Lightning,Flute,HQ1: Parchment x1,HQ2: Maple Lumber x1,HQ3: Maple Lumber x1,1
+Lauan Lumber x1,Lightning,Lauan Shield,HQ1: Lauan Lumber x2,7
+Ash Lumber x1,Lightning,Ash Pole,,8
+Ash Lumber x1,Lightning,Ash Staff,HQ1: Bat Fang x1,9
+Ash Lumber x1,Lightning,Ash Club,,9
+Maple Lumber x1,Lightning,Maple Shield,HQ1: Maple Lumber x2,11
+Ash Lumber x1,Lightning,Ash Clogs,HQ1: Sheep Leather x1,HQ2: Sheep Leather x?,11
+Willow Lumber,Lightning,Willow Wand,HQ1:Willow Lumber,HQ2:Willow Lumber,HQ3:Insect Wing,14
+Bamboo Stick,Lightning,Bamboo Fishing Rod,,15
+Holly Lumber,Lightning,Holly Staff,,19
+Linen Thread,Lightning,Yew Fishing Rod,HQ1:Yew Lumber,HQ2:Linen Thread,20
+Yew Lumber,Lightning,Yew Fishing Rod,HQ1:Linen Thread,HQ2:Yew Lumber,20
+Parchment,Lightning,Piccolo,HQ1:Parchment,HQ2:Holly Lumber,20
+Maple Lumber,Lightning,Maple Harp,HQ1:Coeurl Whisker x2,23
+Yagudo Feather,Lightning,Yew Wand,HQ1:Yew Lumber,23
+Chestnut Lumber,Lightning,Bouncer Club,,27
+Elm Lumber,Lightning,Elm Staff,HQ1:Ram Horn,31
+Elm Lumber,Lightning,Misery Staff,HQ1:Slime Oil,HQ2:Black Pearl,31
+Chestnut Lumber,Lightning,Chestnut Wand,HQ1:Bird Feather,32
+Parchment,Lightning,Traversiere,HQ1:Oak Lumber,37
+Elm Lumber,Lightning,Elm Pole,,46
+Bronze Ingot,Lightning,Great Club,HQ1:Mahogany Lumber,54
+Silk Thread,Lightning,Tarutaru Fishing Rod,HQ1:Walnut Lumber,63
+Silk Thread,Lightning,Clothespole,HQ1:Mahogany Lumber,77
+Walnut Lumber,Lightning,Battle Staff,HQ1:Walnut Lumber x2,HQ2:Walnut Lumber x4,85
+Rainbow Thread,Lightning,Mithran Fishing Rod,HQ1:Rattan Lumber,87
+Walnut Lumber,Lightning,Eight-Sided Pole,HQ1: Walnut Lumber x2,HQ2: Walnut Lumber x6,HQ3: Mythril Nugget x6,94
+Holly Lumber,Lightning,Hypno Staff,HQ1: Peridot,99
\ No newline at end of file
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 178900d..2fd8ea2 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -8,8 +8,9 @@ import Typography from "@mui/material/Typography";
import InventoryPage from "./pages/Inventory";
import ItemExplorerPage from "./pages/ItemExplorer";
import RecipesPage from "./pages/Recipes";
+import DesynthRecipesPage from "./pages/DesynthRecipes";
import Footer from "./components/Footer";
-import { inventoryColor, explorerColor, recipesColor } from "./constants/colors";
+import { inventoryColor, explorerColor, recipesColor, desynthColor } from "./constants/colors";
import MobileNav from "./components/MobileNav";
import useMediaQuery from "@mui/material/useMediaQuery";
import { useTheme } from "@mui/material/styles";
@@ -35,21 +36,23 @@ export default function App() {
MOG SQUIRE
- {!isMobile && (() => {
- const tabColors = [inventoryColor, explorerColor, recipesColor];
- const tabLabels = ['Inventory','Item Explorer','Recipes'];
+ {(() => {
+ const tabColors = [inventoryColor, explorerColor, recipesColor, desynthColor];
+ const tabLabels = ['Inventory','Item Explorer','Recipes','Desynth'];
return (
setPage(v)}
- centered
+ variant={isMobile ? 'fullWidth' : 'standard'}
+ centered={!isMobile}
+ sx={isMobile ? { minHeight: 32 } : {}}
TabIndicatorProps={{ sx: { backgroundColor: tabColors[page] } }}
>
{tabLabels.map((label, idx) => (
))}
@@ -67,6 +70,9 @@ export default function App() {
{page === 2 && metadata && (
)}
+ {page === 3 && (
+
+ )}
diff --git a/frontend/src/components/ItemDisplay.tsx b/frontend/src/components/ItemDisplay.tsx
new file mode 100644
index 0000000..79ccb23
--- /dev/null
+++ b/frontend/src/components/ItemDisplay.tsx
@@ -0,0 +1,130 @@
+import React from "react";
+import Tooltip from "@mui/material/Tooltip";
+import { useQuery } from "@tanstack/react-query";
+import { applySubstitutions } from "../utils/nameSubstitutions";
+import { api } from "../api";
+
+export interface OwnedInfo {
+ qty: number;
+ storages: string[];
+ icon?: string;
+ description?: string;
+}
+
+interface ItemDisplayProps {
+ name: string;
+ /** Overrides text shown (defaults to `name`) */
+ displayName?: string;
+ /** Quantity requirement to colour-code */
+ qty?: number;
+ /** Map of owned items keyed by item name */
+ ownedInfo?: Record;
+ /** Disable colour highlighting */
+ noHighlight?: boolean;
+ /** Extra label shown in tooltip when description missing (crystal element, etc.) */
+ label?: string;
+ /** Direct item-id look-up instead of name search */
+ itemId?: number;
+ /** When true, skip automatic removal of the word "Crystal" */
+ exactName?: boolean;
+}
+
+export default function ItemDisplay({
+ name,
+ displayName,
+ qty,
+ ownedInfo,
+ noHighlight = false,
+ label,
+ itemId,
+ exactName = false,
+}: ItemDisplayProps) {
+ /* ------------------------------------------------------------------ */
+ /* 1. Local inventory lookup */
+ /* ------------------------------------------------------------------ */
+ const local = ownedInfo?.[name];
+ const ownedQty = local?.qty ?? 0;
+
+ /* ------------------------------------------------------------------ */
+ /* 2. Clean search key */
+ /* ------------------------------------------------------------------ */
+ const baseNameRaw = exactName
+ ? name.replace(/ x\d+$/i, "").trim()
+ : name
+ .replace(/ x\d+$/i, "") // strip qty suffix e.g. "Iron Ingot x2"
+ .replace(/\s+Crystal$/i, "") // strip the word "Crystal"
+ .trim();
+
+ const searchName = applySubstitutions(baseNameRaw);
+
+ /* ------------------------------------------------------------------ */
+ /* 3. Remote meta fetch (if not locally available) */
+ /* ------------------------------------------------------------------ */
+ const { data } = useQuery<{ icon_id?: string; icon_b64?: string; description?: string } | null>({
+ queryKey: ["item-meta", itemId ?? searchName],
+ queryFn: async () => {
+ // If inventory already has description/icon, skip remote call
+ if (local?.icon || local?.description) return null;
+ try {
+ const res = await api.get(
+ itemId ? `/items/${itemId}` : `/items/by-name/${encodeURIComponent(searchName)}`
+ );
+ return res.data as { icon_id?: string; icon_b64?: string; description?: string };
+ } catch {
+ return null;
+ }
+ },
+ staleTime: 1_800_000, // 30m cache
+ });
+
+ /* ------------------------------------------------------------------ */
+ /* 4. Icon & tooltip */
+ /* ------------------------------------------------------------------ */
+ const icon =
+ local?.icon ||
+ (data?.icon_b64
+ ? `data:image/png;base64,${data.icon_b64}`
+ : data?.icon_id
+ ? `/api/icon/${data.icon_id}`
+ : undefined);
+
+ const desc = local?.description || data?.description;
+ const locs = local ? ` | ${local.storages.join(", ")}` : "";
+ const tooltip = `${desc ?? label ?? displayName ?? name}${locs}`;
+
+ /* ------------------------------------------------------------------ */
+ /* 5. Text colour logic */
+ /* ------------------------------------------------------------------ */
+ const colorStyle: React.CSSProperties = (() => {
+ if (noHighlight) return {};
+ if (qty !== undefined) {
+ if (ownedQty >= qty && qty > 0) return { color: "green" };
+ if (ownedQty > 0 && ownedQty < qty) return { color: "yellow" };
+ }
+ return {};
+ })();
+
+ const wikiUrl = `https://www.bg-wiki.com/ffxi/${encodeURIComponent(baseNameRaw)}`;
+
+ return (
+
+
+ {icon && (
+
+ )}
+ {qty !== undefined
+ ? `${displayName ?? label ?? name} x${qty}`
+ : displayName ?? label ?? name}
+
+
+ );
+}
diff --git a/frontend/src/components/ItemsGrid.tsx b/frontend/src/components/ItemsGrid.tsx
index 1673d58..4d826ae 100644
--- a/frontend/src/components/ItemsGrid.tsx
+++ b/frontend/src/components/ItemsGrid.tsx
@@ -10,6 +10,7 @@ export interface GridItem {
iconUrl?: string;
icon_id?: string;
quantity?: number;
+ stack_size?: number;
jobs_description?: string[];
storages?: string[];
storage_type?: string;
@@ -25,15 +26,15 @@ interface Props {
}
const IconImg = styled("img")(({ theme }) => ({
- width: 40,
- height: 40,
+ width: 32,
+ height: 32,
[theme.breakpoints.up("sm")]: {
- width: 48,
- height: 48,
+ width: 40,
+ height: 40,
},
[theme.breakpoints.up("md")]: {
- width: 80,
- height: 80,
+ width: 64,
+ height: 64,
},
}));
@@ -44,7 +45,7 @@ export default function ItemsGrid({ items, onSelect, loading, duplicates, select
sx={{
position: 'relative',
display: "grid",
- gridTemplateColumns: { xs: 'repeat(4, 1fr)', sm: 'repeat(6, 1fr)', md: 'repeat(8, 1fr)', lg: 'repeat(10, 1fr)' },
+ gridTemplateColumns: { xs: 'repeat(5, 1fr)', sm: 'repeat(6, 1fr)', md: 'repeat(8, 1fr)', lg: 'repeat(10, 1fr)' },
gap: 1,
p: 1.5,
}}
@@ -53,8 +54,8 @@ export default function ItemsGrid({ items, onSelect, loading, duplicates, select
+
) : item.iconUrl ? (
1 ? ` x${item.quantity}` : ""}`}
@@ -85,7 +86,7 @@ export default function ItemsGrid({ items, onSelect, loading, duplicates, select
>
1 ? item.quantity : undefined}
- color="secondary"
+ color={item.quantity && item.stack_size && item.quantity === item.stack_size ? 'info' : 'secondary'}
overlap="circular"
>
diff --git a/frontend/src/components/RecipesDetailTable.tsx b/frontend/src/components/RecipesDetailTable.tsx
index 1df8030..547bbcb 100644
--- a/frontend/src/components/RecipesDetailTable.tsx
+++ b/frontend/src/components/RecipesDetailTable.tsx
@@ -7,23 +7,38 @@ import TableCell from "@mui/material/TableCell";
import Typography from "@mui/material/Typography";
import CircularProgress from "@mui/material/CircularProgress";
import Tooltip from "@mui/material/Tooltip";
+import { applySubstitutions } from "../utils/nameSubstitutions";
import type { RecipeDetail } from "../types";
+import ItemDisplay from "./ItemDisplay";
interface Props {
- recipes: RecipeDetail[] | undefined;
+ recipes?: RecipeDetail[];
loading?: boolean;
- owned?: Set;
- ownedInfo?: Record;
+ ownedInfo?: Record;
}
-function ItemDisplay({ name, qty, ownedInfo, owned, label }: { name: string; qty?: number; ownedInfo?: Record; owned?: Set; label?: string; }) {
+/*
+interface ItemDisplayProps {
+ name: string;
+ displayName?: string;
+ qty?: number;
+ ownedInfo?: Record;
+ noHighlight?: boolean;
+ label?: string;
+ itemId?: number;
+}
+function ItemDisplay({ name, displayName, qty, ownedInfo, noHighlight=false, label, itemId }: ItemDisplayProps) {
const local = ownedInfo?.[name];
- const { data } = useQuery<{ icon_id?: string; description?: string } | null>({
- queryKey: ["item-meta", name],
+ const ownedQty = local?.qty ?? 0;
+ const baseName = name;
+ const searchName = applySubstitutions(baseName);
+ const queryName = itemId ? undefined : searchName;
+ const { data } = useQuery<{ icon_id?: string; icon_b64?: string; description?: string } | null>({
+ queryKey: ["item-meta", itemId ?? searchName],
queryFn: async () => {
if (local) return null;
try {
- const res = await fetch(`/api/items/by-name/${encodeURIComponent(name)}`);
+ const res = await fetch(itemId ? `/api/items/${itemId}` : `/api/items/by-name/${encodeURIComponent(queryName as string)}`);
if (!res.ok) return null;
return (await res.json()) as { icon_id?: string; description?: string };
} catch {
@@ -32,12 +47,22 @@ function ItemDisplay({ name, qty, ownedInfo, owned, label }: { name: string; qty
},
staleTime: 1000 * 60 * 30,
});
- const icon = local?.icon || (data?.icon_id ? `/api/icon/${data.icon_id}` : undefined);
+ const icon = local?.icon || (data?.icon_b64 ? `data:image/png;base64,${data.icon_b64}` : (data?.icon_id ? `/api/icon/${data.icon_id}` : undefined));
const desc = local?.description || data?.description;
- const tooltip = `${desc ?? label ?? name}`;
+ const locs = local ? ` | ${local.storages.join(', ')}` : '';
+ const tooltip = `${desc ?? label ?? displayName ?? name}${locs}`;
+ const wikiUrl = `https://www.bg-wiki.com/ffxi/${encodeURIComponent(name)}`;
+ const colorStyle = (()=>{
+ if(noHighlight) return {};
+ if(qty!==undefined){
+ if(ownedQty>=qty && qty>0) return {color:'green'};
+ if(ownedQty>0 && ownedQty
-
+
{icon && (
)}
- {qty !== undefined ? `${label ?? name} x${qty}` : (label ?? name)}
-
+ {qty !== undefined ? `${displayName ?? label ?? name} x${qty}` : (displayName ?? label ?? name)}
+
);
}
+*/
-export default function RecipesDetailTable({ recipes, loading, owned, ownedInfo }: Props) {
+export default function RecipesDetailTable({ recipes, loading, ownedInfo }: Props) {
if (loading) return ;
if (!recipes || recipes.length === 0)
return (
@@ -86,12 +112,12 @@ export default function RecipesDetailTable({ recipes, loading, owned, ownedInfo
{r.level}
-
+
{r.ingredients.map(([n, q], idx) => (
-
-
+
+
{idx < r.ingredients.length - 1 ? ', ' : ''}
))}
@@ -100,7 +126,7 @@ export default function RecipesDetailTable({ recipes, loading, owned, ownedInfo
{hq ? (() => {
const [n, q] = hq;
- return
+ return
})() : "—"}
))}
diff --git a/frontend/src/constants/colors.ts b/frontend/src/constants/colors.ts
index f26a9e5..68c2d97 100644
--- a/frontend/src/constants/colors.ts
+++ b/frontend/src/constants/colors.ts
@@ -3,6 +3,7 @@
export const inventoryColor = '#66bb6a';
export const explorerColor = '#42a5f5';
export const recipesColor = '#ffa726';
+export const desynthColor = '#26c6da'; // cyan for desynthesis
export const craftColors: Record = {
woodworking: '#ad7e50', // Woodworking – warm earthy brown
diff --git a/frontend/src/pages/DesynthRecipes.tsx b/frontend/src/pages/DesynthRecipes.tsx
new file mode 100644
index 0000000..4885eb4
--- /dev/null
+++ b/frontend/src/pages/DesynthRecipes.tsx
@@ -0,0 +1,166 @@
+import { useMemo, useState } from "react";
+import { useQuery } from "@tanstack/react-query";
+import Box from "@mui/material/Box";
+import CircularProgress from "@mui/material/CircularProgress";
+import Table from "@mui/material/Table";
+import TableBody from "@mui/material/TableBody";
+import TableCell from "@mui/material/TableCell";
+import TableHead from "@mui/material/TableHead";
+import TableRow from "@mui/material/TableRow";
+import Typography from "@mui/material/Typography";
+import ToggleButton from "@mui/material/ToggleButton";
+import ToggleButtonGroup from "@mui/material/ToggleButtonGroup";
+import Tabs from "@mui/material/Tabs";
+import Tab from "@mui/material/Tab";
+import { craftColors } from "../constants/colors";
+import { api } from "../api";
+import { desynthColor } from "../constants/colors";
+import ItemDisplay from "../components/ItemDisplay";
+
+interface DesynthRecipe {
+ id: number;
+ craft: string;
+ cap?: number | null;
+ item: string;
+ crystal: string;
+ ingredients: string;
+ hq1?: string | null;
+ hq2?: string | null;
+ hq3?: string | null;
+}
+
+export default function DesynthRecipesPage() {
+ const [filter, setFilter] = useState<'all' | 'partial' | 'full'>('all');
+ const [craftIdx, setCraftIdx] = useState(0);
+
+ // inventory owned for default character
+ const { data: inv } = useQuery({
+ queryKey: ["inventory", "Rynore"],
+ queryFn: async () => {
+ const { data } = await api.get(`/inventory/Rynore`);
+ return data as { item_name: string; quantity: number; storage_type: string }[];
+ },
+ });
+ const ownedInfoMap = useMemo(() => {
+ const map: Record = {};
+ inv?.forEach((i) => {
+ if (!map[i.item_name]) map[i.item_name] = { qty: 0, storages: [] };
+ map[i.item_name].qty += i.quantity;
+ if (!map[i.item_name].storages.includes(i.storage_type)) {
+ map[i.item_name].storages.push(i.storage_type);
+ }
+ });
+ return map;
+ }, [inv]);
+
+ const { data, isLoading } = useQuery({
+ queryKey: ["desynth-recipes"],
+ queryFn: async () => {
+ const { data } = await api.get(`/recipes/desynthesis`);
+ return data as DesynthRecipe[];
+ },
+ });
+
+ const crafts = useMemo(()=> {
+ if(!data) return [] as string[];
+ return Array.from(new Set(data.map(r=>r.craft))).sort();
+ }, [data]);
+ const currentCraft = crafts[craftIdx];
+
+ const filtered = useMemo(() => {
+ if (!data) return [] as DesynthRecipe[];
+ let arr = data;
+ if(currentCraft) arr = arr.filter(r=>r.craft === currentCraft);
+ if (filter === 'all') return arr;
+ const hasAllIngredients = (recipe: DesynthRecipe) => {
+ return recipe.ingredients.split(',').every((raw) => {
+ const trimmed = raw.trim();
+ const match = trimmed.match(/^(.*?)(?:\s+x(\d+))?$/i);
+ const baseName = match?.[1]?.trim() ?? trimmed;
+ const qtyNeeded = match?.[2] ? parseInt(match[2]) : 1;
+ const qtyOwned = ownedInfoMap[baseName]?.qty ?? 0;
+ return qtyOwned >= qtyNeeded;
+ });
+ };
+
+ const ownsAnyIngredient = (recipe: DesynthRecipe) => {
+ return recipe.ingredients.split(',').some((raw) => {
+ const baseName = raw.trim().replace(/\s+x\d+$/i, '').trim();
+ return (ownedInfoMap[baseName]?.qty ?? 0) > 0;
+ });
+ };
+
+ return arr.filter((r) => {
+ if (filter === 'full') return hasAllIngredients(r);
+ if (filter === 'partial') return ownsAnyIngredient(r) && !hasAllIngredients(r);
+ return true;
+ });
+ }, [data, filter, ownedInfoMap, currentCraft]);
+
+ return (
+
+
+
+ Desynthesis Recipes
+
+ v && setFilter(v)}>
+ All
+ Owned
+
+
+ {isLoading && }
+ {!isLoading && (
+ <>
+ {/* Craft tabs */}
+ {crafts.length>1 && (
+ setCraftIdx(v)}
+ variant="scrollable"
+ TabIndicatorProps={{ sx:{ backgroundColor: craftColors[currentCraft] || desynthColor } }}
+ sx={{ mb:1, bgcolor:'background.paper' }}
+ >
+ {crafts.map((c,idx)=> (
+
+ ))}
+
+ )}
+
+
+
+ Item
+ Skill Cap
+ Crystal
+ Ingredients
+ HQ1
+ HQ2
+ HQ3
+
+
+
+ {filtered.sort((a,b)=>(a.cap??999)-(b.cap??999)).map((r) => (
+
+
+ {r.cap ?? '-'}
+
+
+ {r.ingredients.split(',').map((ing,idx)=>{
+ const trimmed = ing.trim();
+ const match = trimmed.match(/^(.*?)(?:\s+x(\d+))?$/i);
+ const baseName = match?.[1]?.trim() ?? trimmed;
+ const qtyNeeded = match?.[2] ? parseInt(match[2]) : 1;
+ return {idx< r.ingredients.split(',').length-1?', ':''}
+ })}
+
+ {r.hq1? : '—'}
+ {r.hq2? : '—'}
+ {r.hq3? : '—'}
+
+ ))}
+
+
+ >
+ )}
+
+ );
+}
diff --git a/frontend/src/pages/Inventory.tsx b/frontend/src/pages/Inventory.tsx
index c61d107..d741050 100644
--- a/frontend/src/pages/Inventory.tsx
+++ b/frontend/src/pages/Inventory.tsx
@@ -25,6 +25,11 @@ import noIcon from "../icons/no-icon.png";
import blankIcon from "../icons/blank.png";
import { inventoryColor } from "../constants/colors";
import Button from "@mui/material/Button";
+import Table from "@mui/material/Table";
+import TableHead from "@mui/material/TableHead";
+import TableRow from "@mui/material/TableRow";
+import TableCell from "@mui/material/TableCell";
+import TableBody from "@mui/material/TableBody";
import UploadFileIcon from "@mui/icons-material/UploadFile";
import { useMutation, useQueryClient } from "@tanstack/react-query";
import { importInventoryCsv } from "../api";
@@ -35,27 +40,62 @@ interface Props {
character?: string;
}
+const STORAGE_ORDER = [
+ "inventory",
+ "safe",
+ "safe 2",
+ "storage",
+ "locker",
+ "satchel",
+ "sack",
+ "case",
+ "wardrobe", // wardrobe 1 treated as base label
+];
+
+function displayLabel(type: string): string {
+ const canon = type.toLowerCase();
+ if (canon === "inventory") return "Backpack";
+ if (canon.startsWith("wardrobe")) {
+ // ensure space before number if missing
+ return type.replace(/wardrobe\s*/i, "Wardrobe ").replace(/\s+/g, " ").trim();
+ }
+ // Capitalise first letter each word
+ return type.replace(/\b\w/g, (ch) => ch.toUpperCase());
+}
+
+function orderIndex(type: string): number {
+ const canon = type.toLowerCase();
+ const idx = STORAGE_ORDER.findIndex((o) => canon.startsWith(o));
+ return idx === -1 ? 999 : idx;
+}
+
export default function InventoryPage({ storageTypes, character = "Rynore" }: Props) {
+ const orderedTypes = useMemo(() => {
+ return [...storageTypes].sort((a, b) => orderIndex(a) - orderIndex(b));
+ }, [storageTypes]);
+
+ // Build full tab label list (storage tabs + Duplicates + optional Search)
+ const baseTabLabels = useMemo(() => [...orderedTypes, "Duplicates"], [orderedTypes]);
const [tab, setTab] = useState(0);
const [sortKey, setSortKey] = useState<'slot' | 'name' | 'type'>('slot');
const prevTabRef = useRef(0);
// Adjust default selection to "Inventory" once storageTypes are available
useEffect(() => {
- const idx = storageTypes.indexOf("Inventory");
+ const idx = orderedTypes.indexOf("Inventory");
if (idx >= 0) {
setTab(idx);
}
- }, [storageTypes]);
+ }, [orderedTypes]);
-
-
-
const [selected, setSelected] = useState(null);
const [search, setSearch] = useState("");
const debouncedSearch = useDebounce(search, 300);
const searchMode = debouncedSearch.trim() !== "";
- const searchTabIndex = storageTypes.length;
+ const searchTabIndex = baseTabLabels.length + (searchMode ? 0 : 0); // will push later
+ const tabLabels = useMemo(() => {
+ return searchMode ? [...baseTabLabels, "Search"] : baseTabLabels;
+ }, [baseTabLabels, searchMode]);
// Switch automatically to the search tab when a query is entered
useEffect(() => {
@@ -70,9 +110,8 @@ export default function InventoryPage({ storageTypes, character = "Rynore" }: Pr
}
}
}, [searchMode, searchTabIndex]);
-
- const currentType = tab === searchTabIndex ? undefined : storageTypes[tab];
+ const currentType = tab < orderedTypes.length ? orderedTypes[tab] : undefined;
// Clear selected item when tab changes
useEffect(()=> setSelected(null), [currentType]);
@@ -147,6 +186,7 @@ export default function InventoryPage({ storageTypes, character = "Rynore" }: Pr
storage_type: (row as any).storage_type,
name: row.item_name,
quantity: 'quantity' in row ? (row as any).quantity : undefined,
+ stack_size: (row as any).stack_size,
iconUrl: (row as any).icon_id
? `/api/icon/${(row as any).icon_id}`
: (() => {
@@ -199,13 +239,12 @@ export default function InventoryPage({ storageTypes, character = "Rynore" }: Pr
{isNarrow ? (
) : (() => {
@@ -218,10 +257,9 @@ export default function InventoryPage({ storageTypes, character = "Rynore" }: Pr
TabIndicatorProps={{ sx:{ backgroundColor:inventoryColor } }}
sx={{ bgcolor:'background.paper' }}
>
- {storageTypes.map((s,idx)=>(
-
+ {tabLabels.map((label) => (
+
))}
- {searchMode && }
);
})()}
@@ -275,22 +313,62 @@ export default function InventoryPage({ storageTypes, character = "Rynore" }: Pr
- {isLoading && }
+ {(() => {
+ const isDup = tabLabels[tab] === "Duplicates";
+ if (isDup) {
+ if (!allInv) return ;
+ const dupMap: Record = {};
+ (allInv as any[]).forEach((row:any) => {
+ const name = row.item_name;
+ dupMap[name] ??= { qty: 0, storages: [] };
+ dupMap[name].qty += row.quantity ?? 0;
+ const bucket = dupMap[name].storages.find(s=>s.type===row.storage_type);
+ if(bucket){ bucket.qty += row.quantity ?? 0; }
+ else { dupMap[name].storages.push({ type: row.storage_type, qty: row.quantity ?? 0 }); }
+ });
+ const rows = Object.entries(dupMap).filter(([_,v])=>v.storages.length>1).sort(([a],[b])=>a.localeCompare(b));
+ return (
+
+
+
+ Item
+ Total Qty
+ Storages
+
+
+
+ {rows.map(([name,info])=> (
+
+ {name}
+ {info.qty}
+ {info.storages.map(s=>`${displayLabel(s.type)} (${s.qty})`).join(', ')}
+
+ ))}
+
+
+ );
+ }
- setSelected(item)}
- duplicates={duplicates}
- selectedId={selected?.id}
- />
-
- setSelected(null)}
- />
+ // Normal grid view
+ return (
+ <>
+ {isLoading && }
+ setSelected(item)}
+ duplicates={duplicates}
+ selectedId={selected?.id}
+ />
+ setSelected(null)}
+ />
+ >
+ );
+ })()}
{
- const map: Record = {};
+ const map: Record = {};
(inv as InvItem[] | undefined)?.forEach((i) => {
if (!map[i.item_name]) {
- map[i.item_name] = { storages: [], icon: undefined, description: i.description };
+ map[i.item_name] = { storages: [], qty: 0, icon: undefined, description: i.description };
}
map[i.item_name].storages.push(i.storage_type.toUpperCase());
+ map[i.item_name].qty += i.quantity;
if (i.icon_id) {
map[i.item_name].icon = `/api/icon/${i.icon_id}`;
}
@@ -100,13 +101,20 @@ export default function RecipesPage({ crafts }: Props) {
if (filter === 'all') return catFiltered;
return catFiltered.filter((r) => {
const total = r.ingredients.length;
- const ownedCount = r.ingredients.reduce(
- (acc, [name]) => acc + (ownedSet.has(name) ? 1 : 0),
- 0
- );
- if (filter === 'full') return ownedCount === total && total > 0;
+ let sufficient = 0;
+ let some = 0;
+ for (const [name, reqQty] of r.ingredients) {
+ const info = ownedInfo[name];
+ if (info) {
+ if (info.qty >= reqQty) {
+ sufficient += 1; // green
+ }
+ if (info.qty > 0) some += 1; // any amount
+ }
+ }
+ if (filter === 'full') return sufficient === total && total > 0;
if (filter === 'partial')
- return ownedCount > 0 && ownedCount < total;
+ return some > 0 && sufficient < total;
return true;
});
}, [catFiltered, filter, ownedSet]);
@@ -162,7 +170,7 @@ export default function RecipesPage({ crafts }: Props) {
{isLoading ? (
) : (
-
+
)}
);
diff --git a/frontend/src/utils/nameSubstitutions.ts b/frontend/src/utils/nameSubstitutions.ts
new file mode 100644
index 0000000..6598b84
--- /dev/null
+++ b/frontend/src/utils/nameSubstitutions.ts
@@ -0,0 +1,34 @@
+// Utility for applying custom string substitutions before fetching item metadata.
+// The mapping is kept in a simple array so it can be edited in one place.
+// The first entry that matches (case-sensitive) will be applied.
+// Extend this list as needed.
+
+export const SUBSTITUTE_MAP: Array<[string, string]> = [
+ // [searchFor, replaceWith]
+ ["Lightning", "Lightng."],
+ ["Woodworking Kit", "Wood. Kit"],
+ ["Arrowwood Lumber","Arrowwood Lbr."],
+ ["Banquet Table ", "B. Table "],
+ ["Copy of Melodious Plans", "Melodious Plans"],
+ ["Fishing Rod", "Fish. Rod"],
+ ["Black Bubble-Eye", "Blk. Bubble-Eye"],
+ ["Broken","Bkn."],
+ ["Bewitched","Bwtch."],
+ ["Dogwood Lumber","Dogwd. Lumber"],
+ ["Fishing Rod","Fish. Rod"],
+ ["Black Bolt Heads","Blk. Bolt HeadsBlk. Bolt Heads"],
+ ["Ethereal Oak Lumber","Ether. Oak Lbr."],
+
+
+ // add more substitutions here
+];
+
+export function applySubstitutions(name: string): string {
+ let result = name;
+ for (const [from, to] of SUBSTITUTE_MAP) {
+ if (result.includes(from)) {
+ result = result.replace(from, to);
+ }
+ }
+ return result;
+}
diff --git a/scripts/convert_hq_entries.py b/scripts/convert_hq_entries.py
new file mode 100644
index 0000000..359f250
--- /dev/null
+++ b/scripts/convert_hq_entries.py
@@ -0,0 +1,78 @@
+import json
+from pathlib import Path
+
+
+def convert_hq_entries(csv_path: Path, backup: bool = True) -> None:
+ """Convert HQ1:,HQ2:,HQ3: columns in the desynthesis recipes CSV into a
+ single JSON-like dictionary string stored in the HQ column.
+
+ The CSV currently looks like::
+ Item,Crystal,Ingredients,HQ,Cap
+ Distilled Water x3,Lightning,Tahrongi Cactus,HQ1: Distilled Water x6,HQ2: Distilled Water x9,HQ3: Distilled Waterx12,2
+
+ After conversion it will be::
+ Distilled Water x3,Lightning,Tahrongi Cactus,{"HQ1":"Distilled Water x6","HQ2":"Distilled Water x9","HQ3":"Distilled Waterx12"},2
+ """
+ csv_path = Path(csv_path)
+ if not csv_path.exists():
+ raise FileNotFoundError(csv_path)
+
+ text = csv_path.read_text(encoding="utf-8").splitlines()
+ output_lines = []
+
+ for line in text:
+ # Keep skill category lines (e.g., "Alchemy") unchanged.
+ if "," not in line:
+ output_lines.append(line)
+ continue
+
+ parts = [p.strip() for p in line.split(",")]
+
+ # The header line already has correct length (5).
+ if parts[:5] == ["Item", "Crystal", "Ingredients", "HQ", "Cap"]:
+ output_lines.append(",".join(parts))
+ continue
+
+ # If this row already has 5 columns, leave as-is.
+ if len(parts) <= 5:
+ output_lines.append(",".join(parts))
+ continue
+
+ # Otherwise consolidate HQ columns.
+ item, crystal, ingredients = parts[:3]
+ cap = parts[-1]
+ hq_parts = parts[3:-1]
+
+ hq_dict = {}
+ unnamed_counter = 1
+ for h in hq_parts:
+ h = h.strip()
+ if not h:
+ continue
+ if ":" in h:
+ key, value = h.split(":", 1)
+ hq_dict[key.strip()] = value.strip()
+ else:
+ # Handle unlabeled HQ values by assigning sequential keys.
+ key = f"HQ{unnamed_counter}"
+ unnamed_counter += 1
+ hq_dict[key] = h
+
+ # Build dictionary string with spaces after commas to match example formatting.
+ hq_json_readable = "{" + ",".join([f'"{k}": "{v}"' if "\"" not in v else f'"{k}": {json.dumps(v)}' for k, v in hq_dict.items()]) + "}"
+
+ new_line = ",".join([item, crystal, ingredients, hq_json_readable, cap])
+ output_lines.append(new_line)
+
+ # Backup original file.
+ if backup:
+ backup_path = csv_path.with_suffix(csv_path.suffix + ".bak")
+ if not backup_path.exists():
+ backup_path.write_text("\n".join(text), encoding="utf-8")
+
+ csv_path.write_text("\n".join(output_lines) + "\n", encoding="utf-8")
+
+
+if __name__ == "__main__":
+ target = Path(__file__).resolve().parents[1] / "datasets" / "desythesis_recipes.csv"
+ convert_hq_entries(target)
diff --git a/scripts/load_desynth_recipes_to_db.py b/scripts/load_desynth_recipes_to_db.py
new file mode 100644
index 0000000..7828030
--- /dev/null
+++ b/scripts/load_desynth_recipes_to_db.py
@@ -0,0 +1,207 @@
+#!/usr/bin/env python3
+"""Load datasets/desythesis_recipes.csv into PostgreSQL.
+
+This script parses the *desynthesis* recipe CSV which is structured slightly
+differently from the v2 crafting CSVs. Recipes are grouped under craft
+headings (e.g. "Alchemy", "Smithing"), followed by a header row.
+
+Recent edits mean each recipe row now lists **multiple HQ columns (HQ1, HQ2, HQ3)**
+_directly_ in the CSV instead of a single JSON cell. A typical section now looks
+like::
+
+ Alchemy
+ Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap
+ Distilled Water x3,Lightning,Tahrongi Cactus,HQ1: Distilled Water x6,HQ2: Distilled Water x9,HQ3: Distilled Water x12,2
+
+Some legacy sections may still use the shorter header ``Item,Crystal,Ingredients,HQ,Cap``
+with the HQ values spread across several columns. Pragmatically we treat **all
+columns between ``Ingredients`` and the final ``Cap`` column as HQ fields** and
+extract at most three of them (hq1-3) for insertion into Postgres.
+
+The resulting database table schema is::
+
+ CREATE TABLE recipes_desynthesis (
+ id SERIAL PRIMARY KEY,
+ craft TEXT NOT NULL,
+ cap INT,
+ item TEXT NOT NULL,
+ crystal TEXT NOT NULL,
+ ingredients TEXT NOT NULL,
+ hq1 TEXT,
+ hq2 TEXT,
+ hq3 TEXT
+ );
+
+Run:
+ python scripts/load_desynth_recipes_to_db.py
+"""
+from __future__ import annotations
+
+import asyncio
+import csv
+import json
+import pathlib
+import re
+from typing import Dict, List, Tuple, Optional
+
+import asyncpg
+
+PROJECT_ROOT = pathlib.Path(__file__).resolve().parents[1]
+CONF_PATH = PROJECT_ROOT / "db.conf"
+CSV_PATH = PROJECT_ROOT / "datasets" / "desythesis_recipes.csv"
+
+# ---------------------------------------------------------------------------
+# Helpers
+# ---------------------------------------------------------------------------
+RE_CONF = re.compile(r"^([A-Z0-9_]+)=(.*)$")
+
+
+def parse_db_conf(path: pathlib.Path) -> Dict[str, str]:
+ """Simple KEY=VALUE parser (quotes stripped)."""
+ if not path.exists():
+ raise FileNotFoundError("db.conf not found")
+ conf: Dict[str, str] = {}
+ for line in path.read_text().splitlines():
+ line = line.strip()
+ if not line or line.startswith("#"):
+ continue
+ m = RE_CONF.match(line)
+ if m:
+ k, v = m.group(1), m.group(2).strip().strip("'\"")
+ conf[k] = v
+ required = {"PSQL_HOST", "PSQL_PORT", "PSQL_USER", "PSQL_PASSWORD", "PSQL_DBNAME"}
+ missing = required - conf.keys()
+ if missing:
+ raise RuntimeError(f"Missing keys in db.conf: {', '.join(sorted(missing))}")
+ return conf
+
+
+def parse_csv(csv_path: pathlib.Path) -> List[Tuple[str, Optional[int], str, str, str, Optional[str], Optional[str], Optional[str]]]:
+ """Parse the *desythesis_recipes.csv* file and return rows for COPY.
+
+ The parser is tolerant of the two currently-seen layouts:
+
+ 1. ``Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap``
+ 2. ``Item,Crystal,Ingredients,HQ,Cap`` (legacy header but still multiple HQ
+ columns in the data rows).
+
+ The strategy is therefore:
+ • first three columns are *always* Item, Crystal, Ingredients.
+ • *last* column is CAP.
+ • everything between is treated as HQ fields – the first three of those
+ (if present) are saved as hq1-3.
+ """
+
+ rows: List[Tuple[str, Optional[int], str, str, str, Optional[str], Optional[str], Optional[str]]] = []
+ current_craft: Optional[str] = None
+
+ with csv_path.open(newline="", encoding="utf-8") as fh:
+ reader = csv.reader(fh)
+ for raw in reader:
+ # ------------------------------------------------------------------
+ # Detect craft headings (single-cell rows, e.g. "Alchemy")
+ # ------------------------------------------------------------------
+ if len(raw) == 1:
+ current_craft = raw[0].strip()
+ continue
+
+ # Skip blank lines or header rows
+ if not raw or raw[0].strip().startswith("Item") or current_craft is None:
+ continue
+
+ if len(raw) < 4:
+ # Not enough columns for a valid recipe – skip
+ continue
+
+ # Standard columns
+ item = raw[0].strip()
+ crystal = raw[1].strip()
+ ingredients = raw[2].strip()
+
+ # CAP is *always* the final column
+ cap_raw = raw[-1].strip()
+ try:
+ cap = int(cap_raw) if cap_raw.isdigit() else None
+ except ValueError:
+ cap = None
+
+ # HQ columns: everything between ingredients and cap
+ hq_columns = [c.strip() for c in raw[3:-1]]
+ hq1 = hq_columns[0] if len(hq_columns) > 0 and hq_columns[0] else None
+ hq2 = hq_columns[1] if len(hq_columns) > 1 and hq_columns[1] else None
+ hq3 = hq_columns[2] if len(hq_columns) > 2 and hq_columns[2] else None
+
+ # Clean prefixes like "HQ1: "
+ def _clean(hq_val: Optional[str]) -> Optional[str]:
+ if hq_val and ":" in hq_val:
+ return hq_val.split(":", 1)[1].strip()
+ return hq_val
+
+ hq1, hq2, hq3 = map(_clean, (hq1, hq2, hq3))
+
+ rows.append((current_craft, cap, item, crystal, ingredients, hq1, hq2, hq3))
+
+ return rows
+
+
+async def recreate_table(conn: asyncpg.Connection) -> None:
+ await conn.execute(
+ """
+ DROP TABLE IF EXISTS recipes_desynthesis;
+ CREATE TABLE recipes_desynthesis (
+ id SERIAL PRIMARY KEY,
+ craft TEXT NOT NULL,
+ cap INT,
+ item TEXT NOT NULL,
+ crystal TEXT NOT NULL,
+ ingredients TEXT NOT NULL,
+ hq1 TEXT,
+ hq2 TEXT,
+ hq3 TEXT
+ );
+ """
+ )
+
+
+async def copy_rows(conn: asyncpg.Connection, rows):
+ await conn.copy_records_to_table(
+ "recipes_desynthesis",
+ records=rows,
+ columns=[
+ "craft",
+ "cap",
+ "item",
+ "crystal",
+ "ingredients",
+ "hq1",
+ "hq2",
+ "hq3",
+ ],
+ )
+
+
+async def main() -> None:
+ if not CSV_PATH.exists():
+ raise SystemExit("CSV file not found – run conversion first")
+
+ conf = parse_db_conf(CONF_PATH)
+ rows = parse_csv(CSV_PATH)
+ print(f"Parsed {len(rows)} recipes from CSV.")
+
+ conn = await asyncpg.connect(
+ host=conf["PSQL_HOST"],
+ port=int(conf["PSQL_PORT"]),
+ user=conf["PSQL_USER"],
+ password=conf["PSQL_PASSWORD"],
+ database=conf["PSQL_DBNAME"],
+ )
+ try:
+ await recreate_table(conn)
+ await copy_rows(conn, rows)
+ print("Loaded recipes_desynthesis table.")
+ finally:
+ await conn.close()
+
+
+if __name__ == "__main__":
+ asyncio.run(main())
diff --git a/scripts/load_inventory_to_db.py b/scripts/load_inventory_to_db.py
index aaa7dd7..a8423ee 100644
--- a/scripts/load_inventory_to_db.py
+++ b/scripts/load_inventory_to_db.py
@@ -82,6 +82,7 @@ async def ensure_inventory_table(conn: asyncpg.Connection) -> None:
storage_type TEXT NOT NULL,
item_name TEXT NOT NULL,
quantity INT NOT NULL,
+ item_id INT,
last_updated TIMESTAMPTZ DEFAULT NOW()
);
"""
@@ -93,7 +94,13 @@ async def truncate_inventory(conn: asyncpg.Connection) -> None:
await conn.execute("TRUNCATE TABLE inventory;")
-async def copy_csv_to_db(conn: asyncpg.Connection, rows: List[Tuple[str, str, str, int]]) -> None:
+async def fetch_item_ids(conn: asyncpg.Connection, item_names: List[str]) -> Dict[str, int]:
+ """Fetch item IDs from the database."""
+ rows = await conn.fetch("SELECT id, name FROM all_items WHERE name = ANY($1::text[])", item_names)
+ return {row["name"]: row["id"] for row in rows}
+
+
+async def copy_csv_to_db(conn: asyncpg.Connection, rows: List[Tuple[str, str, str, int, int, _dt.datetime]]) -> None:
"""Bulk copy the parsed CSV rows into the DB using ``copy_records_to_table``."""
await conn.copy_records_to_table(
"inventory",
@@ -102,6 +109,7 @@ async def copy_csv_to_db(conn: asyncpg.Connection, rows: List[Tuple[str, str, st
"character_name",
"storage_type",
"item_name",
+ "item_id",
"quantity",
"last_updated",
],
@@ -130,15 +138,24 @@ async def load_inventory(csv_path: pathlib.Path) -> None:
await truncate_inventory(conn)
# Parse CSV
- rows: List[Tuple[str, str, str, int]] = []
+ rows: List[Tuple[str, str, str, int, int]] = []
with csv_path.open(newline="", encoding="utf-8") as f:
reader = csv.DictReader(f, delimiter=";", quotechar='"')
+ names_set = set()
+ for r in reader:
+ names_set.add(r["item"].strip())
+ # fetch ids
+ id_rows = await conn.fetch("SELECT id,name FROM all_items WHERE name = ANY($1::text[])", list(names_set))
+ id_map = {row["name"]: row["id"] for row in id_rows}
+ f.seek(0)
+ next(reader) # skip header again
for r in reader:
char = r["char"].strip()
storage = r["storage"].strip()
item = r["item"].strip()
qty = int(r["quantity"].strip()) if r["quantity"].strip() else 0
- rows.append((char, storage, item, qty, _dt.datetime.utcnow()))
+ item_id = id_map.get(item)
+ rows.append((char, storage, item, item_id, qty, _dt.datetime.utcnow()))
await copy_csv_to_db(conn, rows)
print(f"Inserted {len(rows)} inventory rows.")