From cfa2eff6ef9f94a3956d39096b9f1cc3ebee5045 Mon Sep 17 00:00:00 2001 From: Aodhan Date: Mon, 7 Jul 2025 13:39:46 +0100 Subject: [PATCH] Initial commit --- .gitignore | 53 + FFXI_ITEMS.session.sql | 59 + README.md | 135 + TODO.md | 46 + backend/Dockerfile | 15 + backend/app/database.py | 35 + backend/app/main.py | 77 + backend/app/models.py | 39 + backend/app/recipes_router.py | 177 + backend/app/router.py | 205 + backend/requirements.txt | 6 + datasets/Alchemy.txt | 8243 ++++++++++++++++ datasets/Alchemy_v2.csv | 557 ++ datasets/Bonecraft.txt | 5193 ++++++++++ datasets/Bonecraft_v2.csv | 360 + datasets/Clothcraft.txt | 7309 ++++++++++++++ datasets/Clothcraft_v2.csv | 516 + datasets/Cooking.txt | 8446 ++++++++++++++++ datasets/Cooking_v2.csv | 516 + datasets/Goldsmithing.txt | 8497 ++++++++++++++++ datasets/Goldsmithing_v2.csv | 625 ++ datasets/Leathercraft.txt | 6182 ++++++++++++ datasets/Leathercraft_v2.csv | 443 + datasets/Smithing.txt | 8551 +++++++++++++++++ datasets/Smithing_v2.csv | 594 ++ datasets/Woodworking.txt | 7154 ++++++++++++++ datasets/Woodworking_v2.csv | 504 + db.conf | 5 + docker-compose.yml | 16 + ffxi_items.schema | 218 + frontend/index.html | 12 + frontend/package-lock.json | 2462 +++++ frontend/package.json | 27 + frontend/src/App.tsx | 64 + frontend/src/api.ts | 5 + frontend/src/components/Footer.tsx | 21 + frontend/src/components/ItemDetailPanel.tsx | 227 + frontend/src/components/ItemsGrid.tsx | 101 + .../src/components/RecipeDetailDialog.tsx | 78 + .../src/components/RecipesDetailTable.tsx | 124 + frontend/src/components/RecipesTable.tsx | 92 + frontend/src/hooks/useDebounce.ts | 17 + frontend/src/icons/blank.png | Bin 0 -> 4458 bytes frontend/src/icons/key.png | Bin 0 -> 10934 bytes frontend/src/icons/map.png | Bin 0 -> 22916 bytes frontend/src/icons/mount.png | Bin 0 -> 6320 bytes frontend/src/icons/no-icon.png | Bin 0 -> 9202 bytes frontend/src/main.tsx | 35 + frontend/src/pages/Inventory.tsx | 192 + frontend/src/pages/ItemExplorer.tsx | 177 + frontend/src/pages/Recipes.tsx | 172 + frontend/src/pages/Recipes_old.tsx | 101 + frontend/src/types.ts | 19 + frontend/src/vite-env.d.ts | 27 + frontend/tsconfig.json | 21 + frontend/tsconfig.node.json | 9 + frontend/vite.config.ts | 12 + plan.md | 78 + sample_data.txt | 210 + schemas/recipes_woodworking.sql | 20 + scripts/README.md | 88 + scripts/load_recipes_v2_to_db.py | 167 + scripts/load_woodworking_to_db.py | 146 + scripts/load_woodworking_v2_to_db.py | 134 + scripts/populate_spells_from_scrolls.py | 146 + scripts/recipes_to_csv_v2.py | 279 + scripts/requirements.txt | 2 + scripts/woodworking_to_csv.py | 201 + scripts/woodworking_to_csv_v2.py | 210 + 69 files changed, 70452 insertions(+) create mode 100644 .gitignore create mode 100644 FFXI_ITEMS.session.sql create mode 100644 README.md create mode 100644 TODO.md create mode 100644 backend/Dockerfile create mode 100644 backend/app/database.py create mode 100644 backend/app/main.py create mode 100644 backend/app/models.py create mode 100644 backend/app/recipes_router.py create mode 100644 backend/app/router.py create mode 100644 backend/requirements.txt create mode 100644 datasets/Alchemy.txt create mode 100644 datasets/Alchemy_v2.csv create mode 100644 datasets/Bonecraft.txt create mode 100644 datasets/Bonecraft_v2.csv create mode 100644 datasets/Clothcraft.txt create mode 100644 datasets/Clothcraft_v2.csv create mode 100644 datasets/Cooking.txt create mode 100644 datasets/Cooking_v2.csv create mode 100644 datasets/Goldsmithing.txt create mode 100644 datasets/Goldsmithing_v2.csv create mode 100644 datasets/Leathercraft.txt create mode 100644 datasets/Leathercraft_v2.csv create mode 100644 datasets/Smithing.txt create mode 100644 datasets/Smithing_v2.csv create mode 100644 datasets/Woodworking.txt create mode 100644 datasets/Woodworking_v2.csv create mode 100644 db.conf create mode 100644 docker-compose.yml create mode 100644 ffxi_items.schema create mode 100644 frontend/index.html create mode 100644 frontend/package-lock.json create mode 100644 frontend/package.json create mode 100644 frontend/src/App.tsx create mode 100644 frontend/src/api.ts create mode 100644 frontend/src/components/Footer.tsx create mode 100644 frontend/src/components/ItemDetailPanel.tsx create mode 100644 frontend/src/components/ItemsGrid.tsx create mode 100644 frontend/src/components/RecipeDetailDialog.tsx create mode 100644 frontend/src/components/RecipesDetailTable.tsx create mode 100644 frontend/src/components/RecipesTable.tsx create mode 100644 frontend/src/hooks/useDebounce.ts create mode 100644 frontend/src/icons/blank.png create mode 100644 frontend/src/icons/key.png create mode 100644 frontend/src/icons/map.png create mode 100644 frontend/src/icons/mount.png create mode 100644 frontend/src/icons/no-icon.png create mode 100644 frontend/src/main.tsx create mode 100644 frontend/src/pages/Inventory.tsx create mode 100644 frontend/src/pages/ItemExplorer.tsx create mode 100644 frontend/src/pages/Recipes.tsx create mode 100644 frontend/src/pages/Recipes_old.tsx create mode 100644 frontend/src/types.ts create mode 100644 frontend/src/vite-env.d.ts create mode 100644 frontend/tsconfig.json create mode 100644 frontend/tsconfig.node.json create mode 100644 frontend/vite.config.ts create mode 100644 plan.md create mode 100644 sample_data.txt create mode 100644 schemas/recipes_woodworking.sql create mode 100644 scripts/README.md create mode 100644 scripts/load_recipes_v2_to_db.py create mode 100644 scripts/load_woodworking_to_db.py create mode 100644 scripts/load_woodworking_v2_to_db.py create mode 100644 scripts/populate_spells_from_scrolls.py create mode 100644 scripts/recipes_to_csv_v2.py create mode 100644 scripts/requirements.txt create mode 100644 scripts/woodworking_to_csv.py create mode 100644 scripts/woodworking_to_csv_v2.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..29fd7f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,53 @@ +# Global Git ignore for MOG APP project +# ----------------------------------- +# NOTE: Do not exclude .txt, .csv or .conf files as requested. + +# OS / Editor metadata +.DS_Store +Thumbs.db +.idea/ +.vscode/ + +# Python bytecode and caches +__pycache__/ +*.py[cod] +*.pyo +*.pyd + +# Python distribution / packaging +*.egg-info/ +.eggs/ +.build/ + +# Virtual environments (exclude) +venv/ +.env/ +.envs/ +.venv/ +*/venv/ +*/.venv/ +*/env/ + +# Node / JavaScript +node_modules/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Build output +/dist/ +/build/ + +# Test & coverage output +.coverage +coverage/ +htmlcov/ +*.cover + +# Logs +logs/ +*.log + +# Misc +*.swp +*.swo diff --git a/FFXI_ITEMS.session.sql b/FFXI_ITEMS.session.sql new file mode 100644 index 0000000..f0b8659 --- /dev/null +++ b/FFXI_ITEMS.session.sql @@ -0,0 +1,59 @@ +-- ========================================== +-- Populate / refresh spells table from scrolls +-- ========================================== +INSERT INTO spells ( + name, WAR, MNK, WHM, BLM, RDM, THF, PLD, DRK, BST, + BRD, RNG, SAM, NIN, DRG, SMN, BLU, COR, PUP, DNC, + SCH, GEO, RUN +) +SELECT + -- Strip off leading "Scroll of " (case-insensitive) + regexp_replace(name, '^scroll of\\s+', '', 'i') AS name, + + substring(description FROM 'WAR\\s+Lv\\.\\s*(\\d+)')::int AS WAR, + substring(description FROM 'MNK\\s+Lv\\.\\s*(\\d+)')::int AS MNK, + substring(description FROM 'WHM\\s+Lv\\.\\s*(\\d+)')::int AS WHM, + substring(description FROM 'BLM\\s+Lv\\.\\s*(\\d+)')::int AS BLM, + substring(description FROM 'RDM\\s+Lv\\.\\s*(\\d+)')::int AS RDM, + substring(description FROM 'THF\\s+Lv\\.\\s*(\\d+)')::int AS THF, + substring(description FROM 'PLD\\s+Lv\\.\\s*(\\d+)')::int AS PLD, + substring(description FROM 'DRK\\s+Lv\\.\\s*(\\d+)')::int AS DRK, + substring(description FROM 'BST\\s+Lv\\.\\s*(\\d+)')::int AS BST, + substring(description FROM 'BRD\\s+Lv\\.\\s*(\\d+)')::int AS BRD, + substring(description FROM 'RNG\\s+Lv\\.\\s*(\\d+)')::int AS RNG, + substring(description FROM 'SAM\\s+Lv\\.\\s*(\\d+)')::int AS SAM, + substring(description FROM 'NIN\\s+Lv\\.\\s*(\\d+)')::int AS NIN, + substring(description FROM 'DRG\\s+Lv\\.\\s*(\\d+)')::int AS DRG, + substring(description FROM 'SMN\\s+Lv\\.\\s*(\\d+)')::int AS SMN, + substring(description FROM 'BLU\\s+Lv\\.\\s*(\\d+)')::int AS BLU, + substring(description FROM 'COR\\s+Lv\\.\\s*(\\d+)')::int AS COR, + substring(description FROM 'PUP\\s+Lv\\.\\s*(\\d+)')::int AS PUP, + substring(description FROM 'DNC\\s+Lv\\.\\s*(\\d+)')::int AS DNC, + substring(description FROM 'SCH\\s+Lv\\.\\s*(\\d+)')::int AS SCH, + substring(description FROM 'GEO\\s+Lv\\.\\s*(\\d+)')::int AS GEO, + substring(description FROM 'RUN\\s+Lv\\.\\s*(\\d+)')::int AS RUN +FROM usable_items +WHERE type_description = 'SCROLL' +ON CONFLICT (name) DO UPDATE SET + WAR = EXCLUDED.WAR, + MNK = EXCLUDED.MNK, + WHM = EXCLUDED.WHM, + BLM = EXCLUDED.BLM, + RDM = EXCLUDED.RDM, + THF = EXCLUDED.THF, + PLD = EXCLUDED.PLD, + DRK = EXCLUDED.DRK, + BST = EXCLUDED.BST, + BRD = EXCLUDED.BRD, + RNG = EXCLUDED.RNG, + SAM = EXCLUDED.SAM, + NIN = EXCLUDED.NIN, + DRG = EXCLUDED.DRG, + SMN = EXCLUDED.SMN, + BLU = EXCLUDED.BLU, + COR = EXCLUDED.COR, + PUP = EXCLUDED.PUP, + DNC = EXCLUDED.DNC, + SCH = EXCLUDED.SCH, + GEO = EXCLUDED.GEO, + RUN = EXCLUDED.RUN; \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..098fdbc --- /dev/null +++ b/README.md @@ -0,0 +1,135 @@ +# MOG APP – Final Fantasy XI Crafting & Inventory Companion + +> A full-stack web application that helps crafters and adventurers manage items, discover recipes, and plan gear sets for **FFXI**. + +--- + +## Contents + +1. [Key Features](#key-features) +2. [Project Structure](#project-structure) +3. [Prerequisites](#prerequisites) +4. [Getting Started](#getting-started) +5. [Scripts & ETL Pipeline](#scripts--etl-pipeline) +6. [Database Schema](#database-schema) +7. [Development Tasks](#development-tasks) +8. [Contributing](#contributing) + +--- + +## Key Features + +* **Crafting Recipes** – browse every craft with filters, icons, ingredients, HQ yields, and cross-links to inventory. +* **Inventory Manager** – compact grid with tooltips, duplicate highlighting, scroll badges, and wiki links. +* **Item Explorer** – searchable catalogue with dynamic sub-tabs for each item type. +* **Spell Database** – scroll parsing auto-populates a `spells` table with job-level learn data. +* **Responsive UI** – desktop / tablet / mobile layouts. +* **Database-backed** – PostgreSQL stores normalised recipe / item / inventory / spells data. +* **Automation Scripts** – Python ETL & loaders for recipes and spells. + +## Project Structure + +``` +MOG APP/ +├─ datasets/ # Raw .txt recipe dumps and generated *_v2.csv files +├─ scripts/ # Python ETL, DB loaders, helper tools +│ └─ README.md # Detailed script docs +├─ frontend/ # React + TypeScript source (Vite) +├─ TODO.md # High-level roadmap / feature backlog +├─ README.md # ← you are here +└─ db.conf # Local DB credentials (not committed) +``` + +## Prerequisites + +| Stack | Version | Notes | +|-------|---------|-------| +| **Node.js** | ≥ 18 | Front-end build & dev server | +| **npm** / **pnpm** / **yarn** | latest | Your choice – commands below use **npm** | +| **Python** | ≥ 3.9 | ETL scripts, CSV → DB loaders | +| **PostgreSQL** | ≥ 13 | Stores items / recipes / inventory | + +Ensure `db.conf` exists in the root with: + +```ini +PSQL_HOST=localhost +PSQL_PORT=5432 +PSQL_USER=ffxi +PSQL_PASSWORD=ffxi +PSQL_DBNAME=ffxi +``` + +## Getting Started + +### 1. Clone & Install Front-end + +```bash +# From project root +cd frontend +npm install # or yarn / pnpm +npm run dev # Vite dev server ➜ http://localhost:5173/ +``` + +### 2. Generate Recipe CSVs + +```bash +# Still in project root +cd scripts +python recipes_to_csv_v2.py --all # parses all .txt dumps +``` + +### 3. Load Recipes into PostgreSQL + +```bash +python load_recipes_v2_to_db.py # loads all *_v2.csv into recipes_* tables +``` + +The console will display counts per craft. + +### 4. Start the Front-end Again (if not already running) + +Front-end auto-detects DB content via API (to-be-implemented backend) or mocked data. + +## Scripts & ETL Pipeline + +Scripts are documented in `scripts/README.md`. Highlights: + +| Script | Purpose | +|--------|---------| +| `recipes_to_csv_v2.py` | Parse raw craft files to structured CSV (all crafts when no arg). | +| `load_recipes_v2_to_db.py` | Create `recipes_` tables and bulk-load CSVs. | +| `populate_spells_from_scrolls.py` | Extract scroll data & upsert into `spells` table. | + +## Database Schema + +Minimal snapshot (simplified): + +``` +recipes_ +├─ id SERIAL PK +├─ category TEXT +├─ level INT +├─ subcrafts JSONB +├─ name TEXT +├─ crystal TEXT +├─ key_item TEXT +├─ ingredients JSONB +└─ hq_yields JSONB +``` + +Additional tables (items, inventory, etc.) will be added as features mature. + +## Development Tasks + +See `TODO.md` for the current backlog including UI polish, inventory enhancements, cross-section links, and stretch goals (Quest advisor, Gear build planner, AI assistant). + +## Contributing + +Pull requests are welcome! Please: + +1. Fork ➜ feature branch ➜ PR. +2. Follow existing code style (Black for Python, Prettier/ESLint for TS). +3. Update / add tests where relevant. +4. Check off items in `TODO.md` when implemented. + +Enjoy and may your synths never break! ✨ diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..0494cdc --- /dev/null +++ b/TODO.md @@ -0,0 +1,46 @@ +# Project TODO + +## Bugs + +- [X] Pagination not working +- [ ] Fix search in explorer + +## UI Improvements + +- [ ] Mobile / tablet / desktop responsive views +- [ ] Change colours to be more consistent across tabs +- [ ] Add job sub-filters for armour and weapons + +### Inventory UI + +- [x] More compact grid layout +- [x] Tooltips on hover +- [ ] Formatted stat info for weapons and armour +- [ ] Item effects for consumables +- [X] Recipe details for ingredients +- [X] "Scrolls" tab with spell details +- [X] Wiki links for further reading +- [X] Sorting advisor – highlight when the same item appears in multiple inventory tabs +- [ ] Inventory import from CSV + +### Recipes UI + +- [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) + +## Cross-section Linking + +- [ ] Clickable items in recipe table / inventory that open the same item in the explorer + +## Stretch Goals + +- [ ] Quest advisor +- [ ] Gear build advisor +- [ ] AI assistant powered by fine-tuned FFXI wiki data +- [ ] Frontend DB editor to correct data / add icons diff --git a/backend/Dockerfile b/backend/Dockerfile new file mode 100644 index 0000000..c2e1597 --- /dev/null +++ b/backend/Dockerfile @@ -0,0 +1,15 @@ +FROM python:3.11-slim + +WORKDIR /app + +# Install dependencies +COPY requirements.txt ./ +RUN pip install --no-cache-dir -r requirements.txt + +# Copy application code +COPY app ./app + +# Environment variables will be supplied via docker-compose (.env) +ENV PYTHONPATH=/app + +CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"] diff --git a/backend/app/database.py b/backend/app/database.py new file mode 100644 index 0000000..e30a81e --- /dev/null +++ b/backend/app/database.py @@ -0,0 +1,35 @@ +import os +from pathlib import Path + +from sqlalchemy.ext.asyncio import AsyncSession, create_async_engine, async_sessionmaker +from sqlalchemy.orm import declarative_base +from dotenv import load_dotenv + +# Try loading ../db.conf into environment variables +PROJECT_ROOT = Path(__file__).resolve().parents[2] +DB_CONF = PROJECT_ROOT / "db.conf" +if DB_CONF.exists(): + load_dotenv(DB_CONF) +else: + load_dotenv() + +DB_HOST = os.getenv("PSQL_HOST", "localhost") +DB_PORT = os.getenv("PSQL_PORT", "5432") +DB_USER = os.getenv("PSQL_USER", "postgres") +DB_PASSWORD = os.getenv("PSQL_PASSWORD", "") +DB_NAME = os.getenv("PSQL_DBNAME", "ffxi_items") + +DATABASE_URL = ( + f"postgresql+asyncpg://{DB_USER}:{DB_PASSWORD}@{DB_HOST}:{DB_PORT}/{DB_NAME}" +) + +engine = create_async_engine(DATABASE_URL, echo=False, pool_size=10, max_overflow=20) +AsyncSessionLocal: async_sessionmaker[AsyncSession] = async_sessionmaker( + bind=engine, expire_on_commit=False +) + +Base = declarative_base() + +async def get_session() -> AsyncSession: + async with AsyncSessionLocal() as session: + yield session diff --git a/backend/app/main.py b/backend/app/main.py new file mode 100644 index 0000000..082b458 --- /dev/null +++ b/backend/app/main.py @@ -0,0 +1,77 @@ +from fastapi import FastAPI + +from .router import router +from .recipes_router import router as recipes_router +from .database import engine +from sqlalchemy import text + +app = FastAPI(title="FFXI Item Browser API") + +# Ensure all_items view exists on startup +@app.on_event("startup") +async def ensure_view(): + """Recreate the materialized view `all_items` each startup to ensure schema consistency. + The view merges all *_items tables and exposes columns: id, name, description, icon_id, type_description. + Some source tables may lack `description` or `icon_id`; NULLs are substituted in those cases. + """ + async with engine.begin() as conn: + # Drop existing view if present + await conn.execute(text("DROP VIEW IF EXISTS all_items")) + + # Discover item tables + table_rows = await conn.execute( + text( + "SELECT tablename FROM pg_tables WHERE schemaname='public'" + " AND tablename LIKE '%_items' AND tablename NOT IN ('inventory')" + ) + ) + tables = [r[0] for r in table_rows] + if not tables: + return + + selects = [] + for t in tables: + desc_exists = await conn.scalar( + text( + """ + SELECT EXISTS ( + SELECT 1 FROM information_schema.columns + WHERE table_name=:table AND column_name='description' + ) + """), + {"table": t}, + ) + icon_exists = await conn.scalar( + text( + """ + SELECT EXISTS ( + SELECT 1 FROM information_schema.columns + WHERE table_name=:table AND column_name='icon_id' + ) + """), + {"table": t}, + ) + desc_col = "description" if desc_exists else "NULL" + icon_col = "icon_id" if icon_exists else "NULL" + selects.append( + f"SELECT id, name, {desc_col} AS description, {icon_col} AS icon_id, type_description FROM {t}" + ) + + union_sql = " UNION ALL ".join(selects) + await conn.execute(text(f"CREATE VIEW all_items AS {union_sql}")) + await conn.commit() + +# Mount API routes +app.include_router(router, prefix="/api") +app.include_router(recipes_router, prefix="/api") + + +@app.get("/health") +async def health(): + return {"status": "ok"} + + +if __name__ == "__main__": + import uvicorn + + uvicorn.run("app.main:app", host="0.0.0.0", port=8000, reload=True) diff --git a/backend/app/models.py b/backend/app/models.py new file mode 100644 index 0000000..950a86c --- /dev/null +++ b/backend/app/models.py @@ -0,0 +1,39 @@ +"""SQLAlchemy models (minimal to get API running). +For full production use we should reflected or generate models from the DB, but +this subset is enough to power metadata + inventory endpoints. +""" +from datetime import datetime +from sqlalchemy import Column, Integer, String, DateTime +from sqlalchemy.orm import declarative_base + +Base = declarative_base() + +class Inventory(Base): + __tablename__ = "inventory" + + id = Column(Integer, primary_key=True) + character_name = Column(String) + storage_type = Column(String) + item_name = Column(String) + quantity = Column(Integer) + last_updated = Column(DateTime, default=datetime.utcnow) + + +class Spell(Base): + """Spell table with job level columns (selected jobs only).""" + + __tablename__ = "spells" + + name = Column(String, primary_key=True) + run = Column(Integer, nullable=True) + whm = Column(Integer, nullable=True) + blm = Column(Integer, nullable=True) + rdm = Column(Integer, nullable=True) + pld = Column(Integer, nullable=True) + drk = Column(Integer, nullable=True) + brd = Column(Integer, nullable=True) + nin = Column(Integer, nullable=True) + smn = Column(Integer, nullable=True) + cor = Column(Integer, nullable=True) + sch = Column(Integer, nullable=True) + geo = Column(Integer, nullable=True) diff --git a/backend/app/recipes_router.py b/backend/app/recipes_router.py new file mode 100644 index 0000000..dfc6f4b --- /dev/null +++ b/backend/app/recipes_router.py @@ -0,0 +1,177 @@ +"""Router exposing crafting recipe endpoints. + +This is separated from `router.py` to keep modules focused. +""" +from __future__ import annotations + +from typing import List, Optional, Tuple, Any + +from fastapi import APIRouter, Depends, HTTPException, Path, Query +from sqlalchemy import text +from sqlalchemy.ext.asyncio import AsyncSession +from pydantic import BaseModel + +from .database import get_session + +# Map craft names -> table names in Postgres +ALLOWED_CRAFTS = { + "woodworking": "recipes_woodworking", + "smithing": "recipes_smithing", + "alchemy": "recipes_alchemy", + "bonecraft": "recipes_bonecraft", + "goldsmithing": "recipes_goldsmithing", + "clothcraft": "recipes_clothcraft", + "leathercraft": "recipes_leathercraft", + "cooking": "recipes_cooking", +} + +router = APIRouter(tags=["recipes"]) + +class RecipeUsageSummary(BaseModel): + craft: str + id: int + name: str + level: int + +class ItemRecipeUsage(BaseModel): + crafted: list[RecipeUsageSummary] = [] + ingredient: list[RecipeUsageSummary] = [] + + +class RecipeDetail(BaseModel): + id: int + name: str + level: int + category: str + crystal: str + key_item: Optional[str] | None = None + ingredients: List[Tuple[str, int]] + hq_yields: List[Optional[Tuple[str, int]]] + subcrafts: List[Tuple[str, int]] + + class Config: + from_attributes = True + + +def _craft_table(craft: str) -> str: + craft_lower = craft.lower() + if craft_lower not in ALLOWED_CRAFTS: + raise HTTPException(status_code=404, detail="Unknown craft") + return ALLOWED_CRAFTS[craft_lower] + + +@router.get("/recipes/{craft}", response_model=List[RecipeDetail]) +async def list_recipes( + craft: str = Path(..., description="Craft name, e.g. woodworking"), + + session: AsyncSession = Depends(get_session), +): + """Return full list of recipes for a craft.""" + table = _craft_table(craft) + q = text(f"SELECT * FROM {table} ORDER BY level, name") + result = await session.execute(q) + rows = result.fetchall() + print("[DEBUG] list_recipes", table, len(rows)) + details: List[RecipeDetail] = [] + for r in rows: + details.append( + RecipeDetail( + id=r.id, + name=r.name, + level=r.level, + category=r.category, + crystal=r.crystal, + key_item=r.key_item, + ingredients=_to_list_tuples(r.ingredients), + hq_yields=[tuple(h) if h else None for h in r.hq_yields] if r.hq_yields else [], + subcrafts=_to_list_tuples(r.subcrafts), + ) + ) + return details + + +def _to_list_tuples(value: Any) -> List[Tuple[str, int]]: + """Convert JSON/array from Postgres to List[Tuple[str, int]].""" + if not value: + return [] + # asyncpg already converts jsonb to Python lists/dicts + formatted: List[Tuple[str, int]] = [] + for item in value: + # Accept [name, qty] or {"name": n, "qty": q} + if isinstance(item, (list, tuple)) and len(item) == 2: + name, qty = item + elif isinstance(item, dict): + name = item.get("0") or item.get("name") or item.get("item") + qty = item.get("1") or item.get("qty") or item.get("quantity") + else: + # Fallback: treat as string name, qty=1 + name, qty = str(item), 1 + if name is None or qty is None: + continue + try: + qty_int = int(qty) + except Exception: + qty_int = 1 + formatted.append((str(name), qty_int)) + return formatted + + +@router.get("/recipes/usage/{item_name}", response_model=ItemRecipeUsage) +async def item_recipe_usage(item_name: str, session: AsyncSession = Depends(get_session)): + """Return lists of recipes that craft `item_name` or use it as an ingredient (excluding crystals).""" + if item_name.lower().endswith(" crystal"): + return ItemRecipeUsage() + + crafted: list[RecipeUsageSummary] = [] + ingredient: list[RecipeUsageSummary] = [] + + for craft, table in ALLOWED_CRAFTS.items(): + # Crafted results + q1 = text(f"SELECT id, name, level FROM {table} WHERE name = :n LIMIT 50") + res1 = await session.execute(q1, {"n": item_name}) + crafted.extend( + [RecipeUsageSummary(craft=craft, id=r.id, name=r.name, level=r.level) for r in res1.fetchall()] + ) + + # As ingredient (simple text match in JSON/array column) + q2 = text( + f"SELECT id, name, level FROM {table} WHERE ingredients::text ILIKE :pat LIMIT 50" + ) + res2 = await session.execute(q2, {"pat": f"%{item_name}%"}) + 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 + ): + ingredient.append( + RecipeUsageSummary(craft=craft, id=r.id, name=r.name, level=r.level) + ) + + return ItemRecipeUsage(crafted=crafted, ingredient=ingredient) + + +@router.get("/recipes/{craft}/{recipe_id}", response_model=RecipeDetail) +async def recipe_detail( + craft: str = Path(..., description="Craft name"), + recipe_id: int = Path(..., description="Recipe ID"), + session: AsyncSession = Depends(get_session), +): + """Return full recipe record.""" + table = _craft_table(craft) + q = text(f"SELECT * FROM {table} WHERE id = :id LIMIT 1") + result = await session.execute(q, {"id": recipe_id}) + row = result.fetchone() + if not row: + raise HTTPException(status_code=404, detail="Recipe not found") + print("[DEBUG] recipe_detail", craft, recipe_id) + + return RecipeDetail( + id=row.id, + name=row.name, + level=row.level, + category=row.category, + crystal=row.crystal, + key_item=row.key_item, + ingredients=_to_list_tuples(row.ingredients), + hq_yields=[tuple(h) if h else None for h in row.hq_yields] if row.hq_yields else [], + subcrafts=_to_list_tuples(row.subcrafts), + ) diff --git a/backend/app/router.py b/backend/app/router.py new file mode 100644 index 0000000..d185dfd --- /dev/null +++ b/backend/app/router.py @@ -0,0 +1,205 @@ +from typing import List, Optional, Tuple, Any +from datetime import datetime + +from fastapi import APIRouter, Depends, Query, HTTPException, Path, Response +from sqlalchemy import text, select +from sqlalchemy.ext.asyncio import AsyncSession +from pydantic import BaseModel + +from .database import get_session +from .models import Inventory + +router = APIRouter() + +# --------------------------------------------------------------------------- +# Crafting Recipes endpoints + +ALLOWED_CRAFTS = { + "woodworking": "recipes_woodworking", + # Future crafts can be added here, e.g. "smithing": "recipes_smithing" +} + + + +class MetadataResponse(BaseModel): + storage_types: List[str] + type_descriptions: List[str] + + +@router.get("/metadata", response_model=MetadataResponse) +async def metadata(session: AsyncSession = Depends(get_session)): + """Return distinct storage types and type descriptions.""" + storage_q = await session.execute(text("SELECT DISTINCT storage_type FROM inventory ORDER BY storage_type")) + storage_types = [row[0] for row in storage_q.fetchall() if row[0]] + + type_q = await session.execute(text("SELECT DISTINCT type_description FROM all_items ORDER BY type_description")) + original_types = {row[0] for row in type_q.fetchall() if row[0]} + + processed_types = set(original_types) + has_nothing_or_unknown = 'NOTHING' in processed_types or 'UNKNOWN' in processed_types + + if 'NOTHING' in processed_types: + processed_types.remove('NOTHING') + if 'UNKNOWN' in processed_types: + processed_types.remove('UNKNOWN') + + if has_nothing_or_unknown: + processed_types.add('MANNEQUIN') + + type_descriptions = sorted(list(processed_types)) + + return MetadataResponse(storage_types=storage_types, type_descriptions=type_descriptions) + + +class InventoryItem(BaseModel): + id: int + item_name: str + quantity: int + storage_type: str + description: Optional[str] + icon_id: Optional[str] + type_description: Optional[str] + last_updated: Optional[datetime] + + class Config: + from_attributes = True + + +@router.get("/inventory/{character}", response_model=List[InventoryItem]) +async def inventory( + character: str, + storage_type: Optional[str] = Query(None), + session: AsyncSession = Depends(get_session), +): + """Return items for a character, optionally filtered by storage_type.""" + base_sql = """ + SELECT i.*, ai.description, ai.icon_id, ai.type_description + FROM inventory i + LEFT JOIN all_items ai ON ai.name = i.item_name + WHERE i.character_name = :char + """ + params = {"char": character} + if storage_type: + base_sql += " AND i.storage_type = :storage" + params["storage"] = storage_type + q = text(base_sql) + result = await session.execute(q, params) + rows = result.fetchall() + return [InventoryItem( + id=r.id, + item_name=r.item_name, + quantity=r.quantity, + storage_type=r.storage_type, + description=r.description, + icon_id=r.icon_id, + type_description=r.type_description, + last_updated=r.last_updated, + ) for r in rows] + + +class ItemSummary(BaseModel): + id: int + name: str + icon_id: Optional[str] + type_description: Optional[str] + + +@router.get("/items", response_model=List[ItemSummary]) +async def items( + response: Response, + type: Optional[str] = Query(None, alias="type"), + search: Optional[str] = Query(None, description="Substring search on item name"), + page: int = Query(1, ge=1), + page_size: int = Query(40, ge=1, le=100), + session: AsyncSession = Depends(get_session), +): + """Return items from all_items view with pagination.""" + offset = (page - 1) * page_size + params = {"limit": page_size, "offset": offset} + where_clauses = ["name != '.'"] + + if type: + if type == 'MANNEQUIN': + where_clauses.append("type_description IN ('MANNEQUIN', 'NOTHING', 'UNKNOWN')") + else: + where_clauses.append("type_description = :type") + params["type"] = type + + if search: + where_clauses.append("name ILIKE :search") + params["search"] = f"%{search}%" + + where_sql = f"WHERE {' AND '.join(where_clauses)}" if where_clauses else "" + + # Calculate total count for pagination + count_q = text(f"SELECT COUNT(*) FROM all_items {where_sql}") + # Use only relevant params for count query (exclude limit/offset) + count_params = {k: v for k, v in params.items() if k not in ("limit", "offset")} + total_res = await session.execute(count_q, count_params) + total_count = total_res.scalar() or 0 + response.headers["X-Total-Count"] = str(total_count) + + q = text( + f"SELECT id, name, icon_id, type_description FROM all_items {where_sql} ORDER BY id LIMIT :limit OFFSET :offset" + ) + result = await session.execute(q, params) + rows = result.fetchall() + return [ItemSummary(id=r.id, name=r.name, icon_id=r.icon_id, type_description=r.type_description) for r in rows] + + +class ItemDetail(BaseModel): + id: int + name: str + description: Optional[str] + icon_id: Optional[str] + type_description: Optional[str] + + +@router.get("/icon/{icon_id}") +async def get_icon(icon_id: str, session: AsyncSession = Depends(get_session)): + q = text("SELECT image_data, image_format, image_encoding FROM item_icons WHERE id = :id LIMIT 1") + res = await session.execute(q, {"id": icon_id}) + row = res.fetchone() + if not row: + raise HTTPException(status_code=404, detail="Icon not found") + import base64 + if row.image_encoding == "base64": + data_bytes = base64.b64decode(row.image_data) + else: + data_bytes = row.image_data + media_type = f"image/{row.image_format.split('/')[-1]}" if row.image_format else "image/png" + from fastapi.responses import Response + return Response(content=data_bytes, media_type=media_type) + + +@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") + row = (await session.execute(q, {"n": item_name})).fetchone() + if not row: + raise HTTPException(status_code=404, detail="Item not found") + return ItemDetail( + id=row.id, + name=row.name, + description=row.description, + icon_id=row.icon_id, + type_description=row.type_description, + ) + + +@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() + if not row: + raise HTTPException(status_code=404, detail="Item not found") + + return ItemDetail( + id=row.id, + name=row.name, + description=row.description, + icon_id=row.icon_id, + type_description=row.type_description, + ) diff --git a/backend/requirements.txt b/backend/requirements.txt new file mode 100644 index 0000000..d2ac312 --- /dev/null +++ b/backend/requirements.txt @@ -0,0 +1,6 @@ +fastapi==0.110.0 +uvicorn[standard]==0.29.0 +SQLAlchemy[asyncio]==2.0.27 +asyncpg==0.29.0 +pydantic==2.7.1 +python-dotenv==1.0.1 diff --git a/datasets/Alchemy.txt b/datasets/Alchemy.txt new file mode 100644 index 0000000..487601f --- /dev/null +++ b/datasets/Alchemy.txt @@ -0,0 +1,8243 @@ +Alchemy Crafted Items +Amateur (1-10) +Synthesis Information +Yield Requirements Ingredients + + NQ: Orchestrion + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (1) + + + Earth Crystal + Copy of Melodious Plans + Timbre Case Kit + Musichinery Kit + + NQ: Frosty Cap + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (1) + + + Earth Crystal + Brilliant Snow + Snowman Cap + + NQ: Celestial Globe + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (1) + + + Earth Crystal + Comet Fragment + Puny Planet Kit + Cosmic Designs + + NQ: Distilled WaterVerification Needed + + HQ1: Distilled Water x6 + HQ2: Distilled Water x9 + HQ3: Distilled Water x12 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (2) + + + Lightning Crystal + Tahrongi Cactus + + NQ: M. Counteragent x2 + HQ1: M. Counteragent x3 + HQ2: M. Counteragent x4 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (1~2) +Key Item: Miasmal counteragent recipe + + + Water Crystal + Seashell + Salinator + Distilled Water x2 + + NQ: Antidote + + HQ1: Antidote x2 + HQ2: Antidote x3 + HQ3: Antidote x4 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (3) + + + Water Crystal + Distilled Water + San d'Orian Grape + Wijnruit + + NQ: Antidote x3 + + HQ1: Antidote x6 + HQ2: Antidote x9 + HQ3: Antidote x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (3) +Key Item: Trituration + + + Water Crystal + Distilled Water + San d'Orian Grape x3 + Wijnruit x3 + Triturator + + NQ: Black Ink x2 + + HQ1: Black Ink x4 + HQ2: Black Ink x6 + HQ3: Black Ink x8 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (4) + + + Dark Crystal + Nebimonite + Distilled Water + Windurstian Tea Leaves x2 + + NQ: Black Ink + + HQ1: Black Ink x2 + HQ2: Black Ink x4 + HQ3: Black Ink x6 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (4) + + + Dark Crystal + Nebimonite + Distilled Water + Willow Log + + NQ: Black Ink x2 + + HQ1: Black Ink x4 + HQ2: Black Ink x6 + HQ3: Black Ink x8 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (4) + + + Dark Crystal + Cone Calamary x2 + Distilled Water + Willow Log + + NQ: Black Ink x2 + + HQ1: Black Ink x4 + HQ2: Black Ink x6 + HQ3: Black Ink x8 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (4) + + + Dark Crystal + Cone Calamary x2 + Distilled Water + Windurstian Tea Leaves + + NQ: Black Ink x2 + + HQ1: Black Ink x4 + HQ2: Black Ink x6 + HQ3: Black Ink x8 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (4) + + + Dark Crystal + Kalamar x2 + Distilled Water + Imperial Tea Leaves + + NQ: Black Ink x2 + + HQ1: Black Ink x4 + HQ2: Black Ink x6 + HQ3: Black Ink x8 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (4) + + + Dark Crystal + Kalamar x2 + Distilled Water + Willow Log + + NQ: Beeswax + + HQ1: Beeswax x2 + HQ2: Beeswax x3 + HQ3: Beeswax x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (5) + + + Fire Crystal + Beehive Chip x3 + Distilled Water + + NQ: Beeswax x2 + + HQ1: Beeswax x4 + HQ2: Beeswax x6 + HQ3: Beeswax x8 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (5) +Key Item: Trituration + + + Fire Crystal + Beehive Chip x6 + Distilled Water + Triturator + + NQ: Beeswax x2 + + HQ1: Beeswax x3 + HQ2: Beeswax x4 + HQ3: Beeswax x5 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (5) + + + Fire Crystal + Distilled Water + Pephredo Hive Chip x2 + + NQ: Beeswax x4 + + HQ1: Beeswax x6 + HQ2: Beeswax x8 + HQ3: Beeswax x10 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (5) +Key Item: Trituration + + + Fire Crystal + Distilled Water + Pephredo Hive Chip x4 + Triturator + + NQ: Black Ink x2 + + HQ1: Black Ink x4 + HQ2: Black Ink x6 + HQ3: Black Ink x8 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (5) + + + Dark Crystal + Grimmonite + Distilled Water + Windurstian Tea Leaves x2 + + NQ: Black Ink x2 + + HQ1: Black Ink x4 + HQ2: Black Ink x6 + HQ3: Black Ink x8 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (5) + + + Dark Crystal + Ahtapot + Distilled Water + Imperial Tea Leaves x2 + + NQ: Black Ink x2 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (5) + + + Dark Crystal + Alchemy Kit 5 + + NQ: Enchanted Ink + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (5) + + + Dark Crystal + Black Ink + Magicked Blood + + NQ: Tsurara x10 + + HQ1: Tsurara x20 + HQ2: Tsurara x50 + HQ3: Tsurara x99 + + IceCrystal-Icon.gif + +Main Craft: Alchemy - (6) + + + Ice Crystal + Distilled Water x2 + Rock Salt + + NQ: Water Tank + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (6) +Sub Craft(s): Leathercraft - (1) + + + Earth Crystal + Brass Tank + Sheep Leather + Water Cluster + + NQ: Water Tank + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (6) +Sub Craft(s): Leathercraft - (1) + + + Earth Crystal + Brass Tank + Karakul Leather + Water Cluster + + NQ: Animal Glue + + HQ1: Animal Glue x2 + HQ2: Animal Glue x3 + HQ3: Animal Glue x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (7) + + + Fire Crystal + Bone Chip x2 + Distilled Water + Rabbit Hide + + NQ: Animal Glue x2 + + HQ1: Animal Glue x4 + HQ2: Animal Glue x6 + HQ3: Animal Glue x8 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (7) +Key Item: Trituration + + + Fire Crystal + Bone Chip x4 + Distilled Water + Rabbit Hide x2 + Triturator + + NQ: Silencing Potion + + HQ1: Silencing Potion x2 + HQ2: Silencing Potion x3 + HQ3: Silencing Potion x4 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (7) + + + Water Crystal + Kazham Peppers + Scream Fungus + Two-Leaf Mandragora Bud + + NQ: Muting Potion + + HQ1: Muting Potion x2 + HQ2: Muting Potion x3 + HQ3: Muting Potion x4 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (7) +Key Item: Alchemic Ensorcellment + + + Water Crystal + Dark Anima + Kazham Peppers + Scream Fungus + Two-Leaf Mandragora Bud + Water Anima + Wind Anima + + NQ: Silencing Potion + + HQ1: Silencing Potion x2 + HQ2: Silencing Potion x3 + HQ3: Silencing Potion x4 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (8) + + + Water Crystal + Kazham Peppers + Scream Fungus + Lycopodium Flower + + NQ: Silencing Potion + + HQ1: Silencing Potion x2 + HQ2: Silencing Potion x3 + HQ3: Silencing Potion x4 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (8) + + + Lightning Crystal + Distilled Water + Sobbing Fungus x2 + + NQ: Muting Potion + + HQ1: Muting Potion x2 + HQ2: Muting Potion x3 + HQ3: Muting Potion x4 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (8) +Key Item: Alchemic Ensorcellment + + + Lightning Crystal + Dark Anima + Distilled Water + Sobbing Fungus x2 + Water Anima + Wind Anima + + NQ: Silencing Potion x2 + + HQ1: Silencing Potion x4 + HQ2: Silencing Potion x6 + HQ3: Silencing Potion x8 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (8) + + + Lightning Crystal + Cobalt Jellyfish + Mercury + + NQ: Silencing Potion x2 + + HQ1: Silencing Potion x4 + HQ2: Silencing Potion x6 + HQ3: Silencing Potion x8 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (8) + + + Lightning Crystal + Denizanasi + Mercury + + NQ: Wax Sword + + HQ1: Wax Sword +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (9) + + + Water Crystal + Beeswax + Bronze Sword + + NQ: Enfeeblement Kit of Silence + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (8) + + + Earth Crystal + Padded Box + Fine Parchment x2 + Enchanted Ink x2 + Silencing Potion + + NQ: Enfeeblement Kit of Sleep + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (8) + + + Earth Crystal + Padded Box + Fine Parchment x2 + Enchanted Ink x2 + Sleeping Potion + + NQ: Enfeeblement Kit of Poison + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (8) + + + Earth Crystal + Padded Box + Fine Parchment x2 + Enchanted Ink x2 + Poison Potion + + NQ: Enfeeblement Kit of Blindness + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (8) + + + Earth Crystal + Padded Box + Fine Parchment x2 + Enchanted Ink x2 + Blinding Potion + + NQ: Cornstarch + + HQ1: Cornstarch x2 + HQ2: Cornstarch x3 + HQ3: Cornstarch x4 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (9) + + + Lightning Crystal + Millioncorn x2 + + NQ: Poison Dust + + HQ1: Poison Dust x2 + HQ2: Poison Dust x3 + HQ3: Poison Dust x4 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (9) + + + Lightning Crystal + Deathball x2 + + NQ: Deodorizer + + HQ1: Deodorizer x2 + HQ2: Deodorizer x3 + HQ3: Deodorizer x4 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (10) + + + Wind Crystal + Chamomile + Olive Oil + Sage + + NQ: Deodorizer x2 + + HQ1: Deodorizer x4 + HQ2: Deodorizer x6 + HQ3: Deodorizer x8 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (10) +Key Item: Trituration + + + Wind Crystal + Chamomile x2 + Olive Oil x2 + Sage x2 + Triturator + + NQ: Black Ink x6 + + HQ1: Black Ink x8 + HQ2: Black Ink x10 + HQ3: Black Ink x12 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (10) + + + Dark Crystal + Distilled Water + Gigant Squid + Windurstian Tea Leaves x2 + + NQ: Deodorizer + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (10) + + + Wind Crystal + Alchemy Kit 10 + + +Recruit (11-20) +Synthesis Information +Yield Requirements Ingredients + + NQ: Coffee Beans + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (11) + + + Wind Crystal + Coffee Cherries + + NQ: Copper Nugget x12 + + HQ1: Iron Nugget x9 + HQ2: Silver Nugget x6 + HQ3: Gold Nugget x3 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (11) + + + Fire Crystal + Meteorite + Panacea + + NQ: Poison Dust + + HQ1: Poison Dust x2 + HQ2: Poison Dust x3 + HQ3: Poison Dust x4 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (11) + + + Lightning Crystal + Giant Stinger x2 + + NQ: Poison Dust + + HQ1: Poison Dust x2 + HQ2: Poison Dust x3 + HQ3: Poison Dust x4 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (12) + + + Lightning Crystal + Yellow Globe x2 + + NQ: Silence Dagger + + HQ: Silence Dagger +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (13) + + + Water Crystal + Animal Glue + Brass Dagger + Silencing Potion + + NQ: Miracle Mulch x2 + + HQ1: Miracle Mulch x4 + HQ2: Miracle Mulch x6 + HQ3: Miracle Mulch x8 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (13) + + + Dark Crystal + Dung + Chocobo Bedding + + NQ: Bee Spatha + + HQ: Bee Spatha +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (14) + + + Water Crystal + Beeswax x2 + Spatha + + NQ: Movalpolos Water + + HQ1: Movalpolos Water x2 + HQ2: Movalpolos Water x3 + HQ3: Movalpolos Water x4 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (14) + + + Wind Crystal + Carbon Dioxide + Distilled Water x4 + + NQ: Cracker x33 + + HQ1: Cracker x66 + HQ2: Cracker x99 + HQ3: Cracker x99 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (15) + + + Earth Crystal + Bast Parchment x2 + Firesand + + NQ: Chocotonic x3 + + HQ1: Chocotonic x6 + HQ2: Chocotonic x9 + HQ3: Chocotonic x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (15) + + + Water Crystal + Attohwa Ginseng + Distilled Water + Gysahl Greens + + NQ: Gysahl Bomb x3 + + HQ1: Gysahl Bomb x6 + HQ2: Gysahl Bomb x9 + HQ3: Gysahl Bomb x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (15) + + + Earth Crystal + Bast Parchment + Firesand + Gysahl Greens + + NQ: Spore Bomb x3 + + HQ1: Spore Bomb x6 + HQ2: Spore Bomb x9 + HQ3: Spore Bomb x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (15) + + + Earth Crystal + Bast Parchment + Firesand + Danceshroom + + NQ: Cracker x33 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (15) + + + Earth Crystal + Alchemy Kit 15 + + NQ: Mercury + + HQ1: Mercury x2 + HQ2: Mercury x3 + HQ3: Mercury x4 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (16) + + + Lightning Crystal + Cobalt Jellyfish x4 + + NQ: Hushed Dagger + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (17) + + + Water Crystal + Animal Glue + Muting Potion + Silence Dagger + + NQ: Mercury + + HQ1: Mercury x2 + HQ2: Mercury x3 + HQ3: Mercury x4 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (17) + + + Lightning Crystal + Denizanasi x4 + + NQ: Silence Baghnakhs + + HQ1: Silence Baghnakhs +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (17) + + + Water Crystal + Animal Glue + Brass Baghnakhs + Silencing Potion + + NQ: Fire Card x33 + + HQ1: Fire Card x66 + HQ2: Fire Card x99 + HQ3: Fire Card x99 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (17) + + + Light Crystal + Fire Cluster + Mercury + Polyflan Paper + + NQ: Ice Card x33 + + HQ1: Ice Card x66 + HQ2: Ice Card x99 + HQ3: Ice Card x99 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (17) + + + Light Crystal + Ice Cluster + Mercury + Polyflan Paper + + NQ: Wind Card x33 + + HQ1: Wind Card x66 + HQ2: Wind Card x99 + HQ3: Wind Card x99 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (17) + + + Light Crystal + Wind Cluster + Mercury + Polyflan Paper + + NQ: Earth Card x33 + + HQ1: Earth Card x66 + HQ2: Earth Card x99 + HQ3: Earth Card x99 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (17) + + + Light Crystal + Earth Cluster + Mercury + Polyflan Paper + + NQ: Thunder Card x33 + + HQ1: Thunder Card x66 + HQ2: Thunder Card x99 + HQ3: Thunder Card x99 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (17) + + + Light Crystal + Lightning Cluster + Mercury + Polyflan Paper + + NQ: Water Card x33 + + HQ1: Water Card x66 + HQ2: Water Card x99 + HQ3: Water Card x99 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (17) + + + Light Crystal + Water Cluster + Mercury + Polyflan Paper + + NQ: Light Card x33 + + HQ1: Light Card x66 + HQ2: Light Card x99 + HQ3: Light Card x99 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (17) + + + Light Crystal + Light Cluster + Mercury + Polyflan Paper + + NQ: Dark Card x33 + + HQ1: Dark Card x66 + HQ2: Dark Card x99 + HQ3: Dark Card x99 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (17) + + + Light Crystal + Dark Cluster + Mercury + Polyflan Paper + + NQ: Poison Potion + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (18) + + + Water Crystal + Mercury + Poison Dust + + NQ: Poison Potion x3 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (18) +Key Item: Trituration + + + Water Crystal + Mercury x3 + Poison Dust x3 + Triturator + + NQ: Matka + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (18) + + + Fire Crystal + Karugo Clay x5 + + NQ: Kodoku x33 + + HQ1: Kodoku x66 + HQ2: Kodoku x99 + HQ3: Kodoku x99 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (19) + + + Dark Crystal + Elshimo Frog + Lugworm + Shell Bug + + NQ: Coffee Powder + + HQ1: Coffee Powder x2 + HQ2: Coffee Powder x3 + HQ3: Coffee Powder x4 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (19) + + + Wind Crystal + Roast Coffee Beans + + NQ: Kodoku x33 + + HQ1: Kodoku x66 + HQ2: Kodoku x99 + HQ3: Kodoku x99 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (19) + + + Dark Crystal + Caedarva Frog + Lugworm + Shell Bug + + NQ: Echo Drops + + HQ1: Echo Drops x2 + HQ2: Echo Drops x3 + HQ3: Echo Drops x4 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (20) + + + Water Crystal + Distilled Water + Honey + Sage + + NQ: Echo Drops x3 + + HQ1: Echo Drops x6 + HQ2: Echo Drops x9 + HQ3: Echo Drops x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (20) +Key Item: Trituration + + + Water Crystal + Distilled Water + Honey x3 + Sage x3 + Triturator + + NQ: Hushed Baghnakhs + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (20) + + + Water Crystal + Animal Glue + Muting Potion + Silence Baghnakhs + + NQ: Bittern x6 + + HQ1: Bittern x8 + HQ2: Bittern x10 + HQ3: Bittern x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (20) + + + Fire Crystal + Distilled Water + Salinator + + NQ: Hushed Baghnakhs + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (20) + + + Water Crystal + Alchemy Kit 20 + + +Initiate (21-30) +Synthesis Information +Yield Requirements Ingredients + + NQ: Poison Arrowheads x6 + + HQ1: Poison Arrowheads x8 + HQ2: Poison Arrowheads x10 + HQ3: Poison Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (21) +Sub Craft(s): Smithing - (20) + + + Wind Crystal + Animal Glue + Copper Ingot + Iron Ingot + Poison Potion + + NQ: Glass Fiber x2 + + HQ1: Glass Fiber x4 + HQ2: Glass Fiber x6 + HQ3: Glass Fiber x8 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (21) + + + Lightning Crystal + Goblin Mask + + NQ: Carbon Dioxide x6 + + HQ1: Carbon Dioxide x8 + HQ2: Carbon Dioxide x10 + HQ3: Carbon Dioxide x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (21) + + + Fire Crystal + Trumpet Shell + + NQ: Poison Dagger + + HQ: Poison Dagger +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (22) + + + Water Crystal + Animal Glue + Dagger + Poison Potion + + NQ: Baking Soda x6 + + HQ1: Baking Soda x8 + HQ2: Baking Soda x10 + HQ3: Baking Soda x12 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (22) + + + Lightning Crystal + Movalpolos Water + Rock Salt + + NQ: Poison Knife + + HQ: Poison Knife +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (23) + + + Water Crystal + Animal Glue + Knife + Poison Potion + + NQ: Mokuto + + HQ: Mokuto +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (23) + + + Water Crystal + Animal Glue + Shinobi-Gatana + Silencing Potion + + NQ: Silent Oil x4 + + HQ1: Silent Oil x8 + HQ2: Silent Oil x10 + HQ3: Silent Oil x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (24) + + + Water Crystal + Beeswax x2 + Slime Oil + + NQ: Vermilion Lacquer + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (24) + + + Fire Crystal + Mercury + Sulfur + + NQ: Ethereal Vermilion Lacquer + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (25) +Key Item: Alchemic Ensorcellment + + + Fire Crystal + Mercury + Sulfur + Light Anima + Lightning Anima + Water Anima + + NQ: Glass Fiber Fishing Rod + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (25) + + + Light Crystal + Broken Glass Fiber Fishing Rod + + NQ: Poison Baselard + + HQ1: Python Baselard + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (25) + + + Water Crystal + Animal Glue + Baselard + Poison Potion + + NQ: Twinkle Shower x33 + + HQ1: Twinkle Shower x66 + HQ2: Twinkle Shower x99 + HQ3: Twinkle Shower x99 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (25) + + + Earth Crystal + Bast Parchment + Firesand + Twinkle Powder + + NQ: Poison Baselard + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (25) + + + Water Crystal + Alchemy Kit 25 + + NQ: Bathtub + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (25) +Sub Craft(s): Smithing - (??) + + + Fire Crystal + Angelstone + Marble Slab + Sieglinde Putty + Kaolin x2 + White Textile Dye + + NQ: Minnow + + HQ1: Sinking Minnow + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (26) +Sub Craft(s): Goldsmithing - (10) + + + Fire Crystal + Brass Ingot + Glass Fiber + + NQ: Seito + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (26) + + + Water Crystal + Animal Glue + Mokuto + Muting Potion + + NQ: Copper Bullet x33 + + HQ1: Copper Bullet x99 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (26) +Sub Craft(s): Goldsmithing - (6) + + + Fire Crystal + Copper Ingot + Firesand + + NQ: Blinding Potion + + HQ1: Blinding Potion x2 + HQ2: Blinding Potion x3 + HQ3: Blinding Potion x4 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (27) + + + Water Crystal + Crying Mustard + Poison Flour + Sleepshroom + + NQ: Blinding Potion x2 + + HQ1: Blinding Potion x4 + HQ2: Blinding Potion x6 + HQ3: Blinding Potion x8 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (27) +Key Item: Trituration + + + Water Crystal + Crying Mustard x2 + Poison Flour x2 + Sleepshroom x2 + Triturator + + NQ: Blinding Potion x2 + + HQ1: Blinding Potion x4 + HQ2: Blinding Potion x6 + HQ3: Blinding Potion x8 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (28) + + + Lightning Crystal + Mercury + Nebimonite + + NQ: Sairui-Ran x33 + + HQ1: Sairui-Ran x66 + HQ2: Sairui-Ran x99 + HQ2: Sairui-Ran x99 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (28) +Sub Craft(s): Cooking - (11) + + + Earth Crystal + Bast Parchment + Bird Egg + Bomb Ash + Kazham Peppers + + NQ: Automaton Oil x6 + + HQ1: Automaton Oil +1 x6 + HQ2: Automaton Oil +2 x6 + HQ3: Automaton Oil +3 x6 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (28) + + + Water Crystal + Olive Oil + Plasma Oil + Polyflan Paper + + NQ: Pet Roborant x33 + + HQ1: Pet Roborant x66 + HQ2: Pet Roborant x66 + HQ3: Pet Roborant x99 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (28) + + + Water Crystal + Boyahda Moss + Hecteyes Eye + Beast Blood + Scream Fungus + Ca Cuong + + NQ: Sairui-Ran x33 + + HQ1: Sairui-Ran x66 + HQ2: Sairui-Ran x99 + HQ2: Sairui-Ran x99 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (29) +Sub Craft(s): Cooking - (11) + + + Earth Crystal + Bast Parchment + Bird Egg + Djinn Ash + Kazham Peppers + + NQ: Silent Oil x2 + + HQ1: Silent Oil x4 + HQ2: Silent Oil x6 + HQ3: Silent Oil x8 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (29) + + + Water Crystal + Beeswax x2 + Olive Oil + + NQ: Glass Fiber Fishing Rod + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (29) + + + Fire Crystal + Cotton Thread + Glass Fiber x4 + + NQ: Glass Fiber x2 + + HQ1: Glass Fiber x4 + HQ2: Glass Fiber x6 + HQ3: Glass Fiber x8 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (29) + + + Lightning Crystal + Moblin Mask + + NQ: Blue Textile Dye x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (29) + + + Water Crystal + Dyer's Woad + + NQ: Green Textile Dye x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (29) + + + Water Crystal + Imperial Tea Leaves + + NQ: Yellow Textile Dye x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (29) + + + Water Crystal + Turmeric + + NQ: White Textile Dye x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (29) + + + Water Crystal + Baking Soda + + NQ: Red Textile Dye x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (29) + + + Water Crystal + Nopales + + NQ: Eye Drops x2 + + HQ1: Eye Drops x4 + HQ2: Eye Drops x6 + HQ3: Eye Drops x8 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (30) + + + Water Crystal + Ahriman Tears + Chamomile + Distilled Water + + NQ: Eye Drops x4 + + HQ1: Eye Drops x8 + HQ2: Eye Drops x12 + HQ3: Eye Drops x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (30) +Key Item: Trituration + + + Water Crystal + Ahriman Tears x2 + Chamomile x2 + Distilled Water + Triturator + + NQ: Sieglinde Putty + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (30) + + + Earth Crystal + Flaxseed Oil x2 + Shell Powder x2 + Zinc Oxide + + NQ: Sieglinde Putty + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (30) + + + Earth Crystal + Alchemy Kit 30 + + +Novice (31-40) +Synthesis Information +Yield Requirements Ingredients + + NQ: Minnow + + HQ1: Sinking Minnow + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (31) +Sub Craft(s): Goldsmithing - (14) + + + Fire Crystal + Copper Ingot + Glass Fiber + + NQ: Blind Bolt Heads x6 + + HQ1: Blind Bolt Heads x8 + HQ2: Blind Bolt Heads x10 + HQ3: Blind Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (31) +Sub Craft(s): Smithing - (14) + + + Wind Crystal + Animal Glue + Blinding Potion + Bronze Ingot + + NQ: Poison Kukri + + HQ1: Poison Kukri +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (31) + + + Water Crystal + Animal Glue + Kukri + Poison Potion + + NQ: Blind Dagger + + HQ1: Blind Dagger +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (32) + + + Water Crystal + Animal Glue + Bronze Dagger + Blinding Potion + + NQ: Busuto + + HQ1: Busuto +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (33) + + + Water Crystal + Animal Glue + Shinobi-Gatana + Poison Potion + + NQ: Poison Cesti + + HQ1: Poison Cesti +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (33) + + + Water Crystal + Animal Glue + Lizard Cesti + Poison Potion + + NQ: Moblin Putty + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (33) + + + Earth Crystal + Flaxseed Oil x2 + Shell Powder x2 + Zincite x3 + + NQ: Volant Serum x3 + + HQ1: Volant Serum x6 + HQ2: Volant Serum x9 + HQ3: Volant Serum x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (33) +Sub Craft(s): Bonecraft - (27) + + + Water Crystal + Bat Fang x2 + Mercury + + NQ: Blind Knife + + HQ1: Blind Knife +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (34) + + + Water Crystal + Animal Glue + Bronze Knife + Blinding Potion + + NQ: Artificial Lens + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (34) + + + Fire Crystal + Glass Fiber x2 + + NQ: Poison Baghnakhs + + HQ1: Poison Baghnakhs +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (35) + + + Water Crystal + Animal Glue + Baghnakhs + Poison Potion + + NQ: Little Comet x33 + + HQ1: Little Comet x66 + HQ2: Little Comet x99 + HQ3: Little Comet x99 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (35) + + + Earth Crystal + Bast Parchment x2 + Firesand + Rain Lily + + NQ: Fire Fewell x3 + + HQ1: Fire Fewell x6 + HQ2: Fire Fewell x9 + HQ3: Fire Fewell x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (35) + + + Fire Crystal + Slime Oil + Red Rock + Catalytic Oil + + NQ: Ice Fewell x3 + + HQ1: Ice Fewell x6 + HQ2: Ice Fewell x9 + HQ3: Ice Fewell x12 + + IceCrystal-Icon.gif + +Main Craft: Alchemy - (35) + + + Ice Crystal + Slime Oil + Translucent Rock + Catalytic Oil + + NQ: Wind Fewell x3 + + HQ1: Wind Fewell x6 + HQ2: Wind Fewell x9 + HQ3: Wind Fewell x12 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (35) + + + Wind Crystal + Slime Oil + Green Rock + Catalytic Oil + + NQ: Earth Fewell x3 + + HQ1: Earth Fewell x6 + HQ2: Earth Fewell x9 + HQ3: Earth Fewell x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (35) + + + Earth Crystal + Slime Oil + Yellow Rock + Catalytic Oil + + NQ: Lightning Fewell x3 + + HQ1: Lightning Fewell x6 + HQ2: Lightning Fewell x9 + HQ3: Lightning Fewell x12 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (35) + + + Lightning Crystal + Slime Oil + Purple Rock + Catalytic Oil + + NQ: Water Fewell x3 + + HQ1: Water Fewell x6 + HQ2: Water Fewell x9 + HQ3: Water Fewell x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (35) + + + Water Crystal + Slime Oil + Blue Rock + Catalytic Oil + + NQ: Light Fewell x3 + + HQ1: Light Fewell x6 + HQ2: Light Fewell x9 + HQ3: Light Fewell x12 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (35) + + + Light Crystal + Slime Oil + White Rock + Catalytic Oil + + NQ: Dark Fewell x3 + + HQ1: Dark Fewell x6 + HQ2: Dark Fewell x9 + HQ3: Dark Fewell x12 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (35) + + + Dark Crystal + Slime Oil + Black Rock + Catalytic Oil + + NQ: Poison Baghnakhs + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (35) + + + Water Crystal + Alchemy Kit 35 + + NQ: Prism Powder x8 + + HQ1: Prism Powder x10 + HQ2: Prism Powder x11 + HQ3: Prism Powder x12 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (36) + + + Light Crystal + Ahriman Lens + Glass Fiber x2 + + NQ: Polyflan Paper x33 + + HQ1: Polyflan Paper x66 + HQ2: Polyflan Paper x99 + HQ3: Polyflan Paper x99 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (36) + + + Earth Crystal + Polyflan + + NQ: Jusatsu x33 + + HQ1: Jusatsu x66 + HQ2: Jusatsu x99 + HQ3: Jusatsu x99 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (37) + + + Dark Crystal + Bast Parchment + Beastman Blood + Black Ink + + NQ: Chimera Blood + + HQ1: Chimera Blood x2 + HQ2: Chimera Blood x4 Verification Needed + HQ3: Chimera Blood x4 Verification Needed + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (38) + + + Lightning Crystal + Lesser Chigoe + + NQ: Chimera Blood x3 + + HQ1: Chimera Blood x6 + HQ2: Chimera Blood x9 Verification Needed + HQ3: Chimera Blood x9 Verification Needed + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (38) +Key Item: Trituration + + + Lightning Crystal + Lesser Chigoe x3 + Triturator + + NQ: Bronze Bullet x33 + + HQ1: Bronze Bullet x99 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (38) +Sub Craft(s): Smithing - (13) + + + Fire Crystal + Bronze Ingot + Firesand + + NQ: Kongou Inaho x33 + + HQ1: Kongou Inaho x99 + HQ2: Kongou Inaho x99 + HQ3: Kongou Inaho x99 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (38) +Sub Craft(s): Woodworking - (31) + + + Earth Crystal + Bamboo Stick + Copper Nugget + Firesand + + NQ: Poison Claws + + HQ1: Poison Claws +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (38) + + + Water Crystal + Animal Glue + Claws + Poison Potion + + NQ: Automaton Oil +1 x6 + + HQ1: Automaton Oil +1 x9 + HQ2: Automaton Oil +2 x9 Verification Needed + HQ3: Automaton Oil +3 x9 Verification Needed + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (38) + + + Water Crystal + Olive Oil x2 + Plasma Oil + Polyflan Paper + + NQ: Firesand x3 + + HQ1: Firesand x6 + HQ2: Firesand x9 + HQ3: Firesand x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (39) + + + Earth Crystal + Bomb Ash x2 + Yuhtunga Sulfur + + NQ: Inferno Sword + + HQ1: Hellfire Sword + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (39) + + + Earth Crystal + Firesand + Slime Oil + Two-Handed Sword + + NQ: Living Key x2 + + HQ1: Living Key x4 + HQ2: Living Key x6 + HQ3: Living Key x8 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (39) + + + Water Crystal + Beeswax + Malboro Vine + Slime Oil + + NQ: Plasma Oil x33 + + HQ1: Plasma Oil x66 + HQ2: Plasma Oil x99 + HQ3: Plasma Oil x99 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (39) +Key Item: Iatrochemistry + + + Water Crystal + Flan Meat x2 + Mercury + + NQ: Living Key x3 + + HQ1: Living Key x6 + HQ2: Living Key x9 + HQ3: Living Key x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (39) + + + Water Crystal + Beeswax + Rafflesia Vine + Slime Oil + + NQ: Firesand x2 + + HQ1: Firesand x4 + HQ2: Firesand x6 + HQ3: Firesand x8 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (40) + + + Earth Crystal + Bomb Ash x2 + Sulfur + + NQ: Firesand x4 + + HQ1: Firesand x8 + HQ2: Firesand x12 + HQ3: Firesand x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (40) +Key Item: Trituration + + + Earth Crystal + Bomb Ash x4 + Sulfur x2 + Triturator + + NQ: Potion + + HQ1: Potion +1 + HQ2: Potion +2 + HQ3: Potion +3 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (40) + + + Water Crystal + Sage + Lizard Tail + Distilled Water + + NQ: Potion Drop + + HQ1: Potion Drop x2 + HQ2: Potion Drop x3 + HQ3: Potion Drop x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (40) +Key Item: Concoction + + + Fire Crystal + Sage + Lizard Tail + Distilled Water + + NQ: Brimsand x2 + + HQ1: Brimsand x4 + HQ2: Brimsand x6 + HQ3: Brimsand x8 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (40) +Key Item: Alchemic Ensorcellment + + + Earth Crystal + Bomb Ash x2 + Sulfur + Dark Anima + Fire Anima + Water Anima + + NQ: Firesand x2 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (40) + + + Earth Crystal + Alchemy Kit 40 + + +Apprentice (41-50) +Synthesis Information +Yield Requirements Ingredients + + NQ: Bullet x33 + + HQ1: Bullet x99 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (41) +Sub Craft(s): Goldsmithing - (18) + + + Fire Crystal + Brass Ingot + Firesand + + NQ: Prism Powder x6 + + HQ1: Prism Powder x8 + HQ2: Prism Powder x10 + HQ3: Prism Powder x12 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (41) + + + Light Crystal + Artificial Lens + Glass Fiber x2 + + NQ: Prism Powder x12 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (41) +Key Item: Trituration + + + Light Crystal + Artificial Lens x2 + Glass Fiber x4 + Triturator + + NQ: Firesand x2 + + HQ1: Firesand x4 + HQ2: Firesand x6 + HQ3: Firesand x8 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (41) + + + Earth Crystal + Cluster Ash + Sulfur + + NQ: Brimsand x2 + + HQ1: Brimsand x4 + HQ2: Brimsand x6 + HQ3: Brimsand x8 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (41) +Key Item: Alchemic Ensorcellment + + + Earth Crystal + Cluster Ash + Sulfur + Dark Anima + Fire Anima + Water Anima + + NQ: Inferno Axe + + HQ1: Hellfire Axe + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (42) + + + Earth Crystal + Butterfly Axe + Firesand + Slime Oil + + NQ: Bokuto + + HQ1: Bokuto +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (42) + + + Water Crystal + Animal Glue + Blinding Potion + Shinobi-Gatana + + NQ: Prominence Sword + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (42) + + + Earth Crystal + Brimsand + Inferno Sword + Slime Oil + + NQ: Firesand x4 + + HQ1: Firesand x8 + HQ2: Firesand x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (42) + + + Earth Crystal + Sulfur + Djinn Ash + + NQ: Vitriol + + HQ1: Vitriol x2 + HQ2: Vitriol x3 + HQ3: Vitriol x4 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (42) + + + Water Crystal + Dhalmel Saliva + + NQ: Vitriol + + HQ1: Vitriol x2 + HQ2: Vitriol x3 + HQ3: Vitriol x4 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (43) + + + Water Crystal + Treant Bulb x2 + + NQ: Vitriol x3 + + HQ1: Vitriol x6 + HQ2: Vitriol x9 + HQ3: Vitriol x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (43) +Key Item: Trituration + + + Water Crystal + Treant Bulb x6 + Triturator + + NQ: Invitriol + + HQ1: Invitriol x2 + HQ2: Invitriol x3 + HQ3: Invitriol x4 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (43) +Key Item: Alchemic Ensorcellment + + + Water Crystal + Treant Bulb x2 + Dark Anima + Fire Anima + Water Anima + + NQ: Poison Katars + + HQ1: Poison Katars +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (43) + + + Water Crystal + Animal Glue + Katars + Poison Potion + + NQ: Sparkling Hand x33 + + HQ1: Sparkling Hand x66 + HQ2: Sparkling Hand x66 + HQ3: Sparkling Hand x99 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (43) +Sub Craft(s): Goldsmithing - (19) + + + Light Crystal + Silver Ingot + Parchment + Twinkle Powder + Prism Powder + + NQ: Tin Bullet x33 + + HQ1: Tin Bullet x99 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (43) +Sub Craft(s): Smithing - (16) + + + Fire Crystal + Tin Ingot + Firesand + + NQ: Osseous Serum x3 + + HQ1: Osseous Serum x6 + HQ2: Osseous Serum x9 + HQ3: Osseous Serum x9 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (43) +Sub Craft(s): Bonecraft - (27) + + + Water Crystal + Bone Chip x4 + Mercury + + NQ: Fictile Pot + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (43) + + + Fire Crystal + Holly Lumber + Kaolin x2 + + NQ: Fire Arrowheads x6 + + HQ1: Fire Arrowheads x8 + HQ2: Fire Arrowheads x10 + HQ3: Fire Arrowheads x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (44) +Sub Craft(s): Smithing - (23) + + + Fire Crystal + Grass Cloth + Iron Ingot + Slime Oil + + NQ: Flame Claymore + + HQ1: Burning Claymore + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (44) + + + Earth Crystal + Claymore + Iron Ingot + Slime Oil + + NQ: Potion Tank + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (44) +Sub Craft(s): Leathercraft - (1) + + + Earth Crystal + Brass Tank + Potion x4 + Sheep Leather + + NQ: Strobe x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (44) +Sub Craft(s): Goldsmithing - (4) +Key Item: Iatrochemistry + + + Fire Crystal + Glass Sheet + Orobon Lure + Plasma Oil + Polyflan + Silver Sheet + + NQ: Acid Bolt Heads x6 + + HQ1: Acid Bolt Heads x8 + HQ2: Acid Bolt Heads x10 + HQ3: Acid Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (45) +Sub Craft(s): Smithing - (14) + + + Wind Crystal + Animal Glue + Bronze Ingot + Vitriol + + NQ: Carbon Fiber x3 + + HQ1: Carbon Fiber x6 + HQ2: Carbon Fiber x9 + HQ3: Carbon Fiber x12 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (45) + + + Lightning Crystal + Bomb Ash x4 + + NQ: Acid Dagger + + HQ1: Corrosive Dagger + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (45) + + + Water Crystal + Animal Glue + Mythril Dagger + Vitriol + + NQ: Prominence Axe + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (45) + + + Earth Crystal + Brimsand + Inferno Axe + Slime Oil + + NQ: Iron Bullet x33 + + HQ1: Iron Bullet x99 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (45) + + + Fire Crystal + Firesand + Iron Ingot + + NQ: Carbon Fiber x3 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (45) + + + Lightning Crystal + Alchemy Kit 45 + + NQ: Worm Lure + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (46) +Sub Craft(s): Goldsmithing - (12) + + + Fire Crystal + Brass Ingot + Glass Fiber + Little Worm + + NQ: Fire Sword + + HQ1: Flame Sword + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (46) + + + Earth Crystal + Firesand + Iron Sword + Slime Oil + + NQ: Carbon Fiber x3 + + HQ1: Carbon Fiber x6 + HQ2: Carbon Fiber x9 + HQ3: Carbon Fiber x12 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (46) + + + Lightning Crystal + Bomb Ash + Cluster Ash + + NQ: Stabilizer x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (46) +Sub Craft(s): Goldsmithing - (25) +Key Item: Iatrochemistry + + + Fire Crystal + Black Ghost + Ebonite + Mythril Sheet + Sieglinde Putty + Water Tank + + NQ: Worm Lure + + HQ1: Frog Lure + HQ2: Shrimp Lure + HQ3: Lizard Lure + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (46) +Sub Craft(s): Smithing - (9) + + + Fire Crystal + Animal Glue + Glass Fiber + Iron Ingot + + NQ: Frog Lure + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (47) +Sub Craft(s): Goldsmithing - (12) + + + Fire Crystal + Brass Ingot + Copper Frog + Glass Fiber + + NQ: Flame Degen + + HQ1: Flame Degen +1 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (47) + + + Earth Crystal + Degen + Firesand + Slime Oil + + NQ: Acid Knife + + HQ1: Corrosive Knife + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (47) + + + Water Crystal + Animal Glue + Mythril Knife + Vitriol + + NQ: Vulcan Claymore + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (47) + + + Earth Crystal + Brimsand + Flame Claymore + Slime Oil + + NQ: Carbon Fiber x3 + + HQ1: Carbon Fiber x6 + HQ2: Carbon Fiber x9 + HQ3: Carbon Fiber x12 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (47) + + + Lightning Crystal + Djinn Ash + + NQ: Melt Dagger + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (48) + + + Water Crystal + Acid Dagger + Invitriol + + NQ: Shrimp Lure + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (48) +Sub Craft(s): Goldsmithing - (21) + + + Fire Crystal + Crayfish + Glass Fiber + Silver Ingot + + NQ: Fire Arrow x33 + + HQ1: Fire Arrow x66 + HQ2: Fire Arrow x99 + HQ3: Fire Arrow x99 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (48) +Sub Craft(s): Smithing - (12), Woodworking - (8) + + + Wind Crystal + Ash Lumber + Bird Feather x2 + Grass Cloth + Iron Ingot + Slime Oil + + NQ: Flashbulb x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (48) +Key Item: Iatrochemistry + + + Fire Crystal + Glass Fiber + Glass Sheet + Lamp Marimo + Sieglinde Putty + Water Tank + + NQ: Loudspeaker x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (48) +Sub Craft(s): Bonecraft - (22) +Key Item: Iatrochemistry + + + Fire Crystal + Baking Soda + Colibri Beak + Glass Sheet + Treant Bulb + Water Tank + + NQ: Steel Bullet x33 + + HQ1: Steel Bullet x99 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (48) +Sub Craft(s): Smithing - (30) + + + Fire Crystal + Firesand + Steel Ingot + + NQ: Spectral Serum x3 + + HQ1: Spectral Serum x6 + HQ2: Spectral Serum x9 + HQ3: Spectral Serum x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (48) +Sub Craft(s): Clothcraft - (33) + + + Water Crystal + Luminicloth x2 + Mercury + + NQ: Automaton Oil +2 x6 + + HQ1: Automaton Oil +2 x9 + HQ2: Automaton Oil +2 x12 + HQ3: Automaton Oil +3 x12 Verification Needed + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (48) + + + Water Crystal + Olive Oil x3 + Plasma Oil + Polyflan Paper + + NQ: Carbon Fishing Rod + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (49) + + + Light Crystal + Broken Carbon Rod + + NQ: Flame Blade + + HQ1: Flame Blade +1 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (49) + + + Earth Crystal + Falchion + Firesand + Slime Oil + + NQ: Vulcan Sword + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (49) + + + Earth Crystal + Brimsand + Fire Sword + Slime Oil + + NQ: Mana Converter x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (49) +Sub Craft(s): Goldsmithing - (6) +Key Item: Iatrochemistry + + + Earth Crystal + Mercury + Coeurl Whisker + Brass Tank x2 + Imperial Cermet + + NQ: Mana Booster x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (49) +Sub Craft(s): Goldsmithing - (3) +Key Item: Iatrochemistry + + + Earth Crystal + Brass Tank + Fiend Blood + Imperial Cermet + Mana Wand + Mercury + + NQ: Strobe II x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (49) +Sub Craft(s): Goldsmithing - (4) +Key Item: Iatrochemistry + + + Fire Crystal + Gold Sheet + Orobon Lure + Polyflan + Plasma Oil + Flint Glass Sheet + + NQ: Melt Knife + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (50) + + + Water Crystal + Acid Knife + Invitriol + + NQ: Ether + + HQ1: Ether +1 + HQ2: Ether +2 + HQ3: Ether +3 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (50) + + + Water Crystal + Bat Wing x2 + Distilled Water + Dried Marjoram + Dryad Root + + NQ: Vulcan Degen + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (50) + + + Earth Crystal + Brimsand + Flame Degen + Slime Oil + + NQ: Ether Drop + + HQ1: Ether Drop x2 + HQ2: Ether Drop x3 + HQ3: Ether Drop x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (50) +Key Item: Concoction + + + Fire Crystal + Bat Wing x2 + Distilled Water + Dried Marjoram + Dryad Root + + NQ: Kabenro x33 + + HQ1: Kabenro x66 + HQ2: Kabenro x66 + HQ3: Kabenro x99 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (50) + + + Earth Crystal + Beeswax + Water Lily x2 + + NQ: Ether + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (50) + + + Water Crystal + Alchemy Kit 50 + + +Journeyman (51-60) +Synthesis Information +Yield Requirements Ingredients + + NQ: Holy Water + + HQ1: Holy Water x2 + HQ2: Holy Water x3 + HQ3: Holy Water x4 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (51) + + + Light Crystal + Distilled Water + + NQ: Holy Water x3 + + HQ1: Holy Water x6 + HQ2: Holy Water x9 + HQ3: Holy Water x12 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (51) +Key Item: Trituration + + + Light Crystal + Distilled Water x3 + Triturator + + NQ: Hallowed Water + + HQ1: Hallowed Water x2 + HQ2: Hallowed Water x3 + HQ3: Hallowed Water x4 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (51) +Key Item: Alchemic Purification + + + Light Crystal + Distilled Water + Fire Anima + Ice Anima + Light Anima + + NQ: Acid Claws + + HQ1: Corrosive Claws + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (51) + + + Water Crystal + Animal Glue + Mythril Claws + Vitriol + + NQ: Silver Bullet x33 + + HQ1: Silver Bullet x99 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (52) +Sub Craft(s): Goldsmithing - (24) + + + Fire Crystal + Firesand + Silver Ingot + + NQ: Blessed Mythril Sheet + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (52) + + + Light Crystal + Holy Water + Mythril Sheet + + NQ: Vulcan Blade + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (52) + + + Fire Crystal + Brimsand + Flame Blade + Slime Oil + + NQ: Ranka x33 + + HQ1: Ranka x66 + HQ2: Ranka x66 + HQ3: Ranka x99 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (52) + + + Earth Crystal + Queen Of The Night x2 + + NQ: Holy Bolt Heads x6 + + HQ1: Holy Bolt Heads x8 + HQ2: Holy Bolt Heads x10 + HQ3: Holy Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (53) +Sub Craft(s): Smithing - (14) + + + Wind Crystal + Bronze Ingot + Holy Water x2 + + NQ: Grenade x4 + + HQ1: Grenade x6 + HQ2: Grenade x9 + HQ3: Grenade x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (53) +Sub Craft(s): Smithing - (24), Woodworking - (3) + + + Earth Crystal + Ash Lumber + Bomb Ash + Firesand + Iron Ingot + Yuhtunga Sulfur + + NQ: Grenade x4 + + HQ1: Grenade x6 + HQ2: Grenade x9 + HQ3: Grenade x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (53) +Sub Craft(s): Smithing - (24), Woodworking - (3) + + + Earth Crystal + Ash Lumber + Bomb Ash + Firesand + Iron Ingot + Sulfur + + NQ: Carbon Fishing Rod + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (53) + + + Fire Crystal + Carbon Fiber x4 + Glass Fiber + + NQ: Melt Claws + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (54) + + + Water Crystal + Acid Claws + Invitriol + + NQ: Holy Sword + + HQ1: Holy Sword +1 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (54) + + + Light Crystal + Holy Water + Mythril Sword + + NQ: Popstar x33 + + HQ1: Popstar x66 + HQ2: Popstar x99 + HQ3: Popstar x99 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (54) + + + Light Crystal + Bast Parchment + Firesand + Prism Powder + Twinkle Powder x2 + + NQ: Ether Tank + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (54) +Sub Craft(s): Leathercraft - (1) + + + Earth Crystal + Brass Tank + Ether x4 + Sheep Leather + + NQ: Grenade x4 + + HQ1: Grenade x6 + HQ2: Grenade x9 + HQ3: Grenade x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (54) +Sub Craft(s): Smithing - (24), Woodworking - (3) + + + Earth Crystal + Ash Lumber + Cluster Ash + Firesand x2 + Iron Ingot + + NQ: Arcanic Cell x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (54) +Sub Craft(s): Goldsmithing - (??) +Key Item: Iatrochemistry + + + Fire Crystal + Mercury + Carbon Fiber + Light Anima + Plasma Oil + Glass Sheet + + NQ: Holy Mace + + HQ1: Holy Mace +1 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (55) + + + Light Crystal + Holy Water + Mythril Mace + + NQ: Yoto + + HQ1: Yoto +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (55) + + + Water Crystal + Animal Glue + Shinobi-Gatana + Vitriol + + NQ: Inhibitor x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (55) +Key Item: Iatrochemistry + + + Fire Crystal + Glass Sheet + Hecteyes Eye + Homunculus Nerves + Fire Anima + Plasma Oil + + NQ: Scanner x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (55) +Key Item: Iatrochemistry + + + Fire Crystal + Glass Sheet + Hecteyes Eye + Homunculus Nerves + Ice Anima + Plasma Oil + + NQ: Pattern Reader x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (55) +Key Item: Iatrochemistry + + + Fire Crystal + Glass Sheet + Hecteyes Eye + Homunculus Nerves + Wind Anima + Plasma Oil + + NQ: Analyzer x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (55) +Key Item: Iatrochemistry + + + Fire Crystal + Glass Sheet + Hecteyes Eye + Homunculus Nerves + Earth Anima + Plasma Oil + + NQ: Heat Seeker x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (55) +Key Item: Iatrochemistry + + + Fire Crystal + Glass Sheet + Hecteyes Eye + Homunculus Nerves + Lightning Anima + Plasma Oil + + NQ: Stealth Screen x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (55) +Key Item: Iatrochemistry + + + Fire Crystal + Glass Sheet + Hecteyes Eye + Homunculus Nerves + Water Anima + Plasma Oil + + NQ: Damage Gauge x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (55) +Key Item: Iatrochemistry + + + Fire Crystal + Glass Sheet + Hecteyes Eye + Homunculus Nerves + Light Anima + Plasma Oil + + NQ: Mana Conserver x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (55) +Key Item: Iatrochemistry + + + Fire Crystal + Glass Sheet + Hecteyes Eye + Homunculus Nerves + Dark Anima + Plasma Oil + + NQ: Yoto + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (55) + + + Water Crystal + Alchemy Kit 55 + + NQ: Cermet Chunk + + HQ1: Cermet Chunk x2 + HQ2: Cermet Chunk x3 + HQ3: Cermet Chunk x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (56) + + + Fire Crystal + Magic Pot Shard x4 + + NQ: Sleeping Potion + + HQ1: Sleeping Potion x2 + HQ2: Sleeping Potion x3 + HQ3: Sleeping Potion x4 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (56) + + + Water Crystal + Chamomile + Poison Flour + Sleepshroom + + NQ: Sleeping Potion x2 + + HQ1: Sleeping Potion x4 + HQ2: Sleeping Potion x6 + HQ3: Sleeping Potion x8 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (56) +Key Item: Trituration + + + Water Crystal + Chamomile x2 + Poison Flour x2 + Sleepshroom x2 + Triturator + + NQ: Glass Sheet + + HQ1: Glass Sheet x2 + HQ2: Glass Sheet x3 + HQ3: Glass Sheet x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (56) + + + Fire Crystal + Rock Salt + Shell Powder + Silica x6 + + NQ: Stabilizer II x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (56) +Sub Craft(s): Goldsmithing - (23) +Key Item: Iatrochemistry + + + Fire Crystal + Black Ghost + High Ebonite + Mythril Sheet + Sieglinde Putty + Water Tank + + NQ: Sacred Sword + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (57) + + + Light Crystal + Hallowed Water + Holy Sword + + NQ: Lightning Arrowheads x6 + + HQ1: Lightning Arrowheads x8 + HQ2: Lightning Arrowheads x10 + HQ3: Lightning Arrowheads x12 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (57) +Sub Craft(s): Smithing - (33) + + + Lightning Crystal + Copper Ingot + Steel Ingot + + NQ: Ice Arrowheads x6 + + HQ1: Ice Arrowheads x8 + HQ2: Ice Arrowheads x10 + HQ3: Ice Arrowheads x12 + + IceCrystal-Icon.gif + +Main Craft: Alchemy - (57) + + + Ice Crystal + Copper Ingot + Cermet Chunk + + NQ: Water Arrowheads x6 + + HQ1: Water Arrowheads x8 + HQ2: Water Arrowheads x10 + HQ3: Water Arrowheads x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (57) +Sub Craft(s): Bonecraft - (33) + + + Water Crystal + Copper Ingot + Merrow Scale + + NQ: Wind Arrowheads x6 + + HQ1: Wind Arrowheads x8 + HQ2: Wind Arrowheads x10 + HQ3: Wind Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (57) +Sub Craft(s): Bonecraft - (35) + + + Wind Crystal + Copper Ingot + Colibri Beak + + NQ: Earth Arrowheads x6 + + HQ1: Earth Arrowheads x8 + HQ2: Earth Arrowheads x10 + HQ3: Earth Arrowheads x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (57) +Sub Craft(s): Bonecraft - (44) + + + Earth Crystal + Copper Ingot + Marid Tusk + + NQ: Spirit Sword + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (57) +Key Item: Alchemic Ensorcellment + + + Light Crystal + Lambent Fire Cell + Lambent Wind Cell + Holy Sword + + NQ: Sacred Mace + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (58) + + + Light Crystal + Hallowed Water + Holy Mace + + NQ: Melt Katana + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (58) + + + Water Crystal + Invitriol + Yoto + + NQ: Quake Grenade x4 + + HQ1: Quake Grenade x6 + HQ2: Quake Grenade x9 + HQ3: Quake Grenade x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (58) +Sub Craft(s): Smithing - (29) + + + Earth Crystal + Bomb Ash x3 + Firesand x2 + Iron Ingot x2 + Yuhtunga Sulfur + + NQ: Quake Grenade x4 + + HQ1: Quake Grenade x6 + HQ2: Quake Grenade x9 + HQ3: Quake Grenade x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (58) +Sub Craft(s): Smithing - (29) + + + Earth Crystal + Bomb Ash x3 + Firesand x2 + Iron Ingot x2 + Sulfur + + NQ: Holy Degen + + HQ1: Holy Degen +1 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (58) + + + Light Crystal + Holy Water + Mythril Degen + + NQ: Quake Grenade x4 + + HQ1: Quake Grenade x6 + HQ2: Quake Grenade x9 + HQ3: Quake Grenade x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (58) +Sub Craft(s): Smithing - (29) + + + Earth Crystal + Cluster Ash + Firesand x2 + Iron Ingot x2 + Sulfur + + NQ: Automaton Oil +3 x6 + + HQ1: Automaton Oil +3 x9 + HQ2: Automaton Oil +3 x12 + HQ3: Automaton Oil +3 x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (58) + + + Water Crystal + Olive Oil x4 + Plasma Oil + Polyflan Paper + + NQ: Bastokan Visor + + HQ1: Republic Visor + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (59) + + + Light Crystal + Centurion's Visor + Cermet Chunk + + NQ: Cermet Chunk + + HQ1: Cermet Chunk x2 + HQ2: Cermet Chunk x3 + HQ3: Cermet Chunk x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (59) + + + Fire Crystal + Golem Shard x2 + + NQ: Loudspeaker II x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (59) +Key Item: Iatrochemistry + + + Fire Crystal + Baking Soda x2 + Colibri Beak + Glass Sheet + Treant Bulb x2 + Water Tank + + NQ: Homura + + HQ1: Homura +1 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (59) + + + Earth Crystal + Firesand + Nodachi + Slime Oil + Toad Oil + + NQ: Leucous Voulge + + HQ1: Leucous Voulge +1 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (59) +Sub Craft(s): Goldsmithing - (48), Woodworking - (9) + + + Earth Crystal + Cermet Chunk + Holly Lumber + Platinum Ingot + Super Cermet x2 + + NQ: Arcanic Cell II x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (59) +Sub Craft(s): Goldsmithing - (??) +Key Item: Iatrochemistry + + + Fire Crystal + Mercury + Carbon Fiber + Light Anima + Plasma Oil + Flint Glass Sheet + + NQ: Stealth Screen II x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (60) +Key Item: Iatrochemistry + + + Fire Crystal + Hecteyes Eye + Water Anima + Homunculus Nerves + Plasma Oil + Flint Glass Sheet + + NQ: Riot Grenade x4 + + HQ1: Riot Grenade x6 + HQ2: Riot Grenade x9 + HQ3: Riot Grenade x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (60) +Sub Craft(s): Smithing - (11) + + + Earth Crystal + Bomb Ash x3 + Bronze Sheet + Firesand x2 + Paralysis Dust + Yuhtunga Sulfur + + NQ: Cermet Chunk + + HQ1: Cermet Chunk x2 + HQ2: Cermet Chunk x3 + HQ3: Cermet Chunk x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (60) + + + Fire Crystal + Doll Shard x2 + + NQ: Hi-Potion + + HQ1: Hi-Potion +1 + HQ2: Hi-Potion +2 + HQ3: Hi-Potion +3 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (60) + + + Water Crystal + Distilled Water + Malboro Vine + Sage x2 + + NQ: Hi-Potion Drop + + HQ1: Hi-Potion Drop x2 + HQ2: Hi-Potion Drop x3 + HQ3: Hi-Potion Drop x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (60) +Key Item: Concoction + + + Fire Crystal + Distilled Water + Malboro Vine + Sage x2 + + NQ: Hi-Potion + + HQ1: Hi-Potion +1 + HQ2: Hi-Potion +2 + HQ3: Hi-Potion +3 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (60) + + + Water Crystal + Distilled Water + Ameretat Vine + Sage x2 + + NQ: Hi-Potion Drop + + HQ1: Hi-Potion Drop x2 + HQ2: Hi-Potion Drop x3 + HQ3: Hi-Potion Drop x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (60) +Key Item: Concoction + + + Fire Crystal + Distilled Water + Ameretat Vine + Sage x2 + + NQ: Hi-Potion + + HQ1: Hi-Potion +1 + HQ2: Hi-Potion +2 + HQ3: Hi-Potion +3 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (60) + + + Water Crystal + Distilled Water + Rafflesia Vine + Sage x2 + + NQ: Hi-Potion Drop + + HQ1: Hi-Potion Drop x2 + HQ2: Hi-Potion Drop x3 + HQ3: Hi-Potion Drop x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (60) +Key Item: Concoction + + + Fire Crystal + Distilled Water + Rafflesia Vine + Sage x2 + + NQ: Inhibitor II x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (60) +Key Item: Iatrochemistry + + + Fire Crystal + Hecteyes Eye + Fire Anima + Glass Sheet + Plasma Oil + Flint Glass Sheet + + NQ: Hi-Potion + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (60) + + + Water Crystal + Alchemy Kit 60 + + +Craftsman (61-70) +Synthesis Information +Yield Requirements Ingredients + + NQ: Bastokan Finger Gauntlets + + HQ1: Republic Finger Gauntlets + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (61) + + + Fire Crystal + Centurion's Finger Gauntlets + Cermet Chunk + + NQ: Sacred Degen + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (61) + + + Light Crystal + Hallowed Water + Holy Degen + + NQ: Porcelain Flowerpot + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (61) + + + Fire Crystal + Cermet Chunk + + NQ: Glass Fiber + + HQ1: Glass Fiber x2 + HQ2: Glass Fiber x3 + HQ3: Glass Fiber x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (61) + + + Fire Crystal + Flint Stone x8 + + NQ: Venom Dust + + HQ1: Venom Dust x2 + HQ2: Venom Dust x3 + HQ3: Venom Dust x4 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (61) + + + Lightning Crystal + Scorpion Claw x2 + + NQ: Stabilizer III x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (61) +Sub Craft(s): Goldsmithing - (??) +Key Item: Iatrochemistry + + + Fire Crystal + Gold Sheet + Sieglinde Putty + High Ebonite + Black Ghost + Water Tank + + NQ: Cermet Knife + + HQ1: Cermet Knife +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (62) + + + Fire Crystal + Cermet Chunk + Oak Lumber + + NQ: Acid Baselard + + HQ1: Corrosive Baselard + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (62) + + + Water Crystal + Animal Glue + Mythril Baselard + Vitriol + + NQ: Koen + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (62) + + + Earth Crystal + Brimsand + Homura + Slime Oil + Toad Oil + + NQ: Glass Fiber x3 + + HQ1: Glass Fiber x6 + HQ2: Glass Fiber x9 + HQ3: Glass Fiber x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (62) + + + Fire Crystal + Meteorite + + NQ: Venom Dust + + HQ1: Venom Dust x2 + HQ2: Venom Dust x3 + HQ3: Venom Dust x4 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (62) + + + Lightning Crystal + Istavrit + + NQ: Venom Dust + + HQ1: Venom Dust x2 + HQ2: Venom Dust x3 + HQ3: Venom Dust x4 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (62) + + + Lightning Crystal + Ogre Eel x2 + + NQ: Venom Dust x2 + + HQ1: Venom Dust x4 + HQ2: Venom Dust x6 + HQ3: Venom Dust x8 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (62) + + + Lightning Crystal + Monke-Onke + + NQ: Venom Dust x2 + + HQ1: Venom Dust x4 + HQ2: Venom Dust x6 + HQ3: Venom Dust x8 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (62) + + + Lightning Crystal + Peiste Stinger + + NQ: Amplifier x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (62) +Key Item: Iatrochemistry + + + Fire Crystal + Hecteyes Eye + Ice Anima + Glass Sheet + Plasma Oil + Flint Glass Sheet + + NQ: Riot Grenade x4 + + HQ1: Riot Grenade x6 + HQ2: Riot Grenade x9 + HQ3: Riot Grenade x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (63) +Sub Craft(s): Smithing - (11) + + + Earth Crystal + Bomb Ash x3 + Bronze Sheet + Firesand x2 + Paralysis Dust + Sulfur + + NQ: Cermet Claws + + HQ1: Cermet Claws +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (63) +Sub Craft(s): Bonecraft - (16) + + + Fire Crystal + Beetle Jaw + Cermet Chunk + + NQ: Ebonite x2 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (63) + + + Lightning Crystal + Flan Meat x2 + Sulfur + + NQ: Loudspeaker III x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (63) +Sub Craft(s): Bonecraft - (??) +Key Item: Iatrochemistry + + + Fire Crystal + Treant Bulb x2 + Baking Soda x2 + Colibri Beak + Flint Glass Sheet + Water Tank + + NQ: Sleep Arrowheads x6 + + HQ1: Sleep Arrowheads x8 + HQ2: Sleep Arrowheads x10 + HQ3: Sleep Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (64) +Sub Craft(s): Bonecraft - (43) + + + Wind Crystal + Animal Glue + Bone Chip + Ram Horn + Sleeping Potion + + NQ: Divine Sword + + HQ1: Divine Sword +1 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (64) + + + Light Crystal + Broadsword + Holy Water x2 + + NQ: Riot Grenade x4 + + HQ1: Riot Grenade x6 + HQ2: Riot Grenade x9 + HQ3: Riot Grenade x12 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (64) +Sub Craft(s): Smithing - (11) + + + Earth Crystal + Bronze Sheet + Cluster Ash + Firesand x2 + Paralysis Dust + Sulfur + + NQ: Flame Holder x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (64) +Sub Craft(s): Leathercraft - (37) +Key Item: Iatrochemistry + + + Fire Crystal + Beeswax + Cotton Thread + Cluster Arm + Slime Oil + Super Cermet + Wyvern Skin + + NQ: Ice Maker x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (64) +Sub Craft(s): Clothcraft - (22~37) Verification Needed +Key Item: Iatrochemistry + + + Fire Crystal + Flan Meat + Karakul Wool + Mega Battery + Mythril Sheet + Snoll Arm + Super Cermet + + NQ: Twitherym Scale + + HQ1: Twitherym Scale x2 + HQ2: Twitherym Scale x3 + HQ3: Twitherym Scale x4 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (64) + + + Lightning Crystal + Twitherym Wing x2 + + NQ: Bastokan Cuisses + + HQ1: Republic Cuisses + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (65) + + + Fire Crystal + Centurion's Cuisses + Cermet Chunk + + NQ: Melt Baselard + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (65) + + + Water Crystal + Acid Baselard + Invitriol + + NQ: Konron Hassen x33 + + HQ1: Konron Hassen x66 + HQ2: Konron Hassen x99 + HQ3: Konron Hassen x99 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (65) +Sub Craft(s): Woodworking - (28) + + + Earth Crystal + Bast Parchment + Bomb Ash + Copper Nugget + Firesand + + NQ: Silver Nugget x9 + + HQ1: Silver Nugget x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (65) + + + Fire Crystal + Panacea + Silver Leaf + + NQ: Chocotonic x3 + + HQ1: Chocotonic x6 + HQ2: Chocotonic x9 + HQ3: Chocotonic x12 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (65) + + + Water Crystal + Distilled Water + Gysahl Greens + Yellow Ginseng + + NQ: Ice Arrow x33 + + HQ1: Ice Arrow x66 + HQ2: Ice Arrow x99 + HQ3: Ice Arrow x99 + + IceCrystal-Icon.gif + +Main Craft: Alchemy - (65) +Sub Craft(s): Woodworking - (8) + + + Ice Crystal + Maple Lumber + Insect Wing x2 + Cermet Chunk + + NQ: Lightning Arrow x33 + + HQ1: Lightning Arrow x66 + HQ2: Lightning Arrow x99 + HQ3: Lightning Arrow x99 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (65) +Sub Craft(s): Woodworking - (8) + + + Lightning Crystal + Arrowwood Lumber + Insect Wing x2 + Steel Ingot + + NQ: Lightning Arrow x33 + + HQ1: Lightning Arrow x66 + HQ2: Lightning Arrow x99 + HQ3: Lightning Arrow x99 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (65) +Sub Craft(s): Woodworking - (8) + + + Lightning Crystal + Maple Lumber + Insect Wing x2 + Steel Ingot + + NQ: Single Hook Fishing Rod + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (65) + + + Light Crystal + Broken Single-Hook Fishing Rod + + NQ: Tranquilizer II x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (65) +Key Item: Iatrochemistry + + + Fire Crystal + Gold Sheet + Sieglinde Putty + Homunculus Nerves + Plasma Oil + Flint Glass Sheet + + NQ: Melt Baselard + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (65) + + + Water Crystal + Alchemy Kit 65 + + NQ: Bastokan Greaves + + HQ1: Republic Greaves + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (66) + + + Fire Crystal + Centurion's Greaves + Cermet Chunk + + NQ: Battery x99 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (66) +Sub Craft(s): Smithing - (6) + + + Fire Crystal + Cermet Chunk + Copper Ingot + Distilled Water + Lightning Cluster + Rock Salt + Tin Ingot + + NQ: Hanger + + HQ1: Hanger +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (66) +Sub Craft(s): Goldsmithing - (39) + + + Fire Crystal + Cermet Chunk x2 + Gold Ingot + + NQ: Remedy Ointment x3 + + HQ1: Remedy Ointment x6 + HQ2: Remedy Ointment x9 + HQ3: Remedy Ointment x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (66) + + + Fire Crystal + Distilled Water + Dried Marjoram + Qutrub Bandage + White Honey + + NQ: Hallowed Sword + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (66) + + + Light Crystal + Divine Sword + Hallowed Water + + NQ: Sleep Bolt Heads x6 + + HQ1: Sleep Bolt Heads x8 + HQ2: Sleep Bolt Heads x10 + HQ3: Sleep Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (67) +Sub Craft(s): Smithing - (14) + + + Wind Crystal + Animal Glue + Bronze Ingot + Sleeping Potion + + NQ: Acid Kukri + + HQ1: Corrosive Kukri + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (67) + + + Water Crystal + Animal Glue + Mythril Kukri + Vitriol + + NQ: Bastokan Scale Mail + + HQ1: Republic Scale Mail + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (67) + + + Water Crystal + Centurion's Scale Mail + Cermet Chunk + + NQ: Stabilizer IV x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (67) +Sub Craft(s): Goldsmithing - (??) +Key Item: Iatrochemistry + + + Fire Crystal + Platinum Sheet + Sieglinde Putty + High Ebonite + Black Ghost + Water Tank + + NQ: Amplifier II x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (67) +Key Item: Iatrochemistry + + + Fire Crystal + Hecteyes Eye + Ice Anima + Plasma Oil + Flint Glass Sheet x2 + + NQ: Venom Potion + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (68) + + + Water Crystal + Mercury + Venom Dust + + NQ: Venom Potion x3 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (68) +Key Item: Trituration + + + Water Crystal + Mercury x3 + Venom Dust x3 + Triturator + + NQ: Cermet Sword + + HQ1: Cermet Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (68) + + + Fire Crystal + Cermet Chunk x2 + Tiger Leather + + NQ: Hyper Potion + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (68) + + + Water Crystal + Flytrap Leaf + Hecteyes Eye + Movalpolos Water + Sage x2 + + NQ: Coiler II x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (68) +Key Item: Iatrochemistry + + + Fire Crystal + Carbon Fiber + Super Cermet + Imperial Cermet + Plasma Oil + High Ebonite + + NQ: Loudspeaker IV x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (68) +Sub Craft(s): Bonecraft - (??) +Key Item: Iatrochemistry + + + Fire Crystal + Treant Bulb x2 + Baking Soda + Colibri Beak + Flint Glass Sheet x2 + Water Tank + + NQ: Remedy x2 + + HQ1: Remedy x4 + HQ2: Remedy x6 + HQ3: Remedy x8 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (69) + + + Water Crystal + Boyahda Moss + Chamomile + Distilled Water + Dried Marjoram + Honey + Mistletoe + Sage + Wijnruit + + NQ: Single Hook Fishing Rod + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (69) + + + Fire Crystal + Carbon Fiber x5 + Glass Fiber x2 + + NQ: Hi-Ether + + HQ1: Hi-Ether +1 + HQ2: Hi-Ether +2 + HQ3: Hi-Ether +3 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (69) + + + Water Crystal + Bat Wing x4 + Distilled Water + Dried Marjoram x2 + Dryad Root + + NQ: Hi-Ether Drop + + HQ1: Hi-Ether Drop x2 + HQ2: Hi-Ether Drop x3 + HQ3: Hi-Ether Drop x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (69) +Key Item: Concoction + + + Fire Crystal + Bat Wing x4 + Distilled Water + Dried Marjoram x2 + Dryad Root + + NQ: Hi-Ether + + HQ1: Hi-Ether +1 + HQ2: Hi-Ether +2 + HQ3: Hi-Ether +3 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (69) + + + Water Crystal + Soulflayer Tentacle + Distilled Water + Dried Marjoram x2 + Dryad Root + + NQ: Hi-Ether Drop + + HQ1: Hi-Ether Drop x2 + HQ2: Hi-Ether Drop x3 + HQ3: Hi-Ether Drop x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (69) +Key Item: Concoction + + + Fire Crystal + Soulflayer Tentacle + Distilled Water + Dried Marjoram x2 + Dryad Root + + NQ: Melt Kukri + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (69) + + + Water Crystal + Acid Kukri + Invitriol + + NQ: Saber + + HQ1: Saber +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (70) + + + Fire Crystal + Cermet Chunk x3 + Tiger Leather + + NQ: Venom Knife + + HQ1: Venom Knife +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (70) + + + Water Crystal + Animal Glue + Darksteel Knife + Venom Potion + + NQ: Brilliant Snow x33 + + HQ1: Brilliant Snow x66 + HQ2: Brilliant Snow x99 + HQ3: Brilliant Snow x99 + + IceCrystal-Icon.gif + +Main Craft: Alchemy - (70) +Sub Craft(s): Leathercraft - (10) + + + Ice Crystal + Distilled Water + Glass Fiber + Holy Water + Sheep Leather + Rock Salt + + NQ: Repeater x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (70) +Key Item: Iatrochemistry + + + Fire Crystal + Glass Fiber + Sieglinde Putty + Glass Sheet + Homunculus Nerves + High Ebonite + + NQ: Tranquilizer III x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (70) +Key Item: Iatrochemistry + + + Fire Crystal + Platinum Sheet + Sieglinde Putty + Homunculus Nerves + Plasma Oil + Flint Glass Sheet + + NQ: Saber + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (70) + + + Fire Crystal + Alchemy Kit 70 + + +Artisan (71-80) +Synthesis Information +Yield Requirements Ingredients + + NQ: Spartan Bullet x33 + + HQ1: Spartan Bullet x99 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (71) +Sub Craft(s): Smithing - (13) + + + Fire Crystal + Bronze Ingot + Copper Ingot + Firesand + Twinkle Powder + + NQ: Holy Maul + + HQ1: Holy Maul +1 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (71) + + + Light Crystal + Holy Water + Maul + + NQ: Imperial Cermet + + HQ1: Imperial Cermet x2 + HQ2: Imperial Cermet x3 + HQ3: Imperial Cermet x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (71) + + + Fire Crystal + Silica + Cermet Chunk x2 + + NQ: Rainbow Powder x6 + + HQ1: Rainbow Powder x8 + HQ2: Rainbow Powder x10 + HQ3: Rainbow Powder x12 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (71) + + + Light Crystal + Glass Fiber x2 + Wamoura Scale + + NQ: Rainbow Powder x12 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (71) +Key Item: Trituration + + + Light Crystal + Glass Fiber x4 + Wamoura Scale x2 + Triturator + + NQ: Stabilizer V x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (71) +Sub Craft(s): Goldsmithing - (??) +Key Item: Iatrochemistry + + + Fire Crystal + Orichalcum Sheet + Sieglinde Putty + High Ebonite + Black Ghost + Water Tank + + NQ: Halcyon Rod + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (72) + + + Light Crystal + Bkn. Halcyon Rod + + NQ: Venom Claws + + HQ1: Venom Claws +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (72) + + + Water Crystal + Animal Glue + Darksteel Claws + Venom Potion + + NQ: Paralysis Dust + + HQ1: Paralysis Dust x2 + HQ2: Paralysis Dust x3 + HQ3: Paralysis Dust x4 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (72) + + + Lightning Crystal + Puffball x2 + + NQ: Paralysis Dust x2 + + HQ1: Paralysis Dust x4 + HQ2: Paralysis Dust x6 + HQ3: Paralysis Dust x8 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (72) + + + Lightning Crystal + Three-eyed Fish + + NQ: Replicator x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (72) +Sub Craft(s): Goldsmithing - (42) +Key Item: Iatrochemistry + + + Fire Crystal + Mythril Sheet + Sieglinde Putty + Polyflan Paper x2 + Wind Fan + + NQ: Paktong Bullet x33 + + HQ1: Paktong Bullet x99 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (72) +Sub Craft(s): Smithing - (19) + + + Fire Crystal + Firesand + Paktong Ingot + + NQ: Darkling Bolt Heads x6 + + HQ1: Darkling Bolt Heads x8 + HQ2: Darkling Bolt Heads x10 + HQ3: Darkling Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (72) +Sub Craft(s): Smithing - (14) + + + Wind Crystal + Bronze Ingot + Revival Tree Root + Imp Wing + + NQ: Airborne x33 + + HQ1: Airborne x66 + HQ2: Airborne x99 + HQ3: Airborne x99 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (73) +Sub Craft(s): Clothcraft - (41), Woodworking - (26) + + + Earth Crystal + Bast Parchment + Bomb Ash + Firesand x2 + Goblin Doll + Silk Cloth + + NQ: Cutlass + + HQ1: Cutlass +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (73) +Sub Craft(s): Smithing - (45) + + + Fire Crystal + Cermet Chunk x3 + Darksteel Ingot + + NQ: High Ebonite x2 + + HQ1: High Ebonite x4 + HQ2: High Ebonite x6 + HQ3: High Ebonite x8 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (73) + + + Lightning Crystal + Flan Meat x3 + Sulfur + + NQ: Vermin Slayer + + HQ1: Insect Slayer + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (73) + + + Dark Crystal + Ameretat Vine + Darksteel Kilij + Lizard Blood + + NQ: Aquan Slayer + + HQ1: Marine Slayer + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (73) + + + Dark Crystal + Ameretat Vine + Bird Blood + Darksteel Kilij + + NQ: Resolution Ring + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (73) +Key Item: Alchemic Purification + + + Light Crystal + Fiend Blood + Dragon Blood + Avatar Blood + Lizard Blood + Bird Blood + Chimera Blood + Demon Blood + Platinum Ring + + NQ: Dynamo II x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (73) +Sub Craft(s): Goldsmithing - (??) +Key Item: Iatrochemistry + + + Fire Crystal + Platinum Sheet + Sieglinde Putty + Homunculus Nerves + Plasma Oil + High Ebonite + + NQ: Dynamo III x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (73) +Sub Craft(s): Goldsmithing - (??) +Key Item: Iatrochemistry + + + Fire Crystal + Orichalcum Sheet + Sieglinde Putty + Homunculus Nerves + Plasma Oil + High Ebonite + + NQ: Loudspeaker V x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (73) +Sub Craft(s): Bonecraft - (??) +Key Item: Iatrochemistry + + + Fire Crystal + Treant Bulb x2 + Baking Soda + Colibri Beak + Flint Glass Sheet x3 + Water Tank + + NQ: Sacred Maul + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (74) + + + Light Crystal + Hallowed Water + Holy Maul + + NQ: Venom Baselard + + HQ1: Venom Baselard +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (74) + + + Water Crystal + Animal Glue + Darksteel Baselard + Venom Potion + + NQ: Mythril Nugget x9 + + HQ1: Mythril Nugget x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (74) + + + Fire Crystal + Mythril Leaf + Panacea + + NQ: Spirit Maul + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (74) +Key Item: Alchemic Ensorcellment + + + Light Crystal + Lambent Fire Cell + Lambent Wind Cell + Holy Maul + + NQ: Tranquilizer IV x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (74) +Key Item: Iatrochemistry + + + Fire Crystal + Orichalcum Sheet + Sieglinde Putty + Homunculus Nerves + Plasma Oil + Flint Glass Sheet + + NQ: Venom Kukri + + HQ1: Venom Kukri +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (75) + + + Water Crystal + Animal Glue + Darksteel Kukri + Venom Potion + + NQ: Fire Anima x10 + + HQ1: Fire Anima x20 + HQ2: Fire Anima x30 + HQ3: Fire Anima x40 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (75) +Key Item: Anima Synthesis + + + Fire Crystal + Burning Memory x4 + Mercury + Rock Salt + Sulfur + + NQ: Ice Anima x10 + + HQ1: Ice Anima x20 + HQ2: Ice Anima x30 + HQ3: Ice Anima x40 + + IceCrystal-Icon.gif + +Main Craft: Alchemy - (75) +Key Item: Anima Synthesis + + + Ice Crystal + Bitter Memory x4 + Mercury + Rock Salt + Sulfur + + NQ: Wind Anima x10 + + HQ1: Wind Anima x20 + HQ2: Wind Anima x30 + HQ3: Wind Anima x40 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (75) +Key Item: Anima Synthesis + + + Wind Crystal + Fleeting Memory x4 + Mercury + Rock Salt + Sulfur + + NQ: Earth Anima x10 + + HQ1: Earth Anima x20 + HQ2: Earth Anima x30 + HQ3: Earth Anima x40 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (75) +Key Item: Anima Synthesis + + + Earth Crystal + Profane Memory x4 + Mercury + Rock Salt + Sulfur + + NQ: Lightning Anima x10 + + HQ1: Lightning Anima x20 + HQ2: Lightning Anima x30 + HQ3: Lightning Anima x40 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (75) +Key Item: Anima Synthesis + + + Lightning Crystal + Startling Memory x4 + Mercury + Rock Salt + Sulfur + + NQ: Water Anima x10 + + HQ1: Water Anima x20 + HQ2: Water Anima x30 + HQ3: Water Anima x40 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (75) +Key Item: Anima Synthesis + + + Water Crystal + Somber Memory x4 + Mercury + Rock Salt + Sulfur + + NQ: Light Anima x10 + + HQ1: Light Anima x20 + HQ2: Light Anima x30 + HQ3: Light Anima x40 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (75) +Key Item: Anima Synthesis + + + Light Crystal + Radiant Memory x4 + Mercury + Rock Salt + Sulfur + + NQ: Dark Anima x10 + + HQ1: Dark Anima x20 + HQ2: Dark Anima x30 + HQ3: Dark Anima x40 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (75) +Key Item: Anima Synthesis + + + Dark Crystal + Malevolent Mem. x4 + Mercury + Rock Salt + Sulfur + + NQ: Electrum Bullet x33 + + HQ1: Electrum Bullet x99 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (75) +Sub Craft(s): Goldsmithing - (31) + + + Fire Crystal + Firesand + Electrum Ingot + + NQ: Venom Kukri + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (75) + + + Water Crystal + Alchemy Kit 75 + + NQ: Venom Bolt Heads x6 + + HQ1: Venom Bolt Heads x8 + HQ2: Venom Bolt Heads x10 + HQ3: Venom Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (76) +Sub Craft(s): Smithing - (14) + + + Wind Crystal + Animal Glue + Bronze Ingot + Venom Potion + + NQ: Kilo Battery x99 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (76) +Sub Craft(s): Goldsmithing - (18) + + + Water Crystal + Cermet Chunk + Distilled Water + Lightning Cluster + Rock Salt + Silver Ingot + Tin Ingot + + NQ: Cermet Kukri + + HQ1: Cermet Kukri +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (76) + + + Fire Crystal + Cermet Chunk + Ebony Lumber + Wyvern Skin + + NQ: Halcyon Rod + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (76) + + + Fire Crystal + Carbon Fiber x4 + Cermet Chunk + Glass Fiber x2 + + NQ: Regulator x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (76) +Key Item: Iatrochemistry + + + Fire Crystal + Brass Tank + Spectral Goldenrod + Chimera Blood + Imperial Cermet + Umbril Ooze + + NQ: X-Potion + + HQ1: X-Potion +1 + HQ2: X-Potion +2 + HQ3: X-Potion +3 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (77) + + + Water Crystal + Sage x2 + Hecteyes Eye + Distilled Water + Reishi Mushroom + + NQ: Freshwater Set + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (77) + + + Water Crystal + Desalinator + Holy Water + River Foliage + Silica + + NQ: Paralysis Arrowheads x6 + + HQ1: Paralysis Arrowheads x8 + HQ2: Paralysis Arrowheads x10 + HQ3: Paralysis Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (77) + + + Wind Crystal + Animal Glue + Copper Ingot + Imperial Cermet + Paralyze Potion + + NQ: Bread Crock + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (77) +Sub Craft(s): Goldsmithing - (23) + + + Fire Crystal + Jadeite + Grass Thread x2 + Kaolin x2 + + NQ: Jamadhars + + HQ1: Jamadhars +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (78) +Sub Craft(s): Smithing - (29) + + + Fire Crystal + Cermet Chunk x2 + Coeurl Leather + Iron Sheet + + NQ: Paralyze Potion + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (78) + + + Water Crystal + Mercury + Paralysis Dust + + NQ: Paralyze Potion x3 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (78) +Key Item: Trituration + + + Water Crystal + Mercury x3 + Paralysis Dust x3 + Triturator + + NQ: Air Rider x33 + + HQ1: Air Rider x66 + HQ2: Air Rider x99 + HQ2: Air Rider x99 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (78) +Sub Craft(s): Woodworking - (45) + + + Fire Crystal + Bast Parchment + Firesand x2 + Goblin Doll + Lauan Lumber + Twinkle Powder + + NQ: Venom Katars + + HQ1: Venom Katars +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (79) + + + Water Crystal + Animal Glue + Darksteel Katars + Venom Potion + + NQ: Holy Shield + + HQ1: Divine Shield + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (79) + + + Light Crystal + Hard Shield + Holy Water x2 + Mana Barrel + + NQ: Hyper Ether + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (79) + + + Water Crystal + Dried Marjoram x2 + Movalpolos Water + Taurus Wing x2 + Treant Bulb + + NQ: Red Storm Lantern + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (79) +Sub Craft(s): Clothcraft - (47), Goldsmithing - (19) + + + Fire Crystal + Olive Oil + Brass Ingot + Silver Ingot + Silk Cloth + Glass Sheet + Sailcloth + Red Textile Dye + + NQ: Blue Storm Lantern + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (79) +Sub Craft(s): Clothcraft - (47), Goldsmithing - (19) + + + Fire Crystal + Olive Oil + Brass Ingot + Silver Ingot + Silk Cloth + Glass Sheet + Sailcloth + Blue Textile Dye + + NQ: Green Storm Lantern + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (79) +Sub Craft(s): Clothcraft - (47), Goldsmithing - (19) + + + Fire Crystal + Olive Oil + Brass Ingot + Silver Ingot + Silk Cloth + Glass Sheet + Sailcloth + Green Textile Dye + + NQ: Yellow Storm Lantern + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (79) +Sub Craft(s): Clothcraft - (47), Goldsmithing - (19) + + + Fire Crystal + Olive Oil + Brass Ingot + Silver Ingot + Silk Cloth + Glass Sheet + Sailcloth + Yellow Textile Dye + + NQ: White Storm Lantern + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (79) +Sub Craft(s): Clothcraft - (47), Goldsmithing - (19) + + + Fire Crystal + Olive Oil + Brass Ingot + Silver Ingot + Silk Cloth + Glass Sheet + Sailcloth + White Textile Dye + + NQ: Kororito + + HQ1: Kororito +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (80) + + + Water Crystal + Animal Glue + Shinobi-Gatana + Venom Potion + + NQ: Stun Knife + + HQ1: Stun Knife +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (80) + + + Water Crystal + Animal Glue + Cermet Knife + Paralyze Potion + + NQ: Fluoro-flora + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (80) +Sub Craft(s): Goldsmithing - (41) + + + Water Crystal + Tufa + Red Gravel + Orobon Lure + Wildgrass Seeds + Super Ether + Humus + + NQ: Stun Knife + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (80) + + + Water Crystal + Alchemy Kit 80 + + +Adept (81-90) +Synthesis Information +Yield Requirements Ingredients + + NQ: Bloody Bolt Heads x6 + + HQ1: Bloody Bolt Heads x8 + HQ2: Bloody Bolt Heads x10 + HQ3: Bloody Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (81) +Sub Craft(s): Smithing - (14) + + + Wind Crystal + Beastman Blood + Bronze Ingot + Revival Tree Root + + NQ: Holy Wand + + HQ1: Holy Wand +1 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (81) + + + Light Crystal + Holy Water + Mythic Wand + + NQ: Hawker's Knife + + HQ1: Hawker's Knife +1 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (81) + + + Wind Crystal + Archer's Knife + Beastman Blood + Dragon Blood + Fiend Blood + + NQ: Gallipot + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (81) +Sub Craft(s): Woodworking - (33) + + + Fire Crystal + Walnut Log + Bamboo Stick + Silica + Djinn Ash + Karugo-Narugo Clay x4 + + NQ: Stun Claws + + HQ1: Stun Claws +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (82) + + + Water Crystal + Animal Glue + Cermet Claws + Paralyze Potion + + NQ: Saltwater Set + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (82) + + + Water Crystal + Holy Water + Salinator + Sea Foliage + White Sand + + NQ: Chocolixir + + HQ1: Hi-Chocolixir + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (82) + + + Light Crystal + Distilled Water + Gold Leaf + Mistletoe + Revival Tree Root + Royal Jelly + + NQ: Viper Dust + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (82) + + + Lightning Crystal + Khimaira Tail + + NQ: Bloody Blade + + HQ1: Carnage Blade + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (83) + + + Dark Crystal + Beastman Blood + Darksteel Falchion + Revival Tree Root + + NQ: Holy Lance + + HQ1: Holy Lance +1 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (83) + + + Light Crystal + Holy Water x2 + Mythril Lance + + NQ: Polyflan x2 + + HQ1: Polyflan x4 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (83) + + + Lightning Crystal + Chimera Blood + Flan Meat + + NQ: Dandy Spectacles + + HQ1: Fancy Spectacles + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (83) + + + Wind Crystal + Flint Glass Sheet + + NQ: Magniplug x3 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (83) +Key Item: Iatrochemistry + + + Fire Crystal + Mythril Sheet + Fire Bead + Homunculus Nerves + Plasma Oil + High Ebonite + + NQ: Arcanoclutch x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (83) +Key Item: Iatrochemistry + + + Fire Crystal + Mythril Sheet + Ice Bead + Homunculus Nerves + Plasma Oil + High Ebonite + + NQ: Sacred Wand + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (84) + + + Light Crystal + Hallowed Water + Holy Wand + + NQ: Dragon Blood x4 + + HQ1: Dragon Blood x6 + + LightningCrystal-Icon.gif + +Main Craft: Alchemy - (84) + + + Lightning Crystal + Dragon Heart + + NQ: Ouka Ranman x33 + + HQ1: Ouka Ranman x66 + HQ2: Ouka Ranman x99 + HQ3: Ouka Ranman x99 + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (84) +Sub Craft(s): Woodworking - (23) + + + Earth Crystal + Amaryllis + Bast Parchment x2 + Firesand + + NQ: Cermet Kilij + + HQ1: Cermet Kilij +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (84) +Sub Craft(s): Goldsmithing - (47), Woodworking - (45) + + + Fire Crystal + Mythril Ingot x2 + Garnet + Sunstone + Marid Leather + Teak Lumber + + NQ: Hakutaku Eye Cluster + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (84) + + + Light Crystal + Fiend Blood + Burning Hakutaku Eye + Damp Hakutaku Eye + Earthen Hakutaku Eye + Golden Hakutaku Eye + Wooden Hakutaku Eye + + NQ: Bloody Rapier + + HQ1: Carnage Rapier + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (85) + + + Dark Crystal + Beastman Blood + Revival Tree Root + Schlaeger + + NQ: Composite Fishing Rod + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (85) + + + Light Crystal + Broken Comp. Rod + + NQ: Photoanima + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (85) +Key Item: Anima Synthesis + + + Fire Crystal + Dark Anima + Earth Anima + Fire Anima + Ice Anima + Light Anima + Lightning Anima + Water Anima + Wind Anima + + NQ: Gold Bullet x33 + + HQ1: Gold Bullet x99 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (85) +Sub Craft(s): Goldsmithing - (38) + + + Fire Crystal + Firesand + Gold Ingot + + NQ: Bloody Rapier + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (85) + + + Dark Crystal + Alchemy Kit 85 + + NQ: Sacred Lance + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (86) + + + Light Crystal + Hallowed Water + Holy Lance + + NQ: Mega Battery x99 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (86) +Sub Craft(s): Smithing - (31), Goldsmithing - (16) + + + Water Crystal + Cermet Chunk + Distilled Water + Iron Ingot + Lightning Cluster + Rock Salt + Silver Ingot + + NQ: Stun Kukri + + HQ1: Stun Kukri +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (86) + + + Water Crystal + Animal Glue + Cermet Kukri + Paralyze Potion + + NQ: Alchemist's Water x9 + + HQ1: Alchemist's Water x12 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (86) + + + Dark Crystal + Beastman Blood + Dryad Root + Mercury + Philosopher's Stone + + NQ: Flint Glass Sheet + + HQ1: Flint Glass Sheet x2 + HQ2: Flint Glass Sheet x3 + HQ3: Flint Glass Sheet x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (86) + + + Fire Crystal + Rock Salt + Shell Powder + Silica x4 + Minium x2 + + NQ: Garden Bangles + + HQ1: Feronia's Bangles + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (87) +Sub Craft(s): Woodworking - (57) + + + Dark Crystal + Dryad Root + Fiend Blood + Four-Leaf Korringan Bud + Great Boyahda Moss + Mercury + + NQ: Venom Kris + + HQ1: Venom Kris +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (87) + + + Water Crystal + Animal Glue + Darksteel Kris + Venom Potion + + NQ: Holy Leather + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (87) + + + Light Crystal + Holy Water + Ram Leather + + NQ: Bloody Sword + + HQ1: Carnage Sword + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (88) + + + Dark Crystal + Bastard Sword + Beastman Blood + Revival Tree Root + + NQ: Gold Nugget x9 + + HQ1: Gold Nugget x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (88) + + + Fire Crystal + Gold Leaf + Panacea + + NQ: Elixir Vitae + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (88) + + + Light Crystal + Chimera Blood + Distilled Water + Imp Wing + Mistletoe + Revival Tree Root + + NQ: Viper Potion + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (88) + + + Water Crystal + Mercury + Viper Dust + + NQ: Viper Potion x3 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (88) +Key Item: Trituration + + + Water Crystal + Mercury x3 + Viper Dust x3 + Triturator + + NQ: Arcanoclutch II x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (88) +Key Item: Iatrochemistry + + + Fire Crystal + Platinum Sheet + Ice Bead + Homunculus Nerves + Plasma Oil + High Ebonite + + NQ: Magniplug II x3 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (88) +Key Item: Iatrochemistry + + + Fire Crystal + Platinum Sheet + Fire Bead + Homunculus Nerves + Plasma Oil + High Ebonite + + NQ: Truesights x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (88) +Key Item: Iatrochemistry + + + Fire Crystal + Platinum Sheet + Wind Bead + Homunculus Nerves + Plasma Oil + High Ebonite + + NQ: Super Ether + + HQ1: Super Ether +1 + HQ2: Super Ether +2 + HQ3: Super Ether +3 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (89) + + + Water Crystal + Ahriman Wing + Distilled Water + Dried Marjoram x3 + Treant Bulb + + NQ: Composite Fishing Rod + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (89) + + + Fire Crystal + Carbon Fiber x3 + Cermet Chunk x2 + Glass Fiber x2 + + NQ: Stun Jamadhars + + HQ1: Stun Jamadhars +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (89) + + + Water Crystal + Animal Glue + Jamadhars + Paralyze Potion + + NQ: Alchemist's Tools + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (89) + + + Fire Crystal + Iron Ingot + Parchment + Glass Sheet + Triturator + Colibri Feather + Aht Urhgan Brass Ingot + Aht Urhgan Brass Sheet + Flint Glass Sheet + + NQ: Bloody Lance + + HQ1: Carnage Lance + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (90) + + + Dark Crystal + Beastman Blood x2 + Darksteel Lance + Revival Tree Root + + NQ: Elixir + + HQ1: Hi-Elixir + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (90) + + + Light Crystal + Distilled Water + Dragon Blood + Mistletoe + Revival Tree Root + Royal Jelly + + NQ: Espadon + + HQ1: Espadon +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (90) + + + Fire Crystal + Cermet Chunk x3 + Coeurl Leather + + NQ: Adder Jambiya + + HQ1: Adder Jambiya +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (90) + + + Water Crystal + Animal Glue + Viper Potion + Khimaira Jambiya + + NQ: Oxidant Baselard + + HQ1: Nitric Baselard + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (90) + + + Water Crystal + Animal Glue + Rhodium Ingot + Umbril Ooze + Acuex Poison + Mythril Baselard + + NQ: Nakajimarai + + HQ1: Nakajimarai +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (90) + + + Water Crystal + Animal Glue + Rhodium Ingot + Umbril Ooze + Acuex Poison + Shinobi-Gatana + + NQ: Bloody Lance + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (90) + + + Dark Crystal + Alchemy Kit 90 + + +Veteran (91-100) +Synthesis Information +Yield Requirements Ingredients + + NQ: Urushi x2 + + HQ1: Urushi x4 + HQ2: Urushi x6 + HQ3: Urushi x8 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (91) +Sub Craft(s): Woodworking - (59), Smithing - (21) + + + Fire Crystal + Honey + Iron Ore + Lacquer Tree Sap x4 + + NQ: Mamushito + + HQ1: Mamushito +1 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (91) + + + Water Crystal + Animal Glue + Paralyze Potion + Shinobi-Gatana + + NQ: Ether Leather + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (91) + + + Water Crystal + Ahriman Wing + Ram Leather + Distilled Water + Dried Marjoram x3 + Treant Bulb + + NQ: Ether Cotton + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (91) + + + Water Crystal + Ahriman Wing + Cotton Cloth + Distilled Water + Dried Marjoram x3 + Treant Bulb + + NQ: Ether Holly + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (91) + + + Water Crystal + Ahriman Wing + Holly Lumber + Distilled Water + Dried Marjoram x3 + Treant Bulb + + NQ: Bewitched Greaves + + HQ1: Voodoo Greaves + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (91) + + + Dark Crystal + Cursed Greaves -1 + Eschite Ore + + NQ: Vexed Nails + + HQ1: Jinxed Nails + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (91) + + + Dark Crystal + Hexed Nails -1 + Eschite Ore + + NQ: Strength Potion + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (92) + + + Water Crystal + Distilled Water + Dried Mugwort + Boyahda Moss + Honey + Red Rose + + NQ: Dexterity Potion + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (92) + + + Water Crystal + Distilled Water + Dried Mugwort + Malboro Vine + Honey + Sweet William + + NQ: Vitality Potion + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (92) + + + Water Crystal + Distilled Water + Dried Mugwort + Lizard Tail + Honey + Chamomile + + NQ: Agility Potion + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (92) + + + Water Crystal + Distilled Water + Dried Mugwort + Hecteyes Eye + Honey + Phalaenopsis + + NQ: Intelligence Potion + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (92) + + + Water Crystal + Distilled Water + Dried Mugwort + Coeurl Whisker + Honey + Olive Flower + + NQ: Mind Potion + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (92) + + + Water Crystal + Distilled Water + Dried Mugwort + Bat Wing + Honey + Casablanca + + NQ: Charisma Potion + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (92) + + + Water Crystal + Distilled Water + Dried Mugwort + Two-Leaf Mandragora Bud + Honey + Cattleya + + NQ: Cursed Cuisses + + HQ1: Cursed Cuisses -1 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (92) + + + Dark Crystal + Revival Tree Root + Dragon Blood + Dragon Cuisses + + NQ: Sekishitsu x2 + + HQ1: Sekishitsu x4 + HQ2: Sekishitsu x6 + HQ3: Sekishitsu x8 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (92) +Sub Craft(s): Woodworking - (60) + + + Fire Crystal + Honey + Vermilion Lacquer + Lacquer Tree Sap x4 + + NQ: Bewitched Finger Gauntlets + + HQ1: Voodoo Finger Gauntlets + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (92) + + + Dark Crystal + Cursed Finger Gauntlets -1 + Eschite Ore + + NQ: Vexed Gages + + HQ1: Jinxed Gages + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (92) + + + Dark Crystal + Hexed Gages -1 + Eschite Ore + + NQ: Antacid + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (93) +Sub Craft(s): Cooking - (43) + + + Earth Crystal + Chamomile + Distilled Water + Dried Marjoram + Dried Mugwort + Maple Sugar + + NQ: Ice Lance + + HQ1: Ice Lance +1 + + IceCrystal-Icon.gif + +Main Craft: Alchemy - (93) + + + Ice Crystal + Cermet Lance + Distilled Water + Rock Salt + + NQ: Icarus Wing + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (93) + + + Wind Crystal + Beeswax x2 + Giant Bird Feather x6 + + NQ: Cursed Finger Gauntlets + + HQ1: Cursed Finger Gauntlets -1 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (93) + + + Dark Crystal + Revival Tree Root + Dragon Blood + Dragon Finger Gauntlets + + NQ: Hermes Quencher + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (93) + + + Water Crystal + Dried Mugwort + Flytrap Leaf + Jacknife + Honey + Movalpolos Water + + NQ: Bewitched Cuisses + + HQ1: Voodoo Cuisses + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (93) + + + Dark Crystal + Cursed Cuisses -1 + Eschite Ore + + NQ: Vexed Slops + + HQ1: Jinxed Slops + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (93) + + + Dark Crystal + Hexed Slops -1 + Eschite Ore + + NQ: Cannon Shell x6 + + HQ1: Cannon Shell x8 + HQ2: Cannon Shell x10 + HQ3: Cannon Shell x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (94) +Sub Craft(s): Goldsmithing - (18), Smithing - (34) + + + Fire Crystal + Bomb Arm + Brass Ingot + Firesand x2 + Iron Ingot + + NQ: Cursed Greaves + + HQ1: Cursed Greaves -1 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (94) + + + Dark Crystal + Revival Tree Root + Dragon Blood + Dragon Greaves + + NQ: Elixir Tank + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (94) +Sub Craft(s): Leathercraft - (1) + + + Fire Crystal + Sheep Leather + Brass Tank + Elixir x4 + + NQ: Bewitched Mask + + HQ1: Voodoo Mask + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (94) + + + Dark Crystal + Cursed Mask -1 + Eschite Ore + + NQ: Vexed Coif + + HQ1: Jinxed Coif + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (94) + + + Dark Crystal + Hexed Coif -1 + Eschite Ore + + NQ: Max-Potion + + HQ1: Max-Potion +1 + HQ2: Max-Potion +2 + HQ3: Max-Potion +3 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (95) + + + Water Crystal + Distilled Water + Dragon Blood + Reishi Mushroom + Sage x4 + + NQ: Marksman's Oil + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (95) + + + Water Crystal + Goblin Grease + Slime Juice + + NQ: Platinum Bullet x33 + + HQ1: Platinum Bullet x66 + HQ2: Platinum Bullet x99 + HQ3: Platinum Bullet x99 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (95) +Sub Craft(s): Goldsmithing - (48) + + + Fire Crystal + Platinum Ingot + Firesand + + NQ: Bewitched Mail + + HQ1: Voodoo Mail + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (95) + + + Dark Crystal + Cursed Mail -1 + Eschite Ore + + NQ: Vexed Doublet + + HQ1: Jinxed Doublet + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (95) + + + Dark Crystal + Hexed Doublet -1 + Eschite Ore + + NQ: Max-Potion + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (95) + + + Water Crystal + Alchemy Kit 95 + + NQ: Platinum Nugget x9 + + HQ1: Platinum Nugget x12 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (96) + + + Fire Crystal + Panacea + Platinum Leaf + + NQ: Cursed Mask + + HQ1: Cursed Mask -1 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (96) + + + Dark Crystal + Revival Tree Root + Dragon Blood + Dragon Mask + + NQ: Ice Shield + + HQ1: Ice Shield +1 + + IceCrystal-Icon.gif + +Main Craft: Alchemy - (97) + + + Ice Crystal + Diamond Shield + Rock Salt + Distilled Water + + NQ: Papillion x33 + + HQ1: Papillion x66 + HQ2: Papillion x99 + HQ3: Papillion x99 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (97) + + + Light Crystal + Artificial Lens + Insect Wing x2 + Prism Powder + Rainbow Thread + + NQ: Panacea + + HQ1: Panacea x2 + HQ2: Panacea x3 + HQ3: Panacea x4 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (98) + + + Light Crystal + Mercury + Philosopher's Stone + Rock Salt + Sulfur + + NQ: Dragon Slayer + + HQ1: Wyrm Slayer + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (98) + + + Dark Crystal + Demon Blood + Ameretat Vine + Adaman Kilij + + NQ: Demon Slayer + + HQ1: Devil Slayer + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (98) + + + Dark Crystal + Dragon Blood + Ameretat Vine + Adaman Kilij + + NQ: Cursed Mail + + HQ1: Cursed Mail -1 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (99) + + + Dark Crystal + Revival Tree Root + Dragon Blood x2 + Dragon Mail + + NQ: Cantarella + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (99) + + + Dark Crystal + Distilled Water + Fresh Orc Liver + Mercury + Paralysis Dust + Venom Dust + + NQ: San d'Orian Tea Set + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (99) + + + Fire Crystal + Silver Ingot + Angelstone + Kaolin x2 + + NQ: Ephedra Ring + + HQ1: Haoma's Ring + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (99) + + + Light Crystal + Holy Water x2 + Hallowed Water + Mythril Ring + + NQ: Saida Ring + + HQ1: Eshmun's Ring + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (99) + + + Light Crystal + Holy Water x2 + Hallowed Water + Orichalcum Ring + + NQ: Pro-Ether + + HQ1: Pro-Ether +1 + HQ2: Pro-Ether +2 + HQ3: Pro-Ether +3 + + WaterCrystal-Icon.gif + +Main Craft: Alchemy - (100) + + + Water Crystal + Ahriman Wing x2 + Distilled Water + Dried Marjoram x3 + Treant Bulb + Wyvern Wing + + NQ: Crystal Rose + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (100) +Sub Craft(s): Goldsmithing - (60) + + + Fire Crystal + Scintillant Ingot + Flint Glass Sheet x3 + + +Expert (101-110) +Synthesis Information +Yield Requirements Ingredients + + NQ: Gold Algol + + HQ1: Gold Algol +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (101) +Sub Craft(s): Goldsmithing - (60) + + + Fire Crystal + Divine Lumber + Gold Ingot x2 + Scintillant Ingot + Super Cermet x4 + + NQ: Sun Water + + HQ1: Sun Water x2 + HQ1: Sun Water x3 + HQ1: Sun Water x4 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (102) + + + Light Crystal + Beastman Blood + Cactuar Root + Mercury + Philosopher's Stone + + NQ: Pungent Powder x12 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (102 Verification Needed) + + + Light Crystal + Glass Fiber x 2 + Ahriman Lens + Gelatin + Cornstarch + Saruta Cotton + Silk Cloth + Pagodite + + NQ: Pungent Powder II x12 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (102) + + + Light Crystal + Glass Fiber x 2 + Ahriman Lens + Revival Root + Cornstarch + Saruta Cotton + Silk Cloth + Pagodite + + NQ: Pungent Powder III x12 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (102 Verification Needed) + + + Light Crystal + Glass Fiber x 2 + Ahriman Lens + unknown Question + Cornstarch + Saruta Cotton + Silk Cloth + Pagodite + + NQ: Turbo Charger II x3 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (103) +Key Item: Iatrochemistry + + + Fire Crystal + Mythril Sheet + Glass Fiber + Glass Sheet + Scroll of Haste + Mega Fan + Vanir Battery + + NQ: Vivi-Valve II x3 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (103) +Key Item: Iatrochemistry + + + Fire Crystal + Mythril Sheet + Glass Fiber + Light Bead + Vanir Battery + + NQ: Saline Broth x4 + + HQ1:Saline Broth x6 + HQ2:Saline Broth x8 + HQ3:Saline Broth x10 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (104) + + + Dark Crystal + Mercury + Beastman Blood + Philosopher's Stone + Buried Vestige + + NQ: Abrasion Bolt Heads x6 + + HQ1: Abrasion Bolt Heads x8 + HQ2: Abrasion Bolt Heads x10 + HQ3: Abrasion Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (104) +Sub Craft(s): Smithing - (??) + + + Wind Crystal + Mercury + Animal Glue + Belladonna Sap + Acuex Poison + Ra'Kaznar Ingot + + NQ: Righteous Bolt Heads x6 + + HQ1: Righteous Bolt Heads x8 + HQ2: Righteous Bolt Heads x10 + HQ3: Righteous Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Alchemy - (104) +Sub Craft(s): Smithing - (??) + + + Wind Crystal + Animal Glue + Avatar Blood + Hallowed Water x2 + Ra'Kaznar Ingot + + NQ: Hexed Nails + + HQ1: Hexed Nails -1 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (105) + + + Dark Crystal + Revival Tree Root + Ethereal Squama + Belladonna Sap + Ebony Sabots + + NQ: Azure Cermet + + HQ1: Azure Cermet x2 + HQ2: Azure Cermet x3 + HQ3: Azure Cermet x4 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (105) + + + Fire Crystal + Cermet Chunk + Panacea + Azure Leaf + + NQ: Hexed Slops + + HQ1: Hexed Slops -1 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (106) + + + Dark Crystal + Revival Tree Root + Ethereal Squama + Belladonna Sap + Velvet Slops + + NQ: Malison Medallion + + HQ1: Debilis Medallion + + EarthCrystal-Icon.gif + +Main Craft: Alchemy - (106) +Sub Craft(s): Goldsmithing - (25) + + + Earth Crystal + Silver Chain x2 + Heliodor + Neutralizing Silver Ingot + Holy Water x2 + Hallowed Water + + NQ: Hexed Coif + + HQ1: Hexed Coif -1 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (107) + + + Dark Crystal + Revival Tree Root + Ethereal Squama + Belladonna Sap + Velvet Hat + + NQ: Hexed Gages + + HQ1: Hexed Gages -1 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (108) + + + Dark Crystal + Revival Tree Root + Ethereal Squama + Belladonna Sap + Velvet Cuffs + + NQ: Hexed Doublet + + HQ1: Hexed Doublet -1 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (110) + + + Dark Crystal + Revival Tree Root + Ethereal Squama + Belladonna Sap x2 + Velvet Robe + + NQ: Killer's Kilij + + HQ1: Eradicator's Kilij + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (110) + + + Dark Crystal + Fiend Blood + Demon Blood + Dragon Blood + Avatar Blood + Beast Blood + Chimera Blood + Ameretat Vine + Adaman Kilij + + NQ: Bagua Charm + + HQ1: Bagua Charm +1 + HQ2: Bagua Charm +2 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (110) +Sub Craft(s): Bonecraft - (55) + + + Light Crystal + Cehuetzi Claw + Dark Matter + Cyan Coral + Emerald Crystal + Moldy Charm + + NQ: Bard's Charm + + HQ1: Bard's Charm +1 + HQ2: Bard's Charm +2 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (110) +Sub Craft(s): Bonecraft - (55) + + + Light Crystal + Cehuetzi Claw + Dark Matter + Cyan Coral + Alexandrite Crystal + Moldy Charm + + NQ: Commodore Charm + + HQ1: Commodore Charm +1 + HQ2: Commodore Charm +2 + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (110) +Sub Craft(s): Bonecraft - (55) + + + Light Crystal + Cehuetzi Claw + Dark Matter + Cyan Coral + Jadeite Crystal + Moldy Charm + + +Authority (111-120) +Synthesis Information +Yield Requirements Ingredients + + NQ: Bewitched Greaves + + HQ1: Voodoo Greaves + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (111) +Sub Craft(s): Bonecraft - (70) + + + Dark Crystal + Cursed Greaves + Emperor Arthro's Shell + Plovid Effluvium + Eschite Ore + + NQ: Vexed Nails + + HQ1: Jinxed Nails + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (111) +Sub Craft(s): Clothcraft - (70) + + + Dark Crystal + Sif's Macrame + Defiant Sweat + Eschite Ore + Hexed Nails + + NQ: Futhark Claymore + + HQ1: Peord Claymore + HQ2: Morgelai + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (111~114) +Sub Craft(s): Clothcraft - (Information Needed) + +Smithing - (Information Needed) +Key Item: Alchemist's aurum tome + + + Light Crystal + Defiant Scarf + Dark Matter + Niobium Ore + Moldy G. Sword + Ratnaraj + Relic Adaman x2 + Apatite Crystal + + NQ: Wyrm Lance + + HQ1: Pteroslaver Lance + HQ2: Aram + + LightCrystal-Icon.gif + +Main Craft: Alchemy - (111~114) +Sub Craft(s): Goldsmithing - (Information Needed) + +Woodworking - (Information Needed) +Key Item: Alchemist's aurum tome + + + Light Crystal + Defiant Scarf + Dark Matter + Cypress Log + Moldy Polearm + Ratnaraj + Relic Adaman x2 + Andalusite Crystal + + NQ: Bewitched Finger Gauntlets + + HQ1: Voodoo Finger Gauntlets + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (112) +Sub Craft(s): Bonecraft - (70) + + + Dark Crystal + Cursed Finger Gauntlets + Emperor Arthro's Shell + Plovid Effluvium + Eschite Ore + + NQ: Vexed Gages + + HQ1: Jinxed Gages + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (112) +Sub Craft(s): Clothcraft - (70) + + + Dark Crystal + Sif's Macrame + Defiant Sweat + Eschite Ore + Hexed Gages + + NQ: Dija Sword + + HQ1: Dija Sword +1 + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (113) + + + Dark Crystal + Dragon Blood + Yggdreant Root + Bastard Sword + + NQ: Bewitched Cuisses + + HQ1: Voodoo Cuisses + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (113) +Sub Craft(s): Bonecraft - (70) + + + Dark Crystal + Cursed Cuisses + Emperor Arthro's Shell + Plovid Effluvium + Eschite Ore + + NQ: Vexed Slops + + HQ1: Jinxed Slops + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (113) +Sub Craft(s): Clothcraft - (70) + + + Dark Crystal + Sif's Macrame + Defiant Sweat + Eschite Ore + Hexed Slops + + NQ: Bewitched Mask + + HQ1: Voodoo Mask + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (114) +Sub Craft(s): Bonecraft - (70) + + + Dark Crystal + Cursed Mask + Emperor Arthro's Shell + Plovid Effluvium + Eschite Ore + + NQ: Vexed Coif + + HQ1: Jinxed Coif + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (114) +Sub Craft(s): Clothcraft - (70) + + + Dark Crystal + Sif's Macrame + Defiant Sweat + Eschite Ore + Hexed Coif + + NQ: Bewitched Mail + + HQ1: Voodoo Mail + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (115) +Sub Craft(s): Bonecraft - (70) + + + Dark Crystal + Cursed Mail + Emperor Arthro's Shell + Plovid Effluvium + Eschite Ore + + NQ: Vexed Doublet + + HQ1: Jinxed Doublet + + DarkCrystal-Icon.gif + +Main Craft: Alchemy - (115) +Sub Craft(s): Clothcraft - (70) + + + Dark Crystal + Sif's Macrame + Defiant Sweat + Eschite Ore + Hexed Doublet + + NQ: Pinga Pumps + + HQ1: Pinga Pumps +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (115~120) +Sub Craft(s): Clothcraft - (??) +Key Item: Alchemist's argentum tome + + + Fire Crystal + Darksteel Sheet + Rockfin Tooth + Defiant Scarf + Azure Cermet x2 + + NQ: Ratri Sollerets + + HQ1: Ratri Sollerets +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (115~120) +Sub Craft(s): Smithing - (??) +Key Item: Alchemist's argentum tome + + + Fire Crystal + Gold Sheet + Cehuetzi Claw + Macuil Plating + Azure Cermet x2 + + NQ: Pinga Mittens + + HQ1: Pinga Mittens +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (115~120) +Sub Craft(s): Clothcraft - (??) +Key Item: Alchemist's argentum tome + + + Fire Crystal + Darksteel Sheet x2 + Rockfin Tooth + Defiant Scarf + Azure Cermet x2 + + NQ: Ratri Gadlings + + HQ1: Ratri Gadlings +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (115~120) +Sub Craft(s): Smithing - (??) +Key Item: Alchemist's argentum tome + + + Fire Crystal + Gold Sheet x2 + Cehuetzi Claw + Macuil Plating + Azure Cermet x2 + + NQ: Pinga Crown + + HQ1: Pinga Crown +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (115~120) +Sub Craft(s): Clothcraft - (??) +Key Item: Alchemist's argentum tome + + + Fire Crystal + Darksteel Sheet + Darksteel Chain + Rockfin Tooth + Defiant Scarf + Azure Cermet x2 + + NQ: Ratri Sallet + + HQ1: Ratri Sallet +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (115~120) +Sub Craft(s): Smithing - (??) +Key Item: Alchemist's argentum tome + + + Fire Crystal + Gold Sheet + Gold Chain + Cehuetzi Claw + Macuil Plating + Azure Cermet x2 + + NQ: Pinga Pants + + HQ1: Pinga Pants +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (115~120) +Sub Craft(s): Clothcraft - (??) +Key Item: Alchemist's argentum tome + + + Fire Crystal + Darksteel Sheet + Darksteel Chain + Rockfin Tooth + Defiant Scarf + Azure Cermet x3 + + NQ: Ratri Cuisses + + HQ1: Ratri Cuisses +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (115~120) +Sub Craft(s): Smithing - (??) +Key Item: Alchemist's argentum tome + + + Fire Crystal + Gold Sheet + Gold Chain + Cehuetzi Claw + Macuil Plating + Azure Cermet x3 + + NQ: Pinga Tunic + + HQ1: Pinga Tunic +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (115~120) +Sub Craft(s): Clothcraft - (??) +Key Item: Alchemist's argentum tome + + + Fire Crystal + Darksteel Sheet + Darksteel Chain + Rockfin Tooth + Defiant Scarf x2 + Azure Cermet x3 + + NQ: Ratri Breastplate + + HQ1: Ratri Breastplate +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (115~120) +Sub Craft(s): Smithing - (??) +Key Item: Alchemist's argentum tome + + + Fire Crystal + Gold Sheet + Gold Chain + Cehuetzi Claw + Macuil Plating x2 + Azure Cermet x3 + + NQ: Raetic Algol + + HQ1: Raetic Algol +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (115~120) +Key Item: Alchemist's argentum tome + + + Fire Crystal + Thought Crystal + Azure Cermet + Rune Algol + + NQ: Chirich Ring + + HQ1:Chirich Ring +1 + + FireCrystal-Icon.gif + +Main Craft: Alchemy - (118) + + + Fire Crystal + Plovid Effluvium + Macuil Plating + Defiant Sweat + Dark Matter \ No newline at end of file diff --git a/datasets/Alchemy_v2.csv b/datasets/Alchemy_v2.csv new file mode 100644 index 0000000..beffb10 --- /dev/null +++ b/datasets/Alchemy_v2.csv @@ -0,0 +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]" diff --git a/datasets/Bonecraft.txt b/datasets/Bonecraft.txt new file mode 100644 index 0000000..ae18fb6 --- /dev/null +++ b/datasets/Bonecraft.txt @@ -0,0 +1,5193 @@ +Bonecrafting Crafted Items +Amateur (1-10) +Synthesis Information +Yield Requirements Ingredients + + NQ: Shell Powder + + HQ1:Shell Powder x2 + HQ2:Shell Powder x3 + HQ3:Shell Powder x4 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (1) + + + Wind Crystal + Seashell x3 + + NQ: Wailing Bone Chip + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (1) +Key Item: Bone Ensorcellment + + + Wind Crystal + Bone Chip + Ice Anima + Earth Anima + Dark Anima + + NQ: Shell Earring + + HQ1:Shell Earring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (3) + + + Wind Crystal + Seashell x2 + + NQ: Bone Hairpin + + HQ1:Bone Hairpin +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (4) + + + Wind Crystal + Bone Chip + + NQ: Shell Powder + + HQ1:Shell Powder x2 + HQ2:Shell Powder x3 + HQ3:Shell Powder x4 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (5) + + + Wind Crystal + Vongola Clam x2 + + NQ: Shell Powder + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (5) + + + Wind Crystal + Bonecraft Kit 5 + + NQ: Eldritch Bone Hairpin + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (7) + + + Wind Crystal + Wailing Bone Chip + Bone Hairpin + + NQ: Shell Ring + + HQ1:Shell Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (7) + + + Wind Crystal + Fish Scales + Seashell + + NQ: Wailing Shell + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (8) +Key Item: Bone Ensorcellment + + + Wind Crystal + Seashell + Ice Anima + Earth Anima + Dark Anima + + NQ: Cat Baghnakhs + + HQ1:Cat Baghnakhs +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (9) +Sub Craft(s): Smithing - (3) + + + Earth Crystal + Bronze Sheet + Rabbit Hide + Bone Chip x3 + + NQ: Bone Arrowheads x6 + + HQ1:Bone Arrowheads x8 + HQ2:Bone Arrowheads x10 + HQ3:Bone Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (10) + + + Wind Crystal + Bone Chip x2 + + NQ: Bone Arrowheads x18 + + HQ1:Bone Arrowheads x24 + HQ2:Bone Arrowheads x30 + HQ3:Bone Arrowheads x36 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (10) +Key Item: Filing + + + Wind Crystal + Bone Chip x6 + Shagreen File + + NQ: Manashell Ring + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (10) + + + Wind Crystal + Wailing Shell + Shell Ring + + NQ: Bone Arrow x33 + + HQ1:Bone Arrow x66 + HQ2:Bone Arrow x99 + HQ3:Bone Arrow x99 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (10) +Sub Craft(s): Woodworking - (2) + + + Wind Crystal + Arrowwood Lumber + Yagudo Feather x2 + Bone Chip x3 + + NQ: Bone Arrowheads x6 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (10) + + + Wind Crystal + Bonecraft Kit 10 + + +Recruit (11-20) +Synthesis Information +Yield Requirements Ingredients + + NQ: Bone Earring + + HQ1:Bone Earring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (12) +Sub Craft(s): Goldsmithing - (3) + + + Wind Crystal + Bone Chip x2 + Brass Ingot + + NQ: Gelatin + + HQ1:Gelatin x2 + HQ2:Gelatin x3 + HQ3:Gelatin x4 + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (13) + + + Fire Crystal + Chicken Bone x2 + Distilled Water + + NQ: Cornette + + HQ1:Cornette +1 + HQ2:Cornette +1 + HQ3:Cornette +2 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (14) +Sub Craft(s): Goldsmithing - (14) + + + Wind Crystal + Brass Ingot + Bone Chip + + NQ: Windurstian Baghnakhs + + HQ1:Federation Baghnakh + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (14) + + + Earth Crystal + Freesword's Baghnakhs + Bone Chip + + NQ: Fang Necklace + + HQ1:Spike Necklace + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (15) + + + Earth Crystal + Bat Fang x4 + Black Tiger Fang + Bone Chip x2 + Grass Thread + + NQ: Fang Necklace + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (15) + + + Earth Crystal + Bonecraft Kit 15 + + NQ: Fish Scales x12 + + HQ1:High-Quality Pugil Scales x1 + HQ2:High-Quality Pugil Scales x2 + HQ3:High-Quality Pugil Scales x3 + + LightningCrystal-Icon.gif + +Main Craft: Bonecraft - (16) + + + Lightning Crystal + Gavial Fish + + NQ: Vivio Femur + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (16) +Key Item: Bone Purification + + + Wind Crystal + Giant Femur + Wind Anima + Water Anima + Light Anima + + NQ: Gelatin + + HQ1:Gelatin x2 + HQ2:Gelatin x3 + HQ3:Gelatin x4 + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (16) + + + Fire Crystal + Bone Chip x4 + Distilled Water + + NQ: Bone Ring + + HQ1:Bone Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (17) + + + Wind Crystal + Sheep Tooth + Bone Chip + + NQ: Bone Mask + + HQ1:Bone Mask +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (18) + + + Earth Crystal + Giant Femur + Bone Chip + Sheep Leather + + NQ: Pearl + + HQ1:Black Pearl + HQ2:Black Pearl + HQ3:Black Pearl + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (19) + + + Wind Crystal + Shall Shell + + NQ: Pearl + + HQ1:Black Pearl + HQ2:Black Pearl + HQ3:Black Pearl + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (19) + + + Wind Crystal + Istiridye + + NQ: Bone Axe + + HQ1:Bone Axe +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (20) + + + Wind Crystal + Giant Femur + Ram Horn x2 + + NQ: Bone Mittens + + HQ1:Bone Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (20) +Sub Craft(s): Leathercraft - (5) + + + Earth Crystal + Bone Chip x2 + Sheep Leather x2 + + NQ: Bone Axe + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (20) + + + Wind Crystal + Bonecraft Kit 20 + + +Initiate (21-30) +Synthesis Information +Yield Requirements Ingredients + + NQ: Carapace Powder + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (21) + + + Wind Crystal + Beetle Shell x2 + + NQ: Bone Leggings + + HQ1:Bone Leggings +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (22) +Sub Craft(s): Leathercraft - (5) + + + Earth Crystal + Giant Femur + Bone Chip + Sheep Leather x2 + + NQ: Bone Pick + + HQ1:Bone Pick +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (23) +Sub Craft(s): Woodworking - (6) + + + Wind Crystal + Ash Lumber + Giant Femur + + NQ: Bone Subligar + + HQ1:Bone Subligar +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (24) +Sub Craft(s): Leathercraft - (6) + + + Earth Crystal + Bone Chip + Grass Cloth + Sheep Leather x2 + + NQ: Gemshorn + + HQ1:Gemshorn +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (24) + + + Wind Crystal + Giant Femur + Beetle Jaw + + NQ: Jolt Axe + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (24) +Key Item: Bone Ensorcellment + + + Wind Crystal + Lambent Fire Cell + Lambent Wind Cell + Bone Axe + + NQ: Beetle Ring + + HQ1:Beetle Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (25) + + + Wind Crystal + Beetle Jaw + + NQ: Smooth Beetle Jaw + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (25) +Key Item: Bone Purification + + + Wind Crystal + Beetle Jaw + Wind Anima x2 + Light Anima + + NQ: Beetle Ring + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (25) + + + Wind Crystal + Bonecraft Kit 25 + + NQ: Bone Harness + + HQ1:Bone Harness +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (26) +Sub Craft(s): Leathercraft - (7) + + + Earth Crystal + Pugil Scales + Sheep Leather x2 + Giant Femur + Bone Chip + + NQ: Mettle Leggings + + HQ1:Mettle Leggings +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (26) +Sub Craft(s): Leathercraft - (11) + + + Earth Crystal + Samwell's Shank + Sheep Leather x2 + Bone Chip + + NQ: Beetle Earring + + HQ1:Beetle Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (27) + + + Earth Crystal + Beetle Jaw + Silver Earring + + NQ: Wailing Ram Horn + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (27) +Key Item: Bone Ensorcellment + + + Wind Crystal + Ram Horn + Ice Anima + Earth Anima + Dark Anima + + NQ: Gelatin x4 + + HQ1:Gelatin x6 + HQ2:Gelatin x8 + HQ3:Gelatin x10 + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (28) + + + Fire Crystal + Giant Femur + Distilled Water + + NQ: Horn Hairpin + + HQ1:Horn Hairpin +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (29) + + + Wind Crystal + Ram Horn + + NQ: San d'Orian Horn + + HQ1:Kingdom Horn + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (29) + + + Wind Crystal + Royal Spearman's Horn + Giant Femur + + NQ: Seer's Crown + + HQ1:Seer's Crown +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (29) +Sub Craft(s): Leathercraft - (20) + + + Earth Crystal + Linen Thread + Lizard Molt + Bone Chip + Coeurl Whisker + + NQ: Healing Harness + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (29) + + + Earth Crystal + Vivio Femur + Bone Harness + + NQ: Beetle Mask + + HQ1:Beetle Mask +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (30) + + + Earth Crystal + Lizard Skin + Beetle Jaw + + NQ: Beetle Mittens + + HQ1:Beetle Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (30) +Sub Craft(s): Leathercraft - (8) + + + Earth Crystal + Lizard Skin x2 + Beetle Shell + + NQ: Beetle Mask + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (30) + + + Earth Crystal + Bonecraft Kit 30 + + +Novice (31-40) +Synthesis Information +Yield Requirements Ingredients + + NQ: Beetle Gorget + + HQ1:Green Gorget + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (31) + + + Earth Crystal + Beetle Jaw x2 + Beetle Shell + + NQ: Beetle Leggings + + HQ1:Beetle Leggings +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (32) +Sub Craft(s): Leathercraft - (8) + + + Earth Crystal + Lizard Skin x2 + Beetle Jaw + Beetle Shell + + NQ: Eldritch Horn Hairpin + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (32) + + + Wind Crystal + Wailing Ram Horn + Horn Hairpin + + NQ: Beetle Arrowheads x6 + + HQ1:Beetle Arrowheads x8 + HQ2:Beetle Arrowheads x10 + HQ3:Beetle Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (33) + + + Wind Crystal + Beetle Jaw + Bone Chip + + NQ: Beetle Arrowheads x18 + + HQ1:Beetle Arrowheads x24 + HQ2:Beetle Arrowheads x30 + HQ3:Beetle Arrowheads x36 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (33) +Key Item: Filing + + + Wind Crystal + Bone Chip x3 + Beetle Jaw x3 + Shagreen File + + NQ: Beetle Subligar + + HQ1:Beetle Subligar +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (34) +Sub Craft(s): Leathercraft - (9) + + + Earth Crystal + Cotton Cloth + Lizard Skin + Beetle Jaw + + NQ: Turtle Shield + + HQ1:Turtle Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (35) + + + Earth Crystal + Turtle Shell + Beetle Shell + + NQ: Turtle Shield + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (35) + + + Earth Crystal + Bonecraft Kit 35 + + NQ: Beetle Harness + + HQ1:Beetle Harness +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (36) +Sub Craft(s): Leathercraft - (9) + + + Earth Crystal + Lizard Skin x3 + Beetle Shell x2 + + NQ: Horn Ring + + HQ1:Horn Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (37) + + + Wind Crystal + Fish Scales + Ram Horn + + NQ: Shade Tiara + + HQ1:Shade Tiara +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (37) +Sub Craft(s): Leathercraft - (24) + + + Earth Crystal + Uragnite Shell + Eft Skin + Photoanima + + NQ: Fang Arrowheads x6 + + HQ1:Fang Arrowheads x8 + HQ2:Fang Arrowheads x10 + HQ3:Fang Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (38) + + + Wind Crystal + Black Tiger Fang + Bone Chip + + NQ: Fang Arrowheads x18 + + HQ1:Fang Arrowheads x24 + HQ2:Fang Arrowheads x30 + HQ3:Fang Arrowheads x36 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (38) +Key Item: Filing + + + Wind Crystal + Bone Chip x3 + Black Tiger Fang x3 + Shagreen File + + NQ: Shade Mittens + + HQ1:Shade Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (38) +Sub Craft(s): Clothcraft - (21), Leathercraft - (24) + + + Earth Crystal + Luminicloth + Sheep Leather + Tiger Leather + Uragnite Shell + Eft Skin + Photoanima + + NQ: Shade Tights + + HQ1:Shade Tights +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (39) +Sub Craft(s): Clothcraft - (23), Leathercraft - (24) + + + Earth Crystal + Luminicloth + Velvet Cloth + Tiger Leather + Uragnite Shell + Eft Skin + Photoanima + + NQ: Titanictus Shell + + HQ1:Titanictus Shell x2 + HQ2:Titanictus Shell x3 + HQ3:Titanictus Shell x4 + + LightningCrystal-Icon.gif + +Main Craft: Bonecraft - (40) + + + Lightning Crystal + Titanictus + + NQ: Shade Leggings + + HQ1:Shade Leggings +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (40) +Sub Craft(s): Clothcraft - (22), Leathercraft - (24) + + + Earth Crystal + Luminicloth + Lizard Skin + Tiger Leather x2 + Uragnite Shell + Eft Skin + Photoanima + + NQ: Titanictus Shell + + LightningCrystal-Icon.gif + +Main Craft: Bonecraft - (40) + + + Lightning Crystal + Armored Pisces + + NQ: Bone Cudgel + + HQ1:Bone Cudgel +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (40) + + + Wind Crystal + Bone Chip x6 + Grass Cloth + Giant Femur + + NQ: Bone Cudgel + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (40) + + + Wind Crystal + Bonecraft Kit 40 + + +Apprentice (41-50) +Synthesis Information +Yield Requirements Ingredients + + NQ: Bone Knife + + HQ1:Bone Knife +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (41) + + + Wind Crystal + Walnut Lumber + Giant Femur + + NQ: Garish Crown + + HQ1:Rubious Crown + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (41) +Sub Craft(s): Leathercraft - (13) + + + Earth Crystal + Lizard Molt + Beetle Jaw + Coeurl Whisker + Bloodthread + + NQ: Luminous Shell + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (41) +Key Item: Bone Ensorcellment + + + Wind Crystal + Crab Shell + Lightning Anima x2 + Dark Anima + + NQ: Vivio Crab Shell + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (41) +Key Item: Bone Purification + + + Wind Crystal + Crab Shell + Wind Anima + Water Anima + Light Anima + + NQ: Carapace Ring + + HQ1:Carapace Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (42) +Sub Craft(s): Goldsmithing - (11) + + + Wind Crystal + Mythril Ingot + Crab Shell + + NQ: Shade Harness + + HQ1:Shade Harness +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (42) +Sub Craft(s): Clothcraft - (24), Leathercraft - (25) + + + Earth Crystal + Luminicloth + Velvet Cloth + Tiger Leather + Uragnite Shell x2 + Eft Skin x2 + Photoanima + + NQ: Horn Arrowheads x6 + + HQ1:Horn Arrowheads x8 + HQ2:Horn Arrowheads x10 + HQ3:Horn Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (43) + + + Wind Crystal + Bone Chip + Ram Horn + + NQ: Horn Arrowheads x18 + + HQ1:Horn Arrowheads x24 + HQ2:Horn Arrowheads x30 + HQ3:Horn Arrowheads x36 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (43) +Key Item: Filing + + + Wind Crystal + Bone Chip x3 + Ram Horn x3 + Shagreen File + + NQ: Skeleton Key x2 + + HQ1:Skeleton Key x4 + HQ2:Skeleton Key x6 + HQ3:Skeleton Key x8 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (43) +Sub Craft(s): Alchemy - (31) + + + Earth Crystal + Carbon Fiber + Chicken Bone + Glass Fiber + Bat Fang x2 + Animal Glue + Hecteyes Eye + Sheep Tooth + + NQ: Carapace Mittens + + HQ1:Carapace Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (44) +Sub Craft(s): Leathercraft - (11) + + + Earth Crystal + Dhalmel Leather + Fish Scales + Crab Shell + + NQ: Mist Crown + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (44) + + + Earth Crystal + Smooth Beetle Jaw + Garish Crown + + NQ: Deathbone Knife + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (44) +Key Item: Bone Ensorcellment + + + Wind Crystal + Lambent Fire Cell + Lambent Wind Cell + Bone Knife + + NQ: Carapace Mask + + HQ1:Carapace Mask +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (45) + + + Earth Crystal + Crab Shell + Dhalmel Leather + + NQ: Serpette + + HQ1:Serpette +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (45) +Sub Craft(s): Woodworking - (6) + + + Wind Crystal + Ash Lumber + Grass Cloth + Giant Femur x2 + Bukktooth + + NQ: Carapace Mask + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (45) + + + Earth Crystal + Bonecraft Kit 45 + + NQ: Carapace Leggings + + HQ1:Carapace Leggings +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (46) +Sub Craft(s): Leathercraft - (12) + + + Earth Crystal + Crab Shell + Fish Scales + Dhalmel Leather x2 + + NQ: Horn + + HQ1:Horn +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (47) + + + Wind Crystal + Beetle Jaw + Ram Horn + + NQ: Mandibular Sickle + + HQ1:Antlion Sickle + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (47) +Sub Craft(s): Smithing - (45), Woodworking - (33) + + + Wind Crystal + Darksteel Ingot + Ebony Lumber + Ram Leather + Antlion Jaw + + NQ: Thunder Mittens + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (47) + + + Earth Crystal + Luminous Shell + Carapace Mittens + + NQ: Carapace Subligar + + HQ1:Carapace Subligar +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (48) +Sub Craft(s): Leathercraft - (12) + + + Earth Crystal + Linen Cloth + Dhalmel Leather + Crab Shell + + NQ: Carapace Gorget + + HQ1:Blue Gorget + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (49) + + + Earth Crystal + Iron Chain + Crab Shell x2 + + NQ: Thug's Jambiya + + HQ1:Thug's Jambiya +1 + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (49) +Sub Craft(s): Blacksmithing - (42), Goldsmithing - (28) + + + Fire Crystal + Brass Ingot + Mythril Ingot + Turquoise + Wivre Horn + + NQ: Bone Rod + + HQ1:Bone Rod +1 + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (50) + + + Fire Crystal + Giant Femur + Ram Horn x2 + + NQ: Carapace Harness + + HQ1:Carapace Harness +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (50) +Sub Craft(s): Leathercraft - (13) + + + Earth Crystal + Dhalmel Leather x2 + Crab Shell x2 + + NQ: Vivio Scorpion Claw + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (50) +Key Item: Bone Purification + + + Wind Crystal + Scorpion Claw + Wind Anima + Water Anima + Light Anima + + NQ: Jet Sickle + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (50) +Key Item: Bone Ensorcellment + + + Wind Crystal + Lambent Fire Cell + Lambent Wind Cell + Mandibular Sickle + + NQ: Bone Rod + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (50) + + + Fire Crystal + Bonecraft Kit 50 + + +Journeyman (51-60) +Synthesis Information +Yield Requirements Ingredients + + NQ: Shock Subligar + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (51) + + + Earth Crystal + Luminous Shell + Carapace Subligar + + NQ: Bandit's Gun + + HQ1:Bandit's Gun +1 + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (52) +Sub Craft(s): Smithing - (47) + + + Fire Crystal + Steel Ingot x2 + Giant Femur + + NQ: Spirit Shell + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (52) +Key Item: Bone Ensorcellment + + + Wind Crystal + Turtle Shell + Earth Anima x2 + Dark Anima + + NQ: High Healing Harness + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (53) + + + Earth Crystal + Vivio Crab Shell + Carapace Harness + + NQ: Scorpion Arrowheads x6 + + HQ1:Scorpion Arrowheads x8 + HQ2:Scorpion Arrowheads x10 + HQ3:Scorpion Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (53) + + + Wind Crystal + Bone Chip + Scorpion Claw + + NQ: Scorpion Arrowheads x18 + + HQ1:Scorpion Arrowheads x24 + HQ2:Scorpion Arrowheads x30 + HQ3:Scorpion Arrowheads x36 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (53) +Key Item: Filing + + + Wind Crystal + Bone Chip x3 + Scorpion Claw x3 + Shagreen File + + NQ: Shell Hairpin + + HQ1:Shell Hairpin +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (53) + + + Wind Crystal + Turtle Shell + + NQ: Turtle Bangles + + HQ1:Turtle Bangles +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (54) + + + Wind Crystal + Turtle Shell x2 + Giant Femur + + NQ: Tortoise Earring + + HQ1:Tortoise Earring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (55) + + + Wind Crystal + Gold Chain + Turtle Shell + + NQ: Tortoise Earring + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (55) + + + Wind Crystal + Bonecraft Kit 55 + + NQ: Justaucorps + + HQ1:Justaucorps +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (56) +Sub Craft(s): Clothcraft - (26) + + + Earth Crystal + Wool Robe + Gold Thread + Beetle Shell + Scorpion Claw x2 + + NQ: Blood Stone + + HQ1:Blood Stone +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (57) + + + Wind Crystal + Giant Femur + Grass Thread + Fiend Blood + + NQ: Bone Scythe + + HQ1:Bone Scythe +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (57) +Sub Craft(s): Woodworking - (19) + + + Wind Crystal + Yew Lumber + Giant Femur x2 + Grass Cloth + Sheep Tooth + + NQ: Stone Bangles + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (57) + + + Earth Crystal + Spirit Shell + Turtle Bangles + + NQ: Armored Arrowheads x6 + + HQ1:Armored Arrowheads x8 + HQ2:Armored Arrowheads x10 + HQ3:Armored Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (58) +Sub Craft(s): Smithing - (55) + + + Wind Crystal + Steel Ingot + Taurus Horn + + NQ: Armored Arrowheads x18 + + HQ1:Armored Arrowheads x24 + HQ2:Armored Arrowheads x30 + HQ3:Armored Arrowheads x36 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (58) +Sub Craft(s): Smithing - (55) + + + Wind Crystal + Steel Ingot x3 + Taurus Horn x3 + Shagreen File + + NQ: Astragalos x8 + + HQ1:Astragalos x12 + HQ2:Astragalos x16 + HQ3:Astragalos x20 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (58) + + + Wind Crystal + Giant Femur + Black Ink + Beastman Blood + + NQ: Beetle Knife + + HQ1:Beetle Knife +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (59) + + + Wind Crystal + Oak Lumber + Beetle Jaw + + NQ: Healing Justaucorps + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (59) + + + Earth Crystal + Vivio Scorpion Claw + Justaucorps + + NQ: Macuahuitl + + HQ1:Macuahuitl +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (59) + + + Wind Crystal + Bugard Tusk + Rhinochimera + Macuahuitl -1 + + NQ: Beak Necklace + + HQ1:Beak Necklace +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (60) + + + Earth Crystal + High-Quality Crab Shell + Oxblood + Colibri Beak x4 + Mohbwa Thread + Wivre Maul + + NQ: Scorpion Ring + + HQ1:Scorpion Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (60) + + + Wind Crystal + Scorpion Shell + + NQ: Ranging Knife + + HQ1:Ranging Knife +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (60) + + + Wind Crystal + Walnut Lumber + Stately Crab Shell + + NQ: Barnacle + + HQ1:Barnacle x2 + HQ2:Barnacle x3 + HQ3:Barnacle x4 + + LightningCrystal-Icon.gif + +Main Craft: Bonecraft - (60) + + + Lightning Crystal + Carrier Crab Carapace + + NQ: Scorpion Ring + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (60) + + + Wind Crystal + Bonecraft Kit 60 + + +Craftsman (61-70) +Synthesis Information +Yield Requirements Ingredients + + NQ: Fang Earring + + HQ1:Spike Earring + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (61) + + + Wind Crystal + Silver Chain + Black Tiger Fang x2 + + NQ: Wind Fan x66 + + HQ1:Wind Fan x99 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (61) + + + Earth Crystal + Beetle Shell + Giant Femur + Beeswax + Bat Wing + Wind Cluster + + NQ: Pirate's Gun + + HQ1:Pirate's Gun +1 + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (62) +Sub Craft(s): Smithing - (49) + + + Fire Crystal + Steel Ingot + Darksteel Ingot + Turtle Shell + + NQ: Coral Horn + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (62) + + + Wind Crystal + Oxblood + + NQ: Darksteel Jambiya + + HQ:Darksteel Jambiya +1 + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (62) +Sub Craft(s): Smithing - (50), Goldsmithing - (33) + + + Fire Crystal + Darksteel Ingot + Silver Ingot + Sunstone + Mercury + Ladybug Wing + + NQ: Ogre Jambiya + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (62) +Sub Craft(s): Smithing - (50), Goldsmithing - (33) + + + Fire Crystal + Darksteel Ingot + Silver Ingot + Sunstone + Mercury + Buggane Horn + + NQ: Demon Arrowheads x6 + + HQ1:Demon Arrowheads x8 + HQ2:Demon Arrowheads x10 + HQ3:Demon Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (63) + + + Wind Crystal + Bone Chip + Demon Horn + + NQ: Demon Arrowheads x18 + + HQ1:Demon Arrowheads x24 + HQ2:Demon Arrowheads x30 + HQ3:Demon Arrowheads x36 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (63) +Key Item: Filing + + + Wind Crystal + Bone Chip x3 + Demon Horn x3 + Shagreen File + + NQ: Scorpion Mittens + + HQ1:Scorpion Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (63) +Sub Craft(s): Leathercraft - (31) + + + Earth Crystal + Scorpion Shell + Ram Leather + Pugil Scales + + NQ: Marid Mittens + + HQ1:Marid Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (64) +Sub Craft(s): Leathercraft - (21) + + + Earth Crystal + Karakul Leather + Merrow Scale + Marid Tusk + + NQ: Scorpion Mask + + HQ1:Scorpion Mask +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (64) + + + Earth Crystal + Ram Leather + Scorpion Shell + + NQ: Scapegoat + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (65) + + + Wind Crystal + Phoenix Feather + Marid Tusk + + NQ: Ladybug Ring + + HQ1:Ladybug Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (65) + + + Wind Crystal + Ladybug Wing x2 + + NQ: Scorpion Leggings + + HQ1:Scorpion Leggings +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (65) +Sub Craft(s): Leathercraft - (32) + + + Earth Crystal + Scorpion Shell + Ram Leather x2 + Pugil Scales + + NQ: Ladybug Ring + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (65) + + + Wind Crystal + Bonecraft Kit 65 + + NQ: Crumhorn + + HQ1:Crumhorn +1 + HQ2:Crumhorn +1 + HQ3:Crumhorn +2 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (66) + + + Wind Crystal + Beetle Jaw + Demon Horn + + NQ: Marid Leggings + + HQ1:Marid Leggings +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (66) +Sub Craft(s): Leathercraft - (22) + + + Earth Crystal + Karakul Leather x2 + Merrow Scale + Marid Tusk + + NQ: Ogre Sickle + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (66) +Sub Craft(s): Smithing - (45), Woodworking - (33) + + + Wind Crystal + Darksteel Ingot + Ebony Lumber + Ruszor Leather + Buggane Horn + + NQ: Ivory Sickle + + HQ1:Ivory Sickle +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (67) +Sub Craft(s): Goldsmithing - (53), Woodworking - (31) + + + Wind Crystal + Mahogany Lumber + Platinum Ingot + Ram Leather + Oversized Fang + + NQ: Scorpion Subligar + + HQ1:Scorpion Subligar +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (67) +Sub Craft(s): Leathercraft - (32) + + + Earth Crystal + Linen Cloth + Scorpion Shell + Ram Leather + + NQ: Bone Patas + + HQ1:Bone Patas +1 + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (68) + + + Fire Crystal + Crab Shell + Giant Femur x2 + Carbon Fiber + + NQ: Seadog Gun + + HQ1:Seadog Gun +1 + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (68) +Sub Craft(s): Smithing - (43) + + + Fire Crystal + Steel Ingot x2 + Coral Fragment x2 + + NQ: Beast Horn + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (69) + + + Wind Crystal + Ram Horn x2 + + NQ: Scorpion Harness + + HQ1:Scorpion Harness +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (69) +Sub Craft(s): Leathercraft - (33) + + + Earth Crystal + Venomous Claw + Scorpion Shell x2 + Ram Leather x2 + + NQ: Antlion Trap + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (70) + + + Earth Crystal + Coeurl Whisker + Animal Glue + Antican Pauldron + Antican Robe + High-Quality Antlion Jaw x2 + + NQ: Demon's Ring + + HQ1:Demon's Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (70) + + + Wind Crystal + Fish Scales + Demon Horn + + NQ: Demon's Ring + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (70) + + + Wind Crystal + Bonecraft Kit 70 + + +Artisan (71-80) +Synthesis Information +Yield Requirements Ingredients + + NQ: Hornet Fleuret + + HQ1:Wasp Fleuret + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (71) +Sub Craft(s): Goldsmithing - (52) + + + Fire Crystal + Brass Ingot + Moonstone + Giant Femur + Pearl + Giant Stinger + + NQ: Kilo Fan x66 + + HQ1:Kilo Fan x99 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (71) + + + Earth Crystal + Crab Shell + Giant Femur + Beeswax + Bat Wing + Wind Cluster + + NQ: Vivified Coral + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (71) +Key Item: Bone Purification + + + Wind Crystal + Coral Fragment + Lightning Anima + Water Anima + Light Anima + + NQ: Coral Cuisses + + HQ1:Coral Cuisses +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (72) +Sub Craft(s): Leathercraft - (5) + + + Earth Crystal + Leather Trousers + Coral Fragment x2 + Rainbow Thread + + NQ: Coral Subligar + + HQ1:Merman's Subligar + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (72) +Sub Craft(s): Leathercraft - (46) + + + Earth Crystal + Coeurl Leather + Linen Cloth + Coral Fragment + + NQ: Gnole Sainti + + HQ1:Gnole Sainti +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (72) +Sub Craft(s): Smithing - (55~) + + + Wind Crystal + Brass Ingot + Steel Ingot + Gnole Claw x2 + Teak Lumber + + NQ: Demon's Knife + + HQ1:Demon's Knife +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (73) + + + Wind Crystal + Ebony Lumber + Demon Horn + + NQ: Lithic Wyvern Scale + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (73) +Key Item: Bone Purification + + + Wind Crystal + Wyvern Scales + Earth Anima x2 + Light Anima + + NQ: Tactician Magician's Hooks +1 + + HQ1:Tactician Magician's Hooks +2 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (73) + + + Earth Crystal + Tactician Magician's Hooks + Demon Horn + + NQ: Vivio Wyvern Scale + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (73) +Key Item: Bone Purification + + + Wind Crystal + Wyvern Scales + Wind Anima + Water Anima + Light Anima + + NQ: Coral Finger Gauntlets + + HQ1:Coral Finger Gauntlets +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (74) + + + Earth Crystal + Leather Gloves + Coral Fragment x2 + Rainbow Thread + + NQ: Coral Mittens + + HQ1:Merman's Mittens + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (74) +Sub Craft(s): Leathercraft - (48) + + + Earth Crystal + Coeurl Leather + Coral Fragment + Wyvern Scales + + NQ: Oxblood Orb x6 + + HQ1:Oxblood Orb x8 + HQ2:Oxblood Orb x10 + HQ3:Oxblood Orb x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (74) + + + Wind Crystal + Silver Chain + Oxblood + + NQ: Angel Skin Orb x6 + + HQ1:Angel Skin Orb x8 + HQ2:Angel Skin Orb x10 + HQ3:Angel Skin Orb x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (74) + + + Wind Crystal + Silver Chain + Angel Skin + + NQ: Clown's Subligar + + HQ1:Clown's Subligar +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (75) +Sub Craft(s): Leathercraft - (35) + + + Earth Crystal + Lindwurm Skin + Linen Cloth + Coral Fragment + + NQ: Ladybug Earring + + HQ1:Ladybug Earring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (75) + + + Wind Crystal + Ladybug Wing + Electrum Chain + + NQ: Corsair's Gun + + HQ1:Corsair's Gun +1 + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (75) +Sub Craft(s): Smithing - (53) + + + Fire Crystal + Demon Horn + Darksteel Ingot x2 + + NQ: Ladybug Earring + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (75) + + + Wind Crystal + Bonecraft Kit 75 + + NQ: Coral Leggings + + HQ1:Merman's Leggings + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (76) +Sub Craft(s): Leathercraft - (49) + + + Earth Crystal + Coeurl Leather x2 + Coral Fragment + Wyvern Scales + + NQ: Coral Greaves + + HQ1:Coral Greaves +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (76) + + + Earth Crystal + Leather Highboots + Coral Fragment x2 + Rainbow Thread + + NQ: Coral Hairpin + + HQ1:Merman's Hairpin + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (77) + + + Wind Crystal + Black Pearl + Coral Fragment + Pearl + + NQ: Coral Visor + + HQ1:Coral Visor +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (77) + + + Wind Crystal + Coral Fragment x2 + Sheep Leather + + NQ: Coral Cap + + HQ1:Merman's Cap + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (78) + + + Earth Crystal + Darksteel Cap + Coral Fragment + + NQ: Marid Tusk Arrowheads x6 + + HQ1:Marid Tusk Arrowheads x8 + HQ2:Marid Tusk Arrowheads x10 + HQ3:Marid Tusk Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (78) + + + Wind Crystal + Bone Chip + Marid Tusk + + NQ: Marid Tusk Arrowheads x18 + + HQ1:Marid Tusk Arrowheads x24 + HQ2:Marid Tusk Arrowheads x30 + HQ3:Marid Tusk Arrowheads x36 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (78) +Key Item: Filing + + + Wind Crystal + Bone Chip x3 + Marid Tusk x3 + Shagreen File + + NQ: Zeal Cap + + HQ1:Zeal Cap +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (78) + + + Earth Crystal + Thunder Coral + Darksteel Cap + + NQ: Quadav Barbut + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (78) +Sub Craft(s): Clothcraft - (43), Leathercraft - (33) + + + Earth Crystal + Quadav Parts + Tiger Leather + Lizard Molt + Bugard Tusk + Wool Thread + Red Grass Cloth + Black Pearl x2 + + NQ: Coral Gorget + + HQ1:Merman's Gorget + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (79) + + + Wind Crystal + Coral Fragment + Sheep Leather + + NQ: Tigerfangs + + HQ1:Feral Fangs + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (79) + + + Fire Crystal + Carbon Fiber + Black Tiger Fang x2 + Scorpion Shell + + NQ: Horn Trophy + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (79) +Sub Craft(s): Woodworking - (50) + + + Earth Crystal + Wool Thread + Buffalo Horn x2 + Sheep Chammy + Teak Lumber + + NQ: Nuna Gorget + + HQ1:Nuna Gorget +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (79) + + + Wind Crystal + Sheep Leather + Craklaw Pincer + + NQ: Coral Harness + + HQ1:Merman's Harness + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (80) +Sub Craft(s): Leathercraft - (50) + + + Earth Crystal + Coeurl Leather x2 + Coral Fragment x2 + + NQ: Coral Ring + + HQ1:Merman's Ring + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (80) + + + Wind Crystal + Coral Fragment x2 + + NQ: Coral Scale Mail + + HQ1:Coral Scale Mail +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (80) + + + Earth Crystal + Leather Vest + Coral Fragment x4 + Sheep Leather + Rainbow Thread + + NQ: Reraise Hairpin + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (80) + + + Wind Crystal + Vivified Coral + Coral Hairpin + + NQ: Vela Justaucorps + + HQ1:Vela Justaucorps +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (80) + + + Earth Crystal + Gold Thread + Beetle Shell + Bastet Fang x2 + Wool Robe + + NQ: Coral Ring + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (80) + + + Wind Crystal + Bonecraft Kit 80 + + +Adept (81-90) +Synthesis Information +Yield Requirements Ingredients + + NQ: Darksteel Shield + + HQ1:Darksteel Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (81) +Sub Craft(s): Smithing - (58) + + + Earth Crystal + Ash Lumber + Darksteel Sheet x3 + Wyvern Scales x4 + + NQ: Marid Ring + + HQ1:Marid Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (81) + + + Wind Crystal + Marid Tusk x2 + + NQ: Saintly Ring + + HQ1:Saintly Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (81) + + + Earth Crystal + Ascetic's Ring + Fish Scales + + NQ: Dragon Cuisses + + HQ1:Dragon Cuisses +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (82) +Sub Craft(s): Leathercraft - (5) + + + Earth Crystal + Leather Trousers + Silver Thread + Wyvern Scales x2 + + NQ: Eremite's Ring + + HQ1:Eremite's Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (82) + + + Earth Crystal + Hermit's Ring + Sheep Tooth + + NQ: Reraise Gorget + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (82) + + + Wind Crystal + Vivified Coral + Coral Gorget + + NQ: Antlion Arrowheads x6 + + HQ1:Antlion Arrowheads x8 + HQ2:Antlion Arrowheads x10 + HQ3:Antlion Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (82) + + + Wind Crystal + Bone Chip + Antlion Jaw + + NQ: Antlion Arrowheads x18 + + HQ1:Antlion Arrowheads x24 + HQ2:Antlion Arrowheads x30 + HQ3:Antlion Arrowheads x36 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (82) +Key Item: Filing + + + Wind Crystal + Bone Chip x3 + Antlion Jaw x3 + Shagreen File + + NQ: Coral Earring + + HQ1:Merman's Earring + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (83) + + + Wind Crystal + Silver Chain + Coral Fragment x2 + + NQ: Mega Fan x66 + + HQ1:Mega Fan x99 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (83) + + + Earth Crystal + Scorpion Shell + Giant Femur + Beeswax + Bat Wing + Wind Cluster + + NQ: Lamia Garland + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (83) +Sub Craft(s): Goldsmithing - (49), Leathercraft - (31) + + + Wind Crystal + Brass Chain + Garnet + Manta Leather + Uragnite Shell + Aht Urhgan Brass Ingot + + NQ: Behemoth Knife + + HQ1:Behemoth Knife +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (84) + + + Wind Crystal + Behemoth Horn + Mahogany Lumber + + NQ: Dragon Finger Gauntlets + + HQ1:Dragon Finger Gauntlets +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (84) + + + Earth Crystal + Leather Gloves + Silver Thread + Wyvern Scales x2 + + NQ: Chapuli Arrowheads x6 + + HQ1:Chapuli Arrowheads x8 + HQ2:Chapuli Arrowheads x10 + HQ3:Chapuli Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (84) + + + Wind Crystal + Bone Chip + Chapuli Horn + + NQ: Chapuli Arrowheads x18 + + HQ1:Chapuli Arrowheads x24 + HQ2:Chapuli Arrowheads x30 + HQ3:Chapuli Arrowheads x36 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (84) +Key Item: Filing + + + Wind Crystal + Bone Chip x3 + Chapuli Horn x3 + Shagreen File + + NQ: Eris' Earring + + HQ1:Eris' Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (85) + + + Earth Crystal + Nemesis Earring + Seashell + + NQ: Hellish Bugle + + HQ1:Hellish Bugle +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (85) + + + Earth Crystal + Imp Horn + Colibri Beak + + NQ: Wivre Hairpin + + HQ1:Wivre Hairpin +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (85) + + + Wind Crystal + Wivre Maul + + NQ: Ruszor Arrowheads x6 + + HQ1:Ruszor Arrowheads x8 + HQ2:Ruszor Arrowheads x10 + HQ3:Ruszor Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (85) + + + Wind Crystal + Bone Chip + Ruszor Fang + + NQ: Ruszor Arrowheads x18 + + HQ1:Ruszor Arrowheads x24 + HQ2:Ruszor Arrowheads x30 + HQ3:Ruszor Arrowheads x36 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (85) +Key Item: Filing + + + Wind Crystal + Bone Chip x3 + Ruszor Fang x3 + Shagreen File + + NQ: Hellish Bugle + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (85) + + + Earth Crystal + Bonecraft Kit 85 + + NQ: Shofar + + HQ1:Shofar +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (86) + + + Wind Crystal + Behemoth Horn + Beetle Jaw + + NQ: Wivre Gorget + + HQ1:Wivre Gorget +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (86) + + + Wind Crystal + Karakul Leather + Wivre Horn + + NQ: Dragon Greaves + + HQ1:Dragon Greaves +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (86) + + + Earth Crystal + Leather Highboots + Silver Thread + Wyvern Scales x2 + + NQ: Coral Bangles + + HQ1:Merman's Bangles + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (87) + + + Wind Crystal + Giant Femur + Coral Fragment x2 + + NQ: Dragon Mask + + HQ1:Dragon Mask +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (87) + + + Wind Crystal + Sheep Leather + Wyvern Scales x2 + + NQ: Snakeeye + + HQ1:Snakeeye +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (87) + + + Wind Crystal + Hydra Fang x2 + Wamoura Silk + + NQ: Coral Sword + + HQ1:Merman's Sword + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (88) + + + Earth Crystal + Katzbalger + Coral Fragment x4 + + NQ: Lamian Kaman + + HQ1:Lamian Kaman +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (88) + + + Earth Crystal + Scorpion Claw + Marid Tusk + Lamian Kaman -1 + + NQ: Naigama + + HQ1:Naigama +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (88) +Sub Craft(s): Goldsmithing - (60), Smithing - (55) + + + Wind Crystal + Bloodwood Lumber + Karakul Leather + Relic Steel + Marid Tusk + Scintillant Ingot + + NQ: Gargouille Arrowheads x6 + + HQ1:Gargouille Arrowheads x8 + HQ2:Gargouille Arrowheads x10 + HQ3:Gargouille Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (88) + + + Wind Crystal + Bone Chip + Gargouille Horn + + NQ: Gargouille Arrowheads x18 + + HQ1:Gargouille Arrowheads x24 + HQ2:Gargouille Arrowheads x30 + HQ3:Gargouille Arrowheads x36 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (88) +Key Item: Filing + + + Wind Crystal + Bone Chip x3 + Gargouille Horn x3 + Shagreen File + + NQ: Ghillie Earring + + HQ1:Ghillie Earring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (88) +Sub Craft(s): Goldsmithing - (33) + + + Wind Crystal + Silver Chain + Ruszor Fang x2 + + NQ: Behemoth Ring + + HQ1:Behemoth Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (89) + + + Wind Crystal + Behemoth Horn x2 + + NQ: Earth Greaves + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (89) + + + Earth Crystal + Lithic Wyvern Scale + Dragon Greaves + + NQ: Inferno Sabots + + HQ1:Inferno Sabots +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (89) + + + Earth Crystal + Ebony Sabots + Namtar Bone + + NQ: Demon's Harness + + HQ1:Demon's Harness +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (90) +Sub Craft(s): Leathercraft - (59) + + + Earth Crystal + Behemoth Leather x2 + Demon Skull x2 + + NQ: Dragon Claws + + HQ1:Dragon Claws +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (90) + + + Earth Crystal + Beetle Jaw + Dragon Talon x2 + + NQ: Dragon Mail + + HQ1:Dragon Mail +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (90) +Sub Craft(s): Smithing - (42) + + + Earth Crystal + Darksteel Chain + Darksteel Sheet + Leather Vest + Silver Thread + Wyvern Scales x3 + Dragon Scales + + NQ: Airmid's Gorget + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (90) +Sub Craft(s): Goldsmithing - (40) + + + Earth Crystal + Silver Chain x3 + Vivified Coral + Vivified Mythril + + NQ: Mantid Arrowheads x6 + + HQ1:Mantid Arrowheads x8 + HQ2:Mantid Arrowheads x10 + HQ3:Mantid Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (90) + + + Wind Crystal + Bone Chip + Mantid Foreleg + + NQ: Mantid Arrowheads x18 + + HQ1:Mantid Arrowheads x24 + HQ2:Mantid Arrowheads x30 + HQ3:Mantid Arrowheads x36 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (90) +Key Item: Filing + + + Wind Crystal + Bone Chip x3 + Mantid Foreleg x3 + Shagreen File + + NQ: Vexer Ring + + HQ1: Vexer Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (90) +Sub Craft(s): Alchemy - (??) + + + Wind Crystal + Coral Fragment x2 + Twitherym Scale + Matamata Shell + + NQ: Dragon Claws + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (90) + + + Earth Crystal + Bonecraft Kit 90 + + +Veteran (91-100) +Synthesis Information +Yield Requirements Ingredients + + NQ: Cursed Subligar + + HQ1:Cursed Subligar -1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (91) +Sub Craft(s): Leathercraft - (41) + + + Earth Crystal + Angel Skin + Silk Cloth + Tiger Leather + + NQ: Demon Helm + + HQ1:Demon Helm +1 + + DarkCrystal-Icon.gif + +Main Craft: Bonecraft - (91) + + + Dark Crystal + Sheep Leather + Demon Skull + Demon Horn x2 + + NQ: Igqira Tiara + + HQ1:Genie Tiara + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (91) +Sub Craft(s): Leathercraft - (38) + + + Earth Crystal + Coral Fragment x3 + Garnet + Coeurl Leather + Manticore Hair + + NQ: Jambiya + + HQ1:Jambiya +1 + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (91) +Sub Craft(s): Goldsmithing - (60), Smithing - (39) + + + Fire Crystal + Steel Ingot + Mercury + Pigeon's Blood Ruby + Marid Tusk + Scintillant Ingot + + NQ: Matamata Shield + + HQ1:Matamata Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (91) + + + Earth Crystal + Craklaw Pincer + Matamata Shell + + NQ: Bewitched Leggings + + HQ1:Voodoo Leggings + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (91) + + + Earth Crystal + Cursed Leggings -1 + Eschite Ore + + NQ: Vexed Gamashes + + HQ1:Jinxed Gamashes + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (91) + + + Earth Crystal + Hexed Gamashes -1 + Eschite Ore + + NQ: Carapace Gauntlets + + HQ1:Carapace Gauntlets +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (92) + + + Earth Crystal + Leather Gloves x2 + High-Quality Crab Shell x2 + + NQ: Cursed Gloves + + HQ1:Cursed Gloves -1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (92) +Sub Craft(s): Leathercraft - (43) + + + Earth Crystal + Angel Skin + Tiger Leather + Wyvern Scales + + NQ: Dragon Subligar + + HQ1:Dragon Subligar +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (92) +Sub Craft(s): Leathercraft - (53) + + + Earth Crystal + Sarcenet Cloth + Buffalo Leather + Dragon Bone + + NQ: Wivre Ring + + HQ1:Wivre Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (92) +Sub Craft(s): Goldsmithing - (31) + + + Wind Crystal + Aht Urhgan Brass Ingot + Wivre Horn x2 + + NQ: Unicorn Subligar + + HQ1:Unicorn Subligar +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (92) +Sub Craft(s): Leathercraft - (58) + + + Earth Crystal + Behemoth Leather + Taffeta Cloth + Unicorn Horn + + NQ: Raaz Arrowheads x6 + + HQ1:Raaz Arrowheads x8 + HQ2:Raaz Arrowheads x10 + HQ3:Raaz Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (92) + + + Wind Crystal + Bone Chip + Raaz Tusk + + NQ: Raaz Arrowheads x18 + + HQ1:Raaz Arrowheads x24 + HQ2:Raaz Arrowheads x30 + HQ3:Raaz Arrowheads x36 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (92) +Key Item: Filing + + + Wind Crystal + Bone Chip x3 + Raaz Tusk x3 + Shagreen File + + NQ: Bewitched Gloves + + HQ1:Voodoo Gloves + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (92) + + + Earth Crystal + Cursed Gloves -1 + Eschite Ore + + NQ: Vexed Wristbands + + HQ1:Jinxed Wristbands + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (92) + + + Earth Crystal + Hexed Wristbands -1 + Eschite Ore + + NQ: Carapace Helm + + HQ1:Carapace Helm +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (93) + + + Earth Crystal + Copper Ingot + High-Quality Crab Shell x2 + Sheep Leather + Ram Leather + + NQ: Igqira Manillas + + HQ1:Genie Manillas + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (93) +Sub Craft(s): Alchemy - (41) + + + Earth Crystal + Garnet + Bugard Tusk + Manticore Hair + Uragnite Shell + Avatar Blood + + NQ: Healing Mail + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (93) + + + Earth Crystal + Vivio Wyvern Scale + Dragon Mail + + NQ: Marath Baghnakhs + + HQ1:Shivaji Baghnakhs + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (93) +Sub Craft(s): Smithing - (58-61) + + + Earth Crystal + Molybdenum Sheet + Marid Leather + Gargouille Horn x3 + + NQ: Bewitched Subligar + + HQ1:Voodoo Subligar + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (93) + + + Earth Crystal + Cursed Subligar -1 + Eschite Ore + + NQ: Shadow Throne + + DarkCrystal-Icon.gif + +Main Craft: Bonecraft - (93) +Sub Craft(s): Alchemy - {??) + + + Dark Crystal + Demon Skull + Demon Horn x2 + Giant Femur x2 + Fiend Blood + Demon Blood + Necropsyche + + NQ: Cursed Leggings + + HQ1:Cursed Leggings -1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (94) +Sub Craft(s): Leathercraft - (44) + + + Earth Crystal + Angel Skin + Tiger Leather x2 + Wyvern Scales + + NQ: Mammoth Tusk + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (94) + + + Wind Crystal + Giant Frozen Head + + NQ: Shell Lamp + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (94) +Sub Craft(s): Alchemy - (42) + + + Wind Crystal + Uragnite Shell + Flint Glass Sheet + Kaolin x2 + Bomb Arm + + NQ: Dragon Mittens + + HQ1:Dragon Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (94) +Sub Craft(s): Leathercraft - (52) + + + Earth Crystal + Wyvern Scales + Buffalo Leather + Dragon Bone + + NQ: Bewitched Cap + + HQ1:Voodoo Cap + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (94) + + + Earth Crystal + Cursed Cap -1 + Eschite Ore + + NQ: Carapace Breastplate + + HQ1:Carapace Breastplate +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (95) + + + Earth Crystal + Sheep Leather + Ram Leather x2 + High-Quality Crab Shell x4 + + NQ: Gavial Cuisses + + HQ1:Gavial Cuisses +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (95) +Sub Craft(s): Leathercraft - (1~15) + + + Earth Crystal + Titanictus Shell + High-Quality Pugil Scales + Rainbow Thread + Leather Trousers + + NQ: Igqira Huaraches + + HQ1:Genie Huaraches + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (95) +Sub Craft(s): Leathercraft - (50) + + + Earth Crystal + Coeurl Whisker + Coeurl Leather + Bugard Tusk + High-Quality Bugard Skin + Harajnite Shell + + NQ: Unicorn Mittens + + HQ1:Unicorn Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (95) +Sub Craft(s): Leathercraft - (54) + + + Earth Crystal + Gold Thread + Behemoth Leather + Wyvern Scales + Unicorn Horn + + NQ: Buzbaz Sainti + + HQ1:Buzbaz Sainti +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (95) +Sub Craft(s): Woodworking - (48), Goldsmithing - (30) + + + Wind Crystal + Light Steel Ingot x2 + Oak Lumber + Ruszor Fang x2 + + NQ: Bewitched Harness + + HQ1:Voodoo Harness + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (95) + + + Earth Crystal + Cursed Harness -1 + Eschite Ore + + NQ: Vexed Jacket + + HQ1:Jinxed Jacket + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (95) + + + Earth Crystal + Hexed Jacket -1 + Eschite Ore + + NQ: Carapace Breastplate + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (95) + + + Earth Crystal + Bonecraft Kit 95 + + NQ: Acheron Shield + + HQ1:Acheron Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (96) + + + Earth Crystal + Adamantoise Shell x2 + Ram Leather + + NQ: Dragon Leggings + + HQ1:Dragon Leggings +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (96) +Sub Craft(s): Leathercraft - (53) + + + Earth Crystal + Wyvern Scales + Buffalo Leather x2 + Dragon Bone + + NQ: Scorpion Gauntlets + + HQ1:Scorpion Gauntlets +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (96) + + + Earth Crystal + High-Quality Scorpion Shell x2 + Leather Gloves x2 + + NQ: Hydra Cuisses + + HQ1:Hydra Cuisses +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (96) +Sub Craft(s): Leathercraft - (1~15) + + + Earth Crystal + Hydra Scale + Leather Trousers + Rainbow Thread + Titanictus Shell + + NQ: Trumpet Ring + + HQ1:Nereid Ring + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (96) + + + Wind Crystal + Trumpet Shell x2 + + NQ: Cursed Cap + + HQ1:Cursed Cap -1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (97) + + + Earth Crystal + Angel Skin + Darksteel Cap + + NQ: Gavial Finger Gauntlets + + HQ1:Gavial Finger Gauntlets +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (97) + + + Earth Crystal + Titanictus Shell + High-Quality Pugil Scales + Rainbow Thread + Leather Gloves + + NQ: Igqira Lappa + + HQ1:Genie Lappa + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (97) +Sub Craft(s): Leathercraft - (46) + + + Earth Crystal + Coeurl Whisker + Coeurl Leather + Manticore Leather + Uragnite Shell + High-Quality Bugard Skin + Megalobugard Tusk + + NQ: Scorpion Helm + + HQ1:Scorpion Helm +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (97) + + + Earth Crystal + High-Quality Scorpion Shell x2 + Ram Leather + Sheep Leather + Copper Ingot + + NQ: Unicorn Leggings + + HQ1:Unicorn Leggings +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (97) +Sub Craft(s): Leathercraft - (55) + + + Earth Crystal + Gold Thread + Behemoth Leather x2 + Wyvern Scales + Unicorn Horn + + NQ: Sombra Tiara + + HQ1:Sombra Tiara +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (97) +Sub Craft(s): Leathercraft - (60) + + + Earth Crystal + Intuila's Hide + Emperor Arthro's Shell + + NQ: Wyvern Helm + + HQ1:Wyvern Helm +1 + + DarkCrystal-Icon.gif + +Main Craft: Bonecraft - (98) +Sub Craft(s): Leathercraft - (41) + + + Dark Crystal + Guivre's Skull + Tiger Leather + Sheep Leather + Beeswax + + NQ: Cerberus Ring + + HQ1:Cerberus Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (98) + + + Wind Crystal + Cerberus Claw x2 + + NQ: Dragon Cap + + HQ1:Dragon Cap +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (98) + + + Earth Crystal + Dragon Bone + Darksteel Cap + + NQ: Orochi Nodowa + + HQ1:Orochi Nodowa +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (98) + + + Earth Crystal + Hydra Scale + Wamoura Silk + + NQ: Hydra Finger Gauntlets + + HQ1:Hydra Finger Gauntlets +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (98) + + + Earth Crystal + Rainbow Thread + Titanictus Shell + Hydra Scale + Leather Gloves + + NQ: Sombra Mittens + + HQ1:Sombra Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (98) +Sub Craft(s): Leathercraft - (??), Clothcraft - (??) + + + Earth Crystal + Damascene Cloth + Buffalo Leather + Raaz Leather + Intuila's Hide + Emperor Arthro's Shell + + NQ: Dragon Ring + + HQ1:Dragon Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (99) + + + Wind Crystal + Dragon Talon x2 + + NQ: Gavial Greaves + + HQ1:Gavial Greaves +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (99) + + + Earth Crystal + Titanictus Shell + High-Quality Pugil Scales + Rainbow Thread + Leather Highboots + + NQ: Igqira Weskit + + HQ1:Genie Weskit + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (99) +Sub Craft(s): Leathercraft - (55), Alchemy - (44) + + + Earth Crystal + Coeurl Leather + Lapis Lazuli + Dhalmel Leather + Dragon Talon + Manticore Hair + Avatar Blood + High-Quality Bugard Skin + Bugard Tusk + + NQ: Scorpion Breastplate + + HQ1:Scorpion Breastplate +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (99) + + + Earth Crystal + High-Quality Scorpion Shell x4 + Ram Leather x2 + Sheep Leather + + NQ: Unicorn Cap + + HQ1:Unicorn Cap +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (99) +Sub Craft(s): Leathercraft - (52), Smithing - (47) + + + Earth Crystal + Darksteel Sheet + Gold Thread + Tiger Leather + Behemoth Leather + Unicorn Horn + + NQ: Wyvern Helm + + HQ1:Wyvern Helm +1 + + DarkCrystal-Icon.gif + +Main Craft: Bonecraft - (99) +Sub Craft(s): Leathercraft - (41) + + + Dark Crystal + Wyvern Skull + Tiger Leather + Sheep Leather + Beeswax + + NQ: Khimaira Jambiya + + HQ1:Amir Jambiya + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (99) +Sub Craft(s): Goldsmithing - (40), Smithing - (39) + + + Fire Crystal + Steel Ingot + Gold Ingot + Mercury + Star Sapphire + Khimaira Horn + + NQ: Sombra Tights + + HQ1:Sombra Tights +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (99) +Sub Craft(s): Leathercraft - (??), Clothcraft - (??) + + + Earth Crystal + Rainbow Cloth + Damascene Cloth + Raaz Leather + Intuila's Hide + Emperor Arthro's Shell + + NQ: Chronos Tooth + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (100) + + + Wind Crystal + Colossal Skull + + NQ: Cursed Harness + + HQ1:Cursed Harness -1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (100) +Sub Craft(s): Leathercraft - (41) + + + Earth Crystal + Tiger Leather x2 + Coral Fragment + Oxblood + Angel Skin + + NQ: Gavial Mask + + HQ1:Gavial Mask +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (100) + + + Wind Crystal + Titanictus Shell + High-Quality Pugil Scales + Sheep Leather + + NQ: Dragon Harness + + HQ1:Dragon Harness +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (100) +Sub Craft(s): Leathercraft - (58) + + + Earth Crystal + Buffalo Leather x2 + Dragon Bone + Wyrm Horn + + NQ: Hydra Greaves + + HQ1:Hydra Greaves +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (100) + + + Earth Crystal + Rainbow Thread + Titanictus Shell + Hydra Scale + Leather Highboots + + NQ: Handgonne + + HQ1:Handgonne +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (100) +Sub Craft(s): Smithing - (60) + + + Earth Crystal + Darksteel Ingot + Thokcha Ingot + Wyrm Horn + + NQ: Hajduk Ring + + HQ1:Hajduk Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (100) + + + Wind Crystal + Khimaira Horn x2 + + NQ: Dux Greaves + + HQ1:Dux Greaves +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (100) + + + Earth Crystal + Gold Thread + Dragon Scales + Turtle Shell + Squamous Hide + Leather Highboots + + NQ: Sombra Leggings + + HQ1:Sombra Leggings +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (100) +Sub Craft(s): Leathercraft - (??), Clothcraft - (??) + + + Earth Crystal + Damascene Cloth + Behemoth Hide + Raaz Leather x2 + Intuila's Hide + Emperor Arthro's Shell + + +Expert (101-110) +Synthesis Information +Yield Requirements Ingredients + + NQ: Hydra Mask + + HQ1:Hydra Mask +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (101) + + + Wind Crystal + Titanictus Shell + Hydra Scale + Karakul Leather + + NQ: Hades Sainti + + HQ1:Hades Sainti +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (101) +Sub Craft(s): Woodworking - (49), Smithing - (37) + + + Wind Crystal + Iron Ingot x2 + Bloodwood Lumber + Cerberus Claw x2 + + NQ: Blenmot's Ring + + HQ1:Blenmot's Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (102) +Sub Craft(s): Alchemy - (50) + + + Wind Crystal + Oxblood + Vivified Coral + Holy Water x2 + Hallowed Water + + NQ: Sombra Harness + + HQ1:Sombra Harness +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (102) +Sub Craft(s): Leathercraft - (??), Clothcraft - (??) + + + Earth Crystal + Rainbow Cloth + Damascene Cloth + Raaz Leather + Intuila's Hide x2 + Emperor Arthro's Shell x2 + + NQ: Unicorn Harness + + HQ1:Unicorn Harness +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (103) +Sub Craft(s): Leathercraft - (60) + + + Earth Crystal + Gold Thread + Tiger Leather + Behemoth Leather + Unicorn Horn x2 + + NQ: Gavial Mail + + HQ1:Gavial Mail +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (103) +Sub Craft(s): Leathercraft - (1~27) + + + Earth Crystal + Titanictus Shell x2 + High-Quality Pugil Scales x2 + Rainbow Thread + Sheep Leather + Leather Vest + + NQ: Dux Cuisses + + HQ1:Dux Cuisses +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (103) + + + Earth Crystal + Gold Thread + Sheep Leather + Dragon Scales + Turtle Shell + Hahava's Mail + Squamous Hide + + NQ: Hydra Mail + + HQ1:Hydra Mail +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (104) +Sub Craft(s): Leathercraft - (1~27) + + + Earth Crystal + Titanictus Shell x2 + Hydra Scale x2 + Karakul Leather + Leather Vest + Rainbow Thread + + NQ: Dark Ixion Ferrule + + HQ1:Dark Ixion Ferrule x2 + HQ2:Dark Ixion Ferrule x3 Verification Needed + HQ3:Dark Ixion Ferrule x4 Verification Needed + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (104) + + + Wind Crystal + Dark Ixion Horn + + NQ: Dux Visor + + HQ1:Dux Visor +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (104) + + + Wind Crystal + Dragon Scales + Turtle Shell + Hahava's Mail + Squamous Hide + + NQ: Revealer's Crown + + HQ1:Revealer's Crown +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (104) +Sub Craft(s): Leathercraft - (??) + + + Earth Crystal + Linen Thread + Lizard Molt + Ironhorn Baldurno's Horn + Abyssdiver's Feather + + NQ: Winged Balance + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (105) + + + Wind Crystal + Orichalcum Chain + Pearl + Nidhogg Scales + Southern Pearl + Angel Skin + Marid Tusk + Wivre Horn + Trumpet Shell + + NQ: Dux Finger Gauntlets + + HQ1:Dux Finger Gauntlets +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (105) + + + Earth Crystal + Gold Thread + Dragon Scales + Turtle Shell + Squamous Hide + Leather Gloves + + NQ: Blutkrallen + + HQ1:Blutklauen + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (105) + + + Earth Crystal + Iron Ingot + Bloodwood Lumber + Linen Thread + Scintillant Ingot + Meeble Claw x3 + + NQ: Maliyakaleya Orb x6 + + HQ1:Maliyakaleya Orb x8 + HQ2:Maliyakaleya Orb x10 + HQ3:Maliyakaleya Orb x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (105) + + + Wind Crystal + Silver Chain + Maliyakaleya Coral + + NQ: Cyan Orb x6 + + HQ1:Cyan Orb x8 + HQ2:Cyan Orb x10 + HQ3:Cyan Orb x12 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (105) + + + Wind Crystal + Silver Chain + Cyan Coral + + NQ: Hexed Gamashes + + HQ1:Hexed Gamashes -1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (106) +Sub Craft(s): Leathercraft - (56), Goldsmithing - (30) + + + Earth Crystal + Malboro Fiber + Marid Leather + Befouled Silver + Staghorn Coral x2 + + NQ: Hexed Wristbands + + HQ1:Hexed Wristbands -1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (106) +Sub Craft(s): Leathercraft - (56), Goldsmithing - (30) + + + Earth Crystal + Velvet Cloth + Marid Leather + Befouled Silver + Staghorn Coral + Sealord Leather + + NQ: Yacuruna Ring + + HQ1:Yacuruna Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (106) +Sub Craft(s): Alchemy - (??) + + + Wind Crystal + Yggdreant Root + Maliyakaleya Coral x2 + + NQ: Maliya Sickle + + HQ1:Maliya Sickle +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (106) + + + Wind Crystal + Urunday Lumber + Raaz Leather + Maliyakaleya Coral + Ra'Kaznar Ingot + + NQ: Dux Scale Mail + + HQ1:Dux Scale Mail +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (107) + + + Earth Crystal + Gold Thread + Dragon Scales + Turtle Shell x3 + Hahava's Mail + Squamous Hide + Leather Vest + + NQ: Oxossi Facon + + HQ1:Oxossi Facon +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (108) + + + Wind Crystal + Manta Leather + Cassia Lumber + Simian Horn + + NQ: Brioso Whistle + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (109) + + + Earth Crystal + Thought Crystal + Cyan Coral + Cyan Orb x2 + + NQ: Brioso Whistle + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (109) + + + Earth Crystal + Hope Crystal + Cyan Coral + Cyan Orb x2 + + NQ: Brioso Whistle + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (109) + + + Earth Crystal + Fulfillment Crystal + Cyan Coral + Cyan Orb x2 + + NQ: Hexed Jacket + + HQ1:Hexed Jacket -1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (110) +Sub Craft(s): Leathercraft - (60), Clothcraft - (30) + + + Earth Crystal + Gold Thread + Velvet Cloth x2 + Malboro Fiber + Befouled Silver + Penelope's Cloth + Staghorn Coral + Sealord Leather + + NQ: Assassin's Gorget + + HQ1: Assassin's Gorget +1 + HQ2: Assassin's Gorget +2 + + LightCrystal-Icon.gif + +Main Craft: Bonecraft - (110) +Sub Craft(s): Leathercraft - (55) + + + Light Crystal + Cehuetzi Pelt + Dark Matter + S. Faulpie Leather + Peridot Crystal + Moldy Gorget + + NQ: Etoile Gorget + + HQ1: Etoile Gorget +1 + HQ2: Etoile Gorget +2 + + LightCrystal-Icon.gif + +Main Craft: Bonecraft - (110) +Sub Craft(s): Leathercraft - (55) + + + Light Crystal + Cehuetzi Pelt + Dark Matter + S. Faulpie Leather + Sunstone Crystal + Moldy Gorget + + NQ: Scout's Gorget + + HQ1: Scout's Gorget +1 + HQ2: Scout's Gorget +2 + + LightCrystal-Icon.gif + +Main Craft: Bonecraft - (110) +Sub Craft(s): Leathercraft - (55) + + + Light Crystal + Cehuetzi Pelt + Dark Matter + S. Faulpie Leather + Malachite Crystal + Moldy Gorget + + +Authority (111-120) +Synthesis Information +Yield Requirements Ingredients + + NQ: Ej Necklace + + HQ1:Ej Necklace +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (111) + + + Earth Crystal + Oxblood + Siren's Macrame + Wivre Maul + Carrier Crab Carapace + Rockfin Tooth x2 + + NQ: Tati Earring + + HQ1:Tati Earring +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (111) + + + Wind Crystal + Silver Chain + Gabbrath Horn x2 + + NQ: Bewitched Leggings + + HQ1:Voodoo Leggings + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (111) +Sub Craft(s): Leathercraft - (70) + + + Earth Crystal + Cursed Leggings + Eschite Ore + Maliyakaleya Coral + Immanibugard's Hide + + NQ: Vexed Gamashes + + HQ1:Jinxed Gamashes + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (111) +Sub Craft(s): Alchemy - (70) + + + Earth Crystal + Hexed Gamashes + Eschite Ore + Macuil Horn + Sybaritic Samantha's Vine + + NQ: Monster Axe + + HQ1: Ankusa Axe + HQ2: Pangu + + LightCrystal-Icon.gif + +Main Craft: Bonecraft - (111~114) +Sub Craft(s): Smithing - (Information Needed) Leathercraft - (Information Needed) +Key Item: Boneworker's aurum tome + + + Light Crystal + Macuil Plating + Dark Matter + S. Faulpie Leather + Moldy Axe + Ratnaraj + Relic Adaman x2 + Topaz Crystal + + NQ: Abyss Scythe + + HQ1: Fallen's Scythe + HQ2: Father Time + + LightCrystal-Icon.gif + +Main Craft: Bonecraft - (111~114) +Sub Craft(s): Goldsmithing - (Information Needed) Woodworking - (Information Needed) +Key Item: Boneworker's aurum tome + + + Light Crystal + Tartarian Chain + Dark Matter + Cypress Log + Moldy Scythe + Ratnaraj + Relic Adaman x2 + Obsidian Crystal + + NQ: Bhakazi Sainti + + HQ1:Bhakazi Sainti +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (112) +Sub Craft(s): Woodworking - (??), Goldsmithing - (??) + + + Wind Crystal + Guatambu Lumber + Titanium Ingot + Bismuth Ingot + Cehuetzi Claw x2 + + NQ: Bewitched Gloves + + HQ1:Voodoo Gloves + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (112) +Sub Craft(s): Leathercraft - (70) + + + Earth Crystal + Cursed Gloves + Eschite Ore + Maliyakaleya Coral + Immanibugard's Hide + + NQ: Vexed Wristbands + + HQ1:Jinxed Wristbands + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (112) +Sub Craft(s): Leathercraft - (70) + + + Earth Crystal + Hexed Wristbands + Eschite Ore + Macuil Horn + Warblade Beak's Hide + + NQ: Nanti Knife + + HQ1:Nanti Knife +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (113) + + + Wind Crystal + Waktza Rostrum + Guatambu Lumber + + NQ: Budliqa + + HQ1:Budliqa +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (113) +Sub Craft(s): Woodworking - (??) + + + Wind Crystal + Waktza Rostrum + Guatambu Lumber + Bismuth Ingot + + NQ: Killedar Shield + + HQ1:Killedar Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (113) + + + Earth Crystal + Adamantoise Shell + Eltoro Leather + Gabbrath Horn + + NQ: Lacryma Sickle + + HQ1:Lacryma Sickle +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (113) +Sub Craft(s): Goldsmithing - (??), +Woodworking - (??) + + + Wind Crystal + Ormolu Ingot + Ram Leather + Urunday Lumber + Rockfin Tooth + + NQ: Donderbuss + + HQ1:Donderbuss +1 + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (113) +Sub Craft(s): Smithing - (??) + + + Fire Crystal + Ormolu Ingot + Damascus Ingot + Rockfin Tooth + + NQ: Bewitched Subligar + + HQ1:Voodoo Subligar + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (113) +Sub Craft(s): Leathercraft - (70) + + + Earth Crystal + Cursed Subligar + Eschite Ore + Maliyakaleya Coral + Immanibugard's Hide + + NQ: Bewitched Cap + + HQ1:Voodoo Cap + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (114) +Sub Craft(s): Smithing - (70) + + + Earth Crystal + Cursed Cap + Eschite Ore + Maliyakaleya Coral + Largantua's Shard + + NQ: Bewitched Harness + + HQ1:Voodoo Harness + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (115) +Sub Craft(s): Leathercraft - (70) + + + Earth Crystal + Cursed Harness + Eschite Ore + Maliyakaleya Coral + Immanibugard's Hide + + NQ: Vexed Jacket + + HQ1:Jinxed Jacket + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (115) +Sub Craft(s): Leathercraft - (70) + + + Earth Crystal + Hexed Jacket + Eschite Ore + Warblade Beak's Hide + Macuil Horn + + NQ: Aurgelmir Orb + + HQ1: Aurgelmir Orb +1 + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (115~120) +Sub Craft(s): Alchemy - (?) + + + Wind Crystal + Black Ink + Beastman Blood + Cyan Coral x3 + Wyrm Ash + + NQ: Raetic Scythe + + HQ1: Raetic Scythe +1 + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (115~120) +Key Item: Boneworker's argentum tome + + + Fire Crystal + Hope Crystal + Cyan Coral x2 + Cyan Orb x3 + Rune Scythe + + NQ: Raetic Bangles + + HQ1: Raetic Bangles +1 + + FireCrystal-Icon.gif + +Main Craft: Bonecraft - (115~120) +Key Item: Boneworker's argentum tome + + + Fire Crystal + Fulfillment Crystal + Cyan Coral x2 + Cyan Orb x3 + Rune Bangles + + NQ: Moonbeam Ring + + HQ1: Moonlight Ring + + WindCrystal-Icon.gif + +Main Craft: Bonecraft - (116) +Sub Craft(s): Goldsmithing - (??) + + + Wind Crystal + Moonbow Stone + Moonlight Coral + Cyan Coral + + NQ: Mousai Gages + + HQ1: Mousai Gages +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (116) +Sub Craft(s): Alchemy - (??) +Key Item: Boneworker's argentum tome + + + Earth Crystal + Cashmere Thread x2 + Cyan Orb x2 + Yggdreant Bole + Plovid Effluvium + Hades' Claw + + NQ: Mousai Crackows + + HQ1: Mousai Crackows +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (116) +Sub Craft(s): Alchemy - (??) +Key Item: Boneworker's argentum tome + + + Earth Crystal + Cashmere Thread + Cyan Orb x2 + Yggdreant Bole + Plovid Effluvium + Hades' Claw + + NQ: Mousai Turban + + HQ1: Mousai Turban +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (116) +Sub Craft(s): Alchemy - (??) +Key Item: Boneworker's argentum tome + + + Earth Crystal + Cashmere Cloth + Cyan Orb x2 + Yggdreant Bole + Plovid Effluvium + Hades' Claw + + NQ: Mousai Seraweels + + HQ1: Mousai Seraweels +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (116) +Sub Craft(s): Alchemy - (??) +Key Item: Boneworker's argentum tome + + + Earth Crystal + Cashmere Cloth + Cyan Orb x3 + Yggdreant Bole + Plovid Effluvium + Hades' Claw + + NQ: Mousai Manteel + + HQ1: Mousai Manteel +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (116) +Sub Craft(s): Alchemy - (??) +Key Item: Boneworker's argentum tome + + + Earth Crystal + Cashmere Cloth + Cyan Orb x3 + Yggdreant Bole + Plovid Effluvium x2 + Hades' Claw + + NQ: Staunch Tathlum + + HQ1:Staunch Tathlum +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (117) + + + Earth Crystal + Macuil Horn + Plovid Flesh + Defiant Scarf + Hades' Claw + + NQ: Moonbow Whistle + + HQ1:Moonbow Whistle +1 + + EarthCrystal-Icon.gif + +Main Craft: Bonecraft - (117) +Sub Craft(s): Goldsmithing - (??), Woodworking - (??) + + + Earth Crystal + Brioso Whistle + Moonbow Urushi + Moonbow Stone \ No newline at end of file diff --git a/datasets/Bonecraft_v2.csv b/datasets/Bonecraft_v2.csv new file mode 100644 index 0000000..f107e73 --- /dev/null +++ b/datasets/Bonecraft_v2.csv @@ -0,0 +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]" diff --git a/datasets/Clothcraft.txt b/datasets/Clothcraft.txt new file mode 100644 index 0000000..6ea986e --- /dev/null +++ b/datasets/Clothcraft.txt @@ -0,0 +1,7309 @@ +Clothcraft Crafted Items +Amateur (1-10) +Synthesis Information +Yield Requirements Ingredients + + NQ: Love Chocolate + + HQ1:Truelove Chocolate + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (1) +Sub Craft(s): Leathercraft - (1), Cooking - (1) + + + Earth Crystal + Parchment + Heart Chocolate + Scarlet Ribbon + + NQ: Chocobo Fletchings x6 + + HQ1:Chocobo Fletchings x8 + HQ2:Chocobo Fletchings x10 + HQ3:Chocobo Fletchings x12 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (2) + + + Wind Crystal + Chocobo Feather x2 + + NQ: Chocobo Fletchings x18 + + HQ1:Chocobo Fletchings x24 + HQ2:Chocobo Fletchings x30 + HQ3:Chocobo Fletchings x36 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (2) +Key Item: Fletching + + + Wind Crystal + Chocobo Feather x6 + Zephyr Thread + + NQ: Grass Thread + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (3) + + + Lightning Crystal + Moko Grass x2 + + NQ: Grass Thread x3 + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (3) +Key Item: Spinning + + + Lightning Crystal + Moko Grass x6 + Spindle + + NQ: Grass Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (4) + + + Earth Crystal + Grass Thread x3 + + NQ: Headgear + + HQ1:Headgear +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (5) + + + Wind Crystal + Grass Thread + Grass Cloth x2 + + NQ: Headgear + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (5) + + + Wind Crystal + Clothcraft Kit 5 + + NQ: Gloves + + HQ1:Gloves +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (6) + + + Earth Crystal + Saruta Cotton x2 + Grass Thread + Grass Cloth x2 + + NQ: Gaiters + + HQ1:Gaiters +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (7) + + + Earth Crystal + Cotton Thread + Grass Cloth x3 + + NQ: Cape + + HQ1:Cape +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (8) + + + Earth Crystal + Grass Thread + Grass Cloth x2 + + NQ: Brais + + HQ1:Brais +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (9) + + + Earth Crystal + Grass Thread + Grass Cloth x2 + Sheep Leather + + NQ: Doublet + + HQ1:Doublet +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (10) + + + Earth Crystal + Grass Thread + Grass Cloth x4 + Saruta Cotton x3 + + NQ: Vagabond's Hose + + HQ1:Nomad's Hose + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (10) + + + Earth Crystal + Grass Thread + Grass Cloth + Cotton Cloth x2 + + NQ: Doublet + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (10) + + + Earth Crystal + Clothcraft Kit 10 + + +Recruit (11-20) +Synthesis Information +Yield Requirements Ingredients + + NQ: Cotton Thread + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (11) + + + Lightning Crystal + Saruta Cotton x2 + + NQ: Cotton Thread x3 + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (11) +Key Item: Spinning + + + Lightning Crystal + Saruta Cotton x6 + Spindle + + NQ: Hachimaki + + HQ1: Hachimaki +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (11) + + + Wind Crystal + Grass Cloth x2 + + NQ: Alluring Cotton Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (12) +Key Item: Cloth Ensorcellment + + + Earth Crystal + Cotton Thread x3 + Earth Anima + Water Anima + Dark Anima + + NQ: Cotton Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (12) + + + Earth Crystal + Cotton Thread x3 + + NQ: Cuffs + + HQ1:Cuffs +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (12) + + + Earth Crystal + Flint Stone x2 + Grass Cloth + Cotton Thread + Cotton Cloth + + NQ: Magical Cotton Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (12) +Key Item: Cloth Purification + + + Earth Crystal + Cotton Thread x3 + Earth Anima + Water Anima + Light Anima + + NQ: Tekko + + HQ1:Tekko +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (12) +Sub Craft(s): Woodworking - (3) + + + Earth Crystal + Lauan Lumber + Grass Thread + Grass Cloth x2 + + NQ: Dart x8 + + HQ1:Dart x16 + HQ2:Dart x20 + HQ3:Dart x24 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (13) + + + Wind Crystal + Bat Fang + Chocobo Feather x2 + Animal Glue + + NQ: Mitts + + HQ1:Mitts +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (13) + + + Earth Crystal + Saruta Cotton + Grass Cloth + Cotton Thread + Cotton Cloth + + NQ: Kyahan + + HQ1:Kyahan +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (14) + + + Wind Crystal + Grass Cloth x3 + Sheep Leather + + NQ: Slops + + HQ1:Slops +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (14) + + + Earth Crystal + Grass Cloth + Cotton Thread + Cotton Cloth x2 + + NQ: Vagabond's Tunica + + HQ1:Nomad's Tunica + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (14) + + + Earth Crystal + Grass Cloth x3 + Sheep Leather + Cotton Thread + Cotton Cloth + + NQ: Cotton Headgear + + HQ1:Great Headgear + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (15) + + + Wind Crystal + Cotton Thread + Cotton Cloth x2 + + NQ: Red Grass Thread + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (15) + + + Lightning Crystal + Red Moko Grass x2 + + NQ: Red Grass Thread x3 + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (15) +Key Item: Spinning + + + Lightning Crystal + Red Moko Grass x6 + Spindle + + NQ: Slacks + + HQ1:Slacks +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (15) + + + Earth Crystal + Cotton Thread + Cotton Cloth x3 + + NQ: Red Grass Thread + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (15) + + + Lightning Crystal + Clothcraft Kit 15 + + NQ: Cotton Gloves + + HQ1:Great Gloves + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (16) + + + Earth Crystal + Cotton Thread + Cotton Cloth x2 + Saruta Cotton x2 + + NQ: Red Grass Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (16) + + + Earth Crystal + Red Grass Thread x3 + + NQ: Robe + + HQ1:Robe +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (16) + + + Earth Crystal + Grass Thread + Grass Cloth x2 + Cotton Cloth x2 + + NQ: Sitabaki + + HQ1:Sitabaki +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (16) + + + Earth Crystal + Grass Thread + Grass Cloth x2 + Cotton Cloth + + NQ: Windurstian Hachimaki + + HQ1:Federation Hachimaki + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (16) + + + Earth Crystal + Grass Thread + Grass Cloth + Mercenary's Hachimaki + + NQ: Cotton Gaiters + + HQ1:Great Gaiters + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (17) + + + Earth Crystal + Cotton Cloth x3 + Sheep Leather + + NQ: Tunic + + HQ1:Tunic +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (17) + + + Earth Crystal + Grass Cloth x3 + Cotton Thread + Cotton Cloth x2 + + NQ: Windurstian Tekko + + HQ1:Federation Tekko + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (17) + + + Earth Crystal + Grass Thread + Grass Cloth + Mercenary's Tekko + + NQ: Cotton Cape + + HQ1:Cotton Cape +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (18) + + + Earth Crystal + Cotton Thread + Cotton Cloth x2 + + NQ: Kenpogi + + HQ1:Kenpogi +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (18) + + + Earth Crystal + Grass Thread + Grass Cloth x3 + + NQ: Sturdy Slacks + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (18) +Key Item: Cloth Ensorcellment + + + Earth Crystal + Lambent Fire Cell + Lambent Water Cell + Slacks + + NQ: Cotton Brais + + HQ1:Great Brais + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (19) + + + Earth Crystal + Cotton Thread + Cotton Cloth x2 + Sheep Leather + + NQ: Flaxseed Oil + + HQ1:Flaxseed Oil x2 + HQ2:Flaxseed Oil x3 + HQ3:Flaxseed Oil x4 + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (19) + + + Water Crystal + Flax Flower x2 + + NQ: Linen Thread + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (19) + + + Lightning Crystal + Flax Flower x2 + + NQ: Linen Thread x3 + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (19) +Key Item: Spinning + + + Lightning Crystal + Flax Flower x6 + Spindle + + NQ: Windurstian Kyahan + + HQ1:Federation Kyahan + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (19) + + + Earth Crystal + Grass Thread + Grass Cloth + Mercenary's Kyahan + + NQ: Cotton Doublet + + HQ1:Great Doublet + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (20) + + + Earth Crystal + Saruta Cotton x3 + Cotton Thread + Cotton Cloth x4 + + NQ: Cotton Headband + + HQ1:Erudite's Headband + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (20) + + + Earth Crystal + Carbon Fiber + Cotton Cloth + + NQ: Mana Tunic + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (20) + + + Earth Crystal + Magical Cotton Cloth + Tunic + + NQ: Windurstian Headgear + + HQ1:Federation Headgear + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (20) + + + Earth Crystal + Cotton Thread + Cotton Cloth + Mercenary Captain's Headgear + + NQ: Cotton Headband + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (20) + + + Earth Crystal + Clothcraft Kit 20 + + +Initiate (21-30) +Synthesis Information +Yield Requirements Ingredients + + NQ: Cotton Hachimaki + + HQ1:Cotton Hachimaki +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (21) + + + Wind Crystal + Cotton Cloth x2 + + NQ: Taikyoku Kenpogi + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (21) +Key Item: Cloth Ensorcellment + + + Earth Crystal + Lambent Earth Cell + Lambent Wind Cell + Kenpogi + + NQ: Talisman Cape + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (21) + + + Earth Crystal + Alluring Cotton Cloth + Cotton Cape + + NQ: Windurstian Gloves + + HQ1:Federation Gloves + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (21) + + + Earth Crystal + Cotton Thread + Cotton Cloth + Mercenary Captain's Gloves + + NQ: Windurstian Sitabaki + + HQ1:Federation Sitabaki + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (21) + + + Earth Crystal + Grass Thread + Grass Cloth + Mercenary's Sitabaki + + NQ: Cotton Tekko + + HQ1:Cotton Tekko +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (22) +Sub Craft(s): Woodworking - (6) + + + Earth Crystal + Lauan Lumber + Grass Thread + Cotton Cloth x2 + + NQ: Fine Linen Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (22) +Key Item: Cloth Purification + + + Earth Crystal + Linen Thread x3 + Wind Anima + Earth Anima + Light Anima + + NQ: Linen Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (22) + + + Earth Crystal + Linen Thread x3 + + NQ: Magical Linen Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (22) +Key Item: Cloth Purification + + + Earth Crystal + Linen Thread x3 + Earth Anima + Water Anima + Light Anima + + NQ: San d'Orian Tunic + + HQ1:Kingdom Tunic + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (22) + + + Earth Crystal + Royal Footman's Tunic + Grass Cloth + Cotton Thread + + NQ: Trader's Chapeau + + HQ1:Baron's Chapeau + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (22) +Sub Craft(s): Leathercraft - (9) + + + Earth Crystal + Cotton Cloth + Sheep Leather + Beeswax + Red Grass Thread + Red Grass Cloth x2 + + NQ: Windurstian Gaiters + + HQ1:Federation Gaiters + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (22) + + + Earth Crystal + Cotton Thread + Cotton Cloth + Mercenary Captain's Gaiters + + NQ: Yagudo Fletchings x6 + + HQ1:Yagudo Fletchings x8 + HQ2:Yagudo Fletchings x10 + HQ3:Yagudo Fletchings x12 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (22) + + + Wind Crystal + Yagudo Feather x2 + + NQ: Yagudo Fletchings x18 + + HQ1:Yagudo Fletchings x24 + HQ2:Yagudo Fletchings x30 + HQ3:Yagudo Fletchings x36 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (22) +Key Item: Fletching + + + Wind Crystal + Yagudo Feather x6 + Zephyr Thread + + NQ: Fisherman's Hose + + HQ1:Angler's Hose + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (23) + + + Earth Crystal + Linen Cloth x2 + Cotton Thread + Cotton Cloth + + NQ: Linen Cuffs + + HQ1:Linen Cuffs +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (23) +Sub Craft(s): Goldsmithing - (9) + + + Earth Crystal + Sardonyx x2 + Linen Thread + Linen Cloth + Cotton Cloth + + NQ: Moblinweave + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (23) + + + Earth Crystal + Moblin Thread x3 + + NQ: Trader's Cuffs + + HQ1:Baron's Cuffs + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (23) +Sub Craft(s): Leathercraft - (9) + + + Earth Crystal + Cotton Cloth + Sheep Leather x2 + Red Grass Thread + Red Grass Cloth + + NQ: Windurstian Gi + + HQ1:Federation Gi + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (23) + + + Earth Crystal + Grass Thread + Grass Cloth + Mercenary's Gi + + NQ: Cotton Kyahan + + HQ1:Cotton Kyahan +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (24) + + + Wind Crystal + Linen Thread + Cotton Cloth x3 + + NQ: Noct Beret + + HQ1:Noct Beret +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (24) +Sub Craft(s): Leathercraft - (20) + + + Earth Crystal + Linen Thread + Linen Cloth + Chocobo Feather x2 + Sheep Leather + + NQ: Red Cap + + HQ1:Red Cap +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (24) + + + Earth Crystal + Chocobo Feather + Linen Thread + Linen Cloth x2 + + NQ: Seer's Mitts + + HQ1:Seer's Mitts +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (24) +Sub Craft(s): Leathercraft - (20) + + + Earth Crystal + Wool Thread + Cotton Cloth x2 + Saruta Cotton + Sheep Leather + + NQ: Trader's Slops + + HQ1:Baron's Slops + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (24) +Sub Craft(s): Leathercraft - (9) + + + Earth Crystal + Cotton Cloth x2 + Sheep Leather + Red Grass Thread + Red Grass Cloth + + NQ: Windurstian Brais + + HQ1:Federation Brais + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (24) + + + Earth Crystal + Cotton Thread + Cotton Cloth + Mercenary Captain's Hose + + NQ: Blissful Chapeau + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (25) +Key Item: Cloth Purification + + + Earth Crystal + Lambent Water Cell + Lambent Earth Cell + Trader's Chapeau + + NQ: Bracers + + HQ1:Bracers +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (25) + + + Earth Crystal + Saruta Cotton x2 + Linen Thread + Linen Cloth x2 + + NQ: Linen Slops + + HQ1:Linen Slops +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (25) + + + Earth Crystal + Linen Thread + Linen Cloth x2 + Cotton Cloth + + NQ: Noct Gloves + + HQ1:Noct Gloves +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (25) +Sub Craft(s): Leathercraft - (20) + + + Earth Crystal + Linen Thread + Linen Cloth x2 + Saruta Cotton x2 + Sheep Leather + + NQ: Seer's Slacks + + HQ1:Seer's Slacks +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (25) +Sub Craft(s): Leathercraft - (20) + + + Earth Crystal + Wool Thread + Cotton Cloth x2 + Linen Cloth + Sheep Leather + + NQ: Trader's Saio + + HQ1:Baron's Saio + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (25) +Sub Craft(s): Leathercraft - (9) + + + Earth Crystal + Brass Chain + Cotton Cloth + Sheep Leather + Ram Leather + Beeswax + Red Grass Thread + Red Grass Cloth x2 + + NQ: Windurstian Doublet + + HQ1:Federation Doublet + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (25) + + + Earth Crystal + Cotton Thread + Cotton Cloth + Mercenary Captain's Doublet + + NQ: Bracers + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (25) + + + Earth Crystal + Clothcraft Kit 25 + + NQ: Cotton Sitabaki + + HQ1:Cotton Sitabaki +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (26) + + + Earth Crystal + Linen Cloth + Grass Thread + Cotton Cloth x2 + + NQ: Noct Doublet + + HQ1:Noct Doublet +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (26) +Sub Craft(s): Leathercraft - (20) + + + Earth Crystal + Linen Thread + Linen Cloth x3 + Saruta Cotton x3 + Sheep Leather + + NQ: Seer's Tunic + + HQ1:Seer's Tunic +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (26) +Sub Craft(s): Leathercraft - (20) + + + Earth Crystal + Wool Thread + Cotton Cloth x3 + Linen Cloth x2 + Sheep Leather + + NQ: Socks + + HQ1:Socks +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (26) + + + Earth Crystal + Dhalmel Leather + Linen Thread + Linen Cloth x3 + + NQ: Heko Obi + + HQ1:Heko Obi +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (27) + + + Earth Crystal + Grass Thread + Cotton Cloth x2 + + NQ: Linen Robe + + HQ1:Linen Robe +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (27) + + + Earth Crystal + Linen Cloth x2 + Cotton Thread + Cotton Cloth x2 + + NQ: Noct Gaiters + + HQ1:Noct Gaiters +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (27) +Sub Craft(s): Leathercraft - (20) + + + Earth Crystal + Linen Cloth x3 + Sheep Leather x2 + + NQ: Cotton Dogi + + HQ1:Cotton Dogi +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (28) + + + Earth Crystal + Grass Thread + Cotton Cloth x3 + + NQ: Hose + + HQ1:Hose +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (28) + + + Earth Crystal + Dhalmel Leather + Linen Thread + Linen Cloth x2 + + NQ: Chocobo Taping x3 + + HQ1: Chocobo Taping x6 + HQ2: Chocobo Taping x9 + HQ3: Chocobo Taping x12 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (28) + + + Wind Crystal + Cotton Cloth + Linen Cloth x3 + + NQ: Gambison + + HQ1:Gambison +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (29) +Sub Craft(s): Goldsmithing - (13) + + + Earth Crystal + Saruta Cotton x2 + Brass Scales + Linen Thread + Linen Cloth x4 + + NQ: Kaginawa x33 + + HQ1:Kaginawa x66 + HQ2:Kaginawa x99 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (29) +Sub Craft(s): Smithing - (15) + + + Earth Crystal + Bronze Ingot + Grass Thread + Manticore Hair + + NQ: Fisherman's Tunica + + HQ1:Angler's Tunica + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (30) + + + Earth Crystal + Linen Thread + Linen Cloth + Sheep Leather + Cotton Cloth x3 + + NQ: Fly Lure + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (30) +Sub Craft(s): Bonecraft - (8) + + + Earth Crystal + Chocobo Feather + Bat Fang + Animal Glue + + NQ: Talisman Obi + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (30) + + + Earth Crystal + Alluring Cotton Cloth + Heko Obi + + NQ: Windurstian Slops + + HQ1:Federation Slops + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (30) + + + Earth Crystal + Linen Thread + Linen Cloth + Freesword's Slops + + NQ: Fisherman's Tunica + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (30) + + + Earth Crystal + Clothcraft Kit 30 + + +Novice (31-40) +Synthesis Information +Yield Requirements Ingredients + + NQ: Linen Mitts + + HQ1:Linen Mitts +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (31) + + + Earth Crystal + Saruta Cotton + Linen Thread + Linen Cloth + Cotton Cloth + + NQ: Soil Hachimaki + + HQ1:Soil Hachimaki +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (31) + + + Wind Crystal + Linen Cloth x2 + + NQ: Linen Slacks + + HQ1:Linen Slacks +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (32) + + + Earth Crystal + Linen Thread + Linen Cloth x3 + + NQ: Soil Tekko + + HQ1:Soil Tekko +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (32) +Sub Craft(s): Woodworking - (7) + + + Earth Crystal + Lauan Lumber + Linen Cloth x2 + Grass Thread + + NQ: Combat Mittens + + HQ1:Combat Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (32) + + + Earth Crystal + Ephemeral Cloth + Linen Cloth + Linen Thread + Saruta Cotton + + NQ: Aht Urhgan Dart x8 + + HQ1:Aht Urhgan Dart x16 + HQ2:Aht Urhgan Dart x20 + HQ3:Aht Urhgan Dart x24 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (33) +Sub Craft(s): Bonecraft - (14) + + + Wind Crystal + Animal Glue + Colibri Feather x2 + Colibri Beak + + NQ: Cloak + + HQ1:Cloak +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (33) + + + Earth Crystal + Linen Thread + Linen Cloth x2 + Cotton Cloth x3 + + NQ: Garish Mitts + + HQ1:Rubious Mitts + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (34) +Sub Craft(s): Leathercraft - (20) + + + Earth Crystal + Cotton Cloth + Saruta Cotton + Sheep Leather + Scarlet Linen + Bloodthread + + NQ: Shinobi-Tabi x33 + + HQ1:Shinobi-Tabi x66 + HQ2:Shinobi-Tabi x99 + HQ3:Shinobi-Tabi x99 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (34) + + + Earth Crystal + Saruta Cotton + Grass Thread + Cotton Cloth x2 + + NQ: Soil Kyahan + + HQ1:Soil Kyahan +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (34) + + + Wind Crystal + Linen Cloth x3 + Cotton Thread + + NQ: Garish Slacks + + HQ1:Rubious Slacks + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (35) +Sub Craft(s): Leathercraft - (21) + + + Earth Crystal + Linen Cloth + Velvet Cloth x2 + Sheep Leather + Bloodthread + + NQ: Hawkeye x8 + + HQ1:Hawkeye x12 + HQ2:Hawkeye x16 + HQ3:Hawkeye x20 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (35) +Sub Craft(s): Goldsmithing - (9) + + + Wind Crystal + Silver Ingot + Animal Glue + Yagudo Feather x2 + + NQ: Wool Thread + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (35) + + + Lightning Crystal + Sheep Wool x2 + + NQ: Wool Thread x3 + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (35) +Key Item: Spinning + + + Lightning Crystal + Sheep Wool x6 + Spindle + + NQ: Wool Thread + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (35) + + + Lightning Crystal + Clothcraft Kit 35 + + NQ: Combat Caster's Mitts +1 + + HQ1:Combat Caster's Mitts +2 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (36) + + + Earth Crystal + Combat Caster's Mitts + Linen Thread + Linen Cloth + + NQ: Garish Tunic + + HQ1:Rubious Tunic + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (36) +Sub Craft(s): Leathercraft - (20) + + + Earth Crystal + Velvet Cloth x2 + Sheep Leather + Scarlet Linen x3 + Bloodthread + + NQ: Mana Cloak + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (36) + + + Earth Crystal + Magical Linen Cloth + Cloak + + NQ: Soil Sitabaki + + HQ1:Soil Sitabaki +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (36) + + + Earth Crystal + Linen Cloth x2 + Grass Thread + Wool Cloth + + NQ: Combat Caster's Slacks +1 + + HQ1:Combat Caster's Slacks +2 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (36) + + + Earth Crystal + Combat Caster's Slacks + Linen Thread + Linen Cloth + + NQ: Incombustible Wool + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (37) +Key Item: Cloth Ensorcellment + + + Earth Crystal + Wool Thread x3 + Fire Anima + Ice Anima + Dark Anima + + NQ: Mist Mitts + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (37) + + + Earth Crystal + Smooth Velvet + Garish Mitts + + NQ: Wool Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (37) + + + Earth Crystal + Wool Thread x3 + + NQ: Combat Caster's Cloak +1 + + HQ1:Combat Caster's Cloak +2 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (38) + + + Earth Crystal + Combat Caster's Cloak + Linen Thread + Linen Cloth + + NQ: Feather Collar + + HQ1:Feather Collar +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (38) + + + Earth Crystal + Bird Feather x7 + Wool Cloth + + NQ: Mist Slacks + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (38) + + + Earth Crystal + Smooth Velvet + Garish Slacks + + NQ: Soil Gi + + HQ1:Soil Gi +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (38) + + + Earth Crystal + Linen Cloth x3 + Grass Thread + + NQ: Buffoon's Collar + + HQ1:Buffoon's Collar +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (38) + + + Earth Crystal + Colibri Feather x7 + Karakul Cloth + + NQ: Flax Headband + + HQ1:Alluring Headband + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (39) + + + Earth Crystal + Carbon Fiber + Linen Cloth + + NQ: Mist Tunic + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (39) + + + Earth Crystal + Smooth Velvet + Garish Tunic + + NQ: Mohbwa Sash + + HQ1:Mohbwa Sash +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (39) + + + Earth Crystal + Red Grass Thread + Red Grass Cloth + Mohbwa Cloth + + NQ: Wool Hat + + HQ1:Wool Hat +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (40) +Sub Craft(s): Goldsmithing - (8) + + + Earth Crystal + Brass Sheet + Linen Thread + Linen Cloth + Wool Cloth x2 + + NQ: Shadow Roll x3 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (40) + + + Earth Crystal + Wool Thread x2 + Wool Cloth + Sheep Leather + + NQ: Pet Poultice x33 + + HQ1:Pet Poultice x 66 + HQ2:Pet Poultice x 99 + HQ3:Pet Poultice x 99 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (40) +Sub Craft(s): Alchemy - (32-36) Verification Needed + + + Earth Crystal + Cotton Cloth + Linen Cloth + Flaxseed Oil + Lycopodium Flower + Holy Water + + NQ: Shadow Roll x3 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (40) + + + Earth Crystal + Clothcraft Kit 40 + + +Apprentice (41-50) +Synthesis Information +Yield Requirements Ingredients + + NQ: Mohbwa Thread + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (41) + + + Lightning Crystal + Mohbwa Grass x2 + + NQ: Mohbwa Thread x3 + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (41) +Key Item: Spinning + + + Lightning Crystal + Mohbwa Grass x6 + Spindle + + NQ: Regen Collar + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (41) +Key Item: Cloth Purification + + + Earth Crystal + Lambent Earth Cell + Lambent Water Cell + Feather Collar + + NQ: Wool Cuffs + + HQ1:Wool Cuffs +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (41) +Sub Craft(s): Goldsmithing - (9) + + + Earth Crystal + Tourmaline x2 + Linen Cloth + Wool Thread + Wool Cloth + + NQ: Sanjaku-Tenugui + + HQ1:Sanjaku-Tenugui x66 + HQ2:Sanjaku-Tenugui x99 + HQ3:Sanjaku-Tenugui x99 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (41) + + + Earth Crystal + Cotton Thread x2 + Cotton Cloth x2 + + NQ: Bird Fletchings x6 + + HQ1:Bird Fletchings x8 + HQ2:Bird Fletchings x10 + HQ3:Bird Fletchings x12 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (42) + + + Wind Crystal + Bird Feather x2 + + NQ: Bird Fletchings x18 + + HQ1:Bird Fletchings x24 + HQ2:Bird Fletchings x30 + HQ3:Bird Fletchings x36 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (42) +Key Item: Fletching + + + Wind Crystal + Bird Feather x6 + Zephyr Thread + + NQ: Mohbwa Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (42) + + + Earth Crystal + Mohbwa Thread x3 + + NQ: Wool Slops + + HQ1:Wool Slops +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (42) +Sub Craft(s): Goldsmithing - (9) + + + Earth Crystal + Brass Sheet + Linen Cloth + Wool Thread + Wool Cloth x2 + + NQ: Hemp Gorget + + HQ1:Hemp Gorget +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (43) + + + Earth Crystal + Grass Thread x8 + + NQ: Wool Robe + + HQ1:Wool Robe +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (43) +Sub Craft(s): Goldsmithing - (12) + + + Earth Crystal + Brass Scales + Linen Thread + Linen Cloth x2 + Wool Cloth x2 + + NQ: Lilac Corsage + + HQ1:Gala Corsage + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (44) + + + Wind Crystal + Silk Cloth + Spider Web + Lilac + Twinthread + + NQ: Wing Earring + + HQ1:Drone Earring + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (44) +Sub Craft(s): Goldsmithing - (11) + + + Earth Crystal + Insect Wing x2 + Silver Ingot + + NQ: Humidified Velvet + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (45) +Key Item: Cloth Ensorcellment + + + Earth Crystal + Silk Thread + Wool Thread x2 + Earth Anima + Water Anima + Dark Anima + + NQ: Smooth Velvet + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (45) +Key Item: Cloth Purification + + + Earth Crystal + Silk Thread + Wool Thread x2 + Wind Anima x2 + Light Anima + + NQ: Velvet Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (45) + + + Earth Crystal + Silk Thread + Wool Thread x2 + + NQ: Wool Cap + + HQ1:Wool Cap +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (45) + + + Earth Crystal + Wool Thread + Wool Cloth x2 + Chocobo Feather + + NQ: Wool Cap + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (45) + + + Earth Crystal + Clothcraft Kit 45 + + NQ: Blink Band + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (46) + + + Earth Crystal + Flax Headband + Fine Linen Cloth + + NQ: Wool Bracers + + HQ1:Wool Bracers +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (46) + + + Earth Crystal + Wool Thread + Wool Cloth x2 + Saruta Cotton x2 + + NQ: Silver Thread x2 + + HQ1:Silver Thread x4 + HQ2:Silver Thread x6 + HQ3:Silver Thread x8 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (47) +Sub Craft(s): Goldsmithing - (12) + + + Earth Crystal + Silver Ingot + Silk Thread + + NQ: Silver Thread x6 + + HQ1:Silver Thread x8 + HQ2:Silver Thread x12 + HQ3:Silver Thread x12 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (47) +Sub Craft(s): Goldsmithing - (12) +Key Item: Spinning + + + Earth Crystal + Silver Ingot x3 + Silk Thread x3 + Spindle + + NQ: Blue Tarutaru Desk + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (47) + + + Water Crystal + Tarutaru Desk + Blue Textile Dye + + NQ: Green Tarutaru Desk + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (47) + + + Water Crystal + Tarutaru Desk + Green Textile Dye + + NQ: Yellow Tarutaru Desk + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (47) + + + Water Crystal + Tarutaru Desk + Yellow Textile Dye + + NQ: White Tarutaru Desk + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (47) + + + Water Crystal + Tarutaru Desk + White Textile Dye + + NQ: Wool Socks + + HQ1:Wool Socks +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (48) + + + Earth Crystal + Wool Thread + Wool Cloth x3 + Ram Leather + + NQ: Fire Bracers + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (49) + + + Earth Crystal + Incombustible Wool + Wool Bracers + + NQ: Wool Hose + + HQ1:Wool Hose +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (49) + + + Earth Crystal + Wool Thread + Wool Cloth x2 + Ram Leather + + NQ: Junkenshi Habaki + + HQ1:Seikenshi Habaki + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (49) + + + Wind Crystal + Rainbow Thread + Cotton Cloth x3 + Manta Leather + + NQ: Chocobo Hose + + HQ1:Rider's Hose + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (50) + + + Earth Crystal + Linen Thread + Linen Cloth + Sheep Leather + Wool Cloth + + NQ: Royal Squire's Robe +1 + + HQ1:Royal Squire's Robe +2 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (50) + + + Earth Crystal + Royal Squire's Robe + Silver Thread + Wool Cloth + + NQ: Wool Gambison + + HQ1:Wool Gambison +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (50) +Sub Craft(s): Goldsmithing - (13) + + + Earth Crystal + Brass Scales + Wool Thread + Saruta Cotton x2 + Wool Cloth x4 + + NQ: Velvet Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (50) + + + Earth Crystal + Silk Thread + Cotton Thread x2 + + NQ: Smooth Velvet + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (50) +Key Item: Cloth Purification + + + Earth Crystal + Silk Thread + Cotton Thread x2 + Wind Anima x2 + Light Anima + + NQ: Velvet Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (50) + + + Earth Crystal + Clothcraft Kit 50 + + +Journeyman (51-60) +Synthesis Information +Yield Requirements Ingredients + + NQ: Silk Thread + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (51) + + + Lightning Crystal + Crawler Cocoon x2 + + NQ: Silk Thread x3 + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (51) +Key Item: Spinning + + + Lightning Crystal + Crawler Cocoon x6 + Spindle + + NQ: Silver Obi + + HQ1:Silver Obi +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (51) + + + Earth Crystal + Silver Thread x3 + + NQ: Humidified Velvet + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (51) +Key Item: Cloth Ensorcellment + + + Earth Crystal + Silk Thread + Cotton Thread x2 + Earth Anima + Water Anima + Dark Anima + + NQ: Black Slacks + + HQ1:Mage's Slacks + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (52) + + + Earth Crystal + Velvet Cloth + Linen Cloth x2 + Silver Thread + + NQ: Blaze Hose + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (52) + + + Earth Crystal + Incombustible Wool + Wool Hose + + NQ: Insect Fletchings x6 + + HQ1:Insect Fletchings x8 + HQ2:Insect Fletchings x10 + HQ3:Insect Fletchings x12 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (52) + + + Wind Crystal + Insect Wing x2 + + NQ: Insect Fletchings x18 + + HQ1:Insect Fletchings x24 + HQ2:Insect Fletchings x30 + HQ3:Insect Fletchings x36 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (52) +Key Item: Fletching + + + Wind Crystal + Insect Wing x6 + Zephyr Thread + + NQ: Scarlet Ribbon + + HQ1:Noble's Ribbon + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (52) + + + Wind Crystal + Velvet Cloth + + NQ: Black Tunic + + HQ1:Mage's Tunic + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (53) + + + Earth Crystal + Velvet Cloth x2 + Linen Cloth x3 + Silver Thread + + NQ: Magical Silk Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (53) +Key Item: Cloth Purification + + + Earth Crystal + Silk Thread x3 + Earth Anima + Water Anima + Light Anima + + NQ: Silk Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (53) + + + Earth Crystal + Silk Thread x3 + + NQ: Peiste Dart x8 + + HQ1:Peiste Dart x12 + HQ2:Peiste Dart x16 + HQ3:Peiste Dart x20 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (53) +Sub Craft(s): Bonecraft - (47) + + + Earth Crystal + Gnat Wing x2 + Animal Glue + Peiste Stinger + + NQ: Black Cape + + HQ1:Black Cape +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (54) + + + Earth Crystal + Velvet Cloth x2 + Silver Thread + + NQ: Scarlet Linen + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (54) + + + Earth Crystal + Bloodthread + Linen Thread x2 + + NQ: Pennon Earring + + HQ1:Pennon Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (54) +Sub Craft(s): Goldsmithing - (32) + + + Earth Crystal + Electrum Ingot + Gnat Wing x2 + + NQ: Kyoshu Sitabaki + + HQ1:Kyoshu Sitabaki +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (54) + + + Earth Crystal + Lineadach + Cotton Cloth x2 + Grass Thread + + NQ: Iron Musketeer's Gambison +1 + + HQ1:Iron Musketeer's Gambison +2 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (55) + + + Earth Crystal + Iron Musketeer's Gambison + Wool Thread + Wool Cloth + + NQ: Karakul Thread + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (55) + + + Lightning Crystal + Karakul Wool x2 + + NQ: Karakul Thread x3 + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (55) +Key Item: Spinning + + + Lightning Crystal + Karakul Wool x6 + Spindle + + NQ: Mohbwa Scarf + + HQ1:Mohbwa Scarf +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (55) + + + Earth Crystal + Linen Cloth + Mohbwa Cloth + Mohbwa Thread + + NQ: Velvet Hat + + HQ1:Mage's Hat + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (55) +Sub Craft(s): Goldsmithing - (8) + + + Earth Crystal + Velvet Cloth x2 + Brass Sheet + Silk Thread + Wool Cloth + + NQ: Mohbwa Scarf + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (55) + + + Earth Crystal + Clothcraft Kit 55 + + NQ: Twinthread + + HQ1:Twinthread x2 + HQ2:Twinthread x3 + HQ3:Twinthread x4 + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (56) + + + Lightning Crystal + Twincoon x2 + + NQ: Chocobo Hood x3 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (56) + + + Earth Crystal + Linen Cloth + Silk Thread + Velvet Cloth x2 + + NQ: Karakul Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (57) + + + Earth Crystal + Karakul Thread x3 + + NQ: Velvet Slops + + HQ1:Mage's Slops + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (57) +Sub Craft(s): Goldsmithing - (9) + + + Earth Crystal + Velvet Cloth x2 + Brass Sheet + Silver Thread + Wool Cloth + + NQ: Gold Thread x2 + + HQ1:Gold Thread x4 + HQ2:Gold Thread x6 + HQ3:Gold Thread x8 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (58) +Sub Craft(s): Goldsmithing - (41) + + + Earth Crystal + Gold Ingot + Silk Thread + + NQ: Gold Thread x6 + + HQ1:Gold Thread x8 + HQ2:Gold Thread x12 + HQ3:Gold Thread x12 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (58) +Sub Craft(s): Goldsmithing - (41) +Key Item: Spinning + + + Earth Crystal + Gold Ingot x3 + Silk Thread x3 + Spindle + + NQ: Linen Doublet + + HQ1:Linen Doublet +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (58) + + + Earth Crystal + Saruta Cotton x3 + Linen Thread + Linen Cloth x4 + + NQ: Shiny Gold Thread x2 + + HQ1:Shiny Gold Thread x4 + HQ2:Shiny Gold Thread x6 + HQ3:Shiny Gold Thread x8 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (58) +Sub Craft(s): Goldsmithing - (41) +Key Item: Cloth Purification + + + Earth Crystal + Gold Ingot + Silk Thread + Light Anima x3 + + NQ: Brilliant Gold Thread x2 + + HQ1:Brilliant Gold Thread x4 + HQ2:Brilliant Gold Thread x6 + HQ3:Brilliant Gold Thread x8 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (58) +Sub Craft(s): Goldsmithing - (41) +Key Item: Cloth Purification + + + Earth Crystal + Gold Ingot + Silk Thread + Water Anima x2 + Light Anima + + NQ: Dull Gold Thread x2 + + HQ1:Dull Gold Thread x4 + HQ2:Dull Gold Thread x6 + HQ3:Dull Gold Thread x8 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (58) +Sub Craft(s): Goldsmithing - (41) +Key Item: Cloth Purification + + + Earth Crystal + Gold Ingot + Silk Thread + Ice Anima x2 + Light Anima + + NQ: Twinthread Obi + + HQ1:Twinthread Obi +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (58) + + + Earth Crystal + Twinthread x3 + + NQ: Velvet Cuffs + + HQ1:Mage's Cuffs + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (58) +Sub Craft(s): Goldsmithing - (15) + + + Earth Crystal + Velvet Cloth + Peridot x2 + Silver Thread + Wool Cloth + + NQ: Velvet Robe + + HQ1:Mage's Robe + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (58) +Sub Craft(s): Goldsmithing - (9) + + + Earth Crystal + Velvet Cloth x2 + Brass Scales + Silver Thread + Wool Cloth x2 + + NQ: Salutary Robe + + HQ1:Salutary Robe +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (58) +Sub Craft(s): Goldsmithing - (9) + + + Earth Crystal + Mandragora Scale + Velvet Cloth x2 + Wool Cloth x2 + Silver Thread + + NQ: Imperial Silk Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (59) + + + Earth Crystal + Silk Thread + Gold Thread + Wamoura Silk + + NQ: Qiqirn Sash + + HQ1:Qiqirn Sash +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (59) + + + Earth Crystal + Scarlet Linen + Red Grass Thread + Karakul Cloth + + NQ: Red Cape + + HQ1:Red Cape +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (59) + + + Earth Crystal + Velvet Cloth x2 + Gold Thread + + NQ: Black Mitts + + HQ1:Mage's Mitts + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (60) + + + Earth Crystal + Saruta Cotton + Velvet Cloth + Linen Cloth + Silver Thread + + NQ: Field Hose + + HQ1:Worker Hose + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (60) + + + Earth Crystal + Linen Cloth + Wool Thread + Wool Cloth x2 + + NQ: Blue Tarutaru Standing Screen + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (60) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + Tarutaru Folding Screen + Blue Textile Dye + + NQ: Green Tarutaru Standing Screen + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (60) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + Tarutaru Folding Screen + Green Textile Dye + + NQ: Yellow Tarutaru Standing Screen + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (60) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + Tarutaru Folding Screen + Yellow Textile Dye + + NQ: White Tarutaru Standing Screen + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (60) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + Tarutaru Folding Screen + White Textile Dye + + NQ: Black Mitts + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (60) + + + Earth Crystal + Clothcraft Kit 60 + + +Craftsman (61-70) +Synthesis Information +Yield Requirements Ingredients + + NQ: Velvet Cuffs + + HQ1:Mage's Cuffs + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (61) +Sub Craft(s): Goldsmithing - (15) + + + Earth Crystal + Velvet Cloth + Tourmaline x2 + Silver Thread + Wool Cloth + + NQ: White Slacks + + HQ1:White Slacks +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (61) + + + Earth Crystal + Velvet Cloth x2 + Gold Thread + Silk Cloth + + NQ: Jaridah Salvars + + HQ1:Akinji Salvars + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (61) +Sub Craft(s): Smithing - (35), Leathercraft - (34) + + + Earth Crystal + Steel Sheet + Karakul Leather + Marid Hair + Karakul Cloth x2 + + NQ: Crow Bracers + + HQ1:Raven Bracers + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (62) +Sub Craft(s): Leathercraft - (20) + + + Earth Crystal + Gold Thread + Velvet Cloth x2 + Saruta Cotton x2 + Sheep Leather + + NQ: Gnat Fletchings x6 + + HQ1:Gnat Fletchings x8 + HQ2:Gnat Fletchings x10 + HQ3:Gnat Fletchings x12 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (62) + + + Wind Crystal + Gnat Wing x2 + + NQ: Gnat Fletchings x18 + + HQ1:Gnat Fletchings x24 + HQ2:Gnat Fletchings x30 + HQ3:Gnat Fletchings x36 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (62) +Key Item: Fletching + + + Wind Crystal + Gnat Wing x6 + Zephyr Thread + + NQ: Green Ribbon + + HQ1:Green Ribbon +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (62) + + + Wind Crystal + Silk Cloth + + NQ: Hunter's Cotton + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (63) + + + Earth Crystal + Cotton Thread x3 + Carapace Powder + Distilled Water + + NQ: Water Mitts + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (63) + + + Earth Crystal + Humidified Velvet + Black Mitts + + NQ: White Cloak + + HQ1:White Cloak +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (63) + + + Earth Crystal + Velvet Cloth x3 + Gold Thread + Silk Cloth x2 + + NQ: Junrenshi Habaki + + HQ1:Seirenshi Habaki + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (63) + + + Wind Crystal + Rainbow Thread + Linen Cloth x3 + Manta Leather + + NQ: White Cape + + HQ1:White Cape +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (64) + + + Earth Crystal + Silk Cloth x2 + Wool Thread + + NQ: White Mitts + + HQ1:White Mitts +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (64) + + + Earth Crystal + Saruta Cotton + Velvet Cloth + Gold Thread + Silk Cloth + + NQ: Carmine Desk + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (64) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + Desk + Red Textile Dye + + NQ: Cerulean Desk + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (64) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + Desk + Blue Textile Dye + + NQ: Myrtle Desk + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (64) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + Desk + Green Textile Dye + + NQ: Ecru Desk + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (64) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + Desk + White Textile Dye + + NQ: Menetrier's Alb + + HQ1:Menetrier's Alb +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (64) +Sub Craft(s): Leathercraft - (19) + + + Earth Crystal + Cotton Cloth + Sheep Leather + Ram Leather + Beeswax + Red Grass Thread + Red Grass Cloth x2 + Yellow Brass Chain + + NQ: White Cape + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (64) + + + Earth Crystal + Clothcraft Kit 64 + + NQ: Aketon + + HQ1:Aketon +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (65) +Sub Craft(s): Alchemy - (24), Goldsmithing - (22) + + + Earth Crystal + Saruta Cotton x2 + Velvet Cloth + Platinum Ingot + Gold Thread x2 + Silk Cloth + Beetle Blood + + NQ: Hyo x8 + + HQ1:Hyo x12 + HQ2:Hyo x16 + HQ3:Hyo x20 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (65) +Sub Craft(s): Smithing - (19) + + + Wind Crystal + Velvet Cloth + Cotton Thread + Iron Ingot + + NQ: Silk Hat + + HQ1:Silk Hat +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (65) +Sub Craft(s): Goldsmithing - (52) + + + Earth Crystal + Gold Sheet + Velvet Cloth + Silver Thread + + NQ: Silken Hat + + HQ1:Magi Hat + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (65) +Sub Craft(s): Goldsmithing - (52) + + + Earth Crystal + Gold Sheet + Silver Thread + Velvet Cloth + Imperial Silk Cloth x2 + + NQ: Skeleton Robe + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (65) +Sub Craft(s): Goldsmithing - (9) + + + Earth Crystal + Brass Scales + Linen Thread + Linen Cloth x2 + Wool Cloth x2 + Osseous Serum + + NQ: Crow Beret + + HQ1:Raven Beret + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (66) +Sub Craft(s): Leathercraft - (20) + + + Earth Crystal + Gold Thread + Velvet Cloth x2 + Black Chocobo Feather + Bird Feather + Sheep Leather + + NQ: High Mana Cloak + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (66) + + + Earth Crystal + Magical Silk Cloth + White Cloak + + NQ: Opaline Hose + + HQ1:Ceremonial Hose + + LightCrystal-Icon.gif + +Main Craft: Clothcraft - (66) + + + Light Crystal + Velvet Cloth x2 + Silk Thread x3 + Twinthread x2 + + NQ: Sarcenet Cape + + HQ1:Midnight Cape + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (66) + + + Earth Crystal + Sarcenet Cloth x2 + Wool Thread + + NQ: Silk Cuffs + + HQ1:Silk Cuffs +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (66) +Sub Craft(s): Goldsmithing - (19) + + + Earth Crystal + Aquamarine x2 + Velvet Cloth + Gold Thread + Silk Cloth + + NQ: Argent Hose + + HQ1:Platino Hose + + LightCrystal-Icon.gif + +Main Craft: Clothcraft - (66) +Sub Craft(s): Leathercraft - (50), Alchemy - (20) + + + Light Crystal + Silver Chain + Velvet Cloth x2 + Sheep Leather x2 + Eltoro Leather + Baking Soda + Platinum Silk + + NQ: Silk Slops + + HQ1:Silk Slops +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (67) +Sub Craft(s): Goldsmithing - (45) + + + Earth Crystal + Gold Sheet + Gold Thread + Velvet Cloth + Silk Cloth x2 + + NQ: Silken Slops + + HQ1:Magi Slops + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (67) +Sub Craft(s): Goldsmithing - (45) + + + Earth Crystal + Gold Sheet + Gold Thread + Velvet Cloth + Imperial Silk Cloth x2 + + NQ: Wool Doublet + + HQ1:Wool Doublet +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (67) + + + Earth Crystal + Saruta Cotton x3 + Wool Thread + Wool Cloth x4 + + NQ: Accura Cape + + HQ1:Accura Cape +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (67) + + + Earth Crystal + Velvet Cloth x2 + Dahu Hair + + NQ: Apkallu Fletchings x6 + + HQ1:Apkallu Fletchings x8 + HQ2:Apkallu Fletchings x10 + HQ3:Apkallu Fletchings x12 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (67) + + + Wind Crystal + Apkallu Feather x2 + + NQ: Apkallu Fletchings x18 + + HQ1:Apkallu Fletchings x24 + HQ2:Apkallu Fletchings x30 + HQ3:Apkallu Fletchings x36 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (67) +Key Item: Fletching + + + Wind Crystal + Apkallu Feather x6 + Zephyr Thread + + NQ: Crow Jupon + + HQ1:Raven Jupon + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (68) +Sub Craft(s): Goldsmithing - (21), Leathercraft - (16) + + + Earth Crystal + Silver Ingot + Gold Thread + Velvet Cloth x3 + Saruta Cotton x2 + Sheep Leather + + NQ: Royal Knight's Cloak +1 + + HQ1:Royal Knight's Cloak +2 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (68) + + + Earth Crystal + Royal Knight's Cloak + Gold Thread + Silk Cloth + + NQ: Silk Coat + + HQ1:Silk Coat +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (68) + + + Earth Crystal + Velvet Cloth x2 + Gold Thread + Silver Thread + Silk Cloth x2 + + NQ: Silken Coat + + HQ1:Magi Coat + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (68) + + + Earth Crystal + Silver Thread + Gold Thread + Velvet Cloth x2 + Imperial Silk Cloth x2 + + NQ: Ghost Cape + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (68) + + + Earth Crystal + Silver Thread + Velvet Cloth x2 + Spectral Serum + + NQ: Silk Headband + + HQ1:Silk Headband +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (69) + + + Earth Crystal + Carbon Fiber + Silk Cloth + + NQ: Field Tunica + + HQ1:Worker Tunica + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (69) +Sub Craft(s): Leathercraft - (36) + + + Earth Crystal + Wool Thread + Wool Cloth x2 + Linen Cloth + Sheep Leather + Ram Leather + + NQ: Platinum Silk x2 + + HQ1:Platinum Silk x4 + HQ2:Platinum Silk x6 + HQ3:Platinum Silk x8 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (69) +Sub Craft(s): Goldsmithing - (53) + + + Earth Crystal + Platinum Ingot + Silk Thread + + NQ: Platinum Silk x6 + + HQ1:Platinum Silk x12 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (69) +Sub Craft(s): Goldsmithing - (53) +Key Item: Spinning + + + Earth Crystal + Platinum Ingot x3 + Silk Thread x3 + Spindle + + NQ: Sailcloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (69) + + + Earth Crystal + Grass Thread x5 + Rainbow Thread + + NQ: Vivacity Coat + + HQ1:Vivacity Coat +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (69) + + + Earth Crystal + Silver Thread + Velvet Cloth x2 + Silk Cloth x2 + Rugged Gold Thread + + NQ: Gold Obi + + HQ1:Gold Obi +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (70) + + + Earth Crystal + Gold Thread x3 + + NQ: Tactician Magician's Hat +1 + + HQ1:Tactician Magician's Hat +2 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (70) + + + Earth Crystal + Tactician Magician's Hat + Silver Thread + Velvet Cloth + + NQ: Vermillion Cloak + + HQ1:Royal Cloak + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (70) + + + Earth Crystal + Damascene Cloth x3 + Gold Thread x2 + Silk Cloth + Velvet Cloth x2 + + NQ: Black Puppet Turban + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (70) + + + Earth Crystal + Silver Thread + Cotton Cloth + Velvet Cloth + + NQ: White Puppet Turban + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (70) + + + Earth Crystal + Silver Thread + Cotton Cloth + Silk Cloth + + NQ: Gold Obi + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (70) + + + Earth Crystal + Clothcraft Kit 70 + + +Artisan (71-80) +Synthesis Information +Yield Requirements Ingredients + + NQ: Shinobi Hachigane + + HQ1:Shinobi Hachigane +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (71) +Sub Craft(s): Smithing - (40) + + + Wind Crystal + Iron Chain + Darksteel Sheet + Silk Cloth x2 + + NQ: Silk Cuffs + + HQ1:Silk Cuffs +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (71) +Sub Craft(s): Goldsmithing - (19) + + + Earth Crystal + Lapis Lazuli x2 + Gold Thread + Velvet Cloth + Silk Cloth + + NQ: Silken Cuffs + + HQ1: Magi Cuffs + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (71) +Sub Craft(s): Goldsmithing - (19) + + + Earth Crystal + Lapis Lazuli x2 + Gold Thread + Velvet Cloth + Imperial Silk Cloth + + NQ: Blue 3-Drawer Almirah + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (71) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + 3-Drawer Almirah + Gold Thread + Blue Textile Dye + + NQ: Green 3-Drawer Almirah + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (71) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + 3-Drawer Almirah + Gold Thread + Green Textile Dye + + NQ: Yellow 3-Drawer Almirah + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (71) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + 3-Drawer Almirah + Gold Thread + Yellow Textile Dye + + NQ: White 3-Drawer Almirah + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (71) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + 3-Drawer Almirah + Gold Thread + White Textile Dye + + NQ: Blue 6-Drawer Almirah + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (71) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + 6-Drawer Almirah + Gold Thread + Blue Textile Dye + + NQ: Green 6-Drawer Almirah + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (71) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + 6-Drawer Almirah + Gold Thread + Green Textile Dye + + NQ: Yellow 6-Drawer Almirah + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (71) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + 6-Drawer Almirah + Gold Thread + Yellow Textile Dye + + NQ: White 6-Drawer Almirah + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (71) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + 6-Drawer Almirah + Gold Thread + White Textile Dye + + NQ: Blue 9-Drawer Almirah + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (71) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + 9-Drawer Almirah + Gold Thread + Blue Textile Dye + + NQ: Green 9-Drawer Almirah + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (71) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + 9-Drawer Almirah + Gold Thread + Green Textile Dye + + NQ: Yellow 9-Drawer Almirah + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (71) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + 9-Drawer Almirah + Gold Thread + Yellow Textile Dye + + NQ: White 9-Drawer Almirah + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (71) +Sub Craft(s): Alchemy - (7) + + + Water Crystal + 9-Drawer Almirah + Gold Thread + White Textile Dye + + NQ: Battle Bracers + + HQ1:Battle Bracers +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (72) + + + Earth Crystal + Saruta Cotton x2 + Velvet Cloth x2 + Silk Thread + + NQ: Black Chocobo Fletchings x6 + + HQ1:Black Chocobo Fletchings x8 + HQ2:Black Chocobo Fletchings x10 + HQ3:Black Chocobo Fletchings x12 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (72) + + + Wind Crystal + Black Chocobo Feather x2 + + NQ: Black Chocobo Fletchings x18 + + HQ1:Black Chocobo Fletchings x24 + HQ2:Black Chocobo Fletchings x30 + HQ3:Black Chocobo Fletchings x36 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (72) +Key Item: Fletching + + + Wind Crystal + Black Chocobo Feather x6 + Zephyr Thread + + NQ: Tactician Magician's Cuffs +1 + + HQ1:Tactician Magician's Cuffs +2 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (72) + + + Earth Crystal + Tactician Magician's Cuffs + Silver Thread + Velvet Cloth + + NQ: Tactician Magician's Slops +1 + + HQ1:Tactician Magician's Slops +2 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (72) + + + Earth Crystal + Tactician Magician's Slops + Silver Thread + Velvet Cloth + + NQ: Deductive Gold Obi + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (73) + + + Earth Crystal + Brilliant Gold Thread + Gold Obi + + NQ: Enthralling Gold Obi + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (73) + + + Earth Crystal + Shiny Gold Thread + Gold Obi + + NQ: Sagacious Gold Obi + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (73) + + + Earth Crystal + Dull Gold Thread + Gold Obi + + NQ: Shinobi Kyahan + + HQ1:Shinobi Kyahan +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (73) + + + Wind Crystal + Mythril Sheet + Linen Thread + Silk Cloth x3 + + NQ: Silk Slacks + + HQ1:Silk Slacks +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (73) + + + Earth Crystal + Gold Thread x2 + Silk Cloth x3 + + NQ: Tactician Magician's Coat +1 + + HQ1:Tactician Magician's Coat +2 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (73) + + + Earth Crystal + Tactician Magician's Coat + Velvet Cloth + Silver Thread + + NQ: Cheviot Cape + + HQ1: Umbra Cape + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (74) + + + Earth Crystal + Cheviot Cloth x2 + Wool Thread + + NQ: Jester's Cape + + HQ1:Jester's Cape +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (74) +Sub Craft(s): Leathercraft - (20) + + + Earth Crystal + Silk Thread + Silk Cloth x2 + Sheep Leather x2 + + NQ: Silk Mitts + + HQ1:Silk Mitts +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (74) + + + Earth Crystal + Saruta Cotton + Gold Thread x2 + Silk Cloth x2 + + NQ: Vendor's Slops + + HQ1: Prince's Slops + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (74) +Sub Craft(s): Leathercraft - (9) + + + Earth Crystal + Karakul Leather + Scarlet Linen + Bloodthread + Imperial Silk Cloth x2 + + NQ: Sparkstrand Thread + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (74) + + + Lightning Crystal + Water Spider's Web x2 + + NQ: Sparkstrand Thread x3 + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (74) +Key Item: Spinning + + + Lightning Crystal + Water Spider's Web x6 + Spindle + + NQ: Shinobi Tekko + + HQ1:Shinobi Tekko +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (75) +Sub Craft(s): Smithing - (30) + + + Earth Crystal + Iron Chain + Mythril Sheet x2 + Linen Thread + Silk Cloth x2 + + NQ: Tabin Bracers + + HQ1:Tabin Bracers +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (75) + + + Earth Crystal + Imperial Silk Cloth + Battle Bracers + + NQ: Red Mahogany Bed + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (75) +Sub Craft(s): Alchemy - (?) + + + Water Crystal + Mahogany Bed + Wool Thread + Red Textile Dye + + NQ: Blue Mahogany Bed + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (75) +Sub Craft(s): Alchemy - (?) + + + Water Crystal + Mahogany Bed + Wool Thread + Blue Textile Dye + + NQ: Green Mahogany Bed + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (75) +Sub Craft(s): Alchemy - (?) + + + Water Crystal + Mahogany Bed + Wool Thread + Green Textile Dye + + NQ: Yellow Mahogany Bed + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (75) +Sub Craft(s): Alchemy - (?) + + + Water Crystal + Mahogany Bed + Wool Thread + Yellow Textile Dye + + NQ: Wolf Felt + + FireCrystal-Icon.gif + +Main Craft: Clothcraft - (75) + + + Fire Crystal + Sheep Wool x3 + Manticore Hair + Wolf Fur x3 + Distilled Water + + NQ: Tabin Bracers + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (75) + + + Earth Crystal + Clothcraft Kit 75 + + NQ: Green Beret + + HQ1:Green Beret +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (76) + + + Earth Crystal + Chocobo Feather + Silk Thread + Silk Cloth x2 + Giant Bird Feather + + NQ: Silver Brocade + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (76) + + + Earth Crystal + Silk Thread x2 + Rainbow Thread x2 + Silver Thread x2 + + NQ: Qiqirn Hood + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (76) + + + Earth Crystal + Coeurl Whisker + Copper Ingot + Qiqirn Cape + Lapis Lazuli x2 + Wool Cloth x2 + + NQ: Twill Damask + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (76) + + + Earth Crystal + Sparkstrand Thread x2 + Rainbow Thread + + NQ: Pinwheel x8 + + HQ1:Pinwheel x12 + HQ2:Pinwheel x16 + HQ3:Pinwheel x20 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (77) +Sub Craft(s): Smithing - (37) + + + Wind Crystal + Steel Ingot + Animal Glue + Bast Parchment x2 + + NQ: Silk Cloak + + HQ1:Silk Cloak +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (77) + + + Earth Crystal + Gold Thread + Silk Cloth x5 + + NQ: Junhanshi Habaki + + HQ1: Seihanshi Habaki + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (77) + + + Earth Crystal + Rainbow Thread + Rainbow Cloth x3 + Manta Leather + + NQ: Colibri Fletchings x6 + + HQ1: Colibri Fletchings x8 + HQ2: Colibri Fletchings x10 + HQ3: Colibri Fletchings x12 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (77) + + + Wind Crystal + Colibri Feather x2 + + NQ: Colibri Fletchings x18 + + HQ1: Colibri Fletchings x24 + HQ2: Colibri Fletchings x30 + HQ3: Colibri Fletchings x36 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (77) +Key Item: Fletching + + + Wind Crystal + Colibri Feather x6 + Zephyr Thread + + NQ: Battle Jupon + + HQ1:Battle Jupon +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (78) +Sub Craft(s): Goldsmithing - (42) + + + Earth Crystal + Gold Sheet + Saruta Cotton x2 + Velvet Cloth x4 + Gold Thread + + NQ: Rainbow Thread + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (78) + + + Lightning Crystal + Spider Web x2 + + NQ: Rainbow Thread x3 + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (78) +Key Item: Spinning + + + Lightning Crystal + Spider Web x6 + Spindle + + NQ: Oil-Soaked Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (78) +Sub Craft(s): Alchemy - (41) + + + Earth Crystal + Silk Thread + Gold Thread + Flaxseed Oil x3 + Wamoura Silk + + NQ: Shinobi Hakama + + HQ1:Shinobi Hakama +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (78) + + + Earth Crystal + Linen Thread + Linen Cloth x2 + Silk Cloth + Sheep Leather x2 + + NQ: Haunted Muleta + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (78) +Sub Craft(s): Woodworking - (18) + + + Wind Crystal + Spectral Goldenrod + Spectral Crimson + Yew Lumber + + NQ: Rainbow Velvet + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (79) + + + Earth Crystal + Silk Thread + Rainbow Thread x2 + + NQ: Tabin Beret + + HQ1:Tabin Beret +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (79) + + + Earth Crystal + Imperial Silk Cloth + Green Beret + + NQ: Brocade Obi + + HQ1:Brocade Obi +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (80) + + + Earth Crystal + Gold Thread x2 + Silver Thread x2 + Rainbow Thread x2 + + NQ: Rainbow Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (80) + + + Earth Crystal + Rainbow Thread x3 + + NQ: Shinobi Gi + + HQ1:Shinobi Gi +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (80) + + + Earth Crystal + Iron Chain x2 + Linen Thread + Silk Cloth x3 + + NQ: Yagudo Headgear + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (80) +Sub Craft(s): Leathercraft - (50), Bonecraft - (55) + + + Earth Crystal + Yagudo Cutting + Bugard Tusk + Cockatrice Skin + Wool Thread + Yagudo Feather x2 + Black Pearl x2 + + NQ: Alacer Aketon + + HQ1: Alacer Aketon +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (80) +Sub Craft(s): Alchemy - (24), Goldsmithing - (22) + + + Earth Crystal + Platinum Ingot + Gold Thread x2 + Silk Cloth + Saruta Cotton x2 + Beetle Blood + Radiant Velvet + + NQ: Brocade Obi + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (80) + + + Earth Crystal + Clothcraft Kit 80 + + +Adept (81-90) +Synthesis Information +Yield Requirements Ingredients + + NQ: Arhat's Jinpachi + + HQ1: Arhat's Jinpachi +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (81) +Sub Craft(s): Smithing - (48) + + + Wind Crystal + Darksteel Chain + Darksteel Sheet + Silk Cloth x2 + + NQ: Blue Cape + + HQ1: Blue Cape +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (81) + + + Earth Crystal + Beetle Blood + Silk Cloth x2 + Silk Thread + + NQ: Jester's Headband + + HQ1: Juggler's Headband + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (81) + + + Earth Crystal + Cotton Thread + Dodge Headband + Linen Cloth + + NQ: Tabin Jupon + + HQ1: Tabin Jupon +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (81) + + + Earth Crystal + Battle Jupon + Imperial Silk Cloth + + NQ: War Gloves + + HQ1: War Gloves +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (81) + + + Earth Crystal + Rainbow Thread + Saruta Cotton x2 + Velvet Cloth x2 + + NQ: Blue Noble's Bed + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (81) + + + Water Crystal + Noble's Bed + Gold Thread + Blue Textile Dye + + NQ: Green Noble's Bed + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (81) + + + Water Crystal + Noble's Bed + Gold Thread + Green Textile Dye + + NQ: Yellow Noble's Bed + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (81) + + + Water Crystal + Noble's Bed + Gold Thread + Yellow Textile Dye + + NQ: White Noble's Bed + + WaterCrystal-Icon.gif + +Main Craft: Clothcraft - (81) + + + Water Crystal + Noble's Bed + Gold Thread + White Textile Dye + + NQ: Peapuk Fletchings x6 + + HQ1: Peapuk Fletchings x8 + HQ2: Peapuk Fletchings x10 + HQ3: Peapuk Fletchings x12 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (81) + + + Wind Crystal + Peapuk Wing x2 + + NQ: Peapuk Fletchings x18 + + HQ1: Peapuk Fletchings x24 + HQ2: Peapuk Fletchings x30 + HQ3: Peapuk Fletchings x36 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (81) +Key Item: Fletching + + + Wind Crystal + Peapuk Wing x6 + Zephyr Thread + + NQ: Arhat's Sune-Ate + + HQ1: Arhat's Sune-Ate +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (82) +Sub Craft(s): Smithing - (45) + + + Wind Crystal + Darksteel Sheet + Silk Cloth x3 + Silk Thread + + NQ: Wulong Shoes + + HQ1: Wulong Shoes +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (82) + + + Earth Crystal + Cotton Cloth + Grass Thread + Kung Fu Shoes + + NQ: Arachne Thread x3 + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (82) + + + Lightning Crystal + Arachne Web x2 + + NQ: Sipahi Zerehs + + HQ1: Abtal Zerehs + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (82) +Sub Craft(s): Leathercraft - (39), Goldsmithing - (32) + + + Earth Crystal + Karakul Cloth x2 + Marid Hair + Marid Leather + Mythril Chain + Wamoura Cloth + + NQ: Puk Fletchings x6 + + HQ1: Puk Fletchings x8 + HQ2: Puk Fletchings x10 + HQ3: Puk Fletchings x12 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (82) + + + Wind Crystal + Puk Wing x2 + + NQ: Puk Fletchings x18 + + HQ1: Puk Fletchings x24 + HQ2: Puk Fletchings x30 + HQ3: Puk Fletchings x36 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (82) +Key Item: Fletching + + + Wind Crystal + Puk Wing x6 + Zephyr Thread + + NQ: Noble's Mitts + + HQ1: Aristocrat's Mitts + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (83) + + + Earth Crystal + Cotton Cloth + Gold Thread x2 + Rainbow Cloth + Saruta Cotton + + NQ: Master's Sitabaki + + HQ1: Master's Sitabaki +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (83) + + + Earth Crystal + Cotton Thread + Jujitsu Sitabaki + Linen Cloth + + NQ: War Brais + + HQ1: War Brais +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (83) + + + Earth Crystal + Gold Thread + Linen Cloth x2 + Tiger Leather + + NQ: Enthralling Brocade Obi + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (83) + + + Earth Crystal + Brocade Obi + Shiny Gold Thread + + NQ: Sagacious Brocade Obi + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (83) + + + Earth Crystal + Brocade Obi + Dull Gold Thread + + NQ: Deductive Brocade Obi + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (83) + + + Earth Crystal + Brocade Obi + Brilliant Gold Thread + + NQ: Noble's Slacks + + HQ1: Aristocrat's Slacks + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (84) + + + Earth Crystal + Gold Thread x2 + Rainbow Cloth x2 + Velvet Cloth + + NQ: Devotee's Mitts + + HQ1: Devotee's Mitts +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (84) + + + Earth Crystal + Linen Thread + Silk Cloth + Zealot's Mitts + + NQ: Arachne Obi + + HQ1: Arachne Obi +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (84) + + + Earth Crystal + Arachne Thread + Gold Thread + Rainbow Thread x3 + Silver Thread + + NQ: Rainbow Headband + + HQ1: Prism Headband + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (84) + + + Earth Crystal + Carbon Fiber + Rainbow Cloth + + NQ: Master's Gi + + HQ1: Master's Gi +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (85) + + + Earth Crystal + Cotton Cloth + Grass Thread + Jujitsu Gi + + NQ: Sipahi Turban + + HQ1: Abtal Turban + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (85) +Sub Craft(s): Goldsmithing - (45) + + + Earth Crystal + Gold Chain + Marid Hair + Wamoura Cloth x2 + + NQ: Cilice + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (85) + + + Earth Crystal + Wool Thread + Dhalmel Hair x2 + + NQ: Rainbow Headband + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (85) + + + Earth Crystal + Clothcraft Kit 85 + + NQ: Arhat's Tekko + + HQ1:Arhat's Tekko +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (86) +Sub Craft(s): Smithing - (49) + + + Earth Crystal + Darksteel Sheet x2 + Iron Chain + Linen Thread + Silk Cloth x2 + + NQ: War Aketon + + HQ1:War Aketon +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (86) +Sub Craft(s): Goldsmithing - (51), Leathercraft - (41) + + + Earth Crystal + Gold Ingot + Gold Thread + Saruta Cotton x2 + Tiger Leather x2 + Velvet Cloth x2 + + NQ: Hailstorm Tekko + + HQ1:Hailstorm Tekko +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (86) + + + Earth Crystal + Cotton Cloth + Grass Thread + Monsoon Tekko + + NQ: Gold Brocade + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (86) + + + Earth Crystal + Gold Thread x2 + Rainbow Thread x2 + Silk Thread x2 + + NQ: Noble's Tunic + + HQ1: Aristocrat's Coat + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (87) + + + Earth Crystal + Gold Thread x2 + Rainbow Cloth + Shining Cloth + Silk Cloth + Silver Thread + Velvet Cloth x2 + + NQ: Peace Cape + + HQ1: Peace Cape +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (87) + + + Earth Crystal + Amity Cape + Linen Thread + Silk Cloth + + NQ: Taffeta Cape + + HQ1: Taffeta Cape +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (87) + + + Earth Crystal + Taffeta Cloth x2 + Wool Thread + + NQ: Chapuli Fletchings x6 + + HQ1: Chapuli Fletchings x8 + HQ2: Chapuli Fletchings x10 + HQ3: Chapuli Fletchings x12 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (87) + + + Wind Crystal + Chapuli Wing x2 + + NQ: Chapuli Fletchings x18 + + HQ1: Chapuli Fletchings x24 + HQ2: Chapuli Fletchings x30 + HQ3: Chapuli Fletchings x36 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (87) +Key Item: Fletching + + + Wind Crystal + Chapuli Wing x6 + Zephyr Thread + + NQ: Bloody Aketon + + HQ1: Carnage Aketon + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (88) +Sub Craft(s): Alchemy - (59), Goldsmithing - (21) + + + Earth Crystal + Dragon Blood + Gold Thread x2 + Platinum Ingot + Rainbow Cloth + Saruta Cotton x2 + Silk Cloth + + NQ: Gaia Doublet + + HQ1: Gaia Doublet +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (88) + + + Earth Crystal + Cotton Cloth + Earth Doublet + Grass Thread + + NQ: Arhat's Hakama + + HQ1: Arhat's Hakama +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (88) + + + Earth Crystal + Sheep Leather x2 + Silk Cloth + Velvet Cloth x2 + Silk Thread + + NQ: Wamoura Silk + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (88) + + + Lightning Crystal + Wamoura Cocoon x2 + + NQ: Wamoura Silk x3 + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (88) +Key Item: Spinning + + + Lightning Crystal + Wamoura Cocoon x6 + Spindle + + NQ: Arhat's Gi + + HQ1: Arhat's Gi +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (89) +Sub Craft(s): Smithing - (21) + + + Earth Crystal + Rainbow Cloth + Rainbow Thread + Silk Cloth + Steel Sheet x2 + Velvet Cloth + + NQ: Black Cloak + + HQ1: Demon's Cloak + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (89) + + + Earth Crystal + Gold Thread + Rainbow Cloth + Raxa x3 + Silk Cloth x2 + Silver Thread + + NQ: Corsair's Hat + + HQ1: Corsair's Hat +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (89) + + + Earth Crystal + Marine Hat + Wool Cloth + Wool Thread + + NQ: Wamoura Silk + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (89) + + + Lightning Crystal + Wamoura Hair x2 + + NQ: Wamoura Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (90) + + + Earth Crystal + Wamoura Silk x3 + + NQ: War Shinobi Gi + + HQ1: War Shinobi Gi +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (90) +Sub Craft(s): Smithing - (60) + + + Earth Crystal + Darksteel Chain x2 + Darksteel Sheet x2 + Rainbow Thread + Raxa x3 + + NQ: Bishop's Robe + + HQ1: Bishop's Robe +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (90) + + + Earth Crystal + Cotton Thread + Linen Cloth + Priest's Robe + + NQ: Rainbow Obi + + HQ1: Prism Obi + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (90) + + + Earth Crystal + Gold Thread + Rainbow Thread x4 + Silver Thread + + NQ: Rainbow Obi + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (90) + + + Earth Crystal + Clothcraft Kit 90 + + +Veteran (91-100) +Synthesis Information +Yield Requirements Ingredients + + NQ: Rasetsu Jinpachi + + HQ1: Rasetsu Jinpachi +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (91) +Sub Craft(s): Smithing - (42), Leathercraft - (41) + + + Wind Crystal + Darksteel Chain + Darksteel Sheet + Raxa + Tiger Leather + + NQ: Siren's Macrame + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (91) + + + Earth Crystal + Gold Thread x2 + Rainbow Thread x2 + Siren's Hair x2 + + NQ: Sha'ir Turban + + HQ1: Sheikh Turban + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (91) +Sub Craft(s): Goldsmithing - (51) + + + Earth Crystal + Gold Thread + Hippogryph Feather + Pigeon's Blood Ruby + Velvet Cloth x3 + + NQ: Yasha Sune-Ate + + HQ1: Yasha Sune-Ate +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (92) +Sub Craft(s): Smithing - (44), Leathercraft - (41) + + + Wind Crystal + Darksteel Sheet + Kejusu Satin + Silk Thread + Tiger Leather x2 + + NQ: Ebon Mitts + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (92) +Sub Craft(s): Goldsmithing - (54) + + + Earth Crystal + Scintillant Ingot + Gargouille Shank + Ruszor Leather + Cambric x2 + + NQ: Errant Hat + + HQ1: Mahatma Hat + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (92) +Sub Craft(s): Leathercraft - (34), Goldsmithing - (21) + + + Earth Crystal + Pearl + Rainbow Thread + Silk Cloth + Velvet Cloth x2 + Ram Leather x2 + + NQ: Rasetsu Sune-Ate + + HQ1: Rasetsu Sune-Ate +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (92) +Sub Craft(s): Leathercraft - (43), Smithing - (43) + + + Wind Crystal + Darksteel Sheet + Raxa + Silk Thread + Tiger Leather x2 + + NQ: Cashmere Thread + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (92) + + + Lightning Crystal + Cashmere Wool x2 + + NQ: Rook Banner + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (92) +Sub Craft(s): Goldsmithing - (51), Leathercraft - (31) + + + Earth Crystal + Dogwood Lumber + Gold Ingot + Gold Thread x2 + Silk Cloth + Rainbow Cloth + Pigeon's Blood Ruby + Siren's Macrame + + NQ: Bewitched Mitts + + HQ1:Voodoo Mitts + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (92) + + + Earth Crystal + Cursed Mitts -1 + Eschite Ore + + NQ: Vexed Cuffs + + HQ1:Jinxed Cuffs + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (92) + + + Earth Crystal + Hexed Cuffs -1 + Eschite Ore + + NQ: Giant Bird Fletchings x6 + + HQ1: Giant Bird Fletchings x8 + HQ2: Giant Bird Fletchings x10 + HQ3: Giant Bird Fletchings x12 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (93) + + + Wind Crystal + Giant Bird Plume x2 + + NQ: Giant Bird Fletchings x18 + + HQ1: Giant Bird Fletchings x24 + HQ2: Giant Bird Fletchings x30 + HQ3: Giant Bird Fletchings x36 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (93) +Key Item: Fletching + + + Wind Crystal + Giant Bird Plume x6 + Zephyr Thread + + NQ: Sha'ir Seraweels + + HQ1: Sheikh Seraweels + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (93) +Sub Craft(s): Leathercraft - (51) + + + Earth Crystal + Gold Thread + Tiger Leather + Taffeta Cloth + Velvet Cloth x3 + + NQ: Hachiman Hakama + + HQ1: Hachiman Hakama +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (93) +Sub Craft(s): Smithing - (48) + + + Earth Crystal + Darksteel Chain x2 + Gold Thread + Kejusu Satin + Scarlet Linen + Velvet Cloth + + NQ: Cursed Hat + + HQ1: Cursed Hat -1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (93) +Sub Craft(s): Goldsmithing - (50), Leathercraft - (50) + + + Earth Crystal + Velvet Cloth x2 + Tiger Leather + Marid Leather + Imperial Silk Cloth + Nethereye Chain + Platinum Silk + + NQ: Ebon Clogs + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (93) +Sub Craft(s): Leathercraft - (60) + + + Earth Crystal + Grass Thread + Tiger Leather x2 + Molybdenum Ingot + Cambric x2 + + NQ: Bewitched Slacks + + HQ1:Voodoo Slacks + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (93) + + + Earth Crystal + Cursed Slacks -1 + Eschite Ore + + NQ: Vexed Tights + + HQ1:Jinxed Tights + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (93) + + + Earth Crystal + Hexed Tights -1 + Eschite Ore + + NQ: Vexed Kecks + + HQ1:Jinxed Kecks + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (93) + + + Earth Crystal + Hexed Kecks -1 + Eschite Ore + + NQ: Errant Slops + + HQ1: Mahatma Slops + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (94) +Sub Craft(s): Leathercraft - (26) + + + Earth Crystal + Rainbow Thread + Ram Leather + Silk Cloth x2 + Velvet Cloth x2 + + NQ: Rainbow Cape + + HQ1: Prism Cape + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (94) + + + Earth Crystal + Rainbow Cloth x2 + Silk Thread + + NQ: Roshi Jinpachi + + HQ1: Roshi Jinpachi +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (94) + + + Earth Crystal + Arhat's Jinpachi + Rainbow Thread + + NQ: Yasha Tekko + + HQ1: Yasha Tekko +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (94) +Sub Craft(s): Leathercraft - (41), Smithing - (41) + + + Earth Crystal + Darksteel Sheet x2 + Darksteel Chain + Kejusu Satin + Linen Thread + Tiger Leather + + NQ: Vexed Mitra + + HQ1:Jinxed Mitra + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (94) + + + Earth Crystal + Hexed Mitra -1 + Eschite Ore + + NQ: Vexed Bonnet + + HQ1:Jinxed Bonnet + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (94) + + + Earth Crystal + Hexed Bonnet -1 + Eschite Ore + + NQ: Rasetsu Tekko + + HQ1: Rasetsu Tekko +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (95) +Sub Craft(s): Smithing - (41), Leathercraft - (41) + + + Earth Crystal + Darksteel Sheet x2 + Iron Chain + Linen Thread + Raxa + Tiger Leather + + NQ: Opaline Dress + + HQ1: Ceremonial Dress + + LightCrystal-Icon.gif + +Main Craft: Clothcraft - (95) + + + Light Crystal + Rainbow Cloth + Rainbow Thread + Silk Cloth x3 + Twinthread x2 + Velvet Cloth + + NQ: Tarutaru Sash + + HQ1: Star Sash + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (95) + + + Earth Crystal + Gold Thread + Manticore Hair x2 + Rainbow Thread + Silver Thread + Wool Thread + + NQ: Elite Beret + + HQ1: Elite Beret +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (95) + + + Earth Crystal + Phoenix Feather + War Beret + + NQ: Cashmere Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (95) + + + Earth Crystal + Cashmere Thread x3 + + NQ: Cursed Trews + + HQ1: Cursed Trews -1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (95) +Sub Craft(s): Goldsmithing - (50), Leathercraft - (50) + + + Earth Crystal + Velvet Cloth x2 + Marid Leather + Imperial Silk Cloth x2 + Nethercant Chain + Platinum Silk + + NQ: Ebon Slops + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (95) +Sub Craft(s): Smithing - (60), Leathercraft - (50) + + + Earth Crystal + Darksteel Sheet x2 + Scintillant Ingot + Cambric x2 + + NQ: Tulfaire Fletchings x6 + + HQ1: Tulfaire Fletchings x8 + HQ2: Tulfaire Fletchings x10 + HQ3: Tulfaire Fletchings x12 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (95) + + + Wind Crystal + Tulfaire Feather x2 + + NQ: Tulfaire Fletchings x18 + + HQ1: Tulfaire Fletchings x24 + HQ2: Tulfaire Fletchings x30 + HQ3: Tulfaire Fletchings x36 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (95) +Key Item: Fletching + + + Wind Crystal + Tulfaire Feather x6 + Zephyr Thread + + NQ: Bewitched Dalmatica + + HQ1:Voodoo Dalmatica + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (95) + + + Earth Crystal + Cursed Dalmatica -1 + Eschite Ore + + NQ: Vexed Bliaut + + HQ1:Jinxed Bliaut + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (95) + + + Earth Crystal + Hexed Bliaut -1 + Eschite Ore + + NQ: Tarutaru Sash + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (95) + + + Earth Crystal + Clothcraft Kit 95 + + NQ: Errant Houppelande + + HQ1: Mahatma Houppelande + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (96) +Sub Craft(s): Goldsmithing - (50), Leathercraft - (30) + + + Earth Crystal + Gold Chain + Rainbow Cloth x2 + Rainbow Thread + Ram Leather + Silk Cloth x2 + Velvet Cloth + + NQ: Cursed Mitts + + HQ1: Cursed Mitts -1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (96) + + + Earth Crystal + Gold Thread + Rainbow Cloth + Saruta Cotton + Siren's Hair + Wool Cloth + + NQ: Blessed Mitts + + HQ1: Blessed Mitts +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (96) + + + Earth Crystal + Galateia + Gold Thread x2 + Saruta Cotton + Velvet Cloth + + NQ: Yasha Hakama + + HQ1: Yasha Hakama +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (96) +Sub Craft(s): Smithing - (41), Leathercraft - (35) + + + Earth Crystal + Darksteel Sheet + Silk Thread + Kejusu Satin + Velvet Cloth x2 + Sheep Leather + Kejusu Satin + Tiger Leather + + NQ: Aumoniere + + HQ1: Aumoniere +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (96) + + + Earth Crystal + Rainbow Thread + Amaryllis + Ensanguined Cloth + Scarlet Ribbon + + NQ: Akaso Thread + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (96) + + + Lightning Crystal + Akaso x2 + + NQ: Akaso Thread x3 + + LightningCrystal-Icon.gif + +Main Craft: Clothcraft - (96) +Key Item: Spinning + + + Lightning Crystal + Akaso x6 + Spindle + + NQ: Rasetsu Hakama + + HQ1: Rasetsu Hakama +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (97) +Sub Craft(s): Smithing - (41), Leathercraft - (35) + + + Earth Crystal + Darksteel Sheet + Raxa + Sheep Leather + Silk Thread + Tiger Leather + Velvet Cloth x2 + + NQ: Cursed Slacks + + HQ1: Cursed Slacks -1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (97) + + + Earth Crystal + Gold Thread + Rainbow Cloth + Siren's Macrame + Velvet Cloth x2 + + NQ: Yasha Samue + + HQ1: Yasha Samue +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (97) +Sub Craft(s): Smithing - (51), Leathercraft - (46) + + + Earth Crystal + Darksteel Sheet + Kejusu Satin x2 + Rainbow Thread + Steel Sheet + Tiger Leather x2 + Velvet Cloth + + NQ: Blessed Trousers + + HQ1: Blessed Trousers +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (97) + + + Earth Crystal + Galateia + Gold Thread x2 + Rainbow Cloth + Velvet Cloth + + NQ: Cursed Coat + + HQ1: Cursed Coat -1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (97) +Sub Craft(s): Goldsmithing - (51), Leathercraft - (51) + + + Earth Crystal + Velvet Cloth x3 + Marid Leather + Imperial Silk Cloth x2 + Netherfield Chain + Platinum Silk + + NQ: Ebon Beret + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (97) +Sub Craft(s): Leathercraft - (60) + + + Earth Crystal + Scintillant Ingot + Ruszor Leather + Cambric x2 + + NQ: Akaso Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (97) + + + Earth Crystal + Akaso Thread x3 + + NQ: Errant Cuffs + + HQ1: Mahatma Cuffs + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (98) +Sub Craft(s): Goldsmithing - (24), Leathercraft - (26) + + + Earth Crystal + Gold Thread + Rainbow Cloth + Sheep Leather + Silk Cloth + Turquoise x2 + + NQ: Dance Shoes + + HQ1: Dance Shoes +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (98) + + + Earth Crystal + Moccasins + Rainbow Cloth + Rainbow Thread + + NQ: Foulard + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (98) + + + Earth Crystal + Silk Thread x3 + Arachne Thread + Rainbow Thread x2 + + NQ: Wyrdweave + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (98) + + + Earth Crystal + Wyrdstrand x3 + + NQ: Rasetsu Samue + + HQ1: Rasetsu Samue +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (99) +Sub Craft(s): Smithing - (52), Leathercraft - (48) + + + Earth Crystal + Darksteel Sheet + Rainbow Thread + Raxa x2 + Steel Sheet + Tiger Leather x2 + Velvet Cloth + + NQ: Al Zahbi Sash + + HQ1: Moon Sash + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (99) + + + Earth Crystal + Gold Thread + Karakul Thread + Marid Hair x2 + Rainbow Thread + Wamoura Silk + + NQ: Cursed Cuffs + + HQ1: Cursed Cuffs -1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (99) +Sub Craft(s): Goldsmithing - (54), Leathercraft - (54) + + + Earth Crystal + Angelstone x2 + Velvet Cloth + Karakul Leather + Imperial Silk Cloth + Netherspirit Chain + Platinum Silk + + NQ: Revealer's Mitts + + HQ1:Revealer's Mitts +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (99) +Sub Craft(s): Leathercraft - (??) + + + Earth Crystal + Rainbow Thread + Ancestral Cloth x2 + Prickly Pitriv's Thread + Warblade Beak's Hide + + NQ: Cursed Dalmatica + + HQ1: Cursed Dalmatica -1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (100) +Sub Craft(s): Leathercraft (60) + + + Earth Crystal + Behemoth Leather + Gold Chain + Gold Thread + Rainbow Cloth + Ram Leather + Siren's Macrame + Velvet Cloth x2 + + NQ: Blessed Bliaut + + HQ1: Blessed Bliaut +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (100) + + + Earth Crystal + Galateia x2 + Gold Thread x2 + Rainbow Cloth + Silver Thread + Velvet Cloth x2 + + NQ: Kyudogi + + HQ1: Kyudogi +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (100) +Sub Craft(s): Goldsmithing - (60), Leathercraft - (60) + + + Earth Crystal + Cerberus Leather + Imperial Silk Cloth + Kejusu Satin + Rainbow Thread + Sailcloth + Scintillant Ingot + Sheep Chammy + Yoichi's Sash + + NQ: Argent Coat + + HQ1: Platino Coat + + LightCrystal-Icon.gif + +Main Craft: Clothcraft - (100) +Sub Craft(s): Alchemy - (41), Leathercraft - (20) + + + Light Crystal + Silk Cloth + Silver Thread + Platinum Silk Thread + Galateia + Eltoro Leather + Silver Chain + Baking Soda + + NQ: Ebon Frock + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (100) +Sub Craft(s): Goldsmithing - (60), Leathercraft - (60) + + + Earth Crystal + Silver Ingot + Silver Chain + Behemoth Leather + Taffeta Cloth + Scintillant Ingot + Ruszor Leather + Cambric x2 + + NQ: Swith Cape + + HQ1:Swith Cape +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (100) + + + Earth Crystal + Sparkstrand + Wyrdweave x2 + + NQ: Revealer's Pants + + HQ1:Revealer's Pants +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (100) +Sub Craft(s): Leathercraft - (??) + + + Earth Crystal + Linen Cloth + Ancestral Cloth x2 + Prickly Pitriv's Thread + Warblade Beak's Hide + + NQ: Porxie Fletchings x6 + + HQ1:Porxie Fletchings x8 + HQ2:Porxie Fletchings x10 + HQ3:Porxie Fletchings x12 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (100) + + + Wind Crystal + Porxie Wing x2 + + NQ: Porxie Fletchings x18 + + HQ1:Porxie Fletchings x24 + HQ2:Porxie Fletchings x30 + HQ3:Porxie Fletchings x36 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (100) +Key Item: Fletching + + + Wind Crystal + Porxie Wing x6 + Zephyr Thread + + +Expert (101-110) +Synthesis Information +Yield Requirements Ingredients + + NQ: Errant Cape + + HQ1: Mahatma Cape + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (101) + + + Earth Crystal + Peace Cape + Rainbow Thread + Raxa + + NQ: Revealer's Tunic + + HQ1:Revealer's Tunic +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (101) +Sub Craft(s): Leathercraft - (59~63) Verification Needed + + + Earth Crystal + Linen Cloth x2 + Ancestral Cloth x3 + Prickly Pitriv's Thread + Warblade Beak's Hide + + NQ: Chelona Trousers + + HQ1: Chelona Trousers +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (102) + + + Earth Crystal + Wool Thread + Wolf Felt x2 + Imperial Silk Cloth + Platinum Silk Thread + Amphiptere Leather + + NQ: Spolia Chapeau + + HQ1:Opima Chapeau + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (103) +Sub Craft(s): Leathercraft - (50) + + + Earth Crystal + Beeswax + Magical Cotton Cloth + Sheep Chammy + Wyrdweave x3 + + NQ: Hexed Cuffs + + HQ1: Hexed Cuffs -1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (103) +Sub Craft(s): Leathercraft - (52), Goldsmithing - (30) + + + Earth Crystal + Red Grass Thread + Lynx Leather + Muculent Ingot + Serica Cloth + + NQ: Spolia Trews + + HQ1:Opima Trews + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (103) +Sub Craft(s): Leathercraft - (50) + + + Earth Crystal + Magical Cotton Cloth x2 + Sheep Chammy + Wyrdstrand + Wyrdweave + + NQ: Spolia Cuffs + + HQ1:Opima Cuffs + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (103) +Sub Craft(s): Leathercraft - (50) + + + Earth Crystal + Magical Cotton Cloth + Sheep Chammy + Wyrdweave x3 + + NQ: Chelona Gloves + + HQ1: Chelona Gloves +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (103) + + + Earth Crystal + Silver Ingot + Karakul Cloth x2 + Wamoura Silk + Platinum Silk Thread + Amphiptere Leather + + NQ: Haruspex Cuffs + + HQ1: Haruspex Cuffs +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (103) + + + Earth Crystal + Gold Thread + Silk Cloth + Star Sapphire x2 + Akaso Cloth + Raaz Leather + + NQ: Chelona Hat + + HQ1: Chelona Hat +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (104) + + + Earth Crystal + Carnelian + Beetle Blood + Silver Brocade + Wolf Felt + Wamoura Silk + Platinum Silk Thread + Amphiptere Leather + Wyrdstrand + + NQ: Areion Boots + + HQ1:Areion Boots +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (105) + + + Earth Crystal + Serica Cloth + Strider Boots + + NQ: Spolia Saio + + HQ1:Opima Saio + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (105) +Sub Craft(s): Leathercraft - (50) + + + Earth Crystal + Brass Chain + Beeswax + Buffalo Leather + Magical Cotton Cloth + Sheep Chammy + Wyrdstrand + Wyrdweave x2 + + NQ: Hexed Bonnet + + HQ1: Hexed Bonnet -1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (105) +Sub Craft(s): Goldsmithing - (49) + + + Earth Crystal + Velvet Cloth + Malboro Fiber + Muculent Ingot + Penelope's Cloth + + NQ: Sancus Sachet + + HQ1:Sancus Sachet +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (105) + + + Earth Crystal + Siren's Macrame + Sif's Macrame x2 + Vulcanite Ore + Arasy Sachet + + NQ: Sif's Macrame + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (105) + + + Earth Crystal + Rainbow Thread x2 + Gold Thread x2 + Siren's Hair + Sif's Lock + + NQ: Khoma Cloth + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (105) + + + Earth Crystal + Khoma Thread x3 + + NQ: Chelona Blazer + + HQ1: Chelona Blazer +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (106) + + + Earth Crystal + Carnelian + Karakul Skin + Beetle Blood + Silver Brocade + Karakul Cloth + Wamoura Silk + Amphiptere Leather + Wyrdstrand + + NQ: Haruspex Hat + + HQ1: Haruspex Hat +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (106) + + + Earth Crystal + Gold Sheet + Silver Thread + Gold Thread + Raxa + Akaso Cloth + Raaz Leather + + NQ: Mixed Fletchings x6 + + HQ1:Mixed Fletchings x8 + HQ2:Mixed Fletchings x10 + HQ3:Mixed Fletchings x12 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (106) + + + Wind Crystal + Porxie Wing + Chapuli Wing + + NQ: Mixed Fletchings x18 + + HQ1:Mixed Fletchings x24 + HQ2:Mixed Fletchings x30 + HQ3:Mixed Fletchings x36 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (106) +Key Item: Fletching + + + Wind Crystal + Porxie Wing x3 + Chapuli Wing x3 + Zephyr Thread + + NQ: Hexed Tights + + HQ1: Hexed Tights -1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (107) +Sub Craft(s): Leathercraft - (60) + + + Earth Crystal + Silver Thread x2 + Red Grass Thread + Shagreen + Ethereal Squama + Serica Cloth + + NQ: Haruspex Slops + + HQ1: Haruspex Slops +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (107) + + + Earth Crystal + Gold Sheet + Gold Thread + Raxa x2 + Akaso Cloth + Raaz Leather + + NQ: Seshaw Cape + + HQ1: Seshaw Cape +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (107) +Sub Craft(s): Leathercraft - (??) + + + Earth Crystal + Silk Thread + Sif's Macrame + Ancestral Cloth + Cehuetzi Pelt + + NQ: Hexed Mitra + + HQ1: Hexed Mitra -1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (108) +Sub Craft(s): Leathercraft - (50), Goldsmithing - (30) + + + Earth Crystal + Gold Thread + Kukulkan's Skin + Muculent Ingot + Serica Cloth + + NQ: Khoma Belt + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (108) + + + Earth Crystal + Thought Crystal + Hope Crystal + Fulfillment Crystal + Khoma Thread x4 + + NQ: Hexed Kecks + + HQ1: Hexed Kecks -1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (109) +Sub Craft(s): Leathercraft - (60) + + + Earth Crystal + Gold Thread + Velvet Cloth + Malboro Fiber + Taffeta Cloth + Penelope's Cloth + Staghorn Coral + Sealord Leather + + NQ: Haruspex Coat + + HQ1: Haruspex Coat +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (109) + + + Earth Crystal + Gold Chain + Gold Thread + Velvet Cloth + Silk Cloth x3 + Akaso Cloth + Raaz Leather + + NQ: Hexed Bliaut + + HQ1: Hexed Bliaut -1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (110) +Sub Craft(s): Leathercraft - (60), Goldsmithing - (30) + + + Earth Crystal + Silver Thread + Gold Thread + Velvet Cloth + Kukulkan's Skin + Muculent Ingot + Serica Cloth x2 + + NQ: Sorcerer's Stole + + HQ1: Sorcerer's Stole +1 + HQ2: Sorcerer's Stole +2 + + LightCrystal-Icon.gif + +Main Craft: Clothcraft - (110) +Sub Craft(s): Woodworking - (55) + + + Light Crystal + Yggdreant Bole + Dark Matter + Cypress Log + Iolite Crystal + Moldy Stole + + NQ: Mirage Stole + + HQ1: Mirage Stole +1 + HQ2: Mirage Stole +2 + + LightCrystal-Icon.gif + +Main Craft: Clothcraft - (110) +Sub Craft(s): Woodworking - (55) + + + Light Crystal + Yggdreant Bole + Dark Matter + Cypress Log + Lapis Lazuli Crystal + Moldy Stole + + NQ: Argute Stole + + HQ1: Argute Stole +1 + HQ2: Argute Stole +2 + + LightCrystal-Icon.gif + +Main Craft: Clothcraft - (110) +Sub Craft(s): Woodworking - (55) + + + Light Crystal + Yggdreant Bole + Dark Matter + Cypress Log + Moonstone Crystal + Moldy Stole + + +Authority (111-120) +Synthesis Information +Yield Requirements Ingredients + + NQ: Ogapepo Cape + + HQ1: Ogapepo Cape +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (111) +Sub Craft(s): Leathercraft - (??) + + + Earth Crystal + Silk Thread + Sheep Chammy x2 + Bztavian Wing x2 + + NQ: Cleric's Wand + + HQ1: Piety Wand + HQ2: Asclepius + + LightCrystal-Icon.gif + +Main Craft: Clothcraft - (111~114) +Sub Craft(s): Goldsmithing - (Information Needed) Woodworking - (Information Needed) +Key Item: Weaver's aurum tome + + + Light Crystal + Dark Matter + Tartarian Chain + Cypress Log + Moldy Club + Ratnaraj + Relic Adaman x2 + Seedstone Crystal + + NQ: Bagua Wand + + HQ1: Sifang Wand + HQ2: Bhima + + LightCrystal-Icon.gif + +Main Craft: Clothcraft - (111~114) +Sub Craft(s): Goldsmithing - (Information Needed) Woodworking - (Information Needed) +Key Item: Weaver's aurum tome + + + Light Crystal + Dark Matter + Tartarian Chain + Cypress Log + Moldy Club + Ratnaraj + Relic Adaman x2 + Emerald Crystal + + NQ: Bewitched Mitts + + HQ1:Voodoo Mitts + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (112) +Sub Craft(s): Goldsmithing - (70) + + + Earth Crystal + Cursed Mitts + Hepatizon Ingot + Sif's Macrame + Eschite Ore + + NQ: Vexed Cuffs + + HQ1:Jinxed Cuffs + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (112) +Sub Craft(s): Goldsmithing - (70) + + + Earth Crystal + Hexed Cuffs + Bztavian Wing + Hepatizon Ingot + Eschite Ore + + NQ: Yetshila + + HQ1: Yetshila +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (113) +Sub Craft(s): Bonecraft - (60) + + + Wind Crystal + Animal Glue + Waktza Rostrum + Waktza Crest + + NQ: Bewitched Slacks + + HQ1:Voodoo Slacks + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (113) +Sub Craft(s): Goldsmithing - (70) + + + Earth Crystal + Cursed Slacks + Hepatizon Ingot + Eschite Ore + Sif's Macrame + + NQ: Vexed Tights + + HQ1:Jinxed Tights + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (113) +Sub Craft(s): Alchemy - (70) + + + Earth Crystal + Hexed Tights + Bztavian Wing + Lumber Jill's Spittle + Eschite Ore + + NQ: Vexed Kecks + + HQ1:Jinxed Kecks + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (113) +Sub Craft(s): Leathercraft - (70) + + + Earth Crystal + Hexed Kecks + Waktza Crest + Warblade Beak's Hide + Eschite Ore + + NQ: Vexed Mitra + + HQ1:Jinxed Mitra + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (114) +Sub Craft(s): Leathercraft - (70) + + + Earth Crystal + Hexed Mitra + Bztavian Wing + Intuila's Hide + Eschite Ore + + NQ: Vexed Bonnet + + HQ1:Jinxed Bonnet + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (114) +Sub Craft(s): Goldsmithing - (70) + + + Earth Crystal + Hexed Bonnet + Waktza Crest + Hepatizon Ingot + Eschite Ore + + NQ: Foppish Tunica + + HQ1: Foppish Tunica +1 + + WindCrystal-Icon.gif + +Main Craft: Clothcraft - (115) +Sub Craft(s): Goldsmithing - (70) + + + Wind Crystal + Gold Ingot + Gold Thread + Silk Cloth + Celaeno's Cloth + Penelope's Cloth + Defiant Scarf x2 + + NQ: Bewitched Dalmatica + + HQ1:Voodoo Dalmatica + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (115) +Sub Craft(s): Goldsmithing - (70) + + + Earth Crystal + Cursed Dalmatica + Hepatizon Ingot + Sif's Macrame + Eschite Ore + + NQ: Vexed Bliaut + + HQ1:Jinxed Bliaut + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (115) +Sub Craft(s): Leathercraft - (70) + + + Earth Crystal + Hexed Bliaut + Bztavian Wing + Intuila's Hide + Eschite Ore + + NQ: Moonbow Belt + + HQ1: Moonbow Belt +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (115~120) +Sub Craft(s): Smithing - (??) Leathercraft - (??) + + + Earth Crystal + Moonbow Steel + Moonbow Cloth + Moonbow Leather + Khoma Belt + + NQ: Moonbeam Cape + + HQ1: Moonlight Cape + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (115~120) +Sub Craft(s): Leathercraft - (??) + + + Earth Crystal + Moonbow Cloth + Moonlight Coral + S. Faulpie Leather + + NQ: Skrymir Cord + + HQ1: Skrymir Cord +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (115~120) +Sub Craft(s): Alchemy - (?) + + + Earth Crystal + Silver Thread + Gold Thread + Khoma Thread x4 + Wyrm Ash + + NQ: Baayami Sabots + + HQ1:Baayami Sabots +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (115~120) +Sub Craft(s): Leathercraft - (??) +Key Item: Weaver's argentum tome + + + Earth Crystal + Darksteel Sheet + Waktza Rostrum + Plovid Flesh + Khoma Thread x3 + + NQ: Baayami Cuffs + + HQ1:Baayami Cuffs +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (115~120) +Sub Craft(s): Leathercraft - (??) +Key Item: Weaver's argentum tome + + + Earth Crystal + Darksteel Sheet x2 + Waktza Rostrum + Plovid Flesh + Khoma Thread x3 + + NQ: Baayami Hat + + HQ1:Baayami Hat +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (115~120) +Sub Craft(s): Leathercraft - (??) +Key Item: Weaver's argentum tome + + + Earth Crystal + Darksteel Sheet + Darksteel Chain + Waktza Rostrum + Plovid Flesh + Khoma Thread x3 + + NQ: Baayami Slops + + HQ1:Baayami Slops +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (115~120) +Sub Craft(s): Leathercraft - (??) +Key Item: Weaver's argentum tome + + + Earth Crystal + Darksteel Sheet + Darksteel Chain + Waktza Rostrum + Plovid Flesh + Khoma Thread + Khoma Cloth + + NQ: Baayami Robe + + HQ1:Baayami Robe +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (115~120) +Sub Craft(s): Leathercraft - (??) +Key Item: Weaver's argentum tome + + + Earth Crystal + Darksteel Sheet + Darksteel Chain + Waktza Rostrum + Plovid Flesh x2 + Khoma Thread + Khoma Cloth + + NQ: Klouskap Sash + + HQ1:Klouskap Sash +1 + + EarthCrystal-Icon.gif + +Main Craft: Clothcraft - (118) + + + Earth Crystal + Cashmere Wool + Defiant Scarf + Penelope's Cloth \ No newline at end of file diff --git a/datasets/Clothcraft_v2.csv b/datasets/Clothcraft_v2.csv new file mode 100644 index 0000000..7f4e9d1 --- /dev/null +++ b/datasets/Clothcraft_v2.csv @@ -0,0 +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]" diff --git a/datasets/Cooking.txt b/datasets/Cooking.txt new file mode 100644 index 0000000..aeac9d4 --- /dev/null +++ b/datasets/Cooking.txt @@ -0,0 +1,8446 @@ +Cooking Crafted Items +Amateur (1-10) +Synthesis Information +Yield Requirements Ingredients + + NQ: Worm Paste x2 + + HQ1:Worm Paste x 4 + HQ2:Worm Paste x 6 + HQ3:Worm Paste x 8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (1) + + + Water Crystal + Cupid Worm x 2 + La Theine Millet + Lizard Egg + Distilled Water + + NQ: Yogurt x4 + + HQ1:Yogurt x6 + HQ2:Yogurt x9 + HQ3:Yogurt x12 + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (1) + + + Dark Crystal + Dogwood Log + Selbina Milk + + NQ: Foulweather Frog + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (2) + + + Water Crystal + Caedarva Frog + + NQ: Foulweather Frog + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (2) + + + Water Crystal + Elshimo Frog + + NQ: Roasted Corn + + HQ1:Grilled Corn + + FireCrystal-Icon.gif + +Main Craft: Cooking - (2) + + + Fire Crystal + Millioncorn + + NQ: Dried Berry x3 + + HQ1:Rolsin x3 + + IceCrystal-Icon.gif + +Main Craft: Cooking - (2) + + + Ice Crystal + Rolanberry x3 + + NQ: Carrot Broth x4 + + HQ1:Famous Carrot Broth x2 + HQ2:Famous Carrot Broth x4 + HQ3:Famous Carrot Broth x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (3) + + + Water Crystal + San d'Orian Carrot x4 + + NQ: Peeled Crayfish + + WindCrystal-Icon.gif + +Main Craft: Cooking - (3) + + + Wind Crystal + Crayfish + + NQ: Salted Hare + + FireCrystal-Icon.gif + +Main Craft: Cooking - (3) + + + Fire Crystal + Rock Salt + Hare Meat + + NQ: Sweet Lizard + + FireCrystal-Icon.gif + +Main Craft: Cooking - (3) + + + Fire Crystal + Lizard Tail + Honey + + NQ: Honeyed Egg + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (3) + + + Water Crystal + Honey + Bird Egg + + NQ: Hard-boiled Egg + + HQ1:Soft-boiled Egg + + FireCrystal-Icon.gif + +Main Craft: Cooking - (4) + + + Fire Crystal + Lizard Egg + Distilled Water + + NQ: Pebble Soup + + HQ1:Wisdom Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (5) + + + Fire Crystal + Flint Stone x3 + Distilled Water + + NQ: Pebble Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (5) + + + Fire Crystal + Cooking Kit 5 + + NQ: Grilled Hare + + HQ1:Grilled Black Hare + + FireCrystal-Icon.gif + +Main Craft: Cooking - (6) + + + Fire Crystal + Dried Marjoram + Hare Meat + + NQ: Hard-boiled Egg + + HQ1:Soft-boiled Egg + + FireCrystal-Icon.gif + +Main Craft: Cooking - (6) + + + Fire Crystal + Bird Egg + Distilled Water + + NQ: Herbal Broth x4 + + HQ1: Singing Herbal Broth x2 + HQ2: Singing Herbal Broth x4 + HQ3: Singing Herbal Broth x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (7) + + + Water Crystal + Frost Turnip x2 + Beaugreens x2 + + NQ: Cheese Sandwich + + HQ1:Cheese Sandwich +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (7) + + + Fire Crystal + Crying Mustard + Black Pepper + White Bread + Mithran Tomato + Chalaimbille + Grauberg Lettuce + + NQ: Peeled Lobster + + WindCrystal-Icon.gif + +Main Craft: Cooking - (7) + + + Wind Crystal + Gold Lobster + + NQ: Peeled Lobster + + WindCrystal-Icon.gif + +Main Craft: Cooking - (7) + + + Wind Crystal + Istakoz + + NQ: Salmon Sub + + HQ1: Fulm-long Sub + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (8) + + + Earth Crystal + Crying Mustard + Black Bread + Apple Vinegar + La Theine Cabbage + Smoked Salmon + Mithran Tomato + + NQ: Speed Apple + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (8) + + + Water Crystal + Faerie Apple + Honey + + NQ: Stamina Apple + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (8) + + + Water Crystal + Faerie Apple + Yogurt + + NQ: Shadow Apple + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (8) + + + Water Crystal + Coffee Powder + Faerie Apple + + NQ: Boiled Crayfish + + HQ1: Steamed Crayfish + + FireCrystal-Icon.gif + +Main Craft: Cooking - (9) + + + Fire Crystal + Crayfish + Rock Salt + Distilled Water + + NQ: Pet Food Alpha x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (9) + + + Earth Crystal + Bird Egg + Hare Meat + Horo Flour + Distilled Water + + NQ: Orange Juice + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (10) + + + Water Crystal + Saruta Orange x4 + + NQ: Wormy Broth x4 + + HQ1:Wormy Broth x6 + HQ2:Wormy Broth x8 + HQ3:Wormy Broth x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (10) + + + Water Crystal + Little Worm + Shell Bug + + NQ: Ayran + + IceCrystal-Icon.gif + +Main Craft: Cooking - (10) + + + Ice Crystal + Kazham Peppers + Rock Salt + Distilled Water + Yogurt + + NQ: Orange Juice + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (10) + + + Water Crystal + Cooking Kit 10 + + +Recruit (11-20) +Synthesis Information +Yield Requirements Ingredients + + NQ: Carrion Broth x4 + + HQ1:Cold Carrion Broth x2 + HQ2:Cold Carrion Broth x4 + HQ3:Cold Carrion Broth x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (11) + + + Water Crystal + Gelatin + Hare Meat x2 + Rotten Meat + + NQ: Dried Date + + HQ1:Dried Date +1 + + IceCrystal-Icon.gif + +Main Craft: Cooking - (11) + + + Ice Crystal + Date + + NQ: Herb Paste x2 + + HQ1:Herb Paste x4 + HQ2:Herb Paste x6 + HQ3:Herb Paste x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (11) + + + Water Crystal + Tokopekko Wildgrass x2 + La Theine Millet + Lizard Egg + Distilled Water + + NQ: Sliced Sardine x2 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (11) + + + Wind Crystal + Bastore Sardine + + NQ: Sliced Sardine x2 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (11) + + + Wind Crystal + Hamsi + + NQ: Sliced Sardine x2 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (11) + + + Wind Crystal + Senroh Sardine + + NQ: Honey x4 + + HQ1:Honey x6 + HQ2:Honey x9 + HQ3:Honey x12 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (12) + + + Wind Crystal + Beehive Chip x4 + + NQ: Dried Marjoram x9 + + HQ1: Dried Marjoram x12 + + IceCrystal-Icon.gif + +Main Craft: Cooking - (13) +Sub Craft(s): Alchemy - (5) + + + Ice Crystal + Fresh Marjoram x8 + + NQ: Sliced Cod x6 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (13) + + + Wind Crystal + Tiger Cod + + NQ: Tortilla x4 + + HQ1:Tortilla Bueno x6 + HQ2:Tortilla Bueno x9 + HQ3:Tortilla Bueno x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (14) + + + Fire Crystal + Olive Oil + San d'Orian Flour + Millioncorn + Rock Salt + + NQ: Army Biscuit x33 + + HQ1:Army Biscuit x33 + HQ2:Army Biscuit x66 + HQ3:Army Biscuit x99 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (14) + + + Fire Crystal + San d'Orian Flour + Rye Flour + Selbina Butter + Rock Salt + Simsim + Honey + Yogurt + + NQ: Bug Broth x4 + + HQ1:Quadav Bug Broth x2 + HQ2:Quadav Bug Broth x4 + HQ3:Quadav Bug Broth x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (15) + + + Water Crystal + Lugworm x2 + Shell Bug x2 + + NQ: Slice of Bluetail x4 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (15) + + + Wind Crystal + Bluetail + + NQ: Saltena x2 + + HQ1:Saltena x4 + HQ2:Saltena x6 + HQ3:Saltena x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (15) + + + Fire Crystal + Popoto + Maple Sugar + Olive Oil + Imperial Flour + Wild Onion + Cockatrice Meat + Bird Egg + Paprika + + NQ: Stuffed Pitaru x2 + + HQ1:Stuffed Pitaru x4 + HQ2:Stuffed Pitaru x6 + HQ3:Stuffed Pitaru x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (15) + + + Fire Crystal + Maple Sugar + Rock Salt + Imperial Flour + Giant Sheep Meat + Mithran Tomato + Distilled Water + Grauberg Lettuce + Paprika + + NQ: Slice of Bluetail x4 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (15) + + + Wind Crystal + Cooking Kit 15 + + NQ: Roast Mushroom + + HQ1: Witch Kabob + + FireCrystal-Icon.gif + +Main Craft: Cooking - (16) + + + Fire Crystal + Danceshroom x2 + Rock Salt + + NQ: Roast Mushroom + + HQ1:Witch Kabob + + FireCrystal-Icon.gif + +Main Craft: Cooking - (16) + + + Fire Crystal + Woozyshroom x2 + Rock Salt + + NQ: Roast Mushroom + + HQ1:Witch Kabob + + FireCrystal-Icon.gif + +Main Craft: Cooking - (16) + + + Fire Crystal + Sleepshroom x2 + Rock Salt + + NQ: Wispy Broth x4 + + HQ1:Wispy Broth x6 + HQ2:Wispy Broth x8 + HQ3:Wispy Broth x12 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (16) + + + Water Crystal + Locust Elutriator + Shell Bug + + NQ: Roast Mutton + + HQ1:Juicy Mutton + + FireCrystal-Icon.gif + +Main Craft: Cooking - (17) + + + Fire Crystal + Dried Marjoram + Giant Sheep Meat + Mhaura Garlic + + NQ: Slice of Carp x2 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (17) + + + Wind Crystal + Moat Carp + + NQ: Slice of Carp x2 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (17) + + + Wind Crystal + Forest Carp + + NQ: Pea Soup + + HQ1:Emerald Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (18) + + + Fire Crystal + Blue Peas x3 + Distilled Water + Dried Marjoram + Wild Onion + + NQ: Lik Kabob + + HQ1:Grilled Lik + + FireCrystal-Icon.gif + +Main Craft: Cooking - (18) + + + Fire Crystal + Lik + Bomb Arm + + NQ: Pet Food Beta x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (19) + + + Earth Crystal + Bird Egg + Distilled Water + Giant Sheep Meat + Horo Flour + + NQ: Roast Carp + + HQ1: Broiled Carp + + FireCrystal-Icon.gif + +Main Craft: Cooking - (19) + + + Fire Crystal + Forest Carp + Rock Salt + + NQ: Roast Carp + + HQ1: Broiled Carp + + FireCrystal-Icon.gif + +Main Craft: Cooking - (19) + + + Fire Crystal + Moat Carp + Rock Salt + + NQ: Pet Food Beta x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (19) + + + Earth Crystal + Apkallu Egg + Distilled Water + Karakul Meat + Horo Flour + + NQ: Apple Juice + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (20) + + + Water Crystal + Faerie Apple x4 + + NQ: Selbina Butter x4 + + HQ1:Selbina Butter x6 + HQ2:Selbina Butter x9 + HQ3:Selbina Butter x12 + + IceCrystal-Icon.gif + +Main Craft: Cooking - (20) + + + Ice Crystal + Selbina Milk + Rock Salt + + NQ: Apple Juice + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (20) + + + Water Crystal + Cooking Kit 20 + + +Initiate (21-30) +Synthesis Information +Yield Requirements Ingredients + + NQ: Roast Pipira + + HQ1:Broiled Pipira + + FireCrystal-Icon.gif + +Main Craft: Cooking - (21) + + + Fire Crystal + Pipira + Rock Salt + + NQ: Soy Milk + + HQ1:Soy Milk x2 + HQ2:Soy Milk x3 + HQ3:Soy Milk x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (21) + + + Fire Crystal + Blue Peas x2 + Distilled Water + + NQ: Vegetable Paste x2 + + HQ1:Vegetable Paste x4 + HQ2:Vegetable Paste x6 + HQ3:Vegetable Paste x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (21) + + + Water Crystal + Gysahl Greens x2 + La Theine Millet + Lizard Egg + Distilled Water + + NQ: Baked Popoto + + HQ1: Pipin' Popoto + + FireCrystal-Icon.gif + +Main Craft: Cooking - (22) + + + Fire Crystal + Popoto + Selbina Butter + + NQ: White Honey x4 + + HQ1:White Honey x6 + HQ2:White Honey x9 + HQ3:White Honey x12 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (22) + + + Wind Crystal + Pephredo Hive Chip x4 + + NQ: Baked Apple + + HQ1:Sweet Baked Apple + + FireCrystal-Icon.gif + +Main Craft: Cooking - (23) + + + Fire Crystal + Cinnamon + Faerie Apple + Maple Sugar + Selbina Butter + + NQ: Goblin Chocolate x33 + + HQ1:Hobgoblin Chocolate x33 + HQ2:Hobgoblin Chocolate x66 + HQ3:Hobgoblin Chocolate x99 + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (23) + + + Dark Crystal + Kukuru Bean x3 + Cobalt Jellyfish + Selbina Milk + Honey + Sunflower Seeds + Wijnruit + + NQ: Peperoncino x2 + + HQ1:Peperoncino x4 + HQ2:Peperoncino +1 x2 + HQ3:Peperoncino +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (23) +Key Item: Noodle Kneading + + + Fire Crystal + Kazham Peppers + Mhaura Garlic + Olive Oil + Rock Salt + Spaghetti + Misareaux Parsley + + NQ: Puls + + HQ1:Delicious Puls + + FireCrystal-Icon.gif + +Main Craft: Cooking - (24) + + + Fire Crystal + Distilled Water + Rye Flour + Horo Flour + Honey + + NQ: Salsa x12 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (24) + + + Water Crystal + Kazham Peppers + Rock Salt + Wild Onion + Mithran Tomato + Gysahl Greens + + NQ: Roast Coffee Beans x2 + + HQ1:Roast Coffee Beans x4 + HQ2:Roast Coffee Beans x6 + HQ3:Roast Coffee Beans x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (25) + + + Fire Crystal + Coffee Beans + + NQ: Roasted Almonds x2 + + HQ1:Roasted Almonds x6 + HQ2:Roasted Almonds x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (25) + + + Fire Crystal + Almond + + NQ: Vegetable Soup + + HQ1:Vegetable Broth + + FireCrystal-Icon.gif + +Main Craft: Cooking - (25) + + + Fire Crystal + Frost Turnip + San d'Orian Carrot + Eggplant + La Theine Cabbage + Bay Leaves + Wild Onion + Rock Salt + Distilled Water + + NQ: Vegetable Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (25) + + + Fire Crystal + Cooking Kit 25 + + NQ: Meat Jerky x2 + + HQ1:Sheep Jerky x2 + + IceCrystal-Icon.gif + +Main Craft: Cooking - (26) + + + Ice Crystal + Giant Sheep Meat + Rock Salt + Dried Marjoram + + NQ: Vegetable Gruel + + HQ1: Medicinal Gruel + + FireCrystal-Icon.gif + +Main Craft: Cooking - (26) + + + Fire Crystal + San d'Orian Flour + Chamomile + Frost Turnip + Rarab Tail + Distilled Water + Beaugreens + + NQ: Boiled Crab + + HQ1:Steamed Crab + + FireCrystal-Icon.gif + +Main Craft: Cooking - (27) + + + Fire Crystal + Bay Leaves + Rock Salt + Land Crab Meat + Distilled Water + + NQ: Zoni + + HQ1:Zesty Zoni + + FireCrystal-Icon.gif + +Main Craft: Cooking - (27) + + + Fire Crystal + Rock Salt + Sticky Rice + Tokopekko Wildgrass + San d'Orian Carrot + Tiger Cod + Distilled Water + Lakerda + Ziz Meat + + NQ: Konjak x2 + + HQ1:Konjak x4 + HQ2:Konjak x6 + HQ3:Konjak x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (27) + + + Fire Crystal + Seashell + Distilled Water + Konjak Tuber + + NQ: Meat Broth x4 + + HQ1:Warm Meat Broth x2 + HQ2:Warm Meat Broth x4 + HQ3:Warm Meat Broth x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (28) + + + Water Crystal + Gelatin + Dhalmel Meat + Giant Sheep Meat + Hare Meat + + NQ: Pomodoro Sauce x4 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (28) + + + Water Crystal + Bay Leaves + Black Pepper + Olive Oil + Rock Salt + Holy Basil + Wild Onion + Mithran Tomato + Misareaux Parsley + + NQ: Vegetable Gruel + + HQ1:Medicinal Gruel + + FireCrystal-Icon.gif + +Main Craft: Cooking - (28) + + + Fire Crystal + Chamomile + Frost Turnip + Tarutaru Rice + Batagreens + Rarab Tail + Distilled Water + + NQ: Dhalmel Steak + + HQ1:Wild Steak + + FireCrystal-Icon.gif + +Main Craft: Cooking - (29) + + + Fire Crystal + Black Pepper + Olive Oil + Dhalmel Meat + + NQ: Insect Ball x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (29) + + + Earth Crystal + Millioncorn + Little Worm + Distilled Water + + NQ: Pet Food Gamma x6 + + HQ1:Pet Food Gamma x8 + HQ2:Pet Food Gamma x10 + HQ3:Pet Food Gamma x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (29) + + + Earth Crystal + Dhalmel Meat + Horo Flour + Distilled Water + Bird Egg + + NQ: Smoked Salmon x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (29) + + + Fire Crystal + Walnut Log + Cheval Salmon + Rock Salt + + NQ: Pineapple Juice + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (30) + + + Water Crystal + Kazham Pineapple x2 + + NQ: Elshena x2 + + HQ1:Elshena x4 + HQ2:Elshena x6 + HQ3:Elshena x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (30) + + + Fire Crystal + Selbina Butter + Maple Sugar + Olive Oil + Imperial Flour + Woozyshroom + Scream Fungus + Puffball + Bird Egg + + NQ: Poultry Pitaru x2 + + HQ1:Poultry Pitaru x4 + HQ2:Poultry Pitaru x6 + HQ3:Poultry Pitaru x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (30) + + + Fire Crystal + Maple Sugar + Olive Oil + Rock Salt + Imperial Flour + Cockatrice Meat + Distilled Water + Apkallu Egg + Grauberg Lettuce + + NQ: Anchovy x4 + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (30) + + + Dark Crystal + Bay Leaves + Olive Oil + Rock Salt + Icefish x4 + + NQ: Anchovy x4 + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (30) + + + Dark Crystal + Bay Leaves + Olive Oil + Rock Salt + Sandfish x4 + + NQ: Pineapple Juice + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (30) + + + Water Crystal + Cooking Kit 30 + + NQ: Yayla Corbasi + + HQ1:Yayla Corbasi +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (30) + + + Fire Crystal + Selbina Butter + Rock Salt + Apple Mint + Imperial Rice + Imperial Flour + Distilled Water + Apkallu Egg + Yogurt + + +Novice (31-40) +Synthesis Information +Yield Requirements Ingredients + + NQ: Salmon Eggs x3 + + HQ1:Salmon Eggs x6 + HQ2:Salmon Eggs x9 + HQ3:Salmon Eggs x12 + + LightningCrystal-Icon.gif + +Main Craft: Cooking - (31) + + + Lightning Crystal + Cheval Salmon + + NQ: Carrot Paste x2 + + HQ1:Carrot Paste x4 + HQ2:Carrot Paste x6 + HQ3:Carrot Paste x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (31) + + + Water Crystal + Vomp Carrot x2 + La Theine Millet + Lizard Egg + Distilled Water + + NQ: Rice Ball x4 + + HQ1:Rogue Rice Ball x2 + HQ2:Rogue Rice Ball x3 + HQ3:Rogue Rice Ball x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (31) + + + Fire Crystal + Tarutaru Rice + Pamtam Kelp + Rock Salt + Distilled Water + + NQ: Sardine Ball x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (31) + + + Earth Crystal + Bastore Sardine + Horo Flour + Distilled Water + + NQ: Sardine Ball x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (31) + + + Earth Crystal + Hamsi + Horo Flour + Distilled Water + + NQ: Sardine Ball x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (31) + + + Earth Crystal + Senroh Sardine + Horo Flour + Distilled Water + + NQ: Acorn Cookie x33 + + HQ1:Wild Cookie x33 + HQ2:Wild Cookie x33 + HQ3:Wild Cookie x99 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (32) + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Acorn x4 + Honey + Crawler Egg + + NQ: Roast Trout + + HQ1:Broiled Trout + + FireCrystal-Icon.gif + +Main Craft: Cooking - (32) + + + Fire Crystal + Shining Trout + Rock Salt + + NQ: Roast Trout + + HQ1:Broiled Trout + + FireCrystal-Icon.gif + +Main Craft: Cooking - (32) + + + Fire Crystal + Rock Salt + Alabaligi + + NQ: Pepper Biscuit x3 + + HQ1:Pepper Biscuit x6 + HQ2:Pepper Biscuit x9 + HQ3:Pepper Biscuit x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (32) + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Black Pepper + Crawler Egg + Honey + Acorn x3 + + NQ: Fire Biscuit x3 + + HQ1:Fire Biscuit x6 + HQ2:Fire Biscuit x9 + HQ3:Fire Biscuit x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (32) + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Kazham Peppers + Crawler Egg + Honey + Acorn x3 + + NQ: Nebimonite Bake + + HQ1:Buttered Nebimonite + + FireCrystal-Icon.gif + +Main Craft: Cooking - (33) + + + Fire Crystal + Selbina Butter + Nebimonite + Mhaura Garlic + + NQ: Ortolana x2 + + HQ1:Ortolana x4 + HQ2:Ortolana +1 x2 + HQ3:Ortolana +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (33) +Key Item: Noodle Kneading + + + Fire Crystal + Kazham Peppers + Mhaura Garlic + Olive Oil + Rock Salt + Spaghetti + Frost Turnip + Eggplant + Nopales + + NQ: Trout Ball x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (33) + + + Earth Crystal + Shining Trout + Rye Flour + Distilled Water + + NQ: Trout Ball x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (33) + + + Earth Crystal + Alabaligi + Rye Flour + Distilled Water + + NQ: Lucky Carrot Broth x4 + + HQ1:Lucky Carrot Broth x6 + HQ2:Lucky Carrot Broth x8 + HQ3:Lucky Carrot Broth x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (33) + + + Water Crystal + San d'Orian Carrot x3 + Snoll Arm + + NQ: Black Bread x4 + + HQ1:Pumpernickel x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (34) + + + Fire Crystal + Rye Flour + Rock Salt + Distilled Water + + NQ: Iron Bread x4 + + HQ1:Steel Bread x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (34) + + + Fire Crystal + San d'Orian Flour + Rock Salt + Distilled Water + + NQ: Maple Cake + + HQ1:Silken Siesta + + FireCrystal-Icon.gif + +Main Craft: Cooking - (35) +Key Item: Patissier + + + Fire Crystal + San d'Orian Flour + Maple Sugar + Olive Oil + Selbina Milk + Bird Egg + Apkallu Egg + + NQ: Meatball x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (35) + + + Earth Crystal + San d'Orian Flour + Distilled Water + Hare Meat + + NQ: Mushroom Soup + + HQ1:Witch Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (35) + + + Fire Crystal + Rock Salt + Danceshroom + Scream Fungus + Coral Fungus + Distilled Water + + NQ: Cherry Macaron x2 + + HQ1:Cherry Macaron x4 + HQ2:Cherry Macaron x6 + HQ3:Cherry Macaron x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (35) +Key Item: Patissier + + + Fire Crystal + Maple Sugar + Almond + Lizard Egg + Yagudo Cherry + + NQ: Butter Crepe x 2 + + HQ1:Butter Crepe x4 + HQ2:Crepe Delice x2 + HQ3:Crepe Delice x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (35) + + + Fire Crystal + San d'Orian Flour + Maple Sugar + Selbina Butter + Bird Egg + Uleguerand Milk + + NQ: Meatball x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (35) + + + Earth Crystal + Cooking Kit 35 + + NQ: Buffalo Jerky x2 + + HQ1:Bison Jerky x2 + + IceCrystal-Icon.gif + +Main Craft: Cooking - (36) + + + Ice Crystal + Dried Marjoram + Rock Salt + Buffalo Meat + + NQ: Windurst Salad + + HQ1:Timbre Timbers Salad + + WindCrystal-Icon.gif + +Main Craft: Cooking - (36) + + + Wind Crystal + Apple Vinegar + Kazham Pineapple + San d'Orian Carrot + Pamamas + Mithran Tomato + La Theine Cabbage + Rolanberry + Yagudo Cherry + + NQ: Bubble Chocolate x12 + + HQ1:Heart Chocolate + + FireCrystal-Icon.gif + +Main Craft: Cooking - (37) + + + Fire Crystal + Kukuru Bean x4 + Selbina Milk + Maple Sugar + + NQ: Bloody Chocolate x3 + + HQ1:Bloody Chocolate x6 + HQ2:Bloody Chocolate x9 + HQ3:Bloody Chocolate x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (37) +Key Item: Patissier + + + Fire Crystal + Maple Sugar + Kukuru Bean x4 + Flytrap Leaf + Selbina Milk + + NQ: Fish Broth x2 + + HQ1: Fish Oil Broth + HQ2: Fish Oil Broth x2 + HQ3: Fish Oil Broth x3 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (37) + + + Water Crystal + Bastore Sardine x4 + + NQ: Fish Broth x2 + + HQ1: Fish Oil Broth + HQ2: Fish Oil Broth x2 + HQ3: Fish Oil Broth x3 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (37) + + + Water Crystal + Hamsi x4 + + NQ: Fish Broth x2 + + HQ1: Fish Oil Broth + HQ2: Fish Oil Broth x2 + HQ3: Fish Oil Broth x3 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (37) + + + Water Crystal + Senroh Sardine x4 + + NQ: Dancing Herbal Broth x4 + + HQ1:Dancing Herbal Broth x6 + HQ2:Dancing Herbal Broth x8 + HQ3:Dancing Herbal Broth x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (37) + + + Water Crystal + Frost Turnip + Beaugreens x2 + Napa + + NQ: Chikuwa x2 + + HQ1:Chikuwa x4 + HQ2:Chikuwa x6 + HQ3:Chikuwa x8 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (37) + + + Earth Crystal + Rock Salt + Bastore Bream + Tiger Cod + + NQ: Jack-o'-Lantern + + FireCrystal-Icon.gif + +Main Craft: Cooking - (38) + + + Fire Crystal + Ogre Pumpkin + Beeswax + + NQ: Meat Mithkabob x6 + + HQ1:Meat Mithkabob x12 + HQ2:Meat Chiefkabob x6 + HQ3:Meat Chiefkabob x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (38) + + + Fire Crystal + Kazham Peppers + Mhaura Garlic + Wild Onion + Ziz Meat + + NQ: Meat Mithkabob x6 + + HQ1:Meat Mithkabob x12 + HQ2:Meat Chiefkabob x6 + HQ3:Meat Chiefkabob x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (38) + + + Fire Crystal + Kazham Peppers + Cockatrice Meat + Mhaura Garlic + Wild Onion + + NQ: Miso Soup + + HQ1:Miso Soup +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (38) + + + Fire Crystal + Adoulinian Kelp + Cotton Tofu + Cibol + Miso + Dried Bonito + + NQ: Balik Sandvici + + HQ1:Balik Sandvici +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (39) + + + Fire Crystal + Olive Oil + Rock Salt + Kitron + White Bread + Wild Onion + Mithran Tomato + Uskumru + + NQ: Cotton Tofu x4 + + HQ1:Cotton Tofu x6 + HQ2:Cotton Tofu x9 + HQ3:Cotton Tofu x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (39) +Sub Craft(s): Clothcraft - (2) + + + Earth Crystal + Cotton Cloth + Bittern + Soy Milk + + NQ: Pet Food Delta x6 + + HQ1:Pet Food Delta x8 + HQ2:Pet Food Delta x10 + HQ3:Pet Food Delta x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (39) + + + Earth Crystal + Rye Flour + Distilled Water + Bird Egg + Land Crab Meat + + NQ: Melanzane x2 + + HQ1:Melanzane x4 + HQ2:Melanzane x6 + HQ3:Melanzane +1 x2 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (40) +Key Item: Noodle Kneading + + + Fire Crystal + Kazham Peppers + Mhaura Garlic + Olive Oil + Rock Salt + Spaghetti + Wild Onion + Eggplant + Pomodoro Sauce + + NQ: Melon Juice + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (40) + + + Water Crystal + Watermelon + Thundermelon + + NQ: Marinara Pizza + + HQ1:Marinara Pizza +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (40) + + + Fire Crystal + Mhaura Garlic + Dried Marjoram + Holy Basil + Pizza Dough + Chalaimbille + Marinara Sauce + + NQ: Ulbuconut Milk + + HQ1:Ulbuconut Milk +1 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (40) + + + Wind Crystal + Elshimo Coconut + + NQ: Ulbuconut Milk + + HQ1:Ulbuconut Milk +1 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (40) + + + Wind Crystal + Ulbuconut + + NQ: Marinara Slice x6 + + HQ1:Marinara Slice x8 + HQ2:Marinara Slice +1 x6 + HQ3:Marinara Slice +1 x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (40) + + + Fire Crystal + Mhaura Garlic + Dried Marjoram + Holy Basil + Pizza Dough + Chalaimbille + Marinara Sauce + Pizza Cutter + + NQ: Melon Juice + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (40) + + + Water Crystal + Cooking Kit 40 + + NQ: Sutlac + + HQ1:Sutlac +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (40) +Key Item: Patissier + + + Fire Crystal + Maple Sugar + Rock Salt + Imperial Rice + Cornstarch + Selbina Milk + Apkallu Egg + + +Apprentice (41-50) +Synthesis Information +Yield Requirements Ingredients + + NQ: Apple Vinegar x4 + + HQ1:Apple Vinegar x6 + HQ2:Apple Vinegar x9 + HQ3:Apple Vinegar x12 + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (41) + + + Dark Crystal + Honey + Faerie Apple x3 + + NQ: Salmon Rice Ball x4 + + HQ1:Naval Rice Ball x2 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (41) + + + Fire Crystal + Smoked Salmon + Tarutaru Rice + Pamtam Kelp + Rock Salt + Distilled Water + + NQ: Salmon Roe x3 + + HQ1:Salmon Roe x3 + HQ2:Salmon Roe x6 + HQ3:Salmon Roe x9 + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (41) + + + Dark Crystal + Rock Salt + Salmon Eggs + + NQ: Windurst Taco x6 + + HQ1:Windurst Taco x12 + HQ2:Timbre Timbers Taco x6 + HQ3:Timbre Timbers Taco x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (41) + + + Fire Crystal + Hare Meat + Wild Onion + Tortilla x2 + Stone Cheese + Windurst Salad + Salsa + + NQ: Bubbling Carrion Broth x4 + + HQ1:Bubbling Carrion Broth x6 + HQ2:Bubbling Carrion Broth x8 + HQ3:Bubbling Carrion Broth x10 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (41) + + + Fire Crystal + Kazham Peppers + Gelatin + Hare Meat + Distilled Water + Rotten Meat + + NQ: Pie Dough x4 + + HQ1:Pie Dough x6 + HQ2:Pie Dough x9 + HQ3:Pie Dough x12 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (42) + + + Water Crystal + San d'Orian Flour + Selbina Butter + Rock Salt + + NQ: Pizza Dough x4 + + HQ1:Pizza Dough x6 + HQ2:Pizza Dough x9 + HQ3:Pizza Dough x12 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (42) + + + Water Crystal + Selbina Butter + Olive Oil + Rock Salt + Semolina + + NQ: Simit x4 + + HQ1:Simit +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (42) + + + Fire Crystal + Maple Sugar + Rock Salt + Simsim + Imperial Flour + Selbina Milk + Buburimu Grape + Distilled Water + White Honey + + NQ: Fish Broth + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (43) + + + Water Crystal + Uskumru x2 + + NQ: Tomato Juice + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (43) + + + Water Crystal + Rock Salt + Mithran Tomato x3 + + NQ: Cherry Muffin x4 + + HQ1:Cherry Muffin +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (43) +Key Item: Patissier + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Maple Sugar + Selbina Milk + Yagudo Cherry + Bird Egg + + NQ: Saffron + + HQ1:Saffron x2 + HQ2:Saffron x3 + HQ3:Saffron x4 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (43) + + + Wind Crystal + Saffron Blossom x3 + + NQ: Spaghetti + + HQ1:Spaghetti x2 + HQ2:Spaghetti x3 + HQ3:Spaghetti x4 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (44) +Key Item: Noodle Kneading + + + Water Crystal + Rock Salt + Semolina + + NQ: White Bread x4 + + HQ1:Pain de Neige x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (44) + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Rock Salt + Distilled Water + Honey + + NQ: Bavarois + + HQ1:Bavarois +1 + + IceCrystal-Icon.gif + +Main Craft: Cooking - (44) + + + Ice Crystal + Maple Sugar + Gelatin + Apple Mint + Vanilla + Bird Egg + Uleguerand Milk + + NQ: Menemen + + HQ1:Menemen +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (45) + + + Fire Crystal + Kazham Peppers + Selbina Butter + Black Pepper + Rock Salt + Wild Onion + Mithran Tomato + Puk Egg x2 + + NQ: Goulash + + HQ1:Goulash +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (45) + + + Fire Crystal + Popoto + Coeurl Meat + Mithran Tomato + Distilled Water + Paprika + + NQ: Goulash + + HQ1:Goulash +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (45) + + + Fire Crystal + Popoto + Mithran Tomato + Distilled Water + Lynx Meat + Paprika + + NQ: Fish Broth x12 + + HQ1:Fish Oil Broth x4 + HQ2:Fish Oil Broth x8 + HQ3:Fish Oil Broth x12 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (45) + + + Water Crystal + Bluetail x2 + + NQ: Fish Broth x12 + + HQ1:Fish Oil Broth x4 + HQ2:Fish Oil Broth x8 + HQ3:Fish Oil Broth x12 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (45) + + + Water Crystal + Uskumru x2 + + NQ: Fish Broth x4 + + HQ1:Fish Oil Broth x2 + HQ2:Fish Oil Broth x4 + HQ3:Fish Oil Broth x6 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (45) + + + Water Crystal + Lakerda + + NQ: Fish Broth x4 + + HQ1:Fish Oil Broth x2 + HQ2:Fish Oil Broth x4 + HQ3:Fish Oil Broth x6 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (45) + + + Water Crystal + Gugru Tuna + + NQ: Tomato Soup + + HQ1:Sunset Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (45) + + + Fire Crystal + Tomato Juice + Two-Leaf Mandragora Bud + Wild Onion + Dried Marjoram + Distilled Water + + NQ: Soba Noodles + + HQ1:Soba Noodles x2 + HQ2:Soba Noodles x3 + HQ3:Soba Noodles x4 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (45) +Key Item: Noodle Kneading + + + Water Crystal + Buckwheat Flour + + NQ: Orange Cake + + HQ1:Silken Squeeze + + FireCrystal-Icon.gif + +Main Craft: Cooking - (45) +Key Item: Patissier + + + Fire Crystal + San d'Orian Flour + Maple Sugar + Olive Oil + Selbina Milk + Saruta Orange + Bird Egg + Apkallu Egg + + NQ: Sugar Rusk x2 + + HQ1:Sugar Rusk x4 + HQ2:Sugar Rusk x6 + HQ3:Sugar Rusk x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (45) +Key Item: Patissier + + + Fire Crystal + Selbina Butter + Maple Sugar + Iron Bread + Bird Egg + + NQ: Wool Grease x4 + + HQ1:Wool Grease x6 + HQ2:Wool Grease x8 + HQ3:Wool Grease x10 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (45) + + + Wind Crystal + Lesser Chigoe x2 + Shell Bug + + NQ: Goblin Bug Broth x4 + + HQ1:Goblin Bug Broth x6 + HQ2:Goblin Bug Broth x8 + HQ3:Goblin Bug Broth x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (45) + + + Water Crystal + Rotten Meat + Lugworm + Shell Bug x2 + + NQ: Menemen + + FireCrystal-Icon.gif + +Main Craft: Cooking - (45) + + + Fire Crystal + Cooking Kit 45 + + NQ: Sea Dragon Liver x3 + + HQ1:Sea Dragon Liver x6 + HQ2:Sea Dragon Liver x9 + HQ3:Sea Dragon Liver x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (45) + + + Earth Crystal + Soryu's Liver + Sekiryu's Liver + Hakuryu's Liver + Kokuryu's Liver + + NQ: Pickled Herring x4 + + HQ1:Pickled Herring x4 + HQ2:Viking Herring x4 + + IceCrystal-Icon.gif + +Main Craft: Cooking - (46) + + + Ice Crystal + Nosteau Herring + Dried Marjoram + Rock Salt + + NQ: Vongole Rosso x2 + + HQ1:Vongole Rosso x4 + HQ2:Vongole Rosso +1 x2 + HQ3:Vongole Rosso +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (46) +Key Item: Noodle Kneading + + + Fire Crystal + Kazham Peppers + Mhaura Garlic + Black Pepper + Olive Oil + Spaghetti + Wild Onion + Vongola Clam + Pomodoro Sauce + + NQ: Green Curry Bun x6 + + HQ1:Green Curry Bun x8 + HQ2:G. Curry Bun +1 x6 + HQ3:G. Curry Bun +1 x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (46) + + + Fire Crystal + San d'Orian Flour + Olive Oil + Green Curry + Bird Egg + + NQ: Ramen Noodles + + HQ1:Ramen Noodles x2 + HQ2:Ramen Noodles x3 + HQ3:Ramen Noodles x4 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (46) +Key Item: Noodle Kneading + + + Water Crystal + San d'Orian Flour + Rock Salt + Baking Soda + Distilled Water + + NQ: Cinna-cookie x33 + + HQ1:Coin Cookie x33 + HQ2:Coin Cookie x33 + HQ3:Coin Cookie x99 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (47) + + + Fire Crystal + San d'Orian Flour + Cinnamon + Selbina Butter + Lizard Egg + Maple Sugar + Distilled Water + + NQ: Mont Blanc + + HQ1:Golden Royale + + FireCrystal-Icon.gif + +Main Craft: Cooking - (47) +Key Item: Patissier + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Maple Sugar + Chestnut x2 + Selbina Milk + Distilled Water + Bird Egg + + NQ: Chocolate Crepe x2 + + HQ1:Chocolate Crepe x4 + HQ2:Crepe Caprice x2 + HQ3:Crepe Caprice x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (47) + + + Fire Crystal + San d'Orian Flour + Almond + Honey + Pamamas + Bubble Chocolate + Bird Egg + Uleguerand Milk + + NQ: Apple Pie x4 + + HQ1:Apple Pie +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (48) + + + Fire Crystal + Pie Dough + Maple Sugar + Cinnamon + Lizard Egg + Faerie Apple + + NQ: Tomato Soup + + HQ1:Sunset Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (48) + + + Fire Crystal + Dried Marjoram + Bay Leaves + Wild Onion + Tomato Juice + Distilled Water + + NQ: Cinna-cookie x33 + + HQ1:Coin Cookie x33 + HQ2:Coin Cookie x33 + HQ3:Coin Cookie x99 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (49) + + + Fire Crystal + San d'Orian Flour + Cinnamon + Selbina Butter + Maple Sugar + Distilled Water + Bird Egg + + NQ: Fish Mithkabob x6 + + HQ1:Fish Mithkabob x12 + HQ2:Fish Chiefkabob x6 + HQ3:Fish Chiefkabob x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (49) + + + Fire Crystal + Shall Shell x2 + Nebimonite + Bastore Sardine + Bluetail + + NQ: Fish Mithkabob x6 + + HQ1:Fish Mithkabob x12 + HQ2:Fish Chiefkabob x6 + HQ3:Fish Chiefkabob x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (49) + + + Fire Crystal + Hamsi + Uskumru + Ahtapot + Istiridye x2 + + NQ: Garlic Cracker x33 + + HQ1:Garlic Cracker x99 + HQ2:Garlic Cracker +1 x33 + HQ3:Garlic Cracker +1 x99 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (49) + + + Fire Crystal + Tarutaru Rice + Mhaura Garlic + Rock Salt + Distilled Water + + NQ: Goblin Stir-Fry + + FireCrystal-Icon.gif + +Main Craft: Cooking - (49) + + + Fire Crystal + Olive Oil + La Theine Cabbage + Eggplant + Rarab Tail + Ginger Root + Kazham Peppers + Hare Meat + Trilobite + + NQ: Pet Food Epsilon x4 + + HQ1: Pet Food Epsilon x6 + HQ2: Pet Food Epsilon x8 + HQ3: Pet Food Epsilon x10 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (49) + + + Earth Crystal + Rye Flour + Distilled Water + Lizard Egg + Ziz Meat + + NQ: Pet Food Epsilon x4 + + HQ1: Pet Food Epsilon x6 + HQ2: Pet Food Epsilon x8 + HQ3: Pet Food Epsilon x10 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (49) + + + Earth Crystal + Cockatrice Meat + Lizard Egg + Rye Flour + Distilled Water + + NQ: Crab Sushi x4 + + HQ1:Crab Sushi x6 + HQ2:Crab Sushi +1 x2 + HQ3:Crab Sushi +1 x4 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (50) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Rice Vinegar + Land Crab Meat + Distilled Water + + NQ: Apple Pie x4 + + HQ1:Apple Pie +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (50) + + + Fire Crystal + Cinnamon + Pie Dough + Maple Sugar + Bird Egg + Faerie Apple + + NQ: Grape Juice + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (50) + + + Dark Crystal + San d'Orian Grape x4 + + NQ: Margherita Pizza + + HQ1:Margherita Pizza +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (50) + + + Fire Crystal + Holy Basil + Pizza Dough + Mithran Tomato + Pomodoro Sauce + Chalaimbille + + NQ: Montagna x2 + + HQ1:Montagna x4 + HQ2:Montagna x6 + HQ3:Montagna x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (50) + + + Fire Crystal + Mhaura Garlic + Maple Sugar + Olive Oil + Habaneros + Imperial Flour + Bird Egg + Buffalo Meat + Burdock Root + + NQ: Seafood Pitaru x2 + + HQ1:Seafood Pitaru x4 + HQ2:Seafood Pitaru x6 + HQ3:Seafood Pitaru x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (50) + + + Fire Crystal + Maple Sugar + Rock Salt + Imperial Flour + Wild Onion + Distilled Water + Grauberg Lettuce + Butterpear + Peeled Lobster + + NQ: Margherita Slice x6 + + HQ1:Margherita Slice x8 + HQ2:Margherita Slice +1 x6 + HQ3:Margherita Slice +1 x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (50) + + + Fire Crystal + Holy Basil + Pizza Dough + Mithran Tomato + Pomodoro Sauce + Chalaimbille + Pizza Cutter + + NQ: Apple Pie x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (50) + + + Fire Crystal + Cooking Kit 50 + + +Journeyman (51-60) +Synthesis Information +Yield Requirements Ingredients + + NQ: Bretzel x33 + + HQ1:Bretzel x99 + HQ2:Salty Bretzel x33 + HQ3:Salty Bretzel x99 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (51) + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Lizard Egg + Rock Salt + Distilled Water + + NQ: Orange au Lait + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (51) + + + Water Crystal + Saruta Orange x2 + Honey + Selbina Milk + + NQ: Loach Slop + + HQ1:Loach Gruel + HQ2:Loach Gruel + HQ3:Loach Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (51) +Key Item: Stewpot Mastery + + + Fire Crystal + Soy Stock + Two-Leaf Mandragora Bud + Distilled Water + Bird Egg + Cibol + Brass Loach x2 + Burdock + + NQ: Batagreen Saute + + HQ1:Vegan Saute + + FireCrystal-Icon.gif + +Main Craft: Cooking - (52) + + + Fire Crystal + Selbina Butter + Batagreens + + NQ: Crayfish Ball x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (52) + + + Earth Crystal + Crayfish x3 + San d'Orian Flour + Distilled Water + + NQ: Crayfish Ball x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (52) + + + Earth Crystal + Gold Lobster + San d'Orian Flour + Distilled Water + + NQ: Crayfish Ball x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (52) + + + Earth Crystal + Istakoz + San d'Orian Flour + Distilled Water + + NQ: Grasshopper Broth x4 + + HQ1:Noisy Grasshopper Broth x2 + HQ2:Noisy Grasshopper Broth x4 + HQ3:Noisy Grasshopper Broth x6 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (52) + + + Water Crystal + Skull Locust x2 + King Locust + Mushroom Locust + La Theine Cabbage + Gysahl Greens + + NQ: Mille Feuille + + HQ1:Elysian Eclair + + FireCrystal-Icon.gif + +Main Craft: Cooking - (52) +Key Item: Patissier + + + Fire Crystal + Pie Dough x3 + Maple Sugar + Rolanberry + Selbina Milk + Distilled Water + Bird Egg + + NQ: Lethe Consomme x4 + + HQ1:Lethe Consomme x6 + HQ2:Lethe Consomme x8 + HQ3:Lethe Consomme x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (52) + + + Water Crystal + Eastern Ginger + San d'Orian Carrot + Tiger Cod + Distilled Water + + NQ: Salted Dragonfly Trout + + HQ1:Grilled Dragonfly Trout + + FireCrystal-Icon.gif + +Main Craft: Cooking - (52) + + + Fire Crystal + Rock Salt + Dragonfly Trout + + NQ: Bretzel x33 + + HQ1:Bretzel x99 + HQ2:Salty Bretzel x33 + HQ3:Salty Bretzel x99 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (53) + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Rock Salt + Distilled Water + Bird Egg + + NQ: Eel Kabob + + HQ1:Broiled Eel + + FireCrystal-Icon.gif + +Main Craft: Cooking - (53) + + + Fire Crystal + Olive Oil + Black Eel + + NQ: Eel Kabob + + HQ1:Broiled Eel + + FireCrystal-Icon.gif + +Main Craft: Cooking - (53) + + + Fire Crystal + Olive Oil + Yilanbaligi + + NQ: Coffee Muffin x4 + + HQ1:Coffee Muffin +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (53) +Key Item: Patissier + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Maple Sugar + Coffee Powder + Selbina Milk + Bird Egg + + NQ: Carp Sushi + + HQ1:Yahata Sushi + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (54) + + + Dark Crystal + Tarutaru Rice + Rock Salt + Forest Carp + + NQ: Carp Sushi + + HQ1:Yahata Sushi + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (54) + + + Dark Crystal + Tarutaru Rice + Rock Salt + Moat Carp + + NQ: Icecap Rolanberry + + HQ1:Flurry Courante + + FireCrystal-Icon.gif + +Main Craft: Cooking - (54) +Key Item: Patissier + + + Fire Crystal + Selbina Butter + Maple Sugar + Gelatin + Vanilla + Crawler Egg + Rolanberry + Selbina Milk + Distilled Water + + NQ: Icecap Rolanberry + + HQ1:Snowy Rolanberry + + FireCrystal-Icon.gif + +Main Craft: Cooking - (54) + + + Fire Crystal + Gelatin + Selbina Butter + Selbina Milk + Maple Sugar + Rolanberry + Distilled Water + Crawler Egg + + NQ: Shrimp Sushi x2 + + HQ1:Shrimp Sushi +1 x2 + HQ2:Shrimp Sushi +1 x3 + HQ3:Shrimp Sushi +1 x4 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (54) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Rice Vinegar + Distilled Water + Ground Wasabi + Bastore Sweeper + + NQ: Cherry Bavarois + + HQ1:Cherry Bavarois +1 + + IceCrystal-Icon.gif + +Main Craft: Cooking - (54) + + + Ice Crystal + Maple Sugar + Gelatin + Vanilla + Yagudo Cherry + Bird Egg + Uleguerand Milk + + NQ: Yellow Curry Bun x6 + + HQ1:Yellow Curry Bun x8 + HQ2:Y. Curry Bun +1 x6 + HQ3:Y. Curry Bun +1 x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (54) + + + Fire Crystal + San d'Orian Flour + Olive Oil + Yellow Curry + Bird Egg + + NQ: Beaugreen Saute + + HQ1:Monastic Saute + + FireCrystal-Icon.gif + +Main Craft: Cooking - (55) + + + Fire Crystal + Selbina Butter + Beaugreens + + NQ: Egg Soup + + HQ1: Humpty Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (55) + + + Fire Crystal + Lizard Egg + Black Pepper + Distilled Water + Rock Salt + + NQ: Orange Tank + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (55) +Sub Craft(s): Leathercraft - (1) + + + Earth Crystal + Karakul Leather + Brass Tank + Orange au Lait x4 + + NQ: Pumpkin Cake + + FireCrystal-Icon.gif + +Main Craft: Cooking - (55) +Key Item: Patissier + + + Fire Crystal + San d'Orian Flour + Maple Sugar + Ogre Pumpkin + Olive Oil + Selbina Milk + Bird Egg + Apkallu Egg + + NQ: Coffee Macaron x2 + + HQ1:Coffee Macaron x4 + HQ2:Coffee Macaron x6 + HQ3:Coffee Macaron x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (55) +Key Item: Patissier + + + Fire Crystal + Lizard Egg + Coffee Beans + Almond + Maple Sugar + + NQ: Beaugreen Saute + + FireCrystal-Icon.gif + +Main Craft: Cooking - (55) + + + Fire Crystal + Cooking Kit 55 + + NQ: Pamama Tart + + HQ1:Opo-opo Tart + + FireCrystal-Icon.gif + +Main Craft: Cooking - (56) + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Bubble Chocolate x2 + Pamamas + Maple Sugar + Distilled Water + Bird Egg + + NQ: Carbonara x2 + + HQ1:Carbonara x4 + HQ2:Carbonara +1 x2 + HQ3:Carbonara +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (56) +Key Item: Noodle Kneading + + + Fire Crystal + Mhaura Garlic + Black Pepper + Holy Basil + Spaghetti + Selbina Milk + Stone Cheese + Bird Egg + Buffalo Jerky + + NQ: Mulsum + + IceCrystal-Icon.gif + +Main Craft: Cooking - (56) + + + Ice Crystal + Grape Juice + Honey + Distilled Water + + NQ: Zaru Soba + + HQ1:Zaru Soba +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (56) +Key Item: Noodle Kneading + + + Fire Crystal + Pamtam Kelp + Fish Stock + Soba Noodles + Distilled Water + Ground Wasabi + Cibol + Puk Egg + + NQ: Pot-au-feu x2 + + HQ1:Pot-au-feu x4 + HQ2:Pot-au-feu +1 x2 + HQ3:Pot-au-feu +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (56) + + + Fire Crystal + Popoto + Giant Femur + Hare Meat + Frost Turnip + San d'Or. Carrot + + NQ: Bataquiche x6 + + HQ1:Bataquiche x12 + HQ2:Bataquiche +1 x6 + HQ3:Bataquiche +1 x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (57) + + + Fire Crystal + Pie Dough + Black Pepper + Rock Salt + Danceshroom + Selbina Milk + Stone Cheese + Batagreen Saute + Bird Egg + + NQ: Chai + + HQ1:Chai +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (57) + + + Fire Crystal + Maple Sugar + Im. Tea Leaves + Distilled Water + + NQ: Egg Soup + + HQ1:Humpty Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (57) + + + Fire Crystal + Black Pepper + Rock Salt + Distilled Water + Bird Egg + + NQ: Mole Broth x4 + + HQ1:Lively Mole Broth x2 + HQ2:Lively Mole Broth x4 + HQ3:Lively Mole Broth x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (57) + + + Water Crystal + Snapping Mole x2 + Helmet Mole + Loam + Lugworm + Shell Bug + + NQ: Curdled Plasma Broth x4 + + HQ1:Curdled Plasma Broth x6 + HQ2:Curdled Plasma Broth x8 + HQ3:Curdled Plasma Broth x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (57) + + + Water Crystal + Fiend Blood + Beastman Blood + Bird Blood + + NQ: Ginger Cookie x33 + + HQ1:Wizard Cookie x33 + HQ2:Wizard Cookie x33 + HQ3:Wizard Cookie x99 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (58) + + + Fire Crystal + San d'Orian Flour + Ginger + Selbina Butter + Lizard Egg + Maple Sugar + Distilled Water + + NQ: Ic Pilav + + HQ1:Ic Pilav +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (58) + + + Fire Crystal + Selbina Butter + Black Pepper + Rock Salt + Pine Nuts + Imperial Rice + Buburimu Grape + Distilled Water + Ziz Meat + + NQ: Tentacle Sushi + + HQ1:Tentacle Sushi x2 + HQ2:Tentacle Sushi +1 + HQ3:Tentacle Sushi +1 x2 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (58) +Key Item: Raw Fish Handling + + + Earth Crystal + Ginger + Tarutaru Rice + Rice Vinegar + Distilled Water + Kalamar + + NQ: Tentacle Sushi + + HQ1:Tentacle Sushi x2 + HQ2:Tentacle Sushi +1 + HQ3:Tentacle Sushi +1 x2 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (58) +Key Item: Raw Fish Handling + + + Earth Crystal + Ginger + Tarutaru Rice + Rice Vinegar + Distilled Water + Cone Calamary + + NQ: Cunning Brain Broth x4 + + HQ1:Cunning Brain Broth x6 + HQ2:Cunning Brain Broth x8 + HQ3:Cunning Brain Broth x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (58) + + + Water Crystal + Gelatin + Hare Meat + Giant Sheep Meat + Cockatrice Meat + + NQ: Dried Mugwort + + HQ1:Dried Mugwort x2 + HQ2:Dried Mugwort x3 + HQ3:Dried Mugwort x4 + + IceCrystal-Icon.gif + +Main Craft: Cooking - (59) +Sub Craft(s): Alchemy - (40) + + + Ice Crystal + Fresh Mugwort x8 + + NQ: Goblin Mushpot + + FireCrystal-Icon.gif + +Main Craft: Cooking - (59) + + + Fire Crystal + Danceshroom + Kazham Peppers + Scream Fungus + Sobbing Fungus + Deathball + Sleepshroom + Rock Salt + Distilled Water + + NQ: Pet Food Zeta x4 + + HQ1:Pet Food Zeta x6 + HQ2:Pet Food Zeta x8 + HQ3:Pet Food Zeta x10 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (59) + + + Earth Crystal + San d'Orian Flour + Lizard Egg + Coeurl Meat + Distilled Water + + NQ: Pogaca x33 + + HQ1:Pogaca +1 x33 + HQ2:Pogaca +1 x33 + HQ3:Pogaca +1 x99 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (59) + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Maple Sugar + Rock Salt + Stone Cheese + Distilled Water + Apkallu Egg + Yogurt + + NQ: Spicy Cracker x33 + + HQ1:Red Hot Cracker x33 + HQ2:Red Hot Cracker x33 + HQ3:Red Hot Cracker x99 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (59) + + + Fire Crystal + Kazham Peppers + Tarutaru Rice + Rock Salt + Distilled Water + + NQ: Pepperoni Pizza + + HQ1:Pepperoni Pizza +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (59) + + + Fire Crystal + Pizza Dough + Pomodoro Sauce + Misareaux Parsley + Pepperoni + Agaricus + Chalaimbille + + NQ: Ham and Ch. Crepe x2 + + HQ1:Ham and Ch. Crepe x4 + HQ2:Crepe Paysanne x2 + HQ3:Crepe Paysanne x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (59) + + + Fire Crystal + San d'Orian Flour + Mhaura Garlic + Mithran Tomato + Bird Egg + Sausage + Chalaimbille + Uleguerand Milk + + NQ: Pepperoni Slice x6 + + HQ1:Pepperoni Slice x8 + HQ2:Pepperoni Slice +1 x6 + HQ3:Pepperoni Slice +1 x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (59) + + + Fire Crystal + Pizza Dough + Pomodoro Sauce + Misareaux Parsley + Pepperoni + Agaricus Mushroom + Chalaimbille + Pizza Cutter + + NQ: Ginger Cookie x33 + + HQ1:Wizard Cookie x33 + HQ2:Wizard Cookie x33 + HQ3:Wizard Cookie x99 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (60) + + + Fire Crystal + San d'Orian Flour + Ginger + Selbina Butter + Maple Sugar + Distilled Water + Bird Egg + + NQ: Green Quiche x6 + + HQ1:Green Quiche x12 + HQ2:Emerald Quiche x6 + HQ3:Emerald Quiche x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (60) + + + Fire Crystal + Pie Dough + Rock Salt + Danceshroom + Selbina Milk + Stone Cheese + Bird Egg + Beaugreen Saute + + NQ: Sis Kebabi + + HQ1:Sis Kebabi +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (60) + + + Fire Crystal + Mhaura Garlic + Black Pepper + Rock Salt + Wild Onion + Mithran Tomato + Karakul Meat + + NQ: Yagudo Drink + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (60) + + + Dark Crystal + Yagudo Cherry + Buburimu Grape x3 + + NQ: Adoulin Soup + + HQ1:Adoulin Soup +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (60) + + + Fire Crystal + Black Pepper + Adoulinian Kelp x2 + Wild Onion + Distilled Water + Black Prawn + + NQ: Cutlet Sandwich x3 + + HQ1: Cutlet Sandwich x6 + HQ2: Cutlet Sandwich +1 x3 + HQ3: Cutlet Sandwich +1 x6 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (60) + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Rock Salt + Distilled Water + Pork Cutlet + + NQ: Green Quiche + + FireCrystal-Icon.gif + +Main Craft: Cooking - (60) + + + Fire Crystal + Cooking Kit 60 + + +Craftsman (61-70) +Synthesis Information +Yield Requirements Ingredients + + NQ: Cilbir + + HQ1:Cibarious Cilbir + + FireCrystal-Icon.gif + +Main Craft: Cooking - (61) + + + Fire Crystal + Kazham Peppers + Mhaura Garlic + Selbina Butter + Rock Salt + Apkallu Egg x2 + Yogurt + + NQ: Goblin Bread x4 + + HQ1:Hobgoblin Bread x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (61) + + + Fire Crystal + Puffball + Rock Salt + Horo Flour + Bone Chip + Distilled Water + Poison Flour + Crawler Egg + + NQ: Seafood Stewpot + + HQ1:Prime Seafood Stewpot + HQ2:Prized Seafood Stewpot + + FireCrystal-Icon.gif + +Main Craft: Cooking - (61) +Key Item: Stewpot Mastery + + + Fire Crystal + Fish Stock + Danceshroom + Gold Lobster + Bastore Bream + Distilled Water + Cotton Tofu + Cibol + Napa + + NQ: Stone Cheese x4 + + HQ1:Rock Cheese x4 + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (61) + + + Dark Crystal + Selbina Milk + Rock Salt + + NQ: Marinara Sauce x4 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (61) + + + Water Crystal + Kazham Peppers + Black Pepper + Olive Oil + Rock Salt + Mithran Tomato + Anchovy + + NQ: Apple au Lait + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (62) + + + Water Crystal + Faerie Apple x2 + Honey + Selbina Milk + + NQ: Melon Pie x4 + + HQ1:Melon Pie +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (62) + + + Fire Crystal + Thundermelon + Cinnamon + Lizard Egg + Pie Dough + Maple Sugar + + NQ: Snoll Gelato x4 + + HQ1:Sub-zero Gelato x4 + HQ2:Sub-zero Gelato x6 + HQ3:Sub-zero Gelato x8 + + IceCrystal-Icon.gif + +Main Craft: Cooking - (62) +Sub Craft(s): Alchemy - (11) + + + Ice Crystal + San d'Orian Flour + Selbina Butter + Maple Sugar + Olive Oil + Selbina Milk + Bird Egg + Snoll Arm + + NQ: Snoll Gelato x4 + + HQ1:Seraph's Kiss x4 + HQ2:Seraph's Kiss x6 + HQ3:Seraph's Kiss x8 + + IceCrystal-Icon.gif + +Main Craft: Cooking - (62) +Sub Craft(s): Alchemy - (11) +Key Item: Patissier + + + Ice Crystal + San d'Orian Flour + Selbina Butter + Maple Sugar + Olive Oil + Vanilla + Selbina Milk + Bird Egg + Snoll Arm + + NQ: Blood Broth x4 + + HQ1:Clear Blood Broth x2 + HQ2:Clear Blood Broth x4 + HQ3:Clear Blood Broth x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (62) + + + Water Crystal + Fiend Blood + Leech Saliva + Lizard Blood + Bird Blood + Beast Blood + + NQ: C. Grasshopper Broth x4 + + HQ1:C. Grasshopper Broth x6 + HQ2:C. Grasshopper Broth x8 + HQ3:C. Grasshopper Broth x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (62) + + + Water Crystal + Skull Locust x2 + La Theine Cabbage + Gysahl Greens + Little Worm + Shell Bug + + NQ: Balik Sis + + HQ1:Balik Sis +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (63) + + + Fire Crystal + Kazham Peppers + Mhaura Garlic + Black Pepper + Rock Salt + Mithran Tomato + Kilicbaligi + + NQ: Sausage x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (63) +Sub Craft(s): Woodworking - (9) + + + Fire Crystal + Sage + Black Pepper + Maple Log + Rock Salt + Giant Sheep Meat + + NQ: Mole Broth x4 + + HQ1:Lively Mole Broth x2 + HQ2:Lively Mole Broth x4 + HQ3:Lively Mole Broth x6 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (63) + + + Water Crystal + Snapping Mole x2 + Helmet Mole + Loam + Little Worm + Shell Bug + + NQ: Salmon Sushi x4 + + HQ1:Salmon Sushi x6 + HQ2:Salmon Sushi +1 x2 + HQ3:Salmon Sushi +1 x4 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (63) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Rice Vinegar + Cheval Salmon + Distilled Water + Ground Wasabi + + NQ: Lethe Potage x4 + + HQ1:Lethe Potage x6 + HQ2:Lethe Potage x8 + HQ3:Lethe Potage x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (63) + + + Water Crystal + Popoto + Eastern Ginger + Bastore Bream + Distilled Water + + NQ: Razor Brain Broth x4 + + HQ1:Razor Brain Broth x6 + HQ2:Razor Brain Broth x8 + HQ3:Razor Brain Broth x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (63) + + + Water Crystal + Gelatin + Hare Meat + Giant Sheep Meat + Ziz Meat + + NQ: Briny Broth x4 + + HQ1:Briny Broth x6 + HQ2:Briny Broth x8 + HQ3:Briny Broth x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (63) + + + Water Crystal + Hamsi + Mercanbaligi + Rhinochimera + + NQ: Blackened Frog + + HQ1:Frog Flambe + + FireCrystal-Icon.gif + +Main Craft: Cooking - (64) + + + Fire Crystal + Copper Frog + Dried Marjoram + Rock Salt + + NQ: Melon Pie x4 + + HQ1:Melon Pie +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (64) + + + Fire Crystal + Thundermelon + Cinnamon + Bird Egg + Pie Dough + Maple Sugar + + NQ: Octopus Sushi x4 + + HQ1:Octopus Sushi +1 x2 + HQ2:Octopus Sushi +1 x4 + HQ3:Octopus Sushi +1 x6 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (64) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Rice Vinegar + Distilled Water + Ground Wasabi + Gigant Octopus + + NQ: Black Curry Bun x6 + + HQ1:Black Curry Bun x8 + HQ2:B. Curry Bun +1 x6 + HQ3:B. Curry Bun +1 x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (64) + + + Fire Crystal + San d'Orian Flour + Olive Oil + Black Curry + Bird Egg + + NQ: Octopus Sushi x4 + + HQ1:Octopus Sushi +1 x2 + HQ2:Octopus Sushi +1 x4 + HQ3:Octopus Sushi +1 x6 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (64) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Rice Vinegar + Distilled Water + Ground Wasabi + Contortopus x2 + + NQ: Octopus Sushi x4 + + HQ1:Octopus Sushi +1 x2 + HQ2:Octopus Sushi +1 x4 + HQ3:Octopus Sushi +1 x6 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (64) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Rice Vinegar + Distilled Water + Ground Wasabi + Contortacle x3 + + NQ: Blackened Frog + + HQ1:Frog Flambe + + FireCrystal-Icon.gif + +Main Craft: Cooking - (64) + + + Fire Crystal + Senroh Frog + Dried Marjoram + Rock Salt + + NQ: Pumpkin Soup + + HQ1:Jack-o'-Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (65) + + + Fire Crystal + Ogre Pumpkin + Sage + Rock Salt + Selbina Milk + Distilled Water + + NQ: Bison Steak + + HQ1:Marbled Steak + + FireCrystal-Icon.gif + +Main Craft: Cooking - (65) + + + Fire Crystal + Bay Leaves + Black Pepper + Olive Oil + Rock Salt + Rarab Tail + Buffalo Meat + + NQ: Irmik Helvasi + + HQ1:Irmik Helvasi +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (65) +Key Item: Patissier + + + Fire Crystal + Selbina Butter + Semolina + Pine Nuts + Selbina Milk + White Honey x3 + + NQ: Konigskuchen + + HQ1:Uberkuchen + + FireCrystal-Icon.gif + +Main Craft: Cooking - (65) +Key Item: Patissier + + + Fire Crystal + San d'Orian Flour + Pie Dough + Maple Sugar + Selbina Milk + San d'Orian Grape + Yagudo Cherry + Distilled Water + Bird Egg + + NQ: Ratatouille + + HQ1:Ratatouille +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (65) + + + Fire Crystal + Mhaura Garlic + Bay Leaves + Olive Oil + Wild Onion + Eggplant + Mithran Tomato + Zucchini + Paprika + + NQ: Chocolate Rusk x2 + + HQ1:Chocolate Rusk x4 + HQ2:Chocolate Rusk x6 + HQ3:Chocolate Rusk x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (65) +Key Item: Patissier + + + Fire Crystal + Selbina Butter + Bubble Chocolate x2 + Iron Bread + Bird Egg + + NQ: Savage Mole Broth x4 + + HQ1:Savage Mole Broth x6 + HQ2:Savage Mole Broth x8 + HQ3:Savage Mole Broth x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (65) + + + Water Crystal + Red Gravel + Snapping Mole + Helmet Mole + Loam + Little Worm x2 + + NQ: Boiled Barnacles x2 + + HQ1:Boiled Barnacles +1 x2 + HQ2:Boiled Barnacles +1 x4 + HQ3:Boiled Barnacles +1 x6 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (65) + + + Fire Crystal + Rock Salt + Distilled Water + Barnacle + + NQ: Ratatouille + + FireCrystal-Icon.gif + +Main Craft: Cooking - (65) + + + Fire Crystal + Cooking Kit 65 + + NQ: Apple Tank + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (66) +Sub Craft(s): Leathercraft - (1) + + + Earth Crystal + Karakul Leather + Brass Tank + Apple au Lait x4 + + NQ: Colored Egg + + HQ1:Party Egg + + FireCrystal-Icon.gif + +Main Craft: Cooking - (66) + + + Fire Crystal + San d'Orian Carrot + Lizard Egg + La Theine Cabbage + Distilled Water + + NQ: Nero di Seppia x2 + + HQ1:Nero di Seppia x4 + HQ2:Nero di Seppia +1 x2 + HQ3:Nero di Seppia +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (66) +Key Item: Noodle Kneading + + + Fire Crystal + Mhaura Garlic + Black Pepper + Olive Oil + Holy Basil + Spaghetti + Wild Onion + Mithran Tomato + Kalamar + + NQ: Nero di Seppia x2 + + HQ1:Nero di Seppia x4 + HQ2:Nero di Seppia +1 x2 + HQ3:Nero di Seppia +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (66) +Key Item: Noodle Kneading + + + Fire Crystal + Mhaura Garlic + Black Pepper + Olive Oil + Holy Basil + Spaghetti + Wild Onion + Mithran Tomato + Cone Calamary + + NQ: Sausage Roll x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (66) + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Sausage + Rock Salt + Distilled Water + Honey + + NQ: Goblin Stew + + HQ1:Goblin Stew + + FireCrystal-Icon.gif + +Main Craft: Cooking - (67) + + + Fire Crystal + Horo Flour + Chicken Bone + Fish Bones + Fiend Blood + Rock Salt + Puffball + Distilled Water + Rotten Meat + + NQ: Ikra Gunkan + + HQ1:Ikra Gunkan x2 + HQ2:Ikra Gunkan +1 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (67) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Pamtam Kelp + Rice Vinegar + Distilled Water + Salmon Roe + + NQ: Raisin Bread + + FireCrystal-Icon.gif + +Main Craft: Cooking - (67) + + + Fire Crystal + San d'Orian Grape + San d'Orian Flour + Selbina Butter + Maple Sugar + Rock Salt + Distilled Water + + NQ: Antica Broth x4 + + HQ1:Fragrant Antica Broth x2 + HQ2:Fragrant Antica Broth x4 + HQ3:Fragrant Antica Broth x6 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (67) + + + Water Crystal + Gelatin + Antican Pauldron + Antican Robe + Antican Acid + + NQ: Colored Egg + + HQ1:Party Egg + + FireCrystal-Icon.gif + +Main Craft: Cooking - (68) + + + Fire Crystal + San d'Orian Carrot + Bird Egg + La Theine Cabbage + Distilled Water + + NQ: Herb Quus + + HQ1:Medicinal Quus + + FireCrystal-Icon.gif + +Main Craft: Cooking - (68) + + + Fire Crystal + Quus x3 + Selbina Butter + Black Pepper + Bay Leaves + Dried Marjoram + Rock Salt + + NQ: Imperial Coffee + + HQ1:Imperial Coffee +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (68) + + + Fire Crystal + Coffee Powder + Maple Sugar + Distilled Water + + NQ: Shrimp Cracker x33 + + HQ1:Shrimp Cracker +1 x33 + HQ2:Shrimp Cracker +1 x33 + HQ3:Shrimp Cracker +1 x99 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (68) + + + Fire Crystal + Gold Lobster + Tarutaru Rice + Rock Salt + Distilled Water + + NQ: Shrimp Cracker x33 + + HQ1:Shrimp Cracker +1 x33 + HQ2:Shrimp Cracker +1 x33 + HQ3:Shrimp Cracker +1 x99 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (68) + + + Fire Crystal + Istakoz + Tarutaru Rice + Rock Salt + Distilled Water + + NQ: Anchovy Pizza + + HQ1:Anchovy Pizza +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (68) + + + Fire Crystal + Dried Marjoram + Holy Basil + Pizza Dough + Pomodoro Sauce + Anchovy + Chalaimbille + + NQ: Burning Carrion Broth x4 + + HQ1:Burning Carrion Broth x6 + HQ2:Burning Carrion Broth x8 + HQ3:Burning Carrion Broth x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (68) + + + Water Crystal + Gelatin + Hare Meat + Giant Sheep Meat + Ruszor Meat + + NQ: Anchovy Slice x6 + + HQ1:Anchovy Slice x8 + HQ2:Anchovy Slice +1 x6 + HQ3:Anchovy Slice +1 x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (68) + + + Fire Crystal + Dried Marjoram + Holy Basil + Pizza Dough + Pomodoro Sauce + Anchovies + Chalaimbille + Pizza Cutter + + NQ: Adamantoise Soup + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (69) + + + Dark Crystal + San d'Orian Flour + Chicken Bone + Fiend Blood + Rock Salt + Wild Onion + Distilled Water + Tavnazian Ram Meat + Diatryma Meat + + NQ: Gateau aux Fraises + + HQ1:Midwinter Dream + + FireCrystal-Icon.gif + +Main Craft: Cooking - (69) +Key Item: Patissier + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Maple Sugar + Rolanberry x2 + Selbina Milk + Distilled Water + Bird Egg + + NQ: Mutton Tortilla + + HQ1:Mutton Enchilada + + FireCrystal-Icon.gif + +Main Craft: Cooking - (69) + + + Fire Crystal + Kazham Peppers + Stone Cheese + Tomato Juice + Tortilla + Mithran Tomato + La Theine Cabbage + Giant Sheep Meat + + NQ: Pet Food Eta x4 + + HQ1:Pet Food Eta x6 + HQ2:Pet Food Eta x8 + HQ3:Pet Food Eta x10 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (69) + + + Earth Crystal + San d'Orian Flour + Distilled Water + Buffalo Meat + Apkallu Egg + + NQ: Dhalmel Stew + + HQ1:Wild Stew + + FireCrystal-Icon.gif + +Main Craft: Cooking - (70) + + + Fire Crystal + San d'Orian Flour + Cinnamon + Dhalmel Meat + Popoto + Mithran Tomato + Wild Onion + Rock Salt + Distilled Water + + NQ: San d'Orian Tea + + HQ1:Royal Tea + + FireCrystal-Icon.gif + +Main Craft: Cooking - (70) + + + Fire Crystal + Windurstian Tea Leaves + Sage + Selbina Milk + Maple Sugar + Distilled Water + + NQ: Squid Sushi x6 + + HQ1:Squid Sushi +1 x6 + HQ2:Squid Sushi +1 x8 + HQ3:Squid Sushi +1 x10 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (70) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Rice Vinegar + Gigant Squid + Distilled Water + Ground Wasabi + + NQ: Mellow Bird Broth x4 + + HQ1:Mellow Bird Broth x6 + HQ2:Mellow Bird Broth x8 + HQ3:Mellow Bird Broth x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (70) + + + Water Crystal + Gelatin + Dhalmel Meat + Lizard Egg + Cockatrice Meat + Bird Egg + + NQ: San d'Orian Tea + + FireCrystal-Icon.gif + +Main Craft: Cooking - (70) + + + Fire Crystal + Cooking Kit 70 + + NQ: Egg Sandwich x6 + + HQ1: Egg Sandwich x8 + HQ2: Egg Sandwich +1 x6 + HQ3: Egg Sandwich +1 x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (70) + + + Fire Crystal + Selbina Butter + White Bread + Hard-boiled Egg + Grauberg Lettuce + + +Artisan (71-80) +Synthesis Information +Yield Requirements Ingredients + + NQ: Crab Stewpot + + HQ1:Prime Crab Stewpot + HQ2:Prized Crab Stewpot + + FireCrystal-Icon.gif + +Main Craft: Cooking - (71) +Key Item: Stewpot Mastery + + + Fire Crystal + Fish Stock + Woozyshroom + Land Crab Meat + Coral Fungus + Distilled Water + Cotton Tofu + Cibol + Shungiku + + NQ: Eyeball Soup + + HQ1:Optical Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (71) + + + Fire Crystal + Apple Vinegar + Frost Turnip + Gelatin + Hecteyes Eye x3 + Beastman Blood + Distilled Water + + NQ: Turtle Soup + + HQ1:Stamina Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (71) + + + Fire Crystal + Danceshroom + Chicken Bone + San d'Orian Carrot + Ginger + Acorn + Red Terrapin + Rock Salt + Distilled Water + + NQ: Marinara x2 + + HQ1:Marinara x4 + HQ2:Marinara +1 x2 + HQ3:Marinara +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (71) +Key Item: Noodle Kneading + + + Fire Crystal + Mhaura Garlic + Olive Oil + Rock Salt + Spaghetti + Jacknife + Pomodoro Sauce + Kalamar + Bastore Sweeper + + NQ: Red Curry Bun x6 + + HQ1:Red Curry Bun x8 + HQ2:R. Curry Bun +1 x6 + HQ3:R. Curry Bun +1 x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (72) + + + Fire Crystal + San d'Orian Flour + Olive Oil + Red Curry + Bird Egg + + NQ: Pear Crepe x2 + + HQ1:Pear Crepe x4 + HQ2:Crepe B. Helene x2 + HQ3:Crepe B. Helene x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (72) + + + Fire Crystal + San d'Orian Flour + Cinnamon + Derfland Pear + Faerie Apple + Honey + Bird Egg + Uleguerand Milk + + NQ: Boiled Cockatrice + + FireCrystal-Icon.gif + +Main Craft: Cooking - (72) + + + Fire Crystal + Cockatrice Meat + Coral Fungus + San d'Orian Carrot + Ginger + Mhaura Garlic + Mithran Tomato + Rock Salt + Distilled Water + + NQ: Bream Sushi x4 + + HQ1:Bream Sushi x6 + HQ2:Bream Sushi +1 x2 + HQ3:Bream Sushi +1 x4 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (72) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Rice Vinegar + Distilled Water + Ground Wasabi + Mercanbaligi + + NQ: Bream Sushi x4 + + HQ1:Bream Sushi x6 + HQ2:Bream Sushi +1 x2 + HQ3:Bream Sushi +1 x4 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (72) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Rice Vinegar + Distilled Water + Ground Wasabi + Bastore Bream + + NQ: Pear au Lait + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (72) + + + Water Crystal + Derfland Pear x2 + Honey + Selbina Milk + + NQ: Blood Broth x4 + + HQ1:Clear Blood Broth x2 + HQ2:Clear Blood Broth x4 + HQ3:Clear Blood Broth x6 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (73) + + + Water Crystal + Beastman Blood + Leech Saliva + Lizard Blood + Bird Blood + Beast Blood + + NQ: Salmon Meuniere + + HQ1:Salmon Meuniere +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (73) + + + Fire Crystal + Olive Oil + San d'Orian Flour + Cheval Salmon + Selbina Butter + Black Pepper + Rock Salt + + NQ: Chalaimbille x4 + + HQ1:Chalaimbille x6 + HQ2:Chalaimbille x8 + HQ3:Chalaimbille x10 + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (73) + + + Dark Crystal + Rock Salt + Carbon Dioxide + Uleguerand Milk x2 + + NQ: Popo. con Queso x4 + + HQ1:Popo. con Queso x6 + HQ2:Popo. con Que. +1 x2 + HQ3:Popo. con Que. +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (73) + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Popoto + Rock Salt + Danceshroom + Selbina Milk + Wild Onion + Chalaimbille + + NQ: Fish & Chips + + HQ1:Friture Misareaux + + FireCrystal-Icon.gif + +Main Craft: Cooking - (74) + + + Fire Crystal + San d'Orian Flour + Popoto + Apple Vinegar + Olive Oil + Tiger Cod x2 + Bird Egg + Movalpolos Water + + NQ: Mushroom Risotto + + HQ1:Witch Risotto + + FireCrystal-Icon.gif + +Main Craft: Cooking - (74) + + + Fire Crystal + Distilled Water + Danceshroom + Olive Oil + Selbina Butter + Tarutaru Rice + Puffball + Black Pepper + Mhaura Garlic + + NQ: Kohlrouladen + + HQ1:Kohlrouladen +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (74) + + + Fire Crystal + San d'Orian Flour + Black Pepper + Rock Salt + La Theine Cbg. + Selbina Milk + Ruszor Meat + + NQ: Fish & Chips + + HQ1:Friture Misareaux + + FireCrystal-Icon.gif + +Main Craft: Cooking - (74) + + + Fire Crystal + San d'Orian Flour + Popoto + Apple Vinegar + Olive Oil + Blindfish + Bird Egg + Movalpolos Water + + NQ: Celerity Salad + + HQ1:Tornado Salad + + WindCrystal-Icon.gif + +Main Craft: Cooking - (75) + + + Wind Crystal + Gausebit Grass + Blue Peas + Cupid Worm + La Theine Millet + La Theine Cabbage + King Truffle + Shall Shell + Vomp Carrot + + NQ: Celerity Salad + + HQ1:Tornado Salad + + WindCrystal-Icon.gif + +Main Craft: Cooking - (75) + + + Wind Crystal + Gausebit Grass + Blue Peas + Cupid Worm + La Theine Millet + La Theine Cabbage + King Truffle + Istiridye + Vomp Carrot + + NQ: Dhalmel Pie x4 + + HQ1:Dhalmel Pie +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (75) + + + Fire Crystal + Coral Fungus + San d'Orian Carrot + Selbina Butter + Dhalmel Meat + Pie Dough + Black Pepper + Wild Onion + Rock Salt + + NQ: Yogurt Cake + + HQ1:Silken Smile + + FireCrystal-Icon.gif + +Main Craft: Cooking - (75) +Key Item: Patissier + + + Fire Crystal + San d'Orian Flour + Maple Sugar + Olive Oil + Kitron + Selbina Milk + Bird Egg + Apkallu Egg + Yogurt + + NQ: Kitron Macaron x2 + + HQ1:Kitron Macaron x4 + HQ2:Kitron Macaron x6 + HQ3:Kitron Macaron x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (75) +Key Item: Patissier + + + Fire Crystal + Lizard Egg + Kitron + Almond + Maple Sugar + + NQ: Maringna x2 + + HQ1:Maringna x4 + HQ2:Maringna x6 + HQ3:Maringna x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (75) + + + Fire Crystal + Maple Sugar + Olive Oil + Imperial Flour + Bird Egg + Vongola Clam + Bastore Sweeper + Gigant Octopus + Uleguerand Milk + + NQ: B.E.W. Pitaru x2 + + HQ1:B.E.W. Pitaru x4 + HQ2:B.E.W. Pitaru x6 + HQ3:B.E.W. Pitaru x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (75) + + + Fire Crystal + Maple Sugar + Rock Salt + Imperial Flour + Hard-boiled Egg + Distilled Water + Buffalo Jerky + Chalaimbille + Winterflower + + NQ: Patlican Salata + + HQ1: Patlican Salata +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (75) + + + Fire Crystal + Eggplant x2 + Mhaura Garlic + Olive Oil + Yogurt + Rock Salt + Black Pepper + Selbina Butter + + NQ: Celerity Salad + + WindCrystal-Icon.gif + +Main Craft: Cooking - (75) + + + Wind Crystal + Cooking Kit 75 + + NQ: Green Curry + + FireCrystal-Icon.gif + +Main Craft: Cooking - (76) + + + Fire Crystal + Blue Peas + Bay Leaves + Curry Powder + Holy Basil + Crayfish + Beaugreens + Distilled Water + + NQ: Pear Tank + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (76) +Sub Craft(s): Leathercraft - (1) + + + Earth Crystal + Karakul Leather + Brass Tank + Pear au Lait x4 + + NQ: Rarab Meatball + + HQ1:Bunny Ball + + FireCrystal-Icon.gif + +Main Craft: Cooking - (76) + + + Fire Crystal + San d'Orian Flour + Stone Cheese + Black Pepper + Rock Salt + Distilled Water + Bird Egg + Hare Meat + Mhaura Garlic + + NQ: Tonno Rosso x2 + + HQ1:Tonno Rosso x4 + HQ2:Tonno Rosso +1 x2 + HQ3:Tonno Rosso +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (76) +Key Item: Noodle Kneading + + + Fire Crystal + Mhaura Garlic + Olive Oil + Rock Salt + Holy Basil + Spaghetti + Wild Onion + Pomodoro Sauce + Lakerda + + NQ: Tonno Rosso x2 + + HQ1:Tonno Rosso x4 + HQ2:Tonno Rosso +1 x2 + HQ3:Tonno Rosso +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (76) +Key Item: Noodle Kneading + + + Fire Crystal + Mhaura Garlic + Olive Oil + Rock Salt + Holy Basil + Spaghetti + Wild Onion + Pomodoro Sauce + Gugru Tuna + + NQ: Navarin + + HQ1:Tender Navarin + + FireCrystal-Icon.gif + +Main Craft: Cooking - (77) + + + Fire Crystal + Olive Oil + Black Pepper + Popoto + Mithran Tomato + Wild Onion + Rock Salt + Distilled Water + Giant Sheep Meat + + NQ: Sopa Pez Blanco + + FireCrystal-Icon.gif + +Main Craft: Cooking - (77) + + + Fire Crystal + Popoto + Black Pepper + Rock Salt + Selbina Milk + Wild Onion + San d'Orian Carrot + Distilled Water + Dil + + NQ: Sopa Pez Blanco + + FireCrystal-Icon.gif + +Main Craft: Cooking - (77) + + + Fire Crystal + San d'Orian Carrot + Selbina Milk + Black Sole + Black Pepper + Popoto + Wild Onion + Rock Salt + Distilled Water + + NQ: Tuna Sushi x4 + + HQ1:Tuna Sushi x6 + HQ2:Fatty Tuna Sushi + HQ3:Fatty Tuna Sushi x2 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (77) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Rice Vinegar + Gugru Tuna + Distilled Water + Ground Wasabi + + NQ: Tuna Sushi x4 + + HQ1:Tuna Sushi x6 + HQ2:Fatty Tuna Sushi + HQ3:Fatty Tuna Sushi x2 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (77) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Rice Vinegar + Distilled Water + Ground Wasabi + Lakerda + + NQ: Whitefish Stew + + FireCrystal-Icon.gif + +Main Craft: Cooking - (77) + + + Fire Crystal + San d'Orian Carrot + Selbina Milk + Bastore Bream + Black Pepper + Popoto + Wild Onion + Rock Salt + Distilled Water + + NQ: Whitefish Stew + + FireCrystal-Icon.gif + +Main Craft: Cooking - (77) + + + Fire Crystal + Popoto + Black Pepper + Rock Salt + Selbina Milk + Wild Onion + San d'Orian Carrot + Distilled Water + Mercanbaligi + + NQ: Blackened Newt + + HQ1:Newt Flambe + + FireCrystal-Icon.gif + +Main Craft: Cooking - (78) + + + Fire Crystal + Elshimo Newt + Bay Leaves + Dried Marjoram + Rock Salt + + NQ: Buche au Chocolat + + HQ1:Sylvan Excursion + + FireCrystal-Icon.gif + +Main Craft: Cooking - (78) +Sub Craft(s): Woodworking - (3) +Key Item: Patissier + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Bay Leaves + Maple Sugar + Kukuru Bean + Selbina Milk + Bubble Chocolate + Bird Egg + + NQ: Goblin Pie x4 + + HQ1:Hobgoblin Pie x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (78) + + + Fire Crystal + Crayfish + Ginger + Eggplant + Pie Dough + Black Pepper + Sunflower Seeds + Honey + Crawler Egg + + NQ: Cloudy Wheat Broth x4 + + HQ1:Cloudy Wheat Broth x6 + HQ2:Cloudy Wheat Broth x8 + HQ3:Cloudy Wheat Broth x10 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (78) + + + Fire Crystal + San d'Orian Flour + Coriander + Imperial Flour + Distilled Water + + NQ: Blackened Newt + + HQ1:Newt Flambe + + FireCrystal-Icon.gif + +Main Craft: Cooking - (79) + + + Fire Crystal + Phanauet Newt + Bay Leaves + Dried Marjoram + Rock Salt + + NQ: Chocomilk + + HQ1:Choco-delight + + FireCrystal-Icon.gif + +Main Craft: Cooking - (79) + + + Fire Crystal + Kukuru Bean x4 + Selbina Milk + Maple Sugar + Distilled Water + Honey + + NQ: Herb Crawler Eggs + + FireCrystal-Icon.gif + +Main Craft: Cooking - (79) + + + Fire Crystal + Olive Oil + San d'Orian Carrot + Ginger + Mhaura Garlic + Maple Sugar + Wild Onion + Distilled Water + Crawler Egg + + NQ: Pet Food Theta x4 + + HQ1:Pet Food Theta x6 + HQ2:Pet Food Theta x8 + HQ3:Pet Food Theta x10 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (79) + + + Earth Crystal + San d'Orian Flour + Distilled Water + Puk Egg + Ruszor Meat + + NQ: Senroh Skewer x6 + + HQ1:Senroh Skewer x12 + HQ2:Piscator's Skewer x6 + HQ3:Piscator's Skewer x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (79) + + + Fire Crystal + Bluetail + Shall Shell x2 + Contortopus + Senroh Sardine + + NQ: Senroh Skewer x6 + + HQ1:Senroh Skewer x12 + HQ2:Piscator's Skewer x6 + HQ3:Piscator's Skewer x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (79) + + + Fire Crystal + Bluetail + Shall Shell x2 + Contortacle x3 + Senroh Sardine + + NQ: Lucky Broth x4 + + HQ1:Lucky Broth x6 + HQ2:Lucky Broth x8 + HQ3:Lucky Broth x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (80) + + + Water Crystal + Gelatin + Buffalo Meat + Bladefish + + NQ: Goblin Drink + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (80) + + + Water Crystal + La Theine Cabbage + Frost Turnip + Wild Onion + San d'Orian Carrot + Watermelon + Distilled Water + Gysahl Greens + Elshimo Newt + + NQ: Orange Kuchen + + HQ1:Orange Kuchen +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (80) + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Maple Sugar + Saruta Orange x2 + Bird Egg + + NQ: Shallops Tropicale + + FireCrystal-Icon.gif + +Main Craft: Cooking - (80) + + + Fire Crystal + Kazham Pineapple + Shall Shell x2 + Selbina Butter + Bay Leaves + Rock Salt + Distilled Water + + NQ: Witch Nougat x3 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (80) +Key Item: Patissier + + + Fire Crystal + Selbina Milk + Maple Sugar + Lizard Egg + Yagudo Cherry + White Honey + Roasted Almond + + NQ: Pork Cutlet Rice Bowl + + HQ1:Pork Cutlet Rice Bowl +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (80) + + + Fire Crystal + Tarutaru Rice + Soy Stock + Two-Leaf Mandragora Bud + Wild Onion + Bird Egg + Pork Cutlet + + NQ: Shallops Tropicale + + FireCrystal-Icon.gif + +Main Craft: Cooking - (80) + + + Fire Crystal + Cooking Kit 80 + + +Adept (81-90) +Synthesis Information +Yield Requirements Ingredients + + NQ: Karni Yarik + + HQ1:Karni Yarik +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (81) + + + Fire Crystal + Kazham Peppers + Black Pepper + Olive Oil + Rock Salt + Wild Onion + Eggplant + Mithran Tomato + Karakul Meat + + NQ: Pamama au Lait + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (81) + + + Water Crystal + Pamamas x2 + Honey + Selbina Milk + + NQ: Shark Fin Soup + + HQ1:Ocean Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (81) + + + Fire Crystal + Chicken Bone + Silver Shark + Ginger + Sleepshroom + Popoto + Rock Salt + Distilled Water + Bird Egg + + NQ: Tavnazian Taco x6 + + HQ1:Tavnazian Taco x12 + HQ2:Leremieu Taco x6 + HQ3:Leremieu Taco x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (81) + + + Earth Crystal + Tavnazian Salad + Tortilla x2 + Salsa + + NQ: Cream Puff x4 + + HQ1:Cream Puff x6 + HQ2:Cream Puff x8 + HQ3:Cream Puff x10 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (81) +Key Item: Patissier + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Maple Sugar + Rock Salt + Vanilla + Distilled Water + Bird Egg + Uleguerand Milk + + NQ: Shiromochi x2 + + HQ1:Shiromochi +1 x2 + HQ2:Shiromochi +1 x3 + HQ3:Shiromochi +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (81) + + + Fire Crystal + Sticky Rice + Cornstarch + Distilled Water + + NQ: Kusamochi x2 + + HQ1:Kusamochi +1 x2 + HQ2:Kusamochi +1 x3 + HQ3:Kusamochi +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (81) + + + Fire Crystal + Sticky Rice + Fresh Mugwort + Cornstarch + Distilled Water + + NQ: Akamochi x2 + + HQ1:Akamochi +1 x2 + HQ2:Akamochi +1 x3 + HQ3:Akamochi +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (81) + + + Fire Crystal + Maple Sugar + Sticky Rice + Cornstarch + Distilled Water + Azuki Bean + + NQ: Rolanberry Daifuku x2 + + HQ1:Rolanberry Daifuku +1 x2 + HQ2:Rolanberry Daifuku +1 x3 + HQ3:Rolanberry Daifuku +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (81) + + + Fire Crystal + Maple Sugar + Sticky Rice + Cornstarch + Rolanberry x2 + Distilled Water + Azuki Bean + + NQ: Bean Daifuku x2 + + HQ1:Bean Daifuku +1 x2 + HQ2:Bean Daifuku +1 x3 + HQ3:Bean Daifuku +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (81) + + + Fire Crystal + Maple Sugar + Sticky Rice + Cornstarch + Blue Peas + Distilled Water + Azuki Bean + + NQ: Grape Daifuku x2 + + HQ1:Grape Daifuku +1 x2 + HQ2:Grape Daifuku +1 x3 + HQ3:Grape Daifuku +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (81) + + + Fire Crystal + Maple Sugar + Sticky Rice + Cornstarch + Royal Grapes x2 + Distilled Water + Azuki Bean + + NQ: Beef Stewpot + + HQ1:Prime Beef Stewpot + HQ2:Prized Beef Stewpot + + FireCrystal-Icon.gif + +Main Craft: Cooking - (82) +Key Item: Stewpot Mastery + + + Fire Crystal + Soy Stock + Distilled Water + Bird Egg + Buffalo Meat + Cotton Tofu + Cibol + Shungiku + Shirataki + + NQ: Boiled Tuna Head + + FireCrystal-Icon.gif + +Main Craft: Cooking - (82) + + + Fire Crystal + Ginger + Maple Sugar + Rock Salt + Treant Bulb + Grape Juice + Gugru Tuna + Distilled Water + Beaugreens + + NQ: Emperor Roe x4 + + HQ1:Emperor Roe x6 + HQ2:Emperor Roe x8 + HQ3:Emperor Roe x10 + + LightningCrystal-Icon.gif + +Main Craft: Cooking - (82) + + + Lightning Crystal + Morinabaligi + + NQ: Emperor Roe x4 + + HQ1:Emperor Roe x6 + HQ2:Emperor Roe x8 + HQ3:Emperor Roe x10 + + LightningCrystal-Icon.gif + +Main Craft: Cooking - (82) + + + Lightning Crystal + Emperor Fish + + NQ: Mushroom Salad + + HQ1:Cathedral Salad + + WindCrystal-Icon.gif + +Main Craft: Cooking - (82) + + + Wind Crystal + Olive Oil + Batagreens + Woozyshroom + King Truffle + Nopales + Burdock + Walnut + Agaricus + + NQ: Bass Meuniere + + HQ1:Bass Meuniere +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (83) + + + Fire Crystal + Olive Oil + Saruta Orange + San d'Orian Flour + Selbina Butter + Dark Bass + Black Pepper + Rock Salt + + NQ: Pescatora x2 + + HQ1:Pescatora x4 + HQ2:Pescatora +1 x2 + HQ3:Pescatora +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (83) +Key Item: Noodle Kneading + + + Fire Crystal + Mhaura Garlic + Spaghetti + Sandfish + Grimmonite + Gold Lobster + Shall Shell + Pomodoro Sauce + + NQ: Pescatora x2 + + HQ1:Pescatora x4 + HQ2:Pescatora +1 x2 + HQ3:Pescatora +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (83) +Key Item: Noodle Kneading + + + Fire Crystal + Mhaura Garlic + Spaghetti + Sandfish + Pomodoro Sauce + Istakoz + Ahtapot + Istiridye + + NQ: Pepperoni x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (83) +Sub Craft(s): Woodworking - (19) + + + Fire Crystal + Kazham Peppers + Black Pepper + Sage + Oak Log + Rock Salt + G. Sheep Meat + Buffalo Meat + + NQ: Mushroom Crepe x2 + + HQ1:Mushroom Crepe x4 + HQ2:Crepe Forestiere x2 + HQ3:Crepe Forestiere x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (83) + + + Fire Crystal + San d'Orian Flour + Black Pepper + Danceshroom + Puffball + Bird Egg + Beaugreens + Uleguerand Milk + + NQ: Chamomile Tea + + HQ1:Healing Tea + + FireCrystal-Icon.gif + +Main Craft: Cooking - (83) + + + Fire Crystal + Chamomile x2 + Distilled Water + Honey + + NQ: Bream Risotto + + HQ1:Sea Spray Risotto + + FireCrystal-Icon.gif + +Main Craft: Cooking - (84) + + + Fire Crystal + Olive Oil + Sage + Selbina Butter + Tarutaru Rice + Bastore Bream + Black Pepper + Mhaura Garlic + Distilled Water + + NQ: Sole Sushi x2 + + HQ1:Sole Sushi +1 x2 + HQ2:Sole Sushi +1 x3 + HQ3:Sole Sushi +1 x4 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (84) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Rice Vinegar + Distilled Water + Ground Wasabi + Dil + + NQ: Sole Sushi x2 + + HQ1:Sole Sushi +1 x2 + HQ2:Sole Sushi +1 x3 + HQ3:Sole Sushi +1 x4 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (84) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Rice Vinegar + Black Sole + Distilled Water + Ground Wasabi + + NQ: Steamed Catfish + + FireCrystal-Icon.gif + +Main Craft: Cooking - (84) + + + Fire Crystal + Giant Catfish + Gysahl Greens + Grape Juice + Popoto + Maple Sugar + Dried Marjoram + Distilled Water + + NQ: Hellsteak + + HQ1:Hellsteak +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (85) + + + Fire Crystal + Popoto + Bay Leaves + Black Pepper + Olive Oil + Rock Salt + Wild Onion + San d'Orian Carrot + Cerberus Meat + + NQ: Pamama Tank + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (85) +Sub Craft(s): Leathercraft - (1) + + + Earth Crystal + Karakul Leather + Brass Tank + Pamama au Lait x4 + + NQ: Pumpkin Pie x4 + + HQ1:Pumpkin Pie +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (85) + + + Fire Crystal + Ogre Pumpkin + Cinnamon + Selbina Butter + Pie Dough + Maple Sugar + Distilled Water + Bird Egg + Selbina Milk + + NQ: Yellow Curry + + FireCrystal-Icon.gif + +Main Craft: Cooking - (85) + + + Fire Crystal + Popoto + Curry Powder + Turmeric + Coeurl Meat + Selbina Milk + Wild Onion + Distilled Water + + NQ: Jack-o'-Pie + + HQ1: Jack-o'-Pie x6 + HQ2: Jack-o'-Pie x 9 + HQ3: Jack-o'-Pie x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (85) +Key Item: Patissier + + + Fire Crystal + Selbina Butter + Pie Dough + Maple Sugar + Cinnamon + Ogre Pumpkin + Selbina Milk + Distilled Water + Apkallu Egg + + NQ: Chocolate Cake + + HQ1:Silken Spirit + + FireCrystal-Icon.gif + +Main Craft: Cooking - (85) +Key Item: Patissier + + + Fire Crystal + San d'Orian Flour + Maple Sugar + Olive Oil + Selbina Milk + Heart Chocolate + Bird Egg + Apkallu Egg + + NQ: Coconut Rusk x2 + + HQ1:Coconut Rusk x4 + HQ2:Coconut Rusk x6 + HQ3:Coconut Rusk x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (85) +Key Item: Patissier + + + Fire Crystal + Selbina Butter + Iron Bread + Bird Egg + Elshimo Coconut + + NQ: Fruit Parfait + + HQ1:Queen's Crown + + WindCrystal-Icon.gif + +Main Craft: Cooking - (85) +Key Item: Patissier + + + Wind Crystal + Maple Sugar + Apple Mint + Faerie Apple + Saruta Orange + Kazham Pineapple + Yagudo Cherry + Pamamas + Uleguerand Milk + + NQ: Yellow Curry + + FireCrystal-Icon.gif + +Main Craft: Cooking - (85) + + + Fire Crystal + Cooking Kit 85 + + NQ: Boscaiola x2 + + HQ1:Boscaiola x4 + HQ2:Boscaiola +1 x2 + HQ3:Boscaiola +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (86) +Key Item: Noodle Kneading + + + Fire Crystal + Mhaura Garlic + Olive Oil + Spaghetti + Danceshroom + King Truffle + Wild Onion + Scream Fungus + Pomodoro Sauce + + NQ: Marron Glace + + HQ1:Squirrel's Delight + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (86) +Key Item: Patissier + + + Dark Crystal + Maple Sugar + Chestnut x2 + Baking Soda + Grape Juice + + NQ: Marron Glace + + HQ1:Bijou Glace + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (86) + + + Dark Crystal + Maple Sugar + Chestnut x2 + Grape Juice + + NQ: Mushroom Stew + + HQ1:Witch Stew + + FireCrystal-Icon.gif + +Main Craft: Cooking - (86) + + + Fire Crystal + Danceshroom + Coral Fungus + Selbina Butter + Puffball + Black Pepper + Popoto + Rock Salt + Distilled Water + + NQ: Antica Broth x4 + + HQ1:Fragrant Antica Broth x2 + HQ2:Fragrant Antica Broth x4 + HQ3:Fragrant Antica Broth x6 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (87) + + + Water Crystal + Gelatin + Antican Robe x2 + Antican Acid x2 + + NQ: Seafood Stew + + FireCrystal-Icon.gif + +Main Craft: Cooking - (87) + + + Fire Crystal + Gysahl Greens + Gold Lobster + Shall Shell + Nebimonite + Black Pepper + Popoto + Rock Salt + Distilled Water + + NQ: Seafood Stew + + FireCrystal-Icon.gif + +Main Craft: Cooking - (87) + + + Fire Crystal + Popoto + Black Pepper + Rock Salt + Distilled Water + Gysahl Greens + Istakoz + Ahtapot + Istiridye + + NQ: Oden x2 + + HQ1:Oden x4 + HQ2:Oden +1 x2 + HQ3:Oden +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (87) + + + Fire Crystal + Konjak + Daikon + Chikuwa + Fish Stock + + NQ: Coeurl Saute + + HQ1:Royal Saute + + FireCrystal-Icon.gif + +Main Craft: Cooking - (88) + + + Fire Crystal + Olive Oil + Coeurl Meat + Grape Juice + Selbina Butter + Black Pepper + Wild Onion + Rock Salt + Honey + + NQ: Coeurl Saute + + HQ1:Royal Saute + + FireCrystal-Icon.gif + +Main Craft: Cooking - (88) + + + Fire Crystal + Olive Oil + Lynx Meat + Grape Juice + Selbina Butter + Black Pepper + Wild Onion + Rock Salt + Honey + + NQ: Crimson Jelly + + HQ1:Vermillion Jelly + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (88) + + + Earth Crystal + Maple Sugar + Gelatin + Apple Mint + Clot Plasma + San d'Orian Grape + Distilled Water + + NQ: Black Pudding + + HQ1:Dusky Indulgence + + FireCrystal-Icon.gif + +Main Craft: Cooking - (89) +Key Item: Patissier + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Cinnamon + Kitron + Saruta Orange + Buburimu Grape + Bird Egg + Royal Grape + + NQ: Royal Omelette + + HQ1:Imperial Omelette + + FireCrystal-Icon.gif + +Main Craft: Cooking - (89) + + + Fire Crystal + Olive Oil + King Truffle + Cockatrice Meat + Selbina Butter + Black Pepper + Wild Onion + Rock Salt + Bird Egg + + NQ: Fin Sushi x4 + + HQ1:Fin Sushi x6 + HQ2:Fin Sushi +1 x2 + HQ3:Fin Sushi +1 x3 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (89) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Rice Vinegar + Distilled Water + Kalkanbaligi + Ground Wasabi + + NQ: Lebkuchen House + + HQ1:Lebkuchen Manse + + FireCrystal-Icon.gif + +Main Craft: Cooking - (90) +Key Item: Patissier + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Baking Soda + Honey + Cinna-cookie + Bubble Chocolate + Distilled Water + Bird Egg + + NQ: Rolanberry Pie x4 + + HQ1:Rolanberry Pie +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (90) + + + Fire Crystal + San d'Orian Flour + Gelatin + Selbina Milk + Pie Dough + Maple Sugar + Rolanberry + Bird Egg + + NQ: Vampire Juice + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (90) + + + Water Crystal + Mithran Tomato + Red Terrapin + Rolanberry + Faerie Apple + + NQ: Vampire Juice + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (90) + + + Water Crystal + Faerie Apple + Rolanberry + Mithran Tomato + Kaplumbaga + + NQ: Tropical Crepe x2 + + HQ1:Tropical Crepe x4 + HQ2:Crepe des Rois x2 + HQ3:Crepe des Rois x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (90) + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Maple Sugar + Kitron + Persikos + Bird Egg + Uleguerand Milk + Felicifruit + + NQ: Deep-Fried Shrimp x6 + + HQ1:Deep-Fried Shrimp x8 + HQ2:Deep-Fried Shrimp +1 x6 + HQ3:Deep-Fried Shrimp +1 x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (90) + + + Fire Crystal + Olive Oil + White Bread + Bird Egg + Black Prawn x2 + + NQ: Pukatrice Egg x6 + + HQ1:Pukatrice Egg x8 + HQ2:Pukatrice Egg +1 x6 + HQ3:Pukatrice Egg +1 x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (90) + + + Fire Crystal + Olive Oil + White Bread + Cockatrice Meat + Bird Egg + Puk Egg + + NQ: Fried Popoto x6 + + HQ1:Fried Popoto x8 + HQ2:Fried Popoto +1 x6 + HQ3:Fried Popoto +1 x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (90) + + + Fire Crystal + Popoto + Olive Oil + White Bread + Bird Egg + + NQ: Sublime Sushi x4 + + HQ1:Sublime Sushi x6 + HQ2:Sublime Sushi +1 x2 + HQ3:Sublime Sushi +1 x4 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (90) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Bibiki Urchin + Cheval Salmon + Black Sole + Gugru Tuna + Bird Egg + Ground Wasabi + Rice Vinegar + + NQ: Sublime Sushi x4 + + HQ1:Sublime Sushi x6 + HQ2:Sublime Sushi +1 x2 + HQ3:Sublime Sushi +1 x4 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (90) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Bibiki Urchin + Cheval Salmon + Black Sole + Gugru Tuna + Bird Egg + Wasabi + Rice Vinegar + + NQ: Soy Ramen x4 + + HQ1:Soy Ramen xInformation Needed + HQ2:Soy Ramen +1 xInformation Needed + HQ3:Soy Ramen +1 xInformation Needed + + FireCrystal-Icon.gif + +Main Craft: Cooking - (90) +Key Item: Noodle Kneading + + + Fire Crystal + Pamtam Kelp + Tiger Cod + Bird Egg + Cibol + Porxie Pork + Ramen Noodles + Soy Ramen Soup + Bamboo Shoots + + NQ: Miso Ramen x4 + + HQ1:Miso Ramen +1 x4 + HQ2:Miso Ramen +1 x6 + HQ3:Miso Ramen +1 x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (90) +Key Item: Noodle Kneading + + + Fire Crystal + Selbina Butter + Millioncorn + Rarab Tail + Porxie Pork + Ramen Noodles + Miso Ramen Soup + Bamboo Shoots + + NQ: Salt Ramen xInformation Needed + + HQ1:Salt Ramen xInformation Needed + HQ2:Salt Ramen +1 xInformation Needed + HQ3:Salt Ramen +1 xInformation Needed + + FireCrystal-Icon.gif + +Main Craft: Cooking - (90) +Key Item: Noodle Kneading + + + Fire Crystal + Kazham Peppers + Bastore Sardine + Batagreens + Black Prawn + Ramen Noodles + Salt Ramen Soup + Bamboo Shoots + + NQ: Vampire Juice + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (90) + + + Water Crystal + Cooking Kit 90 + + +Veteran (91-100) +Synthesis Information +Yield Requirements Ingredients + + NQ: Angler Stewpot + + HQ1:Prime Angler Stewpot + HQ2:Prized Angler Stewpot + + FireCrystal-Icon.gif + +Main Craft: Cooking - (91) +Key Item: Stewpot Mastery + + + Fire Crystal + Fish Stock + Danceshroom + Distilled Water + Cotton Tofu + Cibol + Shungiku + Shirataki + Orobon Meat + + NQ: Persikos au Lait + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (91) + + + Water Crystal + Persikos x2 + Honey + Selbina Milk + + NQ: Salmon Croute + + HQ1:Salmon Croute x2 + HQ2:Salmon Croute x3 + HQ3:Salmon Croute x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (91) + + + Fire Crystal + Grape Juice + Cheval Salmon + Sage + Pie Dough + Mhaura Garlic + Rock Salt + Crawler Egg + + NQ: Meatloaf + + HQ1:Meatloaf +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (91) + + + Fire Crystal + San d'Orian Flour + Blue Peas + Black Pepper + Rock Salt + Wild Onion + Bird Egg + Buffalo Meat + Lynx Meat + + NQ: Shadowy Broth x4 + + HQ1:Shadowy Broth x6 + HQ2:Shadowy Broth x8 + HQ3:Shadowy Broth x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (91) + + + Water Crystal + Dragon Meat + Nopales + Agaricus + + NQ: Flint Caviar x3 + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (92) + + + Dark Crystal + Rock Salt + Emperor Roe + + NQ: Tavnazian Salad + + HQ1:Leremieu Salad + + WindCrystal-Icon.gif + +Main Craft: Cooking - (92) + + + Wind Crystal + Apple Vinegar + Grimmonite + San d'Orian Carrot + Frost Turnip + Noble Lady + Bastore Bream + Flint Caviar + Beaugreens + + NQ: Mushroom Saute + + HQ1:Patriarch Saute + + FireCrystal-Icon.gif + +Main Craft: Cooking - (92) + + + Fire Crystal + Kazham Peppers + Mhaura Garlic + Selbina Butter + Danceshroom + Reishi Mushroom + Misx. Parsley + Walnut + Agaricus + + NQ: Seafood Paella + + HQ1:Piscator's Paella + + FireCrystal-Icon.gif + +Main Craft: Cooking - (92) + + + Fire Crystal + Mhaura Garlic + Tarutaru Rice + Saffron + Wild Onion + Distilled Water + Gigant Squid + Black Prawn + Mussel + + NQ: Mushroom Paella + + HQ1:Mushroom Paella +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (92) + + + Fire Crystal + Mhaura Garlic + Tarutaru Rice + Saffron + Wild Onion + Distilled Water + Woozyshroom + Danceshroom + Coral Fungus + + NQ: Beef Paella + + HQ1:Beef Paella +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (92) + + + Fire Crystal + Mhaura Garlic + Tarutaru Rice + Saffron + Wild Onion + Distilled Water + Buffalo Meat + Gigant Squid + Mussel + + NQ: Barnacle Paella + + HQ1:Flapano's Paella + + FireCrystal-Icon.gif + +Main Craft: Cooking - (92) + + + Fire Crystal + Mhaura Garlic + Tarutaru Rice + Saffron + Wild Onion + Distilled Water + Barnacle x2 + Mussel + + NQ: Coeurl Sub x6 + + HQ1:Coeurl Sub x12 + HQ2:Coeurl Sub +1 x6 + HQ3:Coeurl Sub +1 x12 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (93) + + + Earth Crystal + Selbina Butter + Crying Mustard + White Bread + La Theine Cabbage + Mithran Tomato + Coeurl Saute + + NQ: Dorado Sushi x2 + + HQ1:Dorado Sushi +1 x2 + HQ2:Dorado Sushi +1 x3 + HQ3:Dorado Sushi +1 x4 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (93) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Rice Vinegar + Noble Lady + Distilled Water + Ground Wasabi + + NQ: Flounder Meuniere + + HQ1:Flounder Meuniere +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (93) + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Black Pepper + Olive Oil + Rock Salt + Selbina Milk + Dil + + NQ: Flounder Meuniere + + HQ1:Flounder Meuniere +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (93) + + + Fire Crystal + Olive Oil + San d'Orian Flour + Selbina Butter + Selbina Milk + Black Sole + Rock Salt + Black Pepper + + NQ: Urchin Sushi + + HQ1:Urchin Sushi +1 + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (93) +Key Item: Raw Fish Handling + + + Earth Crystal + Tarutaru Rice + Rice Vinegar + Bibiki Urchin + Distilled Water + Pamtam Kelp + + NQ: Auroral Broth x4 + + HQ1:Auroral Broth x6 + HQ2:Auroral Broth x8 + HQ3:Auroral Broth x10 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (93) + + + Water Crystal + Aurora Bass + San d'Orian Flour + Distilled Water + + NQ: Black Curry + + FireCrystal-Icon.gif + +Main Craft: Cooking - (94) + + + Fire Crystal + Black Pepper + Curry Powder + Woozyshroom + Eggplant + Distilled Water + Lakerda + Ahtapot + + NQ: Black Curry + + FireCrystal-Icon.gif + +Main Craft: Cooking - (94) + + + Fire Crystal + Black Pepper + Curry Powder + Nebimonite + Woozyshroom + Eggplant + Gugru Tuna + Distilled Water + + NQ: Hedgehog Pie + + HQ1:Porcupine Pie + + FireCrystal-Icon.gif + +Main Craft: Cooking - (94) + + + Fire Crystal + Selbina Butter + Pie Dough + Blue Peas + Rock Salt + Lizard Egg + King Truffle + San d'Orian Carrot + Buffalo Meat + + NQ: Tonosama Rice Ball x2 + + HQ1:Shogun Rice Ball + HQ2:Shogun Rice Ball x2 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (94) + + + Fire Crystal + Tarutaru Rice + Pamtam Kelp + Flint Caviar + Rock Salt + Distilled Water + + NQ: Rabbit Pie + + FireCrystal-Icon.gif + +Main Craft: Cooking - (94) + + + Fire Crystal + Selbina Butter + Pie Dough + Black Pepper + Rock Salt + Wild Onion + San d'Orian Carrot + Lynx Meat + Agaricus + + NQ: Felicifruit Gelatin + + HQ1:Dulcet Panettones + + FireCrystal-Icon.gif + +Main Craft: Cooking - (94) + + + Fire Crystal + Maple Sugar x2 + Gelatin + San d'Orian Grape + Distilled Water + Felicifruit x2 + + NQ: Dragon Steak + + FireCrystal-Icon.gif + +Main Craft: Cooking - (95) + + + Fire Crystal + Olive Oil + San d'Orian Carrot + Black Pepper + Popoto + Rarab Tail + Bay Leaves + Rock Salt + Dragon Meat + + NQ: Persikos Tank + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (95) +Sub Craft(s): Leathercraft - (1) + + + Earth Crystal + Karakul Leather + Brass Tank + Persikos au Lait x4 + + NQ: Rice Dumpling x3 + + HQ1:Rice Dumpling x6 + HQ2:Rice Dumpling x9 + HQ3:Rice Dumpling x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (95) +Sub Craft(s): Woodworking - (15) + + + Fire Crystal + Maple Sugar + Bamboo Stick + Rock Salt + Sticky Rice + Dhalmel Meat + Coral Fungus + Distilled Water + + NQ: Hydra Kofte + + HQ1:Hydra Kofte +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (95) + + + Fire Crystal + Imperial Rice + Imperial Flour + Black Pepper + Olive Oil + Rock Salt + Wild Onion + Apkallu Egg + Hydra Meat + + NQ: Swirling Broth x4 + + HQ1:Viscous Broth x2 + HQ2:Viscous Broth x4 + HQ3:Viscous Broth x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (95) + + + Water Crystal + San d'Orian Carrot x3 + Verboshroom + + NQ: Dragon Steak + + FireCrystal-Icon.gif + +Main Craft: Cooking - (95) + + + Fire Crystal + Cooking Kit 95 + + NQ: Arrabbiata x2 + + HQ1:Arrabbiata x4 + HQ2:Arrabbiata +1 x2 + HQ3:Arrabbiata +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (96) +Key Item: Noodle Kneading + + + Fire Crystal + Kazham Peppers + Mhaura Garlic + Olive Oil + Rock Salt + Holy Basil + Spaghetti + Dragon Meat + Pomodoro Sauce + + NQ: Brain Stew + + HQ1:Sophic Stew + + FireCrystal-Icon.gif + +Main Craft: Cooking - (96) + + + Fire Crystal + Apple Vinegar + Yellow Globe + King Truffle + San d'Orian Flour + Gelatin + Distilled Water + Honey + Crying Mustard + + NQ: Shimmering Broth x4 + + HQ1:Fermented Broth x2 + HQ2:Fermented Broth x4 + HQ3:Fermented Broth x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (96) + + + Water Crystal + Ruddy Seema x4 + + NQ: Sea Bass Croute + + HQ1:Sea Bass Croute x2 + HQ2:Sea Bass Croute x3 + HQ3:Sea Bass Croute x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (97) + + + Fire Crystal + King Truffle + Grape Juice + Zafmlug Bass + Sage + Lizard Egg + Pie Dough + Mhaura Garlic + Rock Salt + + NQ: Humpty Dumpty + + FireCrystal-Icon.gif + +Main Craft: Cooking - (97) +Sub Craft(s): Clothcraft - (50) + + + Fire Crystal + Silk Cloth + Rock Salt + Pine Nuts + Simsim + Asphodel + Kazham Pineapple + Apkallu Egg + Burdock + + NQ: Dawn Mulsum + + IceCrystal-Icon.gif + +Main Craft: Cooking - (97) + + + Ice Crystal + Holy Water + White Honey + Grape Juice + + NQ: Spicy Broth x4 + + HQ1:Bubbly Broth x2 + HQ2:Bubbly Broth x4 + HQ3:Bubbly Broth x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (97) + + + Water Crystal + Mandragora Sprout x2 + Giant Sheep Meat + Isleracea + + NQ: Dragon Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (98) + + + Fire Crystal + Frost Turnip + Ginger + Black Pepper + Popoto + Mhaura Garlic + Wild Onion + Distilled Water + Dragon Meat + + NQ: Nopales Salad + + HQ1: Nopales Salad +1 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (98) + + + Wind Crystal + Kazham Peppers + Olive Oil + Rock Salt + Coriander + Kitron + Wild Onion + Mithran Tomato + Nopales + + NQ: Salubrious Broth x4 + + HQ1:Windy Greens x2 + HQ2:Windy Greens x4 + HQ3:Windy Greens x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (98) + + + Water Crystal + Gelatin + Akaso + Buffalo Meat + Apkallufa + + NQ: Seafood Gratin x4 + + HQ1:Seafood Gratin x6 + HQ2:Seafood Gratin +1 x2 + HQ3:Seafood Gratin +1 x4 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (98+) + + + Fire Crystal + San d'Orian Flour + Selbina Butter + Chalaimbille + Rock Salt + Danceshroom + Selbina Milk + Gigant Squid + Bastore Sweeper + + NQ: Cursed Beverage + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (99) + + + Dark Crystal + Kitron + Selbina Milk + Malboro Vine + Distilled Water + Divine Sap + + NQ: Sugary Broth x4 + + HQ1:Glazed Broth x2 + HQ2:Glazed Broth x4 + HQ3:Glazed Broth x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (99 Verification Needed) + + + Water Crystal + Walnut + Honey + Ulbuconut + Rolanberry + + NQ: Sweet Rice Cake x9 + + HQ1:Sweet Rice Cake x12 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (99) + + + Fire Crystal + Maple Sugar + Cinnamon + Sticky Rice + Gardenia Seed + Fresh Mugwort + Distilled Water + + NQ: Pork Cutlet x1 + + HQ1: Pork Cutlet +1 x1 + HQ2: Pork Cutlet +1 x2 + HQ3: Pork Cutlet +1 x3 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (99) + + + Fire Crystal + Porxie Pork + Bird Egg + Black Pepper + Olive Oil + Rock Salt + White Bread + + NQ: Cursed Soup + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (100) + + + Water Crystal + Kitron + Persikos + Royal Jelly + Distilled Water + Honey + + NQ: Sprightly Soup + + HQ1:Shimmy Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (100) + + + Fire Crystal + Rock Salt + Danceshroom + Wild Onion + Reishi Mushroom + Distilled Water + Agaricus + + NQ: Kitron Juice + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (100) + + + Water Crystal + Kitron x4 + + NQ: Poisonous Broth x4 + + HQ1:Venomous Broth x2 + HQ2:Venomous Broth x4 + HQ3:Venomous Broth x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (100) + + + Water Crystal + Gnatbane + Venom Dust + Distilled Water + Umbril Ooze + + NQ: Sticky Webbing x4 + + HQ1:Slimy Webbing x2 + HQ2:Slimy Webbing x4 + HQ3:Slimy Webbing x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (100) + + + Water Crystal + Gnat Wing + Twitherym Wing + Chapuli Wing + Mantid Carapace + + NQ: Fizzy Broth x4 + + HQ1:Tantalizing Broth x2 + HQ2:Tantalizing Broth x4 + HQ3:Tantalizing Broth x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (100) + + + Water Crystal + Tarutaru Rice + Millioncorn + Pine Nuts + Lucerewe Meat + + NQ: Electrified Broth x4 + + HQ1:Bug-Ridden Broth x2 + HQ2:Bug-Ridden Broth x4 + HQ3:Bug-Ridden Broth x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (100) + + + Water Crystal + Ladybug Wing + Gnat Wing + Panopt Tears + Snapweed Secretion + + NQ: Warthog Stewpot + + HQ1:Prime Warthog Stewpot + HQ2:Prized Warthog Stewpot + + FireCrystal-Icon.gif + +Main Craft: Cooking - (100) +Key Item: Stewpot Mastery + + + Fire Crystal + Soy Stock + Danceshroom + Distilled Water + Bird Egg + Cotton Tofu + Napa + Shungiku + Warthog Meat + + +Expert (101-110) +Synthesis Information +Yield Requirements Ingredients + + NQ: Red Curry + + FireCrystal-Icon.gif + +Main Craft: Cooking - (101) + + + Fire Crystal + Dragon Meat + Curry Powder + Coriander + San d'Orian Carrot + Mithran Tomato + Kazham Peppers + Distilled Water + + NQ: Omelette Sandwich x6 + + HQ1: Omelette Sandwich x8 + HQ2: Oml. Sandwich +1 x6 + HQ3: Oml. Sandwich +1 x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (101) + + + Fire Crystal + Selbina Butter + White Bread + Puk Egg + Apkallu Egg + Grauberg Lettuce + + NQ: Pickled Rarab Tail x12 + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (102) + + + Dark Crystal + Mhaura Garlic + Kazham Peppers + Kitron + Sea Foliage + Rock Salt + Water Barrel + Smooth Stone + Rarab Tail + + NQ: Fisherman's Feast + + FireCrystal-Icon.gif + +Main Craft: Cooking - (102) + + + Fire Crystal + Sausage x2 + Tonosama Rice Ball + Salmon Rice Ball + Winterflower + Apkallu Egg + Grauberg Lettuce + + NQ: Walnut Cookie x 33 + + HQ1:Juglan Jumble x33 + HQ2:Juglan Jumble x66 Verification Needed + HQ3:Juglan Jumble x99 Verification Needed + + FireCrystal-Icon.gif + +Main Craft: Cooking - (103) + + + Fire Crystal + Selbina Butter + Maple Sugar + Imperial Flour + Distilled Water + Apkallu Egg + Walnut + + NQ: Insipid Broth x4 + + HQ1: Deepwater Broth x2 + HQ2: Deepwater Broth x4 + HQ3: Deepwater Broth x8 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (103) + + + Water Crystal + Apkallufa + Yorchete + Senroh Sardine + + NQ: Wetlands Broth x4 + + HQ1: Heavenly Broth x2 + HQ2: Heavenly Broth x4 + HQ3: Heavenly Broth x8 + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (104) + + + Dark Crystal + Petrified Log + Loam + Snapweed Secretion + Distilled Water + + NQ: Soy Ramen Soup x6 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (104) + + + Fire Crystal + Chicken Bone x2 + Wild Onion + Cockatrice Meat + Distilled Water + Cibol + Soy Sauce + + NQ: Miso Ramen Soup x6 + + HQ1: Miso Ramen Soup x8 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (104) + + + Fire Crystal + Mhaura Garlic + Ginger Root + Chicken Bone x2 + Distilled Water + Miso + Soy Sauce + + NQ: Salt Ramen Soup x6 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (104) + + + Fire Crystal + Rock Salt + Lufet Salt + Cheval Salmon + Bluetail + Bastore Bream + Distilled Water + Vongola Clam + + NQ: Date Tea + + HQ:Caravan Tea + + FireCrystal-Icon.gif + +Main Craft: Cooking - (105) + + + Fire Crystal + Maple Sugar + Imperial Tea Leaves + Distilled Water + Date + + NQ: Dragon Fruit au Lait + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (105) + + + Water Crystal + Honey + Selbina Milk + Dragon Fruit x2 + + NQ: Rancid Broth x4 + + HQ1: Pungent Broth x2 + HQ2: Pungent Broth x4 + HQ3: Pungent Broth x6 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (105~106 Verification Needed) + + + Water Crystal + Frigorifish x4 + + NQ: Frizzante Broth x4 + + HQ1: Spumante Broth xInformation Needed + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (105~106 Verification Needed) + + + Water Crystal + Gelatin + Hare Meat + Karakul Meat + Ziz Meat + + NQ: Decaying Broth x4 + + HQ1: Putrescent Broth x2 + HQ2: Putrescent Broth x4 + HQ3: Putrescent Broth x6 + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (105~106 Verification Needed) + + + Water Crystal + Mercury + Distilled Water + Flan Meat + Rotten Meat + + NQ: Turpid Broth xInformation Needed + + HQ1: Feculent Broth xInformation Needed + + WaterCrystal-Icon.gif + +Main Craft: Cooking - (105~106 Verification Needed) + + + Water Crystal + Gelatin + Yawning Catfish + Warthog Meat + + NQ: Himesama R. Ball x4 + + HQ1:Ojo Rice Ball + + FireCrystal-Icon.gif + +Main Craft: Cooking - (107) + + + Fire Crystal + Distilled Water + Pamtam Kelp + Rock Salt + Tarutaru Rice + Buffalo Meat + Burdock + + NQ: Dragon Tank + + EarthCrystal-Icon.gif + +Main Craft: Cooking - (109) +Sub Craft(s): Leathercraft - (1) + + + Earth Crystal + Karakul Leather + Brass Tank + Dragon Fruit au Lait x4 + + NQ: Behemoth Steak + + HQ1:Behemoth Steak +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (110) + + + Fire Crystal + Selbina Butter + Popoto + Kitron + San d'Orian Carrot + Behemoth Meat + + NQ: Smoldering Salisbury Steak + + HQ1:Charred Salisbury Steak + + FireCrystal-Icon.gif + +Main Craft: Cooking - (110) + + + Fire Crystal + Black Pepper + Sage + Rock Salt + White Bread + Wild Onion + Bird Egg + Buffalo Meat + Cerberus Meat + + +Authority (111-120) +Synthesis Information +Yield Requirements Ingredients + + NQ: Altana's Repast + + HQ1: Altana's Repast +1 + HQ2: Altana's Repast +2 + + LightCrystal-Icon.gif + +Main Craft: Cooking - (111~114) +Key Item: Culinarian's aurum tome + + + Light Crystal + Holy Water x2 + Cursed Beverage + Cursed Soup + Orc Offering + Yagudo Offering + Quadav Offering + Goblin Offering + + NQ: Riverfin Soup + + HQ1:Oceanfin Soup + + FireCrystal-Icon.gif + +Main Craft: Cooking - (112) + + + Fire Crystal + Ginger Root + Chicken Bone + Rock Salt + Rockfin Fin + Distilled Water + Cibol + Isleracea + + NQ: Magma Steak + + HQ1:Magma Steak +1 + + FireCrystal-Icon.gif + +Main Craft: Cooking - (112) + + + Fire Crystal + Popoto + Bay Leaves + Black Pepper + Millioncorn + Olive Oil + Rock Salt + San d'Orian Carrot + Gabbrath Meat + + NQ: Cehuetzi Snow Cone x6 + + HQ1:Cehuetzi Snow Cone x12 + HQ2:Apingaut Snow Cone x6 + HQ3:Apingaut Snow Cone 12 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (112) + + + Wind Crystal + Maple Sugar + Rolanberry + Thundermelon x2 + Cehuetzi Ice Shard + + NQ: Cehuetzi Snow Cone x6 + + HQ1:Cehuetzi Snow Cone x12 + HQ2:Cyclical Coalescence x6 + HQ3:Cyclical Coalescence x12 + + WindCrystal-Icon.gif + +Main Craft: Cooking - (112) +Key Item: Patissier + + + Wind Crystal + Maple Sugar + Rolanberry + Honey + Thundermelon x2 + Cehuetzi Ice Shard + + NQ: R. Pickled R. Tail x12 Verification Needed + + DarkCrystal-Icon.gif + +Main Craft: Cooking - (115) + + + Dark Crystal + Rarab Tail x2 + Rolanberry + Apple Vinegar + Black Pepper + Maple Sugar + Rock Salt + Ro'Maeve Water + + NQ: Marine Stewpot + + HQ1: Prm. Mn. Stewpot + + FireCrystal-Icon.gif + +Main Craft: Cooking - (115~120) +Key Item: Culinarian's argentum tome + + + Fire Crystal + Fish Stock + Distilled Water + Mola Mola + Cotton Tofu + Cibol + Shungiku + Shirataki + Agaricus \ No newline at end of file diff --git a/datasets/Cooking_v2.csv b/datasets/Cooking_v2.csv new file mode 100644 index 0000000..f3d38f0 --- /dev/null +++ b/datasets/Cooking_v2.csv @@ -0,0 +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]" diff --git a/datasets/Goldsmithing.txt b/datasets/Goldsmithing.txt new file mode 100644 index 0000000..350d175 --- /dev/null +++ b/datasets/Goldsmithing.txt @@ -0,0 +1,8497 @@ +Goldsmithing Crafted Items +Amateur (1-10) +Synthesis Information +Yield Requirements Ingredients + + NQ: Zinc Oxide + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (1) + + + Fire Crystal + Zinc Ore x3 + + NQ: Stone Arrowheads x6 + + HQ1: Stone Arrowheads x8 + HQ2: Stone Arrowheads x10 + HQ3: Stone Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (2) + + + Wind Crystal + Flint Stone x2 + + NQ: Copper Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (3) + + + Fire Crystal + Copper Ore x4 + + NQ: Copper Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (4) + + + Fire Crystal + Copper Nugget x6 + Copper Ore + + NQ: Copper Ring + + HQ1: Copper Ring +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (5) + + + Fire Crystal + Copper Ingot x2 + + NQ: Copper Ring + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (5) + + + Fire Crystal + Goldsmithing Kit 5 + + NQ: Black Bolt Heads x6 + + HQ1: Black Bolt Heads x8 + HQ2: Black Bolt Heads x10 + HQ3: Black Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (6) + + + Wind Crystal + Obsidian x1 + + NQ: Copper Hairpin + + HQ1: Copper Hairpin +1 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (7) + + + Wind Crystal + Copper Ingot + + NQ: Sapara + + HQ1: Sapara +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (7) + + + Fire Crystal + Silver Ingot + Brass Ingot x2 + + NQ: Aht Urhgan Brass Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (8) + + + Fire Crystal + Aht Urhgan Brass x4 + + NQ: Brass Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (9) + + + Fire Crystal + Zinc Ore + Copper Ore x3 + + NQ: Circlet + + HQ1: Circlet +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (9) + + + Fire Crystal + Copper Ingot + Brass Ingot + + NQ: Brass Cap + + HQ1: Brass Cap +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (10) + + + Fire Crystal + Brass Ingot + Bronze Cap + + NQ: Brass Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (10) + + + Fire Crystal + Brass Nugget x6 + Zinc Ore + + NQ: Aht Urhgan Brass Sheet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (10) + + + Fire Crystal + Aht Urhgan Brass Ingot + + NQ: Aht Urhgan Brass Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (10) +Key Item: Sheeting + + + Fire Crystal + Aht Urhgan Brass Ingot x6 + Workshop Anvil + + NQ: Brass Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (10) + + + Fire Crystal + Goldsmithing Kit 10 + + +Recruit (11-20) +Synthesis Information +Yield Requirements Ingredients + + NQ: Brass Sheet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (11) + + + Fire Crystal + Brass Ingot + + NQ: Brass Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (11) +Key Item: Sheeting + + + Fire Crystal + Brass Ingot x6 + Workshop Anvil + + NQ: Brass Mittens + + HQ1: Brass Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (12) + + + Earth Crystal + Brass Ingot + Bronze Mittens + + NQ: Brass Axe + + HQ1: Brass Axe +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (12) + + + Fire Crystal + Brass Ingot + Bronze Axe + + NQ: Brass Scales + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (13) + + + Wind Crystal + Brass Sheet + + NQ: Brass Dagger + + HQ1: Brass Dagger +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (13) + + + Fire Crystal + Brass Ingot + Bronze Dagger + + NQ: Brass Leggings + + HQ1: Brass Leggings +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (14) + + + Earth Crystal + Brass Ingot + Bronze Leggings + + NQ: Brass Knuckles + + HQ1: Brass Knuckles +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (14) + + + Fire Crystal + Brass Ingot + Bronze Knuckles + + NQ: Obsidian Arrowheads x6 + + HQ1: Obsidian Arrowheads x8 + HQ2: Obsidian Arrowheads x10 + HQ3: Obsidian Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (14) + + + Wind Crystal + Obsidian x2 + + NQ: Brass Ring + + HQ1: Brass Ring +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (15) + + + Fire Crystal + Brass Ingot x2 + + NQ: Brass Zaghnal + + HQ1: Brass Zaghnal +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (15) + + + Fire Crystal + Brass Ingot + Bronze Zaghnal + + NQ: Bastokan Cap + + HQ1: Republic Cap + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (15) + + + Fire Crystal + Brass Ingot + Legionnaire's Cap + + NQ: Brass Zaghnal + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (15) + + + Fire Crystal + Goldsmithing Kit 15 + + NQ: Brass Subligar + + HQ1: Brass Subligar +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (16) + + + Fire Crystal + Brass Ingot + Bronze Subligar + + NQ: Brass Flowerpot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (16) + + + Fire Crystal + Brass Sheet x3 + + NQ: Piercing Dagger + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (16) +Key Item: Gold Ensorcellment + + + Fire Crystal + Lambent Water Cell + Lambent Wind Cell + Brass Dagger + + NQ: Brass Grip + + HQ1: Brass Grip +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (16) +Key Item: Chainwork + + + Fire Crystal + Brass Ingot x2 + Mandrel + + NQ: Brass Hairpin + + HQ1: Brass Hairpin +1 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (17) + + + Wind Crystal + Brass Ingot + + NQ: Brass Baghnakhs + + HQ1: Brass Baghnakhs +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (17) + + + Fire Crystal + Brass Ingot + Cat Baghnakhs + + NQ: Bastokan Mittens + + HQ1: Republic Mittens + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (17) + + + Fire Crystal + Brass Ingot + Legionnaire's Mittens + + NQ: Brass Harness + + HQ1: Brass Harness +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (18) + + + Earth Crystal + Brass Ingot + Brass Sheet + Bronze Harness + + NQ: Silver Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (18) + + + Fire Crystal + Silver Beastcoin x4 + + NQ: Keen Zaghnal + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (18) +Key Item: Gold Ensorcellment + + + Fire Crystal + Lambent Fire Cell + Lambent Earth Cell + Brass Zaghnal + + NQ: Brass Xiphos + + HQ1: Brass Xiphos +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (19) + + + Fire Crystal + Brass Ingot + Xiphos + + NQ: Brass Chain + + HQ1: Brass Chain x2 + HQ2: Brass Chain x3 + HQ3: Brass Chain x4 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (19) + + + Earth Crystal + Brass Ingot x2 + + NQ: Brass Chain x3 + + HQ1: Brass Chain x6 + HQ2: Brass Chain x9 + HQ3: Brass Chain x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (19) + + + Earth Crystal + Brass Ingot x6 + Workshop Anvil + + NQ: Bastokan Knuckles + + HQ1: Republic Knuckles + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (19) + + + Fire Crystal + Brass Ingot + Legionnaire's Knuckles + + NQ: Bastokan Leggings + + HQ1: Republic Leggings + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (19) + + + Fire Crystal + Brass Ingot + Legionnaire's Leggings + + NQ: Brass Tank + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (19) + + + Earth Crystal + Brass Sheet x3 + Animal Glue + + NQ: Silver Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) + + + Fire Crystal + Silver Ore x4 + + NQ: Rogue's Silver Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) +Key Item: Gold Ensorcellment + + + Fire Crystal + Ice Anima + Lightning Anima + Dark Anima + Silver Ore x4 + + NQ: Neutralizing Silver Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) +Key Item: Gold Ensorcellment + + + Fire Crystal + Fire Anima + Light Anima + Water Anima + Silver Ore x4 + + NQ: Tourmaline + + HQ1: Peridot + HQ2: Jadeite + HQ3: Emerald + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) + + + Wind Crystal + Green Rock + + NQ: Sardonyx + + HQ1: Garnet + HQ2: Sunstone + HQ3: Ruby + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) + + + Wind Crystal + Red Rock + + NQ: Amethyst + + HQ1: Ametrine + HQ2: Fluorite + HQ3: Spinel + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) + + + Wind Crystal + Purple Rock + + NQ: Amber + + HQ1: Sphene + HQ2: Chrysoberyl + HQ3: Topaz + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) + + + Wind Crystal + Yellow Rock + + NQ: Lapis Lazuli + + HQ1: Turquoise + HQ2: Aquamarine + HQ3: Sapphire + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) + + + Wind Crystal + Blue Rock + + NQ: Clear Topaz + + HQ1: Goshenite + HQ2: Zircon + HQ3: Diamond + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) + + + Wind Crystal + Translucent Rock + + NQ: Onyx + + HQ1: Onyx + HQ2: Painite + HQ3: Deathstone + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) + + + Wind Crystal + Black Rock + + NQ: Light Opal + + HQ1: Light Opal + HQ2: Moonstone + HQ3: Angelstone + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) + + + Wind Crystal + White Rock + + NQ: Rhodonite + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) + + + Wind Crystal + Scarlet Stone + + NQ: Ardent Jadeite + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) +Key Item: Gold Ensorcellment + + + Wind Crystal + Dark Anima + Fire Anima + Water Anima + Jadeite + + NQ: Mighty Sardonyx + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) +Key Item: Gold Ensorcellment + + + Wind Crystal + Fire Anima + Earth Anima + Dark Anima + Sardonyx + + NQ: Vision Amethyst Stone + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) +Key Item: Gold Ensorcellment + + + Wind Crystal + Earth Anima + Lightning Anima + Dark Anima + Amethyst + + NQ: Bastokan Scythe + + HQ1: Republic Scythe + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) + + + Fire Crystal + Brass Ingot + Legionnaire's Scythe + + NQ: Silver Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) + + + Fire Crystal + Goldsmithing Kit 20 + + NQ: Shower Stand + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (20) + + + Fire Crystal + Iron Ingot x2 + Gold Ingot + Sieglinde Putty + + +Initiate (21-30) +Synthesis Information +Yield Requirements Ingredients + + NQ: Bastokan Subligar + + HQ1: Republic Subligar + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (21) + + + Earth Crystal + Brass Sheet + Legionnaire's Subligar + + NQ: Poet's Circlet + + HQ1: Sage's Circlet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (21) + + + Fire Crystal + Copper Ingot + Mythril Ingot + + NQ: Sabiki Rig + + HQ1: Rogue Rig + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (21) +Sub Craft(s): Clothcraft - (6) + + + Earth Crystal + Copper Ingot x2 + Cotton Thread x3 + + NQ: Silver Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (21) + + + Fire Crystal + Silver Nugget x6 + Silver Ore + + NQ: Clear Topaz + + HQ1: Goshenite + HQ2: Zircon + HQ3: Koh-I-Noor + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (22) + + + Wind Crystal + Sparkling Stone + + NQ: Silver Earring + + HQ1: Silver Earring +1 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (22) + + + Wind Crystal + Silver Ingot x2 + + NQ: Silver Sheet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (22) + + + Fire Crystal + Silver Ingot + + NQ: Silver Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (22) +Key Item: Sheeting + + + Fire Crystal + Silver Ingot x6 + Workshop Anvil + + NQ: Bastokan Harness + + HQ1: Republic Harness + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (23) + + + Earth Crystal + Brass Sheet + Legionnaire's Harness + + NQ: Brass Rod + + HQ1: Brass Rod +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (23) + + + Fire Crystal + Brass Ingot + Bronze Rod + + NQ: Bastokan Leggings + + HQ1: Republic Leggings + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (24) + + + Earth Crystal + Brass Sheet + Legionnaire's Leggings + + NQ: Brass Hammer + + HQ1: Brass Hammer +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (24) + + + Fire Crystal + Brass Ingot + Bronze Hammer + + NQ: San d'Orian Sword + + HQ1: Kingdom Sword + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (24) + + + Fire Crystal + Brass Ingot + Royal Archer's Sword + + NQ: Amber Earring + + HQ1: Stamina Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (25) + + + Earth Crystal + Silver Earring + Amber + + NQ: Amethyst Earring + + HQ1: Balance Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (25) + + + Earth Crystal + Silver Earring + Amethyst + + NQ: Clear Earring + + HQ1: Knowledge Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (25) + + + Earth Crystal + Silver Earring + Clear Topaz + + NQ: Lapis Lazuli Earring + + HQ1: Tranquility Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (25) + + + Earth Crystal + Silver Earring + Lapis Lazuli + + NQ: Onyx Earring + + HQ1: Energy Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (25) + + + Earth Crystal + Silver Earring + Onyx + + NQ: Opal Earring + + HQ1: Hope Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (25) + + + Earth Crystal + Silver Earring + Light Opal + + NQ: Sardonyx Earring + + HQ1: Courage Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (25) + + + Earth Crystal + Silver Earring + Sardonyx + + NQ: Tourmaline Earring + + HQ1: Reflex Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (25) + + + Earth Crystal + Silver Earring + Tourmaline + + NQ: Silver Belt + + HQ1: Silver Belt +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (25) + + + Earth Crystal + Silver Ingot + Lizard Belt + + NQ: Silver Belt + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (25) + + + Earth Crystal + Goldsmithing Kit 25 + + NQ: Silver Arrowheads x6 + + HQ1: Silver Arrowheads x8 + HQ2: Silver Arrowheads x10 + HQ3: Silver Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (27) + + + Wind Crystal + Copper Ingot + Silver Ingot + + NQ: Silver Hairpin + + HQ1: Silver Hairpin +1 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (27) + + + Wind Crystal + Silver Ingot + + NQ: Bastokan Circlet + + HQ1: Republic Circlet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (28) + + + Fire Crystal + Mythril Ingot + Legionnaire's Circlet + + NQ: Thief's Tools x4 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (28) +Sub Craft(s): Smithing - (19), Woodworking - (13) + + + Fire Crystal + Copper Ingot + Iron Ingot + Yew Lumber + + NQ: Brass Mask + + HQ1: Brass Mask +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (29) + + + Earth Crystal + Brass Sheet + Dhalmel Leather + Faceguard + + NQ: Brass Finger Gauntlets + + HQ1: Brass Finger Gauntlets +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (30) + + + Earth Crystal + Brass Scales x2 + Cotton Thread + Leather Gloves + Dhalmel Leather + + NQ: Amber Earring + + HQ1: Stamina Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (30) + + + Earth Crystal + Silver Earring +1 + Amber + + NQ: Amethyst Earring + + HQ1: Balance Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (30) + + + Earth Crystal + Silver Earring +1 + Amethyst + + NQ: Clear Earring + + HQ1: Knowledge Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (30) + + + Earth Crystal + Silver Earring +1 + Clear Topaz + + NQ: Lapis Lazuli Earring + + HQ1: Tranquility Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (30) + + + Earth Crystal + Silver Earring +1 + Lapis Lazuli + + NQ: Onyx Earring + + HQ1: Energy Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (30) + + + Earth Crystal + Silver Earring +1 + Onyx + + NQ: Opal Earring + + HQ1: Hope Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (30) + + + Earth Crystal + Silver Earring +1 + Light Opal + + NQ: Sardonyx Earring + + HQ1: Courage Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (30) + + + Earth Crystal + Silver Earring +1 + Sardonyx + + NQ: Tourmaline Earring + + HQ1: Reflex Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (30) + + + Earth Crystal + Silver Earring +1 + Tourmaline + + NQ: Brass Finger Gauntlets + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (30) + + + Earth Crystal + Goldsmithing Kit 30 + + +Novice (31-40) +Synthesis Information +Yield Requirements Ingredients + + NQ: Hiraishin x33 + + HQ1: Hiraishin x66 + HQ2: Hiraishin x99 + HQ3: Hiraishin x99 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (31) + + + Fire Crystal + Copper Ingot + Silver Ingot + + NQ: Lady Bell + + HQ1: Lady Bell +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (31) +Sub Craft(s): Woodworking - (3) + + + Fire Crystal + Brass Ingot + Lauan Lumber + + NQ: Silver Ring + + HQ1: Silver Ring +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (32) + + + Fire Crystal + Silver Ingot x2 + + NQ: Brass Greaves + + HQ1: Brass Greaves +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (32) + + + Earth Crystal + Brass Scales x2 + Cotton Thread + Dhalmel Leather + Leather Highboots + + NQ: Silver Chain + + HQ1: Silver Chain x2 + HQ2: Silver Chain x3 + HQ3: Silver Chain x4 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (33) + + + Earth Crystal + Silver Ingot x2 + + NQ: Silver Chain x3 + + HQ1: Silver Chain x6 + HQ2: Silver Chain x9 + HQ3: Silver Chain x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (33) +Key Item: Chainwork + + + Earth Crystal + Silver Ingot x6 + Mandrel + + NQ: Spark Spear + + HQ1: Spark Spear +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (33) + + + Earth Crystal + Brass Spear + Copper Ingot + + NQ: Brass Cuisses + + HQ1: Brass Cuisses +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (34) + + + Earth Crystal + Brass Scales x2 + Cotton Thread + Dhalmel Leather + Leather Trousers + + NQ: Chain Belt + + HQ1: Chain Belt +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (34) + + + Earth Crystal + Silver Chain x3 + Silver Ingot + + NQ: Amber Ring + + HQ1: Stamina Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (35) + + + Earth Crystal + Amber + Silver Ring + + NQ: Amethyst Ring + + HQ1: Balance Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (35) + + + Earth Crystal + Amethyst + Silver Ring + + NQ: Clear Ring + + HQ1: Knowledge Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (35) + + + Earth Crystal + Clear Topaz + Silver Ring + + NQ: Lapis Lazuli Ring + + HQ1: Tranquility Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (35) + + + Earth Crystal + Lapis Lazuli + Silver Ring + + NQ: Onyx Ring + + HQ1: Energy Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (35) + + + Earth Crystal + Onyx + Silver Ring + + NQ: Opal Ring + + HQ1: Hope Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (35) + + + Earth Crystal + Light Opal + Silver Ring + + NQ: Sardonyx Ring + + HQ1: Courage Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (35) + + + Earth Crystal + Sardonyx + Silver Ring + + NQ: Tourmaline Ring + + HQ1: Reflex Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (35) + + + Earth Crystal + Tourmaline + Silver Ring + + NQ: Poisona Ring + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (35) + + + Fire Crystal + Neutralizing Silver Ingot + Silver Ring + + NQ: Tigereye Ring + + HQ1: Feral Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (35) + + + Earth Crystal + Tiger Eye + Silver Ring + + NQ: Tigereye Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (35) + + + Earth Crystal + Goldsmithing Kit 35 + + NQ: Brass Scale Mail + + HQ1: Brass Scale Mail +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (36) + + + Earth Crystal + Brass Scales x4 + Cotton Thread + Dhalmel Leather + Leather Vest + + NQ: Spark Bilbo + + HQ1: Spark Bilbo +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (36) + + + Earth Crystal + Bilbo + Copper Ingot + + NQ: Griot Belt + + HQ1: Griot Belt +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (36) + + + Earth Crystal + Quadav Silver + Silver Chain x3 + + NQ: Chain Gorget + + HQ1: Fine Gorget + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (37) + + + Earth Crystal + Silver Chain x3 + + NQ: Mighty Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (38) + + + Earth Crystal + Mighty Sardonyx + Sardonyx Ring + + NQ: Vision Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (38) + + + Earth Crystal + Vision Amethyst + Amethyst Ring + + NQ: Mythril Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (38) + + + Fire Crystal + Mythril Beastcoin x4 + + NQ: Spark Dagger + + HQ1: Spark Dagger +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (38) + + + Earth Crystal + Copper Ingot + Dagger + + NQ: Chain Choker + + HQ1: Red Choker + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (39) + + + Earth Crystal + Garnet + Silver Chain x2 + + NQ: Mythril Grip + + HQ1: Mythril Grip +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (39) +Key Item: Chainwork + + + Fire Crystal + Mandrel + Mythril Ingot x2 + + NQ: Focus Collar + + HQ1: Focus Collar +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (39) + + + Earth Crystal + Flawed Garnet + Silver Chain x2 + + NQ: Silver Mask + + HQ1: Silver Mask +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (39) + + + Fire Crystal + Iron Mask + Mercury + Silver Ingot + + NQ: Amber Ring + + HQ1: Stamina Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (40) + + + Earth Crystal + Amber + Silver Ring +1 + + NQ: Amethyst Ring + + HQ1: Balance Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (40) + + + Earth Crystal + Amethyst + Silver Ring +1 + + NQ: Clear Ring + + HQ1: Knowledge Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (40) + + + Earth Crystal + Clear Topaz + Silver Ring +1 + + NQ: Lapis Lazuli Ring + + HQ1: Tranquility Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (40) + + + Earth Crystal + Lapis Lazuli + Silver Ring +1 + + NQ: Onyx Ring + + HQ1: Energy Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (40) + + + Earth Crystal + Onyx + Silver Ring +1 + + NQ: Opal Ring + + HQ1: Hope Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (40) + + + Earth Crystal + Light Opal + Silver Ring +1 + + NQ: Sardonyx Ring + + HQ1: Courage Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (40) + + + Earth Crystal + Sardonyx + Silver Ring +1 + + NQ: Tourmaline Ring + + HQ1: Reflex Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (40) + + + Earth Crystal + Tourmaline + Silver Ring +1 + + NQ: Vivified Mythril + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (40) +Key Item: Gold Purification + + + Fire Crystal + Light Anima + Lightning Anima + Water Anima + Mythril Ore x4 + + NQ: Silver Mittens + + HQ1: Silver Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (40) + + + Earth Crystal + Chain Mittens + Silver Chain + + NQ: Mythril Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (40) + + + Fire Crystal + Mythril Ore x4 + + NQ: Mythril Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (40) + + + Fire Crystal + Goldsmithing Kit 40 + + +Apprentice (41-50) +Synthesis Information +Yield Requirements Ingredients + + NQ: Mythril Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (41) + + + Fire Crystal + Mythril Nugget x6 + Mythril Ore + + NQ: Mythril Sheet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (41) + + + Fire Crystal + Mythril Ingot + + NQ: Mythril Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (41) +Key Item: Sheeting + + + Fire Crystal + Mythril Ingot x6 + Workshop Anvil + + NQ: Mythril Mesh Sheet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (41) +Key Item: Gold Purification + + + Fire Crystal + Light Anima + Wind Anima x2 + Mythril Ingot + + NQ: Electrum Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (42) + + + Fire Crystal + Silver Ore + Gold Ore x3 + + NQ: Mythril Earring + + HQ1: Mythril Earring +1 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (42) + + + Wind Crystal + Mythril Ingot x2 + + NQ: Silver Greaves + + HQ1: Silver Greaves +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (42) + + + Fire Crystal + Greaves + Mercury + Silver Ingot + + NQ: Mythril Chain + + HQ1: Mythril Chain x2 + HQ2: Mythril Chain x3 + HQ3: Mythril Chain x4 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (43) + + + Earth Crystal + Mythril Ingot x2 + + NQ: Mythril Chain x3 + + HQ1: Mythril Chain x6 + HQ2: Mythril Chain x9 + HQ3: Mythril Chain x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (43) +Key Item: Chainwork + + + Earth Crystal + Mythril Ingot x6 + Mandrel + + NQ: Mythril Coil x3 + + HQ1: Mythril Coil x6 + HQ2: Mythril Coil x9 + HQ3: Mythril Coil x12 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (43) +Key Item: Chainwork + + + Wind Crystal + Mythril Ingot x2 + Mandrel + + NQ: Veldt Axe + + HQ1: Veldt Axe +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (43) + + + Fire Crystal + Brass Axe + Penumbral Brass Ingot + + NQ: Mythril Baselard + + HQ1: Fine Baselard + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (44) + + + Fire Crystal + Mythril Ingot + Steel Ingot + + NQ: Mythril Gear Machine + + HQ1: Mythril Gear Machine x2 + HQ2: Mythril Gear Machine x3 + HQ3: Mythril Gear Machine x4 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (44) +Key Item: Chainwork + + + Fire Crystal + Mythril Ingot + Mythril Sheet + + NQ: Silver Hose + + HQ1: Silver Hose +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (44) + + + Earth Crystal + Chain Hose + Silver Chain + + NQ: Spark Lance + + HQ1: Spark Lance +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (44) + + + Earth Crystal + Lance + Silver Ingot + + NQ: Ametrine Earring + + HQ1: Deft Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (45) + + + Earth Crystal + Ametrine + Mythril Earring + + NQ: Black Earring + + HQ1: Aura Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (45) + + + Earth Crystal + Black Pearl + Mythril Earring + + NQ: Blood Earring + + HQ1: Puissance Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (45) + + + Earth Crystal + Garnet + Mythril Earring + + NQ: Goshenite Earring + + HQ1: Wisdom Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (45) + + + Earth Crystal + Goshenite + Mythril Earring + + NQ: Pearl Earring + + HQ1: Loyalty Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (45) + + + Earth Crystal + Pearl + Mythril Earring + + NQ: Peridot Earring + + HQ1: Alacrity Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (45) + + + Earth Crystal + Peridot + Mythril Earring + + NQ: Sphene Earring + + HQ1: Verve Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (45) + + + Earth Crystal + Sphene + Mythril Earring + + NQ: Turquoise Earring + + HQ1: Solace Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (45) + + + Earth Crystal + Turquoise + Mythril Earring + + NQ: Reraise Earring + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (45) + + + Wind Crystal + Vivified Mythril + Mythril Earring + + NQ: Electrum Chain + + HQ1: Electrum Chain x2 + HQ2: Electrum Chain x3 + HQ3: Electrum Chain x4 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (45) + + + Earth Crystal + Electrum Ingot x2 + + NQ: Electrum Chain x3 + + HQ1: Electrum Chain x6 + HQ2: Electrum Chain x9 + HQ3: Electrum Chain x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (45) +Key Item: Chainwork + + + Earth Crystal + Electrum Ingot x6 + Mandrel + + NQ: Peridot Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (45) + + + Earth Crystal + Goldsmithing Kit 45 + + NQ: Hydro Axe + + HQ1: Hydro Axe +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (46) + + + Fire Crystal + Animal Glue + Greataxe + Mythril Sheet + + NQ: Silver Mail + + HQ1: Silver Mail +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (46) + + + Fire Crystal + Chainmail + Silver Chain x2 + + NQ: Sollerets + + HQ1: Sollerets +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (46) + + + Fire Crystal + Greaves + Mythril Sheet x2 + + NQ: Gold Dust x12 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (47) + + + Wind Crystal + Brass Ingot + Copper Ingot + + NQ: Mufflers + + HQ1: Mufflers +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (47) + + + Earth Crystal + Chain Mittens + Mythril Sheet x2 + + NQ: Mythril Ring + + HQ1: Mythril Ring +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (47) + + + Fire Crystal + Mythril Ingot x2 + + NQ: Scope x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (47) +Sub Craft(s): Alchemy - (11) +Key Item: Clockmaking + + + Earth Crystal + Artificial Lens x2 + Brass Sheet + Glass Fiber + Mythril Gear Machine + + NQ: Aluminum Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (48) + + + Fire Crystal + Aluminum Ore x4 + + NQ: Banded Helm + + HQ1: Banded Helm +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (48) +Sub Craft(s): Smithing - (14) + + + Fire Crystal + Copper Ingot + Iron Sheet + Mythril Chain + Mythril Sheet + Sheep Leather + + NQ: Breeches + + HQ1: Breeches +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (48) +Sub Craft(s): Leathercraft - (9) + + + Earth Crystal + Linen Cloth + Mythril Chain x2 + Ram Leather x2 + + NQ: Buckler + + HQ1: Buckler +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (49) + + + Earth Crystal + Mythril Sheet x2 + Targe + + NQ: Heatsink x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (49) +Key Item: Clockmaking + + + Earth Crystal + Hydro Pump + Water Tank + Sieglinde Putty + Mythril Sheet + Mythril Gear Machine + + NQ: San d'Orian Dagger + + HQ1: Kingdom Dagger + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (49) + + + Fire Crystal + Mythril Ingot + Royal Squire's Dagger + + NQ: Silver Bangles + + HQ1: Silver Bangles +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (49) + + + Fire Crystal + Silver Ingot x3 + + NQ: Spark Degen + + HQ1: Spark Degen +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (49) + + + Earth Crystal + Silver Ingot + Mythril Degen + + NQ: Ametrine Earring + + HQ1: Deft Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (50) + + + Earth Crystal + Ametrine + Mythril Earring +1 + + NQ: Black Earring + + HQ1: Aura Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (50) + + + Earth Crystal + Black Pearl + Mythril Earring +1 + + NQ: Blood Earring + + HQ1: Puissance Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (50) + + + Earth Crystal + Garnet + Mythril Earring +1 + + NQ: Goshenite Earring + + HQ1: Wisdom Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (50) + + + Earth Crystal + Goshenite + Mythril Earring +1 + + NQ: Pearl Earring + + HQ1: Loyalty Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (50) + + + Earth Crystal + Pearl + Mythril Earring +1 + + NQ: Peridot Earring + + HQ1: Alacrity Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (50) + + + Earth Crystal + Peridot + Mythril Earring +1 + + NQ: Sphene Earring + + HQ1: Verve Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (50) + + + Earth Crystal + Sphene + Mythril Earring +1 + + NQ: Turquoise Earring + + HQ1: Solace Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (50) + + + Earth Crystal + Turquoise + Mythril Earring +1 + + NQ: Aero Mufflers + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (50) + + + Earth Crystal + Mufflers + Mythril Mesh Sheet + + NQ: Aluminum Sheet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (50) + + + Fire Crystal + Aluminum Ingot + + NQ: Aluminum Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (50) +Key Item: Sheeting + + + Fire Crystal + Aluminum Ingot x6 + Workshop Anvil + + NQ: Banded Mail + + HQ1: Banded Mail +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (50) +Sub Craft(s): Clothcraft - (13) + + + Earth Crystal + Linen Cloth + Mythril Chain x4 + Mythril Sheet x2 + + NQ: Spark Baselard + + HQ1: Spark Baselard +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (50) + + + Earth Crystal + Silver Ingot + Mythril Baselard + + NQ: Aluminum Sheet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (50) + + + Fire Crystal + Goldsmithing Kit 50 + + +Journeyman (51-60) +Synthesis Information +Yield Requirements Ingredients + + NQ: San d'Orian Sollerets + + HQ1: Kingdom Sollerets + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (51) + + + Earth Crystal + Mythril Chain + Royal Squire's Sollerets + + NQ: Wingedge + + HQ1: Wingedge +1 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (51) + + + Wind Crystal + Cotton Thread + Mythril Ingot + Silver Ingot + + NQ: Hydro Baghnakhs + + HQ1: Hydro Baghnakhs +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (51) + + + Fire Crystal + Animal Glue + Brass Baghnakhs + Mythril Sheet + + NQ: Tension Spring x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (51) +Key Item: Clockmaking + + + Earth Crystal + Darksteel Ingot + Mythril Coil x2 + Mythril Gear Machine + Slime Oil + + NQ: Auto-Repair Kit x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (51) +Sub Craft(s): Alchemy - (29) +Key Item: Clockmaking + + + Fire Crystal + Glass Fiber + Glass Sheet + Mythril Sheet + Hi-Potion Tank + Kilo Pump + + NQ: Amber + + HQ1: Sphene + HQ2: Chrysoberyl + HQ3: Soil Gem + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (51) + + + Wind Crystal + Soil Geode + + NQ: Amethyst + + HQ1: Ametrine + HQ2: Fluorite + HQ3: Thunder Gem + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (51) + + + Wind Crystal + Thunder Geode + + NQ: Clear Topaz + + HQ1: Goshenite + HQ2: Zircon + HQ3: Snow Gem + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (51) + + + Wind Crystal + Snow Geode + + NQ: Lapis Lazuli + + HQ1: Turquoise + HQ2: Aquamarine + HQ3: Aqua Gem + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (51) + + + Wind Crystal + Aqua Geode + + NQ: Light Opal + + HQ1: Light Opal + HQ2: Moonstone + HQ3: Light Gem + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (51) + + + Wind Crystal + Light Geode + + NQ: Onyx + + HQ1: Onyx + HQ2: Painite + HQ3: Shadow Gem + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (51) + + + Wind Crystal + Shadow Geode + + NQ: Sardonyx + + HQ1: Garnet + HQ2: Sunstone + HQ3: Flame Gem + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (51) + + + Wind Crystal + Flame Geode + + NQ: Tourmaline + + HQ1: Peridot + HQ2: Jadeite + HQ3: Breeze Gem + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (51) + + + Wind Crystal + Breeze Geode + + NQ: Gold Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (51) + + + Fire Crystal + Gold Beastcoin x4 + + NQ: Hydro Cutter + + HQ1: Hydro Cutter +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (52) + + + Fire Crystal + Animal Glue + Heavy Axe + Mythril Sheet + + NQ: Mythril Degen + + HQ1: Mythril Degen +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (52) +Sub Craft(s): Smithing - (21) + + + Fire Crystal + Iron Ingot + Mythril Ingot x2 + + NQ: Palmer's Bangles + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (52) + + + Fire Crystal + Rogue's Silver + Silver Bangles + + NQ: San d'Orian Mufflers + + HQ1: Kingdom Mufflers + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (52) + + + Earth Crystal + Mythril Chain + Royal Squire's Mufflers + + NQ: Shock Absorber x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (52) +Sub Craft(s): Smithing - (30), Alchemy - (19) +Key Item: Clockmaking + + + Fire Crystal + Bomb Ash + Carbon Fiber + Darksteel Sheet + Imperial Cermet + Iron Sheet + + NQ: Scope II x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (52) +Sub Craft(s): Alchemy - (??) +Key Item: Clockmaking + + + Earth Crystal + Glass Fiber + Artificial Lens x2 + Golden Gear + Aht Urhgan Brass Sheet + + NQ: Bewitched Gold Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (53) +Key Item: Gold Purification + + + Fire Crystal + Fire Anima + Ice Anima + Light Anima + Gold Ore x4 + + NQ: Indurated Gold Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (53) +Key Item: Gold Purification + + + Fire Crystal + Earth Anima x2 + Light Anima + Gold Ore x4 + + NQ: Gold Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (53) + + + Fire Crystal + Gold Ore x4 + + NQ: Royal Squire's Breeches +1 + + HQ1: Royal Squire's Breeches +2 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (53) + + + Earth Crystal + Mythril Chain + Royal Squire's Breeches + + NQ: San d'Orian Helm + + HQ1: Kingdom Helm + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (53) + + + Earth Crystal + Mythril Sheet + Royal Squire's Helm + + NQ: Spark Fork + + HQ1: Spark Fork +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (53) + + + Earth Crystal + Mythril Ingot + Battle Fork + + NQ: Golden Coil x3 + + HQ1: Golden Coil x6 + HQ2: Golden Coil x9 + HQ3: Golden Coil x12 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (53) +Key Item: Chainwork + + + Wind Crystal + Gold Ingot x2 + Mandrel + + NQ: Resister x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (53) +Sub Craft(s): Alchemy - (??) +Key Item: Clockmaking + + + Fire Crystal + Blessed Mythril Sheet + Goblin Grease + Ebonite + Water Tank + Hydro Pump + + NQ: Gold Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (54) + + + Fire Crystal + Gold Nugget x6 + Gold Ore + + NQ: Gold Nugget + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (54) + + + Fire Crystal + Auric Sand x4 + + NQ: Gold Sheet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (54) + + + Fire Crystal + Gold Ingot + + NQ: Gold Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (54) +Key Item: Sheeting + + + Fire Crystal + Gold Ingot x6 + Workshop Anvil + + NQ: Golden Gear + + HQ1: Golden Gear x2 + HQ2: Golden Gear x3 + HQ3: Golden Gear x4 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (54) +Key Item: Clockmaking + + + Fire Crystal + Gold Sheet + Mythril Ingot + + NQ: Volt Gun x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (54) +Sub Craft(s): Alchemy - (27) +Key Item: Clockmaking + + + Fire Crystal + Battery + Ebonite + Gold Sheet + Hiraishin + Mythril Gear Machine + + NQ: Candle Holder + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (54) +Sub Craft(s): Alchemy - (5) + + + Fire Crystal + Beeswax + Brass Ingot x3 + Gold Ingot + + NQ: Ametrine Ring + + HQ1: Deft Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (55) + + + Earth Crystal + Ametrine + Mythril Ring + + NQ: Black Ring + + HQ1: Aura Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (55) + + + Earth Crystal + Black Pearl + Mythril Ring + + NQ: Garnet Ring + + HQ1: Puissance Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (55) + + + Earth Crystal + Garnet + Mythril Ring + + NQ: Goshenite Ring + + HQ1: Wisdom Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (55) + + + Earth Crystal + Goshenite + Mythril Ring + + NQ: Pearl Ring + + HQ1: Loyalty Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (55) + + + Earth Crystal + Pearl + Mythril Ring + + NQ: Peridot Ring + + HQ1: Alacrity Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (55) + + + Earth Crystal + Peridot + Mythril Ring + + NQ: Sphene Ring + + HQ1: Verve Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (55) + + + Earth Crystal + Sphene + Mythril Ring + + NQ: Turquoise Ring + + HQ1: Solace Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (55) + + + Earth Crystal + Turquoise + Mythril Ring + + NQ: Gold Chain + + HQ1: Gold Chain x2 + HQ2: Gold Chain x3 + HQ3: Gold Chain x4 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (55) + + + Earth Crystal + Gold Ingot x2 + + NQ: Gold Chain x3 + + HQ1: Gold Chain x6 + HQ2: Gold Chain x9 + HQ3: Gold Chain x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (55) +Key Item: Chainwork + + + Earth Crystal + Gold Ingot x6 + Mandrel + + NQ: Royal Squire's Chainmail +1 + + HQ1: Royal Squire's Chainmail +2 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (55) + + + Earth Crystal + Mythril Chain + Royal Squire's Chainmail + + NQ: Barrier Module x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (55) +Sub Craft(s): Alchemy - (??) +Key Item: Clockmaking + + + Fire Crystal + Slime Oil + Glass Fiber + Mythril Coil + Mythril Gear Machine + + NQ: Speedloader x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (55) +Sub Craft(s): Alchemy - (??) +Key Item: Clockmaking + + + Fire Crystal + Slime Oil + Mythril Sheet + Glass Fiber + Mythril Coil + Mythril Gear Machine + + NQ: Heater Shield + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (55) + + + Earth Crystal + Goldsmithing Kit 55 + + NQ: Combat Caster's Boomerang +1 + + HQ1: Combat Caster's Boomerang +2 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (56) + + + Fire Crystal + Mythril Ingot + Combat Caster's Boomerang + + NQ: Heater Shield + + HQ1: Heater Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (56) + + + Earth Crystal + Mythril Sheet x2 + Kite Shield + + NQ: Mana Tank x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (56) +Sub Craft(s): Alchemy - (29) +Key Item: Clockmaking + + + Fire Crystal + Glass Sheet + Mercury + Sieglinde Putty + Hi-Ether Tank + Hydro Pump + + NQ: Mythril Gorget + + HQ1: Noble's Gorget + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (56) + + + Fire Crystal + Gold Ingot + Jadeite + Mercury + Mythril Chain + Mythril Sheet + + NQ: Gold Earring + + HQ1: Gold Earring +1 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (57) + + + Wind Crystal + Gold Ingot x2 + + NQ: Melody Earring + + HQ1: Melody Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (57) + + + Earth Crystal + Mythril Earring + Southern Pearl + + NQ: Reaver Grip + + HQ1: Reaver Grip +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (57) +Key Item: Chainwork + + + Earth Crystal + Malebolge Mandrel + Mythril Ingot x2 + + NQ: Shock Absorber II x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (57) +Sub Craft(s): Smithing - (??), Alchemy - (??) +Key Item: Clockmaking + + + Fire Crystal + Adaman Sheet + Carbon Fiber + Cluster Ash + Dark Adaman + Imperial Cermet + + NQ: Scope III x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (57) +Sub Craft(s): Alchemy - (??) +Key Item: Clockmaking + + + Earth Crystal + Glass Fiber + Artificial Lens x2 + Aht Urhgan Brass Sheet + Platinum Gear + + NQ: Accelerator x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (58) +Sub Craft(s): Alchemy - (29) +Key Item: Clockmaking + + + Fire Crystal + Coeurl Whisker + Goblin Grease + Imperial Cermet + Mythril Gear Machine + Wind Fan + + NQ: Aluminum Chain + + HQ1: Aluminum Chain x2 + HQ2: Aluminum Chain x3 + HQ3: Aluminum Chain x4 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (58) + + + Earth Crystal + Aluminum Ingot x2 + + NQ: Aluminum Chain x3 + + HQ1: Aluminum Chain x6 + HQ2: Aluminum Chain x9 + HQ3: Aluminum Chain x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (58) +Key Item: Sheeting + + + Earth Crystal + Aluminum Ingot x6 + Mandrel + + NQ: Gold Hairpin + + HQ1: Gold Hairpin +1 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (58) + + + Wind Crystal + Gold Ingot + + NQ: Spark Rapier + + HQ1: Spark Rapier +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (58) + + + Earth Crystal + Mythril Ingot + Rapier + + NQ: Resister II x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (58) +Sub Craft(s): Alchemy - (??) +Key Item: Clockmaking + + + Fire Crystal + Blessed Mythril Sheet + Goblin Grease + Ebonite + Water Tank + Kilo Pump + + NQ: Chakram + + HQ1: Chakram +1 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (59) +Sub Craft(s): Smithing - (31) + + + Wind Crystal + Gold Ingot + Mercury + Steel Ingot + + NQ: Hydro Claws + + HQ1: Hydro Claws +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (59) + + + Fire Crystal + Animal Glue + Claws + Mythril Sheet + + NQ: Mana Jammer x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (59) +Sub Craft(s): Alchemy - (12) +Key Item: Clockmaking + + + Fire Crystal + Artificial Lens + Blessed Mythril Sheet + Hydro Pump + Sieglinde Putty + Water Tank + + NQ: Wing Gorget + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (59) + + + Earth Crystal + Ardent Jadeite + Mythril Gorget + + NQ: Ametrine Ring + + HQ1: Deft Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (60) + + + Earth Crystal + Ametrine + Mythril Ring +1 + + NQ: Black Ring + + HQ1: Aura Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (60) + + + Earth Crystal + Black Pearl + Mythril Ring +1 + + NQ: Garnet Ring + + HQ1: Puissance Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (60) + + + Earth Crystal + Garnet + Mythril Ring +1 + + NQ: Goshenite Ring + + HQ1: Wisdom Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (60) + + + Earth Crystal + Goshenite + Mythril Ring +1 + + NQ: Pearl Ring + + HQ1: Loyalty Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (60) + + + Earth Crystal + Pearl + Mythril Ring +1 + + NQ: Peridot Ring + + HQ1: Alacrity Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (60) + + + Earth Crystal + Peridot + Mythril Ring +1 + + NQ: Sphene Ring + + HQ1: Verve Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (60) + + + Earth Crystal + Sphene + Mythril Ring +1 + + NQ: Turquoise Ring + + HQ1: Solace Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (60) + + + Earth Crystal + Turquoise + Mythril Ring +1 + + NQ: Gold Ring + + HQ1: Gold Ring +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (60) + + + Fire Crystal + Gold Ingot x2 + + NQ: Spark Kris + + HQ1: Spark Kris +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (60) + + + Earth Crystal + Mythril Ingot + Darksteel Kris + + NQ: Gold Arrowheads x6 + + HQ1: Gold Arrowheads x8 + HQ2: Gold Arrowheads x10 + HQ3: Gold Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (60) + + + Wind Crystal + Copper Ingot + Gold Ingot + + NQ: Aquamarine + + HQ1: Sapphire + HQ2: Tanzanite Jewel + HQ3: Tanzanite Jewel + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (60) + + + Wind Crystal + Scholar Stone + + NQ: Speedloader II x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (60) +Sub Craft(s): Alchemy - (??) +Key Item: Clockmaking + + + Fire Crystal + Slime Oil + Gold Sheet + Glass Fiber + Mythril Coil + Mythril Gear Machine + + NQ: Mythril Cuisses + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (60) + + + Fire Crystal + Goldsmithing Kit 60 + + +Craftsman (61-70) +Synthesis Information +Yield Requirements Ingredients + + NQ: Auto-Repair Kit II x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (61) +Sub Craft(s): Alchemy - (29) +Key Item: Clockmaking + + + Fire Crystal + Glass Fiber + Glass Sheet + Gold Sheet + Hi-Potion Tank + Kilo Pump + + NQ: Tension Spring II x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (61) +Key Item: Clockmaking + + + Earth Crystal + Darksteel Ingot + Golden Gear + Mythril Coil x2 + Slime Oil + + NQ: Mythril Cuisses + + HQ1: Mythril Cuisses +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (61) + + + Fire Crystal + Mythril Sheet x2 + Ram Leather + + NQ: Platinum Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (61) + + + Fire Crystal + Platinum Beastcoin x4 + + NQ: Hydro Chopper + + HQ1: Hydro Chopper +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (62) + + + Fire Crystal + Animal Glue + Heavy Darksteel Axe + Mythril Sheet + + NQ: Mythril Sallet + + HQ1: Mythril Sallet +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (62) + + + Fire Crystal + Copper Ingot + Darksteel Sheet + Mythril Sheet + Sheep Leather + + NQ: Platinum Grip + + HQ1: Platinum Grip +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (62) +Key Item: Chainwork + + + Fire Crystal + Mandrel + Platinum Ingot x2 + + NQ: Shock Absorber III x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (62) +Sub Craft(s): Smithing - (??), Alchemy - (??) +Key Item: Clockmaking + + + Fire Crystal + Carbon Fiber + Dark Adaman Sheet + Imperial Cermet + Djinn Ash + Titanium Sheet + + NQ: Scope IV x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (62) +Sub Craft(s): Alchemy - (??) +Key Item: Clockmaking + + + Fire Crystal + Glass Fiber + Artificial Lens x2 + Aht Urhgan Brass Sheet + Orichalcum Gearbox + + NQ: Platinum Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (63) + + + Fire Crystal + Platinum Ore x4 + + NQ: Vivio Platinum Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (63) +Key Item: Gold Purification + + + Fire Crystal + Platinum Ore x4 + Light Anima + Water Anima + Wind Anima + + NQ: Oberon's Sainti + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (63) +Sub Craft(s): Woodworking - (31~), Smithing - (45) + + + Fire Crystal + Steel Ingot + Darksteel Ingot + Ebony Lumber + Platinum Ingot + Mercury + Oberon's Gold Ingot + + NQ: Oberon's Knuckles + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (63) +Sub Craft(s): Woodworking - (31~), Smithing - (53~) + + + Fire Crystal + Darksteel Ingot + Mahogany Lumber + Gargouille Eye x2 + Oberon's Gold Ingot + + NQ: Hosodachi + + HQ1: Hosodachi +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (63) +Sub Craft(s): Alchemy - (57), Leathercraft - (40) + + + Fire Crystal + Ash Lumber + Iron Ingot x2 + Cermet Chunk + Raptor Skin + Silver Ingot + Silver Thread + Tama-Hagane + + NQ: Clear Topaz + + HQ1: Goshenite + HQ2: Zircon + HQ3: Clarite + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (63) + + + Wind Crystal + Gelid Aggregate + + NQ: Mythril Leggings + + HQ1: Mythril Leggings +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (64) + + + Fire Crystal + Darksteel Sheet + Mythril Sheet x2 + Ram Leather x2 + + NQ: Platinum Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (64) + + + Fire Crystal + Platinum Nugget x6 + Platinum Ore + + NQ: Platinum Sheet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (64) + + + Fire Crystal + Platinum Ingot + + NQ: Platinum Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (64) +Key Item: Sheeting + + + Fire Crystal + Platinum Ingot x6 + Workshop Anvil + + NQ: Platinum Gear + + HQ1: Platinum Gear x2 + HQ2: Platinum Gear x3 + HQ3: Platinum Gear x4 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (64) +Key Item: Chainwork + + + Fire Crystal + Platinum Ingot + Platinum Sheet + + NQ: Aquamarine Earring + + HQ1: Serenity Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (65) + + + Earth Crystal + Aquamarine + Gold Earring + + NQ: Green Earring + + HQ1: Celerity Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (65) + + + Earth Crystal + Jadeite + Gold Earring + + NQ: Moon Earring + + HQ1: Allure Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (65) + + + Earth Crystal + Moonstone + Gold Earring + + NQ: Night Earring + + HQ1: Mana Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (65) + + + Earth Crystal + Painite + Gold Earring + + NQ: Purple Earring + + HQ1: Grace Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (65) + + + Earth Crystal + Fluorite + Gold Earring + + NQ: Sun Earring + + HQ1: Victory Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (65) + + + Earth Crystal + Sunstone + Gold Earring + + NQ: Yellow Earring + + HQ1: Vigor Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (65) + + + Earth Crystal + Chrysoberyl + Gold Earring + + NQ: Zircon Earring + + HQ1: Genius Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (65) + + + Earth Crystal + Zircon + Gold Earring + + NQ: Junior Musketeer's Chakram +1 + + HQ1: Junior Musketeer's Chakram +2 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (65) + + + Fire Crystal + Gold Ingot + Mercury + Junior Musketeer's Chakram + + NQ: Platinum Chain + + HQ1: Platinum Chain x2 + HQ2: Platinum Chain x3 + HQ3: Platinum Chain x4 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (65) + + + Earth Crystal + Platinum Ingot x2 + + NQ: Platinum Chain x3 + + HQ1: Platinum Chain x6 + HQ2: Platinum Chain x9 + HQ3: Platinum Chain x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (65) +Key Item: Chainwork + + + Earth Crystal + Platinum Ingot x6 + Mandrel + + NQ: Moon Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (65) + + + Earth Crystal + Goldsmithing Kit 65 + + NQ: Mana Tank II x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (66) +Sub Craft(s): Alchemy - (29) +Key Item: Clockmaking + + + Fire Crystal + Sieglinde Putty + Mercury + Glass Sheet + Hi-Ether Tank + Kilo Pump + + NQ: Mythril Gauntlets + + HQ1: Mythril Gauntlets +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (66) + + + Fire Crystal + Darksteel Sheet + Mythril Sheet + Leather Gloves x2 + + NQ: Sainti + + HQ1: Sainti +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (66) +Sub Craft(s): Woodworking - (32) + + + Fire Crystal + Brass Ingot + Gold Ingot x2 + Mercury + Rosewood Lumber + Steel Ingot + + NQ: Girandola + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (66) +Sub Craft(s): Alchemy - (10) + + + Fire Crystal + Beeswax x2 + Gold Ingot x2 + + NQ: Auto-Repair Kit III x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (66) +Sub Craft(s): Alchemy - (??) +Key Item: Clockmaking + + + Fire Crystal + Platinum Sheet + Glass Fiber + Glass Sheet + Hi-Potion Tank + Mega Pump + + NQ: Tension Spring III x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (66) +Key Item: Clockmaking + + + Earth Crystal + Slime Oil + Darksteel Ingot + Mythril Coil x2 + Platinum Gear + + NQ: Mythril Breastplate + + HQ1: Mythril Breastplate +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (67) + + + Fire Crystal + Darksteel Sheet x2 + Mythril Sheet x2 + Ram Leather x2 + + NQ: Hydro Patas + + HQ1: Hydro Patas +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (67) + + + Fire Crystal + Animal Glue + Bone Patas + Mythril Sheet + + NQ: Tsurugitachi + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (67) +Key Item: Gold Ensorcellment + + + Fire Crystal + Lambent Fire Cell + Lambent Wind Cell + Hosodachi + + NQ: Platinum Earring + + HQ1: Platinum Earring +1 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (68) + + + Wind Crystal + Platinum Ingot x2 + + NQ: Accelerator II x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (68) +Sub Craft(s): Alchemy - (29) +Key Item: Clockmaking + + + Fire Crystal + Coeurl Whisker + Goblin Grease + Golden Gear + Imperial Cermet + Kilo Fan + + NQ: Oberon's Rapier + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (68) +Sub Craft(s): Smithing - (28) + + + Fire Crystal + Steel Ingot x2 + Mercury + Fluorite + Oberon's Gold Ingot + + NQ: Mailbreaker + + HQ1: Mailbreaker +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (69) + + + Fire Crystal + Bilbo + Mercury + Gold Ingot + + NQ: Mana Jammer II x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (69) +Sub Craft(s): Alchemy - (12) +Key Item: Clockmaking + + + Fire Crystal + Artificial Lens + Blessed Mythril Sheet + Sieglinde Putty + Water Tank + Kilo Fan + + NQ: Moblumin Sheet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (69) + + + Fire Crystal + Moblumin Ingot + + NQ: Shotel + + HQ1: Shotel +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (69) +Sub Craft(s): Bonecraft - (50), Smithing - (34) + + + Fire Crystal + Silver Ingot + Bugard Tusk + Steel Ingot + Tiger Eye + + NQ: Oberon's Gold Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (69) + + + Fire Crystal + Gold Ore x3 + Fool's Gold Ore + + NQ: Orichalcum Gearbox + + HQ1:Orichalcum Gearbox x2 + HQ2:Orichalcum Gearbox x3 + HQ3:Orichalcum Gearbox x4 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (69) +Key Item: Clockmaking + + + Fire Crystal + Orichalcum Sheet + Orichalcum Ingot + + NQ: Aquamarine Earring + + HQ1: Serenity Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (70) + + + Earth Crystal + Aquamarine + Gold Earring +1 + + NQ: Green Earring + + HQ1: Celerity Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (70) + + + Earth Crystal + Jadeite + Gold Earring +1 + + NQ: Moon Earring + + HQ1: Allure Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (70) + + + Earth Crystal + Moonstone + Gold Earring +1 + + NQ: Night Earring + + HQ1: Mana Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (70) + + + Earth Crystal + Painite + Gold Earring +1 + + NQ: Purple Earring + + HQ1: Grace Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (70) + + + Earth Crystal + Fluorite + Gold Earring +1 + + NQ: Sun Earring + + HQ1: Victory Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (70) + + + Earth Crystal + Sunstone + Gold Earring +1 + + NQ: Yellow Earring + + HQ1: Vigor Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (70) + + + Earth Crystal + Chrysoberyl + Gold Earring +1 + + NQ: Zircon Earring + + HQ1: Genius Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (70) + + + Earth Crystal + Zircon + Gold Earring +1 + + NQ: Gold Bangles + + HQ1: Gold Bangles +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (70) + + + Fire Crystal + Gold Ingot x3 + + NQ: Platinum Ring + + HQ1: Platinum Ring +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (70) + + + Fire Crystal + Platinum Ingot x2 + + NQ: Platinum Arrowheads x6 + + HQ1: Platinum Arrowheads x8 + HQ2: Platinum Arrowheads x10 + HQ3: Platinum Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (70) + + + Wind Crystal + Copper Ingot + Platinum Ingot + + NQ: Oberon's Gold Sheet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (70) + + + Fire Crystal + Oberon's Gold Ingot + + NQ: Heat Capacitor II x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (70) +Key Item: Clockmaking + + + Fire Crystal + Platinum Sheet + Fire Anima + Golden Coil x2 + Orichalcum Gearbox + + NQ: Gold Bangles + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (70) + + + Fire Crystal + Goldsmithing Kit 70 + + +Artisan (71-80) +Synthesis Information +Yield Requirements Ingredients + + NQ: Gold Cuisses + + HQ1: Gilt Cuisses + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (71) +Sub Craft(s): Alchemy - (51) + + + Fire Crystal + Cermet Chunk x2 + Gold Ingot + Mercury + Ram Leather + + NQ: Noble's Crown + + HQ1: Aristocrat's Crown + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (71) + + + Fire Crystal + Copper Ingot + Gold Ingot + Topaz + + NQ: Krousis Ring + + HQ1: Krousis Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (71) + + + Earth Crystal + Imperial Topaz + Platinum Ring + + NQ: Mana Tank III x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (71) +Sub Craft(s): Alchemy - (??) +Key Item: Clockmaking + + + Fire Crystal + Mercury + Sieglinde Putty + Glass Sheet + Hi-Ether Tank + Mega Pump + + NQ: Tension Spring IV x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (71) +Key Item: Clockmaking + + + Earth Crystal + Slime Oil + Darksteel Ingot + Mythril Coil x2 + Orichalcum Gearbox + + NQ: Auto-Repair Kit IV x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (71) +Sub Craft(s): Alchemy - (??) +Key Item: Clockmaking + + + Fire Crystal + Orichalcum Sheet + Glass Fiber + Glass Sheet + Hi-Potion Tank + Kilo Pump + Mega Pump + + NQ: Gold Armet + + HQ1: Gilt Armet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (72) + + + Fire Crystal + Cermet Chunk x2 + Copper Ingot + Gold Ingot + Mercury + Sheep Leather + + NQ: Translucent Rock + + HQ1: Translucent Rock + HQ2: Translucent Rock + HQ3: Marble + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (72) + + + Wind Crystal + Marble Nugget + + NQ: Gold Sword + + HQ1: Gold Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (72) + + + Fire Crystal + Gold Ingot x2 + Mercury + Saber + + NQ: Reliquary + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (72) +Sub Craft(s): Woodworking - (31~) + + + Earth Crystal + Aht Urhgan Brass Ingot + Aht Urhgan Brass Sheet x2 + Dogwood Lumber x2 + Imperial Silk Cloth + + NQ: Moonring Blade + + HQ1: Moonring Blade +1 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (73) +Sub Craft(s): Smithing - (53) + + + Wind Crystal + Gold Ingot + Iron Ingot + Mercury + Tama-Hagane + + NQ: Shrimp Lantern + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (73) +Sub Craft(s): Smithing - (31), Alchemy - (45) + + + Fire Crystal + Beeswax + Moblin Putty + Moblumin Sheet + Tin Ingot + + NQ: Accelerator III x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (73~74) +Sub Craft(s): Alchemy - (??) +Key Item: Clockmaking + + + Fire Crystal + Coeurl Whisker + Goblin Grease + Imperial Cermet + Platinum Gear + Mega Fan + + NQ: Gold Sabatons + + HQ1: Gilt Sabatons + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (74) +Sub Craft(s): Alchemy - (54) + + + Fire Crystal + Cermet Chunk x3 + Gold Ingot + Mercury + Ram Leather x2 + + NQ: Hammermill x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (74) +Sub Craft(s): Smithing - (44) +Key Item: Clockmaking + + + Fire Crystal + Steel Ingot + Coeurl Whisker + Goblin Grease + Mythril Gear Machine + Warhammer x2 + Wind Fan + + NQ: Mana Jammer III x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (74) +Sub Craft(s): Alchemy - (??) +Key Item: Clockmaking + + + Fire Crystal + Blessed Mythril Sheet + Artificial Lens + Sieglinde Putty + Water Tank + Mega Pump + + NQ: Aquamarine Ring + + HQ1: Serenity Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (75) + + + Earth Crystal + Aquamarine + Gold Ring + + NQ: Chrysoberyl Ring + + HQ1: Vigor Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (75) + + + Earth Crystal + Chrysoberyl + Gold Ring + + NQ: Fluorite Ring + + HQ1: Grace Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (75) + + + Earth Crystal + Fluorite + Gold Ring + + NQ: Jadeite Ring + + HQ1: Celerity Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (75) + + + Earth Crystal + Jadeite + Gold Ring + + NQ: Moon Ring + + HQ1: Allure Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (75) + + + Earth Crystal + Moonstone + Gold Ring + + NQ: Painite Ring + + HQ1: Mystic Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (75) + + + Earth Crystal + Painite + Gold Ring + + NQ: Sun Ring + + HQ1: Victory Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (75) + + + Earth Crystal + Sunstone + Gold Ring + + NQ: Zircon Ring + + HQ1: Genius Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (75) + + + Earth Crystal + Zircon + Gold Ring + + NQ: Ashura + + HQ1: Ashura +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (75) + + + Fire Crystal + Gold Ingot + Gold Thread + Uchigatana + + NQ: Ashura + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (75) + + + Fire Crystal + Goldsmithing Kit 75 + + NQ: Gold Patas + + HQ1: Gold Patas +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (76) + + + Fire Crystal + Gold Ingot + Mercury + Patas + + NQ: Iron Musketeer's Cuisses +1 + + HQ1: Iron Musketeer's Cuisses +2 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (76) + + + Fire Crystal + Gold Ingot + Mercury + Iron Musketeer's Cuisses + + NQ: Sipahi Boots + + HQ1: Abtal Boots + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (76) +Sub Craft(s): Leathercraft - (48), Clothcraft - (31) + + + Earth Crystal + Karakul Leather + Marid Leather x2 + Mythril Sheet x3 + Wamoura Cloth + + NQ: Mana Tank IV x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (76) +Sub Craft(s): Alchemy - (??) +Key Item: Clockmaking + + + Fire Crystal + Mercury + Sieglinde Putty + Glass Sheet + Hi-Ether Tank + Kilo Pump + Mega Pump + + NQ: Tension Spring V x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (76 Verification Needed) +Key Item: Clockmaking + + + Earth Crystal + Slime Oil + Darksteel Ingot + Golden Coil x2 + Orichalcum Gearbox + + NQ: Gold Gauntlets + + HQ1: Gilt Gauntlets + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (77) +Sub Craft(s): Alchemy - (54) + + + Fire Crystal + Cermet Chunk x2 + Gold Ingot + Leather Gloves x2 + Mercury + + NQ: Iron Musketeer's Armet +1 + + HQ1: Iron Musketeer's Armet +2 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (77) + + + Fire Crystal + Gold Ingot + Mercury + Iron Musketeer's Armet + + NQ: Torque + + HQ1: Torque +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (77) + + + Fire Crystal + Gold Ingot x4 + + NQ: Gold Cuirass + + HQ1: Gilt Cuirass + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (78) +Sub Craft(s): Alchemy - (54) + + + Fire Crystal + Cermet Chunk x4 + Gold Ingot + Mercury + Ram Leather x2 + + NQ: Iron Musketeer's Sabatons +1 + + HQ1: Iron Musketeer's Sabatons +2 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (78) + + + Fire Crystal + Gold Ingot + Mercury + Iron Musketeer's Sabatons + + NQ: Morion Earring + + HQ1: Morion Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (78) + + + Earth Crystal + Gold Earring + Morion Tathlum + + NQ: Phantom Earring + + HQ1: Phantom Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (78) + + + Earth Crystal + Gold Earring + Phantom Tathlum + + NQ: Fusion Bolt Heads x6 + + HQ1: Fusion Bolt Heads x8 + HQ2: Fusion Bolt Heads x10 + HQ3: Fusion Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (78) + + + Wind Crystal + Aluminum Ingot + + NQ: Accelerator IV x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (78) +Sub Craft(s): Alchemy - (??) +Key Item: Clockmaking + + + Fire Crystal + Coeurl Whisker + Goblin Grease + Imperial Cermet + Orichalcum Gearbox + Kilo Fan + Mega Fan + + NQ: Amir Bed + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (79) +Sub Craft(s): Clothcraft - (59) + + + Fire Crystal + Aht Urhgan Brass Ingot x4 + Bloodwood Lumber + Gold Brocade + Gold Thread + Karakul Cloth + + NQ: Diamond Knuckles + + HQ1: Diamond Knuckles +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (79) +Sub Craft(s): Smithing - (51), Woodworking - (31) + + + Fire Crystal + Darksteel Sheet + Diamond x2 + Mahogany Lumber + Platinum Sheet + + NQ: Bastokan Tea Set + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (79) + + + Fire Crystal + Adaman Ingot + Mythril Ingot + Silver Ingot + + NQ: Mana Jammer IV x12 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (79) +Sub Craft(s): Alchemy - (??) +Key Item: Clockmaking + + + Fire Crystal + Blessed Mythril Sheet + Artificial Lens + Sieglinde Putty + Water Tank + Kilo Pump + Mega Pump + + NQ: Gold Buckler + + HQ1: Gilt Buckler + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (80) + + + Fire Crystal + Gold Ingot + Mercury + Targe + + NQ: Stoneskin Torque + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (80) + + + Fire Crystal + Indurated Gold Ingot + Torque + + NQ: Aquamarine Ring + + HQ1: Serenity Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (80) + + + Earth Crystal + Aquamarine + Gold Ring +1 + + NQ: Chrysoberyl Ring + + HQ1: Vigor Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (80) + + + Earth Crystal + Chrysoberyl + Gold Ring +1 + + NQ: Fluorite Ring + + HQ1: Grace Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (80) + + + Earth Crystal + Fluorite + Gold Ring +1 + + NQ: Jadeite Ring + + HQ1: Celerity Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (80) + + + Earth Crystal + Jadeite + Gold Ring +1 + + NQ: Moon Ring + + HQ1: Allure Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (80) + + + Earth Crystal + Moonstone + Gold Ring +1 + + NQ: Painite Ring + + HQ1: Mystic Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (80) + + + Earth Crystal + Painite + Gold Ring +1 + + NQ: Sun Ring + + HQ1: Victory Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (80) + + + Earth Crystal + Sunstone + Gold Ring +1 + + NQ: Zircon Ring + + HQ1: Genius Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (80) + + + Earth Crystal + Zircon + Gold Ring +1 + + NQ: Gold Buckler + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (80) + + + Fire Crystal + Goldsmithing Kit 80 + + +Adept (81-90) +Synthesis Information +Yield Requirements Ingredients + + NQ: Jagdplaute + + HQ1: Jagdplaute +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (81) +Sub Craft(s): Bonecraft - (58) + + + Fire Crystal + Darksteel Sword + Emerald + Gold Ingot + Manticore Fang + Mercury + Platinum Ingot + Ruby + Topaz + + NQ: Lord's Cuisses + + HQ1: King's Cuisses + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (81) + + + Fire Crystal + Darksteel Cuisses + Gold Ingot x2 + Mercury + + NQ: Phrygian Gold Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (81) + + + Fire Crystal + Phrygian Ore x4 + + NQ: Sunstone + + HQ1: Ruby + HQ2: Carnelian + HQ3: Ifritear + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (81) + + + Wind Crystal + Ifritite + + NQ: Aquamarine + + HQ1: Sapphire + HQ2: Larimar + HQ3: Leviatear + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (81) + + + Wind Crystal + Leviatite + + NQ: Fluorite + + HQ1: Spinel + HQ2: Fulmenite + HQ3: Ramutear + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (81) + + + Wind Crystal + Ramuite + + NQ: Jadeite + + HQ1: Emerald + HQ2: Aventurine + HQ3: Garutear + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (81) + + + Wind Crystal + Garudite + + NQ: Chrysoberyl + + HQ1: Topaz + HQ2: Heliodor + HQ3: Titatear + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (81) + + + Wind Crystal + Titanite + + NQ: Zircon + + HQ1: Diamond + HQ2: Clarite + HQ3: Shivatear + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (81) + + + Wind Crystal + Shivite + + NQ: Moonstone + + HQ1: Angelstone + HQ2: Selenite + HQ3: Carbutear + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (81) + + + Wind Crystal + Carbite + + NQ: Painite + + HQ1: Deathstone + HQ2: Tenebrite + HQ3: Fenritear + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (81) + + + Wind Crystal + Fenrite + + NQ: Brass Jadagna + + HQ1: Brass Jadagna +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (82) +Sub Craft(s): Leathercraft - (42~52) + + + Fire Crystal + Aht Urhgan Brass Ingot + Jadagna + Karakul Leather + + NQ: Golden Spear + + HQ1: Golden Spear +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (82) + + + Fire Crystal + Gold Ingot + Mercury + Partisan + + NQ: Iron Musketeer's Gauntlets +1 + + HQ1: Iron Musketeer's Gauntlets +2 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (82) + + + Fire Crystal + Gold Ingot + Mercury + Iron Musketeer's Gauntlets + + NQ: Platinum Mace + + HQ1: Platinum Mace +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (82) + + + Fire Crystal + Gold Ingot + Mercury + Darksteel Mace + Platinum Ingot + + NQ: Candelabrum + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (82) +Sub Craft(s): Alchemy - (15) + + + Fire Crystal + Beeswax x3 + Brass Ingot + Gold Ingot x3 + + NQ: Phrygian Gold Sheet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (82) + + + Fire Crystal + Phrygian Gold Ingot + + NQ: Phrygian Gold Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (82) +Key Item: Sheeting + + + Fire Crystal + Phrygian Gold Ingot x6 + Workshop Anvil + + NQ: Iron Musketeer's Cuirass +1 + + HQ1: Iron Musketeer's Cuirass +2 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (83) + + + Fire Crystal + Gold Ingot + Mercury + Iron Musketeer's Cuirass + + NQ: Lord's Armet + + HQ1: King's Armet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (83) + + + Fire Crystal + Gold Ingot x2 + Darksteel Armet + Mercury + + NQ: Rapier + + HQ1: Rapier +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (83) +Sub Craft(s): Smithing - (28) + + + Fire Crystal + Gold Ingot + Mercury + Fluorite + Steel Ingot x2 + + NQ: Platinum Cutlass + + HQ1: Platinum Cutlass +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (84) + + + Fire Crystal + Cutlass + Gold Ingot + Mercury + Platinum Ingot + + NQ: Shield Plaque + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (84) +Sub Craft(s): Woodworking - (41), Clothcraft - (32) + + + Fire Crystal + Brass Ingot + Gold Ingot + Gold Sheet + Mythril Sheet + Rhodonite + Rosewood Lumber + Scarlet Linen + Turquoise + + NQ: Angel's Earring + + HQ1: Heavens Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (85) + + + Earth Crystal + Angelstone + Platinum Earring + + NQ: Death Earring + + HQ1: Hades Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (85) + + + Earth Crystal + Deathstone + Platinum Earring + + NQ: Diamond Earring + + HQ1: Omniscient Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (85) + + + Earth Crystal + Diamond + Platinum Earring + + NQ: Emerald Earring + + HQ1: Nimble Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (85) + + + Earth Crystal + Emerald + Platinum Earring + + NQ: Ruby Earring + + HQ1: Triumph Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (85) + + + Earth Crystal + Ruby + Platinum Earring + + NQ: Sapphire Earring + + HQ1: Communion Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (85) + + + Earth Crystal + Sapphire + Platinum Earring + + NQ: Spinel Earring + + HQ1: Adroit Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (85) + + + Earth Crystal + Spinel + Platinum Earring + + NQ: Topaz Earring + + HQ1: Robust Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (85) + + + Earth Crystal + Topaz + Platinum Earring + + NQ: Epee + + HQ1: Epee +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (85) +Sub Craft(s): Smithing - (56) + + + Fire Crystal + Angelstone + Gold Ingot + Mercury + Mythril Ingot + Platinum Ingot + Steel Ingot + + NQ: Lord's Sabatons + + HQ1: King's Sabatons + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (85) + + + Fire Crystal + Darksteel Sabatons + Gold Ingot + Mercury + + NQ: Marble Plaque + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (85) + + + Wind Crystal + Amethyst + Black Ink + Bast Parchment + Marble Slab + + NQ: Platinum Bangles + + HQ1: Platinum Bangles +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (85) + + + Fire Crystal + Platinum Ingot x4 + + NQ: Royal Knight Army Shield +1 + + HQ1: Royal Knight Army Shield +2 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (85) + + + Fire Crystal + Gold Ingot + Mercury + Royal Knight Army Shield + + NQ: Temple Knight Army Shield +1 + + HQ1: Temple Knight Army Shield +2 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (85) + + + Fire Crystal + Gold Ingot + Mercury + Temple Knight Army Shield + + NQ: Platinum Bangles + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (85) + + + Fire Crystal + Goldsmithing Kit 85 + + NQ: Darksteel Sainti + + HQ1: Darksteel Sainti +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (86) +Sub Craft(s): Blacksmithing - (45), Woodworking - (42) + + + Fire Crystal + Darksteel Ingot + Ebony Lumber + Mercury + Platinum Ingot x2 + Steel Ingot + + NQ: Marble Bed + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (86) +Sub Craft(s): Clothcraft - (55) + + + Wind Crystal + Aquamarine + Gold Ingot x2 + Marble x2 + Rainbow Thread + Sarcenet Cloth + Silk Cloth + + NQ: Platinum Rod + + HQ1: Platinum Rod +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (86) + + + Fire Crystal + Gold Ingot + Platinum Ingot + Steel Ingot + + NQ: Dark Bead + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (87) + + + Wind Crystal + Dark Ore + + NQ: Light Bead + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (87) + + + Wind Crystal + Light Ore + + NQ: Fire Bead + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (87) + + + Wind Crystal + Fire Ore + + NQ: Water Bead + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (87) + + + Wind Crystal + Water Ore + + NQ: Lightning Bead + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (87) + + + Wind Crystal + Lightning Ore + + NQ: Earth Bead + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (87) + + + Wind Crystal + Earth Ore + + NQ: Wind Bead + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (87) + + + Wind Crystal + Wind Ore + + NQ: Ice Bead + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (87) + + + Wind Crystal + Ice Ore + + NQ: Kazaridachi + + HQ1: Kazaridachi +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (87) +Sub Craft(s): Woodworking - (54), Smithing - (46) + + + Fire Crystal + Ancient Lumber + Gold Ingot + Gold Thread + Iron Ingot x3 + Tama-Hagane + Wyvern Skin + + NQ: Colichemarde + + HQ1: Colichemarde +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (88) + + + Fire Crystal + Deathstone + Gold Ingot + Mailbreaker + + NQ: Lord's Gauntlets + + HQ1: King's Gauntlets + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (88) + + + Fire Crystal + Darksteel Gauntlets + Gold Ingot x2 + Mercury + + NQ: Musketeer's Sword +1 + + HQ1: Musketeer's Sword +2 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (88) + + + Fire Crystal + Musketeer's Sword + Gold Ingot + Mercury + + NQ: Pigeon Earring + + HQ1: Pigeon Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (88) + + + Earth Crystal + Pigeon's Blood Ruby + Platinum Earring + + NQ: Aqueous Orichalcum Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (88) +Key Item: Gold Ensorcellment + + + Fire Crystal + Dark Anima + Lightning Anima + Water Anima + Orichalcum Ore x3 + Platinum Ore + + NQ: Lord's Cuirass + + HQ1: King's Cuirass + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (89) + + + Fire Crystal + Darksteel Cuirass + Gold Ingot x2 + Gold Sheet x3 + Mercury + Platinum Ingot + + NQ: Frigid Orichalcum Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (89) +Key Item: Gold Ensorcellment + + + Fire Crystal + Dark Anima + Ice Anima x2 + Orichalcum Ore x3 + Platinum Ore + + NQ: Spirit Orichalcum Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (89) +Key Item: Gold Ensorcellment + + + Fire Crystal + Dark Anima + Earth Anima x2 + Orichalcum Ore x3 + Platinum Ore + + NQ: Orichalcum Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (89) + + + Fire Crystal + Orichalcum Ore x3 + Platinum Ore + + NQ: Barone Gambieras + + HQ1: Conte Gambieras + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (89) +Sub Craft(s): Smithing - (45), Leathercraft - (38) + + + Fire Crystal + Buffalo Leather x2 + Gold Ingot + Mercury + Orichalcum Sheet x2 + Platinum Sheet + + NQ: Angel's Earring + + HQ1: Heavens Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) + + + Earth Crystal + Angelstone + Platinum Earring +1 + + NQ: Death Earring + + HQ1: Hades Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) + + + Earth Crystal + Deathstone + Platinum Earring +1 + + NQ: Diamond Earring + + HQ1: Omniscient Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) + + + Earth Crystal + Diamond + Platinum Earring +1 + + NQ: Emerald Earring + + HQ1: Nimble Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) + + + Earth Crystal + Emerald + Platinum Earring +1 + + NQ: Ruby Earring + + HQ1: Triumph Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) + + + Earth Crystal + Ruby + Platinum Earring +1 + + NQ: Sapphire Earring + + HQ1: Communion Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) + + + Earth Crystal + Sapphire + Platinum Earring +1 + + NQ: Spinel Earring + + HQ1: Adroit Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) + + + Earth Crystal + Spinel + Platinum Earring +1 + + NQ: Topaz Earring + + HQ1: Robust Earring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) + + + Earth Crystal + Topaz + Platinum Earring +1 + + NQ: Diamond Shield + + HQ1: Diamond Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) + + + Earth Crystal + Diamond x4 + Kite Shield + Platinum Sheet x2 + + NQ: Jeweled Collar + + HQ1: Jeweled Collar +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) + + + Earth Crystal + Diamond + Emerald + Ruby + Sapphire + Spinel + Topaz + Torque + Gold Sheet + + NQ: Messhikimaru + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) + + + Fire Crystal + Bewitched Gold + Kazaridachi + + NQ: Orichalcum Sheet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) + + + Fire Crystal + Orichalcum Ingot + + NQ: Orichalcum Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) +Key Item: Sheeting + + + Fire Crystal + Orichalcum Ingot x6 + Workshop Anvil + + NQ: Star Earring + + HQ1: Celestial Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) + + + Earth Crystal + Star Sapphire + Orichalcum Earring + + NQ: Crimson Earring + + HQ1: Harmonius Earring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) + + + Earth Crystal + Pigeon's Blood Ruby + Orichalcum Earring + + NQ: Wing Sword + + HQ1: Wing Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) + + + Fire Crystal + Gold Ingot + Jagdplaute + Mythril Ingot + Platinum Ingot + Ruby + + NQ: Jeweled Collar + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (90) + + + Earth Crystal + Goldsmithing Kit 90 + + +Veteran (91-100) +Synthesis Information +Yield Requirements Ingredients + + NQ: Barone Zucchetto + + HQ1: Conte Zucchetto + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (91) +Sub Craft(s): Smithing - (41) + + + Fire Crystal + Copper Ingot + Darksteel Sheet + Gold Ingot + Mercury + Orichalcum Sheet + Sapphire + Sheep Leather + + NQ: Cursed Crown + + HQ1: Cursed Crown -1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (91) + + + Fire Crystal + Copper Ingot + Gold Ingot + Siren's Hair + + NQ: Orichalcum Chain + + HQ1: Orichalcum Chain x2 + HQ1: Orichalcum Chain x3 + HQ1: Orichalcum Chain x4 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (91) + + + Earth Crystal + Orichalcum Ingot x2 + + NQ: Orichalcum Chain x3 + + HQ1: Orichalcum Chain x6 + HQ1: Orichalcum Chain x9 + HQ1: Orichalcum Chain x12 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (91) +Key Item: Chainwork + + + Earth Crystal + Orichalcum Ingot x6 + + NQ: Orichalcum Earring + + HQ1: Triton Earring + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (91) + + + Wind Crystal + Orichalcum Ingot x2 + + NQ: Bewitched Schuhs + + HQ1:Voodoo Schuhs + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (91) + + + Fire Crystal + Cursed Schuhs -1 + Eschite Ore + + NQ: Vexed Gambieras + + HQ1:Jinxed Gambieras + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (91) + + + Earth Crystal + Hexed Gambieras -1 + Eschite Ore + + NQ: Muscle Belt + + HQ1: Muscle Belt +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (92) + + + Fire Crystal + Brass Ingot + Gold Ingot + Manticore Leather + + NQ: Orichalcum Dagger + + HQ1: Triton's Dagger + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (92) +Sub Craft(s): Smithing - (41) + + + Fire Crystal + Darksteel Ingot + Orichalcum Ingot + Ruby + + NQ: Regen Cuirass + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (92) + + + Fire Crystal + Lord's Cuirass + Vivio Platinum + + NQ: Ponderous Lance + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (92) + + + Fire Crystal + Orichalcum Lance + Spirit Orichalcum + + NQ: Phrygian Earring + + HQ1: Phrygian Earring +1 + + WindCrystal-Icon.gif + +Main Craft: Goldsmithing - (92) + + + Wind Crystal + Phrygian Gold Ingot x2 + + NQ: Bewitched Handschuhs + + HQ1:Voodoo Handschuhs + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (92) + + + Fire Crystal + Cursed Handschuhs -1 + Eschite Ore + + NQ: Vexed Gauntlets + + HQ1:Jinxed Gauntlets + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (92) + + + Earth Crystal + Hexed Gauntlets -1 + Eschite Ore + + NQ: Cursed Diechlings + + HQ1: Cursed Diechlings -1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (93) +Sub Craft(s): Alchemy - (41) + + + Fire Crystal + Cermet Chunk + Darksteel Cuisses + Platinum Ingot + Platinum Sheet + + NQ: Hirenjaku + + HQ1: Hirenjaku +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (93) +Sub Craft(s): Leathercraft - (41), Woodworking - (11) + + + Fire Crystal + Copper Ingot + Elm Lumber + Manta Leather + Orichalcum Ingot + Ruby + Silk Thread + Tama-Hagane + + NQ: Orichalcum Ring + + HQ1: Triton Ring + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (93) + + + Fire Crystal + Orichalcum Ingot x2 + + NQ: Walahra Burner + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (93) +Sub Craft(s): Woodworking - (52) + + + Fire Crystal + Ancient Lumber + Gold Ingot + Gold Sheet x2 + Orichalcum Sheet + + NQ: Rhodium Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (93) + + + Fire Crystal + Rhodium Ore x4 + + NQ: Bewitched Diechlings + + HQ1:Voodoo Diechlings + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (93) + + + Fire Crystal + Cursed Diechlings -1 + Eschite Ore + + NQ: Cursed Schuhs + + HQ1: Cursed Schuhs -1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (94) +Sub Craft(s): Alchemy - (41) + + + Fire Crystal + Cermet Chunk x2 + Darksteel Sabatons + Platinum Ingot x2 + + NQ: Orichalcum Scythe + + HQ1: Triton's Scythe + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (94) +Sub Craft(s): Smithing - (51). Woodworking - (19) + + + Fire Crystal + Darksteel Ingot x2 + Grass Cloth + Orichalcum Ingot + Ruby + Yew Lumber + + NQ: Buckler Plaque + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (94) +Sub Craft(s): Clothcraft - (45). Woodworking - (37) + + + Fire Crystal + Fluorite x2 + Mahogany Lumber + Mythril Ingot + Platinum Ingot + Platinum Sheet + Rainbow Velvet + Silver Sheet + + NQ: Shirogatana + + HQ1: Shirogatana +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (94) +Sub Craft(s): Smithing - (60). Woodworking - (54) + + + Fire Crystal + Ancient Lumber + Iron Ingot x2 + Manta Leather + Scintillant Ingot + Silver Ingot + Tama-Hagane + Wamoura Silk + + NQ: Brise-os + + HQ1: Brise-os +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (94) +Sub Craft(s): Leathercraft - (46) + + + Fire Crystal + Jadagna + Karakul Leather + Sahagin Gold + + NQ: Phrygian Ring + + HQ1: Phrygian Ring +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (94) + + + Fire Crystal + Phrygian Gold Ingot x2 + + NQ: Bewitched Crown + + HQ1:Voodoo Crown + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (94) + + + Fire Crystal + Cursed Crown -1 + Eschite Ore + + NQ: Bewitched Schaller + + HQ1:Voodoo Schaller + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (94) + + + Fire Crystal + Cursed Schaller -1 + Eschite Ore + + NQ: Vexed Coronet + + HQ1:Jinxed Coronet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (94) + + + Fire Crystal + Hexed Coronet -1 + Eschite Ore + + NQ: Phrygian Ring + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (94) + + + Fire Crystal + Goldsmithing Kit 94 + + NQ: Angel's Ring + + HQ1: Heavens Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (95) + + + Earth Crystal + Angelstone + Platinum Ring + + NQ: Death Ring + + HQ1: Hades Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (95) + + + Earth Crystal + Deathstone + Platinum Ring + + NQ: Diamond Ring + + HQ1: Omniscient Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (95) + + + Earth Crystal + Diamond + Platinum Ring + + NQ: Emerald Ring + + HQ1: Nimble Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (95) + + + Earth Crystal + Emerald + Platinum Ring + + NQ: Ruby Ring + + HQ1: Triumph Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (95) + + + Earth Crystal + Ruby + Platinum Ring + + NQ: Sapphire Ring + + HQ1: Communion Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (95) + + + Earth Crystal + Sapphire + Platinum Ring + + NQ: Spinel Ring + + HQ1: Adroit Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (95) + + + Earth Crystal + Spinel + Platinum Ring + + NQ: Topaz Ring + + HQ1: Robust Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (95) + + + Earth Crystal + Topaz + Platinum Ring + + NQ: Sha'ir Manteel + + HQ1: Sheikh Manteel + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (95) +Sub Craft(s): Clothcraft - (60) + + + Earth Crystal + Cashmere Cloth + Gold Sheet + Gold Thread x2 + Ruby + Sapphire + Velvet Cloth x2 + + NQ: Tojaku + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (95) + + + Fire Crystal + Hirenjaku + Spirit Orichalcum + + NQ: Snowsteel Sheet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (95) + + + Fire Crystal + Snowsteel + + NQ: Snowsteel Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (95) +Key Item: Sheeting + + + Fire Crystal + Snowsteel x6 + Workshop Anvil + + NQ: Bewitched Cuirass + + HQ1:Voodoo Cuirass + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (95) + + + Fire Crystal + Cursed Cuirass -1 + Eschite Ore + + NQ: Vexed Haubert + + HQ1:Jinxed Haubert + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (95) + + + Earth Crystal + Hexed Haubert -1 + Eschite Ore + + NQ: Cursed Handschuhs + + HQ1: Cursed Handschuhs -1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (96) +Sub Craft(s): Alchemy - (41~44) + + + Fire Crystal + Cermet Chunk + Darksteel Gauntlets + Platinum Ingot x2 + + NQ: Millionaire Desk + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (96) +Sub Craft(s): Woodworking - (59), Smithing - (42) + + + Earth Crystal + Ancient Lumber + Darksteel Sheet + Gold Sheet x2 + Granite x3 + Platinum Sheet + + NQ: Poseidon's Ring + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (96) + + + Fire Crystal + Aqueous Orichalcum Ingot + Orichalcum Ring + + NQ: Rhodium Sheet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (96) + + + Fire Crystal + Rhodium Ingot + + NQ: Rhodium Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (96) +Key Item: Sheeting + + + Fire Crystal + Rhodium Ingot x6 + Workshop Anvil + + NQ: Akua Sainti + + HQ1: Akua Sainti +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (96) +Sub Craft(s): Smithing - (??), Woodworking - (??) + + + Fire Crystal + Steel Ingot + Darksteel Ingot + Mercury + Rhodium Ingot x2 + Urunday Lumber + + NQ: Rhodium Ring + + HQ1: Rhodium Ring +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (96) + + + Fire Crystal + Rhodium Ingot x2 + + NQ: Blizzard Scythe + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (97) + + + Fire Crystal + Frigid Orichalcum + Orichalcum Scythe + + NQ: Cursed Schaller + + HQ1: Cursed Schaller -1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (97) +Sub Craft(s): Smithing - (51), Alchemy - (41~48) + + + Fire Crystal + Cermet Chunk + Copper Ingot + Darksteel Sheet + Gold Ingot + Platinum Chain + Platinum Sheet + Sheep Leather + + NQ: Koenig Shield + + HQ1: Kaiser Shield + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (97) +Sub Craft(s): Smithing - (58) + + + Earth Crystal + Adaman Sheet + General's Shield + Gold Ingot + Gold Sheet + + NQ: Thurible + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (97) +Sub Craft(s): Smithing - (41) + + + Fire Crystal + Aht Urhgan Brass Sheet x3 + Scintillant Ingot + Troll Bronze Ingot + + NQ: Cursed Cuirass + + HQ1: Cursed Cuirass -1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (98) +Sub Craft(s): Alchemy - (59) + + + Fire Crystal + Cermet Chunk x3 + Darksteel Cuirass + Orichalcum Ingot + Platinum Chain + Platinum Ingot + Platinum Sheet + + NQ: Dark Lamp + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (98) + + + Fire Crystal + Aht Urhgan Brass Ingot + Dark Ore + Scintillant Ingot + + NQ: Earth Lamp + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (98) + + + Fire Crystal + Aht Urhgan Brass Ingot + Earth Ore + Scintillant Ingot + + NQ: Fire Lamp + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (98) + + + Fire Crystal + Aht Urhgan Brass Ingot + Fire Ore + Scintillant Ingot + + NQ: Ice Lamp + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (98) + + + Fire Crystal + Aht Urhgan Brass Ingot + Ice Ore + Scintillant Ingot + + NQ: Light Lamp + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (98) + + + Fire Crystal + Aht Urhgan Brass Ingot + Light Ore + Scintillant Ingot + + NQ: Lightning Lamp + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (98) + + + Fire Crystal + Aht Urhgan Brass Ingot + Lightning Ore + Scintillant Ingot + + NQ: Water Lamp + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (98) + + + Fire Crystal + Aht Urhgan Brass Ingot + Water Ore + Scintillant Ingot + + NQ: Wind Lamp + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (98) + + + Fire Crystal + Aht Urhgan Brass Ingot + Wind Ore + Scintillant Ingot + + NQ: Scintillant Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (98) + + + Fire Crystal + Orichalcum Ore + Luminium Ore x3 + + NQ: Palladian Brass Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (98) + + + Fire Crystal + Palladian Brass Ore x4 + + NQ: Angel's Ring + + HQ1: Heavens Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (99) + + + Earth Crystal + Angelstone + Platinum Ring +1 + + NQ: Death Ring + + HQ1: Hades Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (99) + + + Earth Crystal + Deathstone + Platinum Ring +1 + + NQ: Diamond Ring + + HQ1: Omniscient Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (99) + + + Earth Crystal + Diamond + Platinum Ring +1 + + NQ: Emerald Ring + + HQ1: Nimble Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (99) + + + Earth Crystal + Emerald + Platinum Ring +1 + + NQ: Ruby Ring + + HQ1: Triumph Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (99) + + + Earth Crystal + Ruby + Platinum Ring +1 + + NQ: Sapphire Ring + + HQ1: Communion Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (99) + + + Earth Crystal + Sapphire + Platinum Ring +1 + + NQ: Spinel Ring + + HQ1: Adroit Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (99) + + + Earth Crystal + Spinel + Platinum Ring +1 + + NQ: Topaz Ring + + HQ1: Robust Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (99) + + + Earth Crystal + Topaz + Platinum Ring +1 + + NQ: Shining Ring + + HQ1: Scintillant Ring + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (99) + + + Fire Crystal + Orichalcum Ingot + Scintillant Ingot + + NQ: Verdun + + HQ1: Verdun +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (99) +Sub Craft(s): Smithing - (53) + + + Fire Crystal + Adaman Ingot x2 + Gold Ingot + Mercury + Platinum Ingot + Spinel + + NQ: Palladian Brass Sheet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (100) + + + Fire Crystal + Palladian Brass Ingot + + NQ: Brisingamen + + HQ1: Brisingamen +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (100) + + + Fire Crystal + Freya's Tear + Gold Ingot x3 + Gold Chain + Jeweled Collar + Platinum Chain x2 + + NQ: Imperial Egg + + HQ1: Tsar's Egg + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (100) + + + Fire Crystal + Angelstone + Deathstone + Bird Egg + Gold Ingot + Mercury + Orichalcum Ingot + Pigeon's Blood Ruby + Platinum Ingot + + NQ: Ugol Moufles + + HQ1: Mavros Moufles + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (100) +Sub Craft(s): Smithing - (30) + + + Fire Crystal + Chain Mittens + Durium Sheet + Palladian Brass Sheet + + NQ: Evader Earring + + HQ1: Evader Earring +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (100) + + + Fire Crystal + Palladian Brass Ingot x2 + + NQ: Crimson Ring + + HQ1: Harmonius Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (100) + + + Earth Crystal + Orichalcum Ring + Pigeon's Blood Ruby + + NQ: Star Ring + + HQ1: Celestial Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (100) + + + Earth Crystal + Orichalcum Ring + Star Sapphire + + NQ: Snowsteel + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (100) + + + Fire Crystal + Snowsteel Ore x4 + + +Expert (101-110) +Synthesis Information +Yield Requirements Ingredients + + NQ: Amood + + HQ1: Amood +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (101) +Sub Craft(s): Smithing - (43), Woodworking - (41) + + + Fire Crystal + Darksteel Ingot + Ebony Lumber + Gold Ingot + Mythril Ingot x2 + Scintillant Ingot x2 + Turquoise + + NQ: Aqua Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (102) + + + Earth Crystal + Orichalcum Ring + Water Bead + + NQ: Breeze Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (102) + + + Earth Crystal + Orichalcum Ring + Wind Bead + + NQ: Dark Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (102) + + + Earth Crystal + Orichalcum Ring + Dark Bead + + NQ: Flame Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (102) + + + Earth Crystal + Orichalcum Ring + Fire Bead + + NQ: Light Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (102) + + + Earth Crystal + Orichalcum Ring + Light Bead + + NQ: Snow Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (102) + + + Earth Crystal + Orichalcum Ring + Ice Bead + + NQ: Soil Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (102) + + + Earth Crystal + Orichalcum Ring + Earth Bead + + NQ: Thunder Ring + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (102) + + + Earth Crystal + Orichalcum Ring + Lightning Bead + + NQ: Palladian Brass Chain + + HQ1: Palladian Brass Chain x2 + HQ2: Palladian Brass Chain x3 + HQ3: Palladian Brass Chain x4 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (102) + + + Earth Crystal + Palladian Brass Ingot x2 + + NQ: Ugol Sollerets + + HQ1: Mavros Sollerets + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (102) +Sub Craft(s): Smithing - (33) + + + Fire Crystal + Palladian Brass Sheet + Durium Sheet + Greaves + + NQ: Arasy Scythe + + HQ1: Arasy Scythe +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (105) +Sub Craft(s): Smithing - (??) + + + Fire Crystal + Adaman Ingot + Ruby + Rhodium Ingot + Akaso Cloth + + NQ: Hexed Gambieras + + HQ1: Hexed Gambieras -1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (103) +Sub Craft(s): Leathercraft - (40) + + + Earth Crystal + Ormolu Ingot x2 + Aht Urhgan Brass Ingot + Black Sollerets + Pelt of Dawon + + NQ: Ugol Brayettes + + HQ1: Mavros Brayettes + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (103) +Sub Craft(s): Leathercraft - (35), Clothcraft - (22) + + + Fire Crystal + Durium Chain + Palladian Brass Chain + Linen Cloth + Light Ram Leather x2 + + NQ: Ugol Salade + + HQ1: Mavros Salade + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (103) + + + Fire Crystal + Palladian Brass Sheet + Durium Ingot + Palladian Brass Chain + Vivio Sheep Leather + Scintillant Ingot x2 + + NQ: Silver Cassandra + + HQ1: Great Cassandra + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (104) +Sub Craft(s): Leathercraft - (39) + + + Fire Crystal + Darksteel Hexagun + Mercury + Orichalcum Ingot x2 + Silver Ingot + Smilodon Leather + + NQ: Ugol Haubert + + HQ1: Mavros Haubert + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (105) +Sub Craft(s): Clothcraft - (33) + + + Fire Crystal + Palladian Brass Sheet + Durium Ingot + Durium Sheet + Palladian Brass Chain x3 + Velvet Cloth + Silk Cloth + + NQ: Hepatizon Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (105) + + + Fire Crystal + Mythril Ore x3 + Hepatizon Ore + + NQ: Nepenthe Grip + + HQ1: Nepenthe Grip +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (105) +Key Item: Chainwork + + + Fire Crystal + Mandrel + Rhodium Ingot + Gabbrath Horn + + NQ: Gracile Grip + + HQ1: Gracile Grip +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (105) +Key Item: Chainwork + + + Fire Crystal + Mandrel + Rhodium Ingot + Waktza Crest + + NQ: Ruthenium Ingot + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (105) + + + Fire Crystal + Ruthenium Ore x4 + + NQ: Hepatizon Baghnakhs + + HQ1:Hepatizon Baghnakhs +1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (106) + + + Earth Crystal + Raaz Leather + Hepatizon Ingot + Maliyakaleya Orb x3 + + NQ: Hepatizon Rapier + + HQ1:Hepatizon Rapier +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (106) + + + Fire Crystal + Orichalcum Ingot + Mercury + Star Sapphire + Hepatizon Ingot x2 + + NQ: Hepatizon Sapara + + HQ1:Hepatizon Sapara +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (106) + + + Fire Crystal + Orichalcum Ingot + Hepatizon Ingot x2 + + NQ: Hepatizon Axe + + HQ1:Hepatizon Axe +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (106) + + + Fire Crystal + Urunday Lumber + Hepatizon Ingot x3 + + NQ: Hexed Coronet + + HQ1: Hexed Coronet -1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (107) +Sub Craft(s): Leathercraft - (40) + + + Fire Crystal + Ormolu Ingot + Freya's Tear + Aht Urhgan Brass Ingot + Aht Urhgan Brass Sheet + Cerberus Leather + + NQ: Hexed Gauntlets + + HQ1: Hexed Gauntlets -1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (108) +Sub Craft(s): Leathercraft - (39) + + + Earth Crystal + Ormolu Ingot + Black Gadlings + Aht Urhgan Brass Ingot + Pelt of Dawon + + NQ: Hexed Haubert + + HQ1: Hexed Haubert -1 + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (110) +Sub Craft(s): Clothcraft - (30) + + + Earth Crystal + Ormolu Ingot x3 + Freya's Tear + Aht Urhgan Brass Ingot + Bloodthread + Plastron + + NQ: Cleric's Torque + + HQ1: Cleric's Torque +1 + HQ2: Cleric's Torque +2 + + LightCrystal-Icon.gif + +Main Craft: Goldsmithing - (110) +Sub Craft(s): Clothcraft - (55) + + + Light Crystal + Waktza Crest + Dark Matter + Khoma Thread + Seedstone Crystal + Moldy Torque + + NQ: Duelist's Torque + + HQ1: Duelist's Torque +1 + HQ2: Duelist's Torque +2 + + LightCrystal-Icon.gif + +Main Craft: Goldsmithing - (110) +Sub Craft(s): Clothcraft - (55) + + + Light Crystal + Waktza Crest + Dark Matter + Khoma Thread + Pyrope Crystal + Moldy Torque + + NQ: Futhark Torque + + HQ1: Futhark Torque +1 + HQ2: Futhark Torque +2 + + LightCrystal-Icon.gif + +Main Craft: Goldsmithing - (110) +Sub Craft(s): Clothcraft - (55) + + + Light Crystal + Waktza Crest + Dark Matter + Khoma Thread + Apatite Crystal + Moldy Torque + + +Authority (111-120) +Synthesis Information +Yield Requirements Ingredients + + NQ: Bewitched Schuhs + + HQ1:Voodoo Schuhs + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (111) +Sub Craft(s): Alchemy - (70) + + + Fire Crystal + Cursed Schuhs + Macuil Plating + Douma Weapon's Shard + Eschite Ore + + NQ: Vexed Gambieras + + HQ1:Jinxed Gambieras + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (111) +Sub Craft(s): Leathercraft - (70) + + + Earth Crystal + Hepatizon Ingot + Immanibugard's Hide + Eschite Ore + Hexed Gambieras + + NQ: Melee Fists + + HQ1: Hesychast's Fists + HQ2: Sagitta + + LightCrystal-Icon.gif + +Main Craft: Goldsmithing - (111~114) +Sub Craft(s): Bonecraft - (Information Needed) + +Leathercraft - (Information Needed) +Key Item: Goldsmith's aurum tome + + + Light Crystal + Hades' Claw + Dark Matter + S. Faulpie Leather + Moldy Weapon + Ratnaraj + Relic Adaman x2 + Sapphire Crystal + + NQ: Pantin Fists + + HQ1: Pitre Fists + HQ2: Xiucoatl + + LightCrystal-Icon.gif + +Main Craft: Goldsmithing - (111~114) +Sub Craft(s): Bonecraft - (Information Needed) + +Leathercraft - (Information Needed) +Key Item: Goldsmith's aurum tome + + + Light Crystal + Hades' Claw + Dark Matter + S. Faulpie Leather + Moldy Weapon + Ratnaraj + Relic Adaman x2 + Sardonyx Crystal + + NQ: Mirage Sword + + HQ1: Luhlaza Sword + HQ2: Zomorrodnegar + + LightCrystal-Icon.gif + +Main Craft: Goldsmithing - (111~114) +Sub Craft(s): Leathercraft - (Information Needed) + +Clothcraft - (Information Needed) +Key Item: Goldsmith's aurum tome + + + Light Crystal + Plovid Flesh + Dark Matter + Khoma Thread + Moldy Sword + Ratnaraj + Relic Adaman x2 + Lapis Lazuli Crystal + + NQ: Valor Sword + + HQ1: Caballarius Sword + HQ2: Moralltach + + LightCrystal-Icon.gif + +Main Craft: Goldsmithing - (111~114) +Sub Craft(s): Leathercraft - (Information Needed) + +Clothcraft - (Information Needed) +Key Item: Goldsmith's aurum tome + + + Light Crystal + Plovid Flesh + Dark Matter + Khoma Thread + Moldy Sword + Ratnaraj + Relic Adaman x2 + Diamond Crystal + + NQ: Duelist's Sword + + HQ1: Vitiation Sword + HQ2: Crocea Mors + + LightCrystal-Icon.gif + +Main Craft: Goldsmithing - (111~114) +Sub Craft(s): Leathercraft - (Information Needed) + +Clothcraft - (Information Needed) +Key Item: Goldsmith's aurum tome + + + Light Crystal + Plovid Flesh + Dark Matter + Khoma Thread + Moldy Sword + Ratnaraj + Relic Adaman x2 + Pyrope Crystal + + NQ: Bewitched Handschuhs + + HQ1:Voodoo Handschuhs + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (112) +Sub Craft(s): Alchemy - (70) + + + Fire Crystal + Cursed Handschuhs + Macuil Plating + Douma Weapon's Shard + Eschite Ore + + NQ: Vexed Gauntlets + + HQ1:Jinxed Gauntlets + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (112) +Sub Craft(s): Leathercraft - (70) + + + Earth Crystal + Hepatizon Ingot + Immanibugard's Hide + Eschite Ore + Hexed Gauntlets + + NQ: Sharur + + HQ1: Sharur +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (113) +Sub Craft(s): Alchemy - (??) + + + Fire Crystal + Ormolu Ingot + Mercury + Urunday Lumber + Bztavian Stinger + + NQ: Bewitched Diechlings + + HQ1:Voodoo Diechlings + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (113) +Sub Craft(s): Alchemy - (70) + + + Fire Crystal + Cursed Diechlings + Macuil Plating + Douma Weapon's Shard + Eschite Ore + + NQ: Bewitched Crown + + HQ1:Voodoo Crown + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (114) +Sub Craft(s): Clothcraft - (70) + + + Fire Crystal + Cursed Crown + Hepatizon Ingot + Sif's Macrame + Eschite Ore + + NQ: Bewitched Schaller + + HQ1:Voodoo Schaller + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (114) +Sub Craft(s): Alchemy - (70) + + + Fire Crystal + Cursed Schaller + Macuil Plating + Douma Weapon's Shard + Eschite Ore + + NQ: Vexed Coronet + + HQ1:Jinxed Coronet + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (114) +Sub Craft(s): Leathercraft - (70) + + + Fire Crystal + Hepatizon Ingot + Immanibugard's Hide + Eschite Ore + Hexed Coronet + + NQ: Ravenous Breastplate + + HQ1: Ravenous Breastplate +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (115) +Sub Craft(s): Leathercraft - (60~65), Clothcraft - (??) + + + Fire Crystal + Ormolu Ingot + Gold Thread + Sealord Leather + Rhodium Ingot + Macuil Plating x2 + + NQ: Stikini Ring + + HQ1:Stikini Ring +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (115) + + + Fire Crystal + Koh-I-Noor + Dark Matter x2 + Tartarian Chain x2 + + NQ: Bewitched Cuirass + + HQ1:Voodoo Cuirass + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (115) +Sub Craft(s): Alchemy - (70) + + + Fire Crystal + Cursed Cuirass + Macuil Plating + Douma Weapon's Shard + Eschite Ore + + NQ: Vexed Haubert + + HQ1:Jinxed Haubert + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (115) +Sub Craft(s): Leathercraft - (70) + + + Earth Crystal + Hepatizon Ingot + Immanibugard's Hide + Eschite Ore + Hexed Haubert + + NQ: Balder Earring + + HQ1: Balder Earring +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (115~120) +Sub Craft(s): Alchemy - (??) + + + Fire Crystal + Ruthenium Ingot x2 + Wyrm Ash + + NQ: Moonbeam Necklace + + HQ1: Moonlight Necklace + + EarthCrystal-Icon.gif + +Main Craft: Goldsmithing - (115~120) +Sub Craft(s): Clothcraft - (??) + + + Earth Crystal + Moonbow Stone + Moonlight Coral + Khoma Thread + + NQ: Enriching Sword + + HQ1: Enriching Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (115~120) +Sub Craft(s): Smithing - (??) + + + Fire Crystal + Moonbow Steel + Niobium Ingot + Moonbow Stone + Enhancing Sword + + NQ: Turms Leggings + + HQ1: Turms Leggings +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (115~120) +Sub Craft(s): Bonecraft - (??) +Key Item: Goldsmith's argentum tome + + + Fire Crystal + Tiger Leather + Bztavian Wing + Macuil Horn + Ruthenium Ore x3 + + NQ: Turms Mittens + + HQ1: Turms Mittens +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (115~120) +Sub Craft(s): Bonecraft - (??) +Key Item: Goldsmith's argentum tome + + + Fire Crystal + Tiger Leather x2 + Bztavian Wing + Macuil Horn + Ruthenium Ore x3 + + NQ: Turms Cap + + HQ1: Turms Cap +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (115~120) +Sub Craft(s): Bonecraft - (??) +Key Item: Goldsmith's argentum tome + + + Fire Crystal + Tiger Leather + Cermet Chunk + Bztavian Wing + Macuil Horn + Ruthenium Ore x3 + + NQ: Turms Subligar + + HQ1: Turms Subligar +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (115~120) +Sub Craft(s): Bonecraft - (??) +Key Item: Goldsmith's argentum tome + + + Fire Crystal + Tiger Leather + Cermet Chunk + Bztavian Wing + Macuil Horn + Ruthenium Ore + Ruthenium Ingot + + NQ: Turms Harness + + HQ1: Turms Harness +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (115~120) +Sub Craft(s): Bonecraft - (??) +Key Item: Goldsmith's argentum tome + + + Fire Crystal + Tiger Leather + Cermet Chunk + Bztavian Wing + Macuil Horn x2 + Ruthenium Ore + Ruthenium Ingot + + NQ: Raetic Baghnakhs + + HQ1: Raetic Baghnakhs +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (115~120) +Key Item: Goldsmith's argentum tome + + + Fire Crystal + Fulfillment Crystal + Ruthenium Ingot + Rune Baghnakhs + + NQ: Raetic Blade + + HQ1: Raetic Blade +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (115~120) +Key Item: Goldsmith's argentum tome + + + Fire Crystal + Thought Crystal + Ruthenium Ingot + Rune Blade + + NQ: Mache Earring + + HQ1:Mache Earring +1 + + FireCrystal-Icon.gif + +Main Craft: Goldsmithing - (118) + + + Fire Crystal + Shadow Gem + Hepatizon Ingot + Tartarian Soul \ No newline at end of file diff --git a/datasets/Goldsmithing_v2.csv b/datasets/Goldsmithing_v2.csv new file mode 100644 index 0000000..24a9186 --- /dev/null +++ b/datasets/Goldsmithing_v2.csv @@ -0,0 +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]" diff --git a/datasets/Leathercraft.txt b/datasets/Leathercraft.txt new file mode 100644 index 0000000..a5ff780 --- /dev/null +++ b/datasets/Leathercraft.txt @@ -0,0 +1,6182 @@ +Leathercraft Crafted Items +Amateur (1-10) +Synthesis Information +Yield Requirements Ingredients + + NQ: Sheep Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (2) + + + Dark Crystal + Sheepskin + Willow Log + Distilled Water + + NQ: Sheep Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (2) + + + Dark Crystal + Sheepskin + Windurstian Tea Leaves + Distilled Water + + NQ: Sheep Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (2) +Key Item: Tanning + + + Dark Crystal + Sheepskin x3 + Windurstian Tea Leaves x3 + Distilled Water + Tanning Vat + + NQ: Smooth Sheep Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (2) +Key Item: Leather Purification + + + Dark Crystal + Sheepskin + Willow Log + Distilled Water + Wind Anima x2 + Light Anima + + NQ: Smooth Sheep Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (2) +Key Item: Leather Purification + + + Dark Crystal + Sheepskin + Windurstian Tea Leaves + Distilled Water + Wind Anima x2 + Light Anima + + NQ: Vivio Sheep Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (2) +Key Item: Leather Purification + + + Dark Crystal + Sheepskin + Willow Log + Wind Anima + Water Anima + Light Anima + Distilled Water + + NQ: Vivio Sheep Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (2) +Key Item: Leather Purification + + + Dark Crystal + Sheepskin + Windurstian Tea Leaves + Wind Anima + Water Anima + Light Anima + Distilled Water + + NQ: Cesti + + HQ1:Cesti +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (3) +Sub Craft(s): Woodworking - (1) + + + Earth Crystal + Ash Lumber + Sheep Leather x2 + + NQ: Vagabond's Gloves + + HQ1:Nomad's Gloves + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (3) + + + Earth Crystal + Sheep Leather x2 + Cotton Cloth + + NQ: Sheep Wool + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (4) + + + Wind Crystal + Sheepskin x2 + + NQ: Leather Bandana + + HQ1:Leather Bandana +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (5) + + + Wind Crystal + Sheep Leather + + NQ: Vagabond's Boots + + HQ1:Nomad's Boots + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (5) + + + Earth Crystal + Bronze Scales + Grass Cloth + Sheep Leather x2 + + NQ: Leather Bandana + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (5) + + + Wind Crystal + Leathercraft Kit 5 + + NQ: Fine Parchment + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (5) + + + Dark Crystal + Parchment + Pumice Stone + + NQ: Leather Highboots + + HQ1:Leather Highboots +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (6) + + + Earth Crystal + Bronze Scales + Sheep Leather x3 + + NQ: Rabbit Mantle + + HQ1:Rabbit Mantle +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (7) + + + Earth Crystal + Rabbit Hide x5 + Grass Thread + + NQ: Leather Gloves + + HQ1:Leather Gloves +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (8) + + + Earth Crystal + Grass Cloth + Sheep Leather x2 + + NQ: San d'Orian Cesti + + HQ1:Kingdom Cesti + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (8) + + + Earth Crystal + Royal Archer's Cesti + Sheep Leather + + NQ: Leather Trousers + + HQ1:Leather Trousers +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (9) + + + Earth Crystal + Grass Cloth x2 + Sheep Leather x2 + + NQ: Leather Vest + + HQ1:Leather Vest +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (10) + + + Earth Crystal + Sheep Leather x3 + Lizard Skin + + NQ: Leather Vest + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (10) + + + Earth Crystal + Leathercraft Kit 10 + + +Recruit (11-20) +Synthesis Information +Yield Requirements Ingredients + + NQ: Leather Pouch + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (11) +Sub Craft(s): Smithing - (4) + + + Earth Crystal + Bronze Scales + Sheep Leather x2 + Rabbit Hide + + NQ: Solea + + HQ1:Solea +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (11) + + + Wind Crystal + Sheep Leather x2 + + NQ: Karakul Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (12) + + + Dark Crystal + Karakul Skin + Imperial Tea Leaves + Distilled Water + + NQ: Karakul Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (12) +Key Item: Tanning + + + Dark Crystal + Karakul Skin x3 + Imperial Tea Leaves x3 + Distilled Water + Tanning Vat + + NQ: Lizard Belt + + HQ1:Lizard Belt +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (12) + + + Wind Crystal + Lizard Skin + Iron Chain + + NQ: Sturdy Trousers + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (12) +Key Item: Leather Purification + + + Earth Crystal + Leather Trousers + Lambent Fire Cell + Lambent Earth Cell + + NQ: Lizard Strap + + HQ1:Lizard Strap +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (12) + + + Wind Crystal + Lizard Skin x2 + + NQ: Leather Belt + + HQ1:Leather Belt +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (13) + + + Wind Crystal + Sheep Leather + Iron Chain + + NQ: Fisherman's Gloves + + HQ1:Angler's Gloves + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (14) + + + Earth Crystal + Lizard Skin x2 + Cotton Cloth + + NQ: Karakul Wool + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (14) + + + Wind Crystal + Karakul Skin x2 + + NQ: Lizard Mantle + + HQ1:Lizard Mantle +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (14) + + + Earth Crystal + Lizard Skin + Lizard Molt + Grass Thread + + NQ: Lizard Helm + + HQ1:Lizard Helm +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (15) + + + Earth Crystal + Lizard Skin x2 + Sheep Leather + + NQ: Lizard Helm + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (15) + + + Earth Crystal + Leathercraft Kit 15 + + NQ: Augmenting Belt + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (16) +Key Item: Leather Purification + + + Wind Crystal + Lambent Fire Cell + Lambent Earth Cell + Leather Belt + + NQ: Lizard Gloves + + HQ1:Fine Gloves + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (16) + + + Earth Crystal + Lizard Skin + Leather Gloves + + NQ: Lizard Cesti + + HQ1:Burning Cesti + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (17) + + + Earth Crystal + Cesti + Lizard Skin + + NQ: Exactitude Mantle + + HQ1: Exactitude Mantle +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (17) + + + Earth Crystal + Immortal Molt + Lizard Skin + Grass Thread + + NQ: Lizard Ledelsens + + HQ1:Fine Ledelsens + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (18) +Sub Craft(s): Goldsmithing - (5) + + + Earth Crystal + Lizard Skin + Brass Sheet + Leather Highboots + + NQ: Lizard Trousers + + HQ1:Fine Trousers + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (18) + + + Earth Crystal + Lizard Skin x2 + Leather Trousers + + NQ: Lizard Jerkin + + HQ1:Fine Jerkin + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (19) + + + Earth Crystal + Lizard Skin x3 + Sheep Leather + + NQ: Wolf Fur + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (19) + + + Wind Crystal + Wolf Hide x3 + + NQ: Fisherman's Boots + + HQ1:Angler's Boots + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (20) + + + Earth Crystal + Lizard Skin x2 + Bronze Scales + Grass Cloth + + NQ: Little Worm Belt + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (20) + + + Earth Crystal + Sheep Leather + Animal Glue + Leather Pouch + Worm Mulch + + NQ: Lugworm Belt + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (20) + + + Earth Crystal + Sheep Leather + Animal Glue + Leather Pouch + Lugworm Sand + + NQ: Smash Cesti + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (20) +Key Item: Leather Ensorcellment + + + Earth Crystal + Lambent Earth Cell + Lambent Wind Cell + Lizard Cesti + + NQ: Fisherman's Boots + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (20) + + + Earth Crystal + Leathercraft Kit 20 + + +Initiate (21-30) +Synthesis Information +Yield Requirements Ingredients + + NQ: Dhalmel Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (21) + + + Dark Crystal + Windurstian Tea Leaves + Dhalmel Hide + Distilled Water + + NQ: Dhalmel Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (21) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Dhalmel Hide x3 + Distilled Water + Tanning Vat + + NQ: Dhalmel Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (21) + + + Dark Crystal + Willow Log + Dhalmel Hide + Distilled Water + + NQ: Fragrant Dhalmel Hide + + WaterCrystal-Icon.gif + +Main Craft: Leathercraft - (21) +Key Item: Leather Ensorcellment + + + Water Crystal + Dhalmel Hide + Wind Anima + Earth Anima + Dark Anima + + NQ: Tough Dhalmel Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (21) +Key Item: Leather Ensorcellment + + + Dark Crystal + Dhalmel Hide + Windurstian Tea Leaves + Distilled Water + Wind Anima x2 + Dark Anima + + NQ: Tough Dhalmel Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (21) +Key Item: Leather Ensorcellment + + + Dark Crystal + Dhalmel Hide + Willow Log + Distilled Water + Wind Anima x2 + Dark Anima + + NQ: Leather Ring + + HQ1:Leather Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (22) + + + Wind Crystal + Dhalmel Leather + + NQ: Chocobo Blinkers x3 + + HQ1: Chocobo Blinkers x6 Verification Needed + HQ2: Chocobo Blinkers x9 Verification Needed + HQ3: Chocobo Blinkers x12 Verification Needed + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (22) + + + Earth Crystal + Linen Cloth + Silk Cloth + Karakul Leather + + NQ: Chocobo Gloves + + HQ1:Rider's Gloves + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (23) + + + Earth Crystal + Dhalmel Leather + Lizard Skin + Cotton Cloth + + NQ: Bugard Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (24) + + + Dark Crystal + Windurstian Tea Leaves + Bugard Skin + Distilled Water + + NQ: Bugard Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (24) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Bugard Skin x3 + Distilled Water + Tanning Vat + + NQ: Bugard Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (24) + + + Dark Crystal + Willow Log + Bugard Skin + Distilled Water + + NQ: Glossy Bugard Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (24) +Key Item: Leather Purification + + + Dark Crystal + Windurstian Tea Leaves + Bugard Skin + Wind Anima x2 + Light Anima + Distilled Water + + NQ: Glossy Bugard Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (24) +Key Item: Leather Purification + + + Dark Crystal + Willow Log + Bugard Skin + Wind Anima x2 + Light Anima + Distilled Water + + NQ: Rugged Bugard Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (24) +Key Item: Leather Purification + + + Dark Crystal + Willow Log + Bugard Skin + Fire Anima x2 + Light Anima + Distilled Water + + NQ: Rugged Bugard Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (24) +Key Item: Leather Purification + + + Dark Crystal + Windurstian Tea Leaves + Bugard Skin + Fire Anima x2 + Light Anima + Distilled Water + + NQ: Soft Bugard Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (24) +Key Item: Leather Purification + + + Dark Crystal + Willow Log + Bugard Skin + Lightning Anima x2 + Light Anima + Distilled Water + + NQ: Soft Bugard Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (24) +Key Item: Leather Purification + + + Dark Crystal + Windurstian Tea Leaves + Bugard Skin + Lightning Anima x2 + Light Anima + Distilled Water + + NQ: Studded Bandana + + HQ1:Strong Bandana + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (24) + + + Earth Crystal + Iron Chain + Leather Bandana + + NQ: Tough Bugard Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (24) +Key Item: Leather Purification + + + Dark Crystal + Willow Log + Bugard Skin + Earth Anima x2 + Light Anima + Distilled Water + + NQ: Tough Bugard Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (24) +Key Item: Leather Purification + + + Dark Crystal + Windurstian Tea Leaves + Bugard Skin + Earth Anima x2 + Light Anima + Distilled Water + + NQ: Armored Ring + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (25) + + + Wind Crystal + Tough Dhalmel Leather + Leather Ring + + NQ: Seer's Pumps + + HQ1:Seer's Pumps +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (25) +Sub Craft(s): Clothcraft - (20) + + + Earth Crystal + Wool Thread x2 + Cotton Cloth x2 + Sheep Leather + + NQ: Warrior's Belt + + HQ1:Warrior's Belt +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (25) + + + Wind Crystal + Iron Chain + Dhalmel Leather + + NQ: Warrior's Belt + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (25) + + + Wind Crystal + Leathercraft Kit 25 + + NQ: Studded Gloves + + HQ1:Strong Gloves + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (26) + + + Earth Crystal + Iron Chain + Dhalmel Leather + Leather Gloves + + NQ: Trader's Pigaches + + HQ1:Baron's Pigaches + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (26) +Sub Craft(s): Clothcraft - (21) + + + Earth Crystal + Dhalmel Leather + Sheep Leather + Red Grass Thread + Red Grass Cloth x2 + + NQ: Dhalmel Mantle + + HQ1:Dhalmel Mantle +1 + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (27) + + + Ice Crystal + Dhalmel Hide + Wool Thread + + NQ: Noct Brais + + HQ1:Noct Brais +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (28) +Sub Craft(s): Clothcraft - (27) + + + Earth Crystal + Linen Thread + Linen Cloth x2 + Sheep Leather + + NQ: Studded Boots + + HQ1:Strong Boots + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (28) + + + Earth Crystal + Iron Chain + Dhalmel Leather + Leather Highboots + + NQ: San d'Orian Bandana + + HQ1:Kingdom Bandana + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (29) + + + Earth Crystal + Royal Footman's Bandana + Sheep Leather + + NQ: Sandals + + HQ1:Mage's Sandals + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (29) + + + Wind Crystal + Dhalmel Leather + Sheep Leather + + NQ: Aiming Gloves + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (29) +Key Item: Leather Ensorcellment + + + Earth Crystal + Lambent Water Cell + Lambent Wind Cell + Studded Gloves + + NQ: Dhalmel Hair + + HQ1: Dhalmel Hair x2 + HQ2: Dhalmel Hair x3 + HQ3: Dhalmel Hair x4 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (29) + + + Wind Crystal + Dhalmel Hide x3 + + NQ: Breath Mantle + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (30) + + + Ice Crystal + Fragrant Dhalmel Hide + Dhalmel Mantle + + NQ: Caliginous Wolf Hide + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (30) +Key Item: Leather Purification + + + Ice Crystal + Wolf Hide + Earth Anima + Water Anima + Light Anima + + NQ: Chocobo Boots + + HQ1:Rider's Boots + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (30) + + + Earth Crystal + Dhalmel Leather x2 + Bronze Scales + Grass Cloth + + NQ: Studded Trousers + + HQ1:Strong Trousers + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (30) + + + Earth Crystal + Iron Chain + Dhalmel Leather + Leather Trousers + + NQ: Studded Trousers + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (30) + + + Earth Crystal + Leathercraft Kit 30 + + +Novice (31-40) +Synthesis Information +Yield Requirements Ingredients + + NQ: Parchment + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (31) + + + Dark Crystal + Karakul Leather + Rolanberry + + NQ: Parchment + + HQ1:Parchment x2 + HQ2:Parchment x3 + HQ3:Parchment x4 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (31) + + + Dark Crystal + Rolanberry + Sheep Leather + + NQ: San d'Orian Gloves + + HQ1:Kingdom Gloves + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (31) + + + Earth Crystal + Royal Footman's Gloves + Sheep Leather + + NQ: Vellum + + HQ1: Vellum x2 + HQ1: Vellum x3 + HQ1: Vellum x4 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (31) + + + Dark Crystal + Rolanberry + Sheep Leather + Gold Dust + + NQ: Studded Vest + + HQ1:Strong Vest + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (32) + + + Earth Crystal + Dhalmel Leather + Ram Leather + Iron Chain + Leather Vest + + NQ: Field Gloves + + HQ1:Worker Gloves + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (33) + + + Earth Crystal + Dhalmel Leather + Cotton Cloth + Ram Leather + + NQ: San d'Orian Boots + + HQ1:Kingdom Boots + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (33) + + + Earth Crystal + Royal Footman's Boots + Sheep Leather + + NQ: Wolf Mantle + + HQ1:Wolf Mantle +1 + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (33) + + + Ice Crystal + Wolf Hide + Wool Thread + + NQ: Shoes + + HQ1:Shoes +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (34) +Sub Craft(s): Clothcraft - (8) + + + Earth Crystal + Dhalmel Leather x2 + Cotton Cloth + + NQ: Bloody Ram Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (35) +Key Item: Leather Purification + + + Dark Crystal + Windurstian Tea Leaves + Ram Skin + Earth Anima + Lightning Anima + Light Anima + Distilled Water + + NQ: Healing Vest + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (35) + + + Earth Crystal + Vivio Sheep Leather + Studded Vest + + NQ: Light Ram Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (35) +Key Item: Leather Purification + + + Dark Crystal + Ram Skin + Windurstian Tea Leaves + Distilled Water + Ice Anima + Lightning Anima + Light Anima + + NQ: Ram Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (35) + + + Dark Crystal + Windurstian Tea Leaves + Ram Skin + Distilled Water + + NQ: Ram Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (35) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Ram Skin x3 + Distilled Water + Tanning Vat + + NQ: San d'Orian Trousers + + HQ1:Kingdom Trousers + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (35) + + + Earth Crystal + Royal Footman's Trousers + Sheep Leather + + NQ: Ram Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (35) + + + Dark Crystal + Leathercraft Kit 35 + + NQ: Bloody Ram Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (36) +Key Item: Leather Purification + + + Dark Crystal + Willow Log + Ram Skin + Earth Anima + Lightning Anima + Light Anima + Distilled Water + + NQ: Fragrant Ram Skin + + WaterCrystal-Icon.gif + +Main Craft: Leathercraft - (36) +Key Item: Leather Ensorcellment + + + Water Crystal + Ram Skin + Wind Anima + Earth Anima + Dark Anima + + NQ: Invisible Mantle + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (36) + + + Ice Crystal + Caliginous Wolf Hide + Wolf Mantle + + NQ: Light Ram Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (36) +Key Item: Leather Purification + + + Dark Crystal + Ram Skin + Willow Log + Distilled Water + Ice Anima + Lightning Anima + Light Anima + + NQ: Ram Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (36) + + + Dark Crystal + Willow Log + Ram Skin + Distilled Water + + NQ: Garish Pumps + + HQ1:Rubious Pumps + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (37) +Sub Craft(s): Clothcraft - (28) + + + Earth Crystal + Sheep Leather + Scarlet Linen x2 + Bloodthread x2 + + NQ: Leather Gorget + + HQ1:Leather Gorget +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (37) + + + Earth Crystal + Ram Leather + Grass Thread + + NQ: Magic Belt + + HQ1:Magic Belt +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (37) + + + Wind Crystal + Toad Oil + Mercury + Ram Leather + + NQ: San d'Orian Vest + + HQ1:Kingdom Vest + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (37) + + + Earth Crystal + Royal Footman's Vest + Sheep Leather + + NQ: Cuir Bandana + + HQ1:Cuir Bandana +1 + + WaterCrystal-Icon.gif + +Main Craft: Leathercraft - (38) + + + Water Crystal + Ram Leather + Beeswax + Leather Bandana + + NQ: Combat Caster's Shoes +1 + + HQ1:Combat Caster's Shoes +2 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (39) + + + Earth Crystal + Combat Caster's Shoes + Dhalmel Leather + + NQ: Laminated Ram Leather + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (39) +Sub Craft(s): Alchemy - (10) + + + Earth Crystal + Ram Leather + Animal Glue + Distilled Water + + NQ: Wolf Gorget + + HQ1:Wolf Gorget +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (39) + + + Earth Crystal + Cotton Thread + Wolf Hide + + NQ: Cuir Gloves + + HQ1:Cuir Gloves +1 + + WaterCrystal-Icon.gif + +Main Craft: Leathercraft - (40) + + + Water Crystal + Ram Leather x2 + Beeswax + Leather Gloves + + NQ: Field Boots + + HQ1:Worker Boots + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (40) + + + Earth Crystal + Bronze Scales + Grass Cloth + Ram Leather x2 + + NQ: Mist Pumps + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (40) + + + Earth Crystal + Smooth Sheep Leather + Garish Pumps + + NQ: Field Boots + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (40) + + + Earth Crystal + Leathercraft Kit 40 + + +Apprentice (41-50) +Synthesis Information +Yield Requirements Ingredients + + NQ: Barbarian's Belt + + HQ1:Brave Belt + + WaterCrystal-Icon.gif + +Main Craft: Leathercraft - (41) + + + Water Crystal + Leather Belt + Fiend Blood + Beastman Blood + + NQ: Cuir Highboots + + HQ1:Cuir Highboots +1 + + WaterCrystal-Icon.gif + +Main Craft: Leathercraft - (42) + + + Water Crystal + Ram Leather x2 + Beeswax + Leather Highboots + + NQ: Waistbelt + + HQ1:Waistbelt +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (43) + + + Wind Crystal + Grass Thread + Ram Leather x2 + + NQ: Acrobat's Belt + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (44) + + + Earth Crystal + Glossy Bugard Leather + Barbarian's Belt + + NQ: Runner's Belt + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (44) + + + Earth Crystal + Soft Bugard Leather + Barbarian's Belt + + NQ: Samsonian Belt + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (44) + + + Earth Crystal + Rugged Bugard Leather + Barbarian's Belt + + NQ: Tough Belt + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (44) + + + Earth Crystal + Tough Bugard Leather + Barbarian's Belt + + NQ: Cuir Trousers + + HQ1:Cuir Trousers +1 + + WaterCrystal-Icon.gif + +Main Craft: Leathercraft - (45) + + + Water Crystal + Ram Leather x2 + Beeswax + Leather Trousers + + NQ: Chocobo Jack Coat + + HQ1:Rider's Jack Coat + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (45) +Sub Craft(s): Clothcraft - (27) + + + Earth Crystal + Linen Cloth + Sheep Leather + Wool Thread + Wool Cloth + Ram Leather x2 + + NQ: Powder Boots + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (45) + + + Earth Crystal + Tough Dhalmel Leather + Cuir Highboots + + NQ: Tarasque Mitts + + HQ1:Tarasque Mitts +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (45) +Sub Craft(s): Clothcraft - (4) + + + Earth Crystal + Saruta Cotton + Tarasque Skin x2 + Grass Thread x2 + + NQ: Cuir Trousers + + WaterCrystal-Icon.gif + +Main Craft: Leathercraft - (45) + + + Water Crystal + Leathercraft Kit 45 + + NQ: Cuir Bouilli + + HQ1:Cuir Bouilli +1 + + WaterCrystal-Icon.gif + +Main Craft: Leathercraft - (46) + + + Water Crystal + Ram Leather x2 + Beeswax + Leather Vest + + NQ: Haste Belt + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (46) + + + Earth Crystal + Light Ram Leather + Waistbelt + + NQ: Royal Knight's Belt +1 + + HQ1:Royal Knight's Belt +2 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (46) + + + Earth Crystal + Royal Knight's Belt + Ram Leather + + NQ: Narasimha Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (46) + + + Dark Crystal + Windurstian Tea Leaves + Narasimha Hide + Distilled Water + + NQ: Narasimha Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (47) + + + Dark Crystal + Willow Log + Narasimha Hide + Distilled Water + + NQ: Corsette + + HQ1:Corsette +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (48) + + + Earth Crystal + Waistbelt + Coeurl Whisker + Scarlet Ribbon + Dhalmel Leather + Silk Cloth + + NQ: Buffalo Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (49) + + + Dark Crystal + Willow Log + Buffalo Hide + Distilled Water + + NQ: Buffalo Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (49) + + + Dark Crystal + Windurstian Tea Leaves + Buffalo Hide + Distilled Water + + NQ: Buffalo Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (49) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Buffalo Hide x3 + Distilled Water + Tanning Vat + + NQ: Ram Mantle + + HQ1:Ram Mantle +1 + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (49) + + + Ice Crystal + Ram Skin + Wool Thread + + NQ: Narasimha's Cesti + + HQ1:Vishnu's Cesti + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (50) + + + Earth Crystal + Cesti + Narasimha Leather + + NQ: Leather Shield + + HQ1: Leather Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (50) + + + Earth Crystal + Ram Leather + Raptor Skin + Lauan Shield + + NQ: Leather Shield + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (50) + + + Earth Crystal + Leathercraft Kit 50 + + +Journeyman (51-60) +Synthesis Information +Yield Requirements Ingredients + + NQ: Frigid Skin + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (51) +Key Item: Leather Ensorcellment + + + Dark Crystal + Raptor Skin + Ice Anima x2 + Dark Anima + + NQ: High Breath Mantle + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (52) + + + Ice Crystal + Fragrant Ram Skin + Ram Mantle + + NQ: Himantes + + HQ1: Himantes +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (52) + + + Earth Crystal + Raptor Skin + Lizard Cesti + + NQ: Moblin Sheep Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (52) + + + Dark Crystal + Willow Log + Moblin Sheepskin + Distilled Water + + NQ: Moblin Sheep Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (52) + + + Dark Crystal + Windurstian Tea Leaves + Moblin Sheepskin + Distilled Water + + NQ: Moblin Sheep Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (52) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Moblin Sheepskin x3 + Distilled Water + Tanning Vat + + NQ: Laminated Buffalo Leather + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (53) +Sub Craft(s): Alchemy - (9) + + + Earth Crystal + Animal Glue + Buffalo Leather + Distilled Water + + NQ: Raptor Strap + + HQ1: Raptor Strap +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (53) + + + Wind Crystal + Raptor Skin x2 + + NQ: Raptor Mantle + + HQ1: Dino Mantle + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (53) + + + Earth Crystal + Raptor Skin x2 + Grass Thread + + NQ: Moblin Sheep Wool + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (54) + + + Wind Crystal + Moblin Sheepskin x2 + + NQ: Raptor Trousers + + HQ1: Dino Trousers + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (54) + + + Earth Crystal + Raptor Skin x2 + Cuir Trousers + + NQ: Raptor Ledelsens + + HQ1: Dino Ledelsens + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (55) +Sub Craft(s): Goldsmithing - (28) + + + Earth Crystal + Raptor Skin + Cuir Highboots + Mythril Sheet + + NQ: Noble Himantes + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (55) +Key Item: Leather Ensorcellment + + + Earth Crystal + Lambent Fire Cell + Lambent Wind Cell + Himantes + + NQ: Raptor Gloves + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (55) + + + Earth Crystal + Leathercraft Kit 55 + + NQ: Crow Gaiters + + HQ1: Raven Gaiters + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (56) +Sub Craft(s): Clothcraft - (49) + + + Earth Crystal + Gold Thread + Velvet Cloth x3 + Sheep Leather + Ram Leather + Tiger Leather + + NQ: Raptor Helm + + HQ1: Dino Helm + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (56) +Sub Craft(s): Smithing - (28) + + + Earth Crystal + Raptor Skin x2 + Iron Sheet + Sheep Leather + + NQ: Royal Squire's Shield +1 + + HQ1: Royal Squire's Shield +2 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (56) + + + Earth Crystal + Royal Squire's Shield + Ram Leather + + NQ: Brigandine + + HQ1: Brigandine +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (57) +Sub Craft(s): Goldsmithing - (50), Clothcraft - (48) + + + Earth Crystal + Lizard Jerkin + Velvet Cloth x2 + Gold Sheet + Ram Leather + Mythril Sheet + Brass Scales + + NQ: Desert Boots + + HQ1: Desert Boots +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (57) + + + Earth Crystal + Bronze Scales + Sheep Leather x2 + Yowie Skin + + NQ: Ice Trousers + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (57) + + + Earth Crystal + Frigid Skin + Raptor Trousers + + NQ: Raptor Gloves + + HQ1: Dino Gloves + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (57) + + + Earth Crystal + Cuir Gloves + Raptor Skin + + NQ: Catoblepas Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (58) + + + Dark Crystal + Willow Log + Catoblepas Hide + Distilled Water + + NQ: Catoblepas Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (58) + + + Dark Crystal + Windurstian Tea Leaves + Catoblepas Hide + Distilled Water + + NQ: Catoblepas Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (58) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Catoblepas Hide x3 + Distilled Water + Tanning Vat + + NQ: Raptor Jerkin + + HQ1: Dino Jerkin + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (58) + + + Earth Crystal + Raptor Skin x2 + Sheep Leather + + NQ: Brigandine + + HQ1: Brigandine +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (59) +Sub Craft(s): Smithing - (50), +Clothcraft - (38) + + + Earth Crystal + Darksteel Sheet x2 + Linen Cloth + Iron Chain + Tiger Leather + Sheep Leather + Velvet Cloth + Wool Thread + + NQ: Moccasins + + HQ1: Moccasins +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (59) +Sub Craft(s): Clothcraft - (8) + + + Earth Crystal + Dhalmel Leather + Linen Cloth + Raptor Skin + + NQ: Amemet Mantle + + HQ1: Amemet Mantle +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (60) + + + Earth Crystal + Amemet Skin + Lizard Molt + Grass Thread + + NQ: Blizzard Gloves + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (60) + + + Earth Crystal + Frigid Skin + Raptor Gloves + + NQ: Hard Leather Ring + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (60) + + + Wind Crystal + Leathercraft Kit 60 + + +Craftsman (61-70) +Synthesis Information +Yield Requirements Ingredients + + NQ: Tiger Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (61) + + + Dark Crystal + Willow Log + Tiger Hide + Distilled Water + + NQ: Tiger Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (61) + + + Dark Crystal + Windurstian Tea Leaves + Tiger Hide + Distilled Water + + NQ: Tiger Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (61) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Tiger Hide x3 + Distilled Water + Tanning Vat + + NQ: Smilodon Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (61) + + + Dark Crystal + Willow Log + Smilodon Hide + Distilled Water + + NQ: Smilodon Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (61) + + + Dark Crystal + Windurstian Tea Leaves + Smilodon Hide + Distilled Water + + NQ: Smilodon Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (61) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Smilodon Hide x3 + Distilled Water + Tanning Vat + + NQ: Spirit Smilodon Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (61) +Key Item: Leather Purification + + + Dark Crystal + Earth Anima x2 + Dark Anima + Windurstian Tea Leaves + Smilodon Hide + Distilled Water + + NQ: Spirit Smilodon Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (61) +Key Item: Leather Purification + + + Dark Crystal + Earth Anima x2 + Dark Anima + Willow Log + Smilodon Hide + Distilled Water + + NQ: Hard Leather Ring + + HQ1:Tiger Ring + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (62) + + + Wind Crystal + Tiger Leather + + NQ: Premium Bag + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (62) +Sub Craft(s): Goldsmithing - (57), Clothcraft - (54) + + + Earth Crystal + Bugard Leather + Gold Thread + Moblin Sheep Leather + Moblin Sheep Wool + Platinum Ingot + Rainbow Cloth + Rainbow Thread + + NQ: Smilodon Ring + + HQ1:Smilodon Ring +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (62) + + + Wind Crystal + Smilodon Leather + + NQ: Beak Mantle + + HQ1:Beak Mantle +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (63) + + + Earth Crystal + Cockatrice Skin x2 + Grass Thread + + NQ: Crow Hose + + HQ1:Raven Hose + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (63) +Sub Craft(s): Clothcraft - (46) + + + Earth Crystal + Gold Thread + Velvet Cloth + Sheep Leather + Tiger Leather x2 + + NQ: Bugard Strap + + HQ1:Bugard Strap +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (63) + + + Wind Crystal + Bugard Leather x2 + + NQ: Beak Trousers + + HQ1:Beak Trousers +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (64) + + + Earth Crystal + Cockatrice Skin x2 + Cuir Trousers + + NQ: Jaridah Khud + + HQ1:Akinji Khud + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (64) +Sub Craft(s): Clothcraft - (25) + + + Earth Crystal + Karakul Leather + Marid Leather + Marid Hair + Karakul Cloth + + NQ: Stirge Belt + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (64) + + + Wind Crystal + Ram Leather + Mercury + Toad Oil + Volant Serum + + NQ: Beak Ledelsens + + HQ1:Beak Ledelsens +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (65) +Sub Craft(s): Goldsmithing - (28) + + + Earth Crystal + Cockatrice Skin + Cuir Highboots + Mythril Sheet + + NQ: Sheep Chammy + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (65) +Sub Craft(s): Alchemy - (43) + + + Dark Crystal + Sheepskin + Windurstian Tea Leaves + Clot Plasma + Distilled Water + + NQ: Sheep Chammy + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (65) +Sub Craft(s): Alchemy - (43) + + + Dark Crystal + Sheepskin + Willow Log + Clot Plasma + Distilled Water + + NQ: Protect Ring + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (65) + + + Earth Crystal + Smilodon Ring + Spirit Smilodon Leather + + NQ: Battle Boots + + HQ1:Battle Boots +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (66) + + + Earth Crystal + Iron Scales + Ram Leather x2 + Tiger Leather + + NQ: Jaridah Peti + + HQ1:Akinji Peti + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (66) +Sub Craft(s): Smithing - (43), Clothcraft - (39) + + + Earth Crystal + Steel Ingot + Steel Sheet + Darksteel Chain + Brass Chain + Velvet Cloth + Karakul Leather + Marid Leather + Karakul Cloth + + NQ: Battle Boots + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (66) + + + Earth Crystal + Leathercraft Kit 66 + + NQ: Beak Helm + + HQ1:Beak Helm +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (67) +Sub Craft(s): Smithing - (28) + + + Earth Crystal + Iron Sheet + Sheep Leather + Cockatrice Skin x2 + + NQ: White Mouton + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (67) + + + Dark Crystal + Willow Log + Ram Skin + Shell Powder x2 + Distilled Water + + NQ: White Mouton + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (67) + + + Dark Crystal + Windurstian Tea Leaves + Ram Skin + Shell Powder x2 + Distilled Water + + NQ: Beak Gloves + + HQ1:Beak Gloves +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (68) + + + Earth Crystal + Cockatrice Skin + Cuir Gloves + + NQ: Hoplon + + HQ1:Hoplon +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (68) +Sub Craft(s): Woodworking - (53), Smithing - (9) + + + Earth Crystal + Bronze Sheet + Chestnut Lumber + Walnut Lumber + Ram Leather + + NQ: Beak Jerkin + + HQ1:Beak Jerkin +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (69) + + + Earth Crystal + Sheep Leather + Cockatrice Skin x2 + + NQ: Byrnie + + HQ1:Byrnie +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (69) +Sub Craft(s): Smithing - (34) + + + Earth Crystal + Darksteel Sheet + Dhalmel Leather + Ram Leather + Tiger Leather + Behemoth Leather + Silver Mail + + NQ: Tabin Boots + + HQ1:Tabin Boots +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (69) + + + Earth Crystal + Marid Leather + Battle Boots + + NQ: Silky Suede + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (69) + + + Wind Crystal + Garnet + Buffalo Leather + + NQ: Behemoth Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (70) + + + Dark Crystal + Willow Log + Behemoth Hide + Distilled Water + + NQ: Behemoth Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (70) + + + Dark Crystal + Windurstian Tea Leaves + Behemoth Hide + Distilled Water + + NQ: Behemoth Mantle + + HQ1:Behemoth Mantle +1 + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (70) + + + Ice Crystal + Wool Thread + Behemoth Hide + + NQ: Black Cotehardie + + HQ1:Flora Cotehardie + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (70) +Sub Craft(s): Alchemy - (46), Clothcraft - (32) + + + Earth Crystal + Beak Jerkin + Black Ink + Malboro Fiber + Ram Leather + Tiger Leather + Mistletoe + Fiend Blood + Velvet Robe + + NQ: Behemoth Mantle + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (70) + + + Ice Crystal + Leathercraft Kit 70 + + +Artisan (71-80) +Synthesis Information +Yield Requirements Ingredients + + NQ: Coeurl Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (71) + + + Dark Crystal + Willow Log + Coeurl Hide + Distilled Water + + NQ: Coeurl Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (71) + + + Dark Crystal + Windurstian Tea Leaves + Coeurl Hide + Distilled Water + + NQ: Coeurl Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (71) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Coeurl Hide x3 + Distilled Water + Tanning Vat + + NQ: Pigaches + + HQ1:Pigaches +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (71) +Sub Craft(s): Clothcraft - (45) + + + Earth Crystal + Gold Thread + Silk Cloth + Tiger Leather x2 + Raptor Skin + + NQ: Silken Pigaches + + HQ1:Magi Pigaches + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (71) +Sub Craft(s): Clothcraft - (45) + + + Earth Crystal + Gold Thread + Raptor Skin + Tiger Leather x2 + Imperial Silk Cloth + + NQ: Spartan Hoplon + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (71) + + + Earth Crystal + Bloody Ram Leather + Hoplon + + NQ: Swordbelt + + HQ1:Swordbelt +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (71) + + + Earth Crystal + Iron Chain + Tiger Leather x2 + + NQ: Lynx Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (71) + + + Dark Crystal + Willow Log + Lynx Hide + Distilled Water + + NQ: Lynx Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (71) + + + Dark Crystal + Windurstian Tea Leaves + Lynx Hide + Distilled Water + + NQ: Lynx Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (71) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Lynx Hide x3 + Distilled Water + Tanning Vat + + NQ: Coeurl Cesti + + HQ1:Torama Cesti + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (72) + + + Earth Crystal + Cesti + Coeurl Leather + + NQ: Ovinnik Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (72) + + + Dark Crystal + Willow Log + Ovinnik Hide + Distilled Water + + NQ: Ovinnik Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (72) + + + Dark Crystal + Windurstian Tea Leaves + Ovinnik Hide + Distilled Water + + NQ: Battle Hose + + HQ1:Battle Hose +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (73) +Sub Craft(s): Clothcraft - (41) + + + Earth Crystal + Gold Thread + Velvet Cloth + Tiger Leather x2 + + NQ: Manta Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (73) + + + Dark Crystal + Willow Log + Manta Skin + Distilled Water + + NQ: Manta Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (73) + + + Dark Crystal + Windurstian Tea Leaves + Manta Skin + Distilled Water + + NQ: Manta Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (73) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Manta Skin x3 + Distilled Water + Tanning Vat + + NQ: Lamia Mantle + + HQ1:Lamia Mantle +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (74) + + + Earth Crystal + Manta Skin + Lamia Skin + Mohbwa Thread + + NQ: Tiger Trousers + + HQ1:Feral Trousers + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (74) + + + Earth Crystal + Cuir Trousers + Tiger Leather x2 + + NQ: Goblin Coif + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (75) +Sub Craft(s): Smithing - (38), Clothcraft - (27) + + + Earth Crystal + Goblin Cutting + Steel Sheet + Linen Cloth + Artificial Lens x2 + Moblin Thread + Undead Skin + Sheep Leather + + NQ: Tiger Ledelsens + + HQ1:Feral Ledelsens + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (75) +Sub Craft(s): Goldsmithing - (28) + + + Earth Crystal + Cuir Highboots + Mythril Sheet + Tiger Leather + + NQ: Tiger Mantle + + HQ1:Feral Mantle + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (75) + + + Ice Crystal + Tiger Hide + Wool Thread + + NQ: Smilodon Mantle + + HQ1:Smilodon Mantle +1 + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (75) + + + Ice Crystal + Smilodon Hide + Wool Thread + + NQ: Tiger Mantle + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (75) + + + Ice Crystal + Leathercraft Kit 75 + + NQ: Black Adargas + + HQ1:Black Adargas +1 + + FireCrystal-Icon.gif + +Main Craft: Leathercraft - (76) +Sub Craft(s): Goldsmithing - (44), Smithing - (41) + + + Fire Crystal + Darksteel Ingot x2 + Oak Lumber + Gold Ingot + Ovinnik Leather + + NQ: Marid Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (76) + + + Dark Crystal + Marid Hide + Imperial Tea Leaves + Distilled Water + + NQ: Marid Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (76) +Key Item: Tanning + + + Dark Crystal + Marid Hide x3 + Imperial Tea Leaves x3 + Distilled Water + Tanning Vat + + NQ: Silk Pumps + + HQ1:Silk Pumps +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (76) +Sub Craft(s): Clothcraft - (47) + + + Earth Crystal + Gold Thread x2 + Silk Cloth x2 + Sheep Leather + + NQ: Tabin Hose + + HQ1:Tabin Hose +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (76) + + + Earth Crystal + Marid Leather + Battle Hose + + NQ: Tactician Magician's Pigaches +1 + + HQ1:Tactician Magician's Pigaches +2 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (76) + + + Earth Crystal + Tactician Magician's Pigaches + Tiger Leather + + NQ: Adargas + + HQ1:Adargas +1 + + FireCrystal-Icon.gif + +Main Craft: Leathercraft - (77) +Sub Craft(s): Goldsmithing - (46), Smithing - (25) + + + Fire Crystal + Steel Ingot x2 + Oak Lumber + Gold Ingot + Rheiyoh Leather + + NQ: Tiger Gloves + + HQ1:Feral Gloves + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (77) + + + Earth Crystal + Cuir Gloves + Tiger Leather + + NQ: Yellow Mouton + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (77) + + + Dark Crystal + Ram Skin + Distilled Water + Windurstian Tea Leaves + Orpiment x2 + + NQ: Yellow Mouton + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (77) + + + Dark Crystal + Ram Skin + Distilled Water + Willow Log + Orpiment x2 + + NQ: Black Mantle + + HQ1:Black Mantle +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (78) + + + Earth Crystal + Tiger Mantle + Wool Thread + Tiger Leather + + NQ: Tiger Helm + + HQ1:Feral Helm + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (78) +Sub Craft(s): Smithing - (41) + + + Earth Crystal + Darksteel Sheet + Tiger Leather x2 + Sheep Leather + + NQ: Lavalier + + HQ1: Lavalier +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (78) + + + Earth Crystal + Behemoth Leather + Manticore Hair + + NQ: Coeurl Gorget + + HQ1:Torama Gorget + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (79) + + + Earth Crystal + Coeurl Hide + Cotton Thread + + NQ: Marid Mantle + + HQ1:Marid Mantle +1 + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (79) + + + Ice Crystal + Marid Hide + Karakul Thread + + NQ: Tiger Jerkin + + HQ1:Feral Jerkin + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (79) + + + Earth Crystal + Tiger Leather x2 + Sheep Leather + + NQ: Finesse Gloves + + HQ1:Finesse Gloves +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (79) + + + Earth Crystal + Coquecigrue Skin + Beak Gloves + + NQ: Marid Mantle + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (79) + + + Ice Crystal + Leathercraft Kit 79 + + NQ: Blue Cotehardie + + HQ1:Blue Cotehardie +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (80) +Sub Craft(s): Alchemy - (46), Clothcraft - (32) + + + Earth Crystal + Beak Jerkin + Velvet Robe + Malboro Fiber + Tiger Leather + Beetle Blood + Mistletoe + Fiend Blood + Ram Leather + + NQ: Manticore Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (80) + + + Dark Crystal + Willow Log + Manticore Hide + Distilled Water + + NQ: Manticore Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (80) + + + Dark Crystal + Windurstian Tea Leaves + Manticore Hide + Distilled Water + + NQ: Manticore Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (80) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Manticore Hide x3 + Distilled Water + Tanning Vat + + NQ: Styrne Byrnie + + HQ1: Styrne Byrnie +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (80) +Sub Craft(s): Smithing - (34) + + + Earth Crystal + Herensugue Skin + Behemoth Leather + Tiger Leather + Dhalmel Leather + Silver Mail + Darksteel Sheet + + +Adept (81-90) +Synthesis Information +Yield Requirements Ingredients + + NQ: Marid Belt + + HQ1:Marid Belt +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (81) + + + Earth Crystal + Darksteel Chain + Marid Leather x2 + + NQ: Noble's Pumps + + HQ1:Aristocrat's Pumps + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (81) +Sub Craft(s): Clothcraft - (57) + + + Earth Crystal + Gold Thread x2 + Velvet Cloth + Tiger Leather + Rainbow Cloth + + NQ: Tropical Punches + + HQ1:Tropical Punches +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (81) + + + Earth Crystal + Sheep Leather + Fruit Punches + + NQ: Wivre Shield + + HQ1:Wivre Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (81) +Sub Craft(s): Smithing - (58) + + + Earth Crystal + Darksteel Sheet x3 + Wivre Hide x2 + Ash Lumber + + NQ: Cerberus Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (81) + + + Dark Crystal + Imperial Tea Leaves + Cerberus Hide + Distilled Water + + NQ: Peiste Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (81) + + + Dark Crystal + Willow Log + Peiste Skin + Distilled Water + + NQ: Peiste Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (81) + + + Dark Crystal + Windurstian Tea Leaves + Peiste Skin + Distilled Water + + NQ: Peiste Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (81) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Peiste Skin x3 + Distilled Water + Tanning Vat + + NQ: Behemoth Cesti + + HQ1:Behemoth Cesti +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (82) + + + Earth Crystal + Behemoth Leather + Cesti + + NQ: Troll Coif + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (82) + + + Earth Crystal + Karakul Leather x2 + Manticore Hair + Marid Leather + Marid Hair + Mohbwa Cloth + + NQ: Nomad's Mantle + + HQ1:Nomad's Mantle +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (82) + + + Earth Crystal + Rabbit Hide + Traveler's Mantle + + NQ: Air Solea + + HQ1:Air Solea +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (83) + + + Wind Crystal + Lizard Molt + Light Soleas + + NQ: Coeurl Trousers + + HQ1:Torama Trousers + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (83) + + + Earth Crystal + Cuir Trousers + Coeurl Leather x2 + + NQ: War Beret + + HQ1:War Beret +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (83) +Sub Craft(s): Clothcraft - (55) + + + Earth Crystal + Gold Thread + Tiger Leather x2 + Giant Bird Plume + + NQ: Peiste Belt + + HQ1:Peiste Belt +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (83) + + + Wind Crystal + Peiste Leather + Iron Chain + + NQ: Ruszor Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (83) + + + Dark Crystal + Willow Log + Ruszor Hide + Distilled Water + + NQ: Ruszor Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (83) + + + Dark Crystal + Windurstian Tea Leaves + Ruszor Hide + Distilled Water + + NQ: Ruszor Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (83) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Ruszor Hide x3 + Distilled Water + Tanning Vat + + NQ: Fowler's Mantle + + HQ1:Fowler's Mantle +1 + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (83) + + + Ice Crystal + Woolly Pelage + Wool Thread + + NQ: Coeurl Ledelsens + + HQ1:Torama Ledelsens + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (84) +Sub Craft(s): Goldsmithing - (23) + + + Earth Crystal + Cuir Highboots + Coeurl Leather + Mythril Sheet + + NQ: Empowering Mantle + + HQ1:Empowering Mantle +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (84) + + + Earth Crystal + Enhancing Mantle + Lizard Skin + + NQ: Ogre Trousers + + HQ1:Ogre Trousers +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (84) + + + Earth Crystal + Coeurl Trousers + Manticore Leather + + NQ: Wise Braconi + + HQ1:Wise Braconi +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (84) +Sub Craft(s): Clothcraft - (37) + + + Earth Crystal + Silver Thread x2 + Velvet Cloth x2 + Eft Skin + Eltoro Leather + + NQ: Kinesis Mantle + + HQ1:Kinesis Mantle +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (84) + + + Earth Crystal + Ratatoskr Pelt + Nomad's Mantle + + NQ: Raaz Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (84) + + + Dark Crystal + Willow Log + Raaz Hide + Distilled Water + + NQ: Raaz Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (84) + + + Dark Crystal + Windurstian Tea Leaves + Raaz Hide + Distilled Water + + NQ: Raaz Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (84) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Raaz Hide x3 + Distilled Water + Tanning Vat + + NQ: Coeurl Mantle + + HQ1:Torama Mantle + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (85) + + + Ice Crystal + Coeurl Hide + Wool Thread + + NQ: Northern Jerkin + + HQ1:Tundra Jerkin + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (85) + + + Earth Crystal + Tiger Jerkin + Undead Skin + + NQ: Ogre Ledelsens + + HQ1:Ogre Ledelsens +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (85) + + + Earth Crystal + Coeurl Ledelsens + Manticore Leather + + NQ: Sonic Belt + + HQ1:Sonic Belt +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (85) + + + Earth Crystal + Ram Leather + Speed Belt + + NQ: War Boots + + HQ1:War Boots +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (85) + + + Earth Crystal + Coeurl Leather + Gold Chain + Tiger Leather x2 + + NQ: Wise Pigaches + + HQ1:Wise Pigaches +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (85) +Sub Craft(s): Clothcraft - (34) + + + Earth Crystal + Gold Thread + Velvet Cloth + Sheep Leather + Tiger Leather + Eltoro Leather + + NQ: Lynx Mantle + + HQ1:Lynx Mantle +1 + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (85) + + + Ice Crystal + Lynx Hide + Wool Thread + + NQ: Coeurl Mantle + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (85) + + + Ice Crystal + Leathercraft Kit 85 + + NQ: Cavalier's Mantle + + HQ1:Cavalier's Mantle +1 + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (86) + + + Ice Crystal + Sentinel's Mantle + Wolf Hide + + NQ: Shadow Bow + + HQ1:Shadow Bow +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (86) + + + Earth Crystal + Assassin's Bow + Ram Leather + + NQ: Tariqah + + HQ1:Tariqah +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (86) + + + Earth Crystal + Marid Leather + Marid Hair + Tariqah -1 + + NQ: Khromated Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (86) +Sub Craft(s): Alchemy - (51) + + + Dark Crystal + Karakul Skin + Khroma Nugget + Distilled Water + + NQ: Khromated Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (86) +Sub Craft(s): Alchemy - (51) +Key Item: Tanning + + + Dark Crystal + Karakul Skin x3 + Khroma Nugget x3 + Distilled Water + Tanning Vat + + NQ: Coeurl Mask + + HQ1:Torama Mask + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (87) + + + Earth Crystal + Coeurl Leather x2 + Faceguard + + NQ: Gaia Mantle + + HQ1:Gaia Mantle +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (87) + + + Earth Crystal + Cockatrice Skin + Earth Mantle + + NQ: Sipahi Dastanas + + HQ1:Abtal Dastanas + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (87) +Sub Craft(s): Goldsmithing - (44), Clothcraft - (19) + + + Earth Crystal + Mythril Sheet + Karakul Leather + Marid Leather + Marid Hair + Karakul Cloth + + NQ: Mamool Ja Helm + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (87) + + + Earth Crystal + Karakul Leather + Lizard Skin + Black Tiger Fang x2 + Coeurl Whisker + Mamool Ja Helmet + Marid Hair + + NQ: Wivre Mask + + HQ1:Wivre Mask +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (87) + + + Wind Crystal + Karakul Leather + Wivre Hide + + NQ: Radical Mantle + + HQ1:Radical Mantle +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (87) + + + Earth Crystal + Leafkin Frond + Chapuli Wing x2 + Raptor Mantle + + NQ: Aurora Mantle + + HQ1:Aurora Mantle +1 + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (88) + + + Ice Crystal + Tiger Hide + Tundra Mantle + + NQ: Coeurl Gloves + + HQ1:Torama Gloves + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (88) + + + Earth Crystal + Coeurl Leather + Cuir Gloves + + NQ: Ogre Mask + + HQ1:Ogre Mask +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (88) + + + Earth Crystal + Coeurl Mask + Manticore Leather + + NQ: Wise Cap + + HQ1:Wise Cap +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (88) +Sub Craft(s): Clothcraft - (40) + + + Earth Crystal + Silver Thread + Velvet Cloth + Silk Cloth + Manticore Leather + Eltoro Leather + + NQ: Coeurl Jerkin + + HQ1:Torama Jerkin + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (89) + + + Earth Crystal + Coeurl Leather x2 + Sheep Leather + + NQ: Ogre Gloves + + HQ1:Ogre Gloves +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (89) + + + Earth Crystal + Coeurl Gloves + Manticore Leather + + NQ: Winged Boots + + HQ1:Winged Boots +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (89) + + + Earth Crystal + Lizard Skin + Leaping Boots + + NQ: Wise Gloves + + HQ1:Wise Gloves +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (89) +Sub Craft(s): Clothcraft - (32) + + + Earth Crystal + Silver Thread + Velvet Cloth + Saruta Cotton x2 + Eltoro Leather + Leather Gloves + + NQ: Barone Cosciales + + HQ1:Conte Cosciales + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (90) +Sub Craft(s): Clothcraft - (54) + + + Earth Crystal + Silk Cloth + Sarcenet Cloth + Buffalo Leather x2 + High-Quality Bugard Skin + + NQ: Chasuble + + HQ1:Chasuble +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (90) +Sub Craft(s): Goldsmithing - (44), Clothcraft - (40) + + + Earth Crystal + Platinum Ingot + Silver Thread + Velvet Cloth x2 + Manticore Leather + Eft Skin + Eltoro Leather x2 + + NQ: Koenigs Belt + + HQ1:Kaiser Belt + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (90) + + + Earth Crystal + Gold Chain + Manticore Leather x2 + + NQ: Ogre Jerkin + + HQ1:Ogre Jerkin +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (90) + + + Earth Crystal + Coeurl Jerkin + Undead Skin + Manticore Leather + + NQ: Sniper's Ring + + HQ1:Sniper's Ring +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (90) + + + Earth Crystal + Archer's Ring + Tiger Leather + + NQ: Amphiptere Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (90) + + + Dark Crystal + Willow Log + Amphiptere Hide + Distilled Water + + NQ: Amphiptere Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (90) + + + Dark Crystal + Windurstian Tea Leaves + Amphiptere Hide + Distilled Water + + NQ: Amphiptere Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (90) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Amphiptere Hide x3 + Distilled Water + Tanning Vat + + NQ: Koenigs Belt + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (90) + + + Earth Crystal + Leathercraft Kit 90 + + +Veteran (91-100) +Synthesis Information +Yield Requirements Ingredients + + NQ: Bison Wristbands + + HQ1:Brave's Wristbands + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (91) + + + Earth Crystal + Manticore Leather x2 + Manticore Hair x2 + Buffalo Leather + + NQ: Errant Pigaches + + HQ1:Mahatma Pigaches + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (91) +Sub Craft(s): Clothcraft - (52) + + + Earth Crystal + Rainbow Thread + Velvet Cloth + Undead Skin + Ram Leather x2 + + NQ: Khimaira Wristbands + + HQ1:Stout Wristbands + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (91) + + + Earth Crystal + Manticore Leather x2 + Buffalo Leather + Khimaira Mane x2 + + NQ: Sipahi Jawshan + + HQ1:Abtal Jawshan + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (91) +Sub Craft(s): Goldsmithing - (51), Clothcraft - (49) + + + Earth Crystal + Mythril Sheet + Steel Sheet + Gold Chain + Silk Cloth + Karakul Leather + Marid Leather x2 + Wamoura Cloth + + NQ: Ebon Brais + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (91) + + + Earth Crystal + Amphiptere Leather + Shagreen + Studded Trousers + + NQ: Bewitched Pumps + + HQ1:Voodoo Pumps + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (91) + + + Earth Crystal + Cursed Pumps -1 + Eschite Ore + + NQ: Vexed Boots + + HQ1:Jinxed Boots + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (91) + + + Earth Crystal + Hexed Boots -1 + Eschite Ore + + NQ: Cursed Pumps + + HQ1:Cursed Pumps -1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (92) +Sub Craft(s): Clothcraft - (59) + + + Earth Crystal + Siren's Macrame + Velvet Cloth + Gold Thread + Rainbow Cloth + Manticore Leather + + NQ: Desert Mantle + + HQ1:Desert Mantle +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (92) + + + Earth Crystal + Grass Thread + Yowie Skin x2 + + NQ: Sha'ir Crackows + + HQ1:Sheikh Crackows + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (92) +Sub Craft(s): Goldsmithing - (60), Clothcraft - (38) + + + Earth Crystal + Orichalcum Ingot + Gold Thread + Velvet Cloth + Tiger Leather x2 + Buffalo Leather + + NQ: Leather Pot + + FireCrystal-Icon.gif + +Main Craft: Leathercraft - (92) +Sub Craft(s): Clothcraft - (47), Woodworking - (43) + + + Fire Crystal + Hickory Lumber + Karakul Leather + Rheiyoh Leather + Karakul Thread + Kaolin x2 + + NQ: Cursed Clogs + + HQ1:Cursed Clogs -1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (92) +Sub Craft(s): Clothcraft - (59), Goldsmithing - (48) + + + Earth Crystal + Velvet Cloth + Undead Skin + Marid Leather x2 + Netherpact Chain + Platinum Silk + + NQ: Vexed Tekko + + HQ1:Jinxed Tekko + + FireCrystal-Icon.gif + +Main Craft: Leathercraft - (92) + + + Fire Crystal + Hexed Tekko -1 + Eschite Ore + + NQ: Dusk Trousers + + HQ1:Dusk Trousers +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (93) + + + Earth Crystal + Tiger Trousers + Behemoth Leather + + NQ: Austere Hat + + HQ1:Penance Hat + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (93) +Sub Craft(s): Clothcraft - (11) + + + Earth Crystal + Rainbow Thread + Sheep Leather + Ram Leather + Yowie Skin + Velvet Hat + + NQ: Bison Gamashes + + HQ1:Brave's Gamashes + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (93) +Sub Craft(s): Clothcraft - (29) + + + Earth Crystal + Manticore Leather + Manticore Hair x2 + Hippogryph Feather + Buffalo Leather x2 + + NQ: Sultan's Belt + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (93) + + + Earth Crystal + Rugged Bugard Leather + Koenigs Belt + + NQ: Czar's Belt + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (93) + + + Earth Crystal + Tough Bugard Leather + Koenigs Belt + + NQ: Pendragon's Belt + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (93) + + + Earth Crystal + Soft Bugard Leather + Koenigs Belt + + NQ: Maharaja's Belt + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (93) + + + Earth Crystal + Glossy Bugard Leather + Koenigs Belt + + NQ: Khimaira Gamashes + + HQ1:Stout Gamashes + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (93) +Sub Craft(s): Clothcraft - (29) + + + Earth Crystal + Manticore Leather + Hippogryph Feather + Buffalo Leather x2 + Khimaira Mane x2 + + NQ: Ebon Gloves + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (93) +Sub Craft(s): Goldsmithing - (53) + + + Earth Crystal + Amphiptere Leather x2 + Shagreen + Platinum Ingot + + NQ: Vexed Hakama + + HQ1:Jinxed Hakama + + FireCrystal-Icon.gif + +Main Craft: Leathercraft - (93) + + + Fire Crystal + Hexed Hakama -1 + Eschite Ore + + NQ: Vexed Hose + + HQ1:Jinxed Hose + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (93) + + + Earth Crystal + Hexed Hose -1 + Eschite Ore + + NQ: Austere Sabots + + HQ1:Penance Sabots + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (94) +Sub Craft(s): Clothcraft - (11) + + + Earth Crystal + Rainbow Thread + Sheep Leather + Ram Leather + Lindwurm Skin + Ebony Sabots + + NQ: Cardinal Vest + + HQ1:Bachelor Vest + + WaterCrystal-Icon.gif + +Main Craft: Leathercraft - (94) +Sub Craft(s): Smithing - (31), +Clothcraft - (21) + + + Water Crystal + Steel Sheet + Gold Thread + Tiger Leather x2 + Beeswax + Manticore Leather x2 + Ram Leather + + NQ: Dusk Ledelsens + + HQ1:Dusk Ledelsens +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (94) + + + Earth Crystal + Tiger Ledelsens + Behemoth Leather + + NQ: Tiger Mask + + HQ1:Feral Mask + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (95) + + + Ice Crystal + Tiger Hide x2 + Wyvern Skin + Wool Thread + Ram Leather + + NQ: Bison Warbonnet + + HQ1:Brave's Warbonnet + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (95) +Sub Craft(s): Clothcraft - (33) + + + Earth Crystal + Manticore Leather + Manticore Hair x2 + Hippogryph Feather x2 + Eft Skin + Buffalo Leather + + NQ: Cerberus Mantle + + HQ1:Cerberus Mantle +1 + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (95) + + + Ice Crystal + Cerberus Hide + Karakul Thread + + NQ: Khimaira Bonnet + + HQ1:Stout Bonnet + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (95) +Sub Craft(s): Clothcraft - (33) + + + Earth Crystal + Manticore Leather + Hippogryph Feather x2 + Eft Skin + Buffalo Leather + Khimaira Mane x2 + + NQ: Peiste Mantle + + HQ1:Peiste Mantle +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (95) + + + Earth Crystal + Peiste Skin x2 + Grass Thread + + NQ: Ebon Boots + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (95) +Sub Craft(s): Goldsmithing - (57) + + + Earth Crystal + Amphiptere Leather + Shagreen + Molybdenum Sheet + Platinum Ingot + + NQ: Peiste Mantle + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (95) + + + Earth Crystal + Leathercraft Kit 95 + + NQ: Opaline Boots + + HQ1:Ceremonial Boots + + LightCrystal-Icon.gif + +Main Craft: Leathercraft - (96) +Sub Craft(s): Clothcraft - (42) + + + Light Crystal + Rainbow Thread + Silk Cloth + Rainbow Cloth + Twinthread + Sheep Leather x2 + Manticore Leather + + NQ: Sha'ir Gages + + HQ1:Sheikh Gages + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (96) +Sub Craft(s): Goldsmithing - (46), Clothcraft - (41) + + + Earth Crystal + Gold Ingot + Garnet + Gold Thread + Velvet Cloth + Tiger Leather + High-Quality Bugard Skin + + NQ: Imperial Tapestry + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (96) +Sub Craft(s): Goldsmithing - (45) + + + Earth Crystal + Gold Ingot + Turquoise + Gold Thread x2 + Marid Hair + Wamoura Cloth + Imperial Silk Cloth x2 + + NQ: Austere Cuffs + + HQ1:Penance Cuffs + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (97) +Sub Craft(s): Clothcraft - (11) + + + Earth Crystal + Rainbow Thread + Tarasque Skin + Yowie Skin + Velvet Cuffs + + NQ: Bison Kecks + + HQ1:Brave's Kecks + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (97) +Sub Craft(s): Clothcraft - (54) + + + Earth Crystal + Tiger Leather + Manticore Leather + Manticore Hair x4 + Buffalo Leather x2 + + NQ: Dusk Mask + + HQ1:Dusk Mask +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (97) + + + Earth Crystal + Coeurl Mask + Behemoth Leather + + NQ: Griffon Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (97) + + + Dark Crystal + Willow Log + Griffon Hide + Distilled Water + + NQ: Griffon Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (97) + + + Dark Crystal + Windurstian Tea Leaves + Griffon Hide + Distilled Water + + NQ: Khimaira Kecks + + HQ1:Stout Kecks + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (97) +Sub Craft(s): Clothcraft - (54) + + + Earth Crystal + Tiger Leather + Manticore Leather + Buffalo Leather x2 + Khimaira Mane x4 + + NQ: Ebon Mask + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (97) +Sub Craft(s): Smithing - (60) + + + Earth Crystal + Amphiptere Leather + Shagreen + Molybdenum Sheet + + NQ: Amaltheia Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (98) + + + Dark Crystal + Willow Log + Amaltheia Hide + Distilled Water + + NQ: Amaltheia Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (98) + + + Dark Crystal + Windurstian Tea Leaves + Amaltheia Hide + Distilled Water + + NQ: Amaltheia Leather x3 + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (98) +Key Item: Tanning + + + Dark Crystal + Windurstian Tea Leaves x3 + Amaltheia Hide x3 + Distilled Water + Tanning Vat + + NQ: Austere Slops + + HQ1:Penance Slops + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (98) +Sub Craft(s): Clothcraft - (11) + + + Earth Crystal + Rainbow Thread + Undead Skin + Wolf Hide + Lindwurm Skin + Velvet Slops + + NQ: Heroic Boots + + HQ1:Heroic Boots +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (98) + + + Earth Crystal + Iron Scales + Ram Leather x2 + Lindwurm Skin + + NQ: Bison Jacket + + HQ1:Brave's Jacket + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (99) +Sub Craft(s): Bonecraft - (60), +Clothcraft - (51) + + + Earth Crystal + Manticore Leather x2 + Manticore Hair x2 + Buffalo Horn + Eft Skin + Buffalo Leather x2 + + NQ: Blessed Pumps + + HQ1:Blessed Pumps +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (99) +Sub Craft(s): Clothcraft - (56) + + + Earth Crystal + Gold Thread + Velvet Cloth + Tiger Leather + Manticore Hair + Eltoro Leather + + NQ: Dusk Gloves + + HQ1:Dusk Gloves +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (99) + + + Earth Crystal + Tiger Gloves + Behemoth Leather + + NQ: Khimaira Jacket + + HQ1:Stout Jacket + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (99) +Sub Craft(s): Bonecraft - (60), Clothcraft - (54) + + + Earth Crystal + Manticore Leather x2 + Buffalo Horn + Eft Skin + Buffalo Leather x2 + Khimaira Mane x2 + + NQ: Narasimha's Vest + + HQ1:Vishnu's Vest + + WaterCrystal-Icon.gif + +Main Craft: Leathercraft - (99) + + + Water Crystal + Beeswax + Manticore Leather + Narasimha Leather + Cardinal Vest + + NQ: Dynamic Belt + + HQ1:Dynamic Belt +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (99) + + + Wind Crystal + Behemoth Leather + Mercury + Umbril Ooze + + NQ: Chelona Boots + + HQ1:Chelona Boots +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (99) +Sub Craft(s): Clothcraft - (50) + + + Earth Crystal + Karakul Thread + Karakul Cloth x3 + Platinum Silk Thread + Amphiptere Leather + + NQ: Austere Robe + + HQ1:Penance Robe + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (100) +Sub Craft(s): Clothcraft - (31) + + + Earth Crystal + Rainbow Thread + Wool Cloth + Rainbow Cloth + Undead Skin + Ram Leather + Tarasque Skin + Yowie Skin + Velvet Robe + + NQ: Dusk Jerkin + + HQ1:Dusk Jerkin +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (100) +Sub Craft(s): Goldsmithing - (41) + + + Earth Crystal + Gold Ingot + Northern Jerkin + Behemoth Leather + Wyvern Skin + + NQ: Urja Trousers + + HQ1:Sthira Trousers + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (100) + + + Earth Crystal + Buffalo Leather x2 + Squamous Hide x2 + + NQ: Spolia Pigaches + + HQ1:Opima Pigaches + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (100) +Sub Craft(s): Clothcraft - (60) + + + Earth Crystal + Catoblepas Leather + Sheep Chammy + Wyrdstrand + Wyrdweave x2 + + NQ: Ebon Harness + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (100) +Sub Craft(s): Smithing - (60), Bonecraft - (40) + + + Earth Crystal + Molybdenum Sheet + Platinum Sheet + Angel Skin + Red Textile Dye + Amphiptere Leather x2 + Shagreen + + NQ: Revealer's Pumps + + HQ1:Revealer's Pumps +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (100) +Sub Craft(s): Clothcraft - (??) + + + Earth Crystal + Ancestral Cloth x2 + Prickly Pitriv's Thread x2 + Warblade Beak's Hide + + NQ: Aptitude Mantle + + HQ1:Aptitude Mantle +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (100) + + + Earth Crystal + Wool Thread + Lizard Molt + Raaz Hide + Bounding Belinda's Hide + + +Expert (101-110) +Synthesis Information +Yield Requirements Ingredients + + NQ: Corselet + + HQ1:Corselet +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (101) +Sub Craft(s): Goldsmithing - (60), Smithing - (60) + + + Earth Crystal + Adaman Sheet + Mercury + Laminated Buffalo Leather + Ovinnik Leather + Marid Leather + Marid Hair + Scintillant Ingot + Star Sapphire + + NQ: Haruspex Pigaches + + HQ1:Haruspex Pigaches +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (101) + + + Earth Crystal + Gold Thread + Raxa + Akaso Cloth + Raaz Hide + Raaz Leather + + NQ: Aetosaur Gloves + + HQ1:Aetosaur Gloves +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (101) + + + Earth Crystal + Squamous Hide + Raaz Leather + Leather Gloves + + NQ: Panther Mask + + HQ1:Panther Mask +1 + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (102) + + + Ice Crystal + Wool Thread + Ram Leather + High-Quality Coeurl Hide x2 + Wyvern Skin + + NQ: Urja Helm + + HQ1:Sthira Helm + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (102) +Sub Craft(s): Smithing - (55) + + + Earth Crystal + Marid Leather + Dark Bronze Ingot + Squamous Hide x2 + + NQ: Testudo Mantle + + HQ1: Testudo Mantle +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (102) + + + Earth Crystal + Behemoth Leather + Manticore Hair + Herensugue Skin + + NQ: Hermes' Sandals + + HQ1:Hermes' Sandals +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (103) + + + Wind Crystal + Karakul Leather + Lynx Leather + Dark Ixion Tail + + NQ: Attacker's Mantle + + HQ1: Dauntless Mantle + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (103) +Sub Craft(s): Clothcraft - (50) + + + Earth Crystal + Lizard Molt + Hahava's Mail + Wamoura Silk + Squamous Hide + + NQ: Aetosaur Ledelsens + + HQ1:Aetosaur Ledelsens +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (103) + + + Earth Crystal + Squamous Hide + Rhodium Sheet + Raaz Leather + Leather Highboots + + NQ: Sealord Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (104) + + + Dark Crystal + Windurstian Tea Leaves + Sealord Skin + Distilled Water + + NQ: Sealord Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (104) + + + Dark Crystal + Willow Log + Sealord Skin + Distilled Water + + NQ: Urja Gloves + + HQ1:Sthira Gloves + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (104) + + + Earth Crystal + Buffalo Leather + Squamous Hide x2 + + NQ: Pak Corselet + + HQ1:Pak Corselet +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (104) +Sub Craft(s): Smithing - (60~62), Goldsmithing - (??) + + + Earth Crystal + Adaman Sheet + Behemoth Leather x2 + Mercury + Siren's Macrame + Fiendish Skin + Scintillant Ingot + Tanzanite Jewel + + NQ: Urja Ledelsens + + HQ1:Sthira Ledelsens + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (105) +Sub Craft(s): Smithing - (54) + + + Earth Crystal + Buffalo Leather + Dark Bronze Sheet + Squamous Hide x2 + + NQ: Phos Belt + + HQ1: Phos Belt +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (105) + + + Earth Crystal + Scarlet Kadife + Sealord Leather + Sonic Belt + + NQ: Urja Jerkin + + HQ1:Sthira Jerkin + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (105) +Sub Craft(s): Smithing - (54) + + + Earth Crystal + Buffalo Leather + Dark Bronze Ingot + Squamous Hide x2 + Ogre Jerkin + + NQ: Clerisy Strap + + HQ1:Clerisy Strap +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (105) + + + Wind Crystal + Behemoth Hide + Bztavian Wing + + NQ: Elan Strap + + HQ1:Elan Strap +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (105) + + + Wind Crystal + Cerberus Hide + Cehuetzi Pelt + + NQ: Irenic Strap + + HQ1:Irenic Strap +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (105) + + + Wind Crystal + Behemoth Hide + Rockfin Fin + + NQ: Mensch Strap + + HQ1:Mensch Strap +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (105) + + + Wind Crystal + Cerberus Hide + Yggdreant Root + + NQ: Faulpie Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (105) + + + Dark Crystal + Windurstian Tea Leaves + S. Faulpie Leather + Distilled Water + + NQ: Faulpie Leather + + DarkCrystal-Icon.gif + +Main Craft: Leathercraft - (105) + + + Dark Crystal + Willow Log + S. Faulpie Leather + Distilled Water + + NQ: Aetosaur Helm + + HQ1:Aetosaur Helm +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (106) + + + Earth Crystal + Squamous Hide x2 + Raaz Leather + + NQ: Hexed Boots + + HQ1: Hexed Boots -1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (107) +Sub Craft(s): Clothcraft - (50) + + + Earth Crystal + Silver Thread + Lynx Leather + Kukulkan's Skin + Serica Cloth + + NQ: Aetosaur Trousers + + HQ1:Aetosaur Trousers +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (107) + + + Earth Crystal + Squamous Hide x2 + Raaz Leather + Leather Trousers + + NQ: Hexed Tekko + + HQ1: Hexed Tekko -1 + + FireCrystal-Icon.gif + +Main Craft: Leathercraft - (108) +Sub Craft(s): Smithing - (60), Goldsmithing - (30) + + + Fire Crystal + Scarletite Ingot + Gold Sheet + Durium Chain + Taffeta Cloth + Urushi + Sealord Leather + + NQ: Aetosaur Jerkin + + HQ1:Aetosaur Jerkin +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (109) + + + Earth Crystal + Squamous Hide x2 + Raaz Leather x2 + + NQ: Sweordfaetels + + HQ1: Sweordfaetels +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (109) +Sub Craft(s): Goldsmithing - (57) + + + Earth Crystal + Palladian Brass Chain + Sealord Leather + Cehuetzi Pelt + + NQ: Hexed Hose + + HQ1: Hexed Hose -1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (110) +Sub Craft(s): Goldsmithing - (60) + + + Earth Crystal + Ormolu Ingot + Behemoth Leather + Pelt of Dawon + Sealord Leather x2 + + NQ: Hexed Hakama + + HQ1: Hexed Hakama -1 + + FireCrystal-Icon.gif + +Main Craft: Leathercraft - (110) +Sub Craft(s): Clothcraft - (38) + + + Fire Crystal + Scarletite Ingot + Gold Ingot + Gold Thread + Taffeta Cloth + Red Grass Cloth + Sealord Leather x2 + + NQ: Pya'ekue Belt + + HQ1: Pya'ekue Belt +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (110) + + + Earth Crystal + Behemoth Leather + Bztavian Wing + Phos Belt + + NQ: Beastmaster Collar + + HQ1: Beastmaster Collar +1 + HQ2: Beastmaster Collar +2 + + LightCrystal-Icon.gif + +Main Craft: Leathercraft - (110) +Sub Craft(s): Bonecraft - (55) + + + Light Crystal + Cehuetzi Claw + Dark Matter + Cyan Coral + Topaz Crystal + Moldy Collar + + NQ: Dragoon's Collar + + HQ1: Dragoon's Collar +1 + HQ2: Dragoon's Collar +2 + + LightCrystal-Icon.gif + +Main Craft: Leathercraft - (110) +Sub Craft(s): Bonecraft - (55) + + + Light Crystal + Cehuetzi Claw + Dark Matter + Cyan Coral + Andalusite Crystal + Moldy Collar + + NQ: Puppetmaster's Collar + + HQ1: Puppetmaster's Collar +1 + HQ2: Puppetmaster's Collar +2 + + LightCrystal-Icon.gif + +Main Craft: Leathercraft - (110) +Sub Craft(s): Bonecraft - (55) + + + Light Crystal + Cehuetzi Claw + Dark Matter + Cyan Coral + Sardonyx Crystal + Moldy Collar + + NQ: Summoner's Collar + + HQ1: Summoner's Collar +1 + HQ2: Summoner's Collar +2 + + LightCrystal-Icon.gif + +Main Craft: Leathercraft - (110) +Sub Craft(s): Bonecraft - (55) + + + Light Crystal + Cehuetzi Claw + Dark Matter + Cyan Coral + Rutile Crystal + Moldy Collar + + +Authority (111-120) +Synthesis Information +Yield Requirements Ingredients + + NQ: Bewitched Pumps + + HQ1:Voodoo Pumps + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (111) +Sub Craft(s): Clothcraft - (70) + + + Earth Crystal + Sif's Macrame + Cehuetzi Pelt + Eschite Ore + Cursed Pumps + + NQ: Vexed Boots + + HQ1:Jinxed Boots + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (111) +Sub Craft(s): Clothcraft - (70) + + + Earth Crystal + Sif's Macrame + Cehuetzi Pelt + Eschite Ore + Hexed Boots + + NQ: Tempus Fugit + + HQ1:Tempus Fugit +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (111~114) + + + Earth Crystal + Pya'ekue Belt + Defiant Scarf + Plovid Flesh + + NQ: Saotome-no-tachi + + HQ1: Sakonji-no-tachi + HQ2: Fusenaikyo + + LightCrystal-Icon.gif + +Main Craft: Leathercraft - (111~114) +Sub Craft(s): Smithing - (Information Needed) + +Goldsmithing - (Information Needed) +Key Item: Tanner's aurum tome + + + Light Crystal + Macuil Plating + Dark Matter + Ruthenium Ore + Moldy G. Katana + Ratnaraj + Relic Adaman x2 + Amber Crystal + + NQ: Koga Shinobi-Gatana + + HQ1: Mochizuki Shinobi-Gatana + HQ2: Fudo Masamune + + LightCrystal-Icon.gif + +Main Craft: Leathercraft - (111~114) +Sub Craft(s): Smithing - (Information Needed) + +Goldsmithing - (Information Needed) +Key Item: Tanner's aurum tome + + + Light Crystal + Macuil Plating + Dark Matter + Ruthenium Ore + Moldy Katana + Ratnaraj + Relic Adaman x2 + Tanzanite Crystal + + NQ: Aput Mantle + + HQ1:Aput Mantle +1 + + IceCrystal-Icon.gif + +Main Craft: Leathercraft - (112) + + + Ice Crystal + Akaso Thread + Cehuetzi Pelt + + NQ: Vexed Tekko + + HQ1:Jinxed Tekko + + FireCrystal-Icon.gif + +Main Craft: Leathercraft - (112) +Sub Craft(s): Clothcraft - (70) + + + Fire Crystal + Cehuetzi Pelt + Muut's Vestment + Eschite Ore + Hexed Tekko + + NQ: Vexed Hakama + + HQ1:Jinxed Hakama + + FireCrystal-Icon.gif + +Main Craft: Leathercraft - (113) +Sub Craft(s): Clothcraft - (70) + + + Fire Crystal + Cehuetzi Pelt + Muut's Vestment + Eschite Ore + Hexed Hakama + + NQ: Vexed Hose + + HQ1:Jinxed Hose + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (113) +Sub Craft(s): Goldsmithing - (70) + + + Earth Crystal + Hepatizon Ingot + Plovid Flesh + Eschite Ore + Hexed Hose + + NQ: Wretched Coat + + HQ1:Wretched Coat +1 + + WindCrystal-Icon.gif + +Main Craft: Leathercraft - (115) +Sub Craft(s): Clothcraft - (60~65) + + + Wind Crystal + Malboro Fiber + Eltoro Leather + Penelope's Cloth + Belladonna Sap + Plovid Flesh x2 + + NQ: Gerdr Belt + + HQ1: Gerdr Belt +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (115~120) +Sub Craft(s): Alchemy - (?) + + + Earth Crystal + Orichalcum Chain + Faulpie Leather x2 + Wyrm Ash + + NQ: Arke Gambieras + + HQ1: Arke Gambieras +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (115~120) +Sub Craft(s): Smithing - (?) +Key Item: Tanner's argentum tome + + + Earth Crystal + Rainbow Thread + Gabbrath Horn + Tartarian Chain + Faulpie Leather x2 + + NQ: Heyoka Leggings + + HQ1: Heyoka Leggings +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (115~120) +Sub Craft(s): Bonecraft - (?) +Key Item: Tanner's argentum tome + + + Earth Crystal + Darksteel Sheet + Yggdreant Root + Macuil Horn + Faulpie Leather x2 + + NQ: Arke Manopolas + + HQ1: Arke Manopolas +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (115~120) +Sub Craft(s): Smithing - (?) +Key Item: Tanner's argentum tome + + + Earth Crystal + Rainbow Thread x2 + Gabbrath Horn + Tartarian Chain + Faulpie Leather x2 + + NQ: Heyoka Mittens + + HQ1: Heyoka Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (115~120) +Sub Craft(s): Bonecraft - (?) +Key Item: Tanner's argentum tome + + + Earth Crystal + Darksteel Sheet x2 + Yggdreant Root + Macuil Horn + Faulpie Leather x2 + + NQ: Arke Zuchetto + + HQ1: Arke Zuchetto +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (115~120) +Sub Craft(s): Smithing - (?) +Key Item: Tanner's argentum tome + + + Earth Crystal + Rainbow Thread + Rainbow Cloth + Gabbrath Horn + Tartarian Chain + Faulpie Leather x2 + + NQ: Heyoka Cap + + HQ1: Heyoka Cap +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (115~120) +Sub Craft(s): Bonecraft - (?) +Key Item: Tanner's argentum tome + + + Earth Crystal + Darksteel Sheet + Darksteel Chain + Yggdreant Root + Macuil Horn + Faulpie Leather x2 + + NQ: Arke Cosciales + + HQ1: Arke Cosciales +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (115~120) +Sub Craft(s): Smithing - (?) +Key Item: Tanner's argentum tome + + + Earth Crystal + Rainbow Thread + Rainbow Cloth + Gabbrath Horn + Tartarian Chain + Faulpie Leather x3 + + NQ: Heyoka Subligar + + HQ1: Heyoka Subligar +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (115~120) +Sub Craft(s): Bonecraft - (?) +Key Item: Tanner's argentum tome + + + Earth Crystal + Darksteel Sheet + Darksteel Chain + Yggdreant Root + Macuil Horn + Faulpie Leather x3 + + NQ: Arke Corazza + + HQ1: Arke Corazza +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (115~120) +Sub Craft(s): Smithing - (?) +Key Item: Tanner's argentum tome + + + Earth Crystal + Rainbow Thread + Rainbow Cloth + Gabbrath Horn + Tartarian Chain x2 + Faulpie Leather x3 + + NQ: Heyoka Harness + + HQ1: Heyoka Harness +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (115~120) +Sub Craft(s): Bonecraft - (?) +Key Item: Tanner's argentum tome + + + Earth Crystal + Darksteel Sheet + Darksteel Chain + Yggdreant Root + Macuil Horn x2 + Faulpie Leather x3 + + NQ: Ioskeha Belt + + HQ1:Ioskeha Belt +1 + + EarthCrystal-Icon.gif + +Main Craft: Leathercraft - (118) + + + Earth Crystal + Palladian Brass Chain + Wyrm Blood + Plovid Flesh \ No newline at end of file diff --git a/datasets/Leathercraft_v2.csv b/datasets/Leathercraft_v2.csv new file mode 100644 index 0000000..ec7b9df --- /dev/null +++ b/datasets/Leathercraft_v2.csv @@ -0,0 +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]" diff --git a/datasets/Smithing.txt b/datasets/Smithing.txt new file mode 100644 index 0000000..28be97a --- /dev/null +++ b/datasets/Smithing.txt @@ -0,0 +1,8551 @@ +Smithing Crafted Items +Amateur (1-10) +Synthesis Information +Yield Requirements Ingredients + + NQ: Bronze Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (1) + + + Fire Crystal + Beastcoin x4 + + NQ: Bronze Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (2) + + + Fire Crystal + Copper Ore x3 + Tin Ore + + NQ: Bronze Leggings + + HQ1: Bronze Leggings +1 + + LightCrystal-Icon.gif + +Main Craft: Smithing - (2) + + + Light Crystal + Rusty Leggings + + NQ: Bronze Dagger + + HQ1: Bronze Dagger +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (3) + + + Fire Crystal + Bronze Ingot + Copper Ingot + + NQ: Bronze Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (3) + + + Fire Crystal + Bronze Nugget x6 + Tin Ore + + NQ: Bronze Cap + + HQ1: Bronze Cap +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (4) +Sub Craft(s): Leathercraft - (3) + + + Earth Crystal + Bronze Sheet + Sheep Leather x2 + + NQ: Bronze Sheet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (4) + + + Fire Crystal + Bronze Ingot + + NQ: Bronze Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (4) +Key Item: Sheeting + + + Fire Crystal + Bronze Ingot x6 + Workshop Anvil + + NQ: Bronze Knife + + HQ1: Bronze Knife +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (5) + + + Fire Crystal + Ash Lumber + Bronze Ingot + + NQ: Bronze Mittens + + HQ1: Bronze Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (5) +Sub Craft(s): Leathercraft - (3) + + + Earth Crystal + Bronze Sheet + Sheep Leather + + NQ: Bronze Subligar + + HQ1: Bronze Subligar +1 + + LightCrystal-Icon.gif + +Main Craft: Smithing - (5) + + + Light Crystal + Rusty Subligar + + NQ: Sickle + + HQ1: Sickle x2 + HQ2: Sickle x3 + HQ3: Sickle x4 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (5) +Sub Craft(s): Woodworking - (2) + + + Fire Crystal + Ash Lumber + Bronze Ingot + Grass Cloth + + NQ: Pickaxe + + HQ1: Pickaxe x2 + HQ2: Pickaxe x3 + HQ3: Pickaxe x4 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (5) +Sub Craft(s): Woodworking - (2) + + + Fire Crystal + Bronze Ingot + Maple Lumber + + NQ: Bronze Knife + + FireCrystal-Icon.gif + +Main Craft: Smithing - (5) + + + Fire Crystal + Smithing Kit 5 + + NQ: Bronze Sword + + HQ1: Bronze Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (6) + + + Fire Crystal + Bronze Ingot x2 + Sheep Leather + + NQ: Bronze Knuckles + + HQ1: Bronze Knuckles +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (6) +Sub Craft(s): Woodworking - (2) + + + Fire Crystal + Ash Lumber + Bronze Ingot + Bronze Sheet + + NQ: Bronze Axe + + HQ1: Bronze Axe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (7) +Sub Craft(s): Woodworking - (2) + + + Fire Crystal + Ash Lumber + Bronze Ingot x2 + + NQ: Bronze Leggings + + HQ1: Bronze Leggings +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (7) +Sub Craft(s): Leathercraft - (3) + + + Earth Crystal + Bronze Sheet x2 + Sheep Leather x2 + + NQ: Bronze Zaghnal + + HQ1: Bronze Zaghnal +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (8) +Sub Craft(s): Woodworking - (6) + + + Fire Crystal + Ash Lumber + Bronze Ingot x2 + Grass Cloth + + NQ: Hatchet + + HQ1: Hatchet x2 + HQ2: Hatchet x3 + HQ3: Hatchet x4 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (8) +Sub Craft(s): Woodworking - (3) + + + Fire Crystal + Bronze Ingot x2 + Maple Lumber + + NQ: Xiphos + + HQ1: Xiphos +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (8) +Sub Craft(s): Bonecraft - (2) + + + Fire Crystal + Bronze Ingot x2 + Giant Femur + + NQ: Bronze Subligar + + HQ1: Bronze Subligar +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (9) +Sub Craft(s): Leathercraft - (3) + + + Earth Crystal + Bronze Sheet + Grass Cloth + Sheep Leather + + NQ: Faceguard + + HQ1: Faceguard +1 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (9) + + + Wind Crystal + Bronze Sheet + Sheep Leather + + NQ: Bronze Mace + + HQ1: Bronze Mace +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (10) + + + Fire Crystal + Bronze Ingot x3 + + NQ: Bronze Scales + + WindCrystal-Icon.gif + +Main Craft: Smithing - (10) + + + Wind Crystal + Bronze Sheet + + NQ: Bronze Mace + + FireCrystal-Icon.gif + +Main Craft: Smithing - (10) + + + Fire Crystal + Smithing Kit 10 + + +Recruit (11-20) +Synthesis Information +Yield Requirements Ingredients + + NQ: Bronze Harness + + HQ1: Bronze Harness +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (11) +Sub Craft(s): Leathercraft - (3) + + + Earth Crystal + Bronze Sheet x3 + Sheep Leather x2 + + NQ: Scale Finger Gauntlets + + HQ1: Solid Finger Gauntlets + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (11) + + + Earth Crystal + Bronze Scales x2 + Cotton Thread + Leather Gloves + + NQ: Bronze Rod + + HQ1: Bronze Rod +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (12) + + + Fire Crystal + Bronze Ingot x2 + Copper Ingot + + NQ: Scale Greaves + + HQ1: Solid Greaves + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (13) + + + Earth Crystal + Bronze Scales x2 + Cotton Thread + leather Highboots + + NQ: Bronze Bolt Heads x6 + + HQ1: Bronze Bolt Heads x8 + HQ2: Bronze Bolt Heads x10 + HQ3: Bronze Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (14) + + + Wind Crystal + Bronze Ingot + + NQ: Bronze Hammer + + HQ1: Bronze Hammer +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (14) + + + Fire Crystal + Bronze Ingot x2 + Chestnut Lumber + + NQ: Dagger + + HQ1: Dagger +1 + + LightCrystal-Icon.gif + +Main Craft: Smithing - (15) + + + Light Crystal + Rusty Dagger + + NQ: Scale Cuisses + + HQ1: Solid Cuisses + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (15) +Sub Craft(s): Leathercraft - (5) + + + Earth Crystal + Bronze Scales x2 + Cotton Thread + Leather Trousers + + NQ: Tin Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (15) + + + Fire Crystal + Tin Ore x4 + + NQ: Pizza Cutter x6 + + HQ1:Pizza Cutter x8 + HQ2:Pizza Cutter x10 + HQ3:Pizza Cutter x12 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (15) + + + Fire Crystal + Iron Ingot + Holly Lumber + + NQ: Tin Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (15) + + + Fire Crystal + Smithing Kit 15 + + NQ: Crossbow Bolt x33 + + HQ1: Crossbow Bolt x66 + HQ2: Crossbow Bolt x99 + HQ3: Crossbow Bolt x99 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (16) +Sub Craft(s): Woodworking - (4) + + + Wind Crystal + Ash Lumber + Bronze Ingot + + NQ: Scale Mail + + HQ1: Solid Mail + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (17) + + + Earth Crystal + Bronze Scales x4 + Cotton Thread + Leather Vest + Sheep Leather + + NQ: Aspis + + HQ1: Aspis +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (18) + + + Fire Crystal + Ash Lumber + Bronze Sheet x2 + + NQ: Bronze Bed + + FireCrystal-Icon.gif + +Main Craft: Smithing - (19) +Sub Craft(s): Clothcraft - (19) + + + Fire Crystal + Bronze Ingot x4 + Cotton Cloth x2 + Grass Thread + Saruta Cotton + + NQ: Dagger + + HQ1: Dagger +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (20) + + + Fire Crystal + Bronze Ingot + Iron Ingot + + NQ: Iron Arrowheads x6 + + HQ1: Iron Arrowheads x8 + HQ2: Iron Arrowheads x10 + HQ3: Iron Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (20) + + + Wind Crystal + Copper Ingot + Iron Ingot + + NQ: Iron Ingot + + HQ1: Steel Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (20) + + + Fire Crystal + Iron Ore x4 + + NQ: Light Steel Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (20) +Key Item: Metal Purification + + + Fire Crystal + Iron Ore x4 + Ice Anima + Light Anima + Lightning Anima + + NQ: Lucent Iron Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (20) +Key Item: Metal Purification + + + Fire Crystal + Iron Ore x4 + Earth Anima + Light Anima + Lightning Anima + + NQ: Paktong Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (20) + + + Fire Crystal + Copper Ore x2 + Kopparnickel Ore + Zinc Ore + + NQ: Iron Arrowheads x6 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (20) + + + Wind Crystal + Smithing Kit 20 + + +Initiate (21-30) +Synthesis Information +Yield Requirements Ingredients + + NQ: Iron Ingot + + HQ1: Steel Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (21) + + + Fire Crystal + Iron Nugget x6 + Iron Ore + + NQ: Knife + + HQ1: Knife +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (21) + + + Fire Crystal + Iron Ingot + Elm Lumber + + NQ: Metal Knuckles + + HQ1: Metal Knuckles +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (21) +Sub Craft(s): Woodworking - (6) + + + Fire Crystal + Iron Ingot + Iron Sheet + Holly Lumber + + NQ: Pellet Belt + + FireCrystal-Icon.gif + +Main Craft: Smithing - (21) +Sub Craft(s): Leathercraft - (10) + + + Fire Crystal + Sheep Leather + Igneous Rock x2 + Leather Pouch + + NQ: Iron Sheet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (22) + + + Fire Crystal + Iron Ingot + + NQ: Iron Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (22) +Key Item: Sheeting + + + Fire Crystal + Iron Ingot x6 + Workshop Anvil + + NQ: Shuriken x33 + + HQ1: Shuriken x66 + HQ2: Shuriken x99 + HQ3: Shuriken x99 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (22) + + + Wind Crystal + Steel Ingot + Cotton Thread + + NQ: Baghnakhs + + HQ1: Baghnakhs +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (23) + + + Fire Crystal + Iron Ingot + Iron Sheet + + NQ: Butterfly Axe + + HQ1: Butterfly Axe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (23) +Sub Craft(s): Woodworking - (5) + + + Fire Crystal + Iron Ingot + Bronze Ingot x2 + Maple Lumber + + NQ: Makibishi x33 + + HQ1: Makibishi x66 + HQ2: Makibishi x99 + HQ3: Makibishi x99 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (23) + + + Wind Crystal + Iron Scales + + NQ: Debahocho + + HQ1: Debahocho +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (24) + + + Fire Crystal + Iron Ingot + Willow Lumber + + NQ: Mace + + HQ1: Mace +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (24) + + + Fire Crystal + Iron Ingot x3 + + NQ: Scimitar + + HQ1: Scimitar +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (24) +Sub Craft(s): Goldsmithing - (6) + + + Fire Crystal + Steel Ingot x2 + Brass Ingot + + NQ: Baselard + + HQ1: Baselard +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (25) + + + Fire Crystal + Iron Ingot + Steel Ingot + + NQ: Iron Sword + + HQ1: Iron Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (25) + + + Fire Crystal + Iron Ingot x2 + Lizard Skin + + NQ: Spatha + + HQ1: Spatha +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (25) + + + Fire Crystal + Bronze Ingot x3 + Lizard Skin + + NQ: Spatha + + FireCrystal-Icon.gif + +Main Craft: Smithing - (25) + + + Fire Crystal + Smithing Kit 25 + + NQ: Assailant's Axe + + FireCrystal-Icon.gif + +Main Craft: Smithing - (26) +Key Item: Metal Ensorcellment + + + Fire Crystal + Lambent Water Cell + Lambent Wind Cell + Butterfly Axe + + NQ: Battleaxe + + HQ1: Battleaxe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (26) +Sub Craft(s): Woodworking - (4) + + + Fire Crystal + Iron Ingot x2 + Holly Lumber + + NQ: Iron Scales + + WindCrystal-Icon.gif + +Main Craft: Smithing - (26) + + + Wind Crystal + Iron Sheet + + NQ: Windurstian Knife + + HQ1: Federation Knife + + FireCrystal-Icon.gif + +Main Craft: Smithing - (26) + + + Fire Crystal + Iron Ingot + Mercenary's Knife + + NQ: Athenienne + + FireCrystal-Icon.gif + +Main Craft: Smithing - (27) +Sub Craft(s): Goldsmithing - (26), Woodworking - (9) + + + Fire Crystal + Iron Ingot + Iron Sheet + Maple Lumber + Aht Urhgan Brass Ingot + + NQ: Longsword + + HQ1: Longsword +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (27) + + + Fire Crystal + Iron Ingot x3 + Dhalmel Leather + + NQ: Bilbo + + HQ1: Bilbo +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (28) +Sub Craft(s): Goldsmithing - (7) + + + Fire Crystal + Iron Ingot + Silver Ingot + + NQ: Degen + + HQ1: Degen +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (28) + + + Fire Crystal + Steel Ingot x2 + Silver Ingot + + NQ: Zaghnal + + HQ1: Zaghnal +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (28) + + + Fire Crystal + Iron Ingot x2 + Holly Lumber + Grass Cloth + + NQ: Gladius + + HQ1: Gladiator + + FireCrystal-Icon.gif + +Main Craft: Smithing - (29) +Sub Craft(s): Bonecraft - (8) + + + Fire Crystal + Iron Ingot x2 + Ram Horn + + NQ: Iron Mask + + HQ1: Iron Mask +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (29) + + + Earth Crystal + Iron Sheet + Brass Sheet + + NQ: Iron Visor + + HQ1: Iron Visor +1 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (29) + + + Wind Crystal + Iron Scales + Iron Sheet + Sheep Leather + + NQ: Iron Chain + + HQ1: Iron Chain x2 + HQ2: Iron Chain x3 + HQ3: Iron Chain x4 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (30) + + + Earth Crystal + Iron Ingot x2 + + NQ: Iron Chain x3 + + HQ1: Iron Chain x6 + HQ2: Iron Chain x9 + HQ3: Iron Chain x12 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (30) +Key Item: Chainwork + + + Earth Crystal + Iron Ingot x6 + Mandrel + + NQ: Kunai + + HQ1: Kunai +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (30) + + + Fire Crystal + Steel Ingot + Lizard Skin + + NQ: Mythril Dagger + + HQ1: Mythril Dagger +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (30) + + + Fire Crystal + Iron Ingot + Mythril Ingot + + NQ: Tathlum x8 + + HQ1: Tathlum x12 + HQ2: Tathlum x16 + HQ3: Tathlum x20 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (30) + + + Wind Crystal + Steel Ingot + + NQ: Tathlum x8 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (30) + + + Wind Crystal + Smithing Kit 30 + + +Novice (31-40) +Synthesis Information +Yield Requirements Ingredients + + NQ: Chain Mittens + + HQ1: Chain Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (31) +Sub Craft(s): Leathercraft - (5) + + + Earth Crystal + Iron Chain x2 + Ram Leather + + NQ: Greataxe + + HQ1: Greataxe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (31) +Sub Craft(s): Woodworking - (8) + + + Fire Crystal + Iron Ingot x2 + Holly Lumber + Mythril Ingot + + NQ: Iron Finger Gauntlets + + HQ1: Iron Finger Gauntlets +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (31) + + + Earth Crystal + Iron Scales x2 + Leather Gloves + Cotton Thread + + NQ: Plain Sword + + LightCrystal-Icon.gif + +Main Craft: Smithing - (31) + + + Light Crystal + Rusty Greatsword + + NQ: Rod + + HQ1: Rod +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (31) + + + Fire Crystal + Iron Ingot x2 + Bronze Ingot + + NQ: Tuck + + HQ1: Tuck +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (31) +Sub Craft(s): Goldsmithing - (8) + + + Fire Crystal + Silver Ingot + Mythril Ingot + + NQ: Claws + + HQ1: Claws +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (32) +Sub Craft(s): Bonecraft - (8) + + + Fire Crystal + Steel Ingot + Beetle Jaw + + NQ: Claymore + + HQ1: Claymore +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (32) +Sub Craft(s): Leathercraft - (7), Woodworking - (6) + + + Fire Crystal + Ash Lumber + Steel Ingot x4 + Lizard Skin + + NQ: Scythe + + HQ1: Scythe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (32) +Sub Craft(s): Woodworking - (7) + + + Fire Crystal + Iron Ingot x3 + Holly Lumber + Grass Cloth + + NQ: Temple Knight Army Sword +1 + + HQ1: Temple Knight Army Sword +2 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (32) + + + Fire Crystal + Temple Knight Army Sword + Iron Ingot + + NQ: Tomahawk + + HQ1: Tomahawk +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (32) +Sub Craft(s): Goldsmithing - (6), Woodworking - (3) + + + Fire Crystal + Brass Ingot + Steel Ingot + Ash Lumber + + NQ: Greaves + + HQ1: Greaves +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (33) +Sub Craft(s): Leathercraft - (6) + + + Earth Crystal + Iron Chain + Iron Sheet + Ram Leather + + NQ: Junior Musketeer's Tuck +1 + + HQ1: Junior Musketeer's Tuck +2 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (33) + + + Fire Crystal + Junior Musketeer's Tuck + Iron Ingot + + NQ: Kukri + + HQ1: Kukri +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (33) + + + Fire Crystal + Steel Ingot + Chestnut Lumber + Lizard Skin + + NQ: Plain Pick + + LightCrystal-Icon.gif + +Main Craft: Smithing - (33) + + + Light Crystal + Rusty Pick + + NQ: Tachi + + HQ1: Tachi +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (33) +Key Item: Leathercraft - (7), Woodworking - (4) + + + Fire Crystal + Iron Ingot x3 + Copper Ingot + Lizard Skin + Tama-Hagane + Cotton Thread + Ash Lumber + + NQ: Mythril Knife + + HQ1: Mythril Knife +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (34) + + + Fire Crystal + Mythril Ingot + Chestnut Lumber + + NQ: Plain Cap + + LightCrystal-Icon.gif + +Main Craft: Smithing - (34) + + + Light Crystal + Rusty Cap + + NQ: Warhammer + + HQ1: Warhammer +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (34) + + + Fire Crystal + Iron Ingot x2 + Elm Lumber + + NQ: Bastokan Dagger + + HQ1: Republic Dagger + + FireCrystal-Icon.gif + +Main Craft: Smithing - (35) + + + Fire Crystal + Decurion's Dagger + Mythril Ingot + + NQ: Chain Hose + + HQ1: Chain Hose +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (35) +Sub Craft(s): Leathercraft - (7) + + + Earth Crystal + Iron Chain x2 + Linen Cloth + Ram Leather x2 + + NQ: Iron Cuisses + + HQ1: Iron Cuisses +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (35) +Sub Craft(s): Leathercraft - (5) + + + Earth Crystal + Iron Scales x2 + Leather Trousers + Cotton Thread + + NQ: Lucent Scythe + + FireCrystal-Icon.gif + +Main Craft: Smithing - (35) + + + Fire Crystal + Lucent Iron + Scythe + + NQ: Targe + + HQ1: Targe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (35) + + + Fire Crystal + Iron Sheet x2 + Holly Lumber + + NQ: Targe + + FireCrystal-Icon.gif + +Main Craft: Smithing - (35) + + + Fire Crystal + Smithing Kit 35 + + NQ: Iron Greaves + + HQ1: Iron Greaves +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (36) +Sub Craft(s): Leathercraft - (2) + + + Earth Crystal + Iron Scales x2 + Cotton Thread + Leather Highboots + + NQ: Lightweight Steel Sheet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (36) + + + Fire Crystal + Light Steel Ingot + + NQ: Lightweight Steel Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (36) +Key Item: Sheeting + + + Fire Crystal + Light Steel Ingot x6 + Workshop Anvil + + NQ: Steel Sheet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (36) + + + Fire Crystal + Steel Ingot + + NQ: Steel Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (36) +Key Item: Sheeting + + + Fire Crystal + Steel Ingot x6 + Workshop Anvil + + NQ: Voulge + + HQ1: Voulge +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (36) +Sub Craft(s): Goldsmithing - (25), Woodworking - (8) + + + Fire Crystal + Brass Ingot + Steel Ingot x2 + Mythril Ingot + Holly Lumber + + NQ: Wakizashi + + HQ1: Wakizashi +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (36) +Sub Craft(s): Woodworking - (11), Leathercraft - (7) + + + Fire Crystal + Iron Ingot + Elm Lumber + Copper Ingot + Lizard Skin + Tama-Hagane + Silk Thread + + NQ: Chainmail + + HQ1: Chainmail +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (37) +Sub Craft(s): Leathercraft - (8) + + + Earth Crystal + Iron Chain x4 + Iron Sheet + Ram Leather + + NQ: Eisendiechlings + + HQ1: Kampfdiechlings + + FireCrystal-Icon.gif + +Main Craft: Smithing - (37) +Sub Craft(s): Leathercraft - (14) + + + Fire Crystal + Bronze Sheet + Iron Sheet + Dhalmel Leather + Sheep Leather + + NQ: Iron Scale Mail + + HQ1: Iron Scale Mail +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (37) + + + Earth Crystal + Iron Scales x4 + Leather Vest + Cotton Thread + Sheep Leather + + NQ: Katars + + HQ1: Katars +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (37) + + + Fire Crystal + Steel Ingot x2 + Bronze Sheet + Ram Leather + + NQ: Windurstian Sword + + HQ1: Federation Sword + + FireCrystal-Icon.gif + +Main Craft: Smithing - (37) + + + Fire Crystal + Iron Ingot + Mercenary's Greatsword + + NQ: Tyro Katars + + HQ1: Tyro Katars +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (37) + + + Fire Crystal + Steel Ingot x2 + Ram Leather + Grimy Bronze Sheet + + NQ: Eisenschaller + + HQ1: Kampfschaller + + FireCrystal-Icon.gif + +Main Craft: Smithing - (38) +Sub Craft(s): Goldsmithing - (12) + + + Fire Crystal + Iron Sheet x2 + Copper Ingot + Silver Ingot + Sheep Leather + Mercury + + NQ: Kris + + HQ1: Kris +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (38) +Sub Craft(s): Goldsmithing - (15) + + + Fire Crystal + Iron Ingot + Steel Ingot + Black Pearl + + NQ: War Pick + + HQ1: War Pick +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (38) +Sub Craft(s): Woodworking - (6) + + + Fire Crystal + Ash Lumber + Steel Ingot + + NQ: Windurstian Kukri + + HQ1: Federation Kukri + + FireCrystal-Icon.gif + +Main Craft: Smithing - (38) + + + Fire Crystal + Mercenary Captain's Kukri + Steel Ingot + + NQ: Falx + + HQ1: Falx +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (39) +Sub Craft(s): Goldsmithing - (25), Leathercraft - (20) + + + Fire Crystal + Steel Ingot x3 + Mythril Ingot + Holly Lumber + Pearl + Dhalmel Leather + + NQ: Fleuret + + HQ1: Fleuret +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (39) +Sub Craft(s): Goldsmithing - (19) + + + Fire Crystal + Silver Ingot + Steel Ingot x2 + Light Opal + + NQ: Padded Cap + + HQ1: Strong Cap + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (39) +Sub Craft(s): Leathercraft - (9) + + + Earth Crystal + Iron Sheet + Lizard Skin x2 + + NQ: Twicer + + FireCrystal-Icon.gif + +Main Craft: Smithing - (39) + + + Fire Crystal + Light Steel Ingot + Voulge + + NQ: Midare + + HQ1: Midare +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (39) +Sub Craft(s): Leathercraft - (7), Woodworking - (4) + + + Fire Crystal + Mythril Ingot + Ash Lumber + Copper Ingot + Tokkyu Tama-Hagane + Cotton Thread + Lizard Skin + + NQ: Bannaret Mail + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (40) +Key Item: Metal Ensorcellment + + + Earth Crystal + Lambent Fire Cell + Lambent Wind Cell + Chainmail + + NQ: Mythril Mace + + HQ1: Mythril Mace +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (40) + + + Fire Crystal + Mythril Ingot x3 + + NQ: Mythril Sword + + HQ1: Mythril Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (40) + + + Fire Crystal + Mythril Ingot x2 + Dhalmel Leather + + NQ: Steel Scales + + WindCrystal-Icon.gif + +Main Craft: Smithing - (40) + + + Wind Crystal + Steel Sheet + + NQ: Steel Scales + + WindCrystal-Icon.gif + +Main Craft: Smithing - (40) + + + Wind Crystal + Smithing Kit 40 + + +Apprentice (41-50) +Synthesis Information +Yield Requirements Ingredients + + NQ: Iron Mittens + + HQ1: Iron Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (41) +Sub Craft(s): Leathercraft - (10) + + + Earth Crystal + Iron Sheet + Lizard Skin + + NQ: Mythril Claymore + + HQ1: Fine Claymore + + FireCrystal-Icon.gif + +Main Craft: Smithing - (41) +Sub Craft(s): Leathercraft - (11), Woodworking - (9) + + + Fire Crystal + Dhalmel Leather + Holly Lumber + Mythril Ingot x4 + + NQ: Tulwar + + HQ1: Tulwar +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (41) +Sub Craft(s): Goldsmithing - (11) + + + Fire Crystal + Silver Ingot + Mythril Ingot x2 + + NQ: Heavy Axe + + HQ1: Heavy Axe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (41) +Sub Craft(s): Woodworking - (14) + + + Fire Crystal + Oak Lumber + Steel Ingot x3 + + NQ: Eisenschuhs + + HQ1: Kampfschuhs + + FireCrystal-Icon.gif + +Main Craft: Smithing - (41) +Sub Craft(s): Leathercraft - (15), Goldsmithing - (9) + + + Fire Crystal + Dhalmel Leather + Iron Sheet x2 + Mercury + Sheep Leather + Silver Ingot + + NQ: Lucent Lance + + FireCrystal-Icon.gif + +Main Craft: Smithing - (41) + + + Fire Crystal + Lance + Lucent Steel Ingot + + NQ: Bastokan Targe + + HQ1: Republic Targe + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (41) + + + Earth Crystal + Iron Sheet + Decurion's Shield + + NQ: Combat Caster's Dagger +1 + + HQ1: Combat Caster's Dagger +2 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (42) + + + Fire Crystal + Mythril Ingot + Combat Caster's Dagger + + NQ: Eisenhentzes + + HQ1: Kampfhentzes + + FireCrystal-Icon.gif + +Main Craft: Smithing - (42) +Sub Craft(s): Goldsmithing - (14) + + + Fire Crystal + Silver Ingot + Mercury + Leather Gloves x2 + Bronze Sheet + Iron Sheet + + NQ: Mythril Axe + + HQ1: Mythril Axe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (42) +Sub Craft(s): Woodworking - (11) + + + Fire Crystal + Chestnut Lumber + Mythril Ingot x2 + + NQ: Mythril Kukri + + HQ1: Mythril Kukri +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (42) +Sub Craft(s): Woodworking - (11) + + + Fire Crystal + Oak Lumber + Raptor Skin + Mythril Ingot + + NQ: Throwing Tomahawk x33 + + HQ1: Throwing Tomahawk x66 + HQ2: Throwing Tomahawk x99 + HQ3: Throwing Tomahawk x99 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (42) +Sub Craft(s): Woodworking - (?) + + + Fire Crystal + Chestnut Lumber x2 + Steel Ingot x2 + + NQ: Two-Handed Sword + + HQ1: Two-Handed Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (42) +Sub Craft(s): Leathercraft - (7), Woodworking - (6) + + + Fire Crystal + Ash Lumber + Lizard Skin + Steel Ingot x5 + + NQ: Eisenbrust + + HQ1: Kampfbrust + + FireCrystal-Icon.gif + +Main Craft: Smithing - (43) +Sub Craft(s): Goldsmithing - (15), Leathercraft - (5) + + + Fire Crystal + Bronze Sheet x2 + Iron Sheet x2 + Mercury + Sheep Leather + Silver Ingot + + NQ: Falchion + + HQ1: Falchion +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (43) + + + Fire Crystal + Iron Ingot + Steel Ingot x3 + + NQ: Leggings + + HQ1: Leggings +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (43) +Sub Craft(s): Leathercraft - (11) + + + Earth Crystal + Iron Sheet x2 + Lizard Skin x2 + + NQ: Musketoon + + HQ1: Musketoon +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (43) +Sub Craft(s): Woodworking - (21), Goldsmithing - (??) + + + Fire Crystal + Brass Ingot + Bronze Ingot x2 + Willow Lumber + + NQ: Shinobi-Gatana + + HQ1: Shinobi-Gatana +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (43) +Sub Craft(s): Woodworking - (11), Leathercraft - (7) + + + Fire Crystal + Copper Ingot + Cotton Thread + Elm Lumber + Iron Ingot + Lizard Skin + Tama-Hagane + + NQ: Juji Shuriken x33 + + HQ1: Juji Shuriken x66 + HQ2: Juji Shuriken x99 + HQ3: Juji Shuriken x99 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (44) + + + Wind Crystal + Iron Sheet + Steel Ingot + + NQ: Lucent Axe + + FireCrystal-Icon.gif + +Main Craft: Smithing - (44) + + + Fire Crystal + Heavy Axe + Lucent Steel Ingot + + NQ: Mythril Knuckles + + HQ1: Mythril Knuckles +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (44) +Sub Craft(s): Woodworking - (12) + + + Fire Crystal + Chestnut Lumber + Mythril Sheet + Steel Ingot + + NQ: Mythril Bolt Heads x6 + + HQ1: Mythril Bolt Heads x8 + HQ2: Mythril Bolt Heads x10 + HQ3: Mythril Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (44) + + + Wind Crystal + Mythril Ingot + + NQ: Halo Claymore + + FireCrystal-Icon.gif + +Main Craft: Smithing - (44) +Key Item: Metal Ensorcellment + + + Fire Crystal + Lambent Fire Cell + Lambent Wind Cell + Mythril Claymore + + NQ: Bastokan Sword + + HQ1: Republic Sword + + FireCrystal-Icon.gif + +Main Craft: Smithing - (45) + + + Fire Crystal + Centurion's Sword + Mythril Ingot + + NQ: Iron Subligar + + HQ1: Iron Subligar +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (45) +Sub Craft(s): Leathercraft - (12) + + + Earth Crystal + Cotton Cloth + Iron Sheet + Lizard Skin + + NQ: Lucent Sword + + FireCrystal-Icon.gif + +Main Craft: Smithing - (45) + + + Fire Crystal + Lucent Iron Ingot + Two-Handed Sword + + NQ: Navy Axe + + FireCrystal-Icon.gif + +Main Craft: Smithing - (45) +Key Item: Metal Ensorcellment + + + Fire Crystal + Lambent Fire Cell + Lambent Wind Cell + Mythril Axe + + NQ: Mythril Rod + + HQ1: Mythril Rod +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (45) + + + Fire Crystal + Mythril Ingot x2 + Steel Ingot + + NQ: San d'Orian Mace + + HQ1: Kingdom Mace + + FireCrystal-Icon.gif + +Main Craft: Smithing - (45) + + + Fire Crystal + Mythril Ingot + Royal Squire's Mace + + NQ: Mythril Rod + + FireCrystal-Icon.gif + +Main Craft: Smithing - (45) + + + Fire Crystal + Smithing Kit 45 + + NQ: Bastokan Greataxe + + HQ1: Republic Greataxe + + FireCrystal-Icon.gif + +Main Craft: Smithing - (46) + + + Fire Crystal + Steel Ingot + Centurion's Axe + + NQ: Combat Caster's Scimitar +1 + + HQ1: Combat Caster's Scimitar +2 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (46) + + + Fire Crystal + Mythril Ingot + Combat Caster's Scimitar + + NQ: Hibari + + HQ1: Hibari +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (46) + + + Fire Crystal + Lizard Skin + Tama-Hagane + + NQ: Maul + + HQ1: Maul +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (46) + + + Fire Crystal + Mythril Ingot x2 + Oak Lumber + + NQ: Mythril Bolt x33 + + HQ1: Mythril Bolt x66 + HQ2: Mythril Bolt x99 + HQ3: Mythril Bolt x99 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (46) +Sub Craft(s): Woodworking - (12) + + + Wind Crystal + Mythril Ingot + Chestnut Lumber + + NQ: Mythril Pick + + HQ1: Mythril Pick +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (47) +Sub Craft(s): Woodworking - (8) + + + Fire Crystal + Mythril Ingot + Elm Lumber + + NQ: Padded Armor + + HQ1: Strong Harness + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (47) +Sub Craft(s): Leathercraft - (13) + + + Earth Crystal + Iron Sheet x3 + Lizard Skin x2 + + NQ: Mythril Claws + + HQ1: Mythril Claws +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (48) +Sub Craft(s): Bonecraft - (13) + + + Fire Crystal + Mythril Ingot + Beetle Jaw + + NQ: Mythril Scythe + + HQ1: Mythril Scythe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (48) +Sub Craft(s): Woodworking - (19) + + + Fire Crystal + Grass Cloth + Mythril Ingot x3 + Yew Lumber + + NQ: Republican Legionnaire's Bedding + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (48) +Sub Craft(s): Clothcraft - (37) + + + Earth Crystal + Iron Ingot + Steel Ingot + Iron Sheet x2 + Chestnut Lumber + Linen Cloth x2 + Saruta Cotton + + NQ: Nodachi + + HQ1: Nodachi +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (48) +Sub Craft(s): Leathercraft - (7), Woodworking - (4) + + + Fire Crystal + Ash Lumber + Copper Ingot + Cotton Thread + Iron Ingot x2 + Lizard Skin + Tama-Hagane x2 + + NQ: Gust Claymore + + HQ1: Gust Claymore +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (49) + + + Earth Crystal + Claymore + Iron Sheet + Tin Ingot + + NQ: Knight's Sword + + HQ1: Knight's Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (49) + + + Fire Crystal + Mythril Ingot x3 + Ram Leather + + NQ: Steel Visor + + HQ1: Steel Visor +1 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (49) + + + Wind Crystal + Iron Scales + Sheep Leather + Steel Sheet + + NQ: Arquebus + + HQ1: Arquebus +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (50) +Sub Craft(s): Woodworking - (38), Goldsmithing - (19) + + + Fire Crystal + Brass Ingot + Mahogany Lumber + Steel Ingot x2 + + NQ: Faussar + + HQ1: Faussar +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (50) +Sub Craft(s): Woodworking - (40), Leathercraft - (12) + + + Fire Crystal + Lizard Skin + Mahogany Lumber + Mythril Ingot x2 + Steel Ingot x4 + + NQ: Kite Shield + + HQ1: Kite Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (50) + + + Earth Crystal + Ash Lumber + Darksteel Sheet + Iron Sheet x2 + + NQ: Kite Shield + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (50) + + + Earth Crystal + Smithing Kit 50 + + +Journeyman (51-60) +Synthesis Information +Yield Requirements Ingredients + + NQ: Bastokan Hammer + + HQ1: Republic Hammer + + FireCrystal-Icon.gif + +Main Craft: Smithing - (51) + + + Fire Crystal + Darksteel Ingot + Decurion's Hammer + + NQ: Broadsword + + HQ1: Broadsword +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (51) + + + Fire Crystal + Lizard Skin + Mythril Ingot x2 + + NQ: Patas + + HQ1: Patas +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (51) + + + Fire Crystal + Carbon Fiber + Iron Sheet + Steel Ingot x2 + + NQ: Steel Finger Gauntlets + + HQ1: Steel Finger Gauntlets +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (51) + + + Earth Crystal + Cotton Thread + Leather Gloves + Steel Scales x2 + + NQ: Tabar + + HQ1: Tabar +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (51) +Sub Craft(s): Woodworking - (11) + + + Fire Crystal + Chestnut Lumber + Mythril Ingot x3 + + NQ: Darksteel Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (52) + + + Fire Crystal + Darksteel Ore + Iron Ore x3 + + NQ: Smiting Scythe + + HQ1: Smiting Scythe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (52) +Sub Craft(s): Woodworking - (19) + + + Fire Crystal + Tenebrium + Mythril Scythe + + NQ: Greatsword + + HQ1: Greatsword +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (52) +Sub Craft(s): Leathercraft - (11), Woodworking - (9) + + + Fire Crystal + Dhalmel Leather + Holly Lumber + Mythril Ingot x5 + + NQ: Darksteel Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (53) + + + Fire Crystal + Darksteel Ore + Darksteel Nugget x6 + + NQ: Darksteel Knife + + HQ1: Darksteel Knife +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (53) + + + Fire Crystal + Darksteel Ingot + Oak Lumber + + NQ: Gorget + + HQ1: Gorget +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (53) + + + Fire Crystal + Iron Sheet + Sheep Leather + + NQ: Kodachi + + HQ1: Kodachi +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (53) +Sub Craft(s): Woodworking - (7), Leathercraft - (4) + + + Fire Crystal + Ash Lumber + Copper Ingot + Cotton Thread + Lizard Skin + Mythril Ingot + Tama-Hagane + + NQ: Uchigatana + + HQ1: Uchigatana +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (53) +Sub Craft(s): Woodworking - (11), Leathercraft - (7) + + + Fire Crystal + Copper Ingot + Elm Lumber + Iron Ingot x2 + Lizard Skin + Silk Thread + Tama-Hagane + + NQ: Cuisses + + HQ1: Cuisses +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (54) + + + Fire Crystal + Iron Sheet x2 + Sheep Leather + + NQ: Steel Ingot + + HQ1: Tama-Hagane + + FireCrystal-Icon.gif + +Main Craft: Smithing - (54) + + + Fire Crystal + Bomb Ash x4 + Iron Sand x4 + + NQ: Tanegashima + + HQ1: Tanegashima +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (54) +Sub Craft(s): Woodworking - (30), Goldsmithing - (9) + + + Fire Crystal + Copper Ingot + Oak Lumber + Steel Ingot x2 + + NQ: Darksteel Sheet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (55) + + + Fire Crystal + Darksteel Ingot + + NQ: Darksteel Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (55) +Key Item: Sheeting + + + Fire Crystal + Darksteel Ingot x6 + Workshop Anvil + + NQ: Darksteel Sword + + HQ1: Darksteel Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (55) + + + Fire Crystal + Darksteel Ingot x2 + Raptor Skin + + NQ: Sallet + + HQ1: Sallet +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (55) + + + Fire Crystal + Copper Ingot + Iron Sheet x2 + Sheep Leather + + NQ: Steel Cuisses + + HQ1: Steel Cuisses +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (55) +Sub Craft(s): Leathercraft - (5) + + + Earth Crystal + Cotton Thread + Leather Trousers + Steel Scales x2 + + NQ: Steel Ingot + + HQ1: Tama-Hagane + + FireCrystal-Icon.gif + +Main Craft: Smithing - (55) + + + Fire Crystal + Bomb Ash + Cluster Ash + Iron Sand x4 + + NQ: Steel Ingot + + HQ1: Tama-Hagane + + FireCrystal-Icon.gif + +Main Craft: Smithing - (55) + + + Fire Crystal + Iron Ore + Steel Nugget x6 + + NQ: Sallet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (55) + + + Fire Crystal + Smithing Kit 55 + + NQ: Combat Caster's Axe +1 + + HQ1: Combat Caster's Axe +2 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (56) + + + Fire Crystal + Mythril Ingot + Combat Caster's Axe + + NQ: Steel Ingot + + HQ1: Tama-Hagane + + FireCrystal-Icon.gif + +Main Craft: Smithing - (56) + + + Fire Crystal + Djinn Ash + Iron Sand x4 + + NQ: Darksteel Claws + + HQ1: Darksteel Claws +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (56) +Sub Craft(s): Bonecraft - (14) + + + Fire Crystal + Beetle Jaw + Darksteel Ingot + + NQ: Plate Leggings + + HQ1: Plate Leggings +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (56) + + + Fire Crystal + Iron Sheet x3 + Sheep Leather x2 + + NQ: Steel Greaves + + HQ1: Steel Greaves +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (56) + + + Earth Crystal + Cotton Thread + Steel Scales x2 + Leather Highboots + + NQ: Alumine Solerets + + HQ1: Luisant Solerets + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (57) + + + Earth Crystal + Aluminum Sheet + Darksteel Sheet + Greaves + + NQ: Gauntlets + + HQ1: Gauntlets +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (57) + + + Fire Crystal + Iron Sheet x2 + Leather Gloves x2 + + NQ: Hunting Sword + + HQ1: War Sword + + FireCrystal-Icon.gif + +Main Craft: Smithing - (57) + + + Fire Crystal + Dhalmel Leather + Mythril Ingot x3 + + NQ: Mars's Hexagun + + HQ1: Mars's Hexagun +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (57) +Sub Craft(s): Woodworking - (33), Goldsmithing - (16) + + + Fire Crystal + Rosewood Lumber x2 + Silver Ingot + Steel Ingot x2 + + NQ: Severus Claws + + HQ1: Severus Claws +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (57) +Sub Craft(s): Bonecraft -(14) + + + Fire Crystal + Darksteel Ingot + Likho Talon + + NQ: Royal Swordsman's Blade +1 + + HQ1: Royal Swordsman's Blade +2 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (57) + + + Fire Crystal + Mythril Ingot + Royal Swordsman's Blade + + NQ: Steel Scale Mail + + HQ1: Steel Scale Mail +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (57) + + + Earth Crystal + Cotton Thread + Leather Vest + Sheep Leather + Steel Scales x4 + + NQ: Armor Plate x12 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (58) +Sub Craft(s): Alchemy - (34) + + + Fire Crystal + Darksteel Sheet + Imperial Cermet + Iron Sheet + Steel Sheet + Carbon Fiber + + NQ: Breastplate + + HQ1: Breastplate +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (58) + + + Fire Crystal + Iron Sheet x4 + Sheep Leather x2 + + NQ: Jindachi + + HQ1: Jindachi +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (58) +Sub Craft(s): Leathercraft - (30), Woodworking - (4) + + + Fire Crystal + Ash Lumber + Copper Ingot + Cotton Thread + Iron Ingot x2 + Raptor Skin + Tama-Hagane x2 + + NQ: Kyofu + + HQ1: Kyofu +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (58) + + + Earth Crystal + Iron Sheet + Tin Ingot + Shinobi-Gatana + + NQ: Alumine Moufles + + HQ1: Luisant Moufles + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (59) + + + Earth Crystal + Aluminum Sheet + Chain Mittens + Darksteel Sheet + + NQ: Blunderbuss + + HQ1: Blunderbuss +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (59) +Sub Craft(s): Woodworking - (20), Goldsmithing - (17) + + + Fire Crystal + Brass Ingot + Steel Ingot x2 + Elm Lumber + Silver Ingot + + NQ: Darksteel Scales + + WindCrystal-Icon.gif + +Main Craft: Smithing - (59) + + + Wind Crystal + Darksteel Sheet + + NQ: Gust Sword + + HQ1: Gust Sword +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (59) + + + Earth Crystal + Greatsword + Steel Sheet + Tin Ingot + + NQ: Schlaeger + + HQ1: Schlaeger +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (59) +Sub Craft(s): Goldsmithing - (14) + + + Fire Crystal + Darksteel Ingot x2 + Silver Ingot + + NQ: Scutum + + HQ1: Scutum +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (59) + + + Earth Crystal + Darksteel Sheet x2 + Iron Sheet x2 + Oak Lumber + + NQ: Darksteel Claymore + + HQ1: Darksteel Claymore +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (60) +Sub Craft(s): Leathercraft - (18), Woodworking - (14) + + + Fire Crystal + Chestnut Lumber + Darksteel Ingot x4 + Ram Leather + + NQ: Darksteel Falchion + + HQ1: Crescent Sword + + FireCrystal-Icon.gif + +Main Craft: Smithing - (60) + + + Fire Crystal + Darksteel Ingot x3 + Steel Ingot + + NQ: Darksteel Knuckles + + HQ1: Darksteel Knuckles +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (60) +Sub Craft(s): Woodworking - (23) + + + Fire Crystal + Darksteel Ingot + Darksteel Sheet + Oak Lumber + + NQ: Iyo Scale + + WindCrystal-Icon.gif + +Main Craft: Smithing - (60) + + + Wind Crystal + Darksteel Sheet x2 + + NQ: Erlking's Blade + + FireCrystal-Icon.gif + +Main Craft: Smithing - (60) + + + Fire Crystal + Dweomer Steel Ingot + Darksteel Ingot x2 + Steel Ingot + + NQ: Tewhatewha + + HQ1: Tewhatewha +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (60) +Sub Craft(s): Goldsmithing - (25), Woodworking - (8) + + + Fire Crystal + Iron Ingot + Steel Ingot x2 + Holly Lumber + Aramid Fiber + + NQ: Darksteel Mace + + FireCrystal-Icon.gif + +Main Craft: Smithing - (60) + + + Fire Crystal + Smithing Kit 60 + + +Craftsman (61-70) +Synthesis Information +Yield Requirements Ingredients + + NQ: Tsukumo + + FireCrystal-Icon.gif + +Main Craft: Smithing - (61) +Sub Craft(s): Goldsmithing - (54) + + + Fire Crystal + Dweomer Steel Ingot + Gargouille Shank + Ruszor Leather + + NQ: Alumine Brayettes + + HQ1: Luisant Brayettes + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (61) +Sub Craft(s): Leathercraft - (22) + + + Earth Crystal + Aluminum Chain + Darksteel Chain + Linen Cloth + Ram Leather x2 + + NQ: Dweomer Scythe + + FireCrystal-Icon.gif + +Main Craft: Smithing - (61) +Sub Craft(s): Alchemy - (59), Woodworking - (19) + + + Fire Crystal + Dweomer Steel Ingot + Steel Ingot + Darksteel Ingot x2 + Yew Lumber + Grass Cloth + Fiend Blood + + NQ: Darksteel Mace + + HQ1: Darksteel Mace +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (61) + + + Fire Crystal + Darksteel Ingot x3 + + NQ: Mythril Zaghnal + + HQ1: Mythril Zaghnal +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (61) +Sub Craft(s): Woodworking - (19) + + + Fire Crystal + Grass Cloth + Mythril Ingot x2 + Walnut Lumber + + NQ: Sai + + HQ1: Sai +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (61) +Sub Craft(s): Leathercraft - (37) + + + Fire Crystal + Habu Skin + Silver Thread + Steel Ingot x2 + + NQ: Alumine Salade + + HQ1: Luisant Salade + + FireCrystal-Icon.gif + +Main Craft: Smithing - (62) +Sub Craft(s): Goldsmithing - (21) + + + Fire Crystal + Aluminum Sheet + Copper Ingot + Darksteel Chain + Darksteel Sheet + Sheep Leather + + NQ: Darksteel Axe + + HQ1: Darksteel Axe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (62) +Sub Craft(s): Woodworking - (29) + + + Fire Crystal + Darksteel Ingot x2 + Oak Lumber + + NQ: Darksteel Bolt Heads x6 + + HQ1: Darksteel Bolt Heads x8 + HQ2: Darksteel Bolt Heads x10 + HQ3: Darksteel Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (62) + + + Wind Crystal + Darksteel Ingot + + NQ: Darksteel Sollerets + + HQ1: Darksteel Sollerets +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (62) + + + Earth Crystal + Darksteel Sheet x2 + Greaves + + NQ: Haidate + + HQ1: Haidate +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (62) +Sub Craft(s): Clothcraft - (44) + + + Earth Crystal + Iron Sheet x2 + Sheep Leather + Silk Cloth + Silk Thread + + NQ: Steel Kilij + + HQ1: Steel Kilij +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (62) +Sub Craft(s): Goldsmithing - (50), Woodworking - (33) + + + Fire Crystal + Aluminum Ingot x2 + Amethyst + Ametrine + Karakul Leather + Rosewood Lumber + Steel Ingot x2 + + NQ: Tactician Magician's Espadon +1 + + HQ1: Tactician Magician's Espadon +2 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (62) + + + Fire Crystal + Mythril Ingot + Tactician Magician's Espadon + + NQ: Sakurafubuki + + HQ1: Sakurafubuki +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (62) +Sub Craft(s): Alchemy - (51), Woodworking - (11) + + + Fire Crystal + Cermet Chunk + Copper Ingot + Raptor Skin + Silk Thread + Tama-Hagane + + NQ: Darksteel Baselard + + HQ1: Darksteel Baselard +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (63) + + + Fire Crystal + Mythril Ingot + Darksteel Ingot + + NQ: Darksteel Chain + + HQ1: Darksteel Chain x2 + HQ1: Darksteel Chain x3 + HQ1: Darksteel Chain x4 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (63) + + + Earth Crystal + Darksteel Ingot x2 + + NQ: Darksteel Chain x3 + + HQ1: Darksteel Chain x6 + HQ1: Darksteel Chain x9 + HQ1: Darksteel Chain x12 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (63) +Key Item: Chainwork + + + Earth Crystal + Darksteel Ingot x6 + Mandrel + + NQ: Dweomer Knife + + FireCrystal-Icon.gif + +Main Craft: Smithing - (63) + + + Fire Crystal + Dweomer Steel Ingot + Jacaranda Lumber + + NQ: Sune-Ate + + HQ1: Sune-Ate +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (64) +Sub Craft(s): Clothcraft - (41) + + + Fire Crystal + Iron Sheet x2 + Sheep Leather + Silk Cloth + Silk Thread + + NQ: Darksteel Mufflers + + HQ1: Darksteel Mufflers +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (64) + + + Earth Crystal + Chain Mittens + Darksteel Sheet x2 + + NQ: Alumine Haubert + + HQ1: Luisant Haubert + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (64) +Sub Craft(s): Goldsmithing - (28), Clothcraft - (25) + + + Earth Crystal + Aluminum Ingot + Aluminum Sheet + Darksteel Sheet + Darksteel Chain x3 + Silk Cloth + Velvet Cloth + + NQ: Dweomer Maul + + FireCrystal-Icon.gif + +Main Craft: Smithing - (64) + + + Fire Crystal + Dweomer Steel Ingot + Mahogany Lumber + Darksteel Ingot + + NQ: Darksteel Bolt x33 + + HQ1: Darksteel Bolt x66 + HQ2: Darksteel Bolt x99 + HQ3: Darksteel Bolt x99 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (64) +Sub Craft(s): Woodworking - (26) + + + Wind Crystal + Darksteel Ingot + Rosewood Lumber + + NQ: Darksteel Kukri + + HQ1: Darksteel Kukri +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (65) + + + Fire Crystal + Cockatrice Skin + Darksteel Ingot + Mahogany Lumber + + NQ: Manji Shuriken x33 + + HQ1: Manji Shuriken x66 + HQ2: Manji Shuriken x99 + HQ3: Manji Shuriken x99 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (65) + + + Wind Crystal + Darksteel Sheet + Tama-Hagane + + NQ: Reppu + + HQ1: Reppu +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (65) + + + Earth Crystal + Kodachi + Steel Sheet + Tin Ingot + + NQ: Erlking's Tabar + + FireCrystal-Icon.gif + +Main Craft: Smithing - (65) +Sub Craft(s): Woodworking - (23) + + + Fire Crystal + Dweomer Steel Ingot + Oak Lumber + Darksteel Ingot x2 + + NQ: Fane Baselard + + FireCrystal-Icon.gif + +Main Craft: Smithing - (65) + + + Fire Crystal + Dweomer Steel Ingot + Dark Adaman + + NQ: Darksteel Kukri + + FireCrystal-Icon.gif + +Main Craft: Smithing - (65) + + + Fire Crystal + Smithing Kit 65 + + NQ: Darksteel Breeches + + HQ1: Darksteel Breeches +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (66) +Sub Craft(s): Leathercraft - (27) + + + Earth Crystal + Darksteel Chain x2 + Linen Cloth + Ram Leather x2 + + NQ: Negoroshiki + + HQ1: Negoroshiki +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (66) +Sub Craft(s): Woodworking - (30), Goldsmithing - (9) + + + Fire Crystal + Copper Ingot + Darksteel Ingot + Oak Lumber + Steel Ingot + + NQ: Nodowa + + HQ1: Nodowa +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (66) + + + Earth Crystal + Iron Sheet + Silk Thread + + NQ: Jaridah Nails + + HQ1: Akinji Nails + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (66) +Sub Craft(s): Leathercraft - (39), Clothcraft - (28) + + + Earth Crystal + Karakul Cloth + Karakul Leather + Marid Hair + Marid Leather + Steel Sheet + + NQ: Hanafubuki + + FireCrystal-Icon.gif + +Main Craft: Smithing - (66) +Key Item: Metal Ensorcellment + + + Fire Crystal + Lambent Wind Cell + Lambent Fire Cell + Sakurafubuki + + NQ: Bascinet + + HQ1: Bascinet +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (67) + + + Fire Crystal + Copper Ingot + Darksteel Chain + Darksteel Sheet + Sheep Leather + Iron Sheet + + NQ: Dweomer Steel + + FireCrystal-Icon.gif + +Main Craft: Smithing - (67) + + + Fire Crystal + Iron Ore x3 + Swamp Ore + + NQ: Kote + + HQ1: Kote +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (67) +Sub Craft(s): Clothcraft - (46) + + + Fire Crystal + Iron Chain x2 + Iron Sheet x2 + Silk Cloth + Silk Thread + + NQ: Royal Knight's Sollerets +1 + + HQ1: Royal Knight's Sollerets +2 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (67) + + + Earth Crystal + Darksteel Chain + Royal Knight's Sollerets + + NQ: Darksteel Hexagun + + HQ1: Darksteel Hexagun +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (67) +Sub Craft(s): Goldsmithing - (16). Woodworking - (37) + + + Fire Crystal + Darksteel Ingot + Ebony Lumber x2 + Silver Ingot + Steel Ingot + + NQ: Fane Hexagun + + FireCrystal-Icon.gif + +Main Craft: Smithing - (67) +Sub Craft(s): Woodworking - (37), Goldsmithing - (16) + + + Fire Crystal + Dweomer Steel Ingot + Darksteel Ingot + Silver Ingot + Ebony Lumber x2 + + NQ: Armor Plate II x12 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (68) +Sub Craft(s): Alchemy - (34) + + + Fire Crystal + Carbon Fiber + Darksteel Sheet x2 + Imperial Cermet + Steel Sheet + + NQ: Darksteel Katars + + HQ1: Darksteel Katars +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (68) + + + Fire Crystal + Darksteel Ingot x2 + Iron Sheet + Tiger Leather + + NQ: Hara-Ate + + HQ1: Hara-Ate +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (68) +Sub Craft(s): Clothcraft - (49) + + + Fire Crystal + Iron Chain x2 + Iron Sheet x3 + Sheep Leather + Silk Cloth + Silk Thread + + NQ: Jaridah Bazubands + + HQ1: Akinji Bazubands + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (68) +Sub Craft(s): Leathercraft - (31), Clothcraft - (22) + + + Earth Crystal + Karakul Leather + Marid Hair + Mohbwa Cloth + Steel Sheet x2 + + NQ: Tsukumo + + FireCrystal-Icon.gif + +Main Craft: Smithing - (68) +Sub Craft(s): Goldsmithing - (55) + + + Fire Crystal + Dweomer Steel Ingot + Gargouille Shank + Ruszor Leather + + NQ: Erlking's Kheten + + FireCrystal-Icon.gif + +Main Craft: Smithing - (69) +Sub Craft(s): Woodworking - (23+) + + + Fire Crystal + Darksteel Ingot + Rosewood Lumber + Dweomer Steel Ingot + Steel Ingot + + NQ: Haubergeon + + HQ1: Haubergeon +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (69) +Sub Craft(s): Clothcraft - (38) + + + Earth Crystal + Damascus Ingot + Darksteel Chain x3 + Darksteel Sheet x2 + Silk Cloth + Velvet Cloth + + NQ: Royal Knight's Mufflers +1 + + HQ1: Royal Knight's Mufflers +2 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (69) + + + Earth Crystal + Darksteel Chain + Royal Knight's Mufflers + + NQ: Zunari Kabuto + + HQ1: Zunari Kabuto +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (69) +Sub Craft(s): Clothcraft - (34) + + + Fire Crystal + Copper Ingot + Iron Sheet x2 + Silk Cloth + Silk Thread + + NQ: Rindomaru + + FireCrystal-Icon.gif + +Main Craft: Smithing - (69) +Sub Craft(s): Leathercraft - (53), Woodworking - (4) + + + Fire Crystal + Copper Ingot + Darksteel Ingot + Iron Ingot + Tama-Hagane + Ash Lumber + Cotton Thread + Raptor Skin + Dweomer Steel Ingot + + NQ: Darksteel Buckler + + HQ1: Spiked Buckler + + FireCrystal-Icon.gif + +Main Craft: Smithing - (70) +Sub Craft(s): Clothcraft - (34) + + + Fire Crystal + Darksteel Sheet x2 + Steel Ingot + Walnut Lumber + + NQ: Gust Tongue + + HQ1: Gust Tongue +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (70) + + + Earth Crystal + Darksteel Sheet + Flamberge + Tin Ingot + + NQ: Hien + + HQ1: Hien +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (70) + + + Fire Crystal + Darksteel Ingot + Lizard Skin + + NQ: Odorous Knife + + HQ1: Odorous Knife +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (70) +Sub Craft(s): Woodworking - (25) + + + Fire Crystal + Darksteel Ingot + Magnolia Lumber + White Steel + + NQ: Erlking's Sword + + FireCrystal-Icon.gif + +Main Craft: Smithing - (70) + + + Fire Crystal + Dweomer Steel Ingot + Peiste Leather + Darksteel Ingot + + NQ: Hien + + FireCrystal-Icon.gif + +Main Craft: Smithing - (70) + + + Fire Crystal + Smithing Kit 70 + + +Artisan (71-80) +Synthesis Information +Yield Requirements Ingredients + + NQ: Falsiam Vase + + FireCrystal-Icon.gif + +Main Craft: Smithing - (71) + + + Fire Crystal + Darksteel Ingot + Mythril Ingot + Tin Ingot + + NQ: Ram-Dao + + HQ1: Ram-Dao +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (71) +Sub Craft(s): Woodworking - (44), Leathercraft - (30) + + + Fire Crystal + Mahogany Lumber + Mythril Ingot x6 + Raptor Skin + + NQ: Schwert + + HQ1: Schwert +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (71) +Sub Craft(s): Alchemy - (56), Goldsmithing - (38) + + + Fire Crystal + Cermet Chunk + Moonstone + Mythril Ingot + Steel Ingot x2 + + NQ: Darksteel Cap + + HQ1: Darksteel Cap +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (72) +Sub Craft(s): Leathercraft - (38) + + + Earth Crystal + Darksteel Sheet + Tiger Leather x2 + + NQ: Darksteel Kris + + HQ1: Darksteel Kris +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (72) +Sub Craft(s): Goldsmithing - (15) + + + Fire Crystal + Darksteel Ingot + Painite + Steel Ingot + + NQ: Kilij + + HQ1: Kilij +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (72) +Sub Craft(s): Goldsmithing - (49), Woodworking - (41) + + + Fire Crystal + Ebony Lumber + Gold Ingot x2 + Lapis Lazuli + Marid Leather + Mythril Ingot x2 + Turquoise + + NQ: Darksteel Pick + + HQ1: Darksteel Pick +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (73) +Sub Craft(s): Woodworking - (8) + + + Fire Crystal + Darksteel Ingot + Elm Lumber + + NQ: Darksteel Mittens + + HQ1: Darksteel Mittens +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (73) +Sub Craft(s): Leathercraft - (41) + + + Earth Crystal + Darksteel Sheet + Tiger Leather + + NQ: Muketsu + + HQ1: Muketsu +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (73) +Sub Craft(s): Leathercraft - (41) + + + Fire Crystal + Sakurafubuki + Steel Ingot + + NQ: Armor Plate III x12 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (73) +Sub Craft(s): Alchemy - (??) + + + Fire Crystal + Adaman Sheet x2 + Carbon Fiber + Dark Adaman Sheet + Imperial Cermet + + NQ: Dark Bronze Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (74) + + + Fire Crystal + Darksteel Ore + Copper Ore x2 + Tin Ore + + NQ: Darksteel Subligar + + HQ1: Darksteel Subligar +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (74) +Sub Craft(s): Leathercraft - (42) + + + Earth Crystal + Darksteel Sheet + Linen Cloth + Tiger Leather + + NQ: Kabutowari + + HQ1: Kabutowari +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (74) +Sub Craft(s): Leathercraft - (40). Woodworking - (11) + + + Fire Crystal + Copper Ingot + Cotton Thread + Darksteel Ingot + Elm Lumber + Raptor Skin + Tama-Hagane + + NQ: Kheten + + HQ1: Kheten +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (75) +Sub Craft(s): Woodworking - (24) + + + Fire Crystal + Darksteel Ingot + Rosewood Lumber + Steel Ingot x2 + + NQ: Dark Bronze Sheet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (75) + + + Fire Crystal + Dark Bronze Ingot + + NQ: Dark Bronze Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (75) +Key Item: Sheeting + + + Fire Crystal + Dark Bronze Ingot x6 + Workshop Anvil + + NQ: Darksteel Leggings + + HQ1: Darksteel Leggings +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (75) +Sub Craft(s): Leathercraft - (42) + + + Earth Crystal + Darksteel Sheet x2 + Tiger Leather x2 + + NQ: Darksteel Voulge + + HQ1: Darksteel Voulge +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (76) +Sub Craft(s): Goldsmithing - (51). Woodworking - (47) + + + Fire Crystal + Brass Ingot + Darksteel Ingot x2 + Ebony Lumber + Gold Ingot + + NQ: Durium Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (76) + + + Fire Crystal + Darksteel Ore + Durium Ore x3 + + NQ: Keppu + + HQ1: Keppu +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (76) + + + Earth Crystal + Darksteel Sheet + Muketsu + Tin Ingot + + NQ: Mikazuki + + HQ1: Mikazuki +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (76) +Sub Craft(s): Leathercraft - (7). Woodworking - (4) + + + Fire Crystal + Ash Lumber + Copper Ingot + Cotton Thread + Lizard Skin + Mythril Ingot x3 + Tama-Hagane + + NQ: Keppu + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (76) + + + Earth Crystal + Smithing Kit 76 + + NQ: Bastard Sword + + HQ1: Bastard Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (77) + + + Fire Crystal + Darksteel Ingot x3 + Ram Leather + + NQ: Hexagun + + HQ1: Hexagun +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (77) +Sub Craft(s): Goldsmithing - (45), Woodworking - (43) + + + Fire Crystal + Bloodwood Lumber + Darksteel Ingot + Gold Ingot + Mercury + Steel Ingot + Walnut Lumber + + NQ: Darksteel Rod + + HQ1: Darksteel Rod +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (77) + + + Fire Crystal + Darksteel Ingot x2 + Steel Ingot + + NQ: Durium Sheet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (77) + + + Fire Crystal + Durium Ingot + + NQ: Durium Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (77) +Key Item: Sheeting + + + Fire Crystal + Durium Ingot x6 + Workshop Anvil + + NQ: Darksteel Harness + + HQ1: Darksteel Harness +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (78) +Sub Craft(s): Leathercraft - (43) + + + Earth Crystal + Darksteel Sheet x3 + Tiger Leather x2 + + NQ: Darksteel Scythe + + HQ1: Darksteel Scythe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (78) +Sub Craft(s): Woodworking - (19) + + + Fire Crystal + Darksteel Ingot x3 + Grass Cloth + Yew Lumber + + NQ: Regiment Kheten + + FireCrystal-Icon.gif + +Main Craft: Smithing - (78) +Key Item: Metal Ensorcellment + + + Fire Crystal + Lambent Fire Cell + Lambent Wind Cell + Kheten + + NQ: Armor Plate IV x12 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (78) +Sub Craft(s): Alchemy - (??) + + + Fire Crystal + Adaman Sheet + Carbon Fiber + Dark Adaman Sheet + Imperial Cermet + Titanium Sheet + + NQ: Matchlock Gun + + HQ1: Matchlock Gun +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (79) +Sub Craft(s): Woodworking - (41), Goldsmithing - (29) + + + Fire Crystal + Brass Ingot + Darksteel Ingot + Steel Ingot + Walnut Lumber + + NQ: Darksteel Falx + + HQ1: Darksteel Falx +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (79) +Sub Craft(s): Goldsmithing - (49), Woodworking - (42) + + + Fire Crystal + Black Pearl + Buffalo Leather + Darksteel Ingot x3 + Ebony Lumber + Mythril Ingot + + NQ: Karimata Arrowheads x6 + + HQ1: Karimata Arrowheads x8 + HQ2: Karimata Arrowheads x10 + HQ3: Karimata Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (79) + + + Wind Crystal + Iron Ingot + Tama-Hagane + + NQ: Dark Amood + + HQ1: Dark Amood +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (80) +Sub Craft(s): Goldsmithing - (41), Woodworking - (37) + + + Fire Crystal + Darksteel Ingot x2 + Ebony Lumber + Garnet + Moblumin Ingot + Silver Ingot + Steel Ingot x2 + + NQ: Holy Breastplate + + HQ1: Divine Breastplate + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (80) +Sub Craft(s): Leathercraft - (37), Goldsmithing - (34) + + + Earth Crystal + Blessed Mythril Sheet x3 + Darksteel Sheet + Ram Leather x2 + Sheep Leather + Silver Ingot + + NQ: Katzbalger + + HQ1: Katzbalger +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (80) + + + Fire Crystal + Broadsword + Darksteel Ingot + Raptor Skin + + NQ: Durium Chain + + HQ1: Durium Chain x2 + HQ2: Durium Chain x3 + HQ3: Durium Chain x4 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (80) + + + Fire Crystal + Durium Ingot x2 + + NQ: Durium Chain x3 + + HQ1: Durium Chain x6 + HQ2: Durium Chain x9 + HQ3: Durium Chain x12 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (80) +Key Item: Chainwork + + + Fire Crystal + Durium Ingot x6 + Mandrel + + NQ: Katzbalger + + FireCrystal-Icon.gif + +Main Craft: Smithing - (80) + + + Fire Crystal + Smithing Kit 80 + + +Adept (81-90) +Synthesis Information +Yield Requirements Ingredients + + NQ: Darksteel Cuisses + + HQ1: Darksteel Cuisses +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (81) + + + Fire Crystal + Darksteel Sheet x2 + Ram Leather + + NQ: Darksteel Gorget + + HQ1: Darksteel Gorget +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (81) + + + Fire Crystal + Darksteel Sheet + Ram Leather + + NQ: Zweihander + + HQ1: Zweihander +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (81) +Sub Craft(s): Leathercraft - (21), Woodworking - (18) + + + Fire Crystal + Chestnut Lumber + Darksteel Ingot x4 + Mythril Ingot + Ram Leather + + NQ: Darksteel Armet + + HQ1: Darksteel Armet +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (82) +Sub Craft(s): Goldsmithing - (51) + + + Fire Crystal + Copper Ingot + Darksteel Sheet x2 + Gold Ingot + Mercury + Sheep Leather + + NQ: Darksteel Kilij + + HQ1: Darksteel Kilij +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (82) +Sub Craft(s): Goldsmithing - (53), Woodworking - (41) + + + Fire Crystal + Darksteel Ingot x2 + Ebony Lumber + Garnet + Marid Leather + Platinum Ingot x2 + Ruby + + NQ: Darksteel Maul + + HQ1: Darksteel Maul +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (82) + + + Fire Crystal + Darksteel Ingot x2 + Mahogany Lumber + + NQ: Troll Bronze Sheet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (82) + + + Fire Crystal + Troll Bronze Ingot + + NQ: Darksteel Nodowa + + HQ1: Darksteel Nodowa +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (83) + + + Earth Crystal + Darksteel Sheet + Silk Thread + + NQ: Darksteel Tabar + + HQ1: Darksteel Tabar +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (83) +Sub Craft(s): Woodworking - (23) + + + Fire Crystal + Darksteel Ingot x3 + Oak Lumber + + NQ: Mythril Heart + + HQ1: Mythril Heart +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (83) + + + Fire Crystal + Lockheart + Mythril Ingot + + NQ: Thick Sollerets + + HQ1: Thick Sollerets +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (83) + + + Earth Crystal + Darksteel Sollerets + Steel Sheet + + NQ: Windurstian Scythe + + HQ1: Federation Scythe + + FireCrystal-Icon.gif + +Main Craft: Smithing - (83) + + + Fire Crystal + Darksteel Ingot + Mercenary Captain's Scythe + + NQ: Darksteel Sabatons + + HQ1: Darksteel Sabatons +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (84) +Sub Craft(s): Goldsmithing - (54) + + + Fire Crystal + Darksteel Sheet x3 + Gold Ingot + Mercury + Ram Leather x2 + + NQ: Kotetsu +1 + + HQ1: Shinkotetsu + + FireCrystal-Icon.gif + +Main Craft: Smithing - (84) +Sub Craft(s): Woodworking - (15) + + + Fire Crystal + Iron Ingot + Kotetsu + Rosewood Lumber + Silver Thread + + NQ: Thick Mufflers + + HQ1: Thick Mufflers +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (84) + + + Earth Crystal + Darksteel Mufflers + Steel Sheet + + NQ: Fuma Shuriken x33 + + HQ1: Fuma Shuriken x66 + HQ2: Fuma Shuriken x99 + HQ3: Fuma Shuriken x99 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (84) +Sub Craft(s): Goldsmithing - (42) + + + Wind Crystal + Gold Ingot + Mercury + Mythril Sheet + Tama-Hagane + + NQ: Thick Mufflers + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (84) + + + Earth Crystal + Smithing Kit 84 + + NQ: Flanged Mace + + HQ1: Flanged Mace +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (85) +Sub Craft(s): Goldsmithing - (37), Woodworking - (7) + + + Fire Crystal + Iron Ingot x2 + Darksteel Ingot + Mahogany Lumber + Gold Ingot + Smilodon Leather + + NQ: Adaman Sheet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (85) + + + Fire Crystal + Adaman Ingot + + NQ: Adaman Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (85) +Key Item: Sheeting + + + Fire Crystal + Adaman Ingot x6 + Workshop Anvil + + NQ: Musketeer Gun +1 + + HQ1: Musketeer Gun +2 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (85) + + + Fire Crystal + Darksteel Ingot + Musketeer Gun + + NQ: Dark Adaman Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (86) + + + Fire Crystal + Adaman Ore + Darksteel Ore x2 + Iron Ore + + NQ: Darksteel Gauntlets + + HQ1: Darksteel Gauntlets +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (86) +Sub Craft(s): Goldsmithing - (45) + + + Fire Crystal + Darksteel Sheet x2 + Gold Ingot + Leather Gloves x2 + Mercury + + NQ: Thick Breeches + + HQ1: Thick Breeches +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (86) + + + Earth Crystal + Darksteel Breeches + Mythril Chain + + NQ: Celata + + HQ1: Celata +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (87) + + + Fire Crystal + Copper Ingot + Darksteel Chain + Darksteel Sheet + Sheep Leather + Steel Sheet + + NQ: Darksteel Cuirass + + HQ1: Darksteel Cuirass +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (87) +Sub Craft(s): Goldsmithing - (49) + + + Fire Crystal + Darksteel Sheet x4 + Gold Ingot + Mercury + Ram Leather x2 + + NQ: Izayoi + + HQ1: Izayoi +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (87) +Sub Craft(s): Goldsmithing - (56), Woodworking - (11) + + + Fire Crystal + Aht Urhgan Brass Ingot + Copper Ingot + Elm Lumber + Imperial Wootz Ingot + Manta Leather + Rainbow Thread + + NQ: Rising Sun + + HQ1: Rising Sun +1 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (87) +Sub Craft(s): Goldsmithing - (51) + + + Wind Crystal + Gold Ingot + Mercury + Tama-Hagane + + NQ: Colossal Axe + + HQ1: Colossal Axe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (88) + + + Fire Crystal + Gigant Axe + Steel Ingot + + NQ: Hayabusa + + HQ1: Hayabusa +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (88) +Sub Craft(s): Goldsmithing - (55) + + + Fire Crystal + Imperial Wootz Ingot + Manta Leather + Scintillant Ingot + + NQ: Heavy Darksteel Axe + + HQ1: Massive Darksteel Axe + + FireCrystal-Icon.gif + +Main Craft: Smithing - (88) +Sub Craft(s): Woodworking - (31) + + + Fire Crystal + Darksteel Ingot x3 + Mahogany Lumber + + NQ: Kanesada +1 + + HQ1: Shinkanesada + + FireCrystal-Icon.gif + +Main Craft: Smithing - (88) +Sub Craft(s): Woodworking - (15) + + + Fire Crystal + Kanesada + Rosewood Lumber + Silver Thread + Steel Ingot + + NQ: Dark Adaman Sheet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (89) + + + Fire Crystal + Dark Adaman Ingot + + NQ: Dark Adaman Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (89) +Key Item: Sheeting + + + Fire Crystal + Dark Adaman Ingot x6 + Workshop Anvil + + NQ: Hauberk + + HQ1: Hauberk +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (89) +Sub Craft(s): Clothcraft - (38) + + + Earth Crystal + Darksteel Chain + Haubergeon + Silk Cloth + Steel Sheet + Velvet Cloth + + NQ: Hellfire + + HQ1: Hellfire +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (89) +Sub Craft(s): Goldsmithing - (54), Woodworking - (>34) + + + Fire Crystal + Brass Ingot + Darksteel Ingot x2 + Gold Ingot + Walnut Lumber + + NQ: Zanbato + + HQ1: Zanbato +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (89) +Sub Craft(s): Leathercraft - (40), Woodworking - (4) + + + Fire Crystal + Ash Lumber + Copper Ingot + Cotton Thread + Darksteel Ingot x2 + Iron Ingot + Raptor Skin + Tama-Hagane + + NQ: Dark Adaman Bolt Heads x6 + + HQ1: Dark Adaman Bolt Heads x8 + HQ2: Dark Adaman Bolt Heads x10 + HQ3: Dark Adaman Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (89) + + + Wind Crystal + Dark Adaman Ingot + + NQ: Adaman Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (90) + + + Fire Crystal + Adaman Ore x3 + Iron Ore + + NQ: Flamberge + + HQ1: Flamberge +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (90) +Sub Craft(s): Woodworking - (44), Leathercraft - (23) + + + Fire Crystal + Cockatrice Skin + Darksteel Ingot x6 + Mahogany Lumber + + NQ: General's Shield + + HQ1: Admiral's Shield + + FireCrystal-Icon.gif + +Main Craft: Smithing - (90) +Sub Craft(s): Goldsmithing - (58), Leathercraft - (4) + + + Fire Crystal + Darksteel Sheet x3 + Gold Ingot + Mercury + Mythril Sheet + Platinum Sheet + Sheep Leather + + NQ: Frigid Core + + FireCrystal-Icon.gif + +Main Craft: Smithing - (90) +Key Item: Metal Ensorcellment + + + Fire Crystal + Adaman Ore x3 + Dark Anima + Ice Anima x2 + Iron Ore + + NQ: Inferno Core + + FireCrystal-Icon.gif + +Main Craft: Smithing - (90) +Key Item: Metal Ensorcellment + + + Fire Crystal + Adaman Ore x3 + Dark Anima + Fire Anima x2 + Iron Ore + + NQ: Luminous Core + + FireCrystal-Icon.gif + +Main Craft: Smithing - (90) +Key Item: Metal Ensorcellment + + + Fire Crystal + Adaman Ore x3 + Dark Anima + Lightning Anima x2 + Iron Ore + + NQ: Spirit Core + + FireCrystal-Icon.gif + +Main Craft: Smithing - (90) +Key Item: Metal Ensorcellment + + + Fire Crystal + Adaman Ore x3 + Dark Anima + Earth Anima x2 + Iron Ore + + NQ: Midrium Bolt Heads x6 + + HQ1: Midrium Bolt Heads x8 + HQ2: Midrium Bolt Heads x10 + HQ3: Midrium Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (90) + + + Wind Crystal + Midrium Ingot + + NQ: Kunwu Iron + + FireCrystal-Icon.gif + +Main Craft: Smithing - (90) + + + Fire Crystal + Darksteel Ore + Kunwu Ore x3 + + +Veteran (91-100) +Synthesis Information +Yield Requirements Ingredients + + NQ: Adaman Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (91) + + + Fire Crystal + Adaman Nugget x6 + Adaman Ore + + NQ: Adaman Sainti + + HQ1: Gem Sainti + + FireCrystal-Icon.gif + +Main Craft: Smithing - (91) +Sub Craft(s): Goldsmithing - (45), Woodworking - (42) + + + Fire Crystal + Adaman Ingot + Brass Ingot + Ebony Lumber + Gold Ingot x2 + Mercury + + NQ: Gully + + HQ1: Gully +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (91) + + + Fire Crystal + Adaman Ingot + Mahogany Lumber + + NQ: Jadagna + + HQ1: Jadagna +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (91) + + + Fire Crystal + Jadagna -1 + Troll Bronze Ingot x2 + + NQ: Koenigs Knuckles + + HQ1: Kaiser Knuckles + + FireCrystal-Icon.gif + +Main Craft: Smithing - (91) +Sub Craft(s): Goldsmithing - (42) + + + Fire Crystal + Darksteel Sheet + Diamond Knuckles + Gold Ingot + Mercury + + NQ: Molybdenum Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (91) + + + Fire Crystal + Iron Ore x3 + Molybdenum Ore + + NQ: Ebon Leggings + + FireCrystal-Icon.gif + +Main Craft: Smithing - (91) +Sub Craft(s): Goldsmithing - (40), Leathercraft - (30) + + + Fire Crystal + Drk. Adm. Sheet x2 + Wool Thread + Ram Leather + Scintillant Ingot + Iridium Ingot + + NQ: Bewitched Sollerets + + HQ1:Voodoo Sollerets + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (91) + + + Earth Crystal + Cursed Sollerets -1 + Eschite Ore + + NQ: Vexed Sune-Ate + + HQ1:Jinxed Sune-Ate + + FireCrystal-Icon.gif + +Main Craft: Smithing - (91) + + + Fire Crystal + Hexed Sune-Ate -1 + Eschite Ore + + NQ: Gully + + FireCrystal-Icon.gif + +Main Craft: Smithing - (91) + + + Fire Crystal + Smithing Kit 91 + + NQ: Adaman Scales + + WindCrystal-Icon.gif + +Main Craft: Smithing - (92) + + + Wind Crystal + Adaman Sheet + + NQ: Cursed Breeches + + HQ1: Cursed Breeches -1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (92) +Sub Craft(s): Leathercraft - (44) + + + Earth Crystal + Adaman Chain + Darksteel Chain + Linen Cloth + Tiger Leather x2 + + NQ: Hachiman Jinpachi + + HQ1: Hachiman Jinpachi +1 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (92) +Sub Craft(s): Clothcraft - (45) + + + Wind Crystal + Adaman Chain + Kejusu Satin + Silk Cloth + Steel Sheet + Urushi + + NQ: Misericorde + + HQ1: Misericorde +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (92) + + + Fire Crystal + Adaman Ingot + Darksteel Ingot + + NQ: Molybdenum Sheet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (92) + + + Fire Crystal + Molybdenum Ingot + + NQ: Adaman Bolt Heads x6 + + HQ1: Adaman Bolt Heads x8 + HQ2: Adaman Bolt Heads x10 + HQ3: Adaman Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (92) + + + Wind Crystal + Adaman Ingot + + NQ: Bewitched Mufflers + + HQ1:Voodoo Mufflers + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (92) + + + Earth Crystal + Cursed Mufflers -1 + Eschite Ore + + NQ: Black Cuisses + + HQ1: Onyx Cuisses + + FireCrystal-Icon.gif + +Main Craft: Smithing - (93) +Sub Craft(s): Leathercraft - (47) + + + Fire Crystal + Darksteel Sheet + Kunwu Sheet + Tiger Leather x2 + + NQ: Cursed Sollerets + + HQ1: Cursed Sollerets -1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (93) +Sub Craft(s): Goldsmithing - (23) + + + Earth Crystal + Adaman Chain + Adaman Sheet + Brass Ingot + Thick Sollerets + + NQ: Death Scythe + + HQ1: Death Scythe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (93) +Sub Craft(s): Alchemy - (59), Woodworking - (19) + + + Fire Crystal + Darksteel Ingot x3 + Fiend Blood + Grass Cloth + Steel Ingot + Yew Lumber + + NQ: Hachiman Kote + + HQ1: Hachiman Kote +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (93) +Sub Craft(s): Leathercraft - (46) + + + Fire Crystal + Darksteel Chain x2 + Darksteel Sheet x2 + Gold Ingot + Tiger Leather + Viridian Urushi + + NQ: Nadziak + + HQ1: Nadziak +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (93) +Sub Craft(s): Goldsmithing - (49), Woodworking - (13) + + + Fire Crystal + Adaman Ingot + Gold Ingot + Mercury + Oak Lumber + + NQ: Yasha Jinpachi + + HQ1: Yasha Jinpachi +1 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (93) +Sub Craft(s): Clothcraft - (58) + + + Wind Crystal + Darksteel Chain + Darksteel Sheet + Kejusu Satin x2 + + NQ: Ebon Gauntlets + + FireCrystal-Icon.gif + +Main Craft: Smithing - (93) +Sub Craft(s): Goldsmithing - (40), Leathercraft - (25) + + + Fire Crystal + Drk. Adm. Sheet x2 + Studded Gloves + Scintillant Ingot + Iridium Ingot + + NQ: Midrium Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (93) + + + Fire Crystal + Midrium Ore x4 + + NQ: Kunwu Iron Sheet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (93Verification Needed) + + + Fire Crystal + Kunwu Iron + + NQ: Ra'Kaznar Arrowheads x6 + + HQ1: Ra'Kaznar Arrowheads x8 + HQ2: Ra'Kaznar Arrowheads x10 + HQ3: Ra'Kaznar Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (93) + + + Wind Crystal + Steel Ingot + Ra'Kaznar Ingot + + NQ: Bewitched Breeches + + HQ1:Voodoo Breeches + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (93) + + + Earth Crystal + Cursed Breeches -1 + Eschite Ore + + NQ: Barone Manopolas + + HQ1: Conte Manopolas + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (94) +Sub Craft(s): Goldsmithing - (51), Leathercraft (49) + + + Earth Crystal + Adaman Sheet x2 + Buffalo Leather + Gold Ingot + Mercury + Scarlet Linen x2 + + NQ: Cursed Mufflers + + HQ1: Cursed Mufflers -1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (94) +Sub Craft(s): Goldsmithing - (23) + + + Earth Crystal + Adaman Sheet + Brass Ingot + Thick Mufflers + + NQ: Adaman Chain + + HQ1: Adaman Chain x2 + HQ2: Adaman Chain x3 + HQ3: Adaman Chain x4 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (94) + + + Earth Crystal + Adaman Ingot x2 + + NQ: Adaman Chain x3 + + HQ1: Adaman Chain x6 + HQ2: Adaman Chain x9 + HQ3: Adaman Chain x12 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (94) +Key Item: Chainwork + + + Earth Crystal + Adaman Ingot x6 + Mandrel + + NQ: Anelace + + HQ1: Anelace +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (94) + + + Fire Crystal + Adaman Ingot x2 + Cockatrice Skin + Gold Ingot + Mercury + + NQ: Black Sollerets + + HQ1: Onyx Sollerets + + FireCrystal-Icon.gif + +Main Craft: Smithing - (94) + + + Fire Crystal + Darksteel Sheet x2 + Kunwu Sheet + Tiger Ledelsens + + NQ: Ponderous Gully + + FireCrystal-Icon.gif + +Main Craft: Smithing - (94) + + + Fire Crystal + Spirit Core + Gully + + NQ: Tzustes Knife + + HQ1: Tzustes Knife +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (94) + + + Fire Crystal + Midrium Ingot + Urunday Lumber + + NQ: Bewitched Celata + + HQ1:Voodoo Celata + + FireCrystal-Icon.gif + +Main Craft: Smithing - (94) + + + Fire Crystal + Cursed Celata -1 + Eschite Ore + + NQ: Vexed Somen + + HQ1:Jinxed Somen + + FireCrystal-Icon.gif + +Main Craft: Smithing - (94) + + + Fire Crystal + Hexed Somen -1 + Eschite Ore + + NQ: Anelace + + FireCrystal-Icon.gif + +Main Craft: Smithing - (94) + + + Fire Crystal + Smithing Kit 94 + + NQ: Ritter Shield + + HQ1: Ritter Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (95) +Sub Craft(s): Goldsmithing - (18) + + + Earth Crystal + Adaman Sheet x2 + Ash Lumber + Brass Sheet + Sheep Leather + + NQ: Barone Corazza + + HQ1: Conte Corazza + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (95) +Sub Craft(s): Goldsmithing - (60), Leathercraft - (35) + + + Earth Crystal + Buffalo Leather + Darksteel Sheet + Gold Ingot + Mercury + Molybdenum Sheet + Orichalcum Chain + Scarlet Linen + Water Bead + + NQ: Bhuj + + HQ1: Bhuj +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (95) +Sub Craft(s): Goldsmithing - (44), Woodworking - (43) + + + Fire Crystal + Darksteel Ingot x2 + Ebony Lumber + Gold Ingot + Mercury + Steel Ingot + + NQ: Black Gadlings + + HQ1: Onyx Gadlings + + FireCrystal-Icon.gif + +Main Craft: Smithing - (95) + + + Fire Crystal + Darksteel Sheet + Kunwu Sheet + Tiger Gloves + + NQ: Cursed Celata + + HQ1: Cursed Celata -1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (95) +Sub Craft(s): Goldsmithing - (26) + + + Fire Crystal + Adaman Chain + Adaman Sheet + Brass Sheet + Copper Ingot + Sheep Leather + + NQ: Hachiman Sune-Ate + + HQ1: Hachiman Sune-Ate +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (95) +Sub Craft(s): Goldsmithing - (52), Clothcraft - (41) + + + Fire Crystal + Adaman Ingot + Darksteel Sheet x2 + Gold Ingot + Mercury + Rainbow Thread + Tiger Leather + Velvet Cloth + + NQ: Adaman Kilij + + HQ1: Adaman Kilij +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (95) +Sub Craft(s): Goldsmithing - (60+), Woodworking - (41) + + + Fire Crystal + Adaman Ingot x2 + Ebony Lumber + Aquamarine + Deathstone + Marid Leather + Scintillant Ingot x2 + + NQ: Ebon Armet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (95) +Sub Craft(s): Goldsmithing - (40) + + + Fire Crystal + Drk. Adm. Sheet x2 + Scintillant Ingot x2 + Iridium Ingot + + NQ: Bihkah Sword + + HQ1: Bihkah Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (95) + + + Fire Crystal + Peiste Leather + Midrium Ingot x2 + + NQ: Butznar Shield + + HQ1: Butznar Shield +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (95) + + + Fire Crystal + Darksteel Sheet + Urunday Lumber + Midrium Sheet x2 + + NQ: Titanium Sheet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (95) + + + Fire Crystal + Titanium Ingot + + NQ: Titanium Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (95) +Key Item: Sheeting + + + Fire Crystal + Titanium Ingot x6 + Workshop Anvil + + NQ: Bewitched Hauberk + + HQ1:Voodoo Hauberk + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (95) + + + Earth Crystal + Cursed Hauberk -1 + Eschite Ore + + NQ: Vexed Domaru + + HQ1:Jinxed Domaru + + FireCrystal-Icon.gif + +Main Craft: Smithing - (95) + + + Fire Crystal + Hexed Domaru -1 + Eschite Ore + + NQ: Black Sallet + + HQ1: Onyx Sallet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (96) +Sub Craft(s): Goldsmithing - (55) + + + Fire Crystal + Copper Ingot + Darksteel Sheet + Kunwu Sheet + Ocl. Ingot + Sheep Leather + + NQ: Cursed Hauberk + + HQ1: Cursed Hauberk -1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (96) +Sub Craft(s): Clothcraft - (48), Goldsmithing - (30) + + + Earth Crystal + Adaman Chain + Adaman Sheet + Brass Ingot + Gold Thread + Hauberk + Rainbow Cloth + Sheep Leather + Southern Pearl + + NQ: Hachiman Domaru + + HQ1: Hachiman Domaru +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (96) +Sub Craft(s): Leathercraft - (38) + + + Fire Crystal + Adaman Sheet + Darksteel Scales x2 + Darksteel Chain x2 + Gold Thread + Tiger Leather + Viridian Urushi + + NQ: Januwiyah + + HQ1: Januwiyah +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (96) + + + Earth Crystal + Januwiyah -1 + Troll Bronze Sheet x2 + + NQ: Scepter + + HQ1: Scepter +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (96) + + + Fire Crystal + Adaman Ingot x2 + Darksteel Ingot + Gold Ingot + Mercury + + NQ: Nagan + + HQ1: Nagan +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (97) +Sub Craft(s): Leathercraft - (48) Woodworking - (44) + + + Fire Crystal + Adaman Ingot x6 + Mahogany Lumber + Gold Ingot + Wyvern Skin + + NQ: Uruz Blade + + HQ1: Uruz Blade +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (96) + + + Fire Crystal + Lizard Skin + Midrium Ingot x4 + Urunday Lumber + Twitherym Scale + + NQ: Nohkux Axe + + HQ1: Nohkux Axe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (96) + + + Fire Crystal + Midrium Ingot x2 + Rhodium Ingot + Urunday Lumber + + NQ: Midrium Sheet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (96) + + + Fire Crystal + Midrium Ingot + + NQ: Midrium Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (96) +Key Item: Sheeting + + + Fire Crystal + Midrium Ingot x6 + Workshop Anvil + + NQ: Enju + + HQ1: Enju +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (96) +Sub Craft(s): Woodworking - (??), Leathercraft - (??) + + + Fire Crystal + Tama-Hagane + Ancient Lumber + Cotton Thread + Raptor Skin + Midrium Ingot + Mantid Carapace + + NQ: Tomonari + + HQ1: Tomonari +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (96) +Sub Craft(s): Leathercraft - (??) + + + Fire Crystal + Tama-Hagane + Ancient Lumber + Manta Leather + Scintillant Ingot + Wamoura Silk + Midrium Ingot x2 + Mantid Carapace + + NQ: Aalak' Axe + + HQ1: Aalak' Axe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (96) +Sub Craft(s): Woodworking - (60) + + + Fire Crystal + Darksteel Ingot x2 + Midrium Ingot + Urunday Lumber + + NQ: Adaman Cuisses + + HQ1: Gem Cuisses + + FireCrystal-Icon.gif + +Main Craft: Smithing - (97) +Sub Craft(s): Goldsmithing - (58) + + + Fire Crystal + Adaman Sheet + Darksteel Sheet + Gold Ingot + Mercury + Tiger Leather + + NQ: Relic Steel + + FireCrystal-Icon.gif + +Main Craft: Smithing - (97) + + + Fire Crystal + Relic Iron x2 + + NQ: Plastron + + HQ1: Plastron +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (97) +Sub Craft(s): Goldsmithing - (59), Leathercraft - (39) + + + Fire Crystal + Darksteel Sheet x2 + Darksteel Chain + Orichalcum Ingot + Tiger Leather x2 + Kunwu Iron + Kunwu Sheet + + NQ: Pealing Anelace + + FireCrystal-Icon.gif + +Main Craft: Smithing - (97) + + + Fire Crystal + Luminous Core + Anelace + + NQ: Ebon Hose + + FireCrystal-Icon.gif + +Main Craft: Smithing - (97) +Sub Craft(s): Goldsmithing - (60), Leathercraft - (30) + + + Fire Crystal + Drk. Adm. Sheet x2 + Ram Leather x2 + Iridium Ingot + Scintillant Ingot + + NQ: Bandeiras Gun + + HQ1: Bandeiras Gun +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (97) +Sub Craft(s): Goldsmithing - (??), Woodworking - (??) + + + Fire Crystal + Brass Ingot + Walnut Lumber + Midrium Ingot + Rhodium Ingot + + NQ: Hatzoaar Sword + + HQ1: Hatzoaar Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (97) + + + Fire Crystal + Peiste Leather + Midrium Ingot x4 + Urunday Lumber + + NQ: Damascus Bolt Heads x6 + + HQ1: Damascus Bolt Heads x8 + HQ2: Damascus Bolt Heads x10 + HQ3: Damascus Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (97) + + + Wind Crystal + Damascus Ingot + + NQ: Gefechtdiechlings + + HQ1: Wildheitdiechlings + + FireCrystal-Icon.gif + +Main Craft: Smithing - (97) +Sub Craft(s): Leathercraft - (??) + + + Fire Crystal + Buffalo Leather + Cerberus Leather + Largantua's Shard + Jester Malatrix's Shard + + NQ: Buzdygan + + HQ1: Buzdygan +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (98) +Sub Craft(s): Goldsmithing - (49~) + + + Fire Crystal + Adaman Ingot x3 + Gold Ingot + Mercury + + NQ: Manoples + + HQ1: Manoples +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (98) + + + Fire Crystal + Adaman Ingot x2 + Darksteel Sheet + Carbon Fiber + Scintillant Ingot + + NQ: Adaman Barbuta + + HQ1: Gem Barbuta + + FireCrystal-Icon.gif + +Main Craft: Smithing - (98) +Sub Craft(s): Goldsmithing - (60) + + + Fire Crystal + Adaman Sheet + Darksteel Sheet + Gold Ingot + Mercury + Sheep Leather + Copper Ingot + + NQ: Kaskara + + HQ1: Kaskara +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (98) + + + Fire Crystal + Adaman Ingot x3 + Bugard Leather + + NQ: Cursed Cuishes + + HQ1: Cursed Cuishes -1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (98) + + + Fire Crystal + Orichalcum Sheet + Drk. Adm. Sheet + Marid Leather + Scintillant Ingot + Rubber Chausses + + NQ: Iga Shuriken x33 + + HQ1: Iga Shuriken x66 + HQ2: Iga Shuriken x99 + HQ3: Iga Shuriken x99 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (98) + + + Wind Crystal + Tama-Hagane + Gold Ingot + Palladian Brass Sheet + Mercury + + NQ: Thokcha Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (98) + + + Fire Crystal + Thokcha Ore x4 + + NQ: Aak'ab Scythe + + HQ1: Aak'ab Scythe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (98) +Sub Craft(s): Alchemy - (??), Woodworking - (??) + + + Fire Crystal + Darksteel Ingot x2 + Mohbwa Cloth + Rhodium Ingot x2 + Urunday Lumber + Umbril Ooze + + NQ: Gefechtschaller + + HQ1: Wildheitschaller + + FireCrystal-Icon.gif + +Main Craft: Smithing - (98) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Orichalcum Ingot + Mercury + Cerberus Leather + Scintillant Ingot + Umbril Ooze + Largantua's Shard + Jester Malatrix's Shard + + NQ: Dashing Subligar + + LightCrystal-Icon.gif + +Main Craft: Smithing - (98) + + + Light Crystal + Stinky Subligar + + NQ: Tabarzin + + HQ1: Tabarzin +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (99) +Sub Craft(s): Goldsmithing - (52), Woodworking - (33) + + + Fire Crystal + Adaman Ingot x2 + Gold Ingot + Darksteel Ingot + Mahogany Lumber + Mercury + + NQ: Wootz Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (99) + + + Fire Crystal + Wootz Ore + Rosewood Lumber + Steel Ingot + + NQ: Toporok + + HQ1: Toporok +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (99) +Sub Craft(s): Goldsmithing - (51), Woodworking - (48) + + + Fire Crystal + Adaman Ingot x3 + Ebony Lumber + Gold Ingot + Painite x2 + Mercury + + NQ: Imperial Wootz Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (99) + + + Fire Crystal + Iron Ore + Khroma Ore x2 + Wootz Ore + + NQ: Cursed Helm + + HQ1: Cursed Helm -1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (99) +Sub Craft(s): Goldsmithing - (60) + + + Fire Crystal + Copper Ingot + Orichalcum Sheet + Karakul Leather + Drk. Adm. Sheet + Scintillant Ingot + Rubber Cap + + NQ: Bronze Rose + + FireCrystal-Icon.gif + +Main Craft: Smithing - (99) +Sub Craft(s): Goldsmithing - (30) + + + Fire Crystal + Imperial Wootz Ingot + Drk. Adm. Sheet + Troll Bronze Sheet + Aht Urhgan Brass Ingot + + NQ: Adaman Sabatons + + HQ1: Gem Sabatons + + FireCrystal-Icon.gif + +Main Craft: Smithing - (100) +Sub Craft(s): Goldsmithing - (59) + + + Fire Crystal + Darksteel Sheet x2 + Adaman Sheet + Gold Ingot + Tiger Leather x2 + Mercury + + NQ: Butachi + + HQ1: Butachi +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (100) +Sub Craft(s): Leathercraft - (51), Woodworking - (44) + + + Fire Crystal + Adaman Ingot x2 + Ancient Lumber + Brass Ingot + Cotton Thread + Darksteel Ingot + Manta Leather + Tama-Hagane + + NQ: Culverin + + HQ1: Culverin +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (100) +Sub Craft(s): Woodworking - (51), Goldsmithing - (29) + + + Fire Crystal + Adaman Ingot + Brass Ingot + Darksteel Ingot x2 + Mahogany Lumber + + NQ: Pealing Nagan + + FireCrystal-Icon.gif + +Main Craft: Smithing - (100) + + + Fire Crystal + Luminous Core + Nagan + + NQ: Mythril Bell + + FireCrystal-Icon.gif + +Main Craft: Smithing - (100) +Sub Craft(s): Goldsmithing - (60) + + + Fire Crystal + Mythril Ingot x4 + Tin Ingot + Manticore Hair + Molybdenum Ingot + Scintillant Ingot + + NQ: Gorkhali Kukri + + HQ1: Mahakali's Kukri + + FireCrystal-Icon.gif + +Main Craft: Smithing - (100) + + + Fire Crystal + Ancient Lumber + Thokcha Ingot + Griffon Leather + + NQ: Etourdissante + + HQ1: Etourdissante +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (100) +Sub Craft(s): Goldsmithing - (50) (Woodworking - (35) + + + Fire Crystal + Chestnut Lumber + Palladian Brass Ingot + Durium Ingot x4 + Buffalo Leather + Paralyze Potion + + NQ: Aisa + + HQ1: Aisa +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (100) + + + Fire Crystal + Copper Ingot + Tama-Hagane + Elm Lumber + Thokcha Ingot + Behemoth Leather + Khimaira Mane + + NQ: Ebon Breastplate + + FireCrystal-Icon.gif + +Main Craft: Smithing - (100) +Sub Craft(s): Goldsmithing - (60) + + + Fire Crystal + Dark Adaman Sheet x2 + Scintillant Ingot x2 + Orichalcum Sheet x2 + Iridium Ingot + + NQ: Thurisaz Blade + + HQ1: Thurisaz Blade +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (100) +Sub Craft(s): Goldsmithing - (??), Alchemy - (??) + + + Fire Crystal + Lizard Skin + Rhodium Ingot x4 + Urunday Lumber + Twitherym Scale + + NQ: Titanium Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (100) + + + Fire Crystal + Titanium Ore x4 + + NQ: Roppo Shuriken x33 + + HQ1: Roppo Shuriken x66 + HQ2: Roppo Shuriken x99 + HQ3: Roppo Shuriken +1 x99 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (100) + + + Wind Crystal + Tama-Hagane + Mercury + Titanium Sheet + + +Expert (101-110) +Synthesis Information +Yield Requirements Ingredients + + NQ: Cursed Sabatons + + HQ1: Cursed Sabatons -1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (101) +Sub Craft(s): Goldsmithing - (60) + + + Fire Crystal + Orichalcum Sheet + Dark Adaman Sheet x2 + Marid Leather x2 + Scintillant Ingot + Rubber Soles + + NQ: Winged Plaque + + FireCrystal-Icon.gif + +Main Craft: Smithing - (101) +Sub Craft(s): Goldsmithing - (60) + + + Fire Crystal + Steel Sheet x2 + Blessed Mythril Sheet x2 + Orichalcum Sheet + Platinum Sheet + Sapphire + Scintillant Ingot + + NQ: Apaisante + + HQ1: Apaisante +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (101) +Sub Craft(s): Bonecraft - (60) + + + Fire Crystal + Buffalo Horn + Thokcha Ingot x2 + + NQ: Firnaxe + + HQ1: Firnaxe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (101) + + + Fire Crystal + Darksteel Ingot + Thokcha Ingot + Heavy Darksteel Axe + + NQ: Bismuth Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (101) + + + Fire Crystal + Tin Ore + Zinc Ore + Bismuth Ore x2 + + NQ: Shabti Cuisses + + HQ1: Shabti Cuisses +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (101) + + + Fire Crystal + Gold Ingot + Ram Leather + Bismuth Sheet x2 + + NQ: Gefechtschuhs + + HQ1:Wildheitschuhs + + FireCrystal-Icon.gif + +Main Craft: Smithing - (101) +Sub Craft(s): Leathercraft - (??), Goldsmithing - (??) + + + Fire Crystal + Orichalcum Ingot + Mercury + Buffalo Leather + Cerberus Leather + Largantua's Shard + Jester Malatrix's Shard + + NQ: Adaman Gauntlets + + HQ1: Gem Gauntlets + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) +Sub Craft(s): Goldsmithing - (60) + + + Fire Crystal + Darksteel Sheet + Adaman Sheet + Gold Ingot + Leather Gloves x2 + Mercury + + NQ: Adaman Kris + + HQ1: Adaman Kris +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) +Sub Craft(s): Goldsmithing - (37) + + + Fire Crystal + Adaman Ingot + Deathstone + Gold Ingot + + NQ: Sasanuki + + HQ1: Sasanuki +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) +Sub Craft(s): Leathercraft - (55), Woodworking - (24) + + + Fire Crystal + Tama-Hagane + Ancient Lumber + Thokcha Ingot x2 + Gold Ingot + Rainbow Thread + Scintillant Ingot + Smilodon Leather + + NQ: Titanium Bolt Heads x6 + + HQ1: Titanium Bolt Heads x8 + HQ2: Titanium Bolt Heads x10 + HQ3: Titanium Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (102) + + + Wind Crystal + Titanium Ingot + + NQ: Bismuth Sheet + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) + + + Fire Crystal + Bismuth Ingot + + NQ: Bismuth Sheet x6 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) +Key Item: Sheeting + + + Fire Crystal + Bismuth Ingot x6 + Workshop Anvil + + NQ: Ra'Kaznar Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) + + + Fire Crystal + Darksteel Ore x3 + Ra'Kaznar Ore + + NQ: Gefechthentzes + + HQ1:Wildheithentzes + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Orichalcum Ingot + Mercury + Largantua's Shard + Jester Malatrix's Shard + Leather Gloves x2 + + NQ: Arasy Knife + + HQ1:Arasy Knife +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) +Sub Craft(s): Woodworking - (??) + + + Fire Crystal + Bloodwood Lumber + Bismuth Ingot + + NQ: Arasy Sainti + + HQ1:Arasy Sainti +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) +Sub Craft(s): Woodworking - (??) + + + Fire Crystal + Adaman Ingot + Ebony Lumber + Bismuth Ingot + + NQ: Arasy Sword + + HQ1:Arasy Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Adaman Ingot + Wyvern Skin + Electrum Ingot + Bismuth Ingot + + NQ: Arasy Claymore + + HQ1:Arasy Claymore +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) +Sub Craft(s): Leathercraft - (??) + + + Fire Crystal + Adaman Ingot x2 + Ebony Lumber + Wyvern Skin + Bismuth Ingot + + NQ: Arasy Tabar + + HQ1:Arasy Tabar +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Adaman Ingot + Ebony Lumber + Electrum Ingot + Bismuth Ingot + + NQ: Arasy Axe + + HQ1:Arasy Axe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Adaman Ingot + Ebony Lumber + Deathstone + Electrum Ingot + Bismuth Ingot + + NQ: Yoshikiri + + HQ1:Yoshikiri +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) +Sub Craft(s): Leathercraft - (??) + + + Fire Crystal + Tama-Hagane + Ebony Lumber + Rainbow Thread + Wyvern Skin + Bismuth Ingot + + NQ: Ashijiro No Tachi + + HQ1:Ashijiro No Tachi +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Adaman Ingot + Tama-Hagane + Ebony Lumber + Rainbow Thread + Wyvern Skin + Bismuth Ingot + + NQ: Arasy Rod + + HQ1:Arasy Rod +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Adaman Ingot + Electrum Ingot + Bismuth Ingot + + NQ: Arasy Gun + + HQ1:Arasy Gun +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (102) +Sub Craft(s): Woodworking - (??) + + + Fire Crystal + Darksteel Ingot + Adaman Ingot + Ebony Lumber + Bismuth Ingot + + NQ: Breidox + + HQ1: Breidox +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (103) +Sub Craft(s): Woodworking - (45) + + + Fire Crystal + Thokcha Ingot x2 + Dark Adaman Ingot + Rosewood Lumber + + NQ: Cursed Gauntlets + + HQ1: Cursed Gauntlets -1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (103) +Sub Craft(s): Goldsmithing - (60) + + + Fire Crystal + Orichalcum Sheet + Dark Adaman Sheet + Leather Gloves x2 + Scintillant Ingot + Rubber Gloves + + NQ: Adaman Cuirass + + HQ1: Gem Cuirass + + FireCrystal-Icon.gif + +Main Craft: Smithing - (103) +Sub Craft(s): Goldsmithing - (60) + + + Fire Crystal + Darksteel Sheet x2 + Adaman Sheet x2 + Gold Ingot + Tiger Leather x2 + Mercury + + NQ: Damascus Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (103) + + + Fire Crystal + Relic Iron + Wootz Ore + Vanadium Ore x2 + + NQ: Bismuth Bolt Heads x6 + + HQ1:Bismuth Bolt Heads x8 + HQ2:Bismuth Bolt Heads x10 + HQ3:Bismuth Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (103) + + + Wind Crystal + Bismuth Ingot + + NQ: Shabti Gauntlets + + HQ1: Shabti Gauntlets +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (103) + + + Fire Crystal + Gold Ingot + Mercury + Bismuth Sheet x2 + Leather Gloves x2 + + NQ: Gefechtbrust + + HQ1:Wildheitbrust + + FireCrystal-Icon.gif + +Main Craft: Smithing - (103) +Sub Craft(s): Leathercraft - (??), Goldsmithing - (??) + + + Fire Crystal + Orichalcum Ingot + Mercury + Cerberus Leather + Largantua's Shard x2 + Jester Malatrix's Shard x2 + + NQ: Cursed Breastplate + + HQ1: Cursed Breastplate -1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (104) +Sub Craft(s): Goldsmithing - (60), Leathercraft - (60) + + + Fire Crystal + Orichalcum Sheet x2 + Dark Adaman Sheet x2 + Cerberus Leather x2 + Scintillant Ingot + Rubber Harness + + NQ: Yhatdhara + + HQ1: Yhatdhara +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (104) +Sub Craft(s): Woodworking - (60) + + + Fire Crystal + Divine Lumber + Thokcha Ingot x3 + Linen Cloth + + NQ: Bahadur + + HQ1: Bahadur +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (104) +Sub Craft(s): Goldsmithing - (51) + + + Fire Crystal + Adaman Ingot x4 + Gold Ingot x3 + Jacaranda Lumber + + NQ: Opprimo + + HQ1: Opprimo +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (104) +Sub Craft(s): Goldsmithing - (58), Woodworking - (30) + + + Fire Crystal + Brass Ingot + Walnut Lumber + Thokcha Ingot x2 + Palladian Brass Ingot + + NQ: Voay Staff + + HQ1: Voay Staff +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (104) +Sub Craft(s): Woodworking - (??) + + + Fire Crystal + Guatambu Lumber + Snowsteel Ore + Voay Staff -1 + + NQ: Ra'Kaznar Bolt Heads x6 + + HQ1:Ra'Kaznar Bolt Heads x8 + HQ2:Ra'Kaznar Bolt Heads x10 + HQ3:Ra'Kaznar Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (104) + + + Wind Crystal + Ra'Kaznar Ingot + + NQ: Wootz Amood + + HQ1: Wootz Amood +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (59), Woodworking - (52) + + + Fire Crystal + Brass Ingot + Steel Ingot x2 + Imperial Wootz Ingot x2 + Scintillant Ingot x2 + Jacaranda Lumber + + NQ: Voay Sword + + HQ1: Voay Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Woodworking - (38~42) + + + Fire Crystal + Guatambu Lumber + Titanium Ore + Voay Sword -1 + + NQ: Beryllium Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) + + + Fire Crystal + Iron Ore x3 + Beryllium Ore + + NQ: Blurred Axe + + HQ1: Blurred Axe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Dark Matter + Vulcanite Ore x2 + Tabarzin + + NQ: Blurred Bow + + HQ1: Blurred Bow +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Dark Matter + Vulcanite Ore x2 + Amazon Bow + + NQ: Blurred Claws + + HQ1: Blurred Claws +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Dark Matter + Vulcanite Ore x2 + Dragon Claws + + NQ: Blurred Claymore + + HQ1: Blurred Claymore +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Dark Matter + Vulcanite Ore x2 + Nagan + + NQ: Blurred Cleaver + + HQ1: Blurred Cleaver +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Dark Matter + Vulcanite Ore x2 + Toporok + + NQ: Blurred Crossbow + + HQ1: Blurred Crossbow +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Dark Matter + Vulcanite Ore x2 + Repeating Crossbow + + NQ: Blurred Harp + + HQ1: Blurred Harp +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Dark Matter + Vulcanite Ore x2 + Cythara Anglica + + NQ: Blurred Knife + + HQ1: Blurred Knife +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Dark Matter + Vulcanite Ore x2 + Misericorde + + NQ: Blurred Lance + + HQ1: Blurred Lance +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Dark Matter + Vulcanite Ore x2 + Dabo + + NQ: Blurred Rod + + HQ1: Blurred Rod +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Dark Matter + Vulcanite Ore x2 + Scepter + + NQ: Blurred Scythe + + HQ1: Blurred Scythe +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Dark Matter + Vulcanite Ore x2 + Death Scythe + + NQ: Blurred Shield + + HQ1: Blurred Shield +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Dark Matter + Vulcanite Ore x2 + Koenig Shield + + NQ: Blurred Staff + + HQ1: Blurred Staff +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Dark Matter + Vulcanite Ore x2 + Mythic Pole + + NQ: Blurred Sword + + HQ1: Blurred Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Dark Matter + Vulcanite Ore x2 + Adaman Kilij + + NQ: Kujaku + + HQ1: Kujaku +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Dark Matter + Vulcanite Ore x2 + Hirenjaku + + NQ: Kunitsuna + + HQ1: Kunitsuna +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Dark Matter + Vulcanite Ore x2 + Butachi + + NQ: Niobium Ingot + + FireCrystal-Icon.gif + +Main Craft: Smithing - (105) + + + Fire Crystal + Niobium Ore x4 + + NQ: Hexed Sune-Ate + + HQ1: Hexed Sune-Ate -1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (106) +Sub Craft(s): Leathercraft - (60), Goldsmithing - (30) + + + Fire Crystal + Scarletite Ingot + Gold Sheet + Taffeta Cloth + Amphiptere Leather + Sealord Leather + + NQ: Shabti Armet + + HQ1: Shabti Armet +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (106) + + + Fire Crystal + Copper Ingot + Gold Ingot + Sheep Leather + Mercury + Bismuth Sheet x2 + + NQ: Beryllium Kris + + HQ1:Beryllium Kris +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (106) + + + Fire Crystal + Black Pearl + Beryllium Ingot + Ra'Kaznar Ingot + + NQ: Beryllium Mace + + HQ1:Beryllium Mace +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (106) + + + Fire Crystal + Beryllium Ingot x3 + + NQ: Beryllium Pick + + HQ1:Beryllium Pick +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (106) + + + Fire Crystal + Urunday Lumber + Beryllium Ingot + + NQ: Beryllium Sword + + HQ1:Beryllium Sword +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (106) + + + Fire Crystal + Urunday Lumber + Raaz Leather + Beryllium Ingot x3 + + NQ: Beryllium Tachi + + HQ1:Beryllium Tachi +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (106) + + + Fire Crystal + Tama-Hagane + Urunday Lumber + Akaso Thread + Raaz Leather + Beryllium Ingot x2 + Ra'Kaznar Ingot + + NQ: Beryllium Arrowheads x6 + + HQ1: Beryllium Arrowheads x8 + HQ2: Beryllium Arrowheads x10 + HQ3: Beryllium Arrowheads x12 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (106) + + + Wind Crystal + Steel Ingot + Beryllium Ingot + + NQ: Beryllium Bolt Heads x6 + + HQ1: Beryllium Bolt Heads x8 + HQ2: Beryllium Bolt Heads x10 + HQ3: Beryllium Bolt Heads x12 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (106) + + + Wind Crystal + Beryllium Ingot + + NQ: Hexed Somen + + HQ1: Hexed Somen -1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (107) +Sub Craft(s): Leathercraft - (60), Clothcraft - (30) + + + Fire Crystal + Scarletite Ingot + Gold Ingot + Taffeta Cloth + Urushi + Sealord Leather + + NQ: Shabti Sabatons + + HQ1: Shabti Sabatons +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (107) + + + Fire Crystal + Gold Ingot + Ram Leather x2 + Mercury + Bismuth Sheet x3 + + NQ: Dakatsu-No-Nodowa + + HQ1:Dakatsu-No-Nodowa +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (107) + + + Fire Crystal + Silk Thread + Beryllium Ingot + Wyrm Blood + + NQ: Happo Shuriken x33 + + HQ1: Happo Shuriken x66 + HQ2: Happo Shuriken x99 + HQ3: Happo Shuriken +1 x99 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (107) +Sub Craft(s): Bonecraft - (??) + + + Wind Crystal + Tama-Hagane + Mercury + Waktza Rostrum + Bismuth Sheet + + NQ: Sasuke Shuriken x33 + + HQ1: Sasuke Shuriken x66 + HQ2: Sasuke Shuriken x99 + HQ3: Sasuke Shuriken +1 x99 + + WindCrystal-Icon.gif + +Main Craft: Smithing - (107~108 Verification Needed) +Sub Craft(s): Goldsmithing - (??) + + + Wind Crystal + Tama-Hagane + Mercury + Bismuth Sheet + + NQ: Shabti Cuirass + + HQ1: Shabti Cuirass +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (109) + + + Fire Crystal + Gold Ingot + Ram Leather x2 + Mercury + Bismuth Sheet x4 + + NQ: Hexed Domaru + + HQ1: Hexed Domaru -1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (110) +Sub Craft(s): Leathercraft - (60) + + + Fire Crystal + Scarletite Ingot x2 + Gold Ingot + Taffeta Cloth + Urushi + Sealord Leather + + NQ: Sukezane + + HQ1: Sukezane +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (110~115) +Sub Craft(s): Woodworking - (??), Leathercraft - (??) + + + Fire Crystal + Brass Ingot + Adaman Ingot x3 + Cotton Thread + Manta Leather + Kunwu Iron + Yggdreant Bole + + NQ: Samurai's Nodowa + + HQ1: Samurai's Nodowa +1 + HQ2: Samurai's Nodowa +2 + + LightCrystal-Icon.gif + +Main Craft: Smithing - (110) +Sub Craft(s): Alchemy - (55) + + + Light Crystal + Yggdreant Root + Dark Matter + Azure Leaf + Amber Crystal + Moldy Nodowa + + NQ: Ninja Nodowa + + HQ1: Ninja Nodowa +1 + HQ2: Ninja Nodowa +2 + + LightCrystal-Icon.gif + +Main Craft: Smithing - (110) +Sub Craft(s): Alchemy - (55) + + + Light Crystal + Yggdreant Root + Dark Matter + Azure Leaf + Tanzanite Crystal + Moldy Nodowa + + NQ: Monk's Nodowa + + HQ1: Monk's Nodowa +1 + HQ2: Monk's Nodowa +2 + + LightCrystal-Icon.gif + +Main Craft: Smithing - (110) +Sub Craft(s): Alchemy - (55) + + + Light Crystal + Yggdreant Root + Dark Matter + Azure Leaf + Sapphire Crystal + Moldy Nodowa + + +Authority (111-120) +Synthesis Information +Yield Requirements Ingredients + + NQ: Bewitched Sollerets + + HQ1:Voodoo Sollerets + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (111) +Sub Craft(s): Goldsmithing - (70) + + + Earth Crystal + Cursed Sollerets + Jester Malatrix's Shard + Tartarian Chain + Eschite Ore + + NQ: Vexed Sune-Ate + + HQ1:Jinxed Sune-Ate + + FireCrystal-Icon.gif + +Main Craft: Smithing - (111) +Sub Craft(s): Clothcraft - (70) + + + Fire Crystal + Beryllium Ingot + Muut's Vestment + Eschite Ore + Hexed Sune-Ate + + NQ: Scout's Bolt x99 + + HQ1: Scout's Bolt x99 + HQ2: Scout's Bolt x99 + HQ3: Scout's Bolt x99 + + LightCrystal-Icon.gif + +Main Craft: Smithing - (111~114) +Key Item: Blacksmith's aurum tome + + + Light Crystal + Dark Matter + Moldy Bolt + Relic Adaman + Malachite Crystal + + NQ: Assassin's Knife + + HQ1: Plunderer's Knife + HQ2: Gandring + + LightCrystal-Icon.gif + +Main Craft: Smithing - (111~114) +Sub Craft(s): Bonecraft - (Information Needed) + +Goldsmithing - (Information Needed) +Key Item: Blacksmith's aurum tome + + + Light Crystal + Macuil Horn + Dark Matter + Ruthenium Ore + Moldy Dagger + Ratnaraj + Relic Adaman x2 + Peridot Crystal + + NQ: Bard's Knife + + HQ1: Bihu Knife + HQ2: Barfawc + + LightCrystal-Icon.gif + +Main Craft: Smithing - (111~114) +Sub Craft(s): Bonecraft - (Information Needed) + +Goldsmithing - (Information Needed) +Key Item: Blacksmith's aurum tome + + + Light Crystal + Macuil Horn + Dark Matter + Ruthenium Ore + Moldy Dagger + Ratnaraj + Relic Adaman x2 + Alexandrite Crystal + + NQ: Commodore's Knife + + HQ1: Lanun Knife + HQ2: Rostam + + LightCrystal-Icon.gif + +Main Craft: Smithing - (111~114) +Sub Craft(s): Bonecraft - (Information Needed) + +Goldsmithing - (Information Needed) +Key Item: Blacksmith's aurum tome + + + Light Crystal + Macuil Horn + Dark Matter + Ruthenium Ore + Moldy Dagger + Ratnaraj + Relic Adaman x2 + Jadeite Crystal + + NQ: Etoile Knife + + HQ1: Horos Knife + HQ2: Setan Kober + + LightCrystal-Icon.gif + +Main Craft: Smithing - (111~114) +Sub Craft(s): Bonecraft - (Information Needed) + +Goldsmithing - (Information Needed) +Key Item: Blacksmith's aurum tome + + + Light Crystal + Macuil Horn + Dark Matter + Ruthenium Ore + Moldy Dagger + Ratnaraj + Relic Adaman x2 + Sunstone Crystal + + NQ: Warrior's Chopper + + HQ1: Agoge Chopper + HQ2: Labraunda + + LightCrystal-Icon.gif + +Main Craft: Smithing - (111~114) +Sub Craft(s): Leathercraft - (Information Needed) + +Clothcraft - (Information Needed) +Key Item: Blacksmith's aurum tome + + + Light Crystal + Plovid Flesh + Dark Matter + Khoma Thread + Moldy Great Axe + Ratnaraj + Relic Adaman x2 + Ruby Crystal + + NQ: Bewitched Mufflers + + HQ1:Voodoo Mufflers + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (112) +Sub Craft(s): Goldsmithing - (70) + + + Earth Crystal + Cursed Mufflers + Jester Malatrix's Shard + Tartarian Chain + Eschite Ore + + NQ: Senbaak Nagan + + HQ1: Senbaak Nagan +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (113) +Sub Craft(s): Bonecraft - (≤ 70), Woodworking - (≤ 70) + + + Fire Crystal + Damascus Ingot x4 + Scarletite Ingot + Wyvern Skin + Urunday Lumber + Gabbrath Horn + + NQ: Razorfury + + HQ1: Razorfury +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (113) +Sub Craft(s): Goldsmithing - (??), Bonecraft - (60+) + + + Fire Crystal + Mythril Ingot + Damascus Ingot x2 + Ormolu Ingot + Urunday Lumber + Rockfin Tooth + + NQ: Pamun + + HQ1: Pamun +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (113) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Damascus Ingot + Ormolu Ingot + Habu Skin + Bztavian Wing + + NQ: Bewitched Breeches + + HQ1:Voodoo Breeches + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (113) +Sub Craft(s): Leathercraft - (70) + + + Earth Crystal + Cursed Breeches + Warblade Beak's Hide + Tartarian Chain + Eschite Ore + + NQ: Bewitched Celata + + HQ1:Voodoo Celata + + FireCrystal-Icon.gif + +Main Craft: Smithing - (114) +Sub Craft(s): Leathercraft - (70) + + + Fire Crystal + Cursed Celata + Warblade Beak's Hide + Tartarian Chain + Eschite Ore + + NQ: Vexed Somen + + HQ1:Jinxed Somen + + FireCrystal-Icon.gif + +Main Craft: Smithing - (114) +Sub Craft(s): Clothcraft - (70) + + + Fire Crystal + Beryllium Ingot + Muut's Vestment + Eschite Ore + Hexed Somen + + NQ: Malfeasance + + HQ1: Malfeasance +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (115) +Sub Craft(s): Alchemy - (??), Woodworking - (??) + + + Fire Crystal + Damascus Ingot x2 + Ormolu Ingot + Squamous Hide + Yggdreant Bole + Hades' Claw + Tartarian Soul + + NQ: Bewitched Hauberk + + HQ1:Voodoo Hauberk + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (115) +Sub Craft(s): Clothcraft - (70) + + + Earth Crystal + Cursed Hauberk + Sif's Macrame + Tartarian Chain + Eschite Ore + + NQ: Vexed Domaru + + HQ1:Jinxed Domaru + + FireCrystal-Icon.gif + +Main Craft: Smithing - (115) +Sub Craft(s): Clothcraft - (70) + + + Fire Crystal + Beryllium Ingot + Muut's Vestment + Eschite Ore + Hexed Domaru + + NQ: Dyrnwyn + + HQ1: Dyrnwyn +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (115~120) +Sub Craft(s): Woodworking - (??) + + + Fire Crystal + Moonbow Steel + Moonbow Urushi + Cypress Lumber + Balmung + + NQ: Barbarity + + HQ1: Barbarity +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (115~120) +Sub Craft(s): Leathercraft - (??) + + + Fire Crystal + Moonbow Steel + Moonbow Leather + Faulpie Leather + Juggernaut + + NQ: Jolt Counter + + HQ1: Jolt Counter +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (115~120) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Moonbow Steel + Moonbow Stone + Ruthenium Ingot + Cross-Counters + + NQ: Moonbeam Nodowa + + HQ1: Moonlight Nodowa + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (115~120) +Sub Craft(s): Clothcraft - (??) + + + Earth Crystal + Moonbow Steel + Moonlight Coral + Khoma Thread + + NQ: Ea Pigaches + + HQ1: Ea Pigaches +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (115~120) +Sub Craft(s): Clothcraft - (??) +Key Item: Blacksmith's argentum tome + + + Fire Crystal + Gold Sheet + Bztavian Stinger + Defiant Scarf + Niobium Ore x3 + + NQ: Ea Cuffs + + HQ1: Ea Cuffs +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (115~120) +Sub Craft(s): Clothcraft - (??) +Key Item: Blacksmith's argentum tome + + + Fire Crystal + Gold Sheet x2 + Bztavian Stinger + Defiant Scarf + Niobium Ore x3 + + NQ: Ea Hat + + HQ1: Ea Hat +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (115~120) +Sub Craft(s): Clothcraft - (??) +Key Item: Blacksmith's argentum tome + + + Fire Crystal + Gold Sheet + Gold Chain + Bztavian Stinger + Defiant Scarf + Niobium Ore x3 + + NQ: Ea Slops + + HQ1: Ea Slops +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (115~120) +Sub Craft(s): Clothcraft - (??) +Key Item: Blacksmith's argentum tome + + + Fire Crystal + Gold Sheet + Gold Chain + Bztavian Stinger + Defiant Scarf + Niobium Ore + Niobium Ingot + + NQ: Ea Houppelande + + HQ1: Ea Houppelande +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (115~120) +Sub Craft(s): Clothcraft - (??) +Key Item: Blacksmith's argentum tome + + + Fire Crystal + Gold Sheet + Gold Chain + Bztavian Stinger + Defiant Scarf x2 + Niobium Ore + Niobium Ingot + + NQ: Raetic Axe + + HQ1: Raetic Axe +1 + + FireCrystal-Icon.gif + +Main Craft: Blacksmithing - (115~120) +Key Item: Blacksmith's argentum tome + + + Fire Crystal + Hope Crystal + Niobium Ingot + Rune Axe + + NQ: Raetic Kris + + HQ1: Raetic Kris +1 + + FireCrystal-Icon.gif + +Main Craft: Blacksmithing - (115~120) +Key Item: Blacksmith's argentum tome + + + Fire Crystal + Hope Crystal + Niobium Ingot + Rune Kris + + NQ: Raetic Chopper + + HQ1: Raetic Chopper +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (115~120) +Key Item: Blacksmith's argentum tome + + + Fire Crystal + Fulfillment Crystal + Niobium Ingot + Rune Chopper + + NQ: Raetic Rod + + HQ1: Raetic Rod +1 + + FireCrystal-Icon.gif + +Main Craft: Blacksmithing - (115~120) +Key Item: Blacksmith's argentum tome + + + Fire Crystal + Thought Crystal + Niobium Ingot + Rune Rod + + NQ: Kwahu Kachina Belt + + HQ1:K. Kachina Belt +1 + + EarthCrystal-Icon.gif + +Main Craft: Smithing - (116) + + + Earth Crystal + Sealord Leather + Ra'Kaznar Ingot + Macuil Plating + + NQ: Varar Ring + + HQ1:Varar Ring +1 + + FireCrystal-Icon.gif + +Main Craft: Smithing - (118) + + + Fire Crystal + Scarletite Ingot + Beryllium Ingot + Tartarian Chain \ No newline at end of file diff --git a/datasets/Smithing_v2.csv b/datasets/Smithing_v2.csv new file mode 100644 index 0000000..e5b8cde --- /dev/null +++ b/datasets/Smithing_v2.csv @@ -0,0 +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]" diff --git a/datasets/Woodworking.txt b/datasets/Woodworking.txt new file mode 100644 index 0000000..486ae0a --- /dev/null +++ b/datasets/Woodworking.txt @@ -0,0 +1,7154 @@ +Woodworking Crafted Items +Amateur (1-10) +Synthesis Information +Yield Requirements Ingredients + + NQ: Banquet Table + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (1) + + + Earth Crystal + Banquet Table Blueprint + Banquet Table Fabric + Banquet Table Wood + + NQ: Arrowwood Lumber + + HQ1:Arrowwood Lumber x2 + HQ2:Arrowwood Lumber x3 + HQ3:Arrowwood Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (2) + + + Wind Crystal + Arrowwood Log + + NQ: Arrowwood Lumber x3 + + HQ1:Arrowwood Lumber x6 + HQ2:Arrowwood Lumber x9 + HQ3:Arrowwood Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (2) +Key Item: Lumberjack + + + Wind Crystal + Arrowwood Log x3 + Bundling Twine + + NQ: Flute + + HQ1:Flute +1 + HQ2:Flute +2 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (2) + + + Wind Crystal + Maple Lumber + Parchment + + NQ: Lauan Lumber + + HQ1:Lauan Lumber x2 + HQ2:Lauan Lumber x3 + HQ3:Lauan Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (3) + + + Wind Crystal + Lauan Log + + NQ: Lauan Lumber x3 + + HQ1:Lauan Lumber x6 + HQ2:Lauan Lumber x9 + HQ3:Lauan Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (3) +Key Item: Lumberjack + + + Wind Crystal + Lauan Log x3 + Bundling Twine + + NQ: Stone Arrow x33 + + HQ1:Stone Arrow x66 + HQ2:Stone Arrow x99 + HQ3:Stone Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (3) + + + Earth Crystal + Arrowwood Lumber + Stone Arrowheads + Chocobo Fletchings + + NQ: Wooden Arrow x33 + + HQ1:Wooden Arrow x66 + HQ2:Wooden Arrow x99 + HQ3:Wooden Arrow x99 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (4) + + + Wind Crystal + Arrowwood Lumber + Chocobo Feather x2 + Flint Stone + + NQ: Maple Lumber + + HQ1:Maple Lumber x2 + HQ2:Maple Lumber x3 + HQ3:Maple Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (5) + + + Wind Crystal + Maple Log + + NQ: Maple Lumber x3 + + HQ1:Maple Lumber x6 + HQ2:Maple Lumber x9 + HQ3:Maple Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (5) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Maple Log x3 + + NQ: Padded Box + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (5) + + + Earth Crystal + Bast Parchment x2 + Inferior Cocoon + + NQ: Padded Box + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (5) + + + Earth Crystal + Woodworking Kit 5 + + NQ: Maple Wand + + HQ1:Maple Wand +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (6) + + + Wind Crystal + Maple Lumber + Chocobo Feather + + NQ: Lauan Shield + + HQ1:Lauan Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (7) +Sub Craft(s): Smithing - (2) + + + Earth Crystal + Bronze Sheet + Lauan Lumber x2 + + NQ: Workbench + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (7) + + + Earth Crystal + Lauan Lumber x4 + + NQ: Ash Lumber + + HQ1:Ash Lumber x2 + HQ2:Ash Lumber x3 + HQ3:Ash Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (8) + + + Wind Crystal + Ash Log + + NQ: Ash Lumber x3 + + HQ1:Ash Lumber x6 + HQ2:Ash Lumber x9 + HQ3:Ash Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (8) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Ash Log x3 + + NQ: Ash Pole + + HQ1:Ash Pole +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (8) + + + Wind Crystal + Ash Lumber x2 + + NQ: Bewitched Ash Lumber + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (8) +Key Item: Wood Purification + + + Wind Crystal + Ash Log + Fire Anima + Ice Anima + Light Anima + + NQ: Humus x2 + + HQ1:Rich Humus + + DarkCrystal-Icon.gif + +Main Craft: Woodworking - (8) + + + Dark Crystal + Elm Log + Bay Leaves + + NQ: Ash Club + + HQ1:Ash Club +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (9) + + + Wind Crystal + Ash Lumber + + NQ: Bone Arrow x33 + + HQ1:Bone Arrow x66 + HQ2:Bone Arrow x99 + HQ3:Bone Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (9) + + + Earth Crystal + Arrowwood Lumber + Yagudo Fletchings + Bone Arrowheads + + NQ: Ash Staff + + HQ1:Ash Staff +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (10) + + + Wind Crystal + Ash Lumber + Bat Fang + + NQ: Goldfish Bowl + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (10) +Sub Craft(s): Smithing - (4), Alchemy - (7) + + + Light Crystal + Bronze Ingot + Lauan Lumber + Crawler Calculus + Sieglinde Putty + Glass Sheet + Goldfish Set + Tiny Goldfish + Black Bubble-Eye + + NQ: Harpoon + + HQ1:Harpoon +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (10) +Sub Craft(s): Bonecraft - (2) + + + Wind Crystal + Ash Lumber + Grass Thread + Sheep Tooth + + NQ: Willow Fishing Rod + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (10) + + + Light Crystal + Broken Willow Rod + + NQ: Ash Staff + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (10) + + + Wind Crystal + Woodworking Kit 10 + + +Recruit (11-20) +Synthesis Information +Yield Requirements Ingredients + + NQ: Ash Clogs + + HQ1:Ash Clogs +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (11) + + + Wind Crystal + Ash Lumber + Sheep Leather + + NQ: Bamboo Fishing Rod + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (11) + + + Light Crystal + Broken Bamboo Rod + + NQ: Maple Shield + + HQ1:Maple Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (11) +Sub Craft(s): Goldsmithing - (2) + + + Earth Crystal + Brass Sheet + Maple Lumber x2 + + NQ: Mandarin + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (11) +Sub Craft(s): Cooking - (??) + + + Wind Crystal + Bamboo Stick + Saruta Orange x4 + + NQ: Holly Lumber + + HQ1:Holly Lumber x2 + HQ2:Holly Lumber x3 + HQ3:Holly Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (12) + + + Wind Crystal + Holly Log + + NQ: Holly Lumber x3 + + HQ1:Holly Lumber x6 + HQ2:Holly Lumber x9 + HQ3:Holly Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (12) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Holly Log x3 + + NQ: Light Crossbow + + HQ1:Light Crossbow +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (12) +Sub Craft(s): Smithing - (3) + + + Earth Crystal + Ash Lumber + Bronze Ingot + Grass Thread + + NQ: Tree Sap x2 + + HQ1:Scarlet Sap + + LightningCrystal-Icon.gif + +Main Craft: Woodworking - (12) + + + Lightning Crystal + Chestnut Log + Maple Sugar + + NQ: Holly Pole + + HQ1:Holly Pole +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (13) + + + Wind Crystal + Holly Lumber x2 + + NQ: Mana Willow Lumber + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (13) +Key Item: Wood Purification + + + Wind Crystal + Willow Log + Earth Anima + Water Anima + Light Anima + + NQ: Willow Lumber + + HQ1:Willow Lumber x2 + HQ2:Willow Lumber x3 + HQ3:Willow Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (13) + + + Wind Crystal + Willow Log + + NQ: Willow Lumber x3 + + HQ1:Willow Lumber x6 + HQ2:Willow Lumber x9 + HQ3:Willow Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (13) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Willow Log x3 + + NQ: Windurstian Pole + + HQ1:Federation Pole + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (13) + + + Earth Crystal + Ash Lumber + Mercenary's Pole + + NQ: Willow Fishing Rod + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (14) + + + Wind Crystal + Willow Lumber + Grass Thread + + NQ: Willow Wand + + HQ1:Willow Wand +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (14) + + + Wind Crystal + Willow Lumber + Insect Wing + + NQ: Windurstian Club + + HQ1:Federation Club + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (14) + + + Wind Crystal + Freesword's Club + Ash Lumber + + NQ: Butterfly Cage + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (14) +Sub Craft(s): Smithing - (3) + + + Earth Crystal + Bronze Ingot + Rattan Lumber x2 + Dogwood Lumber + White Butterfly + + NQ: Cricket Cage + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (14) +Sub Craft(s): Smithing - (3) + + + Earth Crystal + Bronze Ingot + Rattan Lumber x2 + Dogwood Lumber + Bell Cricket + + NQ: Glowfly Cage + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (14) +Sub Craft(s): Smithing - (3) + + + Earth Crystal + Bronze Ingot + Rattan Lumber x2 + Dogwood Lumber + Glowfly + + NQ: Bamboo Fishing Rod + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (15) + + + Wind Crystal + Bamboo Stick + Grass Thread + + NQ: Bronze Bolt x33 + + HQ1:Bronze Bolt x66 + HQ2:Bronze Bolt x99 + HQ3:Bronze Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (15) + + + Earth Crystal + Ash Lumber + Bronze Bolt Heads + + NQ: Bronze Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (15) +Key Item: Boltmaker + + + Earth Crystal + Ash Lumber x3 + Bronze Bolt Heads x3 + Bundling Twine + + NQ: Shortbow + + HQ1:Shortbow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (15) + + + Wind Crystal + Willow Lumber + Grass Thread + Grass Cloth + + NQ: Bamboo Fishing Rod + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (15) + + + Wind Crystal + Woodworking Kit 15 + + NQ: Acid Bolt x33 + + HQ1:Acid Bolt x66 + HQ2:Acid Bolt x99 + HQ3:Acid Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (16) + + + Earth Crystal + Ash Lumber + Acid Bolt Heads + + NQ: Acid Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (16) +Key Item: Boltmaker + + + Earth Crystal + Ash Lumber x3 + Acid Bolt Heads x3 + Bundling Twine + + NQ: Blind Bolt x33 + + HQ1:Blind Bolt x66 + HQ2:Blind Bolt x99 + HQ3:Blind Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (16) + + + Earth Crystal + Ash Lumber + Blind Bolt Heads + + NQ: Blind Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (16) +Key Item: Boltmaker + + + Earth Crystal + Ash Lumber x3 + Blind Bolt Heads x3 + Bundling Twine + + NQ: Bloody Bolt x33 + + HQ1:Bloody Bolt x66 + HQ2:Bloody Bolt x99 + HQ3:Bloody Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (16) + + + Earth Crystal + Ash Lumber + Bloody Bolt Heads + + NQ: Bloody Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (16) +Key Item: Boltmaker + + + Earth Crystal + Ash Lumber x3 + Bloody Bolt Heads x3 + Bundling Twine + + NQ: Flexible Pole + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (16) +Key Item: Wood Ensorcellment + + + Wind Crystal + Lambent Water Cell + Lambent Earth Cell + Holly Pole + + NQ: Holy Bolt x33 + + HQ1:Holy Bolt x66 + HQ2:Holy Bolt x99 + HQ3:Holy Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (16) + + + Earth Crystal + Ash Lumber + Holy Bolt Heads + + NQ: Holy Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (16) +Key Item: Boltmaker + + + Earth Crystal + Ash Lumber x3 + Holy Bolt Heads x3 + Bundling Twine + + NQ: Maple Table + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (16) + + + Earth Crystal + Maple Lumber x4 + + NQ: Self Bow + + HQ1:Self Bow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (16) +Sub Craft(s): Bonecraft - (5) + + + Wind Crystal + Willow Lumber + Grass Thread + Giant Femur + Cotton Cloth + + NQ: Sleep Bolt x33 + + HQ1:Sleep Bolt x66 + HQ2:Sleep Bolt x99 + HQ3:Sleep Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (16) + + + Earth Crystal + Ash Lumber + Sleep Bolt Heads + + NQ: Sleep Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (16) +Key Item: Boltmaker + + + Earth Crystal + Ash Lumber x3 + Sleep Bolt Heads x3 + Bundling Twine + + NQ: Venom Bolt x33 + + HQ1:Venom Bolt x66 + HQ2:Venom Bolt x99 + HQ3:Venom Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (16) + + + Earth Crystal + Ash Lumber + Venom Bolt Heads + + NQ: Venom Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (16) +Key Item: Boltmaker + + + Earth Crystal + Ash Lumber x3 + Venom Bolt Heads x3 + Bundling Twine + + NQ: Bastokan Crossbow + + HQ1:Republic Crossbow + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (17) + + + Earth Crystal + Ash Lumber + Legionnaire's Crossbow + + NQ: Boomerang + + HQ1:Boomerang +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (17) + + + Wind Crystal + Maple Lumber + Cotton Thread + + NQ: Longbow + + HQ1:Longbow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (17) +Sub Craft(s): Bonecraft - (1) + + + Wind Crystal + Coeurl Whisker + Yew Lumber x2 + Linen Cloth + Ram Horn + + NQ: Mana Wand + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (17) + + + Wind Crystal + Mana Willow Lumber + Willow Wand + + NQ: Bronze Spear + + HQ1:Bronze Spear +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (18) +Sub Craft(s): Smithing - (9) + + + Wind Crystal + Ash Lumber + Bronze Ingot + Grass Thread + + NQ: Holly Clogs + + HQ1:Holly Clogs +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (18) + + + Wind Crystal + Holly Lumber + Sheep Leather + + NQ: Holly Staff + + HQ1:Holly Staff +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (19) + + + Wind Crystal + Holly Lumber + Sheep Tooth + + NQ: Steel Walnut Lumber x3 + + HQ1:Steel Walnut Lumber x6 + HQ2:Steel Walnut Lumber x9 + HQ3:Steel Walnut Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (19) +Key Item: Wood Ensorcellment + + + Wind Crystal + Walnut Log + Earth Anima x2 + Dark Anima + + NQ: Walnut Lumber + + HQ1:Walnut Lumber x2 + HQ2:Walnut Lumber x3 + HQ3:Walnut Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (19) + + + Wind Crystal + Walnut Log + + NQ: Walnut Lumber x3 + + HQ1:Walnut Lumber x6 + HQ2:Walnut Lumber x9 + HQ3:Walnut Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (19) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Walnut Log x3 + + NQ: Fighting Fish Tank + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (20) +Sub Craft(s): Alchemy - (7), Smithing - (4) + + + Light Crystal + Bronze Ingot + Lauan Lumber + Crawler Calculus + Sieglinde Putty + Glass Sheet + Goldfish Set + Lamp Marimo + Betta + + NQ: Piccolo + + HQ1:Piccolo +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (20) + + + Wind Crystal + Holly Lumber + Parchment + + NQ: Simple Bed + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (20) +Sub Craft(s): Clothcraft - (5) + + + Earth Crystal + Holly Lumber x2 + Lauan Lumber x2 + Grass Thread + Grass Cloth x3 + + NQ: Windurstian Bow + + HQ1:Federation Bow + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (20) + + + Earth Crystal + Willow Lumber + Freesword's Bow + + NQ: Yew Fishing Rod + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (20) + + + Light Crystal + Broken Yew Rod + + NQ: Piccolo + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (20) + + + Wind Crystal + Woodworking Kit 20 + + NQ: Awning + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (20) +Sub Craft(s): Alchemy - (??) + + + Earth Crystal + Elm Lumber + Sieglinde Putty + Glass Sheet + + NQ: Triangular Jalousie + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (20) +Sub Craft(s): Alchemy - (??) + + + Earth Crystal + Walnut Lumber + Sieglinde Putty + Glass Sheet + + NQ: Square Jalousie + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (20) +Sub Craft(s): Alchemy - (??) + + + Earth Crystal + Rosewood Lumber + Sieglinde Putty + Glass Sheet + + +Initiate (21-30) +Synthesis Information +Yield Requirements Ingredients + + NQ: Chestnut Club + + HQ1:Solid Club + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (21) + + + Wind Crystal + Chestnut Lumber + + NQ: Gimlet Spear + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (21) +Key Item: Wood Ensorcellment + + + Wind Crystal + Lambent Fire Cell + Lambent Wind Cell + Bronze Spear + + NQ: Maple Sugar x3 + + HQ1:Maple Sugar x6 + HQ2:Maple Sugar x9 + HQ3:Maple Sugar x12 + + LightningCrystal-Icon.gif + +Main Craft: Woodworking - (21) + + + Lightning Crystal + Maple Log + + NQ: Brass Spear + + HQ1:Brass Spear +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (22) +Sub Craft(s): Goldsmithing - (5) + + + Wind Crystal + Ash Lumber + Brass Ingot + Linen Thread + + NQ: San d'Orian Bow + + HQ1:Kingdom Bow + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (22) + + + Earth Crystal + Royal Archer's Longbow + Yew Lumber + + NQ: Yew Lumber + + HQ1:Yew Lumber x2 + HQ2:Yew Lumber x3 + HQ3:Yew Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (22) + + + Wind Crystal + Yew Log + + NQ: Yew Lumber x3 + + HQ1:Yew Lumber x6 + HQ2:Yew Lumber x9 + HQ3:Yew Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (22) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Yew Log x3 + + NQ: Maple Harp + + HQ1:Maple Harp +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (23) + + + Earth Crystal + Coeurl Whisker + Maple Lumber x2 + + NQ: San d'Orian Clogs + + HQ1:Kingdom Clogs + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (23) + + + Wind Crystal + Holly Lumber + Royal Footman's Clogs + + NQ: San d'Orian Spear + + HQ1:Kingdom Spear + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (23) + + + Earth Crystal + Ash Lumber + Royal Spearman's Spear + + NQ: Yew Wand + + HQ1:Yew Wand +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (23) + + + Wind Crystal + Yew Lumber + Yagudo Feather + + NQ: Windurstian Staff + + HQ1:Federation Staff + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (24) + + + Earth Crystal + Holly Lumber + Freesword's Staff + + NQ: Wrapped Bow + + HQ1:Wrapped Bow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (24) +Sub Craft(s): Leathercraft - (6) + + + Wind Crystal + Yew Lumber + Sheep Leather + Wool Thread + + NQ: Yew Fishing Rod + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (24) + + + Wind Crystal + Yew Lumber + Linen Thread + + NQ: Bolt Belt + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (25) +Sub Craft(s): Leathercraft (10) + + + Earth Crystal + Ash Lumber x2 + Sheep Leather + Bronze Bolt Heads x2 + Leather Pouch + + NQ: Elm Lumber + + HQ1:Elm Lumber x2 + HQ2:Elm Lumber x3 + HQ3:Elm Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (25) + + + Wind Crystal + Elm Log + + NQ: Elm Lumber x3 + + HQ1:Elm Lumber x6 + HQ2:Elm Lumber x9 + HQ3:Elm Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (25) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Elm Log x3 + + NQ: Tarutaru Stool + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (25) + + + Earth Crystal + Elm Lumber + Lauan Lumber + + NQ: Tarutaru Stool + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (25) + + + Earth Crystal + Woodworking Kit 25 + + NQ: Elm Shield + + HQ1:Elm Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (26) +Sub Craft(s): Smithing - (22) + + + Earth Crystal + Iron Sheet + Elm Lumber x2 + + NQ: Uchitake x33 + + HQ1:Uchitake x66 + HQ2:Uchitake x99 + HQ3:Uchitake x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (26) + + + Earth Crystal + Toad Oil + Bamboo Stick + Grass Cloth + + NQ: Harp + + HQ1:Harp +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (27) + + + Earth Crystal + Coeurl Whisker + Chestnut Lumber x2 + + NQ: Iron Arrow x33 + + HQ1:Iron Arrow x66 + HQ2:Iron Arrow x99 + HQ3:Iron Arrow x99 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (27) +Sub Craft(s): Smithing - (6) + + + Wind Crystal + Iron Ingot + Ash Lumber + Chocobo Feather x2 + + NQ: Iron Arrow x33 + + HQ1:Iron Arrow x66 + HQ2:Iron Arrow x99 + HQ3:Iron Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (27) + + + Earth Crystal + Arrowwood Lumber + Chocobo Fletchings + Iron Arrowheads + + NQ: Chestnut Lumber + + HQ1:Chestnut Lumber x2 + HQ2:Chestnut Lumber x3 + HQ3:Chestnut Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (28) + + + Wind Crystal + Chestnut Log + + NQ: Chestnut Lumber x3 + + HQ1:Chestnut Lumber x6 + HQ2:Chestnut Lumber x9 + HQ3:Chestnut Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (28) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Chestnut Log x3 + + NQ: Mana Chestnut Lumber + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (28) +Key Item: Wood Purification + + + Wind Crystal + Chestnut Log + Earth Anima + Water Anima + Light Anima + + NQ: Poison Arrow x33 + + HQ1:Poison Arrow x66 + HQ2:Poison Arrow x99 + HQ3:Poison Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (28) + + + Earth Crystal + Arrowwood Lumber + Chocobo Fletchings + Poison Arrowheads + + NQ: Power Bow + + HQ1:Power Bow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (28) +Sub Craft(s): Bonecraft - (8) + + + Wind Crystal + Elm Lumber x2 + Coeurl Whisker + Scorpion Claw + Wool Cloth + + NQ: Elm Staff + + HQ1:Elm Staff +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (29) + + + Wind Crystal + Elm Lumber + Ram Horn + + NQ: Shihei x33 + + HQ1:Shihei x66 + HQ2:Shihei x99 + HQ3:Shihei x99 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (29) + + + Wind Crystal + Black Ink + Bast Parchment x2 + + NQ: Silver Arrow x33 + + HQ1:Silver Arrow x66 + HQ2:Silver Arrow x99 + HQ3:Silver Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (30) + + + Earth Crystal + Ash Lumber + Yagudo Fletchings + Silver Arrowheads + + NQ: Silver Arrow x33 + + HQ1:Silver Arrow x66 + HQ2:Silver Arrow x99 + HQ3:Silver Arrow x99 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (30) +Sub Craft(s): Goldsmithing - (7) + + + Wind Crystal + Arrowwood Lumber + Yagudo Feather x2 + Silver Ingot + + NQ: Silver Arrow x33 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (30) + + + Earth Crystal + Woodworking Kit 30 + + NQ: Transom + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (30) +Sub Craft(s): Alchemy - (??) + + + Earth Crystal + Mahogany Lumber + Sieglinde Putty + Glass Sheet + Silica + Pebble + + +Novice (31-40) +Synthesis Information +Yield Requirements Ingredients + + NQ: Book Holder + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (31) + + + Earth Crystal + Holly Lumber + Lauan Lumber + + NQ: Dogwood Lumber + + HQ1:Dogwood Lumber x2 + HQ2:Dogwood Lumber x3 + HQ3:Dogwood Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (31) + + + Wind Crystal + Dogwood Log + + NQ: Dogwood Lumber x3 + + HQ1:Dogwood Lumber x6 + HQ2:Dogwood Lumber x9 + HQ3:Dogwood Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (31) +Key Item: Lumberjack + + + Wind Crystal + Dogwood Log x3 + Bundling Twine + + NQ: Spear + + HQ1:Spear +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (31) +Sub Craft(s): Smithing - (6) + + + Wind Crystal + Iron Ingot + Ash Lumber + Linen Thread + + NQ: Chestnut Sabots + + HQ1:Chestnut Sabots +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (32) + + + Wind Crystal + Chestnut Lumber + Sheep Leather + + NQ: Chestnut Wand + + HQ1:Solid Wand + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (32) + + + Wind Crystal + Chestnut Lumber + Bird Feather + + NQ: Soshi x33 + + HQ1: Soshi x66 + HQ2: Soshi x99 + HQ3: Soshi x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (32) + + + Earth Crystal + Grass Thread + Black Ink + Bast Parchment x2 + + NQ: Crossbow + + HQ1:Crossbow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (33) +Sub Craft(s): Smithing - (8) + + + Wind Crystal + Iron Ingot + Glass Fiber + Chestnut Lumber + + NQ: Spiked Club + + HQ1:Spiked Club +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (33) +Sub Craft(s): Smithing - (6) + + + Wind Crystal + Walnut Lumber x2 + Bronze Ingot + + NQ: Mahogany Shield + + HQ1:Strong Shield + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (34) +Sub Craft(s): Smithing - (>7) + + + Earth Crystal + Iron Sheet + Mahogany Lumber x2 + + NQ: Mizu-Deppo x33 + + HQ1:Mizu-Deppo x66 + HQ2:Mizu-Deppo x99 + HQ3:Mizu-Deppo x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (34) +Sub Craft(s): Smithing - (7) + + + Earth Crystal + Chestnut Lumber + Bronze Sheet + Distilled Water + + NQ: Ethereal Oak Lumber + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (35) +Key Item: Wood Ensorcellment + + + Wind Crystal + Oak Log + Ice Anima + Wind Anima + Dark Anima + + NQ: Exorcismal Oak Lumber + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (35) +Key Item: Wood Purification + + + Wind Crystal + Oak Lumber + Ice Anima + Earth Anima + Light Anima + + NQ: High Mana Wand + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (35) + + + Wind Crystal + Mana Chestnut Lumber + Chestnut Wand + + NQ: Oak Lumber + + HQ1:Oak Lumber x2 + HQ2:Oak Lumber x3 + HQ3:Oak Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (35) + + + Wind Crystal + Oak Log + + NQ: Oak Lumber x3 + + HQ1:Oak Lumber x6 + HQ2:Oak Lumber x9 + HQ3:Oak Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (35) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Oak Log x3 + + NQ: Wicker Box + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (35) +Sub Craft(s): Leathercraft - (30) + + + Earth Crystal + Willow Lumber + Rattan Lumber x3 + Ram Leather + + NQ: Black Bolt x33 + + HQ1:Black Bolt x66 + HQ2:Black Bolt x99 + HQ3:Black Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (35) + + + Earth Crystal + Teak Lumber + Black Bolt Heads + + NQ: Black Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (35) + + + Earth Crystal + Bundling Twine + Teak Lumber x3 + Black Bolt Heads x3 + + NQ: Black Bolt x33 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (35) + + + Earth Crystal + Woodworking Kit 35 + + NQ: Valance + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (35) +Sub Craft(s): Alchemy - (??) + + + Earth Crystal + Chestnut Lumber + Sieglinde Putty + Glass Sheet + + NQ: Tarutaru Desk + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (36) + + + Earth Crystal + Lauan Lumber x5 + Linen Cloth x2 + + NQ: Fairweather Fetish + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (36) + + + Earth Crystal + Saruta Cotton + Bast Parchment + + NQ: Tracker's Bow + + HQ1: Tracker's Bow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (36) +Sub Craft(s): Smithing - (8) + + + Wind Crystal + Mahogany Heartwood + Crossbow + + NQ: Tactician Magician's Wand +1 + + HQ1:Tactician Magician's Wand +2 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (37) + + + Wind Crystal + Tactician Magician's Wand + Chestnut Lumber + + NQ: Traversiere + + HQ1:Traversiere +1 + HQ2:Traversiere +2 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (37) + + + Wind Crystal + Oak Lumber + Parchment + + NQ: Caisson + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (38) +Sub Craft(s): Smithing - (30) + + + Earth Crystal + Bronze Sheet x2 + Chestnut Lumber x2 + + NQ: Great Bow + + HQ1:Great Bow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (38) +Sub Craft(s): Bonecraft - (15) + + + Wind Crystal + Coeurl Whisker + Chestnut Lumber x2 + Velvet Cloth + Scorpion Claw + + NQ: Beetle Arrow x33 + + HQ1:Beetle Arrow x66 + HQ2:Beetle Arrow x99 + HQ3:Beetle Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (39) + + + Earth Crystal + Arrowwood Lumber + Chocobo Fletchings + Beetle Arrowheads + + NQ: Composite Bow + + HQ1:Composite Bow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (39) + + + Wind Crystal + Ash Lumber + Willow Lumber + Linen Cloth + Wool Thread + + NQ: Kawahori-Ogi x33 + + HQ1:Kawahori-Ogi x66 + HQ2:Kawahori-Ogi x99 + HQ3:Kawahori-Ogi x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (39) + + + Earth Crystal + Animal Glue + Bamboo Stick + Bast Parchment + + NQ: Vermihumus x4 + + HQ1: Vermihumus x6 + HQ2: Vermihumus x8 + HQ3: Vermihumus x10 + + DarkCrystal-Icon.gif + +Main Craft: Woodworking - (39) + + + Dark Crystal + Humus x2 + + NQ: Vermihumus x4 + + HQ1: Vermihumus x6 + HQ2: Vermihumus x8 + HQ3: Vermihumus x10 + + DarkCrystal-Icon.gif + +Main Craft: Woodworking - (39) + + + Dark Crystal + Derfland Humus + + NQ: Vermihumus x6 + + HQ1: Vermihumus x8 + HQ2: Vermihumus x10 + HQ3: Vermihumus x12 + + DarkCrystal-Icon.gif + +Main Craft: Woodworking - (39) + + + Dark Crystal + Rich Humus x2 + + NQ: Oak Table + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (40) + + + Earth Crystal + Oak Lumber x4 + + NQ: Bahut + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (40) + + + Earth Crystal + Walnut Lumber x5 + Rattan Lumber x3 + + NQ: Bahut + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (40) + + + Earth Crystal + Woodworking Kit 40 + + NQ: San d'Orian Sill + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (40) +Sub Craft(s): Alchemy + + + Earth Crystal + Mahogany Lumber + Sieglinde Putty + Glass Sheet + + NQ: Windurstian Sill + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (40) +Sub Craft(s): Alchemy + + + Earth Crystal + Dogwood Lumber + Sieglinde Putty + Glass Sheet + + NQ: Bastokan Sill + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (40) +Sub Craft(s): Alchemy + + + Earth Crystal + Ebony Lumber + Sieglinde Putty + Glass Sheet + + +Apprentice (41-50) +Synthesis Information +Yield Requirements Ingredients + + NQ: Mokujin x33 + + HQ1: Mokujin x66 + HQ2: Mokujin x99 + HQ3: Mokujin x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (41) + + + Earth Crystal + Linen Thread + Silk Cloth + Feyweald Log + + NQ: Lance + + HQ1:Lance +1 + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (41) +Sub Craft(s): Smithing - (38) + + + Fire Crystal + Ash Lumber x2 + Steel Ingot x2 + + NQ: Oak Cudgel + + HQ1:Oak Cudgel +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (41) + + + Wind Crystal + Oak Lumber + + NQ: Fang Arrow x33 + + HQ1:Fang Arrow x66 + HQ2:Fang Arrow x99 + HQ3:Fang Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (42) + + + Earth Crystal + Arrowwood Lumber + Yagudo Fletchings + Fang Arrowheads + + NQ: Halberd + + HQ1:Halberd +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (42) +Sub Craft(s): Smithing - (11) + + + Earth Crystal + Ash Lumber + Steel Ingot + Wool Thread + + NQ: Bulky Coffer + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (43) +Sub Craft(s): Goldsmithing - (??) + + + Earth Crystal + Gold Ore + Light Chest + + NQ: Ebony Sabots + + HQ1:Ebony Sabots +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (43) + + + Wind Crystal + Ebony Lumber + Sheep Leather + + NQ: Zamburak + + HQ1:Zamburak +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (43) +Sub Craft(s): Smithing - (19) + + + Wind Crystal + Coeurl Whisker + Steel Ingot + Oak Lumber + + NQ: Flower Stand + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (44) + + + Earth Crystal + Yew Lumber + Lauan Lumber + + NQ: Oak Staff + + HQ1:Oak Staff +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (44) + + + Wind Crystal + Oak Lumber + Black Tiger Fang + + NQ: Warp Cudgel + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (44) + + + Wind Crystal + Ethereal Oak Lumber + Oak Cudgel + + NQ: Bast Parchment x12 + + LightningCrystal-Icon.gif + +Main Craft: Woodworking - (45) +Sub Craft(s): Alchemy - (29) + + + Lightning Crystal + Elm Log + Moko Grass + Distilled Water + + NQ: Rosewood Lumber + + HQ1:Rosewood Lumber x2 + HQ2:Rosewood Lumber x3 + HQ3:Rosewood Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (45) + + + Wind Crystal + Rosewood Log + + NQ: Rosewood Lumber x3 + + HQ1:Rosewood Lumber x6 + HQ2:Rosewood Lumber x9 + HQ3:Rosewood Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (45) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Rosewood Log x3 + + NQ: Rosewood Lumber + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (45) + + + Wind Crystal + Woodworking Kit 45 + + NQ: Puce Chest + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (45) +Sub Craft(s): Smithing - (??) + + + Earth Crystal + Iron Ingot + Thief's Tools + Green Textile Dye + Yellow Textile Dye + Guatambu Lumber + + NQ: Elm Pole + + HQ1:Elm Pole +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (46) + + + Wind Crystal + Elm Lumber x2 + + NQ: Mythril Bolt x33 + + HQ1:Mythril Bolt x66 + HQ2:Mythril Bolt x99 + HQ3:Mythril Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (46) + + + Earth Crystal + Walnut Lumber + Mythril Bolt Heads + + NQ: Mythril Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (46) +Key Item: Boltmaker + + + Earth Crystal + Walnut Lumber x3 + Mythril Bolt Heads x3 + Bundling Twine + + NQ: Royal Knight Army Lance +1 + + HQ1:Royal Knight Army Lance +2 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (46) + + + Earth Crystal + Royal Knight Army Lance + Ash Lumber + + NQ: Fire Arrow x33 + + HQ1:Fire Arrow x66 + HQ2:Fire Arrow x99 + HQ3:Fire Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (47) + + + Earth Crystal + Ash Lumber + Fire Arrowheads + Bird Fletchings + + NQ: Rose Wand + + HQ1:Rose Wand +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (47) + + + Wind Crystal + Rosewood Lumber + Black Chocobo Feather + + NQ: San d'Orian Halberd + + HQ1:Kingdom Halberd + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (47) + + + Earth Crystal + Ash Lumber + Royal Squire's Halberd + + NQ: Battle Bow + + HQ1:Battle Bow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (48) +Sub Craft(s): Bonecraft - (15) + + + Wind Crystal + Coeurl Whisker + Chestnut Lumber x2 + Silk Cloth + Scorpion Claw + + NQ: Oak Shield + + HQ1:Oak Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (48) +Sub Craft(s): Smithing - (12) + + + Earth Crystal + Iron Sheet + Oak Lumber x2 + + NQ: Passaddhi Staff + + HQ1:Passaddhi Staff +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (48) + + + Wind Crystal + Hefty Oak Lumber + Black Tiger Fang + + NQ: Horn Arrow x33 + + HQ1:Horn Arrow x66 + HQ2:Horn Arrow x99 + HQ3:Horn Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (49) + + + Earth Crystal + Arrowwood Lumber + Horn Arrowheads + Bird Fletchings + + NQ: Oak Bed + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (49) +Sub Craft(s): Clothcraft - (49) + + + Earth Crystal + Oak Lumber x4 + Linen Thread + Linen Cloth x3 + + NQ: Coated Shield + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (50) + + + Earth Crystal + Exorcismal Oak Lumber + Oak Shield + + NQ: Quarterstaff + + HQ1:Footman's Staff + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (50) +Sub Craft(s): Smithing - (11) + + + Wind Crystal + Iron Ingot + Walnut Lumber x2 + + NQ: Sleep Arrow x33 + + HQ1:Sleep Arrow x66 + HQ2:Sleep Arrow x99 + HQ3:Sleep Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (50) + + + Earth Crystal + Arrowwood Lumber + Bird Fletchings + Sleep Arrowheads + + NQ: Sleep Arrow x33 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (50) + + + Earth Crystal + Woodworking Kit 50 + + NQ: Kotatsu Table + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (50) +Sub Craft(s): Clothcraft - (~24) + + + Wind Crystal + Bronze Ingot + Rosewood Lumber + Cotton Cloth x2 + Saruta Cotton x2 + Bomb Arm + + +Journeyman (51-60) +Synthesis Information +Yield Requirements Ingredients + + NQ: Desk + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (51) +Sub Craft(s): Clothcraft - (26) + + + Earth Crystal + Lauan Lumber + Elm Lumber + Linen Cloth + + NQ: Fastwater Fishing Rod + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (51) + + + Light Crystal + Broken Fastwater Rod + + NQ: Mahogany Lumber + + HQ1:Mahogany Lumber x2 + HQ2:Mahogany Lumber x3 + HQ3:Mahogany Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (51) + + + Wind Crystal + Mahogany Log + + NQ: Mahogany Lumber x3 + + HQ1:Mahogany Lumber x6 + HQ2:Mahogany Lumber x9 + HQ3:Mahogany Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (51) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Mahogany Log x3 + + NQ: Kamayari + + HQ1:Kamayari +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (52) +Sub Craft(s): Smithing - (41) + + + Earth Crystal + Iron Ingot + Oak Lumber + Tama-Hagane + Silk Thread + + NQ: Paralysis Arrow x33 + + HQ1:Paralysis Arrow x66 + HQ2:Paralysis Arrow x99 + HQ3:Paralysis Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (52) + + + Earth Crystal + Dogwood Lumber + Apkallu Fletchings + Paralysis Arrowheads + + NQ: Furusumi x33 + + HQ1: Furusumi x66 + HQ2: Furusumi x66 + HQ3: Furusumi x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (52) +Sub Craft(s): Alchemy - (??) + + + Earth Crystal + Kapor Log + Animal Glue + Distilled Water + Soot + + NQ: Azure Chest + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (53) +Sub Craft(s): Goldsmithing - (??), Alchemy - (??) + + + Earth Crystal + Gold Ore + Blue Textile Dye + Light Chest + + NQ: Meifu Goma x33 + + HQ1:Meifu Goma x66 + HQ2:Meifu Goma x99 + HQ3:Meifu Goma x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (53) +Sub Craft(s): Clothcraft - (11), Alchemy - (46) + + + Earth Crystal + Arrowwood Lumber + Koma + Firesand + Cotton Thread + + NQ: Rose Harp + + HQ1:Rose Harp +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (53) + + + Earth Crystal + Coeurl Whisker + Rosewood Lumber x2 + + NQ: Pastoral Staff + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (53) +Key Item: Wood Ensorcellment + + + Earth Crystal + Lambent Fire Cell + Lambent Wind Cell + Quarterstaff + + NQ: Tavern Bench + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (53) + + + Earth Crystal + Mahogany Lumber x2 + Rosewood Lumber x2 + + NQ: Great Club + + HQ1:Great Club +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (54) +Sub Craft(s): Smithing - (14) + + + Wind Crystal + Bronze Ingot + Mahogany Lumber + + NQ: Amigo Cactus + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (54) +Sub Craft(s): Alchemy - (16) + + + Earth Crystal + Cactus Arm + Humus + Karugo Clay + Red Gravel + Yellow Rock + + NQ: Amiga Cactus + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (54) +Sub Craft(s): Alchemy - (16) + + + Earth Crystal + Cactus Arm + Humus + Karugo Clay + Red Gravel + Red Rock + + NQ: Oak Pole + + HQ1:Oak Pole +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (55) + + + Wind Crystal + Oak Lumber x2 + + NQ: Obsidian Arrow x33 + + HQ1: Obsidian Arrow x66 + HQ2: Obsidian Arrow x99 + HQ3: Obsidian Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (55) + + + Earth Crystal + Obsidian Arrowheads + Teak Lumber + Gnat Fletchings + + NQ: Fastwater Fishing Rod + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (55) + + + Wind Crystal + Woodworking Kit 55 + + NQ: Jinko x33 + + HQ1: Jinko x66 + HQ2: Jinko x99 + HQ3: Jinko x99 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (55) + + + Wind Crystal + Aquilaria Log + + NQ: Fastwater Fishing Rod + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (56) + + + Wind Crystal + Elm Lumber + Wool Thread + + NQ: Stepping Stool + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (56) + + + Earth Crystal + Ebony Lumber x2 + Oak Lumber x3 + + NQ: Kaman + + HQ1:Kaman +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (57) + + + Wind Crystal + Elm Lumber + Bamboo Stick + Silk Thread + Wool Cloth + + NQ: Earth Arrow x33 + + HQ1:Earth Arrow x66 + HQ2:Earth Arrow x99 + HQ3:Earth Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (57) + + + Earth Crystal + Dogwood Lumber + Puk Fletchings + Earth Arrowheads + + NQ: Ice Arrow x33 + + HQ1:Ice Arrow x66 + HQ2:Ice Arrow x99 + HQ3:Ice Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (57) + + + Earth Crystal + Arrowwood Lumber + Insect Fletchings + Ice Arrowheads + + NQ: Lightning Arrow x33 + + HQ1:Lightning Arrow x66 + HQ2:Lightning Arrow x99 + HQ3:Lightning Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (57) + + + Earth Crystal + Arrowwood Lumber + Insect Fletchings + Lightning Arrowheads + + NQ: Water Arrow x33 + + HQ1:Water Arrow x66 + HQ2:Water Arrow x99 + HQ3:Water Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (57) + + + Earth Crystal + Dogwood Lumber + Puk Fletchings + Water Arrowheads + + NQ: Wind Arrow x33 + + HQ1:Wind Arrow x66 + HQ2:Wind Arrow x99 + HQ3:Wind Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (57) + + + Earth Crystal + Dogwood Lumber + Puk Fletchings + Wind Arrowheads + + NQ: War Bow + + HQ1:War Bow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (58) +Sub Craft(s): Alchemy - (25) + + + Wind Crystal + Oak Lumber x2 + Silk Cloth + Carbon Fiber + Glass Fiber + + NQ: Arbalest + + HQ1:Arbalest +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (59) +Sub Craft(s): Smithing - (28) + + + Wind Crystal + Carbon Fiber + Mahogany Lumber + Mythril Ingot + + NQ: Scorpion Arrow x33 + + HQ1:Scorpion Arrow x66 + HQ2:Scorpion Arrow x99 + HQ3:Scorpion Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (59) + + + Earth Crystal + Arrowwood Lumber + Scorpion Arrowheads + Insect Fletchings + + NQ: Federal Mercenary's Hammock + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (59) + + + Earth Crystal + Bamboo Stick + Lauan Lumber + Holly Lumber x2 + Rattan Lumber x3 + Wisteria Lumber + + NQ: Mahogany Bed + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (60) +Sub Craft(s): Clothcraft - (53) + + + Earth Crystal + Mahogany Lumber x4 + Wool Thread + Wool Cloth x3 + + NQ: Mythril Lance + + HQ1:Mythril Lance +1 + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (60) +Sub Craft(s): Smithing - (42) + + + Fire Crystal + Mythril Ingot x2 + Ash Lumber x2 + + NQ: Red Viola + + WaterCrystal-Icon.gif + +Main Craft: Woodworking - (60) + + + Water Crystal + Red Rock + Granite + Red Gravel + Wildgrass Seeds + Humus + + NQ: Blue Viola + + WaterCrystal-Icon.gif + +Main Craft: Woodworking - (60) + + + Water Crystal + Blue Rock + Granite + Red Gravel + Wildgrass Seeds + Humus + + NQ: Yellow Viola + + WaterCrystal-Icon.gif + +Main Craft: Woodworking - (60) + + + Water Crystal + Yellow Rock + Granite + Red Gravel + Wildgrass Seeds + Humus + + NQ: White Viola + + WaterCrystal-Icon.gif + +Main Craft: Woodworking - (60) + + + Water Crystal + White Rock + Granite + Red Gravel + Wildgrass Seeds + Humus + + NQ: Personal Table + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (60) +Sub Craft(s): Goldsmithing - (??) + + + Earth Crystal + Walnut Lumber + Rosewood Lumber + Gold Ingot + + NQ: White Viola + + WaterCrystal-Icon.gif + +Main Craft: Woodworking - (60) + + + Water Crystal + Woodworking Kit 60 + + +Craftsman (61-70) +Synthesis Information +Yield Requirements Ingredients + + NQ: Chest + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (61) + + + Earth Crystal + Rattan Lumber x3 + Lauan Lumber x2 + + NQ: Ebony Lumber + + HQ1:Ebony Lumber x2 + HQ2:Ebony Lumber x3 + HQ3:Ebony Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (61) + + + Wind Crystal + Ebony Log + + NQ: Ebony Lumber x3 + + HQ1:Ebony Lumber x6 + HQ2:Ebony Lumber x9 + HQ3:Ebony Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (61) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Ebony Log x3 + + NQ: Gueridon + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (61) +Sub Craft(s): Goldsmithing - (??) + + + Earth Crystal + Walnut Lumber x2 + Rosewood Lumber + Gold Ingot + + NQ: Darksteel Bolt x33 + + HQ1:Darksteel Bolt x66 + HQ2:Darksteel Bolt x99 + HQ3:Darksteel Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (62) + + + Earth Crystal + Darksteel Bolt Heads + Yew Lumber + + NQ: Darksteel Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (62) +Key Item: Boltmaker + + + Earth Crystal + Yew Lumber x3 + Darksteel Bolt Heads x3 + Bundling Twine + + NQ: Mahogany Staff + + HQ1:Heavy Staff + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (62) + + + Wind Crystal + Demon Horn + Turquoise + Mahogany Lumber + + NQ: Fay Staff + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (62) + + + Wind Crystal + Turquoise + Gargouille Horn + Feyweald Lumber + + NQ: Aureous Chest + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (62) +Sub Craft(s): Goldsmithing - (??) + + + Earth Crystal + Walnut Lumber x2 + Mahogany Lumber + Gold Ingot + + NQ: Coffer + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (63) +Sub Craft(s): Goldsmithing - (11) + + + Earth Crystal + Brass Sheet + Yew Lumber x5 + Rosewood Lumber + + NQ: Hydro Pump x66 + + HQ1:Hydro Pump x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (63) +Sub Craft(s): Alchemy - (54) + + + Earth Crystal + Bamboo Stick + Chestnut Lumber + Coeurl Whisker + Carbon Fiber + Animal Glue + Water Cluster + + NQ: Tarutaru Fishing Rod + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (63) + + + Light Crystal + Broken Tarutaru Rod + + NQ: Fay Crozier + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (63) + + + Wind Crystal + Gargouille Eye + Feyweald Lumber + + NQ: Angel's Flute + + HQ1:Angel Flute +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (64) + + + Wind Crystal + Rosewood Lumber + Parchment + + NQ: Lightning Bow + + HQ1:Lightning Bow +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (64) + + + Earth Crystal + Ose Whisker + Kaman + + NQ: Royal Squire's Bunk + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (64) + + + Earth Crystal + Iron Sheet + Chestnut Lumber + Walnut Lumber + Ash Lumber x2 + Wool Cloth x2 + Sheep Wool + + NQ: Qi Staff + + HQ1:Qi Staff +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (64) + + + Wind Crystal + Mahogany Lumber + Demon Horn + Blue Jasper + + NQ: Floral Nightstand + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (64) +Sub Craft(s): Goldsmithing - (?) + + + Earth Crystal + Rosewood Lumber + Ebony Lumber + Gold Ingot + + NQ: Gold Arrow x33 + + HQ1:Gold Arrow x66 + HQ2:Gold Arrow x99 + HQ3:Gold Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (65) + + + Earth Crystal + Ash Lumber + Yagudo Fletchings + Gold Arrowheads + + NQ: Secretaire + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (65) + + + Earth Crystal + Mahogany Lumber x4 + + NQ: Tarutaru Fishing Rod + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (65) + + + Wind Crystal + Walnut Lumber + Silk Thread + + NQ: Oxidant Bolt x33 + + HQ1:Oxidant Bolt x66 + HQ2:Oxidant Bolt x99 + HQ3:Oxidant Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (65) + + + Earth Crystal + Urunday Lumber + Acid Bolt Heads + + NQ: Oxidant Bolt x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (65) +Key Item: Boltmaker + + + Earth Crystal + Urunday Lumber x3 + Acid Bolt Heads x3 + Bundling Twine + + NQ: Gilded Chest + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (65) +Sub Craft(s): Goldsmithing - (≤27) + + + Earth Crystal + Walnut Lumber + Mahogany Lumber x2 + Gold Ingot + + NQ: Tarutaru Fishing Rod + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (65) + + + Wind Crystal + Woodworking Kit 65 + + NQ: Ebony Wand + + HQ1:Ebony Wand +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (66) + + + Wind Crystal + Ebony Lumber + Giant Bird Feather + + NQ: Revenging Staff + + HQ1:Revenging Staff +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (66) + + + Wind Crystal + Arioch Fang + Oak Lumber + + NQ: Fay Lance + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (66) + + + Fire Crystal + Darksteel Ingot x2 + Ash Lumber + Feyweald Lumber + + NQ: Feyweald Lumber + + HQ1: Feyweald Lumber x2 + HQ2: Feyweald Lumber x3 + HQ3: Feyweald Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (66) + + + Wind Crystal + Feyweald Log + + NQ: Deepbed Soil x4 + + HQ1: Deepbed Soil x6 + HQ2: Deepbed Soil x8 + HQ3: Deepbed Soil x10 + + DarkCrystal-Icon.gif + +Main Craft: Woodworking - (66) +Sub Craft(s): Cooking - (15) + + + Dark Crystal + Beech Log + Woozyshroom + Danceshroom + Sleepshroom + + NQ: Mensa Lunata + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (66) +Sub Craft(s): Goldsmithing - (??) + + + Earth Crystal + Walnut Lumber x3 + Rosewood Lumber + Gold Ingot + + NQ: Beverage Barrel + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (67) +Sub Craft(s): Cooking - (32) + + + Earth Crystal + Water Barrel + Oak Lumber x2 + Grape Juice x3 + + NQ: Partisan + + HQ1:Partisan +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (67) +Sub Craft(s): Smithing - (37) + + + Wind Crystal + Ash Lumber + Darksteel Ingot + Silver Thread + + NQ: Red Round Table + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (67) +Sub Craft(s): Clothcraft - (46), Alchemy - (7) + + + Earth Crystal + Lauan Lumber + Linen Cloth x2 + Velvet Cloth x2 + Platinum Silk Thread + Teak Lumber + Red Textile Dye + + NQ: Blue Round Table + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (67) +Sub Craft(s): Clothcraft - (46), Alchemy - (7) + + + Earth Crystal + Lauan Lumber + Linen Cloth x2 + Velvet Cloth x2 + Platinum Silk Thread + Teak Lumber + Blue Textile Dye + + NQ: Green Round Table + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (67) +Sub Craft(s): Clothcraft - (46), Alchemy - (7) + + + Earth Crystal + Lauan Lumber + Linen Cloth x2 + Velvet Cloth x2 + Platinum Silk Thread + Teak Lumber + Green Textile Dye + + NQ: Yellow Round Table + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (67) +Sub Craft(s): Clothcraft - (46), Alchemy - (7) + + + Earth Crystal + Lauan Lumber + Linen Cloth x2 + Velvet Cloth x2 + Platinum Silk Thread + Teak Lumber + Yellow Textile Dye + + NQ: White Round Table + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (67) +Sub Craft(s): Clothcraft - (46), Alchemy - (7) + + + Earth Crystal + Lauan Lumber + Linen Cloth x2 + Velvet Cloth x2 + Platinum Silk Thread + Teak Lumber + White Textile Dye + + NQ: Rococo Table + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (67) + + + Earth Crystal + Ebony Lumber x4 + + NQ: Bodkin Arrow x33 + + HQ1:Bodkin Arrow x66 + HQ2:Bodkin Arrow x99 + HQ3:Bodkin Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (68) + + + Earth Crystal + Arrowwood Lumber + Black Chocobo Fletchings + Armored Arrowheads + + NQ: Mahogany Pole + + HQ1:Mahogany Pole +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (68) + + + Wind Crystal + Mahogany Lumber x2 + + NQ: Angon x33 + + HQ1:Angon x66 + HQ2:Angon x99 + HQ3:Angon x99 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (69) +Sub Craft(s): Smithing - (21) + + + Wind Crystal + Iron Ingot x2 + Yew Lumber x3 + Wool Thread + + NQ: Console + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (69) +Sub Craft(s): Smithing - (40) + + + Earth Crystal + Iron Sheet x2 + Dogwood Lumber x3 + + NQ: Demon Arrow x33 + + HQ1:Demon Arrow x66 + HQ2:Demon Arrow x99 + HQ3:Demon Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (69) + + + Earth Crystal + Arrowwood Lumber + Black Chocobo Fletchings + Demon Arrowheads + + NQ: Rapid Bow + + HQ1:Rapid Bow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (69) + + + Wind Crystal + Walnut Lumber + Ebony Lumber + Silver Thread + Silk Cloth + + NQ: Heavy Crossbow + + HQ1:Heavy Crossbow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (70) +Sub Craft(s): Smithing - (32), Bonecraft - (19) + + + Wind Crystal + Ebony Lumber + Carbon Fiber + Darksteel Ingot + Mahogany Lumber + Giant Femur + + NQ: Hickory Shield + + HQ1:Picaroon's Shield + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (70) +Sub Craft(s): Smithing - (8) + + + Earth Crystal + Iron Sheet + Hickory Lumber x2 + + NQ: Fay Gendawa + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (70) +Sub Craft(s): Bonecraft - (45) + + + Wind Crystal + Ancient Lumber + Rainbow Cloth + Rafflesia Vine + Gargouille Horn + Feyweald Lumber + + NQ: Lu Shang's Fishing Rod + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (70) + + + Light Crystal + Broken Lu Shang's Rod + + NQ: Lu Shang's Fishing Rod +1 + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (70) + + + Light Crystal + Broken Lu Shang's Fishing Rod +1 + + NQ: Luxurious Chest + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (70) +Sub Craft(s): Goldsmithing - (??) + + + Earth Crystal + Walnut Lumber x4 + Mahogany Lumber x2 + Gold Ingot + + +Artisan (71-80) +Synthesis Information +Yield Requirements Ingredients + + NQ: Ebony Harp + + HQ1:Ebony Harp +1 + HQ2:Ebony Harp +2 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (71) + + + Earth Crystal + Ebony Lumber x2 + Coeurl Whisker + + NQ: Water Barrel + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (71) + + + Earth Crystal + Iron Sheet + Oak Lumber x3 + + NQ: Bongo Drum + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (71) +Sub Craft(s): Leathercraft - (??) + + + Earth Crystal + Bamboo Stick + Dhalmel Hide + Buffalo Leather + + NQ: Ebony Harp + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (71) + + + Earth Crystal + Woodworking Kit 71 + + NQ: Ancient Lumber + + HQ1:Ancient Lumber x2 + HQ2:Ancient Lumber x3 + HQ3:Ancient Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (72) + + + Wind Crystal + Petrified Log + + NQ: Ancient Lumber x3 + + HQ1:Ancient Lumber x6 + HQ2:Ancient Lumber x9 + HQ3:Ancient Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (72) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Petrified Log x3 + + NQ: Hume Fishing Rod + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (72) + + + Light Crystal + Broken Hume Rod + + NQ: Tarutaru Folding Screen + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (72) + + + Earth Crystal + Rattan Lumber x3 + Parchment x3 + + NQ: Sanctified Lumber + + HQ1: Sanctified Lumber x2 + HQ2: Sanctified Lumber x3 + HQ3: Sanctified Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (72) +Key Item: Wood Purification + + + Wind Crystal + Petrified Log + Water Anima + Ice Anima + Light Anima + + NQ: Chiffonier + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (73) +Sub Craft(s): Smithing - (26) + + + Earth Crystal + Iron Sheet x2 + Rosewood Lumber x3 + + NQ: Clothespole + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (73) + + + Light Crystal + Broken Clothespole + + NQ: Musketeer's Pole +1 + + HQ1:Musketeer's Pole +2 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (73) + + + Earth Crystal + Musketeer's Pole + Mahogany Lumber + + NQ: Platinum Arrow x33 + + HQ1:Platinum Arrow x66 + HQ2:Platinum Arrow x99 + HQ3:Platinum Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (73) + + + Earth Crystal + Ash Lumber + Yagudo Fletchings + Platinum Arrowheads + + NQ: Gilded Shelf + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (73) +Sub Craft(s): Goldsmithing - (≤27) + + + Earth Crystal + Walnut Lumber x4 + Mahogany Lumber x2 + Gold Ingot x2 + + NQ: Bastokan Staff + + HQ1:Republic Staff + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (74) + + + Earth Crystal + Legionnaire's Staff + Ebony Lumber + + NQ: Couse + + HQ1:Couse +1 + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (74) +Sub Craft(s): Smithing - (42), Goldsmithing - (5) + + + Fire Crystal + Brass Ingot + Darksteel Ingot x2 + Ash Lumber + + NQ: Jeunoan Armoire + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (74) +Sub Craft(s): Goldsmithing - (??) + + + Earth Crystal + Walnut Lumber + Rosewood Lumber + Ebony Lumber x2 + Gold Ingot + + NQ: Jeunoan Dresser + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (74) +Sub Craft(s): Goldsmithing - (??) + + + Earth Crystal + Walnut Lumber x2 + Rosewood Lumber + Ebony Lumber x4 + Gold Ingot + + NQ: Hume Fishing Rod + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (74) + + + Wind Crystal + Rosewood Lumber + Silver Thread + + NQ: Round Shield + + HQ1:Round Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (74) +Sub Craft(s): Smithing - (19) + + + Earth Crystal + Iron Sheet + Oak Lumber + Mahogany Lumber + + NQ: Hume Fishing Rod + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (74) + + + Wind Crystal + Woodworking Kit 74 + + NQ: Bureau + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (75) +Sub Craft(s): Smithing - (41) + + + Earth Crystal + Darksteel Sheet + Rosewood Lumber x2 + Mahogany Lumber x2 + + NQ: Dark Staff + + HQ1:Pluto's Staff + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (75) + + + Wind Crystal + Ebony Lumber + Dark Bead + + NQ: Earth Staff + + HQ1:Terra's Staff + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (75) + + + Wind Crystal + Ebony Lumber + Earth Bead + + NQ: Fire Staff + + HQ1:Vulcan's Staff + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (75) + + + Wind Crystal + Ebony Lumber + Fire Bead + + NQ: Ice Staff + + HQ1:Aquilo's Staff + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (75) + + + Wind Crystal + Ebony Lumber + Ice Bead + + NQ: Light Staff + + HQ1:Apollo's Staff + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (75) + + + Wind Crystal + Ebony Lumber + Light Bead + + NQ: Thunder Staff + + HQ1:Jupiter's Staff + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (75) + + + Wind Crystal + Ebony Lumber + Lightning Bead + + NQ: Water Staff + + HQ1:Neptune's Staff + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (75) + + + Wind Crystal + Ebony Lumber + Water Bead + + NQ: Wind Staff + + HQ1:Auster's Staff + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (75) + + + Wind Crystal + Ebony Lumber + Wind Bead + + NQ: Darksteel Lance + + HQ1:Darksteel Lance +1 + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (76) +Sub Craft(s): Smithing - (51) + + + Fire Crystal + Ash Lumber x2 + Darksteel Ingot x2 + + NQ: Kilo Pump x66 + + HQ1:Kilo Pump x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (76) +Sub Craft(s): Alchemy - (54) + + + Earth Crystal + Bamboo Stick + Chestnut Lumber + Coeurl Whisker x2 + Carbon Fiber + Animal Glue + Water Cluster + + NQ: Ngoma + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (76) +Sub Craft(s): Leathercraft - (60) + + + Wind Crystal + Divine Log + Buffalo Leather + + NQ: Clothespole + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (77) + + + Wind Crystal + Mahogany Lumber + Silk Thread + + NQ: Commode + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (77) + + + Earth Crystal + Rosewood Lumber x5 + + NQ: Dispel Couse + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (77) + + + Wind Crystal + Bewitched Ash Lumber + Couse + + NQ: Noble's Bed + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (78) +Sub Craft(s): Goldsmithing - (50), Clothcraft - (56) + + + Earth Crystal + Gold Ingot + Velvet Cloth + Mahogany Lumber + Rosewood Lumber x3 + Gold Thread + Silk Cloth + + NQ: Velocity Bow + + HQ1:Velocity Bow +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (78) + + + Earth Crystal + Flauros Whisker + Heavy Crossbow + + NQ: Partition + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (78) + + + Earth Crystal + Mahogany Lumber x4 + Rattan Lumber x4 + + NQ: Spence + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (78) +Sub Craft(s): Smithing - (44) + + + Earth Crystal + Hickory Lumber x2 + Teak Lumber x2 + Walnut Lumber x3 + Darksteel Ingot + + NQ: Ebony Pole + + HQ1:Ebony Pole +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (79) + + + Wind Crystal + Ebony Lumber x2 + + NQ: Scimitar Cactus + + WaterCrystal-Icon.gif + +Main Craft: Woodworking - (79) +Sub Craft(s): Smithing - (20) + + + Water Crystal + Iron Sheet + Red Gravel + Cactus Arm + Humus + + NQ: Windurstian Tea Set + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (79) + + + Wind Crystal + Jacaranda Lumber + Bast Parchment + + NQ: Tower Shield + + HQ1:Tower Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (80) +Sub Craft(s): Goldsmithing - (11) + + + Earth Crystal + Ebony Lumber + Brass Ingot + Brass Sheet + Oak Lumber x2 + Mahogany Lumber + + NQ: River Aquarium + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (80) +Sub Craft(s): Alchemy - (36) + + + Light Crystal + Petrified Log + Oak Lumber + Sieglinde Putty + Glass Sheet + Freshwater Set + Kayabaligi x3 + + NQ: Freshwater Aquarium + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (80) +Sub Craft(s): Alchemy - (36) + + + Light Crystal + Petrified Log + Oak Lumber + Sieglinde Putty + Glass Sheet + Freshwater Set + Pipira x3 + + NQ: Beech Lumber + + HQ1:Beech Lumber x2 + HQ2:Beech Lumber x3 + HQ3:Beech Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (80) + + + Wind Crystal + Beech Log + + NQ: Beech Lumber x3 + + HQ1:Beech Lumber x6 + HQ2:Beech Lumber x9 + HQ3:Beech Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (80) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Beech Log x3 + + NQ: Semainier + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (80) +Sub Craft(s): Goldsmithing - (??) + + + Earth Crystal + Rosewood Lumber + Ebony Lumber x5 + Gold Ingot x2 + + +Adept (81-90) +Synthesis Information +Yield Requirements Ingredients + + NQ: Battle Fork + + HQ1:Battle Fork +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (81) + + + Earth Crystal + Ash Lumber + Trident + + NQ: Cabinet + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (81) + + + Earth Crystal + Holly Lumber + Oak Lumber x4 + + NQ: Marid Arrow x33 + + HQ1:Marid Arrow x66 + HQ2:Marid Arrow x99 + HQ3:Marid Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (81) + + + Earth Crystal + Dogwood Lumber + Apkallu Fletchings + Marid Tusk Arrowheads + + NQ: Cabinet + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (81) + + + Earth Crystal + Woodworking Kit 81 + + NQ: Dark Mezraq + + HQ1:Dark Mezraq +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (82) +Sub Craft(s): Goldsmithing - (50), Smithing - (49) + + + Wind Crystal + Darksteel Ingot x2 + Ebony Lumber + Platinum Ingot + Wamoura Silk + + NQ: Leo Crossbow + + HQ1:Leo Crossbow +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (82) + + + Earth Crystal + Mahogany Lumber + Lion Crossbow + + NQ: Nymph Shield + + HQ1:Nymph Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (82) + + + Earth Crystal + Faerie Shield + Oak Lumber + + NQ: Yellow Hobby Bo + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (82) +Sub Craft(s): Goldsmithing - (7) + + + Earth Crystal + Chestnut Lumber + Dogwood Lumber + Hickory Lumber + Onyx x2 + Yellow Chocobo Dye + + NQ: Red Hobby Bo + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (82) +Sub Craft(s): Goldsmithing - (7) + + + Earth Crystal + Chestnut Lumber + Dogwood Lumber + Hickory Lumber + Onyx x2 + Red Chocobo Dye + + NQ: Black Hobby Bo + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (82) +Sub Craft(s): Goldsmithing - (7) + + + Earth Crystal + Chestnut Lumber + Dogwood Lumber + Hickory Lumber + Onyx x2 + Black Chocobo Dye + + NQ: Blue Hobby Bo + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (82) +Sub Craft(s): Goldsmithing - (7) + + + Earth Crystal + Chestnut Lumber + Dogwood Lumber + Hickory Lumber + Onyx x2 + Blue Chocobo Dye + + NQ: Green Hobby Bo + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (82) +Sub Craft(s): Goldsmithing - (7) + + + Earth Crystal + Chestnut Lumber + Dogwood Lumber + Hickory Lumber + Onyx x2 + Green Chocobo Dye + + NQ: Elshimo Palm + + WaterCrystal-Icon.gif + +Main Craft: Woodworking - (83) + + + Water Crystal + Willow Log + Rattan Lumber + Red Gravel + Elshimo Coconut + Humus + + NQ: Mithran Fishing Rod + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (83) + + + Light Crystal + Broken Mithran Rod + + NQ: Obelisk Lance + + HQ1:Obelisk Lance +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (83) + + + Earth Crystal + Willow Lumber + Lance + Obelisk + + NQ: Credenza + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (83) + + + Earth Crystal + Jacaranda Lumber + Rattan Lumber x3 + Teak Lumber x4 + + NQ: Mega Pump x66 + + HQ1:Mega Pump x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (84) +Sub Craft(s): Alchemy - (54) + + + Earth Crystal + Bamboo Stick + Chestnut Lumber + Coeurl Whisker x3 + Carbon Fiber + Animal Glue + Water Cluster + + NQ: Mythic Wand + + HQ1:Mythic Wand +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (84) + + + Wind Crystal + Phoenix Feather + Ancient Lumber + + NQ: Numinous Shield + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (84) + + + Earth Crystal + Woodworking Kit 84 + + NQ: Battle Staff + + HQ1:Battle Staff +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (85) +Sub Craft(s): Smithing - (21) + + + Wind Crystal + Walnut Lumber x2 + Steel Ingot + + NQ: Dresser + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (85) +Sub Craft(s): Goldsmithing - (49), Clothcraft - (39) + + + Earth Crystal + Gold Ingot + Velvet Cloth + Mythril Sheet + Rosewood Lumber x4 + Gold Thread + + NQ: Numinous Shield + + HQ1:Numinous Shield +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (85) + + + Earth Crystal + Ancient Lumber x2 + Round Shield + + NQ: Bookstack + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (85) +Sub Craft(s): Goldsmithing - (9) + + + Earth Crystal + Walnut Lumber x3 + Marble x3 + + NQ: Teak Lumber + + HQ1:Teak Lumber x2 + HQ2:Teak Lumber x3 + HQ3:Teak Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (85) + + + Wind Crystal + Teak Log + + NQ: Teak Lumber x3 + + HQ1:Teak Lumber x6 + HQ2:Teak Lumber x9 + HQ3:Teak Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (85) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Teak Log x3 + + NQ: Cermet Lance + + HQ1:Cermet Lance +1 + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (86) +Sub Craft(s): Alchemy - (57) + + + Fire Crystal + Ash Lumber x2 + Cermet Chunk x2 + + NQ: Eremite's Wand + + HQ1:Eremite's Wand +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (86) + + + Earth Crystal + Willow Lumber + Hermit's Wand + + NQ: Broach Lance + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (86) +Key Item: Wood Ensorcellment + + + Earth Crystal + Lambent Fire Cell + Lambent Wind Cell + Obelisk Lance + + NQ: Dominus Shield + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (87) + + + Earth Crystal + Sanctified Lumber + Numinous Shield + + NQ: Mithran Fishing Rod + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (87) + + + Wind Crystal + Rattan Lumber + Rainbow Thread + + NQ: Royal Bed + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (87) +Sub Craft(s): Goldsmithing - (54), Clothcraft - (59) + + + Earth Crystal + Ebony Lumber + Gold Ingot + Damascene Cloth + Mahogany Lumber + Ruby + Gold Thread + Silk Cloth + Ancient Lumber + + NQ: Whale Staff + + HQ1:Whale Staff +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (87) + + + Wind Crystal + Ash Lumber + Dolphin Staff + + NQ: Feasting Table + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (87) +Sub Craft(s): Goldsmithing - (29~) + + + Earth Crystal + Jacaranda Lumber + Teak Lumber x2 + Gold Ingot + + NQ: Repeating Crossbow + + HQ1:Machine Crossbow + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (88) +Sub Craft(s): Smithing - (59), Bonecraft - (46) + + + Wind Crystal + Carbon Fiber + Coeurl Whisker + Darksteel Ingot + Mahogany Lumber + Rosewood Lumber + Scorpion Claw + + NQ: Rosenbogen + + HQ1:Rosenbogen +1 + + DarkCrystal-Icon.gif + +Main Craft: Woodworking - (88) +Sub Craft(s): Alchemy - (59) + + + Dark Crystal + Rapid Bow + Leshonki Bulb + Red Rose + Mercury + Fiend Blood + Dryad Root + + NQ: Parclose + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (88) + + + Earth Crystal + Mahogany Lumber x6 + Teak Lumber x2 + + NQ: Harp Stool + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (88) +Sub Craft(s): Clothcraft - (40) + + + Earth Crystal + Mahogany Lumber + Walnut Lumber + Wolf Felt + + NQ: Half Partition + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (88) + + + Earth Crystal + Mahogany Lumber x6 + + NQ: Mythic Pole + + HQ1:Mythic Pole +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (89) + + + Wind Crystal + Ancient Lumber x2 + + NQ: Reef Aquarium + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (89) +Sub Craft(s): Alchemy - (39) + + + Light Crystal + Oak Lumber + Coral Fragment + Sieglinde Putty + Glass Sheet + Saltwater Set + Coral Butterfly x3 + + NQ: Saltwater Aquarium + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (89) +Sub Craft(s): Alchemy - (39) + + + Light Crystal + Oak Lumber + Coral Fragment + Sieglinde Putty + Glass Sheet + Saltwater Set + Moorish Idol x3 + + NQ: Bay Aquarium + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (89) +Sub Craft(s): Alchemy - (39) + + + Light Crystal + Oak Lumber + Coral Fragment + Sieglinde Putty + Glass Sheet + Saltwater Set + Bibikibo x3 + + NQ: Armoire + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (90) +Sub Craft(s): Goldsmithing - (49) + + + Earth Crystal + Ebony Lumber x7 + Gold Ingot + + NQ: Bonfire + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (90) +Sub Craft(s): Alchemy - (~35) + + + Fire Crystal + Beech Lumber x2 + Firesand + Teak Lumber + + NQ: Engetsuto + + HQ1:Engetsuto +1 + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (90) +Sub Craft(s): Goldsmithing - (60), Smithing - (51) + + + Fire Crystal + Steel Ingot + Darksteel Ingot + Dogwood Lumber + Scintillant Ingot + + NQ: Mythic Harp + + HQ1:Mythic Harp +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (90) + + + Earth Crystal + Coeurl Whisker + Ancient Lumber x2 + + NQ: Recital Bench + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (90) +Sub Craft(s): Clothcraft - (60) + + + Earth Crystal + Hickory Lumber + Ancient Lumber + Wolf Felt + + NQ: Mythic Harp + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (90) + + + Earth Crystal + Woodworking Kit 90 + + +Veteran (91-100) +Synthesis Information +Yield Requirements Ingredients + + NQ: 3-Drawer Almirah + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (91) +Sub Craft(s): Clothcraft - (45) + + + Earth Crystal + Mahogany Lumber x2 + Ebony Lumber + Ancient Lumber + Gold Thread + Silk Cloth + + NQ: 6-Drawer Almirah + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (91) +Sub Craft(s): Clothcraft - (45) + + + Earth Crystal + Mahogany Lumber x3 + Ebony Lumber + Ancient Lumber + Gold Thread + Silk Cloth + + NQ: 9-Drawer Almirah + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (91) +Sub Craft(s): Clothcraft - (45) + + + Earth Crystal + Mahogany Lumber x4 + Ebony Lumber + Ancient Lumber + Gold Thread + Silk Cloth + + NQ: Kabura Arrow x33 + + HQ1:Kabura Arrow x66 + HQ2:Kabura Arrow x99 + HQ3:Kabura Arrow x99 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (91) +Sub Craft(s): Bonecraft - (53) + + + Earth Crystal + Bamboo Stick + Karimata Arrowheads + Giant Bird Fletchings + Ram Horn + + NQ: Lacquer Tree Lumber + + HQ1:Lacquer Tree Lumber x2 + HQ2:Lacquer Tree Lumber x3 + HQ3:Lacquer Tree Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (91) + + + Wind Crystal + Lacquer Tree Log + + NQ: Lacquer Tree Lumber x3 + + HQ1:Lacquer Tree Lumber x6 + HQ2:Lacquer Tree Lumber x9 + HQ3:Lacquer Tree Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (91) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Lacquer Tree Log x3 + + NQ: Bewitched Sune-Ate + + HQ1:Voodoo Sune-Ate + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (91) + + + Wind Crystal + Cursed Sune-Ate -1 + Eschite Ore + + NQ: Barchha + + HQ1:Barchha +1 + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (92) +Sub Craft(s): Smithing - (50), Goldsmithing - (39) + + + Fire Crystal + Darksteel Ingot x2 + Ash Lumber x2 + Gold Ingot + + NQ: Divine Lumber + + HQ1:Divine Lumber x2 + HQ2:Divine Lumber x3 + HQ3:Divine Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (92) + + + Wind Crystal + Divine Log + + NQ: Divine Lumber x3 + + HQ1:Divine Lumber x6 + HQ2:Divine Lumber x9 + HQ3:Divine Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (92) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Divine Log x3 + + NQ: Tsahyan Mask + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (92) +Sub Craft(s): Smithing - (48), Clothcraft - (53) + + + Wind Crystal + Darksteel Sheet + Ebony Lumber x2 + Giant Bird Plume x3 + Manticore Hair + Avatar Blood + + NQ: Urunday Lumber + + HQ1:Urunday Lumber x2 + HQ2:Urunday Lumber x3 + HQ3:Urunday Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (92) + + + Wind Crystal + Urunday Log + + NQ: Urunday Lumber x3 + + HQ1:Urunday Lumber x6 + HQ2:Urunday Lumber x9 + HQ3:Urunday Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (92) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Urunday Log x3 + + NQ: Bewitched Kote + + HQ1:Voodoo Kote + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (92) + + + Wind Crystal + Cursed Kote -1 + Eschite Ore + + NQ: Cursed Haidate + + HQ1:Cursed Haidate -1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (93) + + + Earth Crystal + Animal Glue + Urushi + Divine Lumber + Haidate + + NQ: Gendawa + + HQ1:Gendawa +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (93) +Sub Craft(s): Bonecraft - (41) + + + Wind Crystal + Ancient Lumber x2 + Rainbow Cloth + Coeurl Whisker + Taurus Horn + + NQ: Totem Pole + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (93) +Sub Craft(s): Bonecraft - (33) + + + Wind Crystal + Walnut Lumber + Rosewood Lumber x3 + White Rock + Manticore Hair x2 + Wivre Horn + + NQ: Wyvern Spear + + HQ1:Wyvern Spear +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (93) +Sub Craft(s): Smithing - (46) + + + Earth Crystal + Iron Ingot + Mahogany Lumber + Tama-Hagane + Gold Thread + Wyvern Skin + + NQ: Bewitched Haidate + + HQ1:Voodoo Haidate + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (93) + + + Earth Crystal + Cursed Haidate -1 + Eschite Ore + + NQ: Cursed Sune-Ate + + HQ1:Cursed Sune-Ate -1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (94) + + + Wind Crystal + Animal Glue + Urushi + Divine Lumber + Sune-Ate + + NQ: Eight-Sided Pole + + HQ1:Eight-Sided Pole +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (94) +Sub Craft(s): Smithing - (31) + + + Wind Crystal + Walnut Lumber x2 + Mythril Ingot + + NQ: The Big One + + IceCrystal-Icon.gif + +Main Craft: Woodworking - (94) +Sub Craft(s): Goldsmithing - (41), Alchemy - (52) + + + Ice Crystal + Mahogany Lumber + Ebony Lumber + Gold Sheet + Saruta Cotton + Beeswax + Animal Glue + Beetle Blood + Titanic Sawfish + + NQ: Sasah Wand + + HQ1:Sasah Wand +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (94) + + + Wind Crystal + Urunday Lumber + Phoenix Feather + + NQ: Bewitched Kabuto + + HQ1:Voodoo Kabuto + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (94) + + + Earth Crystal + Cursed Kabuto -1 + Eschite Ore + + NQ: Sasah Wand + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (94) + + + Wind Crystal + Woodworking Kit 94 + + NQ: Bloodwood Lumber + + HQ1:Bloodwood Lumber x2 + HQ2:Bloodwood Lumber x3 + HQ3:Bloodwood Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (95) + + + Wind Crystal + Bloodwood Log + + NQ: Bloodwood Lumber x3 + + HQ1:Bloodwood Lumber x6 + HQ2:Bloodwood Lumber x9 + HQ3:Bloodwood Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (95) +Key Item: Lumberjack + + + Wind Crystal + Bloodwood Log x3 + Bundling Twine + + NQ: Bookshelf + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (95) +Sub Craft(s): Goldsmithing - (5) + + + Earth Crystal + Mahogany Lumber x3 + Tufa x3 + + NQ: Coffee Table + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (95) +Sub Craft(s): Clothcraft - (55), Goldsmithing - (44) + + + Wind Crystal + Gold Ingot + Gold Thread + Lancewood Lumber x3 + Silver Brocade + + NQ: Hemolele Staff + + HQ1:Hemolele Staff +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (95) + + + Wind Crystal + Urunday Lumber + Chapuli Horn + + NQ: Shigeto Bow + + HQ1:Shigeto Bow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (95) +Sub Craft(s): Goldsmithing - (39) + + + Wind Crystal + Wisteria Lumber x2 + Gold Sheet + Shortbow + Bamboo Stick + Urushi + + NQ: Bewitched Togi + + HQ1:Voodoo Togi + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (95) + + + Wind Crystal + Cursed Togi -1 + Eschite Ore + + NQ: Cursed Kote + + HQ1:Cursed Kote -1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (96) + + + Wind Crystal + Animal Glue + Urushi + Ancient Lumber + Divine Lumber + Kote + + NQ: Lacquer Tree Sap x4 + + HQ1:Lacquer Tree Sap x6 + HQ2:Lacquer Tree Sap x8 + HQ3:Lacquer Tree Sap x10 + + WaterCrystal-Icon.gif + +Main Craft: Woodworking - (96) + + + Water Crystal + Lacquer Tree Log + + NQ: Star Globe + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (96) +Sub Craft(s): Goldsmithing - (23) + + + Wind Crystal + Rosewood Lumber + Garnet + Gold Thread + Animal Glue + Bast Parchment x2 + Wisteria Lumber + Lacquer Tree Lumber + + NQ: Cartonnier + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (96) +Sub Craft(s): Smithing - (35) + + + Earth Crystal + Iron Sheet x2 + Mahogany Lumber x3 + Bloodwood Lumber + Cassia Lumber x2 + + NQ: Chanar Xyston + + HQ1:Chanar Xyston +1 + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (96) +Sub Craft(s): Smithing - (??) + + + Fire Crystal + Midrium Ingot x2 + Urunday Lumber x2 + + NQ: Ahkormaar Bow + + HQ1:Ahkormaar Bow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (96) +Sub Craft(s): Bonecraft - (41) + + + Wind Crystal + Grass Cloth + Coeurl Whisker + Urunday Lumber x2 + Chapuli Horn + + NQ: Malayo Crossbow + + HQ1:Malayo Crossbow +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (96) +Sub Craft(s): Smithing - (??), Bonecraft - (??) + + + Earth Crystal + Durium Ingot + Giant Femur + Carbon Fiber + Urunday Lumber x2 + + NQ: Marbled Drawers + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (96) +Sub Craft(s): Goldsmithing - (??) + + + Earth Crystal + Walnut Lumber x3 + Gold Ingot + Tufa x3 + + NQ: Cursed Kabuto + + HQ1:Cursed Kabuto -1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (97) + + + Earth Crystal + Animal Glue + Urushi + Ancient Lumber + Divine Lumber + Zunari Kabuto + + NQ: Divine Sap x4 + + HQ1:Divine Sap x8 + HQ2:Divine Sap x10 + HQ3:Divine Sap x12 + + WaterCrystal-Icon.gif + +Main Craft: Woodworking - (97) + + + Water Crystal + Divine Log + + NQ: Cerberus Bow + + HQ1:Cerberus Bow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (97) +Sub Craft(s): Bonecraft - (55) + + + Wind Crystal + Bloodwood Lumber x2 + Coeurl Whisker + Cerberus Claw + Karakul Cloth + + NQ: Kapor Lumber + + HQ1:Kapor Lumber x2 + HQ2:Kapor Lumber x3 + HQ3:Kapor Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (97) + + + Wind Crystal + Kapor Log + + NQ: Kapor Lumber x3 + + HQ1:Kapor Lumber x6 + HQ2:Kapor Lumber x9 + HQ3:Kapor Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (97) +Key Item: Lumberjack + + + Wind Crystal + Kapor Log x3 + Bundling Twine + + NQ: Cythara Anglica + + HQ1:Cythara Anglica +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (98) + + + Earth Crystal + Ebony Lumber x2 + Coeurl Whisker + Ancient Lumber x2 + + NQ: Royal Bookshelf + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (98) +Sub Craft(s): Goldsmithing - (10) + + + Earth Crystal + Brass Ingot + Mahogany Lumber x3 + Ebony Lumber x2 + Lacquer Tree Lumber x2 + + NQ: Wardrobe + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (98) +Sub Craft(s): Goldsmithing - (58) + + + Earth Crystal + Walnut Lumber x4 + Glass Sheet + Aht Urhgan Brass Ingot + Aht Urhgan Brass Sheet x2 + + NQ: Cursed Togi + + HQ1:Cursed Togi -1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (99) +Sub Craft(s): Leathercraft - (41) + + + Wind Crystal + Animal Glue + Tiger Leather + Urushi + Ancient Lumber x2 + Divine Lumber x2 + Hara-Ate + + NQ: Lancewood Lumber + + HQ1:Lancewood Lumber x2 + HQ2:Lancewood Lumber x3 + HQ3:Lancewood Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (99) + + + Wind Crystal + Lancewood Log + + NQ: Lancewood Lumber x3 + + HQ1:Lancewood Lumber x6 + HQ2:Lancewood Lumber x9 + HQ3:Lancewood Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (99) +Key Item: Lumberjack + + + Wind Crystal + Bundling Twine + Lancewood Log x3 + + NQ: Primate Staff + + HQ1:Primate Staff +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (99) +Sub Craft(s): Smithing - (47), Goldsmithing - (53) + + + Wind Crystal + Darksteel Ingot + Gold Ingot + Yellow Rock x2 + Mercury + Cassia Lumber x2 + Vermilion Lacquer + + NQ: Orichalcum Lance + + HQ1:Triton's Lance + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (100) +Sub Craft(s): Smithing - (60), Goldsmithing - (60) + + + Fire Crystal + Darksteel Ingot + Ash Lumber x2 + Orichalcum Ingot + Ruby + + NQ: Ox Tongue + + HQ1:Ox Tongue +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (100) +Sub Craft(s): Smithing - (60), Goldsmithing - (57) + + + Wind Crystal + Aquamarine + Adaman Ingot + Ash Lumber + Gold Ingot + Gold Thread + + NQ: Staurobow + + HQ1:Staurobow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (100) +Sub Craft(s): Bonecraft - (60), Smithing - (51) + + + Wind Crystal + Darksteel Ingot + Mahogany Lumber + Ebony Lumber + Rattan Lumber + Carbon Fiber + Flauros Whisker + Unicorn Horn + + NQ: Lanner Bow + + HQ1: Lanner Bow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (100) +Sub Craft(s): Clothcraft - (60) + + + Wind Crystal + Ancient Lumber + Lancewood Lumber + Karakul Cloth + Wyrdstrand + + NQ: Vejovis Wand + + HQ1: Vejovis Wand +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (100) + + + Wind Crystal + Kapor Lumber + Black Chocobo Feather + + +Expert (101-110) +Synthesis Information +Yield Requirements Ingredients + + NQ: Kinkobo + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (102) +Sub Craft(s): Alchemy - (21) + + + Wind Crystal + Ethereal Vermilion Lacquer + Primate Staff + + NQ: Mezraq + + HQ1:Mezraq +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (102) +Sub Craft(s): Smithing - (60), Goldsmithing - (52) + + + Wind Crystal + Imperial Wootz Ingot x2 + Bloodwood Lumber + Platinum Ingot + Wamoura Silk + + NQ: Dabo + + HQ1:Dabo +1 + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (102) +Sub Craft(s): Smithing - (60), Goldsmithing - (48) + + + Fire Crystal + Darksteel Ingot + Ash Lumber x2 + Scintillant Ingot + Dark Ixion Tail + Dk. Ixion Ferrule + + NQ: Arasy Lance + + HQ1:Arasy Lance +1 + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (102) +Sub Craft(s): Goldsmithing - (??) + + + Fire Crystal + Ruby + Rhodium Ingot + Guatambu Lumber + + NQ: Arasy Bow + + HQ1:Arasy Bow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (102) +Sub Craft(s): Alchemy - (??) + + + Wind Crystal + Carbon Fiber + Glass Fiber + Guatambu Lumber + Akaso Cloth + + NQ: Arasy Staff + + HQ1:Arasy Staff +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (102) +Sub Craft(s): Bonecraft - (50) + + + Wind Crystal + Guatambu Lumber + Raaz Tusk + + NQ: Iron-splitter + + HQ1:Iron-splitter +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (102) +Sub Craft(s): Smithing - (60) + + + Wind Crystal + Walnut Lumber x2 + Adaman Ingot + + NQ: Rosschinder + + HQ1:Rosschinder +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (103) +Sub Craft(s): Smithing - (60), Goldsmithing - (30) + + + Earth Crystal + Adaman Ingot + Ash Lumber + Thokcha Ingot + Larimar + Wyrdstrand + Paralyze Potion + + NQ: Jacaranda Lumber + + HQ1:Jacaranda Lumber x2 + HQ2:Jacaranda Lumber x3 + HQ3:Jacaranda Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (103) + + + Wind Crystal + Jacaranda Log + + NQ: Jacaranda Lumber x3 + + HQ1:Jacaranda Lumber x6 + HQ2:Jacaranda Lumber x9 + HQ3:Jacaranda Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (103) +Key Item: Lumberjack + + + Wind Crystal + Jacaranda Log x3 + Bundling Twine + + NQ: Winged Altar + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (104) +Sub Craft(s): Clothcraft - (60), Goldsmithing - (60) + + + Fire Crystal + Mythril Ingot + Platinum Ingot + Orichalcum Ingot + Ruby + Gold Brocade + Teak Lumber + Jacaranda Lumber x2 + + NQ: Guatambu Lumber + + HQ1:Guatambu Lumber x2 + HQ2:Guatambu Lumber x3 + HQ3:Guatambu Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (104) + + + Wind Crystal + Guatambu Log + + NQ: Guatambu Lumber x3 + + HQ1:Guatambu Lumber x6 + HQ2:Guatambu Lumber x9 + HQ3:Guatambu Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (104) +Key Item: Lumberjack + + + Wind Crystal + Guatambu Log x3 + Bundling Twine + + NQ: Animator P + + HQ1:Animator P +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (105) + + + Earth Crystal + Divine Lumber + Exalted Lumber x2 + Vulcanite Ore + Animator Z + + NQ: Animator P II + + HQ1:Animator P II +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (105) + + + Earth Crystal + Divine Lumber + Glass Fiber + Exalted Lumber x2 + Vulcanite Ore + Animator Z + + NQ: Nurigomeyumi + + HQ1:Nurigomeyumi +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (105) +Sub Craft(s): Goldsmithing - (46) + + + Earth Crystal + Bamboo Stick + Palladian Brass Sheet + Wisteria Lumber x2 + Urushi + Gendawa + + NQ: Exalted Lumber + + HQ1:Exalted Lumber x2 + HQ2:Exalted Lumber x3 + HQ3:Exalted Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (105) + + + Wind Crystal + Exalted Log + + NQ: Exalted Lumber x3 + + HQ1:Exalted Lumber x6 + HQ2:Exalted Lumber x9 + HQ3:Exalted Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (105) +Key Item: Lumberjack + + + Wind Crystal + Exalted Log x3 + Bundling Twine + + NQ: Cypress Lumber + + HQ1:Cypress Lumber x2 + HQ2:Cypress Lumber x3 + HQ3:Cypress Lumber x4 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (105) + + + Wind Crystal + Cypress Log + + NQ: Cypress Lumber x3 + + HQ1:Cypress Lumber x6 + HQ2:Cypress Lumber x9 + HQ3:Cypress Lumber x12 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (105) +Key Item: Lumberjack + + + Wind Crystal + Cypress Log x3 + Bundling Twine + + NQ: Pristine Sap x4 + + HQ1: Truly Pristine Sap x2 + HQ2: Truly Pristine Sap x4 Verification Needed + HQ3: Truly Pristine Sap x8 Verification Needed + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (105) + + + Light Crystal + Divine Sap + Holy Water x2 + + NQ: Steel-splitter + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (105) + + + Wind Crystal + Steel Walnut Lumber + Iron-Splitter + + NQ: Thalassocrat + + HQ1:Thalassocrat +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (106) +Sub Craft(s): Smithing - (60), Goldsmithing - (60) + + + Wind Crystal + Adaman Ingot x2 + Scintillant Ingot + Wamoura Silk + Jacaranda Lumber + + NQ: Isula Sideboard + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (106) +Sub Craft(s): Goldsmithing - (32) + + + Earth Crystal + Gold Ingot + Jacaranda Lumber x5 + + NQ: Exalted Bow + + HQ1:Exalted Bow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (106) + + + Wind Crystal + Akaso Thread + Akaso Cloth + Exalted Lumber x2 + + NQ: Exalted Crossbow + + HQ1:Exalted Crossbow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (106) + + + Wind Crystal + Akaso Thread + Bismuth Ingot + Exalted Lumber + + NQ: Exalted Spear + + HQ1:Exalted Spear +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (106) + + + Wind Crystal + Akaso Thread + Exalted Lumber + Ra'Kaznar Ingot + + NQ: Exalted Staff + + HQ1:Exalted Staff +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (106) + + + Wind Crystal + Exalted Lumber x2 + + NQ: Zestful Sap x4 + + HQ1: Gassy Sap xInformation Needed + + LightningCrystal-Icon.gif + +Main Craft: Woodworking - (106~107 Verification Needed) + + + Lightning Crystal + Maple Sugar x3 + Urunday Log + + NQ: Flete Pole + + HQ1:Flete Pole +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (108) +Sub Craft(s): Goldsmithing - (50) + + + Wind Crystal + Kapor Lumber x2 + Scintillant Ingot + + NQ: Zamzummim Staff + + HQ1:Melisseus Staff + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (109) + + + Wind Crystal + Ruby + Jacaranda Lumber x2 + Daimonic Mandible + + NQ: Planus Table + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (110) +Sub Craft(s): Clothcraft - (<54) + + + Earth Crystal + Gold Ingot + Silk Cloth x2 + Siren's Macrame + Lancewood Lumber x3 + Bloodthread + + NQ: Nathushne + + HQ1:Nathushne +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (110) + + + Earth Crystal + Kidney Stone + Belladonna Sap + Healing Staff + + NQ: Terebrokath + + HQ1:Terebrokath +1 + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (110~115) +Sub Craft(s): Smithing - (??), Goldsmithing - (??) + + + Fire Crystal + Damascus Ingot x2 + Gold Ingot + Mercury + Yggdreant Bole + + NQ: Iqonde Crossbow + + HQ1:Iqonde Crossbow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (110~115) +Sub Craft(s): Smithing - (??), Bonecraft - (??) + + + Wind Crystal + Damascus Ingot + Ebony Lumber + Carbon Fiber + Craklaw Pincer + Yggdreant Bole + + NQ: Abyssal Beads + + HQ1: Abyssal Beads +1 + HQ2: Abyssal Beads +2 + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (110) +Sub Craft(s): Clothcraft - (55) + + + Light Crystal + Waktza Crest + Dark Matter + Khoma Thread + Obsidian Crystal + Moldy Bead Necklace + + NQ: Knight's Beads + + HQ1: Knight's Beads +1 + HQ2: Knight's Beads +2 + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (110) +Sub Craft(s): Clothcraft - (55) + + + Light Crystal + Waktza Crest + Dark Matter + Khoma Thread + Diamond Crystal + Moldy Bead Necklace + + NQ: Warrior's Beads + + HQ1: Warrior's Beads +1 + HQ2: Warrior's Beads +2 + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (110) +Sub Craft(s): Clothcraft - (55) + + + Light Crystal + Waktza Crest + Dark Matter + Khoma Thread + Ruby Crystal + Moldy Bead Necklace + + +Authority (111-120) +Synthesis Information +Yield Requirements Ingredients + + NQ: Bewitched Sune-Ate + + HQ1:Voodoo Sune-Ate + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (111) +Sub Craft(s): Smithing - (70) + + + Wind Crystal + Cursed Sune-Ate + Yggdreant Bole + Specter's Ore + Eschite Ore + + NQ: Scout's Crossbow + + HQ1: Arke Crossbow + HQ2: Sharanga + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (111~114) +Sub Craft(s): Smithing - (Information Needed) + +Bonecraft - (Information Needed) +Key Item: Carpenter's aurum tome + + + Light Crystal + Macuil Plating + Dark Matter + Cyan Coral + Moldy Crossbow + Ratnaraj + Relic Adaman x2 + Malachite Crystal + + NQ: Sorcerer's Staff + + HQ1: Archmage's Staff + HQ2: Kaumodaki + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (111~114) +Sub Craft(s): Alchemy - (Information Needed) + +Clothcraft - (Information Needed) +Key Item: Carpenter's aurum tome + + + Light Crystal + Plovid Effluvium + Dark Matter + Khoma Thread + Moldy Staff + Ratnaraj + Relic Adaman x2 + Iolite Crystal + + NQ: Argute Staff + + HQ1: Pedagogy Staff + HQ2: Musa + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (111~114) +Sub Craft(s): Alchemy - (Information Needed) + +Clothcraft - (Information Needed) +Key Item: Carpenter's aurum tome + + + Light Crystal + Plovid Effluvium + Dark Matter + Khoma Thread + Moldy Staff + Ratnaraj + Relic Adaman x2 + Moonstone Crystal + + NQ: Summoner's Staff + + HQ1: Glyphic Staff + HQ2: Draumstafir + + LightCrystal-Icon.gif + +Main Craft: Woodworking - (111~114) +Sub Craft(s): Alchemy - (Information Needed) + +Clothcraft - (Information Needed) +Key Item: Carpenter's aurum tome + + + Light Crystal + Plovid Effluvium + Dark Matter + Khoma Thread + Moldy Staff + Ratnaraj + Relic Adaman x2 + Rutile Crystal + + NQ: Bewitched Kote + + HQ1:Voodoo Kote + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (112) +Sub Craft(s): Smithing - (70) + + + Wind Crystal + Cursed Kote + Yggdreant Bole + Specter's Ore + Eschite Ore + + NQ: Balsam Staff + + HQ1: Astralwatcher + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (113) +Sub Craft(s): Bonecraft - (??) + + + Wind Crystal + Tanzanite Jewel + Urunday Lumber + Rockfin Tooth + + NQ: Echidna's Bow + + HQ1: Echidna's Bow +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (113) +Sub Craft(s): Clothcraft - (??), Bonecraft - (??) + + + Wind Crystal + Bloodwood Lumber x2 + Damascene Cloth + Simian Mane + Gabbrath Horn + + NQ: Atinian Staff + + HQ1: Atinian Staff +1 + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (113) +Sub Craft(s): Alchemy - (56~61) + + + Wind Crystal + Belladonna Sap + Urunday Lumber + Gabbrath Horn + + NQ: Bewitched Haidate + + HQ1:Voodoo Haidate + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (113) +Sub Craft(s): Smithing - (70) + + + Earth Crystal + Cursed Haidate + Yggdreant Bole + Specter's Ore + Eschite Ore + + NQ: Bewitched Kabuto + + HQ1:Voodoo Kabuto + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (114) +Sub Craft(s): Smithing - (70) + + + Earth Crystal + Cursed Kabuto + Yggdreant Bole + Specter's Ore + Eschite Ore + + NQ: Bewitched Togi + + HQ1:Voodoo Togi + + WindCrystal-Icon.gif + +Main Craft: Woodworking - (115) +Sub Craft(s): Smithing - (70) + + + Wind Crystal + Cursed Togi + Yggdreant Bole + Specter's Ore + Eschite Ore + + NQ: Was + + HQ1: Was +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (115~120) +Sub Craft(s): Clothcraft - (??) + + + Earth Crystal + Moonbow Cloth + Moonbow Urushi + Khoma Cloth + Astral Signa + + NQ: Ames + + HQ1: Ames +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (115~120) +Sub Craft(s): Goldsmithing - (??) + + + Earth Crystal + Moonbow Urushi + Moonbow Stone + Ruthenium Ingot + Mistilteinn + + NQ: Kendatsuba Sune-Ate + + HQ1: Kendatsuba Sune-Ate +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (115~120) +Sub Craft(s): Alchemy - (??) +Key Item: Carpenter's argentum tome + + + Earth Crystal + Rainbow Thread + Cehuetzi Pelt + Defiant Sweat + Cypress Lumber x2 + + NQ: Oshosi Leggings + + HQ1: Oshosi Leggings +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (115~120) +Sub Craft(s): Leathercraft - (??) +Key Item: Carpenter's argentum tome + + + Earth Crystal + Gold Sheet + Waktza Crest + Plovid Flesh + Cypress Lumber x2 + + NQ: Kendatsuba Tekko + + HQ1: Kendatsuba Tekko +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (115~120) +Sub Craft(s): Alchemy - (??) +Key Item: Carpenter's argentum tome + + + Earth Crystal + Rainbow Thread x2 + Cehuetzi Pelt + Defiant Sweat + Cypress Lumber x2 + + NQ: Oshosi Gloves + + HQ1: Oshosi Gloves +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (115~120) +Sub Craft(s): Leathercraft - (??) +Key Item: Carpenter's argentum tome + + + Earth Crystal + Gold Sheet x2 + Waktza Crest + Plovid Flesh + Cypress Lumber x2 + + NQ: Kendatsuba Jinpachi + + HQ1: Kendatsuba Jinpachi +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (115~120) +Sub Craft(s): Alchemy - (??) +Key Item: Carpenter's argentum tome + + + Earth Crystal + Rainbow Thread + Rainbow Cloth + Cehuetzi Pelt + Defiant Sweat + Cypress Lumber x2 + + NQ: Oshosi Mask + + HQ1: Oshosi Mask +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (115~120) +Sub Craft(s): Leathercraft - (??) +Key Item: Carpenter's argentum tome + + + Earth Crystal + Gold Sheet + Gold Chain + Waktza Crest + Plovid Flesh + Cypress Lumber x2 + + NQ: Kendatsuba Hakama + + HQ1: Kendatsuba Hakama +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (115~120) +Sub Craft(s): Alchemy - (??) +Key Item: Carpenter's argentum tome + + + Earth Crystal + Rainbow Thread + Rainbow Cloth + Cehuetzi Pelt + Defiant Sweat + Cypress Lumber x3 + + NQ: Oshosi Trousers + + HQ1: Oshosi Trousers +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (115~120) +Sub Craft(s): Leathercraft - (??) +Key Item: Carpenter's argentum tome + + + Earth Crystal + Gold Sheet + Gold Chain + Waktza Crest + Plovid Flesh + Cypress Lumber x3 + + NQ: Kendatsuba Samue + + HQ1: Kendatsuba Samue +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (115~120) +Sub Craft(s): Alchemy - (??) +Key Item: Carpenter's argentum tome + + + Earth Crystal + Rainbow Thread + Rainbow Cloth + Cehuetzi Pelt + Defiant Sweat x2 + Cypress Lumber x3 + + NQ: Oshosi Vest + + HQ1: Oshosi Vest +1 + + EarthCrystal-Icon.gif + +Main Craft: Woodworking - (115~120) +Sub Craft(s): Leathercraft - (??) +Key Item: Carpenter's argentum tome + + + Earth Crystal + Gold Sheet + Gold Chain + Waktza Crest + Plovid Flesh x2 + Cypress Lumber x3 + + NQ: Raetic Bow + + HQ1: Raetic Bow +1 + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (115~120) +Key Item: Carpenter's argentum tome + + + Fire Crystal + Thought Crystal + Cypress Lumber x3 + Rune Bow + + NQ: Raetic Halberd + + HQ1: Raetic Halberd +1 + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (115~120) +Key Item: Carpenter's argentum tome + + + Fire Crystal + Hope Crystal + Cypress Lumber x3 + Rune Halberd + + NQ: Raetic Staff + + HQ1: Raetic Staff +1 + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (115~120) +Key Item: Carpenter's argentum tome + + + Fire Crystal + Fulfillment Crystal + Cypress Lumber x3 + Rune Staff + + NQ: Raetic Arrow xVerification Needed + + HQ1: Raetic Arrow xVerification Needed + + FireCrystal-Icon.gif + +Main Craft: Woodworking - (115~120) +Key Item: Carpenter's argentum tome + + + Fire Crystal + Thought Crystal + Cypress Lumber + Niobium Ore + Rune Arrow x3 \ No newline at end of file diff --git a/datasets/Woodworking_v2.csv b/datasets/Woodworking_v2.csv new file mode 100644 index 0000000..c58cf2c --- /dev/null +++ b/datasets/Woodworking_v2.csv @@ -0,0 +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]" diff --git a/db.conf b/db.conf new file mode 100644 index 0000000..a973523 --- /dev/null +++ b/db.conf @@ -0,0 +1,5 @@ +PSQL_PORT=5432 +PSQL_HOST=10.0.0.199 +PSQL_USER=postgres +PSQL_PASSWORD='DP3Wv*QM#t8bY*N' +PSQL_DBNAME=ffxi_items \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..97b0e54 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,16 @@ +services: + api: + build: ./backend + environment: + - PSQL_HOST=10.0.0.199 + - PSQL_PORT=5432 + - PSQL_USER=postgres + - PSQL_PASSWORD=DP3Wv*QM#t8bY*N + - PSQL_DBNAME=ffxi_items + ports: + - "8000:8000" + volumes: + - ./backend/app:/app/app + +volumes: + pgdata: diff --git a/ffxi_items.schema b/ffxi_items.schema new file mode 100644 index 0000000..d127e4c --- /dev/null +++ b/ffxi_items.schema @@ -0,0 +1,218 @@ + table_name | column_name | data_type | is_nullable +-------------------------+---------------------------+-----------------------------+------------- + armor_items | id | integer | NO + armor_items | flags | integer | YES + armor_items | flags_description | ARRAY | YES + armor_items | stack_size | integer | YES + armor_items | type | integer | YES + armor_items | type_description | text | YES + armor_items | resource_id | integer | YES + armor_items | valid_targets | integer | YES + armor_items | valid_targets_description | ARRAY | YES + armor_items | name | character varying | NO + armor_items | description | text | YES + armor_items | log_name_singular | character varying | YES + armor_items | log_name_plural | character varying | YES + armor_items | level | integer | YES + armor_items | item_level | integer | YES + armor_items | slots | integer | YES + armor_items | slots_description | ARRAY | YES + armor_items | races | integer | YES + armor_items | races_description | ARRAY | YES + armor_items | jobs | integer | YES + armor_items | jobs_description | ARRAY | YES + armor_items | superior_level | integer | YES + armor_items | shield_size | integer | YES + armor_items | max_charges | integer | YES + armor_items | casting_time | integer | YES + armor_items | use_delay | integer | YES + armor_items | reuse_delay | integer | YES + armor_items | unknown_2 | integer | YES + armor_items | unknown_3 | integer | YES + armor_items | icon_id | character varying | YES + instinct_items | id | integer | NO + instinct_items | flags | integer | YES + instinct_items | flags_description | ARRAY | YES + instinct_items | stack_size | integer | YES + instinct_items | type | integer | YES + instinct_items | type_description | text | YES + instinct_items | resource_id | integer | YES + instinct_items | valid_targets | integer | YES + instinct_items | valid_targets_description | ARRAY | YES + instinct_items | name | character varying | NO + instinct_items | description | text | YES + instinct_items | log_name_singular | character varying | YES + instinct_items | log_name_plural | character varying | YES + instinct_items | instinct_cost | integer | YES + instinct_items | icon_id | character varying | YES + inventory | id | integer | NO + inventory | character_name | character varying | NO + inventory | storage_type | character varying | NO + inventory | item_name | character varying | NO + inventory | quantity | integer | NO + inventory | last_updated | timestamp without time zone | NO + item_additional_effects | id | integer | NO + item_additional_effects | item_id | integer | NO + item_additional_effects | item_table | character varying | NO + item_additional_effects | effect | text | NO + item_elemental_effects | id | integer | NO + item_elemental_effects | item_id | integer | NO + item_elemental_effects | item_table | character varying | NO + item_elemental_effects | element | character varying | NO + item_elemental_effects | value | integer | NO + item_enchantments | id | integer | NO + item_enchantments | item_id | integer | NO + item_enchantments | item_table | character varying | NO + item_enchantments | spell | character varying | YES + item_enchantments | location | character varying | YES + item_enchantments | effect | text | YES + item_icons | id | character varying | NO + item_icons | format | character varying | YES + item_icons | flag | integer | YES + item_icons | category | character varying | YES + item_icons | width | integer | YES + item_icons | height | integer | YES + item_icons | planes | integer | YES + item_icons | bits | integer | YES + item_icons | compression | integer | YES + item_icons | size | integer | YES + item_icons | horizontal_resolution | integer | YES + item_icons | vertical_resolution | integer | YES + item_icons | used_colors | integer | YES + item_icons | important_colors | integer | YES + item_icons | image_format | character varying | YES + item_icons | image_encoding | character varying | YES + item_icons | image_data | text | YES + item_stats | id | integer | NO + item_stats | item_id | integer | NO + item_stats | item_table | character varying | NO + item_stats | stat_name | character varying | NO + item_stats | value | integer | NO + key_items | id | integer | NO + key_items | flags | integer | YES + key_items | flags_description | ARRAY | YES + key_items | stack_size | integer | YES + key_items | type | integer | YES + key_items | type_description | text | YES + key_items | resource_id | integer | YES + key_items | valid_targets | integer | YES + key_items | valid_targets_description | ARRAY | YES + key_items | name | character varying | NO + key_items | description | text | YES + key_items | log_name_singular | character varying | YES + key_items | log_name_plural | character varying | YES + key_items | icon_id | character varying | YES + misc_items | id | integer | NO + misc_items | flags | integer | YES + misc_items | flags_description | ARRAY | YES + misc_items | stack_size | integer | YES + misc_items | type | integer | YES + misc_items | type_description | text | YES + misc_items | resource_id | integer | YES + misc_items | valid_targets | integer | YES + misc_items | valid_targets_description | ARRAY | YES + misc_items | name | character varying | NO + misc_items | description | text | YES + misc_items | log_name_singular | character varying | YES + misc_items | log_name_plural | character varying | YES + misc_items | element | character varying | YES + misc_items | storage_slots | integer | YES + misc_items | unknown_3 | bigint | YES + misc_items | icon_id | character varying | YES + monipulator_items | id | integer | NO + monipulator_items | flags | integer | YES + monipulator_items | flags_description | ARRAY | YES + monipulator_items | stack_size | integer | YES + monipulator_items | type | integer | YES + monipulator_items | type_description | text | YES + monipulator_items | resource_id | integer | YES + monipulator_items | valid_targets | integer | YES + monipulator_items | valid_targets_description | ARRAY | YES + monipulator_items | name | character varying | NO + monipulator_items | unknown_1 | integer | YES + monipulator_items | icon_id | character varying | YES + puppet_items | id | integer | NO + puppet_items | flags | integer | YES + puppet_items | flags_description | ARRAY | YES + puppet_items | stack_size | integer | YES + puppet_items | type | integer | YES + puppet_items | type_description | text | YES + puppet_items | resource_id | integer | YES + puppet_items | valid_targets | integer | YES + puppet_items | valid_targets_description | ARRAY | YES + puppet_items | name | character varying | NO + puppet_items | description | text | YES + puppet_items | log_name_singular | character varying | YES + puppet_items | log_name_plural | character varying | YES + puppet_items | puppet_slot | integer | YES + puppet_items | element_charge | bigint | YES + puppet_items | unknown_3 | integer | YES + puppet_items | icon_id | character varying | YES + usable_items | id | integer | NO + usable_items | flags | integer | YES + usable_items | flags_description | ARRAY | YES + usable_items | stack_size | integer | YES + usable_items | type | integer | YES + usable_items | type_description | text | YES + usable_items | resource_id | integer | YES + usable_items | valid_targets | integer | YES + usable_items | valid_targets_description | ARRAY | YES + usable_items | name | character varying | NO + usable_items | description | text | YES + usable_items | log_name_singular | character varying | YES + usable_items | log_name_plural | character varying | YES + usable_items | activation_time | integer | YES + usable_items | unknown_1 | integer | YES + usable_items | unknown_3 | integer | YES + usable_items | unknown_4 | integer | YES + usable_items | icon_id | character varying | YES + voucher_items | id | integer | NO + voucher_items | flags | integer | YES + voucher_items | flags_description | ARRAY | YES + voucher_items | stack_size | integer | YES + voucher_items | type | integer | YES + voucher_items | type_description | text | YES + voucher_items | resource_id | integer | YES + voucher_items | valid_targets | integer | YES + voucher_items | valid_targets_description | ARRAY | YES + voucher_items | name | character varying | NO + voucher_items | description | text | YES + voucher_items | log_name_singular | character varying | YES + voucher_items | log_name_plural | character varying | YES + voucher_items | unknown_1 | integer | YES + voucher_items | icon_id | character varying | YES + weapon_items | id | integer | NO + weapon_items | flags | integer | YES + weapon_items | flags_description | ARRAY | YES + weapon_items | stack_size | integer | YES + weapon_items | type | integer | YES + weapon_items | type_description | text | YES + weapon_items | resource_id | integer | YES + weapon_items | valid_targets | integer | YES + weapon_items | valid_targets_description | ARRAY | YES + weapon_items | name | character varying | NO + weapon_items | description | text | YES + weapon_items | log_name_singular | character varying | YES + weapon_items | log_name_plural | character varying | YES + weapon_items | level | integer | YES + weapon_items | ilevel | integer | YES + weapon_items | slots | integer | YES + weapon_items | races | integer | YES + weapon_items | jobs | integer | YES + weapon_items | superior_level | integer | YES + weapon_items | damage | integer | YES + weapon_items | delay | integer | YES + weapon_items | dps | integer | YES + weapon_items | skill | integer | YES + weapon_items | jug_size | integer | YES + weapon_items | max_charges | integer | YES + weapon_items | casting_time | integer | YES + weapon_items | use_delay | integer | YES + weapon_items | reuse_delay | integer | YES + weapon_items | unknown_1 | integer | YES + weapon_items | unknown_2 | integer | YES + weapon_items | unknown_3 | integer | YES + weapon_items | unknown_4 | integer | YES + weapon_items | icon_id | character varying | YES +(214 rows) + diff --git a/frontend/index.html b/frontend/index.html new file mode 100644 index 0000000..5312bba --- /dev/null +++ b/frontend/index.html @@ -0,0 +1,12 @@ + + + + + + MOG SQUIRE + + +
+ + + diff --git a/frontend/package-lock.json b/frontend/package-lock.json new file mode 100644 index 0000000..ddd7b32 --- /dev/null +++ b/frontend/package-lock.json @@ -0,0 +1,2462 @@ +{ + "name": "ffxi-item-browser", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "ffxi-item-browser", + "version": "0.1.0", + "dependencies": { + "@emotion/react": "^11.11.1", + "@emotion/styled": "^11.11.0", + "@mui/icons-material": "^5.15.0", + "@mui/material": "^5.15.0", + "@tanstack/react-query": "^5.28.5", + "axios": "^1.6.7", + "react": "^18.2.0", + "react-dom": "^18.2.0" + }, + "devDependencies": { + "@types/react": "^18.2.50", + "@types/react-dom": "^18.2.17", + "@vitejs/plugin-react": "^4.0.3", + "typescript": "^5.3.3", + "vite": "^5.2.0" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.27.7.tgz", + "integrity": "sha512-xgu/ySj2mTiUFmdE9yCMfBxLp4DHd5DwmbbD05YAuICfodYT3VvRxbrh81LGQ/8UpSdtMdfKMn3KouYDX59DGQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.27.7.tgz", + "integrity": "sha512-BU2f9tlKQ5CAthiMIgpzAh4eDTLWo1mqi9jqE2OxMG0E/OM199VJt2q8BztTxpnSW0i1ymdwLXRJnYzvDM5r2w==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.27.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.27.3", + "@babel/helpers": "^7.27.6", + "@babel/parser": "^7.27.7", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.27.7", + "@babel/types": "^7.27.7", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/@babel/generator": { + "version": "7.27.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.5.tgz", + "integrity": "sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==", + "dependencies": { + "@babel/parser": "^7.27.5", + "@babel/types": "^7.27.3", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz", + "integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.27.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", + "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.27.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.6.tgz", + "integrity": "sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==", + "dev": true, + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.27.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.7.tgz", + "integrity": "sha512-qnzXzDXdr/po3bOTbTIQZ7+TxNKxpkN5IifVLXS+r7qwynkZfPyjZfE7hCXbo7IoO9TNcSyibgONsf2HauUd3Q==", + "dependencies": { + "@babel/types": "^7.27.7" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.27.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.6.tgz", + "integrity": "sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.7.tgz", + "integrity": "sha512-X6ZlfR/O/s5EQ/SnUSLzr+6kGnkg8HXGMzpgsMsrJVcfDtH1vIp6ctCN4eZ1LS5c0+te5Cb6Y514fASjMRJ1nw==", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.27.5", + "@babel/parser": "^7.27.7", + "@babel/template": "^7.27.2", + "@babel/types": "^7.27.7", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.7.tgz", + "integrity": "sha512-8OLQgDScAOHXnAz2cV+RfzzNMipuLVBz2biuAJFMV9bfkNf393je3VM8CLkjQodW5+iWsSJdSgSWT6rsZoXHPw==", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@emotion/babel-plugin": { + "version": "11.13.5", + "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz", + "integrity": "sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/serialize": "^1.3.3", + "babel-plugin-macros": "^3.1.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/cache": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.14.0.tgz", + "integrity": "sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==", + "dependencies": { + "@emotion/memoize": "^0.9.0", + "@emotion/sheet": "^1.4.0", + "@emotion/utils": "^1.4.2", + "@emotion/weak-memoize": "^0.4.0", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/hash": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz", + "integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==" + }, + "node_modules/@emotion/is-prop-valid": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.3.1.tgz", + "integrity": "sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==", + "dependencies": { + "@emotion/memoize": "^0.9.0" + } + }, + "node_modules/@emotion/memoize": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz", + "integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==" + }, + "node_modules/@emotion/react": { + "version": "11.14.0", + "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.14.0.tgz", + "integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.13.5", + "@emotion/cache": "^11.14.0", + "@emotion/serialize": "^1.3.3", + "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0", + "@emotion/utils": "^1.4.2", + "@emotion/weak-memoize": "^0.4.0", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/serialize": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.3.tgz", + "integrity": "sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==", + "dependencies": { + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/unitless": "^0.10.0", + "@emotion/utils": "^1.4.2", + "csstype": "^3.0.2" + } + }, + "node_modules/@emotion/sheet": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz", + "integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==" + }, + "node_modules/@emotion/styled": { + "version": "11.14.1", + "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.14.1.tgz", + "integrity": "sha512-qEEJt42DuToa3gurlH4Qqc1kVpNq8wO8cJtDzU46TjlzWjDlsVyevtYCRijVq3SrHsROS+gVQ8Fnea108GnKzw==", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.13.5", + "@emotion/is-prop-valid": "^1.3.0", + "@emotion/serialize": "^1.3.3", + "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0", + "@emotion/utils": "^1.4.2" + }, + "peerDependencies": { + "@emotion/react": "^11.0.0-rc.0", + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/unitless": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz", + "integrity": "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==" + }, + "node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.2.0.tgz", + "integrity": "sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@emotion/utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.4.2.tgz", + "integrity": "sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==" + }, + "node_modules/@emotion/weak-memoize": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz", + "integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==" + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@mui/core-downloads-tracker": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.17.1.tgz", + "integrity": "sha512-OcZj+cs6EfUD39IoPBOgN61zf1XFVY+imsGoBDwXeSq2UHJZE3N59zzBOVjclck91Ne3e9gudONOeILvHCIhUA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + } + }, + "node_modules/@mui/icons-material": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.17.1.tgz", + "integrity": "sha512-CN86LocjkunFGG0yPlO4bgqHkNGgaEOEc3X/jG5Bzm401qYw79/SaLrofA7yAKCCXAGdIGnLoMHohc3+ubs95A==", + "dependencies": { + "@babel/runtime": "^7.23.9" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@mui/material": "^5.0.0", + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/material": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.17.1.tgz", + "integrity": "sha512-2B33kQf+GmPnrvXXweWAx+crbiUEsxCdCN979QDYnlH9ox4pd+0/IBriWLV+l6ORoBF60w39cWjFnJYGFdzXcw==", + "dependencies": { + "@babel/runtime": "^7.23.9", + "@mui/core-downloads-tracker": "^5.17.1", + "@mui/system": "^5.17.1", + "@mui/types": "~7.2.15", + "@mui/utils": "^5.17.1", + "@popperjs/core": "^2.11.8", + "@types/react-transition-group": "^4.4.10", + "clsx": "^2.1.0", + "csstype": "^3.1.3", + "prop-types": "^15.8.1", + "react-is": "^19.0.0", + "react-transition-group": "^4.4.5" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@emotion/react": "^11.5.0", + "@emotion/styled": "^11.3.0", + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/private-theming": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.17.1.tgz", + "integrity": "sha512-XMxU0NTYcKqdsG8LRmSoxERPXwMbp16sIXPcLVgLGII/bVNagX0xaheWAwFv8+zDK7tI3ajllkuD3GZZE++ICQ==", + "dependencies": { + "@babel/runtime": "^7.23.9", + "@mui/utils": "^5.17.1", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/styled-engine": { + "version": "5.16.14", + "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.16.14.tgz", + "integrity": "sha512-UAiMPZABZ7p8mUW4akDV6O7N3+4DatStpXMZwPlt+H/dA0lt67qawN021MNND+4QTpjaiMYxbhKZeQcyWCbuKw==", + "dependencies": { + "@babel/runtime": "^7.23.9", + "@emotion/cache": "^11.13.5", + "csstype": "^3.1.3", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@emotion/react": "^11.4.1", + "@emotion/styled": "^11.3.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + } + } + }, + "node_modules/@mui/system": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.17.1.tgz", + "integrity": "sha512-aJrmGfQpyF0U4D4xYwA6ueVtQcEMebET43CUmKMP7e7iFh3sMIF3sBR0l8Urb4pqx1CBjHAaWgB0ojpND4Q3Jg==", + "dependencies": { + "@babel/runtime": "^7.23.9", + "@mui/private-theming": "^5.17.1", + "@mui/styled-engine": "^5.16.14", + "@mui/types": "~7.2.15", + "@mui/utils": "^5.17.1", + "clsx": "^2.1.0", + "csstype": "^3.1.3", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@emotion/react": "^11.5.0", + "@emotion/styled": "^11.3.0", + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/types": { + "version": "7.2.24", + "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.24.tgz", + "integrity": "sha512-3c8tRt/CbWZ+pEg7QpSwbdxOk36EfmhbKf6AGZsD1EcLDLTSZoxxJ86FVtcjxvjuhdyBiWKSTGZFaXCnidO2kw==", + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/utils": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.17.1.tgz", + "integrity": "sha512-jEZ8FTqInt2WzxDV8bhImWBqeQRD99c/id/fq83H0ER9tFl+sfZlaAoCdznGvbSQQ9ividMxqSV2c7cC1vBcQg==", + "dependencies": { + "@babel/runtime": "^7.23.9", + "@mui/types": "~7.2.15", + "@types/prop-types": "^15.7.12", + "clsx": "^2.1.1", + "prop-types": "^15.8.1", + "react-is": "^19.0.0" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.19", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.19.tgz", + "integrity": "sha512-3FL3mnMbPu0muGOCaKAhhFEYmqv9eTfPSJRJmANrCwtgK8VuxpsZDGK+m0LYAGoyO8+0j5uRe4PeyPDK1yA/hA==", + "dev": true + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.44.1.tgz", + "integrity": "sha512-JAcBr1+fgqx20m7Fwe1DxPUl/hPkee6jA6Pl7n1v2EFiktAHenTaXl5aIFjUIEsfn9w3HE4gK1lEgNGMzBDs1w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.44.1.tgz", + "integrity": "sha512-RurZetXqTu4p+G0ChbnkwBuAtwAbIwJkycw1n6GvlGlBuS4u5qlr5opix8cBAYFJgaY05TWtM+LaoFggUmbZEQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.44.1.tgz", + "integrity": "sha512-fM/xPesi7g2M7chk37LOnmnSTHLG/v2ggWqKj3CCA1rMA4mm5KVBT1fNoswbo1JhPuNNZrVwpTvlCVggv8A2zg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.44.1.tgz", + "integrity": "sha512-gDnWk57urJrkrHQ2WVx9TSVTH7lSlU7E3AFqiko+bgjlh78aJ88/3nycMax52VIVjIm3ObXnDL2H00e/xzoipw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.44.1.tgz", + "integrity": "sha512-wnFQmJ/zPThM5zEGcnDcCJeYJgtSLjh1d//WuHzhf6zT3Md1BvvhJnWoy+HECKu2bMxaIcfWiu3bJgx6z4g2XA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.44.1.tgz", + "integrity": "sha512-uBmIxoJ4493YATvU2c0upGz87f99e3wop7TJgOA/bXMFd2SvKCI7xkxY/5k50bv7J6dw1SXT4MQBQSLn8Bb/Uw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.44.1.tgz", + "integrity": "sha512-n0edDmSHlXFhrlmTK7XBuwKlG5MbS7yleS1cQ9nn4kIeW+dJH+ExqNgQ0RrFRew8Y+0V/x6C5IjsHrJmiHtkxQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.44.1.tgz", + "integrity": "sha512-8WVUPy3FtAsKSpyk21kV52HCxB+me6YkbkFHATzC2Yd3yuqHwy2lbFL4alJOLXKljoRw08Zk8/xEj89cLQ/4Nw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.44.1.tgz", + "integrity": "sha512-yuktAOaeOgorWDeFJggjuCkMGeITfqvPgkIXhDqsfKX8J3jGyxdDZgBV/2kj/2DyPaLiX6bPdjJDTu9RB8lUPQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.44.1.tgz", + "integrity": "sha512-W+GBM4ifET1Plw8pdVaecwUgxmiH23CfAUj32u8knq0JPFyK4weRy6H7ooxYFD19YxBulL0Ktsflg5XS7+7u9g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.44.1.tgz", + "integrity": "sha512-1zqnUEMWp9WrGVuVak6jWTl4fEtrVKfZY7CvcBmUUpxAJ7WcSowPSAWIKa/0o5mBL/Ij50SIf9tuirGx63Ovew==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.44.1.tgz", + "integrity": "sha512-Rl3JKaRu0LHIx7ExBAAnf0JcOQetQffaw34T8vLlg9b1IhzcBgaIdnvEbbsZq9uZp3uAH+JkHd20Nwn0h9zPjA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.44.1.tgz", + "integrity": "sha512-j5akelU3snyL6K3N/iX7otLBIl347fGwmd95U5gS/7z6T4ftK288jKq3A5lcFKcx7wwzb5rgNvAg3ZbV4BqUSw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.44.1.tgz", + "integrity": "sha512-ppn5llVGgrZw7yxbIm8TTvtj1EoPgYUAbfw0uDjIOzzoqlZlZrLJ/KuiE7uf5EpTpCTrNt1EdtzF0naMm0wGYg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.44.1.tgz", + "integrity": "sha512-Hu6hEdix0oxtUma99jSP7xbvjkUM/ycke/AQQ4EC5g7jNRLLIwjcNwaUy95ZKBJJwg1ZowsclNnjYqzN4zwkAw==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.44.1.tgz", + "integrity": "sha512-EtnsrmZGomz9WxK1bR5079zee3+7a+AdFlghyd6VbAjgRJDbTANJ9dcPIPAi76uG05micpEL+gPGmAKYTschQw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.44.1.tgz", + "integrity": "sha512-iAS4p+J1az6Usn0f8xhgL4PaU878KEtutP4hqw52I4IO6AGoyOkHCxcc4bqufv1tQLdDWFx8lR9YlwxKuv3/3g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.44.1.tgz", + "integrity": "sha512-NtSJVKcXwcqozOl+FwI41OH3OApDyLk3kqTJgx8+gp6On9ZEt5mYhIsKNPGuaZr3p9T6NWPKGU/03Vw4CNU9qg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.44.1.tgz", + "integrity": "sha512-JYA3qvCOLXSsnTR3oiyGws1Dm0YTuxAAeaYGVlGpUsHqloPcFjPg+X0Fj2qODGLNwQOAcCiQmHub/V007kiH5A==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.44.1.tgz", + "integrity": "sha512-J8o22LuF0kTe7m+8PvW9wk3/bRq5+mRo5Dqo6+vXb7otCm3TPhYOJqOaQtGU9YMWQSL3krMnoOxMr0+9E6F3Ug==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@tanstack/query-core": { + "version": "5.81.5", + "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.81.5.tgz", + "integrity": "sha512-ZJOgCy/z2qpZXWaj/oxvodDx07XcQa9BF92c0oINjHkoqUPsmm3uG08HpTaviviZ/N9eP1f9CM7mKSEkIo7O1Q==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + } + }, + "node_modules/@tanstack/react-query": { + "version": "5.81.5", + "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.81.5.tgz", + "integrity": "sha512-lOf2KqRRiYWpQT86eeeftAGnjuTR35myTP8MXyvHa81VlomoAWNEd8x5vkcAfQefu0qtYCvyqLropFZqgI2EQw==", + "dependencies": { + "@tanstack/query-core": "5.81.5" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + }, + "peerDependencies": { + "react": "^18 || ^19" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.7.tgz", + "integrity": "sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.15", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz", + "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==" + }, + "node_modules/@types/react": { + "version": "18.3.23", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.23.tgz", + "integrity": "sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w==", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.3.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz", + "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==", + "dev": true, + "peerDependencies": { + "@types/react": "^18.0.0" + } + }, + "node_modules/@types/react-transition-group": { + "version": "4.4.12", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.12.tgz", + "integrity": "sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==", + "peerDependencies": { + "@types/react": "*" + } + }, + "node_modules/@vitejs/plugin-react": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.6.0.tgz", + "integrity": "sha512-5Kgff+m8e2PB+9j51eGHEpn5kUzRKH2Ry0qGoe8ItJg7pqnkPrYPkDQZGgGmTa0EGarHrkjLvOdU3b1fzI8otQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.27.4", + "@babel/plugin-transform-react-jsx-self": "^7.27.1", + "@babel/plugin-transform-react-jsx-source": "^7.27.1", + "@rolldown/pluginutils": "1.0.0-beta.19", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.17.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/axios": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.10.0.tgz", + "integrity": "sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/browserslist": { + "version": "4.25.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.1.tgz", + "integrity": "sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001726", + "electron-to-chromium": "^1.5.173", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001726", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001726.tgz", + "integrity": "sha512-VQAUIUzBiZ/UnlM28fSp2CRF3ivUn1BWEvxMcVTNwpw91Py1pGbPIyIKtd+tzct9C3ouceCVdGAXxZOpZAsgdw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.178", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.178.tgz", + "integrity": "sha512-wObbz/ar3Bc6e4X5vf0iO8xTN8YAjN/tgiAOJLr7yjYFtP9wAjq8Mb5h0yn6kResir+VYx2DXBj9NNobs0ETSA==", + "dev": true + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.3.tgz", + "integrity": "sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hoist-non-react-statics/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "dev": true + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/react-is": { + "version": "19.1.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.1.0.tgz", + "integrity": "sha512-Oe56aUPnkHyyDxxkvqtd7KkdQP5uIUfHxd5XTb3wE9d/kRnZLmKbDB0GWk919tdQ+mxxPtG6EAs6RMT6i1qtHg==" + }, + "node_modules/react-refresh": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz", + "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/resolve": { + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/rollup": { + "version": "4.44.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.44.1.tgz", + "integrity": "sha512-x8H8aPvD+xbl0Do8oez5f5o8eMS3trfCghc4HhLAnCkj7Vl0d1JWGs0UF/D886zLW2rOj2QymV/JcSSsw+XDNg==", + "dev": true, + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.44.1", + "@rollup/rollup-android-arm64": "4.44.1", + "@rollup/rollup-darwin-arm64": "4.44.1", + "@rollup/rollup-darwin-x64": "4.44.1", + "@rollup/rollup-freebsd-arm64": "4.44.1", + "@rollup/rollup-freebsd-x64": "4.44.1", + "@rollup/rollup-linux-arm-gnueabihf": "4.44.1", + "@rollup/rollup-linux-arm-musleabihf": "4.44.1", + "@rollup/rollup-linux-arm64-gnu": "4.44.1", + "@rollup/rollup-linux-arm64-musl": "4.44.1", + "@rollup/rollup-linux-loongarch64-gnu": "4.44.1", + "@rollup/rollup-linux-powerpc64le-gnu": "4.44.1", + "@rollup/rollup-linux-riscv64-gnu": "4.44.1", + "@rollup/rollup-linux-riscv64-musl": "4.44.1", + "@rollup/rollup-linux-s390x-gnu": "4.44.1", + "@rollup/rollup-linux-x64-gnu": "4.44.1", + "@rollup/rollup-linux-x64-musl": "4.44.1", + "@rollup/rollup-win32-arm64-msvc": "4.44.1", + "@rollup/rollup-win32-ia32-msvc": "4.44.1", + "@rollup/rollup-win32-x64-msvc": "4.44.1", + "fsevents": "~2.3.2" + } + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stylis": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", + "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/vite": { + "version": "5.4.19", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.19.tgz", + "integrity": "sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==", + "dev": true, + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + } + } +} diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000..1af3c1b --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,27 @@ +{ + "name": "ffxi-item-browser", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview" + }, + "dependencies": { + "@emotion/react": "^11.11.1", + "@emotion/styled": "^11.11.0", + "@mui/icons-material": "^5.15.0", + "@mui/material": "^5.15.0", + "@tanstack/react-query": "^5.28.5", + "axios": "^1.6.7", + "react": "^18.2.0", + "react-dom": "^18.2.0" + }, + "devDependencies": { + "@types/react": "^18.2.50", + "@types/react-dom": "^18.2.17", + "typescript": "^5.3.3", + "vite": "^5.2.0", + "@vitejs/plugin-react": "^4.0.3" + } +} diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx new file mode 100644 index 0000000..b8decaf --- /dev/null +++ b/frontend/src/App.tsx @@ -0,0 +1,64 @@ +import { useQuery } from "@tanstack/react-query"; +import { useState } from "react"; +import { api } from "./api"; +import Tabs from "@mui/material/Tabs"; +import Tab from "@mui/material/Tab"; +import Box from "@mui/material/Box"; +import Typography from "@mui/material/Typography"; +import InventoryPage from "./pages/Inventory"; +import ItemExplorerPage from "./pages/ItemExplorer"; +import RecipesPage from "./pages/Recipes"; +import Footer from "./components/Footer"; + +export default function App() { + const [page, setPage] = useState(0); + + const { data: metadata } = useQuery({ + queryKey: ["metadata"], + queryFn: async () => { + const { data } = await api.get("/metadata"); + return data as { storage_types: string[]; type_descriptions: string[] }; + }, + }); + + return ( + + + + + MOG SQUIRE + + + {(() => { + const tabColors = ['#66bb6a', '#42a5f5', '#ffa726']; + return ( + setPage(v)} + centered + TabIndicatorProps={{ sx: { backgroundColor: tabColors[page] } }} + > + {['Inventory','Item Explorer','Recipes'].map((label, idx) => ( + + ))} + + ); + })()} + + {page === 0 && metadata && ( + + )} + {page === 1 && metadata && ( + + )} + {page === 2 && metadata && ( + + )} + +