Initial commit
This commit is contained in:
53
.gitignore
vendored
Normal file
53
.gitignore
vendored
Normal file
@@ -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
|
||||
59
FFXI_ITEMS.session.sql
Normal file
59
FFXI_ITEMS.session.sql
Normal file
@@ -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;
|
||||
135
README.md
Normal file
135
README.md
Normal file
@@ -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_<craft>` tables and bulk-load CSVs. |
|
||||
| `populate_spells_from_scrolls.py` | Extract scroll data & upsert into `spells` table. |
|
||||
|
||||
## Database Schema
|
||||
|
||||
Minimal snapshot (simplified):
|
||||
|
||||
```
|
||||
recipes_<craft>
|
||||
├─ 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! ✨
|
||||
46
TODO.md
Normal file
46
TODO.md
Normal file
@@ -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
|
||||
15
backend/Dockerfile
Normal file
15
backend/Dockerfile
Normal file
@@ -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"]
|
||||
35
backend/app/database.py
Normal file
35
backend/app/database.py
Normal file
@@ -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
|
||||
77
backend/app/main.py
Normal file
77
backend/app/main.py
Normal file
@@ -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)
|
||||
39
backend/app/models.py
Normal file
39
backend/app/models.py
Normal file
@@ -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)
|
||||
177
backend/app/recipes_router.py
Normal file
177
backend/app/recipes_router.py
Normal file
@@ -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),
|
||||
)
|
||||
205
backend/app/router.py
Normal file
205
backend/app/router.py
Normal file
@@ -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,
|
||||
)
|
||||
6
backend/requirements.txt
Normal file
6
backend/requirements.txt
Normal file
@@ -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
|
||||
8243
datasets/Alchemy.txt
Normal file
8243
datasets/Alchemy.txt
Normal file
File diff suppressed because it is too large
Load Diff
557
datasets/Alchemy_v2.csv
Normal file
557
datasets/Alchemy_v2.csv
Normal file
@@ -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]"
|
||||
|
5193
datasets/Bonecraft.txt
Normal file
5193
datasets/Bonecraft.txt
Normal file
File diff suppressed because it is too large
Load Diff
360
datasets/Bonecraft_v2.csv
Normal file
360
datasets/Bonecraft_v2.csv
Normal file
@@ -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]"
|
||||
|
7309
datasets/Clothcraft.txt
Normal file
7309
datasets/Clothcraft.txt
Normal file
File diff suppressed because it is too large
Load Diff
516
datasets/Clothcraft_v2.csv
Normal file
516
datasets/Clothcraft_v2.csv
Normal file
@@ -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]"
|
||||
|
8446
datasets/Cooking.txt
Normal file
8446
datasets/Cooking.txt
Normal file
File diff suppressed because it is too large
Load Diff
516
datasets/Cooking_v2.csv
Normal file
516
datasets/Cooking_v2.csv
Normal file
@@ -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]"
|
||||
|
8497
datasets/Goldsmithing.txt
Normal file
8497
datasets/Goldsmithing.txt
Normal file
File diff suppressed because it is too large
Load Diff
625
datasets/Goldsmithing_v2.csv
Normal file
625
datasets/Goldsmithing_v2.csv
Normal file
@@ -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]"
|
||||
|
6182
datasets/Leathercraft.txt
Normal file
6182
datasets/Leathercraft.txt
Normal file
File diff suppressed because it is too large
Load Diff
443
datasets/Leathercraft_v2.csv
Normal file
443
datasets/Leathercraft_v2.csv
Normal file
@@ -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]"
|
||||
|
8551
datasets/Smithing.txt
Normal file
8551
datasets/Smithing.txt
Normal file
File diff suppressed because it is too large
Load Diff
594
datasets/Smithing_v2.csv
Normal file
594
datasets/Smithing_v2.csv
Normal file
@@ -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]"
|
||||
|
7154
datasets/Woodworking.txt
Normal file
7154
datasets/Woodworking.txt
Normal file
File diff suppressed because it is too large
Load Diff
504
datasets/Woodworking_v2.csv
Normal file
504
datasets/Woodworking_v2.csv
Normal file
@@ -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]"
|
||||
|
5
db.conf
Normal file
5
db.conf
Normal file
@@ -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
|
||||
16
docker-compose.yml
Normal file
16
docker-compose.yml
Normal file
@@ -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:
|
||||
218
ffxi_items.schema
Normal file
218
ffxi_items.schema
Normal file
@@ -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)
|
||||
|
||||
12
frontend/index.html
Normal file
12
frontend/index.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>MOG SQUIRE</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/src/main.tsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
2462
frontend/package-lock.json
generated
Normal file
2462
frontend/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
27
frontend/package.json
Normal file
27
frontend/package.json
Normal file
@@ -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"
|
||||
}
|
||||
}
|
||||
64
frontend/src/App.tsx
Normal file
64
frontend/src/App.tsx
Normal file
@@ -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 (
|
||||
<Box sx={{ display:'flex', flexDirection:'column', minHeight:'100vh', bgcolor:'background.default' }}>
|
||||
<Box sx={{ width:'100%', maxWidth:1200, mx:'auto', flexGrow:1 }}>
|
||||
<Box sx={{ display:'flex', alignItems:'center', mb:1 }}>
|
||||
<Typography variant="h5" sx={{ fontWeight:'bold', flexGrow:0, mr:2 }}>
|
||||
MOG SQUIRE
|
||||
</Typography>
|
||||
</Box>
|
||||
{(() => {
|
||||
const tabColors = ['#66bb6a', '#42a5f5', '#ffa726'];
|
||||
return (
|
||||
<Tabs
|
||||
value={page}
|
||||
onChange={(_, v) => setPage(v)}
|
||||
centered
|
||||
TabIndicatorProps={{ sx: { backgroundColor: tabColors[page] } }}
|
||||
>
|
||||
{['Inventory','Item Explorer','Recipes'].map((label, idx) => (
|
||||
<Tab key={label} label={label} sx={{
|
||||
color: tabColors[idx],
|
||||
'&.Mui-selected': { color: tabColors[idx] }
|
||||
}} />
|
||||
))}
|
||||
</Tabs>
|
||||
);
|
||||
})()}
|
||||
|
||||
{page === 0 && metadata && (
|
||||
<InventoryPage storageTypes={metadata.storage_types} />
|
||||
)}
|
||||
{page === 1 && metadata && (
|
||||
<ItemExplorerPage typeDescriptions={metadata.type_descriptions} />
|
||||
)}
|
||||
{page === 2 && metadata && (
|
||||
<RecipesPage crafts={["woodworking", "smithing", "alchemy", "bonecraft", "goldsmithing", "clothcraft", "leathercraft", "cooking"]} />
|
||||
)}
|
||||
</Box>
|
||||
<Footer />
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
5
frontend/src/api.ts
Normal file
5
frontend/src/api.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import axios from "axios";
|
||||
|
||||
export const api = axios.create({
|
||||
baseURL: "/api",
|
||||
});
|
||||
21
frontend/src/components/Footer.tsx
Normal file
21
frontend/src/components/Footer.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import Box from "@mui/material/Box";
|
||||
import Typography from "@mui/material/Typography";
|
||||
|
||||
export default function Footer() {
|
||||
return (
|
||||
<Box
|
||||
component="footer"
|
||||
sx={{
|
||||
py: 2,
|
||||
textAlign: "center",
|
||||
bgcolor: "background.paper",
|
||||
borderTop: "1px solid",
|
||||
borderColor: "divider",
|
||||
}}
|
||||
>
|
||||
<Typography variant="body2" color="text.secondary">
|
||||
© {new Date().getFullYear()} MOG App – Unofficial FFXI crafting & inventory tool
|
||||
</Typography>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
227
frontend/src/components/ItemDetailPanel.tsx
Normal file
227
frontend/src/components/ItemDetailPanel.tsx
Normal file
@@ -0,0 +1,227 @@
|
||||
import Drawer from "@mui/material/Drawer";
|
||||
import Box from "@mui/material/Box";
|
||||
import Typography from "@mui/material/Typography";
|
||||
import Divider from "@mui/material/Divider";
|
||||
import IconButton from "@mui/material/IconButton";
|
||||
import OpenInNewIcon from "@mui/icons-material/OpenInNew";
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
import { api } from "../api";
|
||||
import CircularProgress from "@mui/material/CircularProgress";
|
||||
|
||||
export interface ItemSummary {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
interface Props {
|
||||
open: boolean;
|
||||
item: (ItemSummary & { storages?: string[]; storage_type?: string }) | null;
|
||||
onClose: () => void;
|
||||
}
|
||||
|
||||
export default function ItemDetailPanel({ open, item, onClose }: Props) {
|
||||
interface Detail {
|
||||
id: number;
|
||||
name: string;
|
||||
description?: string;
|
||||
icon_id?: string;
|
||||
type_description?: string;
|
||||
}
|
||||
|
||||
const { data, isLoading } = useQuery<Detail | null>({
|
||||
queryKey: ["item", item?.name],
|
||||
queryFn: async () => {
|
||||
if (!item) return null;
|
||||
const { data } = await api.get(`/items/by-name/${encodeURIComponent(item.name)}`);
|
||||
return data as { id: number; name: string; description?: string };
|
||||
},
|
||||
enabled: !!item,
|
||||
});
|
||||
|
||||
interface UsageRec { craft: string; id: number; name: string; level: number }
|
||||
interface Usage { crafted: UsageRec[]; ingredient: UsageRec[] }
|
||||
const { data: usage } = useQuery<Usage | null>({
|
||||
queryKey: ['usage', item?.name],
|
||||
queryFn: async () => {
|
||||
if (!item) return null;
|
||||
try {
|
||||
const res = await api.get(`/recipes/usage/${encodeURIComponent(item.name)}`);
|
||||
return res.data as Usage;
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
},
|
||||
enabled: !!item,
|
||||
staleTime: 5 * 60 * 1000,
|
||||
|
||||
});
|
||||
|
||||
return (
|
||||
<Drawer anchor="right" open={open} onClose={onClose}>
|
||||
<Box sx={{ width: 360, p: 3 }}>
|
||||
{isLoading || !data ? (
|
||||
<CircularProgress />
|
||||
) : (
|
||||
<>
|
||||
{data?.icon_id && (
|
||||
<img
|
||||
src={`/api/icon/${data.icon_id}`}
|
||||
alt={data?.name ?? ''}
|
||||
style={{ width: 64, height: 64, float: 'right' }}
|
||||
/>
|
||||
)}
|
||||
<Box sx={{ display: 'flex', alignItems: 'center', mb: 0.5 }}>
|
||||
<Typography variant="h6" sx={{ flexGrow: 1 }}>
|
||||
{data?.name}
|
||||
</Typography>
|
||||
<IconButton
|
||||
size="small"
|
||||
component="a"
|
||||
href={`https://ffxiclopedia.fandom.com/wiki/${encodeURIComponent((data?.name ?? '').replace(/ /g, '_'))}`}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
<OpenInNewIcon fontSize="small" />
|
||||
</IconButton>
|
||||
</Box>
|
||||
<Divider sx={{ mb: 1 }} />
|
||||
{data?.type_description === 'SCROLL' && data.description && (
|
||||
(() => {
|
||||
const m = data.description.match(/Lv\.?\s*(\d+)\s*([A-Z/]+)?/i);
|
||||
if (!m) return null;
|
||||
const level = m[1];
|
||||
const jobs = m[2]?.replace(/\//g, ', ');
|
||||
return (
|
||||
<Typography variant="subtitle2" color="primary" gutterBottom>
|
||||
Scroll: Lv. {level} {jobs && `| Jobs: ${jobs}`}
|
||||
</Typography>
|
||||
);
|
||||
})()
|
||||
)}
|
||||
{item?.storage_type && (
|
||||
<Typography variant="caption" color="secondary" gutterBottom>
|
||||
IN: {item.storage_type.toUpperCase()}
|
||||
</Typography>
|
||||
)}
|
||||
{item?.storages && item.storages.length > 1 && (
|
||||
(() => {
|
||||
const alsoIn = item.storages.filter(s => s !== (item.storage_type ?? '').toUpperCase());
|
||||
if (alsoIn.length === 0) return null;
|
||||
return (
|
||||
<>
|
||||
<br />
|
||||
<Typography variant="caption" color="secondary" gutterBottom>
|
||||
Also in: {alsoIn.join(', ')}
|
||||
</Typography>
|
||||
</>
|
||||
);
|
||||
})()
|
||||
)}
|
||||
{data?.description ? (
|
||||
data.description.split(/\n|<br\s*\/?>/i).map((line: string, idx: number) => (
|
||||
<Typography
|
||||
key={idx}
|
||||
variant="body2"
|
||||
sx={{ whiteSpace: 'pre-line', color: line.startsWith('+') || /(DMG|DEF|Delay|STR|DEX|VIT|AGI|INT|MND|CHR)/i.test(line) ? 'primary.main' : 'text.primary' }}
|
||||
>
|
||||
{line}
|
||||
</Typography>
|
||||
))
|
||||
) : (
|
||||
<Typography variant="body2">No description.</Typography>
|
||||
)}
|
||||
{usage && (
|
||||
<>
|
||||
<Divider sx={{ mt: 2, mb: 1 }} />
|
||||
<Typography variant="h6" gutterBottom>
|
||||
Recipe Usage
|
||||
</Typography>
|
||||
{usage.crafted.length > 0 && (() => {
|
||||
const craftOrder = [
|
||||
'woodworking',
|
||||
'smithing',
|
||||
'alchemy',
|
||||
'bonecraft',
|
||||
'goldsmithing',
|
||||
'clothcraft',
|
||||
'leathercraft',
|
||||
'cooking',
|
||||
];
|
||||
const grouped: Record<string, UsageRec[]> = {};
|
||||
usage.crafted.forEach(r => {
|
||||
(grouped[r.craft] ||= []).push(r);
|
||||
});
|
||||
craftOrder.forEach(c => {
|
||||
if (grouped[c]) grouped[c].sort((a, b) => a.level - b.level);
|
||||
});
|
||||
const crafts = craftOrder.filter(c => grouped[c]?.length);
|
||||
return (
|
||||
<Box sx={{ mb: 2 }}>
|
||||
<Typography variant="subtitle2" gutterBottom>
|
||||
Crafted in:
|
||||
</Typography>
|
||||
{crafts.map(craft => (
|
||||
<Box key={craft} sx={{ ml: 1, mb: 1 }}>
|
||||
<Typography variant="body2" sx={{ fontWeight: 'bold' }}>
|
||||
{craft.charAt(0).toUpperCase() + craft.slice(1)}
|
||||
</Typography>
|
||||
<ul style={{ margin: 0, paddingLeft: 16 }}>
|
||||
{grouped[craft].map(r => (
|
||||
<li key={r.id}>
|
||||
<Typography variant="body2">{r.name} (Lv. {r.level})</Typography>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</Box>
|
||||
))}
|
||||
</Box>
|
||||
);
|
||||
})()}
|
||||
{usage.ingredient.length > 0 && (() => {
|
||||
const craftOrder = [
|
||||
'woodworking',
|
||||
'smithing',
|
||||
'alchemy',
|
||||
'bonecraft',
|
||||
'goldsmithing',
|
||||
'clothcraft',
|
||||
'leathercraft',
|
||||
'cooking',
|
||||
];
|
||||
const grouped: Record<string, UsageRec[]> = {};
|
||||
usage.ingredient.forEach(r => {
|
||||
(grouped[r.craft] ||= []).push(r);
|
||||
});
|
||||
craftOrder.forEach(c => {
|
||||
if (grouped[c]) grouped[c].sort((a, b) => a.level - b.level);
|
||||
});
|
||||
const crafts = craftOrder.filter(c => grouped[c]?.length);
|
||||
return (
|
||||
<Box sx={{ mb: 2 }}>
|
||||
<Typography variant="subtitle2" gutterBottom>
|
||||
Ingredient in:
|
||||
</Typography>
|
||||
{crafts.map(craft => (
|
||||
<Box key={craft} sx={{ ml: 1, mb: 1 }}>
|
||||
<Typography variant="body2" sx={{ fontWeight: 'bold' }}>
|
||||
{craft.charAt(0).toUpperCase() + craft.slice(1)}
|
||||
</Typography>
|
||||
<ul style={{ margin: 0, paddingLeft: 16 }}>
|
||||
{grouped[craft].map(r => (
|
||||
<li key={r.id}>
|
||||
<Typography variant="body2">{r.name} (Lv. {r.level})</Typography>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</Box>
|
||||
))}
|
||||
</Box>
|
||||
);
|
||||
})()}
|
||||
</>
|
||||
)}
|
||||
</>
|
||||
)}
|
||||
</Box>
|
||||
</Drawer>
|
||||
);
|
||||
}
|
||||
101
frontend/src/components/ItemsGrid.tsx
Normal file
101
frontend/src/components/ItemsGrid.tsx
Normal file
@@ -0,0 +1,101 @@
|
||||
import Box from "@mui/material/Box";
|
||||
import Badge from "@mui/material/Badge";
|
||||
import Skeleton from "@mui/material/Skeleton";
|
||||
import Tooltip from "@mui/material/Tooltip";
|
||||
import { styled } from "@mui/material/styles";
|
||||
|
||||
export interface GridItem {
|
||||
id: number;
|
||||
name: string;
|
||||
iconUrl?: string;
|
||||
icon_id?: string;
|
||||
quantity?: number;
|
||||
storages?: string[];
|
||||
storage_type?: string;
|
||||
isScroll?: boolean;
|
||||
}
|
||||
|
||||
interface Props {
|
||||
items: GridItem[] | undefined;
|
||||
onSelect: (item: GridItem) => void;
|
||||
loading?: boolean;
|
||||
duplicates?: Set<string>;
|
||||
selectedId?: number;
|
||||
}
|
||||
|
||||
const IconImg = styled("img")(({ theme }) => ({
|
||||
width: 32,
|
||||
height: 32,
|
||||
[theme.breakpoints.up("sm")]: {
|
||||
width: 40,
|
||||
height: 40,
|
||||
},
|
||||
[theme.breakpoints.up("md")]: {
|
||||
width: 48,
|
||||
height: 48,
|
||||
},
|
||||
}));
|
||||
|
||||
export default function ItemsGrid({ items, onSelect, loading, duplicates, selectedId }: Props) {
|
||||
const cells = items ?? Array.from({ length: 100 });
|
||||
return (
|
||||
<Box
|
||||
sx={{
|
||||
position: 'relative',
|
||||
display: "grid",
|
||||
gridTemplateColumns: { xs: 'repeat(4, 1fr)', sm: 'repeat(6, 1fr)', md: 'repeat(8, 1fr)', lg: 'repeat(10, 1fr)' },
|
||||
gap: 1,
|
||||
p: 2,
|
||||
}}
|
||||
>
|
||||
{cells.map((item, idx) => (
|
||||
<Box
|
||||
key={item ? item.id : idx}
|
||||
sx={{
|
||||
width: { xs: 40, sm: 48, md: 56 },
|
||||
height: { xs: 40, sm: 48, md: 56 },
|
||||
borderRadius: 1,
|
||||
bgcolor: "background.paper",
|
||||
display: "flex",
|
||||
boxShadow: 'inset 1px 1px 2px rgba(255,255,255,0.1), inset -1px -1px 2px rgba(0,0,0,0.6)',
|
||||
alignItems: "center",
|
||||
justifyContent: "center",
|
||||
cursor: item ? "pointer" : "default",
|
||||
...(item && item.id === selectedId
|
||||
? {
|
||||
bgcolor: 'grey.700',
|
||||
boxShadow: 'inset 2px 2px 3px rgba(255,255,255,0.2), inset -2px -2px 3px rgba(0,0,0,0.8)',
|
||||
}
|
||||
: {}),
|
||||
border: duplicates && item && duplicates.has(item.name) ? '2px solid #ffb74d' : 'none',
|
||||
'&:hover': { boxShadow: item ? '0 0 6px 2px rgba(255,255,255,0.9), inset 1px 1px 2px rgba(255,255,255,0.1), inset -1px -1px 2px rgba(0,0,0,0.6)' : undefined },
|
||||
}}
|
||||
onClick={() => item && onSelect(item)}
|
||||
>
|
||||
|
||||
|
||||
|
||||
{loading || !item ? (
|
||||
<Skeleton variant="rectangular" sx={{ width: { xs: 32, sm: 40, md: 48 }, height: { xs: 32, sm: 40, md: 48 } }} />
|
||||
) : item.iconUrl ? (
|
||||
<Tooltip
|
||||
title={`${item.name}${item.quantity && item.quantity > 1 ? ` x${item.quantity}` : ""}`}
|
||||
arrow
|
||||
>
|
||||
<Badge
|
||||
badgeContent={item.quantity && item.quantity > 1 ? item.quantity : undefined}
|
||||
color="secondary"
|
||||
overlap="circular"
|
||||
>
|
||||
<IconImg src={item.iconUrl} alt={item.name} />
|
||||
</Badge>
|
||||
</Tooltip>
|
||||
) : (
|
||||
<Box sx={{ width: 40, height: 40, fontSize: 24, display: 'flex', alignItems: 'center', justifyContent: 'center' }}>?
|
||||
</Box>
|
||||
)}
|
||||
</Box>
|
||||
))}
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
78
frontend/src/components/RecipeDetailDialog.tsx
Normal file
78
frontend/src/components/RecipeDetailDialog.tsx
Normal file
@@ -0,0 +1,78 @@
|
||||
import Dialog from "@mui/material/Dialog";
|
||||
import DialogTitle from "@mui/material/DialogTitle";
|
||||
import DialogContent from "@mui/material/DialogContent";
|
||||
import DialogActions from "@mui/material/DialogActions";
|
||||
import Button from "@mui/material/Button";
|
||||
import Typography from "@mui/material/Typography";
|
||||
import Stack from "@mui/material/Stack";
|
||||
import Table from "@mui/material/Table";
|
||||
import TableBody from "@mui/material/TableBody";
|
||||
import TableCell from "@mui/material/TableCell";
|
||||
import TableRow from "@mui/material/TableRow";
|
||||
import type { RecipeDetail } from "../types";
|
||||
|
||||
interface Props {
|
||||
open: boolean;
|
||||
recipe: RecipeDetail | null;
|
||||
onClose: () => void;
|
||||
}
|
||||
|
||||
export default function RecipeDetailDialog({ open, recipe, onClose }: Props) {
|
||||
if (!recipe) return null;
|
||||
|
||||
return (
|
||||
<Dialog open={open} onClose={onClose} maxWidth="sm" fullWidth>
|
||||
<DialogTitle>{recipe.name}</DialogTitle>
|
||||
<DialogContent dividers>
|
||||
<Typography variant="subtitle1" gutterBottom>
|
||||
Level {recipe.level} – {recipe.category} – {recipe.crystal} Crystal
|
||||
</Typography>
|
||||
{recipe.key_item && (
|
||||
<Typography variant="body2" gutterBottom>
|
||||
Key Item: {recipe.key_item}
|
||||
</Typography>
|
||||
)}
|
||||
{recipe.subcrafts.length > 0 && (
|
||||
<Typography variant="body2" gutterBottom>
|
||||
Subcrafts: {recipe.subcrafts
|
||||
.map(([c, lvl]: [string, number]) => `${c} (${lvl})`)
|
||||
.join(", ")}
|
||||
</Typography>
|
||||
)}
|
||||
<Stack direction="row" spacing={4} sx={{ mt: 2 }}>
|
||||
<Stack>
|
||||
<Typography variant="h6">Ingredients</Typography>
|
||||
<Table size="small">
|
||||
<TableBody>
|
||||
{recipe.ingredients.map(([name, qty]: [string, number]) => (
|
||||
<TableRow key={name}>
|
||||
<TableCell>{name}</TableCell>
|
||||
<TableCell align="right">{qty}</TableCell>
|
||||
</TableRow>
|
||||
))}
|
||||
</TableBody>
|
||||
</Table>
|
||||
</Stack>
|
||||
<Stack>
|
||||
<Typography variant="h6">HQ Yields</Typography>
|
||||
<Table size="small">
|
||||
<TableBody>
|
||||
{recipe.hq_yields.map((hq: [string, number] | null, idx: number) => (
|
||||
<TableRow key={idx}>
|
||||
<TableCell>HQ{idx + 1}</TableCell>
|
||||
<TableCell>
|
||||
{hq ? `${hq[0]} x${hq[1]}` : "—"}
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
))}
|
||||
</TableBody>
|
||||
</Table>
|
||||
</Stack>
|
||||
</Stack>
|
||||
</DialogContent>
|
||||
<DialogActions>
|
||||
<Button onClick={onClose}>Close</Button>
|
||||
</DialogActions>
|
||||
</Dialog>
|
||||
);
|
||||
}
|
||||
124
frontend/src/components/RecipesDetailTable.tsx
Normal file
124
frontend/src/components/RecipesDetailTable.tsx
Normal file
@@ -0,0 +1,124 @@
|
||||
import Table from "@mui/material/Table";
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
import TableHead from "@mui/material/TableHead";
|
||||
import TableBody from "@mui/material/TableBody";
|
||||
import TableRow from "@mui/material/TableRow";
|
||||
import TableCell from "@mui/material/TableCell";
|
||||
import Typography from "@mui/material/Typography";
|
||||
import CircularProgress from "@mui/material/CircularProgress";
|
||||
import Tooltip from "@mui/material/Tooltip";
|
||||
import type { RecipeDetail } from "../types";
|
||||
|
||||
interface Props {
|
||||
recipes: RecipeDetail[] | undefined;
|
||||
loading?: boolean;
|
||||
owned?: Set<string>;
|
||||
ownedInfo?: Record<string, { storages: string[]; icon?: string; description?: string }>;
|
||||
}
|
||||
|
||||
function ItemDisplay({ name, qty, ownedInfo, owned, label }: { name: string; qty?: number; ownedInfo?: Record<string, { storages: string[]; icon?: string; description?: string }>; owned?: Set<string>; label?: string; }) {
|
||||
const local = ownedInfo?.[name];
|
||||
const { data } = useQuery<{ icon_id?: string; description?: string } | null>({
|
||||
queryKey: ["item-meta", name],
|
||||
queryFn: async () => {
|
||||
if (local) return null;
|
||||
try {
|
||||
const res = await fetch(`/api/items/by-name/${encodeURIComponent(name)}`);
|
||||
if (!res.ok) return null;
|
||||
return (await res.json()) as { icon_id?: string; description?: string };
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
},
|
||||
staleTime: 1000 * 60 * 30,
|
||||
});
|
||||
const icon = local?.icon || (data?.icon_id ? `/api/icon/${data.icon_id}` : undefined);
|
||||
const desc = local?.description || data?.description;
|
||||
const tooltip = `${desc ?? label ?? name}`;
|
||||
return (
|
||||
<Tooltip title={tooltip} arrow>
|
||||
<span style={owned?.has(name) ? { color: "green" } : {}}>
|
||||
{icon && (
|
||||
<img
|
||||
src={icon}
|
||||
alt={name}
|
||||
style={{ width: 16, verticalAlign: "text-bottom", marginRight: 4 }}
|
||||
/>
|
||||
)}
|
||||
{qty !== undefined ? `${label ?? name} x${qty}` : (label ?? name)}
|
||||
</span>
|
||||
</Tooltip>
|
||||
);
|
||||
}
|
||||
|
||||
export default function RecipesDetailTable({ recipes, loading, owned, ownedInfo }: Props) {
|
||||
if (loading) return <CircularProgress sx={{ m: 2 }} />;
|
||||
if (!recipes || recipes.length === 0)
|
||||
return (
|
||||
<Typography sx={{ m: 2 }}>No recipes found for this category.</Typography>
|
||||
);
|
||||
|
||||
const formatSubcrafts = (arr: [string, number][]) =>
|
||||
arr.map(([n, q]) => `${n} [${q}]`).join(", ");
|
||||
|
||||
return (
|
||||
<Table size="small" sx={{ mt: 1 }}>
|
||||
<TableHead>
|
||||
<TableRow>
|
||||
<TableCell>Name</TableCell>
|
||||
<TableCell>Lvl</TableCell>
|
||||
<TableCell>Crystal</TableCell>
|
||||
<TableCell>Ingredients</TableCell>
|
||||
<TableCell>HQ1</TableCell>
|
||||
<TableCell>HQ2</TableCell>
|
||||
<TableCell>HQ3</TableCell>
|
||||
<TableCell>Subcrafts</TableCell>
|
||||
<TableCell>Key Item</TableCell>
|
||||
</TableRow>
|
||||
</TableHead>
|
||||
<TableBody>
|
||||
{recipes.map((r) => (
|
||||
<TableRow key={r.id}>
|
||||
<TableCell>
|
||||
{(() => {
|
||||
return <ItemDisplay name={r.name} ownedInfo={ownedInfo} />
|
||||
})()}
|
||||
</TableCell>
|
||||
<TableCell>{r.level}</TableCell>
|
||||
<TableCell>
|
||||
<ItemDisplay name={`${r.crystal} Crystal`} label={r.crystal} ownedInfo={ownedInfo} />
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
{r.ingredients.map(([n, q], idx) => (
|
||||
<span key={idx} style={owned?.has(n) ? { color: 'green' } : {}}>
|
||||
<ItemDisplay name={n} qty={q} ownedInfo={ownedInfo} owned={owned} />
|
||||
{idx < r.ingredients.length - 1 ? ', ' : ''}
|
||||
</span>
|
||||
))}
|
||||
</TableCell>
|
||||
{r.hq_yields.map((hq, idx) => (
|
||||
<TableCell key={idx}>
|
||||
{hq ? (() => {
|
||||
const [n, q] = hq;
|
||||
return <ItemDisplay name={n} qty={q} ownedInfo={ownedInfo} owned={owned} />
|
||||
})() : "—"}
|
||||
</TableCell>
|
||||
))}
|
||||
{/* Ensure always 3 HQ columns */}
|
||||
{Array.from({ length: 3 - r.hq_yields.length }).map((_, i) => (
|
||||
<TableCell key={`pad-${i}`}>—</TableCell>
|
||||
))}
|
||||
<TableCell>{formatSubcrafts(r.subcrafts)}</TableCell>
|
||||
<TableCell>
|
||||
{r.key_item ? <ItemDisplay name={r.key_item} ownedInfo={ownedInfo} /> : ""}
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
))}
|
||||
{/* spacer row */}
|
||||
<TableRow>
|
||||
<TableCell colSpan={9} sx={{ height: 48 }} />
|
||||
</TableRow>
|
||||
</TableBody>
|
||||
</Table>
|
||||
);
|
||||
}
|
||||
92
frontend/src/components/RecipesTable.tsx
Normal file
92
frontend/src/components/RecipesTable.tsx
Normal file
@@ -0,0 +1,92 @@
|
||||
import Accordion from "@mui/material/Accordion";
|
||||
import AccordionSummary from "@mui/material/AccordionSummary";
|
||||
import AccordionDetails from "@mui/material/AccordionDetails";
|
||||
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
|
||||
import Table from "@mui/material/Table";
|
||||
import TableHead from "@mui/material/TableHead";
|
||||
import TableBody from "@mui/material/TableBody";
|
||||
import TableRow from "@mui/material/TableRow";
|
||||
import TableCell from "@mui/material/TableCell";
|
||||
import Typography from "@mui/material/Typography";
|
||||
import CircularProgress from "@mui/material/CircularProgress";
|
||||
import type { RecipeSummary } from "../types";
|
||||
|
||||
interface Props {
|
||||
recipes: RecipeSummary[] | undefined;
|
||||
loading?: boolean;
|
||||
onSelect: (id: number) => void;
|
||||
}
|
||||
|
||||
export default function RecipesTable({ recipes, loading, onSelect }: Props) {
|
||||
if (loading) return <CircularProgress sx={{ m: 2 }} />;
|
||||
if (!recipes || recipes.length === 0) return <Typography sx={{ m: 2 }}>No recipes</Typography>;
|
||||
|
||||
// Group by category
|
||||
const grouped: Record<string, RecipeSummary[]> = {};
|
||||
for (const r of recipes) {
|
||||
grouped[r.category] ??= [];
|
||||
grouped[r.category].push(r);
|
||||
}
|
||||
|
||||
// Preserve original order by craft level category typical ordering using list
|
||||
const categoryOrder = [
|
||||
"Amateur",
|
||||
"Recruit",
|
||||
"Initiate",
|
||||
"Novice",
|
||||
"Apprentice",
|
||||
"Journeyman",
|
||||
"Craftsman",
|
||||
"Artisan",
|
||||
"Adept",
|
||||
"Expert",
|
||||
"Veteran",
|
||||
"Legend"
|
||||
];
|
||||
|
||||
const sortedCategories = Object.keys(grouped).sort((a, b) => {
|
||||
const ia = categoryOrder.indexOf(a);
|
||||
const ib = categoryOrder.indexOf(b);
|
||||
if (ia === -1 && ib === -1) return a.localeCompare(b);
|
||||
if (ia === -1) return 1;
|
||||
if (ib === -1) return -1;
|
||||
return ia - ib;
|
||||
});
|
||||
|
||||
return (
|
||||
<div>
|
||||
{sortedCategories.map((cat) => (
|
||||
<Accordion key={cat} defaultExpanded>
|
||||
<AccordionSummary expandIcon={<ExpandMoreIcon />}>
|
||||
<Typography variant="h6">{cat}</Typography>
|
||||
</AccordionSummary>
|
||||
<AccordionDetails>
|
||||
<Table size="small">
|
||||
<TableHead>
|
||||
<TableRow>
|
||||
<TableCell>Name</TableCell>
|
||||
<TableCell>Level</TableCell>
|
||||
<TableCell>Crystal</TableCell>
|
||||
</TableRow>
|
||||
</TableHead>
|
||||
<TableBody>
|
||||
{grouped[cat].map((r) => (
|
||||
<TableRow
|
||||
key={r.id}
|
||||
hover
|
||||
sx={{ cursor: "pointer" }}
|
||||
onClick={() => onSelect(r.id)}
|
||||
>
|
||||
<TableCell>{r.name}</TableCell>
|
||||
<TableCell>{r.level}</TableCell>
|
||||
<TableCell>{r.crystal}</TableCell>
|
||||
</TableRow>
|
||||
))}
|
||||
</TableBody>
|
||||
</Table>
|
||||
</AccordionDetails>
|
||||
</Accordion>
|
||||
))}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
17
frontend/src/hooks/useDebounce.ts
Normal file
17
frontend/src/hooks/useDebounce.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { useEffect, useState } from 'react';
|
||||
|
||||
/**
|
||||
* Debounce a value. Returns the debounced value that only updates after the specified delay.
|
||||
* @param value The input value.
|
||||
* @param delay Delay in milliseconds.
|
||||
*/
|
||||
export default function useDebounce<T>(value: T, delay: number): T {
|
||||
const [debounced, setDebounced] = useState(value);
|
||||
|
||||
useEffect(() => {
|
||||
const id = setTimeout(() => setDebounced(value), delay);
|
||||
return () => clearTimeout(id);
|
||||
}, [value, delay]);
|
||||
|
||||
return debounced;
|
||||
}
|
||||
BIN
frontend/src/icons/blank.png
Normal file
BIN
frontend/src/icons/blank.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.4 KiB |
BIN
frontend/src/icons/key.png
Normal file
BIN
frontend/src/icons/key.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
BIN
frontend/src/icons/map.png
Normal file
BIN
frontend/src/icons/map.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
BIN
frontend/src/icons/mount.png
Normal file
BIN
frontend/src/icons/mount.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.2 KiB |
BIN
frontend/src/icons/no-icon.png
Normal file
BIN
frontend/src/icons/no-icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.0 KiB |
35
frontend/src/main.tsx
Normal file
35
frontend/src/main.tsx
Normal file
@@ -0,0 +1,35 @@
|
||||
import React from "react";
|
||||
import ReactDOM from "react-dom/client";
|
||||
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
||||
import CssBaseline from "@mui/material/CssBaseline";
|
||||
import { ThemeProvider, createTheme } from "@mui/material/styles";
|
||||
import App from "./App";
|
||||
|
||||
const queryClient = new QueryClient();
|
||||
|
||||
const theme = createTheme({
|
||||
palette: {
|
||||
mode: "dark",
|
||||
background: {
|
||||
default: "#212121",
|
||||
paper: "#424242",
|
||||
},
|
||||
primary: {
|
||||
main: "#90caf9",
|
||||
},
|
||||
secondary: {
|
||||
main: "#f48fb1",
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
||||
<React.StrictMode>
|
||||
<QueryClientProvider client={queryClient}>
|
||||
<ThemeProvider theme={theme}>
|
||||
<CssBaseline />
|
||||
<App />
|
||||
</ThemeProvider>
|
||||
</QueryClientProvider>
|
||||
</React.StrictMode>
|
||||
);
|
||||
192
frontend/src/pages/Inventory.tsx
Normal file
192
frontend/src/pages/Inventory.tsx
Normal file
@@ -0,0 +1,192 @@
|
||||
import { useState, useEffect, useMemo, useRef } from "react";
|
||||
import Tabs from "@mui/material/Tabs";
|
||||
import TextField from "@mui/material/TextField";
|
||||
import InputAdornment from "@mui/material/InputAdornment";
|
||||
import SearchIcon from "@mui/icons-material/Search";
|
||||
import Tab from "@mui/material/Tab";
|
||||
import Box from "@mui/material/Box";
|
||||
import CircularProgress from "@mui/material/CircularProgress";
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
import useDebounce from "../hooks/useDebounce";
|
||||
import ItemsGrid, { GridItem } from "../components/ItemsGrid";
|
||||
import ItemDetailPanel from "../components/ItemDetailPanel";
|
||||
import { api } from "../api";
|
||||
// Placeholder icons for items missing specific icons
|
||||
import mapIcon from "../icons/map.png";
|
||||
import mountIcon from "../icons/mount.png";
|
||||
import keyIcon from "../icons/key.png";
|
||||
import noIcon from "../icons/no-icon.png";
|
||||
import blankIcon from "../icons/blank.png";
|
||||
|
||||
interface Props {
|
||||
storageTypes: string[];
|
||||
character?: string;
|
||||
}
|
||||
|
||||
export default function InventoryPage({ storageTypes, character = "Rynore" }: Props) {
|
||||
const [tab, setTab] = useState<number>(0);
|
||||
const prevTabRef = useRef<number>(0);
|
||||
|
||||
// Adjust default selection to "Inventory" once storageTypes are available
|
||||
useEffect(() => {
|
||||
const idx = storageTypes.indexOf("Inventory");
|
||||
if (idx >= 0) {
|
||||
setTab(idx);
|
||||
}
|
||||
}, [storageTypes]);
|
||||
|
||||
|
||||
|
||||
|
||||
const [selected, setSelected] = useState<GridItem | null>(null);
|
||||
const [search, setSearch] = useState("");
|
||||
const debouncedSearch = useDebounce(search, 300);
|
||||
const searchMode = debouncedSearch.trim() !== "";
|
||||
const searchTabIndex = storageTypes.length;
|
||||
|
||||
// Switch automatically to the search tab when a query is entered
|
||||
useEffect(() => {
|
||||
if (searchMode) {
|
||||
if (tab !== searchTabIndex) {
|
||||
prevTabRef.current = tab;
|
||||
setTab(searchTabIndex);
|
||||
}
|
||||
} else {
|
||||
if (tab === searchTabIndex) {
|
||||
setTab(prevTabRef.current);
|
||||
}
|
||||
}
|
||||
}, [searchMode, searchTabIndex]);
|
||||
|
||||
|
||||
const currentType = tab === searchTabIndex ? undefined : storageTypes[tab];
|
||||
|
||||
// Clear selected item when tab changes
|
||||
useEffect(()=> setSelected(null), [currentType]);
|
||||
|
||||
// Fetch items for current storage type
|
||||
const { data, isLoading } = useQuery({
|
||||
queryKey: ["inventory", character, currentType],
|
||||
queryFn: async () => {
|
||||
const { data } = await api.get(
|
||||
`/inventory/${character}?storage_type=${encodeURIComponent(currentType ?? "")}`
|
||||
);
|
||||
return data as { id: number; item_name: string; quantity: number; icon_id?: string; type_description?: string }[];
|
||||
},
|
||||
enabled: !!currentType,
|
||||
});
|
||||
|
||||
// Fetch full inventory once to detect duplicates across tabs
|
||||
const { data: allInv } = useQuery({
|
||||
queryKey: ["inventory", character, "all"],
|
||||
queryFn: async () => {
|
||||
const { data } = await api.get(`/inventory/${character}`);
|
||||
return data as { item_name: string; storage_type: string }[];
|
||||
},
|
||||
});
|
||||
|
||||
const duplicates = useMemo(() => {
|
||||
const map: Record<string, Set<string>> = {};
|
||||
allInv?.forEach((i) => {
|
||||
if (!map[i.item_name]) map[i.item_name] = new Set();
|
||||
map[i.item_name].add(i.storage_type);
|
||||
});
|
||||
return new Set(
|
||||
Object.entries(map)
|
||||
.filter(([_, set]) => set.size > 1)
|
||||
.map(([name]) => name)
|
||||
);
|
||||
}, [allInv]);
|
||||
|
||||
const filtered = (tab === searchTabIndex ? allInv : data)?.filter(d => debouncedSearch ? d.item_name.toLowerCase().includes(debouncedSearch.toLowerCase()) : true);
|
||||
|
||||
let tempId = -1;
|
||||
let gridItems: GridItem[] = (filtered ?? []).map((d: any) => ({
|
||||
isScroll: d.type_description === 'SCROLL',
|
||||
storages: duplicates.has(d.item_name) ? Array.from((allInv?.filter(i=>i.item_name===d.item_name).map(i=>i.storage_type.toUpperCase())??[])) : undefined,
|
||||
id: d.id ?? tempId--,
|
||||
storage_type: d.storage_type,
|
||||
name: d.item_name,
|
||||
quantity: 'quantity' in d ? d.quantity : undefined,
|
||||
// Determine icon URL with prioritized fallback logic when missing icon_id
|
||||
iconUrl: (d as any).icon_id
|
||||
? `/api/icon/${d.icon_id}`
|
||||
: (() => {
|
||||
const nameLower = d.item_name.toLowerCase();
|
||||
if (nameLower.includes("map")) return mapIcon;
|
||||
if (d.item_name.includes("♪")) return mountIcon;
|
||||
if ((d.type_description ?? "").toUpperCase().includes("KEY")) return keyIcon;
|
||||
return noIcon;
|
||||
})(),
|
||||
icon_id: d.icon_id,
|
||||
}));
|
||||
|
||||
// Pad to 80 slots with empty placeholders (skip for Search tab)
|
||||
if (tab !== searchTabIndex && gridItems.length < 80) {
|
||||
const missing = 80 - gridItems.length;
|
||||
for (let i = 0; i < missing; i++) {
|
||||
gridItems.push({
|
||||
id: -1 - i,
|
||||
name: "EMPTY",
|
||||
iconUrl: blankIcon,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
<Box sx={{ px: 2 }}>
|
||||
<Box sx={{ display:'flex', alignItems:'center', gap:2 }}>
|
||||
{(() => {
|
||||
const colors = ['#ef5350','#ab47bc','#5c6bc0','#29b6f6','#66bb6a','#ffca28','#ffa726','#8d6e63'];
|
||||
const getColor = (idx:number)=>colors[idx%colors.length];
|
||||
return (
|
||||
<Tabs
|
||||
value={tab}
|
||||
onChange={(_,v)=>setTab(v)}
|
||||
variant="scrollable"
|
||||
TabIndicatorProps={{ sx:{ backgroundColor:getColor(tab)} }}
|
||||
sx={{ bgcolor:'background.paper' }}
|
||||
>
|
||||
{storageTypes.map((s,idx)=>(
|
||||
<Tab key={s} label={s} sx={{ color:getColor(idx),'&.Mui-selected':{color:getColor(idx)} }} />
|
||||
))}
|
||||
{searchMode && <Tab label="Search" sx={{ color:'#90a4ae','&.Mui-selected':{color:'#90a4ae'} }} />}
|
||||
</Tabs>
|
||||
);
|
||||
})()}
|
||||
<TextField
|
||||
size="small"
|
||||
variant="outlined"
|
||||
placeholder="Search…"
|
||||
value={search}
|
||||
onChange={(e)=>setSearch(e.target.value)}
|
||||
InputProps={{
|
||||
startAdornment: (
|
||||
<InputAdornment position="start">
|
||||
<SearchIcon fontSize="small" />
|
||||
</InputAdornment>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</Box>
|
||||
|
||||
|
||||
{isLoading && <CircularProgress sx={{ m: 2 }} />}
|
||||
|
||||
<ItemsGrid
|
||||
key={tab}
|
||||
items={isLoading ? undefined : gridItems}
|
||||
loading={isLoading}
|
||||
onSelect={(item) => setSelected(item)}
|
||||
duplicates={duplicates}
|
||||
selectedId={selected?.id}
|
||||
/>
|
||||
|
||||
<ItemDetailPanel
|
||||
open={!!selected}
|
||||
item={selected}
|
||||
onClose={() => setSelected(null)}
|
||||
/>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
177
frontend/src/pages/ItemExplorer.tsx
Normal file
177
frontend/src/pages/ItemExplorer.tsx
Normal file
@@ -0,0 +1,177 @@
|
||||
import { useState, useMemo, useEffect } from "react";
|
||||
import Tabs from "@mui/material/Tabs";
|
||||
import TextField from "@mui/material/TextField";
|
||||
import InputAdornment from "@mui/material/InputAdornment";
|
||||
import SearchIcon from "@mui/icons-material/Search";
|
||||
import Tab from "@mui/material/Tab";
|
||||
import Box from "@mui/material/Box";
|
||||
import CircularProgress from "@mui/material/CircularProgress";
|
||||
import Pagination from "@mui/material/Pagination";
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
import useDebounce from "../hooks/useDebounce";
|
||||
import ItemsGrid, { GridItem } from "../components/ItemsGrid";
|
||||
import ItemDetailPanel from "../components/ItemDetailPanel";
|
||||
import { api } from "../api";
|
||||
|
||||
interface Props {
|
||||
typeDescriptions: string[];
|
||||
}
|
||||
|
||||
export default function ItemExplorerPage({ typeDescriptions }: Props) {
|
||||
const [tab, setTab] = useState(0);
|
||||
const [subTab, setSubTab] = useState(0);
|
||||
const [page, setPage] = useState(1);
|
||||
const [totalPages, setTotalPages] = useState(1);
|
||||
const [search, setSearch] = useState("");
|
||||
const debouncedSearch = useDebounce(search, 300);
|
||||
const [selected, setSelected] = useState<GridItem | null>(null);
|
||||
|
||||
const baseTypes = typeDescriptions
|
||||
.map((t) => (t === "NOTHING" || t === "UNKNOWN" ? "MISC" : t))
|
||||
.filter((t) => t !== "ITEM");
|
||||
|
||||
const displayTypes = Array.from(new Set([...baseTypes, "MISC"]));
|
||||
|
||||
const currentType = displayTypes[tab];
|
||||
|
||||
// Define sub types for usable items
|
||||
const usableSubTypes = useMemo(() => [
|
||||
"SCROLL",
|
||||
"QUEST_ITEM",
|
||||
"CRYSTAL",
|
||||
"USABLE_ITEM",
|
||||
"BOOK",
|
||||
"FISH",
|
||||
], []);
|
||||
|
||||
const subTypeValues = useMemo(() => {
|
||||
if (currentType !== "USABLE_ITEM") return [] as string[];
|
||||
return usableSubTypes;
|
||||
}, [currentType]);
|
||||
|
||||
const currentSubType =
|
||||
currentType === "USABLE_ITEM" ? subTypeValues[subTab] : currentType;
|
||||
|
||||
// Reset pagination when type changes
|
||||
useEffect(() => {
|
||||
setPage(1);
|
||||
setTotalPages(1);
|
||||
setSearch("");
|
||||
}, [currentType, currentSubType]);
|
||||
|
||||
const { data, isLoading } = useQuery({
|
||||
queryKey: ["items", currentType === "MISC" ? "MISC" : currentSubType, page, debouncedSearch],
|
||||
queryFn: async () => {
|
||||
let url = `/items?page=${page}&page_size=100`;
|
||||
if (debouncedSearch) url += `&search=${encodeURIComponent(debouncedSearch)}`;
|
||||
if (currentType !== "MISC") {
|
||||
url = `/items?type=${encodeURIComponent(currentSubType)}&page=${page}&page_size=100`;
|
||||
if (debouncedSearch) url += `&search=${encodeURIComponent(debouncedSearch)}`;
|
||||
}
|
||||
const response = await api.get(url);
|
||||
const totalCountHeader = response.headers['x-total-count'] ?? response.headers['X-Total-Count'];
|
||||
if (totalCountHeader) {
|
||||
const total = parseInt(totalCountHeader, 10);
|
||||
if (!isNaN(total)) {
|
||||
setTotalPages(Math.max(1, Math.ceil(total / 100)));
|
||||
}
|
||||
}
|
||||
return response.data as { id: number; name: string; icon_id?: string; type_description?: string }[];
|
||||
},
|
||||
enabled: !!currentType,
|
||||
});
|
||||
|
||||
const gridItems: GridItem[] | undefined = data
|
||||
?.filter((d) => d.name !== '.' && (currentType !== 'MISC' ? true : !baseTypes.includes(d.type_description ?? '')))
|
||||
.map((d) => ({
|
||||
id: d.id,
|
||||
name: d.name,
|
||||
iconUrl: d.icon_id ? `/api/icon/${d.icon_id}` : undefined,
|
||||
icon_id: d.icon_id,
|
||||
}));
|
||||
|
||||
return (
|
||||
<Box sx={{ px: 2 }}>
|
||||
<Box sx={{ display: 'flex', alignItems: 'center', gap: 2 }}>
|
||||
{(() => {
|
||||
const colors = ['#ff7043','#42a5f5','#66bb6a','#ab47bc','#5c6bc0','#ffa726'];
|
||||
const getColor=(idx:number)=>colors[idx%colors.length];
|
||||
return (
|
||||
<Tabs
|
||||
value={tab}
|
||||
onChange={(_,v)=>{ setTab(v); setPage(1);} }
|
||||
variant="scrollable"
|
||||
TabIndicatorProps={{ sx:{ backgroundColor:getColor(tab)} }}
|
||||
sx={{ flexGrow:1 }}
|
||||
>
|
||||
{displayTypes.map((t,idx)=>{
|
||||
const label = t.replace('_ITEM','');
|
||||
return <Tab key={t} label={label} sx={{ color:getColor(idx), '&.Mui-selected':{color:getColor(idx)} }} />
|
||||
})}
|
||||
</Tabs>
|
||||
);
|
||||
})()}
|
||||
<TextField
|
||||
size="small"
|
||||
variant="outlined"
|
||||
placeholder="Search items…"
|
||||
value={search}
|
||||
onChange={(e)=>{setSearch(e.target.value); setPage(1);}}
|
||||
InputProps={{
|
||||
startAdornment: (
|
||||
<InputAdornment position="start">
|
||||
<SearchIcon fontSize="small" />
|
||||
</InputAdornment>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</Box>
|
||||
|
||||
{/* Sub-tabs for usable types */}
|
||||
{currentType === "USABLE_ITEM" && (
|
||||
<Box>
|
||||
{(() => {
|
||||
const colors = ['#ef5350','#ab47bc','#5c6bc0','#29b6f6','#66bb6a','#ffca28','#ffa726','#8d6e63'];
|
||||
const getColor=(idx:number)=>colors[idx%colors.length];
|
||||
return (
|
||||
<Tabs
|
||||
value={subTab}
|
||||
onChange={(_,v)=>setSubTab(v)}
|
||||
variant="scrollable"
|
||||
TabIndicatorProps={{ sx:{ backgroundColor:getColor(subTab)} }}
|
||||
sx={{ bgcolor:'background.paper', mt:1 }}
|
||||
>
|
||||
{subTypeValues.map((s,idx)=>{
|
||||
const label = s === 'ITEM' ? 'MISC' : s.replace('_ITEM','');
|
||||
return <Tab key={s} label={label} sx={{ color:getColor(idx),'&.Mui-selected':{color:getColor(idx)} }} />
|
||||
})}
|
||||
</Tabs>
|
||||
);
|
||||
})()}
|
||||
</Box>
|
||||
)}
|
||||
|
||||
{isLoading && <CircularProgress sx={{ m: 2 }} />}
|
||||
|
||||
<ItemsGrid
|
||||
items={gridItems}
|
||||
loading={isLoading}
|
||||
onSelect={(item) => setSelected(item)}
|
||||
selectedId={selected?.id}
|
||||
/>
|
||||
|
||||
<Pagination
|
||||
count={totalPages}
|
||||
page={page}
|
||||
onChange={(_, p) => setPage(p)}
|
||||
sx={{ display: "flex", justifyContent: "center", mt: 2 }}
|
||||
/>
|
||||
|
||||
<ItemDetailPanel
|
||||
open={!!selected}
|
||||
item={selected}
|
||||
onClose={() => setSelected(null)}
|
||||
/>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
172
frontend/src/pages/Recipes.tsx
Normal file
172
frontend/src/pages/Recipes.tsx
Normal file
@@ -0,0 +1,172 @@
|
||||
import { useState, useMemo } from "react";
|
||||
import Box from "@mui/material/Box";
|
||||
import Tabs from "@mui/material/Tabs";
|
||||
import Tab from "@mui/material/Tab";
|
||||
import CircularProgress from "@mui/material/CircularProgress";
|
||||
import ToggleButtonGroup from "@mui/material/ToggleButtonGroup";
|
||||
import ToggleButton from "@mui/material/ToggleButton";
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
import RecipesDetailTable from "../components/RecipesDetailTable";
|
||||
import { api } from "../api";
|
||||
import type { RecipeDetail } from "../types";
|
||||
|
||||
interface Props {
|
||||
crafts: string[];
|
||||
}
|
||||
|
||||
export default function RecipesPage({ crafts }: Props) {
|
||||
const [craftIdx, setCraftIdx] = useState(0);
|
||||
const [catIdx, setCatIdx] = useState(0);
|
||||
const [filter, setFilter] = useState<'all' | 'partial' | 'full'>('all');
|
||||
|
||||
const currentCraft = crafts[craftIdx];
|
||||
|
||||
// Inventory query for owned items (default character Rynore for now)
|
||||
const { data: inv } = useQuery({
|
||||
queryKey: ["inventory", "Rynore"],
|
||||
queryFn: async () => {
|
||||
const { data } = await api.get(`/inventory/Rynore`);
|
||||
return data as { item_name: string }[];
|
||||
},
|
||||
});
|
||||
type InvItem = { item_name: string; storage_type: string; icon_id?: string; description?: string };
|
||||
const ownedInfo = useMemo(() => {
|
||||
const map: Record<string, { storages: string[]; icon?: string; description?: string }> = {};
|
||||
(inv as InvItem[] | undefined)?.forEach((i) => {
|
||||
if (!map[i.item_name]) {
|
||||
map[i.item_name] = { storages: [], icon: undefined, description: i.description };
|
||||
}
|
||||
map[i.item_name].storages.push(i.storage_type.toUpperCase());
|
||||
if (i.icon_id) {
|
||||
map[i.item_name].icon = `/api/icon/${i.icon_id}`;
|
||||
}
|
||||
if (i.description && !map[i.item_name].description) {
|
||||
map[i.item_name].description = i.description;
|
||||
}
|
||||
});
|
||||
return map;
|
||||
}, [inv]);
|
||||
const ownedSet = useMemo(() => new Set(Object.keys(ownedInfo)), [ownedInfo]);
|
||||
|
||||
// Fetch all recipes for current craft
|
||||
const { data, isLoading } = useQuery({
|
||||
queryKey: ["recipes", currentCraft],
|
||||
queryFn: async () => {
|
||||
const { data } = await api.get(`/recipes/${currentCraft}?page_size=1000`);
|
||||
return data as RecipeDetail[];
|
||||
},
|
||||
});
|
||||
|
||||
// Derive unique ordered categories
|
||||
const categories = useMemo(() => {
|
||||
if (!data) return [] as string[];
|
||||
const set = new Set<string>();
|
||||
data.forEach((r) => set.add(r.category));
|
||||
const order = [
|
||||
"Amateur",
|
||||
"Recruit",
|
||||
"Initiate",
|
||||
"Novice",
|
||||
"Apprentice",
|
||||
"Journeyman",
|
||||
"Craftsman",
|
||||
"Artisan",
|
||||
"Adept",
|
||||
"Veteran",
|
||||
"Expert",
|
||||
"Authority",
|
||||
];
|
||||
return Array.from(set).sort((a, b) => {
|
||||
const ia = order.indexOf(a);
|
||||
const ib = order.indexOf(b);
|
||||
if (ia === -1 && ib === -1) return a.localeCompare(b);
|
||||
if (ia === -1) return 1;
|
||||
if (ib === -1) return -1;
|
||||
return ia - ib;
|
||||
});
|
||||
}, [data]);
|
||||
|
||||
// Filter by current category first
|
||||
const currentCategory = categories[catIdx];
|
||||
const catFiltered = useMemo(() => {
|
||||
return currentCategory && data
|
||||
? data.filter((r) => r.category === currentCategory)
|
||||
: data ?? [];
|
||||
}, [data, currentCategory]);
|
||||
|
||||
// Apply owned filter
|
||||
const filtered = useMemo(() => {
|
||||
if (filter === 'all') return catFiltered;
|
||||
return catFiltered.filter((r) => {
|
||||
const total = r.ingredients.length;
|
||||
const ownedCount = r.ingredients.reduce(
|
||||
(acc, [name]) => acc + (ownedSet.has(name) ? 1 : 0),
|
||||
0
|
||||
);
|
||||
if (filter === 'full') return ownedCount === total && total > 0;
|
||||
if (filter === 'partial')
|
||||
return ownedCount > 0 && ownedCount < total;
|
||||
return true;
|
||||
});
|
||||
}, [catFiltered, filter, ownedSet]);
|
||||
|
||||
return (
|
||||
<Box>
|
||||
{/* Craft tabs */}
|
||||
{(() => {
|
||||
const colors = ['#66bb6a','#42a5f5','#ffa726','#ab47bc','#5c6bc0','#ff7043','#8d6e63'];
|
||||
const getColor=(idx:number)=>colors[idx%colors.length];
|
||||
return (
|
||||
<Tabs
|
||||
value={craftIdx}
|
||||
onChange={(_,v)=>{setCraftIdx(v); setCatIdx(0);} }
|
||||
variant="scrollable"
|
||||
TabIndicatorProps={{ sx:{ backgroundColor:getColor(craftIdx)} }}
|
||||
>
|
||||
{crafts.map((c,idx)=>(
|
||||
<Tab key={c} label={c} sx={{ color:getColor(idx), '&.Mui-selected':{color:getColor(idx)} }} />
|
||||
))}
|
||||
</Tabs>
|
||||
);
|
||||
})()}
|
||||
|
||||
{/* Owned filter toggle */}
|
||||
<ToggleButtonGroup
|
||||
size="small"
|
||||
exclusive
|
||||
value={filter}
|
||||
onChange={(_, v) => v && setFilter(v)}
|
||||
sx={{ mt: 1, mb: 1, ml: 1 }}
|
||||
>
|
||||
<ToggleButton value="all">All</ToggleButton>
|
||||
<ToggleButton value="partial">Partially owned</ToggleButton>
|
||||
<ToggleButton value="full">Fully owned</ToggleButton>
|
||||
</ToggleButtonGroup>
|
||||
|
||||
{/* Category sub-tabs */}
|
||||
{(() => {
|
||||
const colors = ['#ef5350','#ab47bc','#5c6bc0','#29b6f6','#66bb6a','#ffca28','#ffa726','#8d6e63'];
|
||||
const getColor=(idx:number)=>colors[idx%colors.length];
|
||||
return (
|
||||
<Tabs
|
||||
value={catIdx}
|
||||
onChange={(_,v)=>setCatIdx(v)}
|
||||
variant="scrollable"
|
||||
TabIndicatorProps={{ sx:{ backgroundColor:getColor(catIdx)} }}
|
||||
sx={{ bgcolor:'background.paper' }}
|
||||
>
|
||||
{categories.map((cat,idx)=>(
|
||||
<Tab key={cat} label={cat} sx={{ color:getColor(idx), '&.Mui-selected':{color:getColor(idx)} }} />
|
||||
))}
|
||||
</Tabs>
|
||||
);
|
||||
})()}
|
||||
|
||||
{isLoading ? (
|
||||
<CircularProgress sx={{ m: 2 }} />
|
||||
) : (
|
||||
<RecipesDetailTable recipes={filtered} owned={ownedSet} ownedInfo={ownedInfo} />
|
||||
)}
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
101
frontend/src/pages/Recipes_old.tsx
Normal file
101
frontend/src/pages/Recipes_old.tsx
Normal file
@@ -0,0 +1,101 @@
|
||||
import { useState, useMemo } from "react";
|
||||
import Box from "@mui/material/Box";
|
||||
import Tabs from "@mui/material/Tabs";
|
||||
import Tab from "@mui/material/Tab";
|
||||
|
||||
import CircularProgress from "@mui/material/CircularProgress";
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
import RecipesDetailTable from "../components/RecipesDetailTable";
|
||||
|
||||
import { api } from "../api";
|
||||
import type { RecipeDetail } from "../types";
|
||||
|
||||
interface Props {
|
||||
crafts: string[];
|
||||
}
|
||||
|
||||
export default function RecipesPage({ crafts }: Props) {
|
||||
const [craftIdx, setCraftIdx] = useState(0);
|
||||
|
||||
const [catIdx, setCatIdx] = useState(0);
|
||||
|
||||
const currentCraft = crafts[craftIdx];
|
||||
|
||||
// Fetch all recipes for craft
|
||||
const { data, isLoading } = useQuery({
|
||||
queryKey: ["recipes", currentCraft],
|
||||
queryFn: async () => {
|
||||
const { data } = await api.get(`/recipes/${currentCraft}?page_size=1000`);
|
||||
return data as RecipeDetail[];
|
||||
},
|
||||
});
|
||||
|
||||
|
||||
|
||||
// Detail query
|
||||
const { data: detail } = useQuery({
|
||||
queryKey: ["recipe", selectedId],
|
||||
queryFn: async () => {
|
||||
if (!selectedId) return null;
|
||||
const { data } = await api.get(`/recipes/${currentCraft}/${selectedId}`);
|
||||
return data as Recipe;
|
||||
},
|
||||
enabled: !!selectedId,
|
||||
});
|
||||
|
||||
// categories from data
|
||||
const categories = useMemo(() => {
|
||||
if (!data) return [] as string[];
|
||||
const set = new Set<string>();
|
||||
data.forEach((r) => set.add(r.category));
|
||||
const order = [
|
||||
"Amateur","Recruit","Initiate","Novice","Apprentice","Journeyman","Craftsman","Artisan","Adept","Veteran","Expert","Authority"
|
||||
];
|
||||
return Array.from(set).sort((a,b)=>{
|
||||
const ia=order.indexOf(a); const ib=order.indexOf(b);
|
||||
if(ia===-1&&ib===-1) return a.localeCompare(b);
|
||||
if(ia===-1) return 1; if(ib===-1) return -1; return ia-ib;
|
||||
});
|
||||
}, [data]);
|
||||
|
||||
const currentCategory = categories[catIdx];
|
||||
const filtered = currentCategory ? data?.filter(r=>r.category===currentCategory) : data;
|
||||
|
||||
return (
|
||||
<Box>
|
||||
<Tabs
|
||||
value={craftIdx}
|
||||
onChange={(_, v) => {
|
||||
setCraftIdx(v);
|
||||
setCatIdx(0);
|
||||
}}
|
||||
variant="scrollable"
|
||||
>
|
||||
{crafts.map((c: string) => (
|
||||
<Tab key={c} label={c} />
|
||||
))}
|
||||
</Tabs>
|
||||
|
||||
{isLoading && <CircularProgress sx={{ m: 2 }} />}
|
||||
|
||||
<RecipesTable
|
||||
recipes={data}
|
||||
loading={isLoading}
|
||||
onSelect={(id) => setSelectedId(id)}
|
||||
/>
|
||||
|
||||
<Pagination
|
||||
count={10 /* placeholder */}
|
||||
page={page}
|
||||
onChange={(_, p) => setPage(p)}
|
||||
sx={{ display: "flex", justifyContent: "center", mt: 2 }}
|
||||
/>
|
||||
|
||||
<RecipeDetailDialog
|
||||
open={!!detail}
|
||||
recipe={detail}
|
||||
onClose={() => setSelectedId(null)}
|
||||
/>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
19
frontend/src/types.ts
Normal file
19
frontend/src/types.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
export interface RecipeSummary {
|
||||
id: number;
|
||||
name: string;
|
||||
level: number;
|
||||
category: string;
|
||||
crystal: string;
|
||||
}
|
||||
|
||||
export interface RecipeDetail {
|
||||
id: number;
|
||||
name: string;
|
||||
level: number;
|
||||
category: string;
|
||||
crystal: string;
|
||||
key_item?: string | null;
|
||||
ingredients: [string, number][];
|
||||
hq_yields: ([string, number] | null)[];
|
||||
subcrafts: [string, number][];
|
||||
}
|
||||
27
frontend/src/vite-env.d.ts
vendored
Normal file
27
frontend/src/vite-env.d.ts
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
/// <reference types="vite/client" />
|
||||
|
||||
// Asset module declarations so TypeScript can import image files
|
||||
declare module "*.png" {
|
||||
const src: string;
|
||||
export default src;
|
||||
}
|
||||
|
||||
declare module "*.jpg" {
|
||||
const src: string;
|
||||
export default src;
|
||||
}
|
||||
|
||||
declare module "*.jpeg" {
|
||||
const src: string;
|
||||
export default src;
|
||||
}
|
||||
|
||||
declare module "*.gif" {
|
||||
const src: string;
|
||||
export default src;
|
||||
}
|
||||
|
||||
declare module "*.svg" {
|
||||
const src: string;
|
||||
export default src;
|
||||
}
|
||||
21
frontend/tsconfig.json
Normal file
21
frontend/tsconfig.json
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ESNext",
|
||||
"useDefineForClassFields": true,
|
||||
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
||||
"allowJs": false,
|
||||
"skipLibCheck": true,
|
||||
"esModuleInterop": false,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"strict": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "Node",
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"noEmit": true,
|
||||
"jsx": "react-jsx"
|
||||
},
|
||||
"include": ["src"],
|
||||
"references": [{ "path": "./tsconfig.node.json" }]
|
||||
}
|
||||
9
frontend/tsconfig.node.json
Normal file
9
frontend/tsconfig.node.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"composite": true,
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "Node",
|
||||
"allowSyntheticDefaultImports": true
|
||||
},
|
||||
"include": ["vite.config.ts"]
|
||||
}
|
||||
12
frontend/vite.config.ts
Normal file
12
frontend/vite.config.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { defineConfig } from "vite";
|
||||
import react from "@vitejs/plugin-react";
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
server: {
|
||||
port: 5173,
|
||||
proxy: {
|
||||
"/api": "http://localhost:8000",
|
||||
},
|
||||
},
|
||||
});
|
||||
78
plan.md
Normal file
78
plan.md
Normal file
@@ -0,0 +1,78 @@
|
||||
# Final Fantasy XI Item Browser – Project Plan
|
||||
|
||||
## Overview
|
||||
This web application lets a player:
|
||||
1. Browse **their own inventory** (split into tabs by `storage_type`).
|
||||
2. Browse **all items** in the database (split into tabs by `type_description`).
|
||||
3. Click any item to view rich details (stats, flags, descriptions, icons).
|
||||
|
||||
## Tech Stack
|
||||
| Layer | Choice | Reason |
|
||||
| ------- | -------------------------- | ------ |
|
||||
| Backend | **Python 3 + FastAPI** | Minimal boilerplate, async support, automatic OpenAPI docs. |
|
||||
| DB | **PostgreSQL** (existing) | Already hosts `ffxi_items` schema. |
|
||||
| ORM | **SQLAlchemy 2 + asyncpg** | Rich modelling, async queries. |
|
||||
| Front-end | **React + TypeScript** | Component ecosystem & type safety. |
|
||||
| UI Kit | **Material-UI (MUI)** | Ready-made tabs, tables, dialogs. |
|
||||
| Data-fetch | **React-Query** | Caching & pagination out of the box. |
|
||||
| DevOps | **Docker Compose** | Consistent local/dev deployments. |
|
||||
|
||||
## Data Model Notes
|
||||
- Core tables: `inventory`, every `*_items` table.
|
||||
- Create a **view** `all_items` that UNIONs all item tables with common columns plus `type_description`.
|
||||
- Suggested indexes:
|
||||
- `inventory(character_name, storage_type)`
|
||||
- Primary keys on item tables already exist (`id`).
|
||||
|
||||
## API Endpoints (FastAPI)
|
||||
| Method | Path | Purpose |
|
||||
| ------ | ---- | ------- |
|
||||
| `GET` | `/api/metadata` | Lists distinct `storage_type` and `type_description` for building tabs. |
|
||||
| `GET` | `/api/inventory/{character}` | Items grouped by `storage_type`. Query params: `storage_type`, `search`, `page`. |
|
||||
| `GET` | `/api/items` | Pageable list across all items. Query params: `type`, `search`, `page`, `page_size`. |
|
||||
| `GET` | `/api/items/{id}` | Detailed single-item payload (joins correct table for extra columns). |
|
||||
|
||||
## Front-End Pages
|
||||
### 1. Inventory Viewer
|
||||
- Tabs dynamically rendered from `/api/metadata.storage_types`.
|
||||
- Each tab: 8×10 grid (80 cells) of item icons with quantity badge; implements lazy loading as the user scrolls.
|
||||
- Search bar filters rows client-side.
|
||||
- Icon click ⇒ `ItemDetailPanel` opens at right (drawer style) and lazy-loads `/api/items/{id}` if not already cached.
|
||||
|
||||
### 2. Item Explorer
|
||||
- Tabs from `/api/metadata.type_descriptions`.
|
||||
- Each tab fetches `/api/items?type=...` with pagination.
|
||||
- Displayed as the same 8×10 icon grid; hover shows name, click opens detail panel. (Optional toggle to list view with extra stats – e.g., `damage`, `defense`).
|
||||
|
||||
### Shared Components
|
||||
- `ItemIcon` – resolves icon_id to asset URL.
|
||||
- `ItemDetailDrawer` – generic detail viewer with conditional sections.
|
||||
- `PaginatedTable` – wrapper around MUI DataGrid + React-Query pagination.
|
||||
|
||||
## Development Roadmap
|
||||
1. **Repo Setup**
|
||||
- Create backend & frontend directories.
|
||||
- Add `Dockerfile` for backend and `docker-compose.yml` (API container + optional postgres proxy) using environment variables from `db.conf` via `.env`.
|
||||
2. **Backend MVP**
|
||||
- SQLAlchemy models & pydantic schemas.
|
||||
- Implement `/metadata`, `/items` (basic), `/inventory/{character}`.
|
||||
- Unit tests (pytest + httpx).
|
||||
3. **Frontend MVP**
|
||||
- CRA/Vite + TS + MUI scaffold.
|
||||
- Fetch & display `/metadata`; build tabs; simple grids.
|
||||
4. **Detail Drawer & Search**
|
||||
- Implement `ItemDetailDrawer`.
|
||||
- Add search fields and React-Query debounced queries.
|
||||
5. **Refinement**
|
||||
- Responsive layout tweaks, icons, loading/error states.
|
||||
- Optional auth groundwork (JWT).
|
||||
6. **Deployment**
|
||||
- Build Docker images; push to registry / run on VPS or Netlify (frontend) + Fly.io/Render (API).
|
||||
|
||||
## Next Steps
|
||||
- Confirm tech stack and roadmap with stakeholders.
|
||||
- Scaffold backend (`fastapi`, `sqlalchemy`) first to stabilise data contract.
|
||||
- Implement `/api/metadata` and seed small React prototype to validate UI.
|
||||
|
||||
---
|
||||
Generated: 2025-07-02
|
||||
210
sample_data.txt
Normal file
210
sample_data.txt
Normal file
@@ -0,0 +1,210 @@
|
||||
================ TABLE: instinct_items =================
|
||||
id | flags | flags_description | stack_size | type | type_description | resource_id | valid_targets | valid_targets_description | name | description | log_name_singular | log_name_plural | instinct_cost | icon_id
|
||||
-------+-------+-------------------------+------------+------+------------------+-------------+---------------+---------------------------+------------------+----------------------------------------+----------------------+-----------------------+---------------+----------
|
||||
29699 | 6144 | {"CAN EQUIP","NO SALE"} | 1 | 30 | UNKNOWN | 4 | 0 | {NONE} | Rabbit Ins. I | HP+2% AGI+5 Attack+10 +| rabbit instinct I | rabbit instincts I | 2 | usagi1
|
||||
| | | | | | | | | | Cost:2 | | | |
|
||||
29700 | 6144 | {"CAN EQUIP","NO SALE"} | 1 | 30 | UNKNOWN | 5 | 0 | {NONE} | Rabbit Ins. II | HP+3% DEX+5 Evasion+15 +| rabbit instinct II | rabbit instincts II | 4 | usagi2
|
||||
| | | | | | | | | | Cost:4 | | | |
|
||||
29701 | 6144 | {"CAN EQUIP","NO SALE"} | 1 | 30 | UNKNOWN | 6 | 0 | {NONE} | Rabbit Ins. III | DEX+5 AGI+5 DEF+20 +| rabbit instinct III | rabbit instincts III | 6 | usagi3
|
||||
| | | | | | | | | | "Double Attack"+2% +| | | |
|
||||
| | | | | | | | | | Cost:6 | | | |
|
||||
29702 | 6144 | {"CAN EQUIP","NO SALE"} | 1 | 30 | UNKNOWN | 7 | 0 | {NONE} | Behemoth Ins. I | AGI+10 ≺Element: Thunder≻+50 Attack+5%+| behemoth instinct I | behemoth instincts I | 10 | behemoth
|
||||
| | | | | | | | | | Cost:10 | | | |
|
||||
29703 | 6144 | {"CAN EQUIP","NO SALE"} | 1 | 30 | UNKNOWN | 8 | 0 | {NONE} | Behemoth Ins. II | HP+10% Accuracy+20 +| behemoth instinct II | behemoth instincts II | 12 | behemoth
|
||||
| | | | | | | | | | "Resist Stun"+60 +| | | |
|
||||
| | | | | | | | | | Cost:12 | | | |
|
||||
(5 rows)
|
||||
|
||||
================ TABLE: key_items =================
|
||||
id | flags | flags_description | stack_size | type | type_description | resource_id | valid_targets | valid_targets_description | name | description | log_name_singular | log_name_plural | icon_id
|
||||
----+-------+-------------------+------------+------+------------------+-------------+---------------+---------------------------+-----------------------+----------------------------------------+-----------------------+-----------------------+---------
|
||||
0 | | | | | | | | | in-text name | English Description | in-text name | in-text names |
|
||||
1 | | | | | | | | | Zeruhn report | "The Galka, our main workforce, +| Zeruhn report | Zeruhn reports |
|
||||
| | | | | | | | | | seem to suffer from low morale, +| | |
|
||||
| | | | | | | | | | as indicated by their recent +| | |
|
||||
| | | | | | | | | | insubordination. +| | |
|
||||
| | | | | | | | | | They seem to have found new hope +| | |
|
||||
| | | | | | | | | | in the return of their 'Talekeeper,' +| | |
|
||||
| | | | | | | | | | who disappeared thirty years ago." +| | |
|
||||
| | | | | | | | | | -Overseer Makarim | | |
|
||||
2 | | | | | | | | | Palborough Mines logs | These logs tell the tale of the +| Palborough Mines logs | Palborough Mines logs |
|
||||
| | | | | | | | | | pioneers who dug the Palborough +| | |
|
||||
| | | | | | | | | | Mines. +| | |
|
||||
| | | | | | | | | | The history of Palborough is said to +| | |
|
||||
| | | | | | | | | | symbolize the peak of Bastok's +| | |
|
||||
| | | | | | | | | | industrial revolution. | | |
|
||||
3 | | | | | | | | | blue acidity tester | An acidity tester given to you by Cid.+| blue acidity tester | blue acidity testers |
|
||||
| | | | | | | | | | It is currently blue. | | |
|
||||
4 | | | | | | | | | red acidity tester | An acidity tester given to you by Cid.+| red acidity tester | red acidity testers |
|
||||
| | | | | | | | | | Its color has changed from blue +| | |
|
||||
| | | | | | | | | | to red. | | |
|
||||
(5 rows)
|
||||
|
||||
================ TABLE: inventory =================
|
||||
id | character_name | storage_type | item_name | quantity | last_updated
|
||||
----+----------------+--------------+------------------+----------+---------------------
|
||||
1 | Rynore | inventory | Bone Quiver | 1 | 2024-12-22 22:33:20
|
||||
2 | Rynore | inventory | Instant Warp | 1 | 2024-12-22 22:33:20
|
||||
3 | Rynore | inventory | Bone Chip | 1 | 2024-12-22 22:33:20
|
||||
4 | Rynore | inventory | Moko Grass | 1 | 2024-12-22 22:33:20
|
||||
5 | Rynore | inventory | Florid Leaf Mold | 7 | 2024-12-22 22:33:20
|
||||
(5 rows)
|
||||
|
||||
================ TABLE: item_additional_effects =================
|
||||
id | item_id | item_table | effect
|
||||
-----+---------+--------------+-------------
|
||||
527 | 16387 | weapon_items | Poison
|
||||
528 | 16398 | weapon_items | Fire damage
|
||||
529 | 16403 | weapon_items | Poison
|
||||
530 | 16404 | weapon_items | Poison
|
||||
531 | 16410 | weapon_items | Poison
|
||||
(5 rows)
|
||||
|
||||
================ TABLE: item_elemental_effects =================
|
||||
id | item_id | item_table | element | value
|
||||
-----+---------+-------------+---------+-------
|
||||
82 | 11309 | armor_items | Light | 15
|
||||
121 | 11637 | armor_items | Dark | -20
|
||||
1 | 10287 | armor_items | Fire | 30
|
||||
2 | 10410 | armor_items | Fire | 10
|
||||
4 | 10411 | armor_items | Fire | 15
|
||||
(5 rows)
|
||||
|
||||
================ TABLE: item_enchantments =================
|
||||
id | item_id | item_table | spell | location | effect
|
||||
-----+---------+-------------+-------+----------+----------
|
||||
349 | 25587 | armor_items | | | Costume
|
||||
350 | 25604 | armor_items | | | Costume
|
||||
351 | 25638 | armor_items | | | Costume
|
||||
352 | 25639 | armor_items | | | Costume
|
||||
353 | 25645 | armor_items | | | Gluttony
|
||||
(5 rows)
|
||||
|
||||
================ TABLE: misc_items =================
|
||||
id | flags | flags_description | stack_size | type | type_description | resource_id | valid_targets | valid_targets_description | name | description | log_name_singular | log_name_plural | element | storage_slots | unknown_3 | icon_id
|
||||
----+-------+----------------------------------------------------------------------------+------------+------+------------------+-------------+---------------+---------------------------+-----------------+------------------------------------------+-------------------------+--------------------------+---------+---------------+-----------+---------
|
||||
1 | 24660 | {"MYSTERY BOX","CAN SEND POL","NO AUCTION","NO DELIVERY","NO TRADE PC",EX} | 1 | 10 | FURNISHING | 65000 | 0 | {NONE} | Chocobo Bedding | Furnishing: +| pile of chocobo bedding | piles of chocobo bedding | 07 | 1 | 0 | 0001
|
||||
| | | | | | | | | | Extremely popular among San d'Orian +| | | | | |
|
||||
| | | | | | | | | | children, this hay is so soft that it is+| | | | | |
|
||||
| | | | | | | | | | used in mattresses across the kingdom. | | | | | |
|
||||
2 | 36 | {"MYSTERY BOX",INSCRIBABLE} | 1 | 10 | FURNISHING | 65000 | 0 | {NONE} | Simple Bed | Furnishing: +| simple bed | simple beds | 05 | 1 | 0 | 0002
|
||||
| | | | | | | | | | A crude bed of simple construction. | | | | | |
|
||||
3 | 36 | {"MYSTERY BOX",INSCRIBABLE} | 1 | 10 | FURNISHING | 65000 | 0 | {NONE} | Oak Bed | Furnishing: +| oak bed | oak beds | 02 | 1 | 0 | 0003
|
||||
| | | | | | | | | | A San d'Orian bed fashioned of +| | | | | |
|
||||
| | | | | | | | | | white oak. | | | | | |
|
||||
4 | 36 | {"MYSTERY BOX",INSCRIBABLE} | 1 | 10 | FURNISHING | 65000 | 0 | {NONE} | Mahogany Bed | Furnishing: +| mahogany bed | mahogany beds | 06 | 1 | 0 | 0004
|
||||
| | | | | | | | | | A San d'Orian bed fashioned of +| | | | | |
|
||||
| | | | | | | | | | mahogany. | | | | | |
|
||||
5 | 36 | {"MYSTERY BOX",INSCRIBABLE} | 1 | 10 | FURNISHING | 65000 | 0 | {NONE} | Bronze Bed | Furnishing: +| bronze bed | bronze beds | 01 | 1 | 0 | 0005
|
||||
| | | | | | | | | | A Bastokan bed fashioned of +| | | | | |
|
||||
| | | | | | | | | | cast bronze. | | | | | |
|
||||
(5 rows)
|
||||
|
||||
================ TABLE: item_stats =================
|
||||
id | item_id | item_table | stat_name | value
|
||||
----+---------+-------------+-----------+-------
|
||||
1 | 10250 | armor_items | DEF | 1
|
||||
2 | 10251 | armor_items | DEF | 1
|
||||
3 | 10252 | armor_items | DEF | 1
|
||||
4 | 10253 | armor_items | DEF | 2
|
||||
5 | 10254 | armor_items | DEF | 2
|
||||
(5 rows)
|
||||
|
||||
================ TABLE: monipulator_items =================
|
||||
id | flags | flags_description | stack_size | type | type_description | resource_id | valid_targets | valid_targets_description | name | unknown_1 | icon_id
|
||||
-------+-------+-------------------+------------+-------+------------------+-------------+---------------+--------------------------------------------------+----------+-----------+----------
|
||||
61440 | 0 | {NONE} | 46 | 0 | NOTHING | 0 | 0 | {NONE} | | 0 | blue
|
||||
61441 | 1 | {"WALL HANGING"} | 24914 | 25186 | UNKNOWN | 29801 | 0 | {NONE} | Rabbit | 0 | usagi
|
||||
61442 | 2 | {} | 25922 | 25960 | UNKNOWN | 28525 | 26740 | {"PARTY MEMBER",NPC,ENEMY,UNKNOWN,OBJECT,CORPSE} | Behemoth | 0 | behemoth
|
||||
61443 | 3 | {"WALL HANGING"} | 26964 | 25959 | UNKNOWN | 114 | 0 | {NONE} | Tiger | 0 | tiger1
|
||||
61444 | 4 | {"MYSTERY BOX"} | 26707 | 25957 | UNKNOWN | 112 | 0 | {NONE} | Sheep | 0 | sheep1
|
||||
(5 rows)
|
||||
|
||||
================ TABLE: puppet_items =================
|
||||
id | flags | flags_description | stack_size | type | type_description | resource_id | valid_targets | valid_targets_description | name | description | log_name_singular | log_name_plural | puppet_slot | element_charge | unknown_3 | icon_id
|
||||
------+-------+-------------------+------------+------+------------------+-------------+---------------+---------------------------+-----------------+-------------------------------------------------------------------------+-----------------------+------------------------+-------------+----------------+-----------+---------
|
||||
8192 | 0 | {NONE} | 1 | 0 | NOTHING | 0 | 0 | {NONE} | . | . | . | . | 0 | 0 | 0 | 0000
|
||||
8193 | 0 | {NONE} | 1 | 0 | NOTHING | 0 | 0 | {NONE} | Harlequin Head | ≺Element: Fire≻2 ≺Element: Air≻2 ≺Element: Thunder≻2 ≺Element: Light≻0 +| Harlequin head | Harlequin heads | 1 | 2236962 | 0 | H000
|
||||
| | | | | | | | | | ≺Element: Ice≻2 ≺Element: Earth≻2 ≺Element: Water≻2 ≺Element: Dark≻0 | | | | | |
|
||||
8194 | 0 | {NONE} | 1 | 0 | NOTHING | 0 | 0 | {NONE} | Valoredge Head | ≺Element: Fire≻3 ≺Element: Air≻2 ≺Element: Thunder≻2 ≺Element: Light≻2 +| Valoredge X-900 head | Valoredge X-900 heads | 1 | 33698307 | 0 | H001
|
||||
| | | | | | | | | | ≺Element: Ice≻0 ≺Element: Earth≻3 ≺Element: Water≻0 ≺Element: Dark≻0 | | | | | |
|
||||
8195 | 0 | {NONE} | 1 | 0 | NOTHING | 0 | 0 | {NONE} | Sharpshot Head | ≺Element: Fire≻3 ≺Element: Air≻3 ≺Element: Thunder≻2 ≺Element: Light≻2 +| Sharpshot Z-500 head | Sharpshot Z-500 heads | 1 | 35783427 | 0 | H002
|
||||
| | | | | | | | | | ≺Element: Ice≻0 ≺Element: Earth≻0 ≺Element: Water≻2 ≺Element: Dark≻0 | | | | | |
|
||||
8196 | 0 | {NONE} | 1 | 0 | NOTHING | 0 | 0 | {NONE} | Stormwaker Head | ≺Element: Fire≻0 ≺Element: Air≻2 ≺Element: Thunder≻0 ≺Element: Light≻0 +| Stormwaker Y-700 head | Stormwaker Y-700 heads | 1 | 540025392 | 0 | H003
|
||||
| | | | | | | | | | ≺Element: Ice≻3 ≺Element: Earth≻2 ≺Element: Water≻3 ≺Element: Dark≻2 | | | | | |
|
||||
(5 rows)
|
||||
|
||||
================ TABLE: usable_items =================
|
||||
id | flags | flags_description | stack_size | type | type_description | resource_id | valid_targets | valid_targets_description | name | description | log_name_singular | log_name_plural | activation_time | unknown_1 | unknown_3 | unknown_4 | icon_id
|
||||
------+-------+---------------------------+------------+------+------------------+-------------+---------------+---------------------------+------------------+------------------------------------------+-------------------+--------------------+-----------------+-----------+-----------+-----------+----------
|
||||
4096 | 516 | {"MYSTERY BOX","CAN USE"} | 12 | 8 | CRYSTAL | 0 | 1 | {SELF,CORPSE} | Fire Crystal | A crystal infused with fire energy. | fire crystal | fire crystals | 0 | 0 | 0 | 1 | item0000
|
||||
4097 | 516 | {"MYSTERY BOX","CAN USE"} | 12 | 8 | CRYSTAL | 0 | 1 | {SELF,CORPSE} | Ice Crystal | A crystal infused with ice energy. | ice crystal | ice crystals | 0 | 0 | 0 | 1 | item0005
|
||||
4098 | 516 | {"MYSTERY BOX","CAN USE"} | 12 | 8 | CRYSTAL | 0 | 1 | {SELF,CORPSE} | Wind Crystal | A crystal infused with wind energy. | wind crystal | wind crystals | 0 | 0 | 0 | 1 | item0002
|
||||
4099 | 516 | {"MYSTERY BOX","CAN USE"} | 12 | 8 | CRYSTAL | 0 | 1 | {SELF,CORPSE} | Earth Crystal | A crystal infused with earth energy. | earth crystal | earth crystals | 0 | 0 | 0 | 1 | item0003
|
||||
4100 | 516 | {"MYSTERY BOX","CAN USE"} | 12 | 8 | CRYSTAL | 0 | 1 | {SELF,CORPSE} | Lightng. Crystal | A crystal infused with lightning energy. | lightning crystal | lightning crystals | 0 | 0 | 0 | 1 | item0004
|
||||
(5 rows)
|
||||
|
||||
================ TABLE: voucher_items =================
|
||||
id | flags | flags_description | stack_size | type | type_description | resource_id | valid_targets | valid_targets_description | name | description | log_name_singular | log_name_plural | unknown_1 | icon_id
|
||||
-------+-------+--------------------------------------------------------------+------------+------+------------------+-------------+---------------+---------------------------+-----------------+---------------------------------------+-------------------+------------------+-----------+---------
|
||||
28672 | 61504 | {"NO AUCTION","NO SALE","NO DELIVERY","NO TRADE PC",RARE,EX} | 1 | 22 | UNKNOWN | 7000 | 1 | {SELF,CORPSE} | Maze Tabula M01 | A tablet with numerous square notches+| Maze Tabula M01 | Maze Tabulae M01 | 0 | 28672
|
||||
| | | | | | | | | | designed to hold runes. +| | | |
|
||||
| | | | | | | | | | A must-have for adventurers looking +| | | |
|
||||
| | | | | | | | | | to design their own maze with Moblin +| | | |
|
||||
| | | | | | | | | | Maze Mongers. | | | |
|
||||
28673 | 61504 | {"NO AUCTION","NO SALE","NO DELIVERY","NO TRADE PC",RARE,EX} | 1 | 22 | UNKNOWN | 7001 | 1 | {SELF,CORPSE} | Maze Tabula M02 | A tablet with numerous square notches+| Maze Tabula M02 | Maze Tabulae M02 | 0 | 28673
|
||||
| | | | | | | | | | designed to hold runes. +| | | |
|
||||
| | | | | | | | | | A must-have for adventurers looking +| | | |
|
||||
| | | | | | | | | | to design their own maze with Moblin +| | | |
|
||||
| | | | | | | | | | Maze Mongers. | | | |
|
||||
28674 | 61504 | {"NO AUCTION","NO SALE","NO DELIVERY","NO TRADE PC",RARE,EX} | 1 | 22 | UNKNOWN | 7002 | 1 | {SELF,CORPSE} | Maze Tabula M03 | A tablet with numerous square notches+| Maze Tabula M03 | Maze Tabulae M03 | 0 | 28674
|
||||
| | | | | | | | | | designed to hold runes. +| | | |
|
||||
| | | | | | | | | | A must-have for adventurers looking +| | | |
|
||||
| | | | | | | | | | to design their own maze with Moblin +| | | |
|
||||
| | | | | | | | | | Maze Mongers. | | | |
|
||||
28675 | 61504 | {"NO AUCTION","NO SALE","NO DELIVERY","NO TRADE PC",RARE,EX} | 1 | 22 | UNKNOWN | 7003 | 1 | {SELF,CORPSE} | . | . | . | . | 0 | 28672
|
||||
28676 | 61504 | {"NO AUCTION","NO SALE","NO DELIVERY","NO TRADE PC",RARE,EX} | 1 | 22 | UNKNOWN | 7004 | 1 | {SELF,CORPSE} | . | . | . | . | 0 | 28672
|
||||
(5 rows)
|
||||
|
||||
================ TABLE: item_icons =================
|
||||
id | format | flag | category | width | height | planes | bits | compression | size | horizontal_resolution | vertical_resolution | used_colors | important_colors | image_format | image_encoding | image_data
|
||||
-------+--------------+------+----------+-------+--------+--------+------+-------------+------+-----------------------+---------------------+-------------+------------------+--------------+----------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
12552 | 8-bit Bitmap | 145 | armor | 32 | 32 | 1 | 8 | 0 | 0 | 0 | 0 | 0 | 32 | image/png | base64 | iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAU9SURBVFhHtZcrcuw8EIWzhMCBhoaGhoKChoKGhoaGhoaGAwcODMwSLgzMMrID/edrqeeRyX2l7q8qlT2W3Of06Yc8T386+q7NzPrzMrZty8Mw5GUc8jjEvE1j3ucpb/P8sPdbw4GHGPP5fM593+cYQh7TkLt+yiGOuQ9jXkWANWbbDTmElI/LPyAB+DylvM4pBxmfJxnvuzzGkDsBtV0UgZTTMOa2TXqWLgRe99nuq6m/H4BPYzLPITDLy3UecxT4kgAepYKIRQHrCgG8Pq+ThaGok75HAPAY+rwIeBAgBACfFWOUmBTvPkySXL/jJAIxD2nJ47jmOMwGXJ59MwzFe8VWwJDgmpRsbdva7BWGC4k4G+g4bTmNSkoRKeqIgN7BFrOa/rOB9yQU3pLdo8gA3DRNXtbV1ggDwHjJNCUC4IUA83Wbckoir6T9KxJBBABzj/2eK3MIXZ5leEirgUfF+7hM+agwAfqiPCAXIvuUO+fTZrlDAleIXw8HjCo/7ruuU2YHgSV50pWyk/RI3veDgZ/XxfYhe0I1zR8ve/74+Mg7iamJor9VwsExhEEnADheDFIH75EfzwdVwWlRddSwvb+/W6+YRPL1vOZFZXyUKkye/zInAGNaQxEJJ+Ck8ICuh9dIzxVw9qMW+7knSZPIQuC0L/lYFaCP/JTA4fBsQO55C/DhcIk9v5EeIMqMpCM5zXt6w7qpQ+o5XooARF7Ouzyf89vbmylBRdn7nwm4t7yEAY89z8eoStC0suuDupuSiSajHlCkV1hEep6mUro6H1yFRQ1pX1WiNSdQgaq4I4DnAAE6yYh5LM+bhlni2rQubSkvnxCw5OTdCs7vTjawwzvHbTUVALYcwM4tATxNScmkDahgcRcBW2uliLzt5DVZ74cPk0ZzrA0Ko5Ao8pd7CBxqCC2k9bqqYgyYwQNectnNexGiD3CP3HFAla622NJ6Q70nCVcdvUWdUoJcsYF9Vxf7OAmeAftAqnGkpxdAXpwlJSXFbwBuCaAAhw8E6AGoQEme1B1demxV80/Pz4XAvCwXVepSGbcSAQ5jYtlK+qZFznrYdJJVR653PcCNgBTiSJ7k3SZpIYHNar4oILsog6MPBBhefkw+NNhEJ6Pj8QxyeBoiBw19n/ZL15PsVo6FMN8HnAXVrA13cNv3orLs1aXHARCbSrcqydgpWwnH8XSyNcowDKuea0+ozagevU3D/vBAACe8hT/kgA82GYCMGlPFnMk9pWlrepnGY/1cRAD2RCRZiwqfCCgHsE1oLARfKcCGtm0U26BkIbH4rMJgqWUaTPFebVjJ5D2fNYjQIwAvz64JyECB0vnkjCbv1KXroOH4eW1K6CMD742YkVNOSML9eDRPvPNxT2ezI5dvRf3+igB2qAJzSPd1qQwaDsw4ODjjudrGGoJyX2ZRSlcjV7yGuCWjvLe8kCLVtA3sE3fIsQcbdakMvOcAwQt6NfG9J1AmRq73dMdScn61RCRsn3LAHJRNvqLcibpUhsVe4JM8gcAV6Oq5A/tzKz2akoC3/WRXTsLyZSwlZLOavyhACF3BunQdZlTxx3s+IiDDZo9fIXVtVnjKlYnkKMLkN2Q+E/B8cVt16X5YS5YC9efdsEYlQ64Gxuz7TtdZ54BVD1eeq0KwVV81Ap7IVg1ysi7dDw6fevvTgQeoghFUQjEA+egkgXnGf4hbEN4BnKvf16XvDyfggIv+PdG6vyIAYWZR7x+AMwDg3y+1z7cA/5ZIMkLIB+otgf9lAAAY0tM38J5Es7yo34J162/G09N/n7QBsrUQyCIAAAAASUVORK5CYII=
|
||||
12587 | 8-bit Bitmap | 145 | armor | 32 | 32 | 1 | 8 | 0 | 0 | 0 | 0 | 0 | 32 | image/png | base64 | iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAT6SURBVFhHrZctd9tAEEUDCwMNDQUNBQUFBQUFBQUFBQ0DDQsLC/Pv1Htnd2U5dpO0yZ4zZ6X9em/ezI7sp+9oy+m0al3brTW9lqe+pw3H43rm0MsyAdKubdOsTV3T1+tlHACv1hfeBT7xHH1VrdM4fZ1IdzysY5UIvEwDwE0QaJsWMAjMYxD4xZigNWsrrOV5Zlxl8lH/3kYOGDJ4eNR3EDiF5xOetzyPfXtVgLUnbGL9wrvj2sy6fOTnm7ILPgPccIgEVOCMzUO3LmO/2QCgoNpPyP1um/VC77jzqvR6WT5PIsBz3LvTEc8kgHeMNfSbQUzreXatwK/kiN5PEDgDLmHzpnYt4xni/VbA9UDwIm1NPkhIa6oDcYYo8havzYOO9T1jyzSuHeMpWVPOSMLn83J+n4hxKwR6gCKrM3i/sxkAQfX6ApDgJt/ZxJQApMahj2TVVKJryQ1UyVCPW0m6oSbxAIrshoCgI2Njc9rA9dxkDVVYoyqq5pV9maftaqpE33WZ3AcE9LaqiD/9BGDL4RIQXFLGWI/NfMENh+SKQr5LWhUk4a1RiYn3gZsU6hLmDHfbZCrr6DnEw4r3ememC2qYfNcElpgE+2xBmv3zNK3LMgcRlYjrjLWHwz2ByHQnTSbkChKAm4Qm0IAnglmY9sDF85nQTFgQ4V0lGwirhE55ruc/VEAwrZTammcXR1Xj0IoNmnLGjcAECdNj3iVTiAku+RRO91G+Y+8DBTquTWIICUzwsjiFQ+YSOKwzd7uQKUSiJjC3JxHeu7+c4dnZKYvbjQJ62CkdZVVwNxTw8JhecAvRC9mtR6GORAQXgBDpsWRUJRLx+Bwg2wfKnvmRvZsCBdxEsdb3XKuSLJG9vnOwGy0sKpDIeRix7lrG+C4gccV77INAx7zKipFyhZqS88UP1KaAnsUHhUSx9wOzgfOud2a+svqeZGeedZr3WmU8RzVURentA4AmIa+zyenzjQIhLQNWrVQ60xX0ML0+M+59V1Y9iqQSRGKoYR/g+Zy4LagSh+fmeJiqsf5OgYglFvc+K6CnfY/czPuxkVCUVsLkXHh9eE5x92ATjIPjo8P+ODy3QsDvQdwG1uap1ByQmWSUyM9wfAMEKh7ybDXTO6XvVYu5E1I6fzhIkrWY+/LR0SQnsKVY8zlPXZteeZWi/Joo8xyeutmiJEG9tZRKZI7fBT254feCfMgk0i16o0CWvhDxOU+lFkDIKXhDr5WYGoZxJNHii6aHrKU3X0xUQycBvw+GzxDtJd7Cy5p9LcjTqRXP4zecnmcCx7w5Yksx0ixKwzDEgSnrUUwVsCjJEntDQAetsIWAe/I0CwBTvuK9sS/ge/OOl3DMkGyU0gqJMoLohDlhSPYh0FvrjMDmjnPHfRkWVHA9t38EvjeJmGgNGS2JEpoAyh+wvcS+671Fzh8j5sMNAZvl0+t23Em/B9y/78cLsOS9OTpjwdpfQ0NlAZsGfjVdLhG6OwICWwMEV85HYMXuxukXKpz5Y/g0ieSjKfWposavZ68wqt0RsElC0yMP3YO+ZxIxafXcXJKIauRjUYB14Vhy7mENKK2Q2DZkgLegN6YChCAKF3vNI/t8ZCRhOLSReOD925aIXDck+wsR5gyBJnAhko/6/1bUkMiVjJ4kItccSP8dJWAICpF8zNfblUgic5U0mR8lQ1A9/7ghkrd/0J6e/gDKnf1srmxGiwAAAABJRU5ErkJggg==
|
||||
14524 | 8-bit Bitmap | 145 | armor | 32 | 32 | 1 | 8 | 0 | 0 | 0 | 0 | 0 | 32 | image/png | base64 | iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAVDSURBVFhHtZetk6NKFMUjkUgkEolEIpEtkS2RSCQSiYyMjIyMjBz55MiRT85/0O/8bnfP5M1ubTJTtVR1Qbov95z7TQ4/ucqyDGVR2Cq481srHf/dq23qUFfVJ/j9+lskmqYJrK5rw9h3oRJQcTjEZUQOttfUlcm1bZRPr//8ispaAXeh73oBlKFva5Fo5YUyVMnyuizCoP2uEQHtDyLZ933o2i4Mw/AzIm7owjRO4Xq5hG3dwuR9GLomeNeHdWzCOo1hGvS7q8M8DiIh4ERiFOgyL2HftuAGp9V9j8TsXVjnOVzOlzBPk+4nUwT4NPZhcc3HPsR6haapCvOME0m8tS6LPBGJDJw/G5Jl8uG0TmERCSxACR4YRaBTAjopu20+OLl5dKO5u1Xs96n58ABkIUgITEakJpF/SAKB22kJ1+NiJAABHIVYgms7gRFzvINyrN/WxfIBcEAnP2l/CH7UuRJym0db6PsjCZStshzwXS/gUgMWEEpRvioEAFUicb1ewum4GzjJx7tNo0oxYn1oBQYBvEmePAwFh+dtNmGvxCGeTiRw5y5PQGBRbEnMXuEg7iwLgc45o0cgbyQEzhmEqR4/PAgDcdqX0ZKLeE6jC+/v7xaCpm5CrdWpLFFOfkQPHC3hkMFqSNYVsrURImx4B130ELyQ4P5/wYw4Yb0lm4QBMOWq6XnczKUxFK0lp3Mxzjy3IsczwN7N5gmI5jygb9BFc7NKsPFig/jhIlwLuBfjZZ4syysp2+azKUeWPYgc991yxKw3ECUoIRBZ3qEj4gVkIE/e0C/c11DwA1f+8/JiC9aEgexGCT0exZQg5UZcsRgSznkppw9UakyVhc7asgzpRfT937ePhoRe8oP7LwRQRryx+rRvRoQ9mKPcOpwSEg/tHi/FmofMoDt7lGieCcwIdN2u1/D29ipdPpxPR1vWvBS2BB8J5PrlpRx79jgjJFREtDz1+wTqWgHqNzG2JQKZxKDcwXoMw8PkBF61ufLVAxy2Bih3yr0s4sg5YQAYErTiXF4ZkIU3CBH79AWLv7pqr0FmhkgfYaxKJqXklMgGzjUqJjBECGGEyHQW5xBEcawO9QWrlPibhQeYE9S6JZqAsoWUHXHHuKGP5fzbHFgWSqe2bCepGMFZiDtW05wABgxQOhzhyeRwe+yKnwS4n89na83rpP4iEngln39cbLBmr3qX5fcCPDNQSLJIIo5gwHnGSkjkeickX9/vFHd083x/9sv19ZDfo30bxBkAsMVfILFl93qO7RiSWE8o+P07XenxuYsXqGumI+C0UsrQhoos5Y4HIJATM4ObV/TOt0HvL15+fX01YNzPHeU2VESAhIxWRwK4n31kWNT7jwmY9Rok1DATMo/hTAIgrGUBzN5nDhRGkpqnwr5NghdQQEnyJfRyu1lHY1gBSEeEAAmJq2MIouutSjRH+GCxOZIS8lskzHp1MeoVAo3KE09A4ritBkxTsk8wgRIGwkGyAkz3YwwDXpVK2DTEkvrHF8I0DvvI0CTzrbPP7+og14qUfQdoXjBo6O00GshxhtX2P6FQd8wdUARYSf2fL8C9439A/KDkm3CeZptmbSk3a2EVcta+BcD3Ave6iOPY9iTPdwJ9P/91e8oLCHVKpjznAUcR1uUhYksghKYWITooK74LefUKa736GpIcE/XpMCA0CBhFgGNlnhFz7w0oiZrsvVKep06ewhvJ7RE8riT2+EIRwFiwzqt5wsAeWMEZrrYQCdA8pnsOWRJ7fBmYBhKDw+vvWQ7BM0riu7ideZJGe9pLInfX4fAfoozvVzLz+/UAAAAASUVORK5CYII=
|
||||
12600 | 8-bit Bitmap | 145 | armor | 32 | 32 | 1 | 8 | 0 | 0 | 0 | 0 | 0 | 32 | image/png | base64 | iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAATtSURBVFhHtZcrc+NAEIQNAw0FBQUFFwoKCgoKCgoaGgYG3r/d669nJ9YlubuK626rtvTane7peax9eWZM41CZt32rx7bUuYx1nTWn0e+Lnrd1qWXsa+n7OvZdbVv/zShDV5d5qvdjq9sy10mAgKxzMaldpNZZ70XmmPROa02k+wdEAMewPRz6OsgohrluS6mvt73u+sacrEBXZ9QSiUnrnyZhIBnDkyKDPA/dtS66Z/JtUxhu+2pwrkngTOKpcPTXq5ljCC8ggUGMzYPUyBBMQ92XIEFuZAiSBPfs476Z/vvAywDvDY4BQC0noPK613d/K4OeJxMgNwb26B1JurQERZWcDeLr0XURX0tuD4LAKmOpApL3PV6Hl4BBCAK3fZEKKDE7Wd/uh59JzlEONJjH6GWQyUcMZYwBS+Cz9AbXWsAHXfmGUqhw30OFnNsyuTJQZRcJkpdkbtABTmItKiPXsyYgAGeShdeRiBDLeLPPBHU1Qb2HRIQDWwJXUuL9rDD4vdbQIxr85YLXgCPV3YwlqYwSa8BTdiZecg2vlQP6RnaTiEmCNZB0yUKmkXKTQj0R53nRe4NbEjG6H8RIXUwEIoZqJnzTpvQ+7kMZQAFPgndJHaEKYAAH9olQkIor4ISQ68VSa+GIV7oH9MfrUV9F5ljLOyhKYcDe453e7SqrBOfKM/dIfdsmJygg7DsrSV5QFSZgWeQ9BCgnEgUCKODS0XvAs91mDiQZ1ODqGidkktXg7X4urVtqX5ZwVIdyAgKLNjoMRa1SII+DhSRShgsAZViXfR/CrulGgDDsIss9iQm449wIOASNOFcqIWylAjIU5QcwGyUlHtuL4iwmmzFGA0Etx1lXJkaRN0sUEjgAAIkIAchBAGCcTEd0uNDBonlwLQLF42kkpnGsspikMbiMAUS80+v0DnkhxhrkT7IZAtbmYUZYPVgAMKB8NLieaRzuCzIEOETxFk+JN+DEkP1JDPAzCb69A2PXa0OVBv8YAGPQWctiLaQcLVcDxmvi/SoZfchoDescEl0dYwFzeDETNJuZSZbyKzgL2WgptYAEJIa0WHunCWgmGuCudxnEE9YDThKTfPYeZ3Rv4vrG5N4EdG3QMVIi4soi16yAAGcjwHjLZrxIMiSQQ6N3/DqKpA3j4dAjV9I2WAY9DwwzWWS2TfIES3De5bMNigBlikdRUtxHcmXSZfOxWnq+vrx8JpBxYxOGaa+R4SXiZoUkte4z+ZCeLunqEHhWSvSM8JR59hz7DfLzyKSx/NrEZDPAmcGA2xNN1znec+9qUUgE5OPce6Iv5CQfeN/gvh4PEqpnGU4vIIX0eO7wSHqfETKK9+8/MgAVKSpnX9vpSKnKFip8Kf95dNeX2jUCgMZV574MZOyRPn8D4DXg7mz65ooRKOAc6XTNQ2eC27ns4FyD+v2AxFkJ5jnxMvb+vaBnwOnrnH48c+WnF8f6ISJv991rRnVVwtNg/jyQKolAwKeXky+OWpoUJKILxoHl7qbQoADeU8b8P2DGofYNAoyPJADOKsisdiuWcTxHGUIAuawEDjCqI8G/RYDxkQSgqAERt2tIyTj3EACc3xNcIeNGpu/TxA+Tb4Ln6EQicyKIREPCe2YkHqHglGv1z7U9uz0/C34eDwJBgsaVHY486PW+Lf1/AzUIQZCIyTOzLXliXC4/AUSs8e3+VL1CAAAAAElFTkSuQmCC
|
||||
12602 | 8-bit Bitmap | 145 | armor | 32 | 32 | 1 | 8 | 0 | 0 | 0 | 0 | 0 | 32 | image/png | base64 | iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAUiSURBVFhHrZchl9w4EIQXDhxoaGhoKGhoaChoaDhw4MCFgYGB+QkH75/p6qtWz8wmm9ztXvSensey3VVdXWrtvnxmLPPUmNdjb5d9a2uZWl3nti2z10uZ2163VvR7nsY2TVPrn/6ZUaahbevSbpe97dvaFgHOo9aWYlKHSNVV6yKw1dpq3UVkauM4/n8igBOYDOd5dtBxjOAQeL0e7dAz5jKPegdFliDR3++hPjam8WwpQ1YCDW0YBKDgpax+tlqBqrKsvkJg0rvMJPEpAsMw+ENAprkok8XAo+7Jalm3Nuk5qgC8LVO7qRQQ2LZ6J0E5KBcq9tD/PsgSiQGfARcw10VZQwADjiJIWcKQc/vrW+mGHP2cSXm4f54d4v0RwD3re+YKsmAulSDBRe7Y9CzfQwntiNcroCJVw6xfbheZU4aUOSljh3kMwJgEYhvlvYGVNcD5G3Ay5Ap4kkwz3o5Fu2Nuf39HCRl2W6yOzSkSRVvzTRn4CFZsrboW72mTUaaYh0nWCYI6ECBTm1LTRuwqYVL3A2JKevyACi6R7qtIvVGBrL2veVEmgr1ZlmLwdZGRuuwQAAQyfLdKmW2T4RY1nq4U7w1n7RrtFExJrzBJTb4jfvhCJCy5wDDF7UKNlJleuB6bt1NkHjPKQhCU0TOBVm0tDAmpul+iVIqJ21HB3ujfuaQileBcX+hg8SIvDQb9+nppryJz2csd8HQ6OwBloQSsrau2lb0hMF255zk74brLK/o2jIqaEIYoycVWNQFGUfYmoO2EYSCAAtSPdcCz3eZ7DtrVIXvKwNXNqIOjKupaOSkRTasoMZKrDwLhfNVPICzGwYIZVesuG/fZ96mlVbNyenc7nD1kwsAP8DyMWLNyiuft6Fg/GJHguJssnLHWMCfbp0oZ1ghMUCbZpDmRmCQAg4R3QX8vyxgKq1TEcSI/NCMeFAUgY8yH+2mvBKNmdrGeAez6qwVDMkAEphZtIP3elB0EIvsgYaW1RrwO+RgEtlwdPI5UGknft3pGzTES9TYBEeGbVAWw2KLRMwDM7Jn3/vDeWQAw9SeYs1RAGg0l8R62y3cdKIe3G79Ztxf0LmB5bnB4MYNQNDJKZOOKdIeMkScdATAI0gEa/T2yJuM0GuC1st8VVJlQFpsSPxDDJWCN73WlR4gARExAMTt0jAR31xNYKIFckvYud5zjZAIRJoFQDHCMGqaN4NEniKkuSm+wOaMsBn0e0aUiOCTILHo7YAkemeU92UIAf7hU3lL8DgDiBYFoPly5P51OPxMYXbckQSOJjmbmli3ACQI460hPicia/eydom+jZ4QPAAzpo5tSahpah3070jSQINCCZHZzgDMBZh3Jw5yUTMdx/wMUJSKR+AYlOSuYxGL9lwQY1O1uSAgYPPZwGtDktEuOGgajOdFSIUCbpgGhDM9R0r2/J/Ou/M/jrOMzlYgJIZWlG5GJ9Pk3AN3S4HQ2/YYQJQGcIx2DcphFa47kOtSvx4PEQ40Ed+uEgI5qgkICcPo6BExK7/CnF8c6f4p9uR1v/nzvML8fSJVEqFucdGFKQNimyEyGLoO6Jc2I0rBG9rRt/j9g0kV55z8TYGCWZzUgganYBewU6g1Y9gHAUQdyuRM4wMg+S/AhAgwInM8PT6AG3Y2/fpiAhOxa7+CcdlyjNY+hjkz4YfAcP5NAjTglme6W/SDKFpvg3NPMPg3+PIZOIqVEjVBCjYatOvxmf/+pgRp4AU8kEe45P/ornxgvL/8A5WXtg9QKMNYAAAAASUVORK5CYII=
|
||||
(5 rows)
|
||||
|
||||
================ TABLE: armor_items =================
|
||||
id | flags | flags_description | stack_size | type | type_description | resource_id | valid_targets | valid_targets_description | name | description | log_name_singular | log_name_plural | level | item_level | slots | slots_description | races | races_description | jobs | jobs_description | superior_level | shield_size | max_charges | casting_time | use_delay | reuse_delay | unknown_2 | unknown_3 | icon_id
|
||||
-------+-------+-----------------------------------------+------------+------+------------------+-------------+---------------+---------------------------+---------------+------------------------------------+-------------------+-----------------+-------+------------+-------+-------------------+-------+-------------------+---------+-----------------------------------+----------------+-------------+-------------+--------------+-----------+-------------+-----------+-----------+---------
|
||||
10240 | 2084 | {"MYSTERY BOX",INSCRIBABLE,"CAN EQUIP"} | 1 | 5 | ARMOR | 50201 | 0 | {NONE} | Hexed Haubert | The minacious aura that looms over+| hexed haubert | hexed hauberts | 99 | 0 | 32 | {BODY} | 510 | {ALL} | 17282 | {WAR,PLD,DRK,BST,DRG} | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 16777216 | 12552
|
||||
| | | | | | | | | | this haubert seems to invite utter+| | | | | | | | | | | | | | | | | | |
|
||||
| | | | | | | | | | ruin to descend upon its bearer. | | | | | | | | | | | | | | | | | | |
|
||||
10241 | 2084 | {"MYSTERY BOX",INSCRIBABLE,"CAN EQUIP"} | 1 | 5 | ARMOR | 50201 | 0 | {NONE} | Hexed Domaru | The minacious aura that looms over+| hexed domaru | hexed domaru | 99 | 0 | 32 | {BODY} | 510 | {ALL} | 274436 | {MNK,SAM,NIN,PUP} | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 16777216 | 12587
|
||||
| | | | | | | | | | this domaru seems to invite utter +| | | | | | | | | | | | | | | | | | |
|
||||
| | | | | | | | | | ruin to descend upon its bearer. | | | | | | | | | | | | | | | | | | |
|
||||
10242 | 2084 | {"MYSTERY BOX",INSCRIBABLE,"CAN EQUIP"} | 1 | 5 | ARMOR | 50201 | 0 | {NONE} | Hexed Jacket | The minacious aura that looms over+| hexed jacket | hexed jackets | 99 | 0 | 32 | {BODY} | 510 | {ALL} | 4925508 | {MNK,THF,RNG,NIN,BLU,COR,DNC,RUN} | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 16777216 | 14524
|
||||
| | | | | | | | | | this jacket seems to invite utter +| | | | | | | | | | | | | | | | | | |
|
||||
| | | | | | | | | | ruin to descend upon its bearer. | | | | | | | | | | | | | | | | | | |
|
||||
10243 | 2084 | {"MYSTERY BOX",INSCRIBABLE,"CAN EQUIP"} | 1 | 5 | ARMOR | 50201 | 0 | {NONE} | Hexed Doublet | The minacious aura that looms over+| hexed doublet | hexed doublets | 99 | 0 | 32 | {BODY} | 510 | {ALL} | 3244080 | {BLM,RDM,SMN,BLU,SCH,GEO} | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 16777216 | 12600
|
||||
| | | | | | | | | | this doublet seems to invite utter+| | | | | | | | | | | | | | | | | | |
|
||||
| | | | | | | | | | ruin to descend upon its bearer. | | | | | | | | | | | | | | | | | | |
|
||||
10244 | 2084 | {"MYSTERY BOX",INSCRIBABLE,"CAN EQUIP"} | 1 | 5 | ARMOR | 50201 | 0 | {NONE} | Hexed Bliaut | The minacious aura that looms over+| hexed bliaut | hexed bliauts | 99 | 0 | 32 | {BODY} | 510 | {ALL} | 1049640 | {WHM,RDM,BRD,SCH} | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 16777216 | 12602
|
||||
| | | | | | | | | | this bliaut seems to invite utter +| | | | | | | | | | | | | | | | | | |
|
||||
| | | | | | | | | | ruin to descend upon its bearer. | | | | | | | | | | | | | | | | | | |
|
||||
(5 rows)
|
||||
|
||||
================ TABLE: weapon_items =================
|
||||
id | flags | flags_description | stack_size | type | type_description | resource_id | valid_targets | valid_targets_description | name | description | log_name_singular | log_name_plural | level | ilevel | slots | races | jobs | superior_level | damage | delay | dps | skill | jug_size | max_charges | casting_time | use_delay | reuse_delay | unknown_1 | unknown_2 | unknown_3 | unknown_4 | icon_id
|
||||
-------+-------+-----------------------------------------+------------+------+------------------+-------------+---------------+---------------------------+--------------+-------------------------------+-------------------+-----------------------+-------+--------+-------+-------+--------+----------------+--------+-------+-----+-------+----------+-------------+--------------+-----------+-------------+-----------+-----------+-----------+-----------+---------
|
||||
16385 | 2084 | {"MYSTERY BOX",INSCRIBABLE,"CAN EQUIP"} | 1 | 4 | WEAPON | 10099 | 0 | {NONE} | Cesti | DMG:+1 Delay:+48 Accuracy+3 | cesti | pairs of cesti | 1 | 0 | 1 | 510 | 527334 | 0 | 4 | 288 | 83 | 1 | 0 | 0 | 0 | 0 | 0 | 3 | 0 | 16777216 | 0 | 16385
|
||||
16386 | 2084 | {"MYSTERY BOX",INSCRIBABLE,"CAN EQUIP"} | 1 | 4 | WEAPON | 10088 | 0 | {NONE} | Lizard Cesti | DMG:+2 Delay:+48 Accuracy+3 | lizard cesti | pairs of lizard cesti | 12 | 0 | 1 | 510 | 527334 | 0 | 5 | 288 | 104 | 1 | 0 | 0 | 0 | 0 | 0 | 3 | 0 | 16777216 | 0 | 16386
|
||||
16387 | 2084 | {"MYSTERY BOX",INSCRIBABLE,"CAN EQUIP"} | 1 | 4 | WEAPON | 10073 | 0 | {NONE} | Poison Cesti | DMG:+3 Delay:+48 Accuracy+3 +| poison cesti | pairs of poison cesti | 27 | 0 | 1 | 510 | 527334 | 0 | 6 | 288 | 125 | 1 | 0 | 0 | 0 | 0 | 0 | 3 | 0 | 16777216 | 0 | 16387
|
||||
| | | | | | | | | | Additional effect: Poison | | | | | | | | | | | | | | | | | | | | | |
|
||||
16388 | 2084 | {"MYSTERY BOX",INSCRIBABLE,"CAN EQUIP"} | 1 | 4 | WEAPON | 10060 | 0 | {NONE} | Himantes | DMG:+4 Delay:+48 Accuracy+3 | himantes | pairs of himantes | 40 | 0 | 1 | 510 | 527334 | 0 | 7 | 288 | 146 | 1 | 0 | 0 | 0 | 0 | 0 | 3 | 0 | 16777216 | 0 | 16388
|
||||
16389 | 2084 | {"MYSTERY BOX",INSCRIBABLE,"CAN EQUIP"} | 1 | 4 | WEAPON | 10048 | 0 | {NONE} | Coeurl Cesti | DMG:+5 Delay:+48 DEX+1 AGI+1 +| coeurl cesti | pairs of coeurl cesti | 52 | 0 | 1 | 510 | 527334 | 0 | 8 | 288 | 167 | 1 | 0 | 0 | 0 | 0 | 0 | 3 | 0 | 16777216 | 0 | 16389
|
||||
| | | | | | | | | | Accuracy+3 | | | | | | | | | | | | | | | | | | | | | |
|
||||
(5 rows)
|
||||
|
||||
20
schemas/recipes_woodworking.sql
Normal file
20
schemas/recipes_woodworking.sql
Normal file
@@ -0,0 +1,20 @@
|
||||
-- Schema for recipes_woodworking table
|
||||
-- Run this in psql to create the table.
|
||||
DROP TABLE IF EXISTS recipes_woodworking;
|
||||
|
||||
CREATE TABLE recipes_woodworking (
|
||||
id SERIAL PRIMARY KEY,
|
||||
category TEXT NOT NULL,
|
||||
level INT NOT NULL,
|
||||
subcrafts JSONB,
|
||||
name TEXT NOT NULL,
|
||||
crystal TEXT NOT NULL,
|
||||
key_item TEXT,
|
||||
ingredients JSONB,
|
||||
hq_yields JSONB
|
||||
);
|
||||
|
||||
-- Useful indexes
|
||||
CREATE INDEX idx_recipes_woodworking_level ON recipes_woodworking(level);
|
||||
CREATE INDEX idx_recipes_woodworking_name ON recipes_woodworking(name);
|
||||
CREATE INDEX idx_recipes_woodworking_crystal ON recipes_woodworking(crystal);
|
||||
88
scripts/README.md
Normal file
88
scripts/README.md
Normal file
@@ -0,0 +1,88 @@
|
||||
# Recipe ETL Scripts
|
||||
|
||||
This directory contains helper scripts for extracting Woodworking recipe data
|
||||
from the raw **datasets/Woodworking.txt** file and loading it into the project
|
||||
PostgreSQL database.
|
||||
|
||||
## File overview
|
||||
|
||||
| File | Purpose |
|
||||
|------|---------|
|
||||
| **woodworking_to_csv.py** | Legacy first-pass parser → `datasets/Woodworking.csv`. |
|
||||
| **woodworking_to_csv_v2.py** | Improved parser that matches the spec (category, level, sub-crafts, ingredients, HQ yields, etc.) → `datasets/Woodworking_v2.csv`. |
|
||||
| **recipes_to_csv_v2.py** | Generic parser. `python recipes_to_csv_v2.py <Craft>` processes one craft; use `python recipes_to_csv_v2.py --all` **or simply omit the argument** to parse every `.txt` file under `datasets/`, producing `datasets/<Craft>_v2.csv` for each. |
|
||||
| **load_woodworking_to_db.py** | Loader for the legacy CSV (kept for reference). |
|
||||
| **load_woodworking_v2_to_db.py** | Drops & recreates **recipes_woodworking** table and bulk-loads `Woodworking_v2.csv`. |
|
||||
| **load_recipes_v2_to_db.py** | Generic loader. `python load_recipes_v2_to_db.py <Craft>` loads one craft; omit the argument to load **all** generated CSVs into their respective `recipes_<craft>` tables. |
|
||||
| **requirements.txt** | Minimal Python dependencies for the scripts. |
|
||||
| **venv/** | Local virtual-environment created by the setup steps below. |
|
||||
|
||||
## Prerequisites
|
||||
|
||||
* Python ≥ 3.9
|
||||
* PostgreSQL instance reachable with credentials in `db.conf` at project root:
|
||||
|
||||
```ini
|
||||
PSQL_HOST=…
|
||||
PSQL_PORT=…
|
||||
PSQL_USER=…
|
||||
PSQL_PASSWORD=…
|
||||
PSQL_DBNAME=…
|
||||
```
|
||||
|
||||
## Quick start (Woodworking example)
|
||||
|
||||
```bash
|
||||
# 1. From project root
|
||||
cd scripts
|
||||
|
||||
# 2. Create & activate virtualenv (only once)
|
||||
python3 -m venv venv
|
||||
source venv/bin/activate
|
||||
|
||||
# 3. Install dependencies
|
||||
pip install -r requirements.txt
|
||||
|
||||
# 4. Generate CSVs for **all** crafts
|
||||
python recipes_to_csv_v2.py --all # or simply `python recipes_to_csv_v2.py`
|
||||
|
||||
# 5. Load all crafts into the DB (drops/recreates each table)
|
||||
python load_recipes_v2_to_db.py
|
||||
```
|
||||
|
||||
To work with a **single craft**, specify its name instead:
|
||||
|
||||
```bash
|
||||
python recipes_to_csv_v2.py Smithing # generate Smithing_v2.csv
|
||||
python load_recipes_v2_to_db.py Smithing # load only Smithing recipes
|
||||
```
|
||||
|
||||
The loader will output e.g.:
|
||||
|
||||
```
|
||||
Wrote 480 recipes -> datasets/Woodworking_v2.csv
|
||||
Loaded recipes into new recipes_woodworking table.
|
||||
```
|
||||
|
||||
## CSV schema (v2)
|
||||
|
||||
Column | Notes
|
||||
------ | -----
|
||||
`category` | Craft rank without level range (e.g. "Amateur")
|
||||
`level` | Recipe level integer
|
||||
`subcrafts` | JSON list `[["Smithing",2],["Alchemy",7]]`
|
||||
`name` | NQ product name
|
||||
`crystal` | Element used (Wind, Earth, etc.)
|
||||
`key_item` | Required key item (blank if none)
|
||||
`ingredients` | JSON list `[["Arrowwood Log",1]]`
|
||||
`hq_yields` | JSON list HQ1-HQ3 e.g. `[["Arrowwood Lumber",6],["Arrowwood Lumber",9],["Arrowwood Lumber",12]]`
|
||||
|
||||
## Parsing rules
|
||||
|
||||
* Item quantities are detected only when the suffix uses an “x” (e.g. `Lumber x6`).
|
||||
* Strings such as `Bronze Leggings +1` are treated as the **full item name**; the `+1/+2/+3` suffix is preserved.
|
||||
|
||||
## Developing / debugging
|
||||
|
||||
* Edit the parsers as needed, then rerun them to regenerate CSV.
|
||||
* Feel free to add new scripts here; remember to update **requirements.txt** & this README.
|
||||
167
scripts/load_recipes_v2_to_db.py
Normal file
167
scripts/load_recipes_v2_to_db.py
Normal file
@@ -0,0 +1,167 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Load <Craft>_v2.csv into PostgreSQL.
|
||||
|
||||
Usage:
|
||||
python load_recipes_v2_to_db.py <CRAFT>
|
||||
|
||||
The script drop-creates table `recipes_<craft>` (lowercased) with the generic
|
||||
v2 schema, then bulk-loads from the CSV produced by recipes_to_csv_v2.py.
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
import argparse
|
||||
import asyncio
|
||||
import csv
|
||||
import json
|
||||
import pathlib
|
||||
import re
|
||||
from typing import Dict
|
||||
|
||||
import asyncpg
|
||||
|
||||
PROJECT_ROOT = pathlib.Path(__file__).resolve().parents[1]
|
||||
CONF_PATH = PROJECT_ROOT / "db.conf"
|
||||
DATASETS_DIR = PROJECT_ROOT / "datasets"
|
||||
|
||||
RE_KEY = re.compile(r"^([A-Z0-9_]+)=(.*)$")
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Category mapping
|
||||
# ---------------------------------------------------------------------------
|
||||
CATEGORY_RANGES = [
|
||||
("Amateur", 1, 10),
|
||||
("Recruit", 8, 20),
|
||||
("Initiate", 18, 30),
|
||||
("Novice", 28, 40),
|
||||
("Apprentice", 38, 50),
|
||||
("Journeyman", 48, 60),
|
||||
("Craftsman", 58, 70),
|
||||
("Artisan", 68, 80),
|
||||
("Adept", 78, 90),
|
||||
("Veteran", 88, 100),
|
||||
("Expert", 98, 110),
|
||||
("Authority", 111, 120),
|
||||
]
|
||||
|
||||
def category_for_level(level: int) -> str:
|
||||
for name, lo, hi in CATEGORY_RANGES:
|
||||
if lo <= level <= hi:
|
||||
return name
|
||||
return "Unknown"
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Helpers
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def parse_db_conf(path: pathlib.Path) -> Dict[str, str]:
|
||||
conf: Dict[str, str] = {}
|
||||
for line in path.read_text().splitlines():
|
||||
line = line.strip()
|
||||
if not line or line.startswith('#'):
|
||||
continue
|
||||
if (m := RE_KEY.match(line)):
|
||||
k, v = m.group(1), m.group(2).strip().strip("'\"")
|
||||
conf[k] = v
|
||||
return conf
|
||||
|
||||
|
||||
async def recreate_table(conn: asyncpg.Connection, craft: str):
|
||||
table = f"recipes_{craft.lower()}"
|
||||
await conn.execute(f"DROP TABLE IF EXISTS {table};")
|
||||
await conn.execute(
|
||||
f"""
|
||||
CREATE TABLE {table} (
|
||||
id SERIAL PRIMARY KEY,
|
||||
category TEXT NOT NULL,
|
||||
level INT NOT NULL,
|
||||
subcrafts JSONB,
|
||||
name TEXT NOT NULL,
|
||||
crystal TEXT NOT NULL,
|
||||
key_item TEXT,
|
||||
ingredients JSONB,
|
||||
hq_yields JSONB
|
||||
);
|
||||
"""
|
||||
)
|
||||
|
||||
|
||||
async def insert_csv(conn: asyncpg.Connection, craft: str, csv_path: pathlib.Path):
|
||||
table = f"recipes_{craft.lower()}"
|
||||
with csv_path.open(encoding="utf-8") as f:
|
||||
reader = csv.DictReader(f)
|
||||
records = []
|
||||
for row in reader:
|
||||
records.append(
|
||||
(
|
||||
category_for_level(int(row["level"])),
|
||||
int(row["level"]),
|
||||
json.dumps(json.loads(row["subcrafts"] or "[]")),
|
||||
row["name"],
|
||||
row["crystal"],
|
||||
row["key_item"] or None,
|
||||
json.dumps(json.loads(row["ingredients"] or "[]")),
|
||||
json.dumps(json.loads(row["hq_yields"] or "[]")),
|
||||
)
|
||||
)
|
||||
await conn.copy_records_to_table(
|
||||
table,
|
||||
records=records,
|
||||
columns=[
|
||||
"category",
|
||||
"level",
|
||||
"subcrafts",
|
||||
"name",
|
||||
"crystal",
|
||||
"key_item",
|
||||
"ingredients",
|
||||
"hq_yields",
|
||||
],
|
||||
)
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Main
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
async def process_craft(conn: asyncpg.Connection, craft: str):
|
||||
csv_path = DATASETS_DIR / f"{craft}_v2.csv"
|
||||
if not csv_path.exists():
|
||||
print(f"CSV not found for {craft}, skipping.")
|
||||
return
|
||||
await recreate_table(conn, craft)
|
||||
await insert_csv(conn, craft, csv_path)
|
||||
print(f"Loaded {craft} -> recipes_{craft.lower()} table.")
|
||||
|
||||
|
||||
async def main_async(craft: str | None):
|
||||
conf = parse_db_conf(CONF_PATH)
|
||||
conn = await asyncpg.connect(
|
||||
host=conf["PSQL_HOST"],
|
||||
port=int(conf["PSQL_PORT"]),
|
||||
user=conf["PSQL_USER"],
|
||||
password=conf["PSQL_PASSWORD"],
|
||||
database=conf["PSQL_DBNAME"],
|
||||
)
|
||||
try:
|
||||
if craft:
|
||||
await process_craft(conn, craft)
|
||||
else:
|
||||
# Scan datasets dir
|
||||
for p in DATASETS_DIR.glob("*_v2.csv"):
|
||||
c = p.stem.replace("_v2", "")
|
||||
await process_craft(conn, c)
|
||||
finally:
|
||||
await conn.close()
|
||||
|
||||
|
||||
def main() -> None:
|
||||
p = argparse.ArgumentParser(description="Load <Craft>_v2.csv into DB")
|
||||
p.add_argument("craft", nargs="?", help="Craft name; if omitted, load all *_v2.csv files")
|
||||
args = p.parse_args()
|
||||
craft_arg = args.craft.strip() if args.craft else None
|
||||
asyncio.run(main_async(craft_arg))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
146
scripts/load_woodworking_to_db.py
Normal file
146
scripts/load_woodworking_to_db.py
Normal file
@@ -0,0 +1,146 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Create recipes_woodworking table and load data from datasets/Woodworking.csv.
|
||||
|
||||
Usage:
|
||||
python3 scripts/load_woodworking_to_db.py
|
||||
|
||||
The script reads database connection details from db.conf located at the project root.
|
||||
It is idempotent – creating the table only if it doesn't already exist, then
|
||||
inserting new rows (it truncates beforehand to avoid duplicates).
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
import csv
|
||||
import pathlib
|
||||
import re
|
||||
from typing import Any, Dict, List, Optional
|
||||
|
||||
import asyncpg
|
||||
|
||||
PROJECT_ROOT = pathlib.Path(__file__).resolve().parents[1]
|
||||
CONF_PATH = PROJECT_ROOT / "db.conf"
|
||||
CSV_PATH = PROJECT_ROOT / "datasets/Woodworking.csv"
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Helpers
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def parse_db_conf(path: pathlib.Path) -> Dict[str, str]:
|
||||
"""Parse simple KEY=VALUE lines into a dict."""
|
||||
conf: Dict[str, str] = {}
|
||||
pattern = re.compile(r"^([A-Z0-9_]+)=(.*)$")
|
||||
for line in path.read_text().splitlines():
|
||||
line = line.strip()
|
||||
if not line or line.startswith("#"):
|
||||
continue
|
||||
m = pattern.match(line)
|
||||
if m:
|
||||
key, value = m.group(1), m.group(2)
|
||||
# Remove surrounding quotes if present
|
||||
value = value.strip().strip("'\"")
|
||||
conf[key] = value
|
||||
required = {"PSQL_HOST", "PSQL_PORT", "PSQL_USER", "PSQL_PASSWORD", "PSQL_DBNAME"}
|
||||
missing = required - conf.keys()
|
||||
if missing:
|
||||
raise RuntimeError(f"Missing keys in db.conf: {', '.join(sorted(missing))}")
|
||||
return conf
|
||||
|
||||
|
||||
async def create_table(conn: asyncpg.Connection) -> None:
|
||||
await conn.execute(
|
||||
"""
|
||||
CREATE TABLE IF NOT EXISTS recipes_woodworking (
|
||||
id SERIAL PRIMARY KEY,
|
||||
category TEXT NOT NULL,
|
||||
level INT NOT NULL,
|
||||
product_name TEXT NOT NULL,
|
||||
nq_yield INT,
|
||||
hq1_yield INT,
|
||||
hq2_yield INT,
|
||||
hq3_yield INT,
|
||||
crystal TEXT,
|
||||
ingredients TEXT
|
||||
);
|
||||
"""
|
||||
)
|
||||
|
||||
|
||||
async def truncate_table(conn: asyncpg.Connection) -> None:
|
||||
await conn.execute("TRUNCATE TABLE recipes_woodworking;")
|
||||
|
||||
|
||||
async def insert_rows(conn: asyncpg.Connection, rows: List[Dict[str, str]]) -> None:
|
||||
"""Bulk insert via copy protocol for speed."""
|
||||
# Prepare iterable of tuples converting blanks to None and ints accordingly
|
||||
tuples = []
|
||||
for r in rows:
|
||||
tuples.append(
|
||||
(
|
||||
r["category"],
|
||||
int(r["level"]),
|
||||
r["product_name"],
|
||||
_to_int_or_none(r["nq_yield"]),
|
||||
_to_int_or_none(r["hq1_yield"]),
|
||||
_to_int_or_none(r["hq2_yield"]),
|
||||
_to_int_or_none(r["hq3_yield"]),
|
||||
r["crystal"] or None,
|
||||
r["ingredients"] or None,
|
||||
)
|
||||
)
|
||||
|
||||
await conn.copy_records_to_table(
|
||||
"recipes_woodworking",
|
||||
records=tuples,
|
||||
columns=[
|
||||
"category",
|
||||
"level",
|
||||
"product_name",
|
||||
"nq_yield",
|
||||
"hq1_yield",
|
||||
"hq2_yield",
|
||||
"hq3_yield",
|
||||
"crystal",
|
||||
"ingredients",
|
||||
],
|
||||
)
|
||||
|
||||
|
||||
def _to_int_or_none(s: str) -> Optional[int]:
|
||||
s = s.strip()
|
||||
return int(s) if s else None
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Main
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
async def main() -> None:
|
||||
if not CSV_PATH.exists():
|
||||
raise SystemExit("CSV file not found. Run woodworking_to_csv.py first.")
|
||||
|
||||
conf = parse_db_conf(CONF_PATH)
|
||||
|
||||
conn = await asyncpg.connect(
|
||||
host=conf["PSQL_HOST"],
|
||||
port=int(conf["PSQL_PORT"]),
|
||||
user=conf["PSQL_USER"],
|
||||
password=conf["PSQL_PASSWORD"],
|
||||
database=conf["PSQL_DBNAME"],
|
||||
)
|
||||
try:
|
||||
await create_table(conn)
|
||||
await truncate_table(conn)
|
||||
|
||||
with CSV_PATH.open(newline="", encoding="utf-8") as f:
|
||||
reader = csv.DictReader(f)
|
||||
rows = list(reader)
|
||||
|
||||
await insert_rows(conn, rows)
|
||||
print(f"Inserted {len(rows)} rows into recipes_woodworking.")
|
||||
finally:
|
||||
await conn.close()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
asyncio.run(main())
|
||||
134
scripts/load_woodworking_v2_to_db.py
Normal file
134
scripts/load_woodworking_v2_to_db.py
Normal file
@@ -0,0 +1,134 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Load datasets/Woodworking_v2.csv into PostgreSQL (recipes_woodworking table).
|
||||
Drops the old table if present and creates a new one matching the v2 schema.
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
import csv
|
||||
import json
|
||||
import pathlib
|
||||
import re
|
||||
from typing import Any, Dict, List, Optional
|
||||
|
||||
import asyncpg
|
||||
|
||||
PROJECT_ROOT = pathlib.Path(__file__).resolve().parents[1]
|
||||
CONF_PATH = PROJECT_ROOT / "db.conf"
|
||||
CSV_PATH = PROJECT_ROOT / "datasets/Woodworking_v2.csv"
|
||||
|
||||
RE_KEY = re.compile(r"^([A-Z0-9_]+)=(.*)$")
|
||||
|
||||
|
||||
def parse_db_conf(path: pathlib.Path) -> Dict[str, str]:
|
||||
data: Dict[str, str] = {}
|
||||
for line in path.read_text().splitlines():
|
||||
line = line.strip()
|
||||
if not line or line.startswith("#"):
|
||||
continue
|
||||
m = RE_KEY.match(line)
|
||||
if m:
|
||||
k, v = m.group(1), m.group(2).strip().strip("'\"")
|
||||
data[k] = v
|
||||
return data
|
||||
|
||||
|
||||
async def recreate_table(conn: asyncpg.Connection):
|
||||
await conn.execute("DROP TABLE IF EXISTS recipes_woodworking;")
|
||||
await conn.execute(
|
||||
"""
|
||||
CREATE TABLE recipes_woodworking (
|
||||
id SERIAL PRIMARY KEY,
|
||||
category TEXT NOT NULL,
|
||||
level INT NOT NULL,
|
||||
subcrafts JSONB,
|
||||
name TEXT NOT NULL,
|
||||
crystal TEXT NOT NULL,
|
||||
key_item TEXT,
|
||||
ingredients JSONB,
|
||||
hq_yields JSONB
|
||||
);
|
||||
"""
|
||||
)
|
||||
|
||||
|
||||
CATEGORY_RANGES = [
|
||||
("Amateur", 1, 10),
|
||||
("Recruit", 8, 20),
|
||||
("Initiate", 18, 30),
|
||||
("Novice", 28, 40),
|
||||
("Apprentice", 38, 50),
|
||||
("Journeyman", 48, 60),
|
||||
("Craftsman", 58, 70),
|
||||
("Artisan", 68, 80),
|
||||
("Adept", 78, 90),
|
||||
("Veteran", 88, 100),
|
||||
("Expert", 98, 110),
|
||||
("Authority", 111, 120),
|
||||
]
|
||||
|
||||
def category_for_level(level: int) -> str:
|
||||
"""Return the category name that includes the given level.
|
||||
|
||||
If multiple ranges overlap, the first match in CATEGORY_RANGES is returned.
|
||||
"""
|
||||
for name, lo, hi in CATEGORY_RANGES:
|
||||
if lo <= level <= hi:
|
||||
return name
|
||||
return "Unknown"
|
||||
|
||||
|
||||
async def insert_csv(conn: asyncpg.Connection):
|
||||
with CSV_PATH.open(encoding="utf-8") as f:
|
||||
reader = csv.DictReader(f)
|
||||
records = []
|
||||
for row in reader:
|
||||
records.append(
|
||||
(
|
||||
category_for_level(int(row["level"])),
|
||||
int(row["level"]),
|
||||
json.dumps(json.loads(row["subcrafts"] or "[]")), # jsonb text
|
||||
row["name"],
|
||||
row["crystal"],
|
||||
row["key_item"] or None,
|
||||
json.dumps(json.loads(row["ingredients"] or "[]")), # jsonb text
|
||||
json.dumps(json.loads(row["hq_yields"] or "[]")), # jsonb text
|
||||
)
|
||||
)
|
||||
await conn.copy_records_to_table(
|
||||
"recipes_woodworking",
|
||||
records=records,
|
||||
columns=[
|
||||
"category",
|
||||
"level",
|
||||
"subcrafts",
|
||||
"name",
|
||||
"crystal",
|
||||
"key_item",
|
||||
"ingredients",
|
||||
"hq_yields",
|
||||
],
|
||||
)
|
||||
|
||||
|
||||
async def main():
|
||||
if not CSV_PATH.exists():
|
||||
raise SystemExit("CSV v2 not found; run parser first.")
|
||||
conf = parse_db_conf(CONF_PATH)
|
||||
conn = await asyncpg.connect(
|
||||
host=conf["PSQL_HOST"],
|
||||
port=int(conf["PSQL_PORT"]),
|
||||
user=conf["PSQL_USER"],
|
||||
password=conf["PSQL_PASSWORD"],
|
||||
database=conf["PSQL_DBNAME"],
|
||||
)
|
||||
try:
|
||||
await recreate_table(conn)
|
||||
await insert_csv(conn)
|
||||
print("Loaded recipes into new recipes_woodworking table.")
|
||||
finally:
|
||||
await conn.close()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
asyncio.run(main())
|
||||
146
scripts/populate_spells_from_scrolls.py
Normal file
146
scripts/populate_spells_from_scrolls.py
Normal file
@@ -0,0 +1,146 @@
|
||||
"""Populate the spells table using scroll information from usable_items.
|
||||
|
||||
Assumptions
|
||||
-----------
|
||||
1. `usable_items` table has (at least) the following columns:
|
||||
- item_name (text)
|
||||
- description (text)
|
||||
- type_description (text) where scrolls have the value `SCROLL`
|
||||
2. The spell name can be derived from the item name by stripping common prefixes like
|
||||
"Scroll of ", "Scroll: ", etc. This heuristic can be adjusted if necessary.
|
||||
3. Job / level information is embedded in the description in patterns like
|
||||
"RDM Lv. 1", "WHM Lv.75", etc. Multiple jobs may appear in one description.
|
||||
4. The database URL is provided via the `DATABASE_URL` environment variable, e.g.
|
||||
postgresql+psycopg2://user:password@host/dbname
|
||||
|
||||
Usage
|
||||
-----
|
||||
$ export DATABASE_URL=postgresql+psycopg2://...
|
||||
$ python scripts/populate_spells_from_scrolls.py
|
||||
|
||||
The script will insert new rows or update existing rows in the `spells` table.
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
import os
|
||||
import re
|
||||
from typing import Dict, List
|
||||
|
||||
from sqlalchemy import MetaData, Table, select, create_engine, update, insert
|
||||
from sqlalchemy.engine import Engine
|
||||
from sqlalchemy.orm import Session
|
||||
|
||||
# Job abbreviations to column mapping (identity mapping here but could differ)
|
||||
JOBS: List[str] = [
|
||||
"run", "whm", "blm", "rdm", "pld", "drk", "brd", "nin", "smn", "cor", "sch", "geo",
|
||||
]
|
||||
|
||||
# Regex to capture patterns like "RDM Lv. 1" or "RDM Lv.1" (space optional)
|
||||
JOB_LV_PATTERN = re.compile(r"([A-Z]{3})\s*Lv\.?\s*(\d+)")
|
||||
|
||||
def _derive_spell_name(scroll_name: str) -> str:
|
||||
"""Convert a scroll item name to a spell name.
|
||||
|
||||
Examples
|
||||
--------
|
||||
>>> _derive_spell_name("Scroll of Fire")
|
||||
'Fire'
|
||||
>>> _derive_spell_name("Scroll: Cure IV")
|
||||
'Cure IV'
|
||||
"""
|
||||
# Remove common prefixes
|
||||
prefixes = ["Scroll of ", "Scroll: ", "Scroll "]
|
||||
for p in prefixes:
|
||||
if scroll_name.startswith(p):
|
||||
return scroll_name[len(p):].strip()
|
||||
return scroll_name.strip()
|
||||
|
||||
|
||||
def _parse_job_levels(description: str) -> Dict[str, int]:
|
||||
"""Extract job-level mappings from a description string."""
|
||||
mapping: Dict[str, int] = {}
|
||||
for job, lvl in JOB_LV_PATTERN.findall(description):
|
||||
job_l = job.lower()
|
||||
if job_l in JOBS:
|
||||
mapping[job_l] = int(lvl)
|
||||
return mapping
|
||||
|
||||
|
||||
from pathlib import Path
|
||||
|
||||
def _get_engine() -> Engine:
|
||||
"""Return SQLAlchemy engine using DATABASE_URL or db.conf."""
|
||||
url = os.getenv("DATABASE_URL")
|
||||
if not url:
|
||||
# Attempt to build from db.conf at project root
|
||||
conf_path = Path(__file__).resolve().parents[1] / "db.conf"
|
||||
if not conf_path.exists():
|
||||
raise RuntimeError("DATABASE_URL env var not set and db.conf not found")
|
||||
cfg: Dict[str, str] = {}
|
||||
with conf_path.open() as fh:
|
||||
for line in fh:
|
||||
line = line.strip()
|
||||
if not line or line.startswith("#"):
|
||||
continue
|
||||
if "=" not in line:
|
||||
continue
|
||||
k, v = line.split("=", 1)
|
||||
cfg[k.strip()] = v.strip().strip("'\"") # remove quotes if any
|
||||
try:
|
||||
url = (
|
||||
f"postgresql+psycopg2://{cfg['PSQL_USER']}:{cfg['PSQL_PASSWORD']}@"
|
||||
f"{cfg['PSQL_HOST']}:{cfg.get('PSQL_PORT', '5432')}/{cfg['PSQL_DBNAME']}"
|
||||
)
|
||||
except KeyError as e:
|
||||
raise RuntimeError(f"Missing key in db.conf: {e}")
|
||||
return create_engine(url)
|
||||
|
||||
|
||||
def main() -> None:
|
||||
engine = _get_engine()
|
||||
|
||||
meta = MetaData()
|
||||
usable_items = Table("usable_items", meta, autoload_with=engine)
|
||||
spells = Table("spells", meta, autoload_with=engine)
|
||||
|
||||
with Session(engine) as session:
|
||||
# Fetch scroll items
|
||||
scroll_rows = session.execute(
|
||||
select(
|
||||
usable_items.c.name,
|
||||
usable_items.c.description
|
||||
).where(usable_items.c.type_description == "SCROLL")
|
||||
).all()
|
||||
|
||||
for name, description in scroll_rows:
|
||||
spell_name = _derive_spell_name(name)
|
||||
job_levels = _parse_job_levels(description or "")
|
||||
|
||||
# Build values dict w/ None default
|
||||
values = {job: None for job in JOBS}
|
||||
values.update(job_levels)
|
||||
values["name"] = spell_name
|
||||
|
||||
# Upsert logic
|
||||
existing = session.execute(
|
||||
select(spells.c.name).where(spells.c.name == spell_name)
|
||||
).first()
|
||||
|
||||
if existing:
|
||||
# Update existing row
|
||||
stmt = (
|
||||
update(spells)
|
||||
.where(spells.c.name == spell_name)
|
||||
.values(**job_levels)
|
||||
)
|
||||
session.execute(stmt)
|
||||
else:
|
||||
stmt = insert(spells).values(**values)
|
||||
session.execute(stmt)
|
||||
|
||||
session.commit()
|
||||
print(f"Processed {len(scroll_rows)} scrolls. Spells table updated.")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
279
scripts/recipes_to_csv_v2.py
Normal file
279
scripts/recipes_to_csv_v2.py
Normal file
@@ -0,0 +1,279 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Generic recipe parser for crafting disciplines -> <Craft>_v2.csv
|
||||
|
||||
Usage:
|
||||
python recipes_to_csv_v2.py <CRAFT>
|
||||
|
||||
Where <CRAFT> matches the name of the .txt file in the datasets directory,
|
||||
for example `Woodworking`, `Smithing`, `Goldsmithing`, `Alchemy`, etc.
|
||||
|
||||
The script produces a CSV `<Craft>_v2.csv` inside the datasets directory
|
||||
having the following columns (identical to the Woodworking v2 spec):
|
||||
|
||||
category, level, subcrafts, name, crystal, key_item, ingredients, hq_yields
|
||||
|
||||
See scripts/README.md for details of each column.
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
import argparse
|
||||
import csv
|
||||
import json
|
||||
import pathlib
|
||||
import re
|
||||
from typing import List, Optional, Tuple
|
||||
|
||||
PROJECT_ROOT = pathlib.Path(__file__).resolve().parents[1]
|
||||
DATASETS_DIR = PROJECT_ROOT / "datasets"
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Regex helpers (compiled at runtime where craft-dependent)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
RE_CATEGORY = re.compile(r"^([A-Za-z' ]+) \([0-9]+-[0-9]+\)$")
|
||||
RE_SUBCRAFTS = re.compile(r"Sub Craft\(s\): (.+)")
|
||||
RE_KEY_ITEM = re.compile(r"Key Item: (.+)")
|
||||
RE_NQ = re.compile(r"NQ:\s*(.+)")
|
||||
RE_HQ = re.compile(r"HQ(\d):\s*(.+)")
|
||||
# Quantity delimiter is strictly 'xN' (e.g., "Lumber x6").
|
||||
# Patterns like "+1" denote HQ variant and should be preserved in the name.
|
||||
RE_ITEM_QTY = re.compile(r"(.+?)\s*x(\d+)$", re.IGNORECASE)
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Helper functions / dataclasses
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def norm(s: str) -> str:
|
||||
"""Normalise whitespace inside a string."""
|
||||
return re.sub(r"\s+", " ", s.strip())
|
||||
|
||||
|
||||
def split_item_qty(text: str) -> Tuple[str, int]:
|
||||
"""Split "Foo x3" → ("Foo", 3). Quantity defaults to 1."""
|
||||
text = norm(text)
|
||||
m = RE_ITEM_QTY.match(text)
|
||||
if m:
|
||||
name, qty = m.group(1), int(m.group(2))
|
||||
else:
|
||||
name, qty = text, 1
|
||||
return name, qty
|
||||
|
||||
|
||||
class Recipe:
|
||||
__slots__ = (
|
||||
"category",
|
||||
"level",
|
||||
"subcrafts",
|
||||
"name",
|
||||
"crystal",
|
||||
"key_item",
|
||||
"ingredients",
|
||||
"hq_yields",
|
||||
)
|
||||
|
||||
def __init__(self, category: str, level: int):
|
||||
self.category = category
|
||||
self.level = level
|
||||
self.subcrafts: List[Tuple[str, int]] = []
|
||||
self.name: str = ""
|
||||
self.crystal: str = ""
|
||||
self.key_item: Optional[str] = None
|
||||
self.ingredients: List[Tuple[str, int]] = []
|
||||
self.hq_yields: List[Optional[Tuple[str, int]]] = [None, None, None]
|
||||
|
||||
def row(self) -> List[str]:
|
||||
return [
|
||||
self.category,
|
||||
str(self.level),
|
||||
json.dumps(self.subcrafts, ensure_ascii=False),
|
||||
self.name,
|
||||
self.crystal,
|
||||
self.key_item or "",
|
||||
json.dumps(self.ingredients, ensure_ascii=False),
|
||||
json.dumps(self.hq_yields, ensure_ascii=False),
|
||||
]
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Core parse routine
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def parse(txt_path: pathlib.Path, craft_name: str) -> List[Recipe]:
|
||||
"""Parse a crafting text file into Recipe objects.
|
||||
|
||||
The parsing strategy is now:
|
||||
1. "Main Craft:" marks the *metadata* for the upcoming recipe – level, optional
|
||||
sub-crafts, and key item.
|
||||
2. Ingredient lines follow until an "NQ:" line is reached. The first recipe
|
||||
ingredient that contains the word "Crystal" determines the crystal type
|
||||
and is removed from the ingredients list.
|
||||
3. An "NQ:" line finalises the recipe: we capture the product name and then
|
||||
look ahead for up to three "HQx:" lines that describe HQ yields.
|
||||
|
||||
Crucially, *"NQ:" now acts as the definitive boundary between recipes*.
|
||||
This allows the parser to cope with datasets where multiple successive
|
||||
"Main Craft:" lines appear without an intervening "NQ:".
|
||||
"""
|
||||
|
||||
lines = txt_path.read_text(encoding="utf-8", errors="ignore").splitlines()
|
||||
n = len(lines)
|
||||
i = 0
|
||||
|
||||
current_category: str = ""
|
||||
recipes: List[Recipe] = []
|
||||
|
||||
# Craft-specific regex (compiled once per run)
|
||||
RE_MAIN = re.compile(rf"Main Craft: {re.escape(craft_name)} - \(([^)]*)\)")
|
||||
|
||||
while i < n:
|
||||
line = lines[i].strip()
|
||||
|
||||
# 1) Category header
|
||||
if (m_cat := RE_CATEGORY.match(line)):
|
||||
current_category = m_cat.group(1)
|
||||
i += 1
|
||||
continue
|
||||
|
||||
# 2) Start of a recipe – line beginning with "NQ:"
|
||||
if not line.startswith("NQ:"):
|
||||
i += 1
|
||||
continue
|
||||
|
||||
# -------------------------------
|
||||
# New recipe initialised
|
||||
# -------------------------------
|
||||
rec = Recipe(current_category, level=0)
|
||||
rec.name, _ = split_item_qty(line[len("NQ:"):].strip())
|
||||
|
||||
# Collect block until next NQ or EOF
|
||||
block_lines: List[str] = []
|
||||
i += 1
|
||||
while i < n and not lines[i].lstrip().startswith("NQ:"):
|
||||
block_lines.append(lines[i])
|
||||
i += 1
|
||||
|
||||
# ------------------------------------
|
||||
# Parse metadata & ingredients in block
|
||||
# ------------------------------------
|
||||
for raw in block_lines:
|
||||
look = raw.strip()
|
||||
if not look:
|
||||
continue
|
||||
|
||||
# Skip icon decorator lines early
|
||||
if look.endswith("-Icon.gif"):
|
||||
continue
|
||||
|
||||
# Main Craft – level
|
||||
if (m_main := RE_MAIN.search(look)):
|
||||
level_raw = m_main.group(1)
|
||||
# Handle ranges like "115~120" or "115-120" by taking the lower bound
|
||||
m_range = re.match(r"(\d+)", level_raw)
|
||||
if m_range:
|
||||
rec.level = int(m_range.group(1))
|
||||
else:
|
||||
rec.level = 0
|
||||
continue
|
||||
|
||||
# Sub crafts
|
||||
if (m_sc := RE_SUBCRAFTS.match(look)):
|
||||
for part in m_sc.group(1).split(','):
|
||||
part = part.strip()
|
||||
if m := re.match(r"([A-Za-z]+) - \((\d+)\)", part):
|
||||
rec.subcrafts.append((m.group(1), int(m.group(2))))
|
||||
continue
|
||||
|
||||
# Key item
|
||||
if (m_ki := RE_KEY_ITEM.match(look)):
|
||||
rec.key_item = m_ki.group(1)
|
||||
continue
|
||||
|
||||
# HQ lines
|
||||
if look.startswith("HQ"):
|
||||
if (m_hq := RE_HQ.match(look)):
|
||||
idx = int(m_hq.group(1)) - 1
|
||||
name, qty = split_item_qty(m_hq.group(2))
|
||||
rec.hq_yields[idx] = (name, qty)
|
||||
continue
|
||||
|
||||
# Otherwise treat as ingredient
|
||||
name, qty = split_item_qty(look)
|
||||
rec.ingredients.append((name, qty))
|
||||
|
||||
# Determine crystal & clean ingredient list
|
||||
for name, qty in rec.ingredients:
|
||||
if "Crystal" in name:
|
||||
rec.crystal = name.split()[0]
|
||||
break
|
||||
if rec.crystal:
|
||||
rec.ingredients = [p for p in rec.ingredients if "Crystal" not in p[0]]
|
||||
else:
|
||||
rec.crystal = "Unknown"
|
||||
|
||||
recipes.append(rec)
|
||||
|
||||
return recipes
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Entrypoint
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def main() -> None:
|
||||
"""CLI entrypoint.
|
||||
|
||||
Usage examples:
|
||||
# Process a single craft
|
||||
python recipes_to_csv_v2.py Woodworking
|
||||
|
||||
# Process all *.txt files in the datasets directory
|
||||
python recipes_to_csv_v2.py --all
|
||||
|
||||
# Omit positional arg – defaults to --all
|
||||
python recipes_to_csv_v2.py
|
||||
"""
|
||||
argp = argparse.ArgumentParser(description="Parse <Craft>.txt into CSV.")
|
||||
argp.add_argument("craft", nargs="?", help="Craft name, e.g. Woodworking, Smithing")
|
||||
argp.add_argument("--all", action="store_true", help="Process every .txt file in datasets/")
|
||||
args = argp.parse_args()
|
||||
|
||||
# Determine which crafts to process
|
||||
if args.all or not args.craft:
|
||||
crafts = [p.stem for p in DATASETS_DIR.glob("*.txt")]
|
||||
if not crafts:
|
||||
raise SystemExit(f"No .txt files found in {DATASETS_DIR}")
|
||||
else:
|
||||
crafts = [args.craft.strip()]
|
||||
|
||||
for craft in crafts:
|
||||
txt_path = DATASETS_DIR / f"{craft}.txt"
|
||||
if not txt_path.exists():
|
||||
print(f"[WARN] Dataset file not found: {txt_path}")
|
||||
continue
|
||||
|
||||
csv_path = DATASETS_DIR / f"{craft}_v2.csv"
|
||||
recipes = parse(txt_path, craft)
|
||||
|
||||
csv_path.parent.mkdir(parents=True, exist_ok=True)
|
||||
with csv_path.open("w", newline="", encoding="utf-8") as f:
|
||||
writer = csv.writer(f)
|
||||
writer.writerow([
|
||||
"category",
|
||||
"level",
|
||||
"subcrafts",
|
||||
"name",
|
||||
"crystal",
|
||||
"key_item",
|
||||
"ingredients",
|
||||
"hq_yields",
|
||||
])
|
||||
for r in recipes:
|
||||
writer.writerow(r.row())
|
||||
|
||||
rel = csv_path.relative_to(PROJECT_ROOT)
|
||||
print(f"Wrote {len(recipes)} recipes -> {rel}")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
2
scripts/requirements.txt
Normal file
2
scripts/requirements.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
asyncpg==0.29.0
|
||||
python-dotenv==1.0.1
|
||||
201
scripts/woodworking_to_csv.py
Normal file
201
scripts/woodworking_to_csv.py
Normal file
@@ -0,0 +1,201 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Parse the semi-structured datasets/Woodworking.txt file and export it as a CSV.
|
||||
|
||||
The output CSV will be written to datasets/Woodworking.csv with the following columns:
|
||||
category – Text group header e.g. Amateur (1-10)
|
||||
level – Woodworking skill level for the recipe (integer)
|
||||
product_name – Produced item (without quantity suffix)
|
||||
nq_yield – Quantity produced on a normal quality synth (may be empty)
|
||||
hq1_yield – Quantity produced on HQ1 synth (may be empty)
|
||||
hq2_yield – Quantity produced on HQ2 synth (may be empty)
|
||||
hq3_yield – Quantity produced on HQ3 synth (may be empty)
|
||||
crystal – Crystal used for the synth (Wind Crystal, Earth Crystal, etc.)
|
||||
ingredients – Semi-colon-separated list of remaining ingredients (excluding the crystal)
|
||||
|
||||
Run the script from the project root:
|
||||
python3 scripts/woodworking_to_csv.py
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
import csv
|
||||
import pathlib
|
||||
import re
|
||||
from typing import List, Optional
|
||||
|
||||
PROJECT_ROOT = pathlib.Path(__file__).resolve().parents[1]
|
||||
TXT_PATH = PROJECT_ROOT / "datasets/Woodworking.txt"
|
||||
CSV_PATH = PROJECT_ROOT / "datasets/Woodworking.csv"
|
||||
|
||||
# --- Regex patterns ---------------------------------------------------------
|
||||
RE_CATEGORY = re.compile(r"^[A-Za-z' ]+ \([0-9]+-[0-9]+\)$")
|
||||
RE_MAIN_CRAFT = re.compile(r"Main Craft: Woodworking - \((\d+)\)")
|
||||
RE_NQ = re.compile(r"NQ:\s*(.+)")
|
||||
RE_HQ = re.compile(r"HQ(\d):\s*(.+)")
|
||||
RE_ITEM_QTY = re.compile(r"(.+?)\s+x(\d+)$")
|
||||
|
||||
|
||||
def normalise_whitespace(text: str) -> str:
|
||||
"""Collapse internal runs of whitespace and trim."""
|
||||
return re.sub(r"\s+", " ", text.strip())
|
||||
|
||||
|
||||
class Recipe:
|
||||
__slots__ = (
|
||||
"category",
|
||||
"level",
|
||||
"product_name",
|
||||
"nq_yield",
|
||||
"hq1_yield",
|
||||
"hq2_yield",
|
||||
"hq3_yield",
|
||||
"crystal",
|
||||
"ingredients",
|
||||
)
|
||||
|
||||
def __init__(self, category: str, level: int):
|
||||
self.category: str = category
|
||||
self.level: int = level
|
||||
self.product_name: str = ""
|
||||
self.nq_yield: str = ""
|
||||
self.hq1_yield: str = ""
|
||||
self.hq2_yield: str = ""
|
||||
self.hq3_yield: str = ""
|
||||
self.crystal: str = ""
|
||||
self.ingredients: List[str] = []
|
||||
|
||||
# ------------------------------------------------------------------
|
||||
# Helper methods
|
||||
# ------------------------------------------------------------------
|
||||
def _set_product(self, text: str, nq: bool = False) -> None:
|
||||
name, qty = self._split_item_qty(text)
|
||||
self.product_name = name
|
||||
if nq:
|
||||
self.nq_yield = qty
|
||||
|
||||
def _add_hq(self, idx: int, text: str) -> None:
|
||||
_name, qty = self._split_item_qty(text)
|
||||
if idx == 1:
|
||||
self.hq1_yield = qty
|
||||
elif idx == 2:
|
||||
self.hq2_yield = qty
|
||||
elif idx == 3:
|
||||
self.hq3_yield = qty
|
||||
|
||||
@staticmethod
|
||||
def _split_item_qty(text: str) -> tuple[str, str]:
|
||||
text = normalise_whitespace(text)
|
||||
m = RE_ITEM_QTY.match(text)
|
||||
if m:
|
||||
return m.group(1), m.group(2)
|
||||
return text, ""
|
||||
|
||||
def to_row(self) -> List[str]:
|
||||
return [
|
||||
self.category,
|
||||
str(self.level),
|
||||
self.product_name,
|
||||
self.nq_yield,
|
||||
self.hq1_yield,
|
||||
self.hq2_yield,
|
||||
self.hq3_yield,
|
||||
self.crystal,
|
||||
"; ".join(self.ingredients),
|
||||
]
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# Parsing logic
|
||||
# ----------------------------------------------------------------------------
|
||||
|
||||
def parse_file(txt_path: pathlib.Path) -> List[Recipe]:
|
||||
recipes: List[Recipe] = []
|
||||
current_category = ""
|
||||
lines = txt_path.read_text(encoding="utf-8", errors="ignore").splitlines()
|
||||
i = 0
|
||||
n = len(lines)
|
||||
|
||||
while i < n:
|
||||
line = lines[i].strip()
|
||||
|
||||
# Update category headers e.g. "Amateur (1-10)"
|
||||
if RE_CATEGORY.match(line):
|
||||
current_category = line
|
||||
i += 1
|
||||
continue
|
||||
|
||||
# Detect start of a recipe block
|
||||
m_main = RE_MAIN_CRAFT.search(line)
|
||||
if m_main:
|
||||
level = int(m_main.group(1))
|
||||
rec = Recipe(current_category, level)
|
||||
i += 1
|
||||
|
||||
# Collect ingredients until we hit the NQ line
|
||||
while i < n and not lines[i].lstrip().startswith("NQ:"):
|
||||
ing_line = lines[i].strip()
|
||||
if ing_line:
|
||||
rec.ingredients.append(normalise_whitespace(ing_line))
|
||||
i += 1
|
||||
|
||||
# Extract crystal (first ingredient if it contains "Crystal")
|
||||
if rec.ingredients and "Crystal" in rec.ingredients[0]:
|
||||
rec.crystal = rec.ingredients.pop(0)
|
||||
|
||||
# Now we should be at the NQ line
|
||||
if i < n and (m_nq := RE_NQ.match(lines[i].strip())):
|
||||
rec._set_product(m_nq.group(1), nq=True)
|
||||
i += 1
|
||||
else:
|
||||
# Malformed entry – skip ahead
|
||||
i += 1
|
||||
continue
|
||||
|
||||
# Collect HQ lines (0–3 lines)
|
||||
while i < n and lines[i].lstrip().startswith("HQ"):
|
||||
m_hq = RE_HQ.match(lines[i].strip())
|
||||
if m_hq:
|
||||
idx = int(m_hq.group(1))
|
||||
rec._add_hq(idx, m_hq.group(2))
|
||||
i += 1
|
||||
|
||||
recipes.append(rec)
|
||||
continue # skip to next line without increment to avoid double increment
|
||||
|
||||
# Fallback increment
|
||||
i += 1
|
||||
|
||||
return recipes
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# CSV writer
|
||||
# ----------------------------------------------------------------------------
|
||||
|
||||
def write_csv(recipes: List[Recipe], csv_path: pathlib.Path) -> None:
|
||||
csv_path.parent.mkdir(parents=True, exist_ok=True)
|
||||
with csv_path.open("w", newline="", encoding="utf-8") as f:
|
||||
writer = csv.writer(f)
|
||||
writer.writerow(
|
||||
[
|
||||
"category",
|
||||
"level",
|
||||
"product_name",
|
||||
"nq_yield",
|
||||
"hq1_yield",
|
||||
"hq2_yield",
|
||||
"hq3_yield",
|
||||
"crystal",
|
||||
"ingredients",
|
||||
]
|
||||
)
|
||||
for r in recipes:
|
||||
writer.writerow(r.to_row())
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
if not TXT_PATH.exists():
|
||||
raise SystemExit(f"Input file not found: {TXT_PATH}")
|
||||
|
||||
recs = parse_file(TXT_PATH)
|
||||
write_csv(recs, CSV_PATH)
|
||||
print(f"Parsed {len(recs)} recipes -> {CSV_PATH.relative_to(PROJECT_ROOT)}")
|
||||
210
scripts/woodworking_to_csv_v2.py
Normal file
210
scripts/woodworking_to_csv_v2.py
Normal file
@@ -0,0 +1,210 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Improved parser for Woodworking recipes -> Woodworking_v2.csv
|
||||
|
||||
This version follows the spec provided by the user:
|
||||
|
||||
Category: category name (without level range)
|
||||
Level: recipe level (integer)
|
||||
Sub-Crafts: JSON list of [name, level]
|
||||
Name: product NQ name
|
||||
Crystal: crystal element (Earth, Wind, etc.)
|
||||
Key Item: key item name or null
|
||||
Ingredients: JSON list of [name, quantity]
|
||||
HQ Yields: JSON list ordered HQ1..HQ3 of [name, quantity] (nulls if N/A)
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
import csv
|
||||
import json
|
||||
import pathlib
|
||||
import re
|
||||
from typing import Dict, List, Optional, Tuple
|
||||
|
||||
PROJECT_ROOT = pathlib.Path(__file__).resolve().parents[1]
|
||||
TXT_PATH = PROJECT_ROOT / "datasets/Woodworking.txt"
|
||||
CSV_PATH = PROJECT_ROOT / "datasets/Woodworking_v2.csv"
|
||||
|
||||
RE_CATEGORY = re.compile(r"^([A-Za-z' ]+) \([0-9]+-[0-9]+\)$")
|
||||
RE_MAIN = re.compile(r"Main Craft: Woodworking - \((\d+)\)")
|
||||
RE_SUBCRAFTS = re.compile(r"Sub Craft\(s\): (.+)")
|
||||
RE_KEY_ITEM = re.compile(r"Key Item: (.+)")
|
||||
RE_NQ = re.compile(r"NQ:\s*(.+)")
|
||||
RE_HQ = re.compile(r"HQ(\d):\s*(.+)")
|
||||
RE_ITEM_QTY = re.compile(r"(.+?)\s*(?:x|\+)(\d+)$")
|
||||
|
||||
|
||||
def norm(s: str) -> str:
|
||||
return re.sub(r"\s+", " ", s.strip())
|
||||
|
||||
|
||||
def split_item_qty(text: str) -> Tuple[str, int]:
|
||||
text = norm(text)
|
||||
m = RE_ITEM_QTY.match(text)
|
||||
if m:
|
||||
name, qty = m.group(1), int(m.group(2))
|
||||
else:
|
||||
name, qty = text, 1
|
||||
return name, qty
|
||||
|
||||
|
||||
class Recipe:
|
||||
__slots__ = (
|
||||
"category",
|
||||
"level",
|
||||
"subcrafts",
|
||||
"name",
|
||||
"crystal",
|
||||
"key_item",
|
||||
"ingredients",
|
||||
"hq_yields",
|
||||
)
|
||||
|
||||
def __init__(self, category: str, level: int):
|
||||
self.category = category
|
||||
self.level = level
|
||||
self.subcrafts: List[Tuple[str, int]] = []
|
||||
self.name: str = ""
|
||||
self.crystal: str = ""
|
||||
self.key_item: Optional[str] = None
|
||||
self.ingredients: List[Tuple[str, int]] = []
|
||||
# index 0,1,2 for HQ1..3; (name, qty) or None
|
||||
self.hq_yields: List[Optional[Tuple[str, int]]] = [None, None, None]
|
||||
|
||||
def row(self) -> List[str]:
|
||||
return [
|
||||
self.category,
|
||||
str(self.level),
|
||||
json.dumps(self.subcrafts, ensure_ascii=False),
|
||||
self.name,
|
||||
self.crystal,
|
||||
self.key_item or "",
|
||||
json.dumps(self.ingredients, ensure_ascii=False),
|
||||
json.dumps(self.hq_yields, ensure_ascii=False),
|
||||
]
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def parse() -> List[Recipe]:
|
||||
lines = TXT_PATH.read_text(encoding="utf-8", errors="ignore").splitlines()
|
||||
n = len(lines)
|
||||
i = 0
|
||||
current_category = ""
|
||||
recipes: List[Recipe] = []
|
||||
|
||||
while i < n:
|
||||
line = lines[i].strip()
|
||||
|
||||
# Category header
|
||||
m_cat = RE_CATEGORY.match(line)
|
||||
if m_cat:
|
||||
current_category = m_cat.group(1)
|
||||
i += 1
|
||||
continue
|
||||
|
||||
# Main Craft start
|
||||
m_main = RE_MAIN.search(line)
|
||||
if m_main:
|
||||
level = int(m_main.group(1))
|
||||
rec = Recipe(current_category, level)
|
||||
i += 1
|
||||
|
||||
# look ahead for optional Sub Craft(s) & Key Item lines
|
||||
while i < n:
|
||||
look = lines[i].strip()
|
||||
if not look:
|
||||
i += 1
|
||||
continue
|
||||
if RE_SUBCRAFTS.match(look):
|
||||
sub_text = RE_SUBCRAFTS.match(look).group(1)
|
||||
# Split by commas
|
||||
for part in sub_text.split(','):
|
||||
part = part.strip()
|
||||
m_sc = re.match(r"([A-Za-z]+) - \((\d+)\)", part)
|
||||
if m_sc:
|
||||
rec.subcrafts.append((m_sc.group(1), int(m_sc.group(2))))
|
||||
i += 1
|
||||
continue
|
||||
if RE_KEY_ITEM.match(look):
|
||||
rec.key_item = RE_KEY_ITEM.match(look).group(1)
|
||||
i += 1
|
||||
continue
|
||||
# If line starts with NQ: we stop metadata collection
|
||||
if look.startswith("NQ:") or look.startswith("HQ"):
|
||||
break
|
||||
# Ingredient lines normally start with crystal or item names and are indented
|
||||
if not look.startswith("NQ:"):
|
||||
# Ingredient collection will happen in separate loop
|
||||
break
|
||||
i += 1
|
||||
|
||||
# Collect ingredients until NQ line encountered
|
||||
while i < n and not lines[i].lstrip().startswith("NQ:"):
|
||||
ingr_line = lines[i].strip()
|
||||
if ingr_line and not ingr_line.endswith("-Icon.gif"):
|
||||
name, qty = split_item_qty(ingr_line)
|
||||
rec.ingredients.append((name, qty))
|
||||
i += 1
|
||||
|
||||
# Determine crystal (must contain 'Crystal')
|
||||
for name, qty in rec.ingredients:
|
||||
if "Crystal" in name:
|
||||
rec.crystal = name.split()[0] # Earth Crystal -> Earth
|
||||
break
|
||||
if rec.crystal:
|
||||
# Remove crystal from ingredient list
|
||||
rec.ingredients = [pair for pair in rec.ingredients if "Crystal" not in pair[0]]
|
||||
else:
|
||||
rec.crystal = "Unknown"
|
||||
|
||||
# NQ line
|
||||
if i < n and (m_nq := RE_NQ.match(lines[i].strip())):
|
||||
rec.name, _ = split_item_qty(m_nq.group(1))
|
||||
i += 1
|
||||
else:
|
||||
i += 1
|
||||
|
||||
# Skip blank lines before HQ entries
|
||||
while i < n and not lines[i].strip():
|
||||
i += 1
|
||||
# HQ lines
|
||||
while i < n and lines[i].lstrip().startswith("HQ"):
|
||||
m_hq = RE_HQ.match(lines[i].strip())
|
||||
if m_hq:
|
||||
idx = int(m_hq.group(1)) - 1
|
||||
name, qty = split_item_qty(m_hq.group(2))
|
||||
rec.hq_yields[idx] = (name, qty)
|
||||
i += 1
|
||||
|
||||
recipes.append(rec)
|
||||
continue
|
||||
|
||||
i += 1
|
||||
|
||||
return recipes
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
def main() -> None:
|
||||
recs = parse()
|
||||
CSV_PATH.parent.mkdir(parents=True, exist_ok=True)
|
||||
with CSV_PATH.open("w", newline="", encoding="utf-8") as f:
|
||||
writer = csv.writer(f)
|
||||
writer.writerow([
|
||||
"category",
|
||||
"level",
|
||||
"subcrafts",
|
||||
"name",
|
||||
"crystal",
|
||||
"key_item",
|
||||
"ingredients",
|
||||
"hq_yields",
|
||||
])
|
||||
for r in recs:
|
||||
writer.writerow(r.row())
|
||||
print(f"Wrote {len(recs)} recipes -> {CSV_PATH.relative_to(PROJECT_ROOT)}")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user