Desynth page and improved item info api. Added string substitution to utils.
This commit is contained in:
@@ -4,10 +4,10 @@
|
||||
# ----------------------------
|
||||
|
||||
# PostgreSQL connection details (database is expected to run on the Docker host)
|
||||
PSQL_HOST=127.0.0.1
|
||||
PSQL_HOST=10.0.0.199
|
||||
PSQL_PORT=5432
|
||||
PSQL_USER=postgres
|
||||
PSQL_PASSWORD=postgres
|
||||
PSQL_PASSWORD=DP3Wv*QM#t8bY*N
|
||||
PSQL_DBNAME=ffxi_items
|
||||
|
||||
# Host ports to expose the containers (edit if they clash)
|
||||
15
.env copy.example
Normal file
15
.env copy.example
Normal file
@@ -0,0 +1,15 @@
|
||||
# ----------------------------
|
||||
# Example environment file for MOG APP Docker deployment
|
||||
# Copy this file to `.env` at the project root and adjust the values
|
||||
# ----------------------------
|
||||
|
||||
# PostgreSQL connection details (database is expected to run on the Docker host)
|
||||
PSQL_HOST=10.0.0.199
|
||||
PSQL_PORT=5432
|
||||
PSQL_USER=postgres
|
||||
PSQL_PASSWORD='DP3Wv*QM#t8bY*N'
|
||||
PSQL_DBNAME=ffxi_items
|
||||
|
||||
# Host ports to expose the containers (edit if they clash)
|
||||
API_PORT=8000
|
||||
WEB_PORT=3050
|
||||
@@ -20,6 +20,7 @@
|
||||
## Key Features
|
||||
|
||||
* **Crafting Recipes** – colour-coded craft tabs (woodworking brown, smithing grey, etc.), full filters, icons, ingredients, HQ yields, and cross-links to inventory.
|
||||
* **Desynthesis Recipes** – quickly find items to break down. Craft-coloured tabs and new "Owned / Partially owned" filters work off **ingredient ownership**, just like crafting recipes.
|
||||
* **Inventory Manager** – grid view with sorting (slot ▶ default, name, type), duplicate-item indicator (orange bar on top), tooltips, quantity badges, and direct wiki links.
|
||||
* **Item Explorer** – fast, fuzzy search across all items with type sub-tabs and recipe cross-navigation.
|
||||
* **Item Detail Dialog** – centred modal with icon, description, usage breakdown, and craft-coloured section headers.
|
||||
|
||||
11
TODO.md
11
TODO.md
@@ -32,6 +32,17 @@
|
||||
- [X] Display item icons where available
|
||||
- [X] Display item descriptions where available
|
||||
|
||||
### Desynthesis UI
|
||||
|
||||
- [x] Owned / Partially owned ingredient filters
|
||||
- [x] Craft-coloured sub-tabs consistent with Recipes page
|
||||
- [ ] Display crystal icons
|
||||
|
||||
- [X] Filter for recipes whose ingredients are **fully** or **partially** owned
|
||||
- [X] Show which inventory tab contains each owned ingredient
|
||||
- [X] Display item icons where available
|
||||
- [X] Display item descriptions where available
|
||||
|
||||
## Performance
|
||||
|
||||
- [ ] Speed up loading of data (consider table joins)
|
||||
|
||||
@@ -51,10 +51,21 @@ async def ensure_view():
|
||||
"""),
|
||||
{"table": t},
|
||||
)
|
||||
stack_exists = await conn.scalar(
|
||||
text(
|
||||
"""
|
||||
SELECT EXISTS (
|
||||
SELECT 1 FROM information_schema.columns
|
||||
WHERE table_name=:table AND column_name='stack_size'
|
||||
)
|
||||
"""),
|
||||
{"table": t},
|
||||
)
|
||||
desc_col = "description" if desc_exists else "NULL"
|
||||
icon_col = "icon_id" if icon_exists else "NULL"
|
||||
stack_col = "stack_size" if stack_exists else "NULL"
|
||||
selects.append(
|
||||
f"SELECT id, name, {desc_col} AS description, {icon_col} AS icon_id, type_description FROM {t}"
|
||||
f"SELECT id, name, {desc_col} AS description, {icon_col} AS icon_id, type_description, {stack_col} AS stack_size FROM {t}"
|
||||
)
|
||||
|
||||
union_sql = " UNION ALL ".join(selects)
|
||||
|
||||
@@ -15,10 +15,21 @@ class Inventory(Base):
|
||||
character_name = Column(String)
|
||||
storage_type = Column(String)
|
||||
item_name = Column(String)
|
||||
item_id = Column(Integer, nullable=True)
|
||||
quantity = Column(Integer)
|
||||
last_updated = Column(DateTime, default=datetime.utcnow)
|
||||
|
||||
|
||||
class ItemIcon(Base):
|
||||
__tablename__ = "item_icons"
|
||||
|
||||
id = Column(Integer, primary_key=True)
|
||||
category = Column(String, nullable=False)
|
||||
image_data = Column(String, nullable=False)
|
||||
image_format = Column(String, nullable=True)
|
||||
image_encoding = Column(String, nullable=True)
|
||||
|
||||
|
||||
class Spell(Base):
|
||||
"""Spell table with job level columns (selected jobs only)."""
|
||||
|
||||
|
||||
@@ -15,6 +15,7 @@ from .database import get_session
|
||||
|
||||
# Map craft names -> table names in Postgres
|
||||
ALLOWED_CRAFTS = {
|
||||
"desynthesis": "recipes_desynthesis",
|
||||
"woodworking": "recipes_woodworking",
|
||||
"smithing": "recipes_smithing",
|
||||
"alchemy": "recipes_alchemy",
|
||||
@@ -33,6 +34,17 @@ class RecipeUsageSummary(BaseModel):
|
||||
name: str
|
||||
level: int
|
||||
|
||||
class DesynthRecipe(BaseModel):
|
||||
id: int
|
||||
craft: str
|
||||
cap: Optional[int] | None = None
|
||||
item: str
|
||||
crystal: str
|
||||
ingredients: str # raw text, quantity assumed 1 each
|
||||
hq1: Optional[str] | None = None
|
||||
hq2: Optional[str] | None = None
|
||||
hq3: Optional[str] | None = None
|
||||
|
||||
class ItemRecipeUsage(BaseModel):
|
||||
crafted: list[RecipeUsageSummary] = []
|
||||
ingredient: list[RecipeUsageSummary] = []
|
||||
@@ -60,6 +72,29 @@ def _craft_table(craft: str) -> str:
|
||||
return ALLOWED_CRAFTS[craft_lower]
|
||||
|
||||
|
||||
@router.get("/recipes/desynthesis", response_model=List[DesynthRecipe])
|
||||
async def list_desynth_recipes(session: AsyncSession = Depends(get_session)):
|
||||
q = text("SELECT * FROM recipes_desynthesis ORDER BY item")
|
||||
result = await session.execute(q)
|
||||
rows = result.fetchall()
|
||||
out: list[DesynthRecipe] = []
|
||||
for r in rows:
|
||||
out.append(
|
||||
DesynthRecipe(
|
||||
id=r.id,
|
||||
craft=r.craft,
|
||||
cap=r.cap,
|
||||
item=r.item,
|
||||
crystal=r.crystal,
|
||||
ingredients=r.ingredients,
|
||||
hq1=r.hq1,
|
||||
hq2=r.hq2,
|
||||
hq3=r.hq3,
|
||||
)
|
||||
)
|
||||
return out
|
||||
|
||||
|
||||
@router.get("/recipes/{craft}", response_model=List[RecipeDetail])
|
||||
async def list_recipes(
|
||||
craft: str = Path(..., description="Craft name, e.g. woodworking"),
|
||||
@@ -134,10 +169,15 @@ async def item_recipe_usage(item_name: str, session: AsyncSession = Depends(get_
|
||||
)
|
||||
|
||||
# As ingredient (simple text match in JSON/array column)
|
||||
# Match exact ingredient name by looking for the item quoted in the JSON text.
|
||||
# Using the surrounding double quotes prevents partial matches, e.g. "Chestnut" will not
|
||||
# match the ingredient string "Chestnut Lumber".
|
||||
quoted = f'"{item_name}"'
|
||||
q2 = text(
|
||||
f"SELECT id, name, level FROM {table} WHERE ingredients::text ILIKE :pat LIMIT 50"
|
||||
f"SELECT id, name, level FROM {table} "
|
||||
f"WHERE ingredients::text ILIKE :pat LIMIT 50"
|
||||
)
|
||||
res2 = await session.execute(q2, {"pat": f"%{item_name}%"})
|
||||
res2 = await session.execute(q2, {"pat": f"%{quoted}%"})
|
||||
for r in res2.fetchall():
|
||||
if not any(c.id == r.id and c.craft == craft for c in crafted) and not any(
|
||||
i.id == r.id and i.craft == craft for i in ingredient
|
||||
|
||||
@@ -33,13 +33,13 @@ async def import_inventory_csv(
|
||||
raise HTTPException(status_code=400, detail="CSV must be UTF-8 encoded")
|
||||
|
||||
reader = csv.DictReader(io.StringIO(text_data), delimiter=";", quotechar='"')
|
||||
rows = []
|
||||
raw_rows = []
|
||||
for r in reader:
|
||||
try:
|
||||
qty = int(r["quantity"].strip()) if r["quantity"].strip() else 0
|
||||
except (KeyError, ValueError):
|
||||
raise HTTPException(status_code=400, detail="Invalid CSV schema or quantity value")
|
||||
rows.append(
|
||||
raw_rows.append(
|
||||
{
|
||||
"character_name": r["char"].strip(),
|
||||
"storage_type": r["storage"].strip(),
|
||||
@@ -48,6 +48,57 @@ async def import_inventory_csv(
|
||||
}
|
||||
)
|
||||
|
||||
# ---------------------------------------------------------------------
|
||||
# Resolve stack sizes and split quantities across inventory slots
|
||||
# ---------------------------------------------------------------------
|
||||
item_names = {r["item_name"] for r in raw_rows}
|
||||
stack_sizes: dict[str, int] = {}
|
||||
if item_names:
|
||||
# Discover item tables that have a stack_size column ( *_items )
|
||||
tbl_res = await session.execute(
|
||||
text(
|
||||
"""
|
||||
SELECT table_name
|
||||
FROM information_schema.columns
|
||||
WHERE table_schema = 'public'
|
||||
AND column_name = 'stack_size'
|
||||
AND table_name LIKE '%_items'
|
||||
"""
|
||||
)
|
||||
)
|
||||
item_tables = [row[0] for row in tbl_res.fetchall()]
|
||||
|
||||
# Query each table for name ▸ stack_size entries we need
|
||||
for t in item_tables:
|
||||
q = text(f"SELECT name, stack_size FROM {t} WHERE name = ANY(:names)")
|
||||
res = await session.execute(q, {"names": list(item_names)})
|
||||
for name, stack in res.fetchall():
|
||||
# Prefer the first non-null value encountered
|
||||
if name not in stack_sizes or not stack_sizes[name]:
|
||||
stack_sizes[name] = (stack or 1) if stack and stack > 0 else 1
|
||||
|
||||
def _stack_for(item_name: str) -> int:
|
||||
return stack_sizes.get(item_name, 1) or 1
|
||||
|
||||
# Resolve item_ids via all_items once
|
||||
id_rows = await session.execute(text("SELECT id,name FROM all_items WHERE name = ANY(:names)"), {"names": list(item_names)})
|
||||
id_map = {n: i for i, n in id_rows.fetchall()}
|
||||
|
||||
rows: list[dict] = []
|
||||
for r in raw_rows:
|
||||
qty = r["quantity"]
|
||||
if qty <= 0:
|
||||
continue
|
||||
stack = _stack_for(r["item_name"])
|
||||
# Split into multiple slot-rows respecting stack size
|
||||
while qty > 0:
|
||||
take = min(stack, qty)
|
||||
slot_row = r.copy()
|
||||
slot_row["quantity"] = take
|
||||
slot_row["item_id"] = id_map.get(r["item_name"]) # may be None
|
||||
rows.append(slot_row)
|
||||
qty -= take
|
||||
|
||||
# Replace table contents inside a transaction
|
||||
try:
|
||||
await session.execute(text("TRUNCATE TABLE inventory;"))
|
||||
@@ -105,6 +156,7 @@ class InventoryItem(BaseModel):
|
||||
description: Optional[str]
|
||||
icon_id: Optional[str]
|
||||
type_description: Optional[str]
|
||||
stack_size: Optional[int]
|
||||
last_updated: Optional[datetime]
|
||||
|
||||
class Config:
|
||||
@@ -119,7 +171,7 @@ async def inventory(
|
||||
):
|
||||
"""Return items for a character, optionally filtered by storage_type."""
|
||||
base_sql = """
|
||||
SELECT i.*, ai.description, ai.icon_id, ai.type_description
|
||||
SELECT i.*, ai.description, ai.icon_id, ai.type_description, ai.stack_size
|
||||
FROM inventory i
|
||||
LEFT JOIN all_items ai ON ai.name = i.item_name
|
||||
WHERE i.character_name = :char
|
||||
@@ -139,6 +191,7 @@ async def inventory(
|
||||
description=r.description,
|
||||
icon_id=r.icon_id,
|
||||
type_description=r.type_description,
|
||||
stack_size=r.stack_size,
|
||||
last_updated=r.last_updated,
|
||||
) for r in rows]
|
||||
|
||||
@@ -217,6 +270,7 @@ class ItemDetail(BaseModel):
|
||||
description: Optional[str]
|
||||
icon_id: Optional[str]
|
||||
type_description: Optional[str]
|
||||
icon_b64: Optional[str] = None
|
||||
|
||||
|
||||
@router.get("/icon/{icon_id}")
|
||||
@@ -238,32 +292,66 @@ async def get_icon(icon_id: str, session: AsyncSession = Depends(get_session)):
|
||||
|
||||
@router.get("/items/by-name/{item_name}", response_model=ItemDetail)
|
||||
async def item_detail_by_name(item_name: str, session: AsyncSession = Depends(get_session)):
|
||||
q = text("SELECT * FROM all_items WHERE name = :n LIMIT 1")
|
||||
q = text("""
|
||||
SELECT a.*, ic.image_data, ic.image_encoding
|
||||
FROM all_items a
|
||||
LEFT JOIN item_icons ic ON ic.id = a.icon_id
|
||||
WHERE a.name = :n
|
||||
LIMIT 1
|
||||
""")
|
||||
row = (await session.execute(q, {"n": item_name})).fetchone()
|
||||
if not row:
|
||||
raise HTTPException(status_code=404, detail="Item not found")
|
||||
import base64
|
||||
icon_b64: str | None = None
|
||||
if row.image_data is not None:
|
||||
if row.image_encoding == "base64":
|
||||
icon_b64 = row.image_data
|
||||
else:
|
||||
try:
|
||||
icon_b64 = base64.b64encode(row.image_data).decode()
|
||||
except Exception:
|
||||
icon_b64 = None
|
||||
return ItemDetail(
|
||||
id=row.id,
|
||||
name=row.name,
|
||||
description=row.description,
|
||||
icon_id=row.icon_id,
|
||||
type_description=row.type_description,
|
||||
icon_b64=icon_b64,
|
||||
)
|
||||
|
||||
|
||||
@router.get("/items/{item_id}", response_model=ItemDetail)
|
||||
async def item_detail(item_id: int, session: AsyncSession = Depends(get_session)):
|
||||
"""Fetch full item record from all_items view."""
|
||||
q = text("SELECT * FROM all_items WHERE id = :id LIMIT 1")
|
||||
result = await session.execute(q, {"id": item_id})
|
||||
row = result.fetchone()
|
||||
async def item_detail(item_id: int = Path(..., ge=1), session: AsyncSession = Depends(get_session)):
|
||||
"""Retrieve item metadata and icon by numeric ID."""
|
||||
q = text(
|
||||
"""
|
||||
SELECT a.*, ic.image_data, ic.image_encoding
|
||||
FROM all_items a
|
||||
LEFT JOIN item_icons ic ON ic.id = a.icon_id
|
||||
WHERE a.id = :id
|
||||
LIMIT 1
|
||||
"""
|
||||
)
|
||||
row = (await session.execute(q, {"id": item_id})).fetchone()
|
||||
if not row:
|
||||
raise HTTPException(status_code=404, detail="Item not found")
|
||||
|
||||
import base64
|
||||
icon_b64: str | None = None
|
||||
if row.image_data is not None:
|
||||
if row.image_encoding == "base64":
|
||||
icon_b64 = row.image_data
|
||||
else:
|
||||
try:
|
||||
icon_b64 = base64.b64encode(row.image_data).decode()
|
||||
except Exception:
|
||||
icon_b64 = None
|
||||
return ItemDetail(
|
||||
id=row.id,
|
||||
name=row.name,
|
||||
description=row.description,
|
||||
icon_id=row.icon_id,
|
||||
type_description=row.type_description,
|
||||
icon_b64=icon_b64,
|
||||
)
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
Alchemy Crafted Items
|
||||
Amateur (1-10)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Orchestrion
|
||||
|
||||
@@ -659,9 +657,7 @@ Main Craft: Alchemy - (10)
|
||||
Alchemy Kit 10
|
||||
|
||||
|
||||
Recruit (11-20)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Coffee Beans
|
||||
|
||||
@@ -1180,9 +1176,7 @@ Main Craft: Alchemy - (20)
|
||||
Alchemy Kit 20
|
||||
|
||||
|
||||
Initiate (21-30)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Poison Arrowheads x6
|
||||
|
||||
@@ -1699,9 +1693,7 @@ Main Craft: Alchemy - (30)
|
||||
Alchemy Kit 30
|
||||
|
||||
|
||||
Novice (31-40)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Minnow
|
||||
|
||||
@@ -2318,9 +2310,7 @@ Main Craft: Alchemy - (40)
|
||||
Alchemy Kit 40
|
||||
|
||||
|
||||
Apprentice (41-50)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Bullet x33
|
||||
|
||||
@@ -3156,9 +3146,7 @@ Main Craft: Alchemy - (50)
|
||||
Alchemy Kit 50
|
||||
|
||||
|
||||
Journeyman (51-60)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Holy Water
|
||||
|
||||
@@ -4133,9 +4121,7 @@ Main Craft: Alchemy - (60)
|
||||
Alchemy Kit 60
|
||||
|
||||
|
||||
Craftsman (61-70)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Bastokan Finger Gauntlets
|
||||
|
||||
@@ -5081,9 +5067,7 @@ Main Craft: Alchemy - (70)
|
||||
Alchemy Kit 70
|
||||
|
||||
|
||||
Artisan (71-80)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Spartan Bullet x33
|
||||
|
||||
@@ -6034,9 +6018,7 @@ Main Craft: Alchemy - (80)
|
||||
Alchemy Kit 80
|
||||
|
||||
|
||||
Adept (81-90)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Bloody Bolt Heads x6
|
||||
|
||||
@@ -6756,9 +6738,7 @@ Main Craft: Alchemy - (90)
|
||||
Alchemy Kit 90
|
||||
|
||||
|
||||
Veteran (91-100)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Urushi x2
|
||||
|
||||
@@ -7461,9 +7441,7 @@ Sub Craft(s): Goldsmithing - (60)
|
||||
Flint Glass Sheet x3
|
||||
|
||||
|
||||
Expert (101-110)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Gold Algol
|
||||
|
||||
@@ -7812,9 +7790,7 @@ Sub Craft(s): Bonecraft - (55)
|
||||
Moldy Charm
|
||||
|
||||
|
||||
Authority (111-120)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Bewitched Greaves
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,5 @@
|
||||
Bonecrafting Crafted Items
|
||||
Amateur (1-10)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Shell Powder
|
||||
|
||||
@@ -201,9 +199,7 @@ Main Craft: Bonecraft - (10)
|
||||
Bonecraft Kit 10
|
||||
|
||||
|
||||
Recruit (11-20)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Bone Earring
|
||||
|
||||
@@ -424,9 +420,7 @@ Main Craft: Bonecraft - (20)
|
||||
Bonecraft Kit 20
|
||||
|
||||
|
||||
Initiate (21-30)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Carapace Powder
|
||||
|
||||
@@ -706,9 +700,7 @@ Main Craft: Bonecraft - (30)
|
||||
Bonecraft Kit 30
|
||||
|
||||
|
||||
Novice (31-40)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Beetle Gorget
|
||||
|
||||
@@ -996,9 +988,7 @@ Main Craft: Bonecraft - (40)
|
||||
Bonecraft Kit 40
|
||||
|
||||
|
||||
Apprentice (41-50)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Bone Knife
|
||||
|
||||
@@ -1383,9 +1373,7 @@ Main Craft: Bonecraft - (50)
|
||||
Bonecraft Kit 50
|
||||
|
||||
|
||||
Journeyman (51-60)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Shock Subligar
|
||||
|
||||
@@ -1726,9 +1714,7 @@ Main Craft: Bonecraft - (60)
|
||||
Bonecraft Kit 60
|
||||
|
||||
|
||||
Craftsman (61-70)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Fang Earring
|
||||
|
||||
@@ -2105,9 +2091,7 @@ Main Craft: Bonecraft - (70)
|
||||
Bonecraft Kit 70
|
||||
|
||||
|
||||
Artisan (71-80)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Hornet Fleuret
|
||||
|
||||
@@ -2629,9 +2613,7 @@ Main Craft: Bonecraft - (80)
|
||||
Bonecraft Kit 80
|
||||
|
||||
|
||||
Adept (81-90)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Darksteel Shield
|
||||
|
||||
@@ -3248,9 +3230,7 @@ Main Craft: Bonecraft - (90)
|
||||
Bonecraft Kit 90
|
||||
|
||||
|
||||
Veteran (91-100)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Cursed Subligar
|
||||
|
||||
@@ -4256,9 +4236,7 @@ Sub Craft(s): Leathercraft - (??), Clothcraft - (??)
|
||||
Emperor Arthro's Shell
|
||||
|
||||
|
||||
Expert (101-110)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Hydra Mask
|
||||
|
||||
@@ -4716,9 +4694,7 @@ Sub Craft(s): Leathercraft - (55)
|
||||
Moldy Gorget
|
||||
|
||||
|
||||
Authority (111-120)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Ej Necklace
|
||||
|
||||
|
||||
@@ -1,360 +1,360 @@
|
||||
category,level,subcrafts,name,crystal,key_item,ingredients,hq_yields
|
||||
Amateur,1,[],Shell Powder,Wind,,"[[""Seashell"", 3]]","[[""Shell Powder"", 2], [""Shell Powder"", 3], [""Shell Powder"", 4]]"
|
||||
Amateur,1,[],Wailing Bone Chip,Wind,Bone Ensorcellment,"[[""Bone Chip"", 1], [""Ice Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
Amateur,3,[],Shell Earring,Wind,,"[[""Seashell"", 2]]","[[""Shell Earring +1"", 1], null, null]"
|
||||
Amateur,4,[],Bone Hairpin,Wind,,"[[""Bone Chip"", 1]]","[[""Bone Hairpin +1"", 1], null, null]"
|
||||
Amateur,5,[],Shell Powder,Wind,,"[[""Vongola Clam"", 2]]","[[""Shell Powder"", 2], [""Shell Powder"", 3], [""Shell Powder"", 4]]"
|
||||
Amateur,5,[],Shell Powder,Wind,,"[[""Bonecraft Kit 5"", 1]]","[null, null, null]"
|
||||
Amateur,7,[],Eldritch Bone Hairpin,Wind,,"[[""Wailing Bone Chip"", 1], [""Bone Hairpin"", 1]]","[null, null, null]"
|
||||
Amateur,7,[],Shell Ring,Wind,,"[[""Fish Scales"", 1], [""Seashell"", 1]]","[[""Shell Ring +1"", 1], null, null]"
|
||||
Amateur,8,[],Wailing Shell,Wind,Bone Ensorcellment,"[[""Seashell"", 1], [""Ice Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
Amateur,9,"[[""Smithing"", 3]]",Cat Baghnakhs,Earth,,"[[""Bronze Sheet"", 1], [""Rabbit Hide"", 1], [""Bone Chip"", 3]]","[[""Cat Baghnakhs +1"", 1], null, null]"
|
||||
Amateur,10,[],Bone Arrowheads,Wind,,"[[""Bone Chip"", 2]]","[[""Bone Arrowheads"", 8], [""Bone Arrowheads"", 10], [""Bone Arrowheads"", 12]]"
|
||||
Amateur,10,[],Bone Arrowheads,Wind,Filing,"[[""Bone Chip"", 6], [""Shagreen File"", 1]]","[[""Bone Arrowheads"", 24], [""Bone Arrowheads"", 30], [""Bone Arrowheads"", 36]]"
|
||||
Amateur,10,[],Manashell Ring,Wind,,"[[""Wailing Shell"", 1], [""Shell Ring"", 1]]","[null, null, null]"
|
||||
Amateur,10,"[[""Woodworking"", 2]]",Bone Arrow,Wind,,"[[""Arrowwood Lumber"", 1], [""Yagudo Feather"", 2], [""Bone Chip"", 3]]","[[""Bone Arrow"", 66], [""Bone Arrow"", 99], [""Bone Arrow"", 99]]"
|
||||
Amateur,10,[],Bone Arrowheads,Wind,,"[[""Bonecraft Kit 10"", 1], [""Recruit (11-20)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,12,"[[""Goldsmithing"", 3]]",Bone Earring,Wind,,"[[""Bone Chip"", 2], [""Brass Ingot"", 1]]","[[""Bone Earring +1"", 1], null, null]"
|
||||
Amateur,13,[],Gelatin,Fire,,"[[""Chicken Bone"", 2], [""Distilled Water"", 1]]","[[""Gelatin"", 2], [""Gelatin"", 3], [""Gelatin"", 4]]"
|
||||
Amateur,14,"[[""Goldsmithing"", 14]]",Cornette,Wind,,"[[""Brass Ingot"", 1], [""Bone Chip"", 1]]","[[""Cornette +1"", 1], [""Cornette +1"", 1], [""Cornette +2"", 1]]"
|
||||
Amateur,14,[],Windurstian Baghnakhs,Earth,,"[[""Freesword's Baghnakhs"", 1], [""Bone Chip"", 1]]","[[""Federation Baghnakh"", 1], null, null]"
|
||||
Amateur,15,[],Fang Necklace,Earth,,"[[""Bat Fang"", 4], [""Black Tiger Fang"", 1], [""Bone Chip"", 2], [""Grass Thread"", 1]]","[[""Spike Necklace"", 1], null, null]"
|
||||
Amateur,15,[],Fang Necklace,Earth,,"[[""Bonecraft Kit 15"", 1]]","[null, null, null]"
|
||||
Amateur,16,[],Fish Scales,Lightning,,"[[""Gavial Fish"", 1]]","[[""High-Quality Pugil Scales"", 1], [""High-Quality Pugil Scales"", 2], [""High-Quality Pugil Scales"", 3]]"
|
||||
Amateur,16,[],Vivio Femur,Wind,Bone Purification,"[[""Giant Femur"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
|
||||
Amateur,16,[],Gelatin,Fire,,"[[""Bone Chip"", 4], [""Distilled Water"", 1]]","[[""Gelatin"", 2], [""Gelatin"", 3], [""Gelatin"", 4]]"
|
||||
Amateur,17,[],Bone Ring,Wind,,"[[""Sheep Tooth"", 1], [""Bone Chip"", 1]]","[[""Bone Ring +1"", 1], null, null]"
|
||||
Amateur,18,[],Bone Mask,Earth,,"[[""Giant Femur"", 1], [""Bone Chip"", 1], [""Sheep Leather"", 1]]","[[""Bone Mask +1"", 1], null, null]"
|
||||
Amateur,19,[],Pearl,Wind,,"[[""Shall Shell"", 1]]","[[""Black Pearl"", 1], [""Black Pearl"", 1], [""Black Pearl"", 1]]"
|
||||
Amateur,19,[],Pearl,Wind,,"[[""Istiridye"", 1]]","[[""Black Pearl"", 1], [""Black Pearl"", 1], [""Black Pearl"", 1]]"
|
||||
Amateur,20,[],Bone Axe,Wind,,"[[""Giant Femur"", 1], [""Ram Horn"", 2]]","[[""Bone Axe +1"", 1], null, null]"
|
||||
Amateur,20,"[[""Leathercraft"", 5]]",Bone Mittens,Earth,,"[[""Bone Chip"", 2], [""Sheep Leather"", 2]]","[[""Bone Mittens +1"", 1], null, null]"
|
||||
Amateur,20,[],Bone Axe,Wind,,"[[""Bonecraft Kit 20"", 1], [""Initiate (21-30)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,21,[],Carapace Powder,Wind,,"[[""Beetle Shell"", 2]]","[null, null, null]"
|
||||
Amateur,22,"[[""Leathercraft"", 5]]",Bone Leggings,Earth,,"[[""Giant Femur"", 1], [""Bone Chip"", 1], [""Sheep Leather"", 2]]","[[""Bone Leggings +1"", 1], null, null]"
|
||||
Amateur,23,"[[""Woodworking"", 6]]",Bone Pick,Wind,,"[[""Ash Lumber"", 1], [""Giant Femur"", 1]]","[[""Bone Pick +1"", 1], null, null]"
|
||||
Amateur,24,"[[""Leathercraft"", 6]]",Bone Subligar,Earth,,"[[""Bone Chip"", 1], [""Grass Cloth"", 1], [""Sheep Leather"", 2]]","[[""Bone Subligar +1"", 1], null, null]"
|
||||
Amateur,24,[],Gemshorn,Wind,,"[[""Giant Femur"", 1], [""Beetle Jaw"", 1]]","[[""Gemshorn +1"", 1], null, null]"
|
||||
Amateur,24,[],Jolt Axe,Wind,Bone Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Bone Axe"", 1]]","[null, null, null]"
|
||||
Amateur,25,[],Beetle Ring,Wind,,"[[""Beetle Jaw"", 1]]","[[""Beetle Ring +1"", 1], null, null]"
|
||||
Amateur,25,[],Smooth Beetle Jaw,Wind,Bone Purification,"[[""Beetle Jaw"", 1], [""Wind Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
|
||||
Amateur,25,[],Beetle Ring,Wind,,"[[""Bonecraft Kit 25"", 1]]","[null, null, null]"
|
||||
Amateur,26,"[[""Leathercraft"", 7]]",Bone Harness,Earth,,"[[""Pugil Scales"", 1], [""Sheep Leather"", 2], [""Giant Femur"", 1], [""Bone Chip"", 1]]","[[""Bone Harness +1"", 1], null, null]"
|
||||
Amateur,26,"[[""Leathercraft"", 11]]",Mettle Leggings,Earth,,"[[""Samwell's Shank"", 1], [""Sheep Leather"", 2], [""Bone Chip"", 1]]","[[""Mettle Leggings +1"", 1], null, null]"
|
||||
Amateur,27,[],Beetle Earring,Earth,,"[[""Beetle Jaw"", 1], [""Silver Earring"", 1]]","[[""Beetle Earring +1"", 1], null, null]"
|
||||
Amateur,27,[],Wailing Ram Horn,Wind,Bone Ensorcellment,"[[""Ram Horn"", 1], [""Ice Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
Amateur,28,[],Gelatin,Fire,,"[[""Giant Femur"", 1], [""Distilled Water"", 1]]","[[""Gelatin"", 6], [""Gelatin"", 8], [""Gelatin"", 10]]"
|
||||
Amateur,29,[],Horn Hairpin,Wind,,"[[""Ram Horn"", 1]]","[[""Horn Hairpin +1"", 1], null, null]"
|
||||
Amateur,29,[],San d'Orian Horn,Wind,,"[[""Royal Spearman's Horn"", 1], [""Giant Femur"", 1]]","[[""Kingdom Horn"", 1], null, null]"
|
||||
Amateur,29,"[[""Leathercraft"", 20]]",Seer's Crown,Earth,,"[[""Linen Thread"", 1], [""Lizard Molt"", 1], [""Bone Chip"", 1], [""Coeurl Whisker"", 1]]","[[""Seer's Crown +1"", 1], null, null]"
|
||||
Amateur,29,[],Healing Harness,Earth,,"[[""Vivio Femur"", 1], [""Bone Harness"", 1]]","[null, null, null]"
|
||||
Amateur,30,[],Beetle Mask,Earth,,"[[""Lizard Skin"", 1], [""Beetle Jaw"", 1]]","[[""Beetle Mask +1"", 1], null, null]"
|
||||
Amateur,30,"[[""Leathercraft"", 8]]",Beetle Mittens,Earth,,"[[""Lizard Skin"", 2], [""Beetle Shell"", 1]]","[[""Beetle Mittens +1"", 1], null, null]"
|
||||
Amateur,30,[],Beetle Mask,Earth,,"[[""Bonecraft Kit 30"", 1], [""Novice (31-40)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,31,[],Beetle Gorget,Earth,,"[[""Beetle Jaw"", 2], [""Beetle Shell"", 1]]","[[""Green Gorget"", 1], null, null]"
|
||||
Amateur,32,"[[""Leathercraft"", 8]]",Beetle Leggings,Earth,,"[[""Lizard Skin"", 2], [""Beetle Jaw"", 1], [""Beetle Shell"", 1]]","[[""Beetle Leggings +1"", 1], null, null]"
|
||||
Amateur,32,[],Eldritch Horn Hairpin,Wind,,"[[""Wailing Ram Horn"", 1], [""Horn Hairpin"", 1]]","[null, null, null]"
|
||||
Amateur,33,[],Beetle Arrowheads,Wind,,"[[""Beetle Jaw"", 1], [""Bone Chip"", 1]]","[[""Beetle Arrowheads"", 8], [""Beetle Arrowheads"", 10], [""Beetle Arrowheads"", 12]]"
|
||||
Amateur,33,[],Beetle Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Beetle Jaw"", 3], [""Shagreen File"", 1]]","[[""Beetle Arrowheads"", 24], [""Beetle Arrowheads"", 30], [""Beetle Arrowheads"", 36]]"
|
||||
Amateur,34,"[[""Leathercraft"", 9]]",Beetle Subligar,Earth,,"[[""Cotton Cloth"", 1], [""Lizard Skin"", 1], [""Beetle Jaw"", 1]]","[[""Beetle Subligar +1"", 1], null, null]"
|
||||
Amateur,35,[],Turtle Shield,Earth,,"[[""Turtle Shell"", 1], [""Beetle Shell"", 1]]","[[""Turtle Shield +1"", 1], null, null]"
|
||||
Amateur,35,[],Turtle Shield,Earth,,"[[""Bonecraft Kit 35"", 1]]","[null, null, null]"
|
||||
Amateur,36,"[[""Leathercraft"", 9]]",Beetle Harness,Earth,,"[[""Lizard Skin"", 3], [""Beetle Shell"", 2]]","[[""Beetle Harness +1"", 1], null, null]"
|
||||
Amateur,37,[],Horn Ring,Wind,,"[[""Fish Scales"", 1], [""Ram Horn"", 1]]","[[""Horn Ring +1"", 1], null, null]"
|
||||
Amateur,37,"[[""Leathercraft"", 24]]",Shade Tiara,Earth,,"[[""Uragnite Shell"", 1], [""Eft Skin"", 1], [""Photoanima"", 1]]","[[""Shade Tiara +1"", 1], null, null]"
|
||||
Amateur,38,[],Fang Arrowheads,Wind,,"[[""Black Tiger Fang"", 1], [""Bone Chip"", 1]]","[[""Fang Arrowheads"", 8], [""Fang Arrowheads"", 10], [""Fang Arrowheads"", 12]]"
|
||||
Amateur,38,[],Fang Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Black Tiger Fang"", 3], [""Shagreen File"", 1]]","[[""Fang Arrowheads"", 24], [""Fang Arrowheads"", 30], [""Fang Arrowheads"", 36]]"
|
||||
Amateur,38,"[[""Clothcraft"", 21], [""Leathercraft"", 24]]",Shade Mittens,Earth,,"[[""Luminicloth"", 1], [""Sheep Leather"", 1], [""Tiger Leather"", 1], [""Uragnite Shell"", 1], [""Eft Skin"", 1], [""Photoanima"", 1]]","[[""Shade Mittens +1"", 1], null, null]"
|
||||
Amateur,39,"[[""Clothcraft"", 23], [""Leathercraft"", 24]]",Shade Tights,Earth,,"[[""Luminicloth"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""Uragnite Shell"", 1], [""Eft Skin"", 1], [""Photoanima"", 1]]","[[""Shade Tights +1"", 1], null, null]"
|
||||
Amateur,40,[],Titanictus Shell,Lightning,,"[[""Titanictus"", 1]]","[[""Titanictus Shell"", 2], [""Titanictus Shell"", 3], [""Titanictus Shell"", 4]]"
|
||||
Amateur,40,"[[""Clothcraft"", 22], [""Leathercraft"", 24]]",Shade Leggings,Earth,,"[[""Luminicloth"", 1], [""Lizard Skin"", 1], [""Tiger Leather"", 2], [""Uragnite Shell"", 1], [""Eft Skin"", 1], [""Photoanima"", 1]]","[[""Shade Leggings +1"", 1], null, null]"
|
||||
Amateur,40,[],Titanictus Shell,Lightning,,"[[""Armored Pisces"", 1]]","[null, null, null]"
|
||||
Amateur,40,[],Bone Cudgel,Wind,,"[[""Bone Chip"", 6], [""Grass Cloth"", 1], [""Giant Femur"", 1]]","[[""Bone Cudgel +1"", 1], null, null]"
|
||||
Amateur,40,[],Bone Cudgel,Wind,,"[[""Bonecraft Kit 40"", 1], [""Apprentice (41-50)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,41,[],Bone Knife,Wind,,"[[""Walnut Lumber"", 1], [""Giant Femur"", 1]]","[[""Bone Knife +1"", 1], null, null]"
|
||||
Amateur,41,"[[""Leathercraft"", 13]]",Garish Crown,Earth,,"[[""Lizard Molt"", 1], [""Beetle Jaw"", 1], [""Coeurl Whisker"", 1], [""Bloodthread"", 1]]","[[""Rubious Crown"", 1], null, null]"
|
||||
Amateur,41,[],Luminous Shell,Wind,Bone Ensorcellment,"[[""Crab Shell"", 1], [""Lightning Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
Amateur,41,[],Vivio Crab Shell,Wind,Bone Purification,"[[""Crab Shell"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
|
||||
Amateur,42,"[[""Goldsmithing"", 11]]",Carapace Ring,Wind,,"[[""Mythril Ingot"", 1], [""Crab Shell"", 1]]","[[""Carapace Ring +1"", 1], null, null]"
|
||||
Amateur,42,"[[""Clothcraft"", 24], [""Leathercraft"", 25]]",Shade Harness,Earth,,"[[""Luminicloth"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""Uragnite Shell"", 2], [""Eft Skin"", 2], [""Photoanima"", 1]]","[[""Shade Harness +1"", 1], null, null]"
|
||||
Amateur,43,[],Horn Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Ram Horn"", 1]]","[[""Horn Arrowheads"", 8], [""Horn Arrowheads"", 10], [""Horn Arrowheads"", 12]]"
|
||||
Amateur,43,[],Horn Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Ram Horn"", 3], [""Shagreen File"", 1]]","[[""Horn Arrowheads"", 24], [""Horn Arrowheads"", 30], [""Horn Arrowheads"", 36]]"
|
||||
Amateur,43,"[[""Alchemy"", 31]]",Skeleton Key,Earth,,"[[""Carbon Fiber"", 1], [""Chicken Bone"", 1], [""Glass Fiber"", 1], [""Bat Fang"", 2], [""Animal Glue"", 1], [""Hecteyes Eye"", 1], [""Sheep Tooth"", 1]]","[[""Skeleton Key"", 4], [""Skeleton Key"", 6], [""Skeleton Key"", 8]]"
|
||||
Amateur,44,"[[""Leathercraft"", 11]]",Carapace Mittens,Earth,,"[[""Dhalmel Leather"", 1], [""Fish Scales"", 1], [""Crab Shell"", 1]]","[[""Carapace Mittens +1"", 1], null, null]"
|
||||
Amateur,44,[],Mist Crown,Earth,,"[[""Smooth Beetle Jaw"", 1], [""Garish Crown"", 1]]","[null, null, null]"
|
||||
Amateur,44,[],Deathbone Knife,Wind,Bone Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Bone Knife"", 1]]","[null, null, null]"
|
||||
Amateur,45,[],Carapace Mask,Earth,,"[[""Crab Shell"", 1], [""Dhalmel Leather"", 1]]","[[""Carapace Mask +1"", 1], null, null]"
|
||||
Amateur,45,"[[""Woodworking"", 6]]",Serpette,Wind,,"[[""Ash Lumber"", 1], [""Grass Cloth"", 1], [""Giant Femur"", 2], [""Bukktooth"", 1]]","[[""Serpette +1"", 1], null, null]"
|
||||
Amateur,45,[],Carapace Mask,Earth,,"[[""Bonecraft Kit 45"", 1]]","[null, null, null]"
|
||||
Amateur,46,"[[""Leathercraft"", 12]]",Carapace Leggings,Earth,,"[[""Crab Shell"", 1], [""Fish Scales"", 1], [""Dhalmel Leather"", 2]]","[[""Carapace Leggings +1"", 1], null, null]"
|
||||
Amateur,47,[],Horn,Wind,,"[[""Beetle Jaw"", 1], [""Ram Horn"", 1]]","[[""Horn +1"", 1], null, null]"
|
||||
Amateur,47,"[[""Smithing"", 45], [""Woodworking"", 33]]",Mandibular Sickle,Wind,,"[[""Darksteel Ingot"", 1], [""Ebony Lumber"", 1], [""Ram Leather"", 1], [""Antlion Jaw"", 1]]","[[""Antlion Sickle"", 1], null, null]"
|
||||
Amateur,47,[],Thunder Mittens,Earth,,"[[""Luminous Shell"", 1], [""Carapace Mittens"", 1]]","[null, null, null]"
|
||||
Amateur,48,"[[""Leathercraft"", 12]]",Carapace Subligar,Earth,,"[[""Linen Cloth"", 1], [""Dhalmel Leather"", 1], [""Crab Shell"", 1]]","[[""Carapace Subligar +1"", 1], null, null]"
|
||||
Amateur,49,[],Carapace Gorget,Earth,,"[[""Iron Chain"", 1], [""Crab Shell"", 2]]","[[""Blue Gorget"", 1], null, null]"
|
||||
Amateur,49,"[[""Blacksmithing"", 42], [""Goldsmithing"", 28]]",Thug's Jambiya,Fire,,"[[""Brass Ingot"", 1], [""Mythril Ingot"", 1], [""Turquoise"", 1], [""Wivre Horn"", 1]]","[[""Thug's Jambiya +1"", 1], null, null]"
|
||||
Amateur,50,[],Bone Rod,Fire,,"[[""Giant Femur"", 1], [""Ram Horn"", 2]]","[[""Bone Rod +1"", 1], null, null]"
|
||||
Amateur,50,"[[""Leathercraft"", 13]]",Carapace Harness,Earth,,"[[""Dhalmel Leather"", 2], [""Crab Shell"", 2]]","[[""Carapace Harness +1"", 1], null, null]"
|
||||
Amateur,50,[],Vivio Scorpion Claw,Wind,Bone Purification,"[[""Scorpion Claw"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
|
||||
Amateur,50,[],Jet Sickle,Wind,Bone Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Mandibular Sickle"", 1]]","[null, null, null]"
|
||||
Amateur,50,[],Bone Rod,Fire,,"[[""Bonecraft Kit 50"", 1], [""Journeyman (51-60)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,51,[],Shock Subligar,Earth,,"[[""Luminous Shell"", 1], [""Carapace Subligar"", 1]]","[null, null, null]"
|
||||
Amateur,52,"[[""Smithing"", 47]]",Bandit's Gun,Fire,,"[[""Steel Ingot"", 2], [""Giant Femur"", 1]]","[[""Bandit's Gun +1"", 1], null, null]"
|
||||
Amateur,52,[],Spirit Shell,Wind,Bone Ensorcellment,"[[""Turtle Shell"", 1], [""Earth Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
Amateur,53,[],High Healing Harness,Earth,,"[[""Vivio Crab Shell"", 1], [""Carapace Harness"", 1]]","[null, null, null]"
|
||||
Amateur,53,[],Scorpion Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Scorpion Claw"", 1]]","[[""Scorpion Arrowheads"", 8], [""Scorpion Arrowheads"", 10], [""Scorpion Arrowheads"", 12]]"
|
||||
Amateur,53,[],Scorpion Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Scorpion Claw"", 3], [""Shagreen File"", 1]]","[[""Scorpion Arrowheads"", 24], [""Scorpion Arrowheads"", 30], [""Scorpion Arrowheads"", 36]]"
|
||||
Amateur,53,[],Shell Hairpin,Wind,,"[[""Turtle Shell"", 1]]","[[""Shell Hairpin +1"", 1], null, null]"
|
||||
Amateur,54,[],Turtle Bangles,Wind,,"[[""Turtle Shell"", 2], [""Giant Femur"", 1]]","[[""Turtle Bangles +1"", 1], null, null]"
|
||||
Amateur,55,[],Tortoise Earring,Wind,,"[[""Gold Chain"", 1], [""Turtle Shell"", 1]]","[[""Tortoise Earring +1"", 1], null, null]"
|
||||
Amateur,55,[],Tortoise Earring,Wind,,"[[""Bonecraft Kit 55"", 1]]","[null, null, null]"
|
||||
Amateur,56,"[[""Clothcraft"", 26]]",Justaucorps,Earth,,"[[""Wool Robe"", 1], [""Gold Thread"", 1], [""Beetle Shell"", 1], [""Scorpion Claw"", 2]]","[[""Justaucorps +1"", 1], null, null]"
|
||||
Amateur,57,[],Blood Stone,Wind,,"[[""Giant Femur"", 1], [""Grass Thread"", 1], [""Fiend Blood"", 1]]","[[""Blood Stone +1"", 1], null, null]"
|
||||
Amateur,57,"[[""Woodworking"", 19]]",Bone Scythe,Wind,,"[[""Yew Lumber"", 1], [""Giant Femur"", 2], [""Grass Cloth"", 1], [""Sheep Tooth"", 1]]","[[""Bone Scythe +1"", 1], null, null]"
|
||||
Amateur,57,[],Stone Bangles,Earth,,"[[""Spirit Shell"", 1], [""Turtle Bangles"", 1]]","[null, null, null]"
|
||||
Amateur,58,"[[""Smithing"", 55]]",Armored Arrowheads,Wind,,"[[""Steel Ingot"", 1], [""Taurus Horn"", 1]]","[[""Armored Arrowheads"", 8], [""Armored Arrowheads"", 10], [""Armored Arrowheads"", 12]]"
|
||||
Amateur,58,"[[""Smithing"", 55]]",Armored Arrowheads,Wind,,"[[""Steel Ingot"", 3], [""Taurus Horn"", 3], [""Shagreen File"", 1]]","[[""Armored Arrowheads"", 24], [""Armored Arrowheads"", 30], [""Armored Arrowheads"", 36]]"
|
||||
Amateur,58,[],Astragalos,Wind,,"[[""Giant Femur"", 1], [""Black Ink"", 1], [""Beastman Blood"", 1]]","[[""Astragalos"", 12], [""Astragalos"", 16], [""Astragalos"", 20]]"
|
||||
Amateur,59,[],Beetle Knife,Wind,,"[[""Oak Lumber"", 1], [""Beetle Jaw"", 1]]","[[""Beetle Knife +1"", 1], null, null]"
|
||||
Amateur,59,[],Healing Justaucorps,Earth,,"[[""Vivio Scorpion Claw"", 1], [""Justaucorps"", 1]]","[null, null, null]"
|
||||
Amateur,59,[],Macuahuitl,Wind,,"[[""Bugard Tusk"", 1], [""Rhinochimera"", 1], [""Macuahuitl -1"", 1]]","[[""Macuahuitl +1"", 1], null, null]"
|
||||
Amateur,60,[],Beak Necklace,Earth,,"[[""High-Quality Crab Shell"", 1], [""Oxblood"", 1], [""Colibri Beak"", 4], [""Mohbwa Thread"", 1], [""Wivre Maul"", 1]]","[[""Beak Necklace +1"", 1], null, null]"
|
||||
Amateur,60,[],Scorpion Ring,Wind,,"[[""Scorpion Shell"", 1]]","[[""Scorpion Ring +1"", 1], null, null]"
|
||||
Amateur,60,[],Ranging Knife,Wind,,"[[""Walnut Lumber"", 1], [""Stately Crab Shell"", 1]]","[[""Ranging Knife +1"", 1], null, null]"
|
||||
Amateur,60,[],Barnacle,Lightning,,"[[""Carrier Crab Carapace"", 1]]","[[""Barnacle"", 2], [""Barnacle"", 3], [""Barnacle"", 4]]"
|
||||
Amateur,60,[],Scorpion Ring,Wind,,"[[""Bonecraft Kit 60"", 1], [""Craftsman (61-70)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,61,[],Fang Earring,Wind,,"[[""Silver Chain"", 1], [""Black Tiger Fang"", 2]]","[[""Spike Earring"", 1], null, null]"
|
||||
Amateur,61,[],Wind Fan,Earth,,"[[""Beetle Shell"", 1], [""Giant Femur"", 1], [""Beeswax"", 1], [""Bat Wing"", 1], [""Wind Cluster"", 1]]","[[""Wind Fan"", 99], null, null]"
|
||||
Amateur,62,"[[""Smithing"", 49]]",Pirate's Gun,Fire,,"[[""Steel Ingot"", 1], [""Darksteel Ingot"", 1], [""Turtle Shell"", 1]]","[[""Pirate's Gun +1"", 1], null, null]"
|
||||
Amateur,62,[],Coral Horn,Wind,,"[[""Oxblood"", 1]]","[null, null, null]"
|
||||
Amateur,62,"[[""Smithing"", 50], [""Goldsmithing"", 33]]",Darksteel Jambiya,Fire,,"[[""Darksteel Ingot"", 1], [""Silver Ingot"", 1], [""Sunstone"", 1], [""Mercury"", 1], [""Ladybug Wing"", 1]]","[null, null, null]"
|
||||
Amateur,62,"[[""Smithing"", 50], [""Goldsmithing"", 33]]",Ogre Jambiya,Fire,,"[[""Darksteel Ingot"", 1], [""Silver Ingot"", 1], [""Sunstone"", 1], [""Mercury"", 1], [""Buggane Horn"", 1]]","[null, null, null]"
|
||||
Amateur,63,[],Demon Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Demon Horn"", 1]]","[[""Demon Arrowheads"", 8], [""Demon Arrowheads"", 10], [""Demon Arrowheads"", 12]]"
|
||||
Amateur,63,[],Demon Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Demon Horn"", 3], [""Shagreen File"", 1]]","[[""Demon Arrowheads"", 24], [""Demon Arrowheads"", 30], [""Demon Arrowheads"", 36]]"
|
||||
Amateur,63,"[[""Leathercraft"", 31]]",Scorpion Mittens,Earth,,"[[""Scorpion Shell"", 1], [""Ram Leather"", 1], [""Pugil Scales"", 1]]","[[""Scorpion Mittens +1"", 1], null, null]"
|
||||
Amateur,64,"[[""Leathercraft"", 21]]",Marid Mittens,Earth,,"[[""Karakul Leather"", 1], [""Merrow Scale"", 1], [""Marid Tusk"", 1]]","[[""Marid Mittens +1"", 1], null, null]"
|
||||
Amateur,64,[],Scorpion Mask,Earth,,"[[""Ram Leather"", 1], [""Scorpion Shell"", 1]]","[[""Scorpion Mask +1"", 1], null, null]"
|
||||
Amateur,65,[],Scapegoat,Wind,,"[[""Phoenix Feather"", 1], [""Marid Tusk"", 1]]","[null, null, null]"
|
||||
Amateur,65,[],Ladybug Ring,Wind,,"[[""Ladybug Wing"", 2]]","[[""Ladybug Ring +1"", 1], null, null]"
|
||||
Amateur,65,"[[""Leathercraft"", 32]]",Scorpion Leggings,Earth,,"[[""Scorpion Shell"", 1], [""Ram Leather"", 2], [""Pugil Scales"", 1]]","[[""Scorpion Leggings +1"", 1], null, null]"
|
||||
Amateur,65,[],Ladybug Ring,Wind,,"[[""Bonecraft Kit 65"", 1]]","[null, null, null]"
|
||||
Amateur,66,[],Crumhorn,Wind,,"[[""Beetle Jaw"", 1], [""Demon Horn"", 1]]","[[""Crumhorn +1"", 1], [""Crumhorn +1"", 1], [""Crumhorn +2"", 1]]"
|
||||
Amateur,66,"[[""Leathercraft"", 22]]",Marid Leggings,Earth,,"[[""Karakul Leather"", 2], [""Merrow Scale"", 1], [""Marid Tusk"", 1]]","[[""Marid Leggings +1"", 1], null, null]"
|
||||
Amateur,66,"[[""Smithing"", 45], [""Woodworking"", 33]]",Ogre Sickle,Wind,,"[[""Darksteel Ingot"", 1], [""Ebony Lumber"", 1], [""Ruszor Leather"", 1], [""Buggane Horn"", 1]]","[null, null, null]"
|
||||
Amateur,67,"[[""Goldsmithing"", 53], [""Woodworking"", 31]]",Ivory Sickle,Wind,,"[[""Mahogany Lumber"", 1], [""Platinum Ingot"", 1], [""Ram Leather"", 1], [""Oversized Fang"", 1]]","[[""Ivory Sickle +1"", 1], null, null]"
|
||||
Amateur,67,"[[""Leathercraft"", 32]]",Scorpion Subligar,Earth,,"[[""Linen Cloth"", 1], [""Scorpion Shell"", 1], [""Ram Leather"", 1]]","[[""Scorpion Subligar +1"", 1], null, null]"
|
||||
Amateur,68,[],Bone Patas,Fire,,"[[""Crab Shell"", 1], [""Giant Femur"", 2], [""Carbon Fiber"", 1]]","[[""Bone Patas +1"", 1], null, null]"
|
||||
Amateur,68,"[[""Smithing"", 43]]",Seadog Gun,Fire,,"[[""Steel Ingot"", 2], [""Coral Fragment"", 2]]","[[""Seadog Gun +1"", 1], null, null]"
|
||||
Amateur,69,[],Beast Horn,Wind,,"[[""Ram Horn"", 2]]","[null, null, null]"
|
||||
Amateur,69,"[[""Leathercraft"", 33]]",Scorpion Harness,Earth,,"[[""Venomous Claw"", 1], [""Scorpion Shell"", 2], [""Ram Leather"", 2]]","[[""Scorpion Harness +1"", 1], null, null]"
|
||||
Amateur,70,[],Antlion Trap,Earth,,"[[""Coeurl Whisker"", 1], [""Animal Glue"", 1], [""Antican Pauldron"", 1], [""Antican Robe"", 1], [""High-Quality Antlion Jaw"", 2]]","[null, null, null]"
|
||||
Amateur,70,[],Demon's Ring,Wind,,"[[""Fish Scales"", 1], [""Demon Horn"", 1]]","[[""Demon's Ring +1"", 1], null, null]"
|
||||
Amateur,70,[],Demon's Ring,Wind,,"[[""Bonecraft Kit 70"", 1], [""Artisan (71-80)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,71,"[[""Goldsmithing"", 52]]",Hornet Fleuret,Fire,,"[[""Brass Ingot"", 1], [""Moonstone"", 1], [""Giant Femur"", 1], [""Pearl"", 1], [""Giant Stinger"", 1]]","[[""Wasp Fleuret"", 1], null, null]"
|
||||
Amateur,71,[],Kilo Fan,Earth,,"[[""Crab Shell"", 1], [""Giant Femur"", 1], [""Beeswax"", 1], [""Bat Wing"", 1], [""Wind Cluster"", 1]]","[[""Kilo Fan"", 99], null, null]"
|
||||
Amateur,71,[],Vivified Coral,Wind,Bone Purification,"[[""Coral Fragment"", 1], [""Lightning Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
|
||||
Amateur,72,"[[""Leathercraft"", 5]]",Coral Cuisses,Earth,,"[[""Leather Trousers"", 1], [""Coral Fragment"", 2], [""Rainbow Thread"", 1]]","[[""Coral Cuisses +1"", 1], null, null]"
|
||||
Amateur,72,"[[""Leathercraft"", 46]]",Coral Subligar,Earth,,"[[""Coeurl Leather"", 1], [""Linen Cloth"", 1], [""Coral Fragment"", 1]]","[[""Merman's Subligar"", 1], null, null]"
|
||||
Amateur,72,[],Gnole Sainti,Wind,,"[[""Brass Ingot"", 1], [""Steel Ingot"", 1], [""Gnole Claw"", 2], [""Teak Lumber"", 1]]","[[""Gnole Sainti +1"", 1], null, null]"
|
||||
Amateur,73,[],Demon's Knife,Wind,,"[[""Ebony Lumber"", 1], [""Demon Horn"", 1]]","[[""Demon's Knife +1"", 1], null, null]"
|
||||
Amateur,73,[],Lithic Wyvern Scale,Wind,Bone Purification,"[[""Wyvern Scales"", 1], [""Earth Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
|
||||
Amateur,73,[],Tactician Magician's Hooks +1,Earth,,"[[""Tactician Magician's Hooks"", 1], [""Demon Horn"", 1]]","[[""Tactician Magician's Hooks +2"", 1], null, null]"
|
||||
Amateur,73,[],Vivio Wyvern Scale,Wind,Bone Purification,"[[""Wyvern Scales"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
|
||||
Amateur,74,[],Coral Finger Gauntlets,Earth,,"[[""Leather Gloves"", 1], [""Coral Fragment"", 2], [""Rainbow Thread"", 1]]","[[""Coral Finger Gauntlets +1"", 1], null, null]"
|
||||
Amateur,74,"[[""Leathercraft"", 48]]",Coral Mittens,Earth,,"[[""Coeurl Leather"", 1], [""Coral Fragment"", 1], [""Wyvern Scales"", 1]]","[[""Merman's Mittens"", 1], null, null]"
|
||||
Amateur,74,[],Oxblood Orb,Wind,,"[[""Silver Chain"", 1], [""Oxblood"", 1]]","[[""Oxblood Orb"", 8], [""Oxblood Orb"", 10], [""Oxblood Orb"", 12]]"
|
||||
Amateur,74,[],Angel Skin Orb,Wind,,"[[""Silver Chain"", 1], [""Angel Skin"", 1]]","[[""Angel Skin Orb"", 8], [""Angel Skin Orb"", 10], [""Angel Skin Orb"", 12]]"
|
||||
Amateur,75,"[[""Leathercraft"", 35]]",Clown's Subligar,Earth,,"[[""Lindwurm Skin"", 1], [""Linen Cloth"", 1], [""Coral Fragment"", 1]]","[[""Clown's Subligar +1"", 1], null, null]"
|
||||
Amateur,75,[],Ladybug Earring,Wind,,"[[""Ladybug Wing"", 1], [""Electrum Chain"", 1]]","[[""Ladybug Earring +1"", 1], null, null]"
|
||||
Amateur,75,"[[""Smithing"", 53]]",Corsair's Gun,Fire,,"[[""Demon Horn"", 1], [""Darksteel Ingot"", 2]]","[[""Corsair's Gun +1"", 1], null, null]"
|
||||
Amateur,75,[],Ladybug Earring,Wind,,"[[""Bonecraft Kit 75"", 1]]","[null, null, null]"
|
||||
Amateur,76,"[[""Leathercraft"", 49]]",Coral Leggings,Earth,,"[[""Coeurl Leather"", 2], [""Coral Fragment"", 1], [""Wyvern Scales"", 1]]","[[""Merman's Leggings"", 1], null, null]"
|
||||
Amateur,76,[],Coral Greaves,Earth,,"[[""Leather Highboots"", 1], [""Coral Fragment"", 2], [""Rainbow Thread"", 1]]","[[""Coral Greaves +1"", 1], null, null]"
|
||||
Amateur,77,[],Coral Hairpin,Wind,,"[[""Black Pearl"", 1], [""Coral Fragment"", 1], [""Pearl"", 1]]","[[""Merman's Hairpin"", 1], null, null]"
|
||||
Amateur,77,[],Coral Visor,Wind,,"[[""Coral Fragment"", 2], [""Sheep Leather"", 1]]","[[""Coral Visor +1"", 1], null, null]"
|
||||
Amateur,78,[],Coral Cap,Earth,,"[[""Darksteel Cap"", 1], [""Coral Fragment"", 1]]","[[""Merman's Cap"", 1], null, null]"
|
||||
Amateur,78,[],Marid Tusk Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Marid Tusk"", 1]]","[[""Marid Tusk Arrowheads"", 8], [""Marid Tusk Arrowheads"", 10], [""Marid Tusk Arrowheads"", 12]]"
|
||||
Amateur,78,[],Marid Tusk Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Marid Tusk"", 3], [""Shagreen File"", 1]]","[[""Marid Tusk Arrowheads"", 24], [""Marid Tusk Arrowheads"", 30], [""Marid Tusk Arrowheads"", 36]]"
|
||||
Amateur,78,[],Zeal Cap,Earth,,"[[""Thunder Coral"", 1], [""Darksteel Cap"", 1]]","[[""Zeal Cap +1"", 1], null, null]"
|
||||
Amateur,78,"[[""Clothcraft"", 43], [""Leathercraft"", 33]]",Quadav Barbut,Earth,,"[[""Quadav Parts"", 1], [""Tiger Leather"", 1], [""Lizard Molt"", 1], [""Bugard Tusk"", 1], [""Wool Thread"", 1], [""Red Grass Cloth"", 1], [""Black Pearl"", 2]]","[null, null, null]"
|
||||
Amateur,79,[],Coral Gorget,Wind,,"[[""Coral Fragment"", 1], [""Sheep Leather"", 1]]","[[""Merman's Gorget"", 1], null, null]"
|
||||
Amateur,79,[],Tigerfangs,Fire,,"[[""Carbon Fiber"", 1], [""Black Tiger Fang"", 2], [""Scorpion Shell"", 1]]","[[""Feral Fangs"", 1], null, null]"
|
||||
Amateur,79,"[[""Woodworking"", 50]]",Horn Trophy,Earth,,"[[""Wool Thread"", 1], [""Buffalo Horn"", 2], [""Sheep Chammy"", 1], [""Teak Lumber"", 1]]","[null, null, null]"
|
||||
Amateur,79,[],Nuna Gorget,Wind,,"[[""Sheep Leather"", 1], [""Craklaw Pincer"", 1]]","[[""Nuna Gorget +1"", 1], null, null]"
|
||||
Amateur,80,"[[""Leathercraft"", 50]]",Coral Harness,Earth,,"[[""Coeurl Leather"", 2], [""Coral Fragment"", 2]]","[[""Merman's Harness"", 1], null, null]"
|
||||
Amateur,80,[],Coral Ring,Wind,,"[[""Coral Fragment"", 2]]","[[""Merman's Ring"", 1], null, null]"
|
||||
Amateur,80,[],Coral Scale Mail,Earth,,"[[""Leather Vest"", 1], [""Coral Fragment"", 4], [""Sheep Leather"", 1], [""Rainbow Thread"", 1]]","[[""Coral Scale Mail +1"", 1], null, null]"
|
||||
Amateur,80,[],Reraise Hairpin,Wind,,"[[""Vivified Coral"", 1], [""Coral Hairpin"", 1]]","[null, null, null]"
|
||||
Amateur,80,[],Vela Justaucorps,Earth,,"[[""Gold Thread"", 1], [""Beetle Shell"", 1], [""Bastet Fang"", 2], [""Wool Robe"", 1]]","[[""Vela Justaucorps +1"", 1], null, null]"
|
||||
Amateur,80,[],Coral Ring,Wind,,"[[""Bonecraft Kit 80"", 1], [""Adept (81-90)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,81,"[[""Smithing"", 58]]",Darksteel Shield,Earth,,"[[""Ash Lumber"", 1], [""Darksteel Sheet"", 3], [""Wyvern Scales"", 4]]","[[""Darksteel Shield +1"", 1], null, null]"
|
||||
Amateur,81,[],Marid Ring,Wind,,"[[""Marid Tusk"", 2]]","[[""Marid Ring +1"", 1], null, null]"
|
||||
Amateur,81,[],Saintly Ring,Earth,,"[[""Ascetic's Ring"", 1], [""Fish Scales"", 1]]","[[""Saintly Ring +1"", 1], null, null]"
|
||||
Amateur,82,"[[""Leathercraft"", 5]]",Dragon Cuisses,Earth,,"[[""Leather Trousers"", 1], [""Silver Thread"", 1], [""Wyvern Scales"", 2]]","[[""Dragon Cuisses +1"", 1], null, null]"
|
||||
Amateur,82,[],Eremite's Ring,Earth,,"[[""Hermit's Ring"", 1], [""Sheep Tooth"", 1]]","[[""Eremite's Ring +1"", 1], null, null]"
|
||||
Amateur,82,[],Reraise Gorget,Wind,,"[[""Vivified Coral"", 1], [""Coral Gorget"", 1]]","[null, null, null]"
|
||||
Amateur,82,[],Antlion Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Antlion Jaw"", 1]]","[[""Antlion Arrowheads"", 8], [""Antlion Arrowheads"", 10], [""Antlion Arrowheads"", 12]]"
|
||||
Amateur,82,[],Antlion Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Antlion Jaw"", 3], [""Shagreen File"", 1]]","[[""Antlion Arrowheads"", 24], [""Antlion Arrowheads"", 30], [""Antlion Arrowheads"", 36]]"
|
||||
Amateur,83,[],Coral Earring,Wind,,"[[""Silver Chain"", 1], [""Coral Fragment"", 2]]","[[""Merman's Earring"", 1], null, null]"
|
||||
Amateur,83,[],Mega Fan,Earth,,"[[""Scorpion Shell"", 1], [""Giant Femur"", 1], [""Beeswax"", 1], [""Bat Wing"", 1], [""Wind Cluster"", 1]]","[[""Mega Fan"", 99], null, null]"
|
||||
Amateur,83,"[[""Goldsmithing"", 49], [""Leathercraft"", 31]]",Lamia Garland,Wind,,"[[""Brass Chain"", 1], [""Garnet"", 1], [""Manta Leather"", 1], [""Uragnite Shell"", 1], [""Aht Urhgan Brass Ingot"", 1]]","[null, null, null]"
|
||||
Amateur,84,[],Behemoth Knife,Wind,,"[[""Behemoth Horn"", 1], [""Mahogany Lumber"", 1]]","[[""Behemoth Knife +1"", 1], null, null]"
|
||||
Amateur,84,[],Dragon Finger Gauntlets,Earth,,"[[""Leather Gloves"", 1], [""Silver Thread"", 1], [""Wyvern Scales"", 2]]","[[""Dragon Finger Gauntlets +1"", 1], null, null]"
|
||||
Amateur,84,[],Chapuli Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Chapuli Horn"", 1]]","[[""Chapuli Arrowheads"", 8], [""Chapuli Arrowheads"", 10], [""Chapuli Arrowheads"", 12]]"
|
||||
Amateur,84,[],Chapuli Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Chapuli Horn"", 3], [""Shagreen File"", 1]]","[[""Chapuli Arrowheads"", 24], [""Chapuli Arrowheads"", 30], [""Chapuli Arrowheads"", 36]]"
|
||||
Amateur,85,[],Eris' Earring,Earth,,"[[""Nemesis Earring"", 1], [""Seashell"", 1]]","[[""Eris' Earring +1"", 1], null, null]"
|
||||
Amateur,85,[],Hellish Bugle,Earth,,"[[""Imp Horn"", 1], [""Colibri Beak"", 1]]","[[""Hellish Bugle +1"", 1], null, null]"
|
||||
Amateur,85,[],Wivre Hairpin,Wind,,"[[""Wivre Maul"", 1]]","[[""Wivre Hairpin +1"", 1], null, null]"
|
||||
Amateur,85,[],Ruszor Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Ruszor Fang"", 1]]","[[""Ruszor Arrowheads"", 8], [""Ruszor Arrowheads"", 10], [""Ruszor Arrowheads"", 12]]"
|
||||
Amateur,85,[],Ruszor Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Ruszor Fang"", 3], [""Shagreen File"", 1]]","[[""Ruszor Arrowheads"", 24], [""Ruszor Arrowheads"", 30], [""Ruszor Arrowheads"", 36]]"
|
||||
Amateur,85,[],Hellish Bugle,Earth,,"[[""Bonecraft Kit 85"", 1]]","[null, null, null]"
|
||||
Amateur,86,[],Shofar,Wind,,"[[""Behemoth Horn"", 1], [""Beetle Jaw"", 1]]","[[""Shofar +1"", 1], null, null]"
|
||||
Amateur,86,[],Wivre Gorget,Wind,,"[[""Karakul Leather"", 1], [""Wivre Horn"", 1]]","[[""Wivre Gorget +1"", 1], null, null]"
|
||||
Amateur,86,[],Dragon Greaves,Earth,,"[[""Leather Highboots"", 1], [""Silver Thread"", 1], [""Wyvern Scales"", 2]]","[[""Dragon Greaves +1"", 1], null, null]"
|
||||
Amateur,87,[],Coral Bangles,Wind,,"[[""Giant Femur"", 1], [""Coral Fragment"", 2]]","[[""Merman's Bangles"", 1], null, null]"
|
||||
Amateur,87,[],Dragon Mask,Wind,,"[[""Sheep Leather"", 1], [""Wyvern Scales"", 2]]","[[""Dragon Mask +1"", 1], null, null]"
|
||||
Amateur,87,[],Snakeeye,Wind,,"[[""Hydra Fang"", 2], [""Wamoura Silk"", 1]]","[[""Snakeeye +1"", 1], null, null]"
|
||||
Amateur,88,[],Coral Sword,Earth,,"[[""Katzbalger"", 1], [""Coral Fragment"", 4]]","[[""Merman's Sword"", 1], null, null]"
|
||||
Amateur,88,[],Lamian Kaman,Earth,,"[[""Scorpion Claw"", 1], [""Marid Tusk"", 1], [""Lamian Kaman -1"", 1]]","[[""Lamian Kaman +1"", 1], null, null]"
|
||||
Amateur,88,"[[""Goldsmithing"", 60], [""Smithing"", 55]]",Naigama,Wind,,"[[""Bloodwood Lumber"", 1], [""Karakul Leather"", 1], [""Relic Steel"", 1], [""Marid Tusk"", 1], [""Scintillant Ingot"", 1]]","[[""Naigama +1"", 1], null, null]"
|
||||
Amateur,88,[],Gargouille Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Gargouille Horn"", 1]]","[[""Gargouille Arrowheads"", 8], [""Gargouille Arrowheads"", 10], [""Gargouille Arrowheads"", 12]]"
|
||||
Amateur,88,[],Gargouille Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Gargouille Horn"", 3], [""Shagreen File"", 1]]","[[""Gargouille Arrowheads"", 24], [""Gargouille Arrowheads"", 30], [""Gargouille Arrowheads"", 36]]"
|
||||
Amateur,88,"[[""Goldsmithing"", 33]]",Ghillie Earring,Wind,,"[[""Silver Chain"", 1], [""Ruszor Fang"", 2]]","[[""Ghillie Earring +1"", 1], null, null]"
|
||||
Amateur,89,[],Behemoth Ring,Wind,,"[[""Behemoth Horn"", 2]]","[[""Behemoth Ring +1"", 1], null, null]"
|
||||
Amateur,89,[],Earth Greaves,Earth,,"[[""Lithic Wyvern Scale"", 1], [""Dragon Greaves"", 1]]","[null, null, null]"
|
||||
Amateur,89,[],Inferno Sabots,Earth,,"[[""Ebony Sabots"", 1], [""Namtar Bone"", 1]]","[[""Inferno Sabots +1"", 1], null, null]"
|
||||
Amateur,90,"[[""Leathercraft"", 59]]",Demon's Harness,Earth,,"[[""Behemoth Leather"", 2], [""Demon Skull"", 2]]","[[""Demon's Harness +1"", 1], null, null]"
|
||||
Amateur,90,[],Dragon Claws,Earth,,"[[""Beetle Jaw"", 1], [""Dragon Talon"", 2]]","[[""Dragon Claws +1"", 1], null, null]"
|
||||
Amateur,90,"[[""Smithing"", 42]]",Dragon Mail,Earth,,"[[""Darksteel Chain"", 1], [""Darksteel Sheet"", 1], [""Leather Vest"", 1], [""Silver Thread"", 1], [""Wyvern Scales"", 3], [""Dragon Scales"", 1]]","[[""Dragon Mail +1"", 1], null, null]"
|
||||
Amateur,90,"[[""Goldsmithing"", 40]]",Airmid's Gorget,Earth,,"[[""Silver Chain"", 3], [""Vivified Coral"", 1], [""Vivified Mythril"", 1]]","[null, null, null]"
|
||||
Amateur,90,[],Mantid Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Mantid Foreleg"", 1]]","[[""Mantid Arrowheads"", 8], [""Mantid Arrowheads"", 10], [""Mantid Arrowheads"", 12]]"
|
||||
Amateur,90,[],Mantid Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Mantid Foreleg"", 3], [""Shagreen File"", 1]]","[[""Mantid Arrowheads"", 24], [""Mantid Arrowheads"", 30], [""Mantid Arrowheads"", 36]]"
|
||||
Amateur,90,[],Vexer Ring,Wind,,"[[""Coral Fragment"", 2], [""Twitherym Scale"", 1], [""Matamata Shell"", 1]]","[[""Vexer Ring +1"", 1], null, null]"
|
||||
Amateur,90,[],Dragon Claws,Earth,,"[[""Bonecraft Kit 90"", 1], [""Veteran (91-100)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,91,"[[""Leathercraft"", 41]]",Cursed Subligar,Earth,,"[[""Angel Skin"", 1], [""Silk Cloth"", 1], [""Tiger Leather"", 1]]","[[""Cursed Subligar -1"", 1], null, null]"
|
||||
Amateur,91,[],Demon Helm,Dark,,"[[""Sheep Leather"", 1], [""Demon Skull"", 1], [""Demon Horn"", 2]]","[[""Demon Helm +1"", 1], null, null]"
|
||||
Amateur,91,"[[""Leathercraft"", 38]]",Igqira Tiara,Earth,,"[[""Coral Fragment"", 3], [""Garnet"", 1], [""Coeurl Leather"", 1], [""Manticore Hair"", 1]]","[[""Genie Tiara"", 1], null, null]"
|
||||
Amateur,91,"[[""Goldsmithing"", 60], [""Smithing"", 39]]",Jambiya,Fire,,"[[""Steel Ingot"", 1], [""Mercury"", 1], [""Pigeon's Blood Ruby"", 1], [""Marid Tusk"", 1], [""Scintillant Ingot"", 1]]","[[""Jambiya +1"", 1], null, null]"
|
||||
Amateur,91,[],Matamata Shield,Earth,,"[[""Craklaw Pincer"", 1], [""Matamata Shell"", 1]]","[[""Matamata Shield +1"", 1], null, null]"
|
||||
Amateur,91,[],Bewitched Leggings,Earth,,"[[""Cursed Leggings -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Leggings"", 1], null, null]"
|
||||
Amateur,91,[],Vexed Gamashes,Earth,,"[[""Hexed Gamashes -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Gamashes"", 1], null, null]"
|
||||
Amateur,92,[],Carapace Gauntlets,Earth,,"[[""Leather Gloves"", 2], [""High-Quality Crab Shell"", 2]]","[[""Carapace Gauntlets +1"", 1], null, null]"
|
||||
Amateur,92,"[[""Leathercraft"", 43]]",Cursed Gloves,Earth,,"[[""Angel Skin"", 1], [""Tiger Leather"", 1], [""Wyvern Scales"", 1]]","[[""Cursed Gloves -1"", 1], null, null]"
|
||||
Amateur,92,"[[""Leathercraft"", 53]]",Dragon Subligar,Earth,,"[[""Sarcenet Cloth"", 1], [""Buffalo Leather"", 1], [""Dragon Bone"", 1]]","[[""Dragon Subligar +1"", 1], null, null]"
|
||||
Amateur,92,"[[""Goldsmithing"", 31]]",Wivre Ring,Wind,,"[[""Aht Urhgan Brass Ingot"", 1], [""Wivre Horn"", 2]]","[[""Wivre Ring +1"", 1], null, null]"
|
||||
Amateur,92,"[[""Leathercraft"", 58]]",Unicorn Subligar,Earth,,"[[""Behemoth Leather"", 1], [""Taffeta Cloth"", 1], [""Unicorn Horn"", 1]]","[[""Unicorn Subligar +1"", 1], null, null]"
|
||||
Amateur,92,[],Raaz Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Raaz Tusk"", 1]]","[[""Raaz Arrowheads"", 8], [""Raaz Arrowheads"", 10], [""Raaz Arrowheads"", 12]]"
|
||||
Amateur,92,[],Raaz Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Raaz Tusk"", 3], [""Shagreen File"", 1]]","[[""Raaz Arrowheads"", 24], [""Raaz Arrowheads"", 30], [""Raaz Arrowheads"", 36]]"
|
||||
Amateur,92,[],Bewitched Gloves,Earth,,"[[""Cursed Gloves -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Gloves"", 1], null, null]"
|
||||
Amateur,92,[],Vexed Wristbands,Earth,,"[[""Hexed Wristbands -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Wristbands"", 1], null, null]"
|
||||
Amateur,93,[],Carapace Helm,Earth,,"[[""Copper Ingot"", 1], [""High-Quality Crab Shell"", 2], [""Sheep Leather"", 1], [""Ram Leather"", 1]]","[[""Carapace Helm +1"", 1], null, null]"
|
||||
Amateur,93,"[[""Alchemy"", 41]]",Igqira Manillas,Earth,,"[[""Garnet"", 1], [""Bugard Tusk"", 1], [""Manticore Hair"", 1], [""Uragnite Shell"", 1], [""Avatar Blood"", 1]]","[[""Genie Manillas"", 1], null, null]"
|
||||
Amateur,93,[],Healing Mail,Earth,,"[[""Vivio Wyvern Scale"", 1], [""Dragon Mail"", 1]]","[null, null, null]"
|
||||
Amateur,93,[],Marath Baghnakhs,Earth,,"[[""Molybdenum Sheet"", 1], [""Marid Leather"", 1], [""Gargouille Horn"", 3]]","[[""Shivaji Baghnakhs"", 1], null, null]"
|
||||
Amateur,93,[],Bewitched Subligar,Earth,,"[[""Cursed Subligar -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Subligar"", 1], null, null]"
|
||||
Amateur,93,[],Shadow Throne,Dark,,"[[""Demon Skull"", 1], [""Demon Horn"", 2], [""Giant Femur"", 2], [""Fiend Blood"", 1], [""Demon Blood"", 1], [""Necropsyche"", 1]]","[null, null, null]"
|
||||
Amateur,94,"[[""Leathercraft"", 44]]",Cursed Leggings,Earth,,"[[""Angel Skin"", 1], [""Tiger Leather"", 2], [""Wyvern Scales"", 1]]","[[""Cursed Leggings -1"", 1], null, null]"
|
||||
Amateur,94,[],Mammoth Tusk,Wind,,"[[""Giant Frozen Head"", 1]]","[null, null, null]"
|
||||
Amateur,94,"[[""Alchemy"", 42]]",Shell Lamp,Wind,,"[[""Uragnite Shell"", 1], [""Flint Glass Sheet"", 1], [""Kaolin"", 2], [""Bomb Arm"", 1]]","[null, null, null]"
|
||||
Amateur,94,"[[""Leathercraft"", 52]]",Dragon Mittens,Earth,,"[[""Wyvern Scales"", 1], [""Buffalo Leather"", 1], [""Dragon Bone"", 1]]","[[""Dragon Mittens +1"", 1], null, null]"
|
||||
Amateur,94,[],Bewitched Cap,Earth,,"[[""Cursed Cap -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Cap"", 1], null, null]"
|
||||
Amateur,95,[],Carapace Breastplate,Earth,,"[[""Sheep Leather"", 1], [""Ram Leather"", 2], [""High-Quality Crab Shell"", 4]]","[[""Carapace Breastplate +1"", 1], null, null]"
|
||||
Amateur,95,[],Gavial Cuisses,Earth,,"[[""Titanictus Shell"", 1], [""High-Quality Pugil Scales"", 1], [""Rainbow Thread"", 1], [""Leather Trousers"", 1]]","[[""Gavial Cuisses +1"", 1], null, null]"
|
||||
Amateur,95,"[[""Leathercraft"", 50]]",Igqira Huaraches,Earth,,"[[""Coeurl Whisker"", 1], [""Coeurl Leather"", 1], [""Bugard Tusk"", 1], [""High-Quality Bugard Skin"", 1], [""Harajnite Shell"", 1]]","[[""Genie Huaraches"", 1], null, null]"
|
||||
Amateur,95,"[[""Leathercraft"", 54]]",Unicorn Mittens,Earth,,"[[""Gold Thread"", 1], [""Behemoth Leather"", 1], [""Wyvern Scales"", 1], [""Unicorn Horn"", 1]]","[[""Unicorn Mittens +1"", 1], null, null]"
|
||||
Amateur,95,"[[""Woodworking"", 48], [""Goldsmithing"", 30]]",Buzbaz Sainti,Wind,,"[[""Light Steel Ingot"", 2], [""Oak Lumber"", 1], [""Ruszor Fang"", 2]]","[[""Buzbaz Sainti +1"", 1], null, null]"
|
||||
Amateur,95,[],Bewitched Harness,Earth,,"[[""Cursed Harness -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Harness"", 1], null, null]"
|
||||
Amateur,95,[],Vexed Jacket,Earth,,"[[""Hexed Jacket -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Jacket"", 1], null, null]"
|
||||
Amateur,95,[],Carapace Breastplate,Earth,,"[[""Bonecraft Kit 95"", 1]]","[null, null, null]"
|
||||
Amateur,96,[],Acheron Shield,Earth,,"[[""Adamantoise Shell"", 2], [""Ram Leather"", 1]]","[[""Acheron Shield +1"", 1], null, null]"
|
||||
Amateur,96,"[[""Leathercraft"", 53]]",Dragon Leggings,Earth,,"[[""Wyvern Scales"", 1], [""Buffalo Leather"", 2], [""Dragon Bone"", 1]]","[[""Dragon Leggings +1"", 1], null, null]"
|
||||
Amateur,96,[],Scorpion Gauntlets,Earth,,"[[""High-Quality Scorpion Shell"", 2], [""Leather Gloves"", 2]]","[[""Scorpion Gauntlets +1"", 1], null, null]"
|
||||
Amateur,96,[],Hydra Cuisses,Earth,,"[[""Hydra Scale"", 1], [""Leather Trousers"", 1], [""Rainbow Thread"", 1], [""Titanictus Shell"", 1]]","[[""Hydra Cuisses +1"", 1], null, null]"
|
||||
Amateur,96,[],Trumpet Ring,Wind,,"[[""Trumpet Shell"", 2]]","[[""Nereid Ring"", 1], null, null]"
|
||||
Amateur,97,[],Cursed Cap,Earth,,"[[""Angel Skin"", 1], [""Darksteel Cap"", 1]]","[[""Cursed Cap -1"", 1], null, null]"
|
||||
Amateur,97,[],Gavial Finger Gauntlets,Earth,,"[[""Titanictus Shell"", 1], [""High-Quality Pugil Scales"", 1], [""Rainbow Thread"", 1], [""Leather Gloves"", 1]]","[[""Gavial Finger Gauntlets +1"", 1], null, null]"
|
||||
Amateur,97,"[[""Leathercraft"", 46]]",Igqira Lappa,Earth,,"[[""Coeurl Whisker"", 1], [""Coeurl Leather"", 1], [""Manticore Leather"", 1], [""Uragnite Shell"", 1], [""High-Quality Bugard Skin"", 1], [""Megalobugard Tusk"", 1]]","[[""Genie Lappa"", 1], null, null]"
|
||||
Amateur,97,[],Scorpion Helm,Earth,,"[[""High-Quality Scorpion Shell"", 2], [""Ram Leather"", 1], [""Sheep Leather"", 1], [""Copper Ingot"", 1]]","[[""Scorpion Helm +1"", 1], null, null]"
|
||||
Amateur,97,"[[""Leathercraft"", 55]]",Unicorn Leggings,Earth,,"[[""Gold Thread"", 1], [""Behemoth Leather"", 2], [""Wyvern Scales"", 1], [""Unicorn Horn"", 1]]","[[""Unicorn Leggings +1"", 1], null, null]"
|
||||
Amateur,97,"[[""Leathercraft"", 60]]",Sombra Tiara,Earth,,"[[""Intuila's Hide"", 1], [""Emperor Arthro's Shell"", 1]]","[[""Sombra Tiara +1"", 1], null, null]"
|
||||
Amateur,98,"[[""Leathercraft"", 41]]",Wyvern Helm,Dark,,"[[""Guivre's Skull"", 1], [""Tiger Leather"", 1], [""Sheep Leather"", 1], [""Beeswax"", 1]]","[[""Wyvern Helm +1"", 1], null, null]"
|
||||
Amateur,98,[],Cerberus Ring,Wind,,"[[""Cerberus Claw"", 2]]","[[""Cerberus Ring +1"", 1], null, null]"
|
||||
Amateur,98,[],Dragon Cap,Earth,,"[[""Dragon Bone"", 1], [""Darksteel Cap"", 1]]","[[""Dragon Cap +1"", 1], null, null]"
|
||||
Amateur,98,[],Orochi Nodowa,Earth,,"[[""Hydra Scale"", 1], [""Wamoura Silk"", 1]]","[[""Orochi Nodowa +1"", 1], null, null]"
|
||||
Amateur,98,[],Hydra Finger Gauntlets,Earth,,"[[""Rainbow Thread"", 1], [""Titanictus Shell"", 1], [""Hydra Scale"", 1], [""Leather Gloves"", 1]]","[[""Hydra Finger Gauntlets +1"", 1], null, null]"
|
||||
Amateur,98,[],Sombra Mittens,Earth,,"[[""Damascene Cloth"", 1], [""Buffalo Leather"", 1], [""Raaz Leather"", 1], [""Intuila's Hide"", 1], [""Emperor Arthro's Shell"", 1]]","[[""Sombra Mittens +1"", 1], null, null]"
|
||||
Amateur,99,[],Dragon Ring,Wind,,"[[""Dragon Talon"", 2]]","[[""Dragon Ring +1"", 1], null, null]"
|
||||
Amateur,99,[],Gavial Greaves,Earth,,"[[""Titanictus Shell"", 1], [""High-Quality Pugil Scales"", 1], [""Rainbow Thread"", 1], [""Leather Highboots"", 1]]","[[""Gavial Greaves +1"", 1], null, null]"
|
||||
Amateur,99,"[[""Leathercraft"", 55], [""Alchemy"", 44]]",Igqira Weskit,Earth,,"[[""Coeurl Leather"", 1], [""Lapis Lazuli"", 1], [""Dhalmel Leather"", 1], [""Dragon Talon"", 1], [""Manticore Hair"", 1], [""Avatar Blood"", 1], [""High-Quality Bugard Skin"", 1], [""Bugard Tusk"", 1]]","[[""Genie Weskit"", 1], null, null]"
|
||||
Amateur,99,[],Scorpion Breastplate,Earth,,"[[""High-Quality Scorpion Shell"", 4], [""Ram Leather"", 2], [""Sheep Leather"", 1]]","[[""Scorpion Breastplate +1"", 1], null, null]"
|
||||
Amateur,99,"[[""Leathercraft"", 52], [""Smithing"", 47]]",Unicorn Cap,Earth,,"[[""Darksteel Sheet"", 1], [""Gold Thread"", 1], [""Tiger Leather"", 1], [""Behemoth Leather"", 1], [""Unicorn Horn"", 1]]","[[""Unicorn Cap +1"", 1], null, null]"
|
||||
Amateur,99,"[[""Leathercraft"", 41]]",Wyvern Helm,Dark,,"[[""Wyvern Skull"", 1], [""Tiger Leather"", 1], [""Sheep Leather"", 1], [""Beeswax"", 1]]","[[""Wyvern Helm +1"", 1], null, null]"
|
||||
Amateur,99,"[[""Goldsmithing"", 40], [""Smithing"", 39]]",Khimaira Jambiya,Fire,,"[[""Steel Ingot"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Star Sapphire"", 1], [""Khimaira Horn"", 1]]","[[""Amir Jambiya"", 1], null, null]"
|
||||
Amateur,99,[],Sombra Tights,Earth,,"[[""Rainbow Cloth"", 1], [""Damascene Cloth"", 1], [""Raaz Leather"", 1], [""Intuila's Hide"", 1], [""Emperor Arthro's Shell"", 1]]","[[""Sombra Tights +1"", 1], null, null]"
|
||||
Amateur,100,[],Chronos Tooth,Wind,,"[[""Colossal Skull"", 1]]","[null, null, null]"
|
||||
Amateur,100,"[[""Leathercraft"", 41]]",Cursed Harness,Earth,,"[[""Tiger Leather"", 2], [""Coral Fragment"", 1], [""Oxblood"", 1], [""Angel Skin"", 1]]","[[""Cursed Harness -1"", 1], null, null]"
|
||||
Amateur,100,[],Gavial Mask,Wind,,"[[""Titanictus Shell"", 1], [""High-Quality Pugil Scales"", 1], [""Sheep Leather"", 1]]","[[""Gavial Mask +1"", 1], null, null]"
|
||||
Amateur,100,"[[""Leathercraft"", 58]]",Dragon Harness,Earth,,"[[""Buffalo Leather"", 2], [""Dragon Bone"", 1], [""Wyrm Horn"", 1]]","[[""Dragon Harness +1"", 1], null, null]"
|
||||
Amateur,100,[],Hydra Greaves,Earth,,"[[""Rainbow Thread"", 1], [""Titanictus Shell"", 1], [""Hydra Scale"", 1], [""Leather Highboots"", 1]]","[[""Hydra Greaves +1"", 1], null, null]"
|
||||
Amateur,100,"[[""Smithing"", 60]]",Handgonne,Earth,,"[[""Darksteel Ingot"", 1], [""Thokcha Ingot"", 1], [""Wyrm Horn"", 1]]","[[""Handgonne +1"", 1], null, null]"
|
||||
Amateur,100,[],Hajduk Ring,Wind,,"[[""Khimaira Horn"", 2]]","[[""Hajduk Ring +1"", 1], null, null]"
|
||||
Amateur,100,[],Dux Greaves,Earth,,"[[""Gold Thread"", 1], [""Dragon Scales"", 1], [""Turtle Shell"", 1], [""Squamous Hide"", 1], [""Leather Highboots"", 1]]","[[""Dux Greaves +1"", 1], null, null]"
|
||||
Amateur,100,[],Sombra Leggings,Earth,,"[[""Damascene Cloth"", 1], [""Behemoth Hide"", 1], [""Raaz Leather"", 2], [""Intuila's Hide"", 1], [""Emperor Arthro's Shell"", 1], [""Expert (101-110)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Sombra Leggings +1"", 1], null, null]"
|
||||
Amateur,101,[],Hydra Mask,Wind,,"[[""Titanictus Shell"", 1], [""Hydra Scale"", 1], [""Karakul Leather"", 1]]","[[""Hydra Mask +1"", 1], null, null]"
|
||||
Amateur,101,"[[""Woodworking"", 49], [""Smithing"", 37]]",Hades Sainti,Wind,,"[[""Iron Ingot"", 2], [""Bloodwood Lumber"", 1], [""Cerberus Claw"", 2]]","[[""Hades Sainti +1"", 1], null, null]"
|
||||
Amateur,102,"[[""Alchemy"", 50]]",Blenmot's Ring,Wind,,"[[""Oxblood"", 1], [""Vivified Coral"", 1], [""Holy Water"", 2], [""Hallowed Water"", 1]]","[[""Blenmot's Ring +1"", 1], null, null]"
|
||||
Amateur,102,[],Sombra Harness,Earth,,"[[""Rainbow Cloth"", 1], [""Damascene Cloth"", 1], [""Raaz Leather"", 1], [""Intuila's Hide"", 2], [""Emperor Arthro's Shell"", 2]]","[[""Sombra Harness +1"", 1], null, null]"
|
||||
Amateur,103,"[[""Leathercraft"", 60]]",Unicorn Harness,Earth,,"[[""Gold Thread"", 1], [""Tiger Leather"", 1], [""Behemoth Leather"", 1], [""Unicorn Horn"", 2]]","[[""Unicorn Harness +1"", 1], null, null]"
|
||||
Amateur,103,[],Gavial Mail,Earth,,"[[""Titanictus Shell"", 2], [""High-Quality Pugil Scales"", 2], [""Rainbow Thread"", 1], [""Sheep Leather"", 1], [""Leather Vest"", 1]]","[[""Gavial Mail +1"", 1], null, null]"
|
||||
Amateur,103,[],Dux Cuisses,Earth,,"[[""Gold Thread"", 1], [""Sheep Leather"", 1], [""Dragon Scales"", 1], [""Turtle Shell"", 1], [""Hahava's Mail"", 1], [""Squamous Hide"", 1]]","[[""Dux Cuisses +1"", 1], null, null]"
|
||||
Amateur,104,[],Hydra Mail,Earth,,"[[""Titanictus Shell"", 2], [""Hydra Scale"", 2], [""Karakul Leather"", 1], [""Leather Vest"", 1], [""Rainbow Thread"", 1]]","[[""Hydra Mail +1"", 1], null, null]"
|
||||
Amateur,104,[],Dark Ixion Ferrule,Wind,,"[[""Dark Ixion Horn"", 1]]","[[""Dark Ixion Ferrule"", 2], [""Dark Ixion Ferrule x3 Verification Needed"", 1], [""Dark Ixion Ferrule x4 Verification Needed"", 1]]"
|
||||
Amateur,104,[],Dux Visor,Wind,,"[[""Dragon Scales"", 1], [""Turtle Shell"", 1], [""Hahava's Mail"", 1], [""Squamous Hide"", 1]]","[[""Dux Visor +1"", 1], null, null]"
|
||||
Amateur,104,[],Revealer's Crown,Earth,,"[[""Linen Thread"", 1], [""Lizard Molt"", 1], [""Ironhorn Baldurno's Horn"", 1], [""Abyssdiver's Feather"", 1]]","[[""Revealer's Crown +1"", 1], null, null]"
|
||||
Amateur,105,[],Winged Balance,Wind,,"[[""Orichalcum Chain"", 1], [""Pearl"", 1], [""Nidhogg Scales"", 1], [""Southern Pearl"", 1], [""Angel Skin"", 1], [""Marid Tusk"", 1], [""Wivre Horn"", 1], [""Trumpet Shell"", 1]]","[null, null, null]"
|
||||
Amateur,105,[],Dux Finger Gauntlets,Earth,,"[[""Gold Thread"", 1], [""Dragon Scales"", 1], [""Turtle Shell"", 1], [""Squamous Hide"", 1], [""Leather Gloves"", 1]]","[[""Dux Finger Gauntlets +1"", 1], null, null]"
|
||||
Amateur,105,[],Blutkrallen,Earth,,"[[""Iron Ingot"", 1], [""Bloodwood Lumber"", 1], [""Linen Thread"", 1], [""Scintillant Ingot"", 1], [""Meeble Claw"", 3]]","[[""Blutklauen"", 1], null, null]"
|
||||
Amateur,105,[],Maliyakaleya Orb,Wind,,"[[""Silver Chain"", 1], [""Maliyakaleya Coral"", 1]]","[[""Maliyakaleya Orb"", 8], [""Maliyakaleya Orb"", 10], [""Maliyakaleya Orb"", 12]]"
|
||||
Amateur,105,[],Cyan Orb,Wind,,"[[""Silver Chain"", 1], [""Cyan Coral"", 1]]","[[""Cyan Orb"", 8], [""Cyan Orb"", 10], [""Cyan Orb"", 12]]"
|
||||
Amateur,106,"[[""Leathercraft"", 56], [""Goldsmithing"", 30]]",Hexed Gamashes,Earth,,"[[""Malboro Fiber"", 1], [""Marid Leather"", 1], [""Befouled Silver"", 1], [""Staghorn Coral"", 2]]","[[""Hexed Gamashes -1"", 1], null, null]"
|
||||
Amateur,106,"[[""Leathercraft"", 56], [""Goldsmithing"", 30]]",Hexed Wristbands,Earth,,"[[""Velvet Cloth"", 1], [""Marid Leather"", 1], [""Befouled Silver"", 1], [""Staghorn Coral"", 1], [""Sealord Leather"", 1]]","[[""Hexed Wristbands -1"", 1], null, null]"
|
||||
Amateur,106,[],Yacuruna Ring,Wind,,"[[""Yggdreant Root"", 1], [""Maliyakaleya Coral"", 2]]","[[""Yacuruna Ring +1"", 1], null, null]"
|
||||
Amateur,106,[],Maliya Sickle,Wind,,"[[""Urunday Lumber"", 1], [""Raaz Leather"", 1], [""Maliyakaleya Coral"", 1], [""Ra'Kaznar Ingot"", 1]]","[[""Maliya Sickle +1"", 1], null, null]"
|
||||
Amateur,107,[],Dux Scale Mail,Earth,,"[[""Gold Thread"", 1], [""Dragon Scales"", 1], [""Turtle Shell"", 3], [""Hahava's Mail"", 1], [""Squamous Hide"", 1], [""Leather Vest"", 1]]","[[""Dux Scale Mail +1"", 1], null, null]"
|
||||
Amateur,108,[],Oxossi Facon,Wind,,"[[""Manta Leather"", 1], [""Cassia Lumber"", 1], [""Simian Horn"", 1]]","[[""Oxossi Facon +1"", 1], null, null]"
|
||||
Amateur,109,[],Brioso Whistle,Earth,,"[[""Cyan Coral"", 1], [""Cyan Orb"", 2]]","[null, null, null]"
|
||||
Amateur,109,[],Brioso Whistle,Earth,,"[[""Cyan Coral"", 1], [""Cyan Orb"", 2]]","[null, null, null]"
|
||||
Amateur,109,[],Brioso Whistle,Earth,,"[[""Cyan Coral"", 1], [""Cyan Orb"", 2]]","[null, null, null]"
|
||||
Amateur,110,"[[""Leathercraft"", 60], [""Clothcraft"", 30]]",Hexed Jacket,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 2], [""Malboro Fiber"", 1], [""Befouled Silver"", 1], [""Penelope's Cloth"", 1], [""Staghorn Coral"", 1], [""Sealord Leather"", 1]]","[[""Hexed Jacket -1"", 1], null, null]"
|
||||
Amateur,110,"[[""Leathercraft"", 55]]",Assassin's Gorget,Light,,"[[""Cehuetzi Pelt"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Gorget"", 1]]","[[""Assassin's Gorget +1"", 1], [""Assassin's Gorget +2"", 1], null]"
|
||||
Amateur,110,"[[""Leathercraft"", 55]]",Etoile Gorget,Light,,"[[""Cehuetzi Pelt"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Gorget"", 1]]","[[""Etoile Gorget +1"", 1], [""Etoile Gorget +2"", 1], null]"
|
||||
Amateur,110,"[[""Leathercraft"", 55]]",Scout's Gorget,Light,,"[[""Cehuetzi Pelt"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Gorget"", 1], [""Authority (111-120)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Scout's Gorget +1"", 1], [""Scout's Gorget +2"", 1], null]"
|
||||
Amateur,111,[],Ej Necklace,Earth,,"[[""Oxblood"", 1], [""Siren's Macrame"", 1], [""Wivre Maul"", 1], [""Carrier Crab Carapace"", 1], [""Rockfin Tooth"", 2]]","[[""Ej Necklace +1"", 1], null, null]"
|
||||
Amateur,111,[],Tati Earring,Wind,,"[[""Silver Chain"", 1], [""Gabbrath Horn"", 2]]","[[""Tati Earring +1"", 1], null, null]"
|
||||
Amateur,111,"[[""Leathercraft"", 70]]",Bewitched Leggings,Earth,,"[[""Cursed Leggings"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Immanibugard's Hide"", 1]]","[[""Voodoo Leggings"", 1], null, null]"
|
||||
Amateur,111,"[[""Alchemy"", 70]]",Vexed Gamashes,Earth,,"[[""Hexed Gamashes"", 1], [""Eschite Ore"", 1], [""Macuil Horn"", 1], [""Sybaritic Samantha's Vine"", 1]]","[[""Jinxed Gamashes"", 1], null, null]"
|
||||
Amateur,111,[],Monster Axe,Light,Boneworker's aurum tome,"[[""Macuil Plating"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Axe"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Ankusa Axe"", 1], [""Pangu"", 1], null]"
|
||||
Amateur,111,[],Abyss Scythe,Light,Boneworker's aurum tome,"[[""Tartarian Chain"", 1], [""Dark Matter"", 1], [""Cypress Log"", 1], [""Moldy Scythe"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Fallen's Scythe"", 1], [""Father Time"", 1], null]"
|
||||
Amateur,112,[],Bhakazi Sainti,Wind,,"[[""Guatambu Lumber"", 1], [""Titanium Ingot"", 1], [""Bismuth Ingot"", 1], [""Cehuetzi Claw"", 2]]","[[""Bhakazi Sainti +1"", 1], null, null]"
|
||||
Amateur,112,"[[""Leathercraft"", 70]]",Bewitched Gloves,Earth,,"[[""Cursed Gloves"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Immanibugard's Hide"", 1]]","[[""Voodoo Gloves"", 1], null, null]"
|
||||
Amateur,112,"[[""Leathercraft"", 70]]",Vexed Wristbands,Earth,,"[[""Hexed Wristbands"", 1], [""Eschite Ore"", 1], [""Macuil Horn"", 1], [""Warblade Beak's Hide"", 1]]","[[""Jinxed Wristbands"", 1], null, null]"
|
||||
Amateur,113,[],Nanti Knife,Wind,,"[[""Waktza Rostrum"", 1], [""Guatambu Lumber"", 1]]","[[""Nanti Knife +1"", 1], null, null]"
|
||||
Amateur,113,[],Budliqa,Wind,,"[[""Waktza Rostrum"", 1], [""Guatambu Lumber"", 1], [""Bismuth Ingot"", 1]]","[[""Budliqa +1"", 1], null, null]"
|
||||
Amateur,113,[],Killedar Shield,Earth,,"[[""Adamantoise Shell"", 1], [""Eltoro Leather"", 1], [""Gabbrath Horn"", 1]]","[[""Killedar Shield +1"", 1], null, null]"
|
||||
Amateur,113,[],Lacryma Sickle,Wind,,"[[""Woodworking - (??)"", 1], [""Ormolu Ingot"", 1], [""Ram Leather"", 1], [""Urunday Lumber"", 1], [""Rockfin Tooth"", 1]]","[[""Lacryma Sickle +1"", 1], null, null]"
|
||||
Amateur,113,[],Donderbuss,Fire,,"[[""Ormolu Ingot"", 1], [""Damascus Ingot"", 1], [""Rockfin Tooth"", 1]]","[[""Donderbuss +1"", 1], null, null]"
|
||||
Amateur,113,"[[""Leathercraft"", 70]]",Bewitched Subligar,Earth,,"[[""Cursed Subligar"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Immanibugard's Hide"", 1]]","[[""Voodoo Subligar"", 1], null, null]"
|
||||
Amateur,114,"[[""Smithing"", 70]]",Bewitched Cap,Earth,,"[[""Cursed Cap"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Largantua's Shard"", 1]]","[[""Voodoo Cap"", 1], null, null]"
|
||||
Amateur,115,"[[""Leathercraft"", 70]]",Bewitched Harness,Earth,,"[[""Cursed Harness"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Immanibugard's Hide"", 1]]","[[""Voodoo Harness"", 1], null, null]"
|
||||
Amateur,115,"[[""Leathercraft"", 70]]",Vexed Jacket,Earth,,"[[""Hexed Jacket"", 1], [""Eschite Ore"", 1], [""Warblade Beak's Hide"", 1], [""Macuil Horn"", 1]]","[[""Jinxed Jacket"", 1], null, null]"
|
||||
Amateur,115,[],Aurgelmir Orb,Wind,,"[[""Black Ink"", 1], [""Beastman Blood"", 1], [""Cyan Coral"", 3], [""Wyrm Ash"", 1]]","[[""Aurgelmir Orb +1"", 1], null, null]"
|
||||
Amateur,115,[],Raetic Scythe,Fire,Boneworker's argentum tome,"[[""Cyan Coral"", 2], [""Cyan Orb"", 3], [""Rune Scythe"", 1]]","[[""Raetic Scythe +1"", 1], null, null]"
|
||||
Amateur,115,[],Raetic Bangles,Fire,Boneworker's argentum tome,"[[""Cyan Coral"", 2], [""Cyan Orb"", 3], [""Rune Bangles"", 1]]","[[""Raetic Bangles +1"", 1], null, null]"
|
||||
Amateur,116,[],Moonbeam Ring,Wind,,"[[""Moonbow Stone"", 1], [""Moonlight Coral"", 1], [""Cyan Coral"", 1]]","[[""Moonlight Ring"", 1], null, null]"
|
||||
Amateur,116,[],Mousai Gages,Earth,Boneworker's argentum tome,"[[""Cashmere Thread"", 2], [""Cyan Orb"", 2], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 1], [""Hades' Claw"", 1]]","[[""Mousai Gages +1"", 1], null, null]"
|
||||
Amateur,116,[],Mousai Crackows,Earth,Boneworker's argentum tome,"[[""Cashmere Thread"", 1], [""Cyan Orb"", 2], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 1], [""Hades' Claw"", 1]]","[[""Mousai Crackows +1"", 1], null, null]"
|
||||
Amateur,116,[],Mousai Turban,Earth,Boneworker's argentum tome,"[[""Cashmere Cloth"", 1], [""Cyan Orb"", 2], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 1], [""Hades' Claw"", 1]]","[[""Mousai Turban +1"", 1], null, null]"
|
||||
Amateur,116,[],Mousai Seraweels,Earth,Boneworker's argentum tome,"[[""Cashmere Cloth"", 1], [""Cyan Orb"", 3], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 1], [""Hades' Claw"", 1]]","[[""Mousai Seraweels +1"", 1], null, null]"
|
||||
Amateur,116,[],Mousai Manteel,Earth,Boneworker's argentum tome,"[[""Cashmere Cloth"", 1], [""Cyan Orb"", 3], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 2], [""Hades' Claw"", 1]]","[[""Mousai Manteel +1"", 1], null, null]"
|
||||
Amateur,117,[],Staunch Tathlum,Earth,,"[[""Macuil Horn"", 1], [""Plovid Flesh"", 1], [""Defiant Scarf"", 1], [""Hades' Claw"", 1]]","[[""Staunch Tathlum +1"", 1], null, null]"
|
||||
Amateur,117,[],Moonbow Whistle,Earth,,"[[""Brioso Whistle"", 1], [""Moonbow Urushi"", 1], [""Moonbow Stone"", 1]]","[[""Moonbow Whistle +1"", 1], null, null]"
|
||||
,1,[],Shell Powder,Wind,,"[[""Seashell"", 3]]","[[""Shell Powder"", 2], [""Shell Powder"", 3], [""Shell Powder"", 4]]"
|
||||
,1,[],Wailing Bone Chip,Wind,Bone Ensorcellment,"[[""Bone Chip"", 1], [""Ice Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
,3,[],Shell Earring,Wind,,"[[""Seashell"", 2]]","[[""Shell Earring +1"", 1], null, null]"
|
||||
,4,[],Bone Hairpin,Wind,,"[[""Bone Chip"", 1]]","[[""Bone Hairpin +1"", 1], null, null]"
|
||||
,5,[],Shell Powder,Wind,,"[[""Vongola Clam"", 2]]","[[""Shell Powder"", 2], [""Shell Powder"", 3], [""Shell Powder"", 4]]"
|
||||
,5,[],Shell Powder,Wind,,"[[""Bonecraft Kit 5"", 1]]","[null, null, null]"
|
||||
,7,[],Eldritch Bone Hairpin,Wind,,"[[""Wailing Bone Chip"", 1], [""Bone Hairpin"", 1]]","[null, null, null]"
|
||||
,7,[],Shell Ring,Wind,,"[[""Fish Scales"", 1], [""Seashell"", 1]]","[[""Shell Ring +1"", 1], null, null]"
|
||||
,8,[],Wailing Shell,Wind,Bone Ensorcellment,"[[""Seashell"", 1], [""Ice Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
,9,"[[""Smithing"", 3]]",Cat Baghnakhs,Earth,,"[[""Bronze Sheet"", 1], [""Rabbit Hide"", 1], [""Bone Chip"", 3]]","[[""Cat Baghnakhs +1"", 1], null, null]"
|
||||
,10,[],Bone Arrowheads,Wind,,"[[""Bone Chip"", 2]]","[[""Bone Arrowheads"", 8], [""Bone Arrowheads"", 10], [""Bone Arrowheads"", 12]]"
|
||||
,10,[],Bone Arrowheads,Wind,Filing,"[[""Bone Chip"", 6], [""Shagreen File"", 1]]","[[""Bone Arrowheads"", 24], [""Bone Arrowheads"", 30], [""Bone Arrowheads"", 36]]"
|
||||
,10,[],Manashell Ring,Wind,,"[[""Wailing Shell"", 1], [""Shell Ring"", 1]]","[null, null, null]"
|
||||
,10,"[[""Woodworking"", 2]]",Bone Arrow,Wind,,"[[""Arrowwood Lumber"", 1], [""Yagudo Feather"", 2], [""Bone Chip"", 3]]","[[""Bone Arrow"", 66], [""Bone Arrow"", 99], [""Bone Arrow"", 99]]"
|
||||
,10,[],Bone Arrowheads,Wind,,"[[""Bonecraft Kit 10"", 1]]","[null, null, null]"
|
||||
,12,"[[""Goldsmithing"", 3]]",Bone Earring,Wind,,"[[""Bone Chip"", 2], [""Brass Ingot"", 1]]","[[""Bone Earring +1"", 1], null, null]"
|
||||
,13,[],Gelatin,Fire,,"[[""Chicken Bone"", 2], [""Distilled Water"", 1]]","[[""Gelatin"", 2], [""Gelatin"", 3], [""Gelatin"", 4]]"
|
||||
,14,"[[""Goldsmithing"", 14]]",Cornette,Wind,,"[[""Brass Ingot"", 1], [""Bone Chip"", 1]]","[[""Cornette +1"", 1], [""Cornette +1"", 1], [""Cornette +2"", 1]]"
|
||||
,14,[],Windurstian Baghnakhs,Earth,,"[[""Freesword's Baghnakhs"", 1], [""Bone Chip"", 1]]","[[""Federation Baghnakh"", 1], null, null]"
|
||||
,15,[],Fang Necklace,Earth,,"[[""Bat Fang"", 4], [""Black Tiger Fang"", 1], [""Bone Chip"", 2], [""Grass Thread"", 1]]","[[""Spike Necklace"", 1], null, null]"
|
||||
,15,[],Fang Necklace,Earth,,"[[""Bonecraft Kit 15"", 1]]","[null, null, null]"
|
||||
,16,[],Fish Scales,Lightning,,"[[""Gavial Fish"", 1]]","[[""High-Quality Pugil Scales"", 1], [""High-Quality Pugil Scales"", 2], [""High-Quality Pugil Scales"", 3]]"
|
||||
,16,[],Vivio Femur,Wind,Bone Purification,"[[""Giant Femur"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
|
||||
,16,[],Gelatin,Fire,,"[[""Bone Chip"", 4], [""Distilled Water"", 1]]","[[""Gelatin"", 2], [""Gelatin"", 3], [""Gelatin"", 4]]"
|
||||
,17,[],Bone Ring,Wind,,"[[""Sheep Tooth"", 1], [""Bone Chip"", 1]]","[[""Bone Ring +1"", 1], null, null]"
|
||||
,18,[],Bone Mask,Earth,,"[[""Giant Femur"", 1], [""Bone Chip"", 1], [""Sheep Leather"", 1]]","[[""Bone Mask +1"", 1], null, null]"
|
||||
,19,[],Pearl,Wind,,"[[""Shall Shell"", 1]]","[[""Black Pearl"", 1], [""Black Pearl"", 1], [""Black Pearl"", 1]]"
|
||||
,19,[],Pearl,Wind,,"[[""Istiridye"", 1]]","[[""Black Pearl"", 1], [""Black Pearl"", 1], [""Black Pearl"", 1]]"
|
||||
,20,[],Bone Axe,Wind,,"[[""Giant Femur"", 1], [""Ram Horn"", 2]]","[[""Bone Axe +1"", 1], null, null]"
|
||||
,20,"[[""Leathercraft"", 5]]",Bone Mittens,Earth,,"[[""Bone Chip"", 2], [""Sheep Leather"", 2]]","[[""Bone Mittens +1"", 1], null, null]"
|
||||
,20,[],Bone Axe,Wind,,"[[""Bonecraft Kit 20"", 1]]","[null, null, null]"
|
||||
,21,[],Carapace Powder,Wind,,"[[""Beetle Shell"", 2]]","[null, null, null]"
|
||||
,22,"[[""Leathercraft"", 5]]",Bone Leggings,Earth,,"[[""Giant Femur"", 1], [""Bone Chip"", 1], [""Sheep Leather"", 2]]","[[""Bone Leggings +1"", 1], null, null]"
|
||||
,23,"[[""Woodworking"", 6]]",Bone Pick,Wind,,"[[""Ash Lumber"", 1], [""Giant Femur"", 1]]","[[""Bone Pick +1"", 1], null, null]"
|
||||
,24,"[[""Leathercraft"", 6]]",Bone Subligar,Earth,,"[[""Bone Chip"", 1], [""Grass Cloth"", 1], [""Sheep Leather"", 2]]","[[""Bone Subligar +1"", 1], null, null]"
|
||||
,24,[],Gemshorn,Wind,,"[[""Giant Femur"", 1], [""Beetle Jaw"", 1]]","[[""Gemshorn +1"", 1], null, null]"
|
||||
,24,[],Jolt Axe,Wind,Bone Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Bone Axe"", 1]]","[null, null, null]"
|
||||
,25,[],Beetle Ring,Wind,,"[[""Beetle Jaw"", 1]]","[[""Beetle Ring +1"", 1], null, null]"
|
||||
,25,[],Smooth Beetle Jaw,Wind,Bone Purification,"[[""Beetle Jaw"", 1], [""Wind Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
|
||||
,25,[],Beetle Ring,Wind,,"[[""Bonecraft Kit 25"", 1]]","[null, null, null]"
|
||||
,26,"[[""Leathercraft"", 7]]",Bone Harness,Earth,,"[[""Pugil Scales"", 1], [""Sheep Leather"", 2], [""Giant Femur"", 1], [""Bone Chip"", 1]]","[[""Bone Harness +1"", 1], null, null]"
|
||||
,26,"[[""Leathercraft"", 11]]",Mettle Leggings,Earth,,"[[""Samwell's Shank"", 1], [""Sheep Leather"", 2], [""Bone Chip"", 1]]","[[""Mettle Leggings +1"", 1], null, null]"
|
||||
,27,[],Beetle Earring,Earth,,"[[""Beetle Jaw"", 1], [""Silver Earring"", 1]]","[[""Beetle Earring +1"", 1], null, null]"
|
||||
,27,[],Wailing Ram Horn,Wind,Bone Ensorcellment,"[[""Ram Horn"", 1], [""Ice Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
,28,[],Gelatin,Fire,,"[[""Giant Femur"", 1], [""Distilled Water"", 1]]","[[""Gelatin"", 6], [""Gelatin"", 8], [""Gelatin"", 10]]"
|
||||
,29,[],Horn Hairpin,Wind,,"[[""Ram Horn"", 1]]","[[""Horn Hairpin +1"", 1], null, null]"
|
||||
,29,[],San d'Orian Horn,Wind,,"[[""Royal Spearman's Horn"", 1], [""Giant Femur"", 1]]","[[""Kingdom Horn"", 1], null, null]"
|
||||
,29,"[[""Leathercraft"", 20]]",Seer's Crown,Earth,,"[[""Linen Thread"", 1], [""Lizard Molt"", 1], [""Bone Chip"", 1], [""Coeurl Whisker"", 1]]","[[""Seer's Crown +1"", 1], null, null]"
|
||||
,29,[],Healing Harness,Earth,,"[[""Vivio Femur"", 1], [""Bone Harness"", 1]]","[null, null, null]"
|
||||
,30,[],Beetle Mask,Earth,,"[[""Lizard Skin"", 1], [""Beetle Jaw"", 1]]","[[""Beetle Mask +1"", 1], null, null]"
|
||||
,30,"[[""Leathercraft"", 8]]",Beetle Mittens,Earth,,"[[""Lizard Skin"", 2], [""Beetle Shell"", 1]]","[[""Beetle Mittens +1"", 1], null, null]"
|
||||
,30,[],Beetle Mask,Earth,,"[[""Bonecraft Kit 30"", 1]]","[null, null, null]"
|
||||
,31,[],Beetle Gorget,Earth,,"[[""Beetle Jaw"", 2], [""Beetle Shell"", 1]]","[[""Green Gorget"", 1], null, null]"
|
||||
,32,"[[""Leathercraft"", 8]]",Beetle Leggings,Earth,,"[[""Lizard Skin"", 2], [""Beetle Jaw"", 1], [""Beetle Shell"", 1]]","[[""Beetle Leggings +1"", 1], null, null]"
|
||||
,32,[],Eldritch Horn Hairpin,Wind,,"[[""Wailing Ram Horn"", 1], [""Horn Hairpin"", 1]]","[null, null, null]"
|
||||
,33,[],Beetle Arrowheads,Wind,,"[[""Beetle Jaw"", 1], [""Bone Chip"", 1]]","[[""Beetle Arrowheads"", 8], [""Beetle Arrowheads"", 10], [""Beetle Arrowheads"", 12]]"
|
||||
,33,[],Beetle Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Beetle Jaw"", 3], [""Shagreen File"", 1]]","[[""Beetle Arrowheads"", 24], [""Beetle Arrowheads"", 30], [""Beetle Arrowheads"", 36]]"
|
||||
,34,"[[""Leathercraft"", 9]]",Beetle Subligar,Earth,,"[[""Cotton Cloth"", 1], [""Lizard Skin"", 1], [""Beetle Jaw"", 1]]","[[""Beetle Subligar +1"", 1], null, null]"
|
||||
,35,[],Turtle Shield,Earth,,"[[""Turtle Shell"", 1], [""Beetle Shell"", 1]]","[[""Turtle Shield +1"", 1], null, null]"
|
||||
,35,[],Turtle Shield,Earth,,"[[""Bonecraft Kit 35"", 1]]","[null, null, null]"
|
||||
,36,"[[""Leathercraft"", 9]]",Beetle Harness,Earth,,"[[""Lizard Skin"", 3], [""Beetle Shell"", 2]]","[[""Beetle Harness +1"", 1], null, null]"
|
||||
,37,[],Horn Ring,Wind,,"[[""Fish Scales"", 1], [""Ram Horn"", 1]]","[[""Horn Ring +1"", 1], null, null]"
|
||||
,37,"[[""Leathercraft"", 24]]",Shade Tiara,Earth,,"[[""Uragnite Shell"", 1], [""Eft Skin"", 1], [""Photoanima"", 1]]","[[""Shade Tiara +1"", 1], null, null]"
|
||||
,38,[],Fang Arrowheads,Wind,,"[[""Black Tiger Fang"", 1], [""Bone Chip"", 1]]","[[""Fang Arrowheads"", 8], [""Fang Arrowheads"", 10], [""Fang Arrowheads"", 12]]"
|
||||
,38,[],Fang Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Black Tiger Fang"", 3], [""Shagreen File"", 1]]","[[""Fang Arrowheads"", 24], [""Fang Arrowheads"", 30], [""Fang Arrowheads"", 36]]"
|
||||
,38,"[[""Clothcraft"", 21], [""Leathercraft"", 24]]",Shade Mittens,Earth,,"[[""Luminicloth"", 1], [""Sheep Leather"", 1], [""Tiger Leather"", 1], [""Uragnite Shell"", 1], [""Eft Skin"", 1], [""Photoanima"", 1]]","[[""Shade Mittens +1"", 1], null, null]"
|
||||
,39,"[[""Clothcraft"", 23], [""Leathercraft"", 24]]",Shade Tights,Earth,,"[[""Luminicloth"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""Uragnite Shell"", 1], [""Eft Skin"", 1], [""Photoanima"", 1]]","[[""Shade Tights +1"", 1], null, null]"
|
||||
,40,[],Titanictus Shell,Lightning,,"[[""Titanictus"", 1]]","[[""Titanictus Shell"", 2], [""Titanictus Shell"", 3], [""Titanictus Shell"", 4]]"
|
||||
,40,"[[""Clothcraft"", 22], [""Leathercraft"", 24]]",Shade Leggings,Earth,,"[[""Luminicloth"", 1], [""Lizard Skin"", 1], [""Tiger Leather"", 2], [""Uragnite Shell"", 1], [""Eft Skin"", 1], [""Photoanima"", 1]]","[[""Shade Leggings +1"", 1], null, null]"
|
||||
,40,[],Titanictus Shell,Lightning,,"[[""Armored Pisces"", 1]]","[null, null, null]"
|
||||
,40,[],Bone Cudgel,Wind,,"[[""Bone Chip"", 6], [""Grass Cloth"", 1], [""Giant Femur"", 1]]","[[""Bone Cudgel +1"", 1], null, null]"
|
||||
,40,[],Bone Cudgel,Wind,,"[[""Bonecraft Kit 40"", 1]]","[null, null, null]"
|
||||
,41,[],Bone Knife,Wind,,"[[""Walnut Lumber"", 1], [""Giant Femur"", 1]]","[[""Bone Knife +1"", 1], null, null]"
|
||||
,41,"[[""Leathercraft"", 13]]",Garish Crown,Earth,,"[[""Lizard Molt"", 1], [""Beetle Jaw"", 1], [""Coeurl Whisker"", 1], [""Bloodthread"", 1]]","[[""Rubious Crown"", 1], null, null]"
|
||||
,41,[],Luminous Shell,Wind,Bone Ensorcellment,"[[""Crab Shell"", 1], [""Lightning Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
,41,[],Vivio Crab Shell,Wind,Bone Purification,"[[""Crab Shell"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
|
||||
,42,"[[""Goldsmithing"", 11]]",Carapace Ring,Wind,,"[[""Mythril Ingot"", 1], [""Crab Shell"", 1]]","[[""Carapace Ring +1"", 1], null, null]"
|
||||
,42,"[[""Clothcraft"", 24], [""Leathercraft"", 25]]",Shade Harness,Earth,,"[[""Luminicloth"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""Uragnite Shell"", 2], [""Eft Skin"", 2], [""Photoanima"", 1]]","[[""Shade Harness +1"", 1], null, null]"
|
||||
,43,[],Horn Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Ram Horn"", 1]]","[[""Horn Arrowheads"", 8], [""Horn Arrowheads"", 10], [""Horn Arrowheads"", 12]]"
|
||||
,43,[],Horn Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Ram Horn"", 3], [""Shagreen File"", 1]]","[[""Horn Arrowheads"", 24], [""Horn Arrowheads"", 30], [""Horn Arrowheads"", 36]]"
|
||||
,43,"[[""Alchemy"", 31]]",Skeleton Key,Earth,,"[[""Carbon Fiber"", 1], [""Chicken Bone"", 1], [""Glass Fiber"", 1], [""Bat Fang"", 2], [""Animal Glue"", 1], [""Hecteyes Eye"", 1], [""Sheep Tooth"", 1]]","[[""Skeleton Key"", 4], [""Skeleton Key"", 6], [""Skeleton Key"", 8]]"
|
||||
,44,"[[""Leathercraft"", 11]]",Carapace Mittens,Earth,,"[[""Dhalmel Leather"", 1], [""Fish Scales"", 1], [""Crab Shell"", 1]]","[[""Carapace Mittens +1"", 1], null, null]"
|
||||
,44,[],Mist Crown,Earth,,"[[""Smooth Beetle Jaw"", 1], [""Garish Crown"", 1]]","[null, null, null]"
|
||||
,44,[],Deathbone Knife,Wind,Bone Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Bone Knife"", 1]]","[null, null, null]"
|
||||
,45,[],Carapace Mask,Earth,,"[[""Crab Shell"", 1], [""Dhalmel Leather"", 1]]","[[""Carapace Mask +1"", 1], null, null]"
|
||||
,45,"[[""Woodworking"", 6]]",Serpette,Wind,,"[[""Ash Lumber"", 1], [""Grass Cloth"", 1], [""Giant Femur"", 2], [""Bukktooth"", 1]]","[[""Serpette +1"", 1], null, null]"
|
||||
,45,[],Carapace Mask,Earth,,"[[""Bonecraft Kit 45"", 1]]","[null, null, null]"
|
||||
,46,"[[""Leathercraft"", 12]]",Carapace Leggings,Earth,,"[[""Crab Shell"", 1], [""Fish Scales"", 1], [""Dhalmel Leather"", 2]]","[[""Carapace Leggings +1"", 1], null, null]"
|
||||
,47,[],Horn,Wind,,"[[""Beetle Jaw"", 1], [""Ram Horn"", 1]]","[[""Horn +1"", 1], null, null]"
|
||||
,47,"[[""Smithing"", 45], [""Woodworking"", 33]]",Mandibular Sickle,Wind,,"[[""Darksteel Ingot"", 1], [""Ebony Lumber"", 1], [""Ram Leather"", 1], [""Antlion Jaw"", 1]]","[[""Antlion Sickle"", 1], null, null]"
|
||||
,47,[],Thunder Mittens,Earth,,"[[""Luminous Shell"", 1], [""Carapace Mittens"", 1]]","[null, null, null]"
|
||||
,48,"[[""Leathercraft"", 12]]",Carapace Subligar,Earth,,"[[""Linen Cloth"", 1], [""Dhalmel Leather"", 1], [""Crab Shell"", 1]]","[[""Carapace Subligar +1"", 1], null, null]"
|
||||
,49,[],Carapace Gorget,Earth,,"[[""Iron Chain"", 1], [""Crab Shell"", 2]]","[[""Blue Gorget"", 1], null, null]"
|
||||
,49,"[[""Blacksmithing"", 42], [""Goldsmithing"", 28]]",Thug's Jambiya,Fire,,"[[""Brass Ingot"", 1], [""Mythril Ingot"", 1], [""Turquoise"", 1], [""Wivre Horn"", 1]]","[[""Thug's Jambiya +1"", 1], null, null]"
|
||||
,50,[],Bone Rod,Fire,,"[[""Giant Femur"", 1], [""Ram Horn"", 2]]","[[""Bone Rod +1"", 1], null, null]"
|
||||
,50,"[[""Leathercraft"", 13]]",Carapace Harness,Earth,,"[[""Dhalmel Leather"", 2], [""Crab Shell"", 2]]","[[""Carapace Harness +1"", 1], null, null]"
|
||||
,50,[],Vivio Scorpion Claw,Wind,Bone Purification,"[[""Scorpion Claw"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
|
||||
,50,[],Jet Sickle,Wind,Bone Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Mandibular Sickle"", 1]]","[null, null, null]"
|
||||
,50,[],Bone Rod,Fire,,"[[""Bonecraft Kit 50"", 1]]","[null, null, null]"
|
||||
,51,[],Shock Subligar,Earth,,"[[""Luminous Shell"", 1], [""Carapace Subligar"", 1]]","[null, null, null]"
|
||||
,52,"[[""Smithing"", 47]]",Bandit's Gun,Fire,,"[[""Steel Ingot"", 2], [""Giant Femur"", 1]]","[[""Bandit's Gun +1"", 1], null, null]"
|
||||
,52,[],Spirit Shell,Wind,Bone Ensorcellment,"[[""Turtle Shell"", 1], [""Earth Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
,53,[],High Healing Harness,Earth,,"[[""Vivio Crab Shell"", 1], [""Carapace Harness"", 1]]","[null, null, null]"
|
||||
,53,[],Scorpion Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Scorpion Claw"", 1]]","[[""Scorpion Arrowheads"", 8], [""Scorpion Arrowheads"", 10], [""Scorpion Arrowheads"", 12]]"
|
||||
,53,[],Scorpion Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Scorpion Claw"", 3], [""Shagreen File"", 1]]","[[""Scorpion Arrowheads"", 24], [""Scorpion Arrowheads"", 30], [""Scorpion Arrowheads"", 36]]"
|
||||
,53,[],Shell Hairpin,Wind,,"[[""Turtle Shell"", 1]]","[[""Shell Hairpin +1"", 1], null, null]"
|
||||
,54,[],Turtle Bangles,Wind,,"[[""Turtle Shell"", 2], [""Giant Femur"", 1]]","[[""Turtle Bangles +1"", 1], null, null]"
|
||||
,55,[],Tortoise Earring,Wind,,"[[""Gold Chain"", 1], [""Turtle Shell"", 1]]","[[""Tortoise Earring +1"", 1], null, null]"
|
||||
,55,[],Tortoise Earring,Wind,,"[[""Bonecraft Kit 55"", 1]]","[null, null, null]"
|
||||
,56,"[[""Clothcraft"", 26]]",Justaucorps,Earth,,"[[""Wool Robe"", 1], [""Gold Thread"", 1], [""Beetle Shell"", 1], [""Scorpion Claw"", 2]]","[[""Justaucorps +1"", 1], null, null]"
|
||||
,57,[],Blood Stone,Wind,,"[[""Giant Femur"", 1], [""Grass Thread"", 1], [""Fiend Blood"", 1]]","[[""Blood Stone +1"", 1], null, null]"
|
||||
,57,"[[""Woodworking"", 19]]",Bone Scythe,Wind,,"[[""Yew Lumber"", 1], [""Giant Femur"", 2], [""Grass Cloth"", 1], [""Sheep Tooth"", 1]]","[[""Bone Scythe +1"", 1], null, null]"
|
||||
,57,[],Stone Bangles,Earth,,"[[""Spirit Shell"", 1], [""Turtle Bangles"", 1]]","[null, null, null]"
|
||||
,58,"[[""Smithing"", 55]]",Armored Arrowheads,Wind,,"[[""Steel Ingot"", 1], [""Taurus Horn"", 1]]","[[""Armored Arrowheads"", 8], [""Armored Arrowheads"", 10], [""Armored Arrowheads"", 12]]"
|
||||
,58,"[[""Smithing"", 55]]",Armored Arrowheads,Wind,,"[[""Steel Ingot"", 3], [""Taurus Horn"", 3], [""Shagreen File"", 1]]","[[""Armored Arrowheads"", 24], [""Armored Arrowheads"", 30], [""Armored Arrowheads"", 36]]"
|
||||
,58,[],Astragalos,Wind,,"[[""Giant Femur"", 1], [""Black Ink"", 1], [""Beastman Blood"", 1]]","[[""Astragalos"", 12], [""Astragalos"", 16], [""Astragalos"", 20]]"
|
||||
,59,[],Beetle Knife,Wind,,"[[""Oak Lumber"", 1], [""Beetle Jaw"", 1]]","[[""Beetle Knife +1"", 1], null, null]"
|
||||
,59,[],Healing Justaucorps,Earth,,"[[""Vivio Scorpion Claw"", 1], [""Justaucorps"", 1]]","[null, null, null]"
|
||||
,59,[],Macuahuitl,Wind,,"[[""Bugard Tusk"", 1], [""Rhinochimera"", 1], [""Macuahuitl -1"", 1]]","[[""Macuahuitl +1"", 1], null, null]"
|
||||
,60,[],Beak Necklace,Earth,,"[[""High-Quality Crab Shell"", 1], [""Oxblood"", 1], [""Colibri Beak"", 4], [""Mohbwa Thread"", 1], [""Wivre Maul"", 1]]","[[""Beak Necklace +1"", 1], null, null]"
|
||||
,60,[],Scorpion Ring,Wind,,"[[""Scorpion Shell"", 1]]","[[""Scorpion Ring +1"", 1], null, null]"
|
||||
,60,[],Ranging Knife,Wind,,"[[""Walnut Lumber"", 1], [""Stately Crab Shell"", 1]]","[[""Ranging Knife +1"", 1], null, null]"
|
||||
,60,[],Barnacle,Lightning,,"[[""Carrier Crab Carapace"", 1]]","[[""Barnacle"", 2], [""Barnacle"", 3], [""Barnacle"", 4]]"
|
||||
,60,[],Scorpion Ring,Wind,,"[[""Bonecraft Kit 60"", 1]]","[null, null, null]"
|
||||
,61,[],Fang Earring,Wind,,"[[""Silver Chain"", 1], [""Black Tiger Fang"", 2]]","[[""Spike Earring"", 1], null, null]"
|
||||
,61,[],Wind Fan,Earth,,"[[""Beetle Shell"", 1], [""Giant Femur"", 1], [""Beeswax"", 1], [""Bat Wing"", 1], [""Wind Cluster"", 1]]","[[""Wind Fan"", 99], null, null]"
|
||||
,62,"[[""Smithing"", 49]]",Pirate's Gun,Fire,,"[[""Steel Ingot"", 1], [""Darksteel Ingot"", 1], [""Turtle Shell"", 1]]","[[""Pirate's Gun +1"", 1], null, null]"
|
||||
,62,[],Coral Horn,Wind,,"[[""Oxblood"", 1]]","[null, null, null]"
|
||||
,62,"[[""Smithing"", 50], [""Goldsmithing"", 33]]",Darksteel Jambiya,Fire,,"[[""Darksteel Ingot"", 1], [""Silver Ingot"", 1], [""Sunstone"", 1], [""Mercury"", 1], [""Ladybug Wing"", 1]]","[null, null, null]"
|
||||
,62,"[[""Smithing"", 50], [""Goldsmithing"", 33]]",Ogre Jambiya,Fire,,"[[""Darksteel Ingot"", 1], [""Silver Ingot"", 1], [""Sunstone"", 1], [""Mercury"", 1], [""Buggane Horn"", 1]]","[null, null, null]"
|
||||
,63,[],Demon Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Demon Horn"", 1]]","[[""Demon Arrowheads"", 8], [""Demon Arrowheads"", 10], [""Demon Arrowheads"", 12]]"
|
||||
,63,[],Demon Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Demon Horn"", 3], [""Shagreen File"", 1]]","[[""Demon Arrowheads"", 24], [""Demon Arrowheads"", 30], [""Demon Arrowheads"", 36]]"
|
||||
,63,"[[""Leathercraft"", 31]]",Scorpion Mittens,Earth,,"[[""Scorpion Shell"", 1], [""Ram Leather"", 1], [""Pugil Scales"", 1]]","[[""Scorpion Mittens +1"", 1], null, null]"
|
||||
,64,"[[""Leathercraft"", 21]]",Marid Mittens,Earth,,"[[""Karakul Leather"", 1], [""Merrow Scale"", 1], [""Marid Tusk"", 1]]","[[""Marid Mittens +1"", 1], null, null]"
|
||||
,64,[],Scorpion Mask,Earth,,"[[""Ram Leather"", 1], [""Scorpion Shell"", 1]]","[[""Scorpion Mask +1"", 1], null, null]"
|
||||
,65,[],Scapegoat,Wind,,"[[""Phoenix Feather"", 1], [""Marid Tusk"", 1]]","[null, null, null]"
|
||||
,65,[],Ladybug Ring,Wind,,"[[""Ladybug Wing"", 2]]","[[""Ladybug Ring +1"", 1], null, null]"
|
||||
,65,"[[""Leathercraft"", 32]]",Scorpion Leggings,Earth,,"[[""Scorpion Shell"", 1], [""Ram Leather"", 2], [""Pugil Scales"", 1]]","[[""Scorpion Leggings +1"", 1], null, null]"
|
||||
,65,[],Ladybug Ring,Wind,,"[[""Bonecraft Kit 65"", 1]]","[null, null, null]"
|
||||
,66,[],Crumhorn,Wind,,"[[""Beetle Jaw"", 1], [""Demon Horn"", 1]]","[[""Crumhorn +1"", 1], [""Crumhorn +1"", 1], [""Crumhorn +2"", 1]]"
|
||||
,66,"[[""Leathercraft"", 22]]",Marid Leggings,Earth,,"[[""Karakul Leather"", 2], [""Merrow Scale"", 1], [""Marid Tusk"", 1]]","[[""Marid Leggings +1"", 1], null, null]"
|
||||
,66,"[[""Smithing"", 45], [""Woodworking"", 33]]",Ogre Sickle,Wind,,"[[""Darksteel Ingot"", 1], [""Ebony Lumber"", 1], [""Ruszor Leather"", 1], [""Buggane Horn"", 1]]","[null, null, null]"
|
||||
,67,"[[""Goldsmithing"", 53], [""Woodworking"", 31]]",Ivory Sickle,Wind,,"[[""Mahogany Lumber"", 1], [""Platinum Ingot"", 1], [""Ram Leather"", 1], [""Oversized Fang"", 1]]","[[""Ivory Sickle +1"", 1], null, null]"
|
||||
,67,"[[""Leathercraft"", 32]]",Scorpion Subligar,Earth,,"[[""Linen Cloth"", 1], [""Scorpion Shell"", 1], [""Ram Leather"", 1]]","[[""Scorpion Subligar +1"", 1], null, null]"
|
||||
,68,[],Bone Patas,Fire,,"[[""Crab Shell"", 1], [""Giant Femur"", 2], [""Carbon Fiber"", 1]]","[[""Bone Patas +1"", 1], null, null]"
|
||||
,68,"[[""Smithing"", 43]]",Seadog Gun,Fire,,"[[""Steel Ingot"", 2], [""Coral Fragment"", 2]]","[[""Seadog Gun +1"", 1], null, null]"
|
||||
,69,[],Beast Horn,Wind,,"[[""Ram Horn"", 2]]","[null, null, null]"
|
||||
,69,"[[""Leathercraft"", 33]]",Scorpion Harness,Earth,,"[[""Venomous Claw"", 1], [""Scorpion Shell"", 2], [""Ram Leather"", 2]]","[[""Scorpion Harness +1"", 1], null, null]"
|
||||
,70,[],Antlion Trap,Earth,,"[[""Coeurl Whisker"", 1], [""Animal Glue"", 1], [""Antican Pauldron"", 1], [""Antican Robe"", 1], [""High-Quality Antlion Jaw"", 2]]","[null, null, null]"
|
||||
,70,[],Demon's Ring,Wind,,"[[""Fish Scales"", 1], [""Demon Horn"", 1]]","[[""Demon's Ring +1"", 1], null, null]"
|
||||
,70,[],Demon's Ring,Wind,,"[[""Bonecraft Kit 70"", 1]]","[null, null, null]"
|
||||
,71,"[[""Goldsmithing"", 52]]",Hornet Fleuret,Fire,,"[[""Brass Ingot"", 1], [""Moonstone"", 1], [""Giant Femur"", 1], [""Pearl"", 1], [""Giant Stinger"", 1]]","[[""Wasp Fleuret"", 1], null, null]"
|
||||
,71,[],Kilo Fan,Earth,,"[[""Crab Shell"", 1], [""Giant Femur"", 1], [""Beeswax"", 1], [""Bat Wing"", 1], [""Wind Cluster"", 1]]","[[""Kilo Fan"", 99], null, null]"
|
||||
,71,[],Vivified Coral,Wind,Bone Purification,"[[""Coral Fragment"", 1], [""Lightning Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
|
||||
,72,"[[""Leathercraft"", 5]]",Coral Cuisses,Earth,,"[[""Leather Trousers"", 1], [""Coral Fragment"", 2], [""Rainbow Thread"", 1]]","[[""Coral Cuisses +1"", 1], null, null]"
|
||||
,72,"[[""Leathercraft"", 46]]",Coral Subligar,Earth,,"[[""Coeurl Leather"", 1], [""Linen Cloth"", 1], [""Coral Fragment"", 1]]","[[""Merman's Subligar"", 1], null, null]"
|
||||
,72,[],Gnole Sainti,Wind,,"[[""Brass Ingot"", 1], [""Steel Ingot"", 1], [""Gnole Claw"", 2], [""Teak Lumber"", 1]]","[[""Gnole Sainti +1"", 1], null, null]"
|
||||
,73,[],Demon's Knife,Wind,,"[[""Ebony Lumber"", 1], [""Demon Horn"", 1]]","[[""Demon's Knife +1"", 1], null, null]"
|
||||
,73,[],Lithic Wyvern Scale,Wind,Bone Purification,"[[""Wyvern Scales"", 1], [""Earth Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
|
||||
,73,[],Tactician Magician's Hooks +1,Earth,,"[[""Tactician Magician's Hooks"", 1], [""Demon Horn"", 1]]","[[""Tactician Magician's Hooks +2"", 1], null, null]"
|
||||
,73,[],Vivio Wyvern Scale,Wind,Bone Purification,"[[""Wyvern Scales"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
|
||||
,74,[],Coral Finger Gauntlets,Earth,,"[[""Leather Gloves"", 1], [""Coral Fragment"", 2], [""Rainbow Thread"", 1]]","[[""Coral Finger Gauntlets +1"", 1], null, null]"
|
||||
,74,"[[""Leathercraft"", 48]]",Coral Mittens,Earth,,"[[""Coeurl Leather"", 1], [""Coral Fragment"", 1], [""Wyvern Scales"", 1]]","[[""Merman's Mittens"", 1], null, null]"
|
||||
,74,[],Oxblood Orb,Wind,,"[[""Silver Chain"", 1], [""Oxblood"", 1]]","[[""Oxblood Orb"", 8], [""Oxblood Orb"", 10], [""Oxblood Orb"", 12]]"
|
||||
,74,[],Angel Skin Orb,Wind,,"[[""Silver Chain"", 1], [""Angel Skin"", 1]]","[[""Angel Skin Orb"", 8], [""Angel Skin Orb"", 10], [""Angel Skin Orb"", 12]]"
|
||||
,75,"[[""Leathercraft"", 35]]",Clown's Subligar,Earth,,"[[""Lindwurm Skin"", 1], [""Linen Cloth"", 1], [""Coral Fragment"", 1]]","[[""Clown's Subligar +1"", 1], null, null]"
|
||||
,75,[],Ladybug Earring,Wind,,"[[""Ladybug Wing"", 1], [""Electrum Chain"", 1]]","[[""Ladybug Earring +1"", 1], null, null]"
|
||||
,75,"[[""Smithing"", 53]]",Corsair's Gun,Fire,,"[[""Demon Horn"", 1], [""Darksteel Ingot"", 2]]","[[""Corsair's Gun +1"", 1], null, null]"
|
||||
,75,[],Ladybug Earring,Wind,,"[[""Bonecraft Kit 75"", 1]]","[null, null, null]"
|
||||
,76,"[[""Leathercraft"", 49]]",Coral Leggings,Earth,,"[[""Coeurl Leather"", 2], [""Coral Fragment"", 1], [""Wyvern Scales"", 1]]","[[""Merman's Leggings"", 1], null, null]"
|
||||
,76,[],Coral Greaves,Earth,,"[[""Leather Highboots"", 1], [""Coral Fragment"", 2], [""Rainbow Thread"", 1]]","[[""Coral Greaves +1"", 1], null, null]"
|
||||
,77,[],Coral Hairpin,Wind,,"[[""Black Pearl"", 1], [""Coral Fragment"", 1], [""Pearl"", 1]]","[[""Merman's Hairpin"", 1], null, null]"
|
||||
,77,[],Coral Visor,Wind,,"[[""Coral Fragment"", 2], [""Sheep Leather"", 1]]","[[""Coral Visor +1"", 1], null, null]"
|
||||
,78,[],Coral Cap,Earth,,"[[""Darksteel Cap"", 1], [""Coral Fragment"", 1]]","[[""Merman's Cap"", 1], null, null]"
|
||||
,78,[],Marid Tusk Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Marid Tusk"", 1]]","[[""Marid Tusk Arrowheads"", 8], [""Marid Tusk Arrowheads"", 10], [""Marid Tusk Arrowheads"", 12]]"
|
||||
,78,[],Marid Tusk Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Marid Tusk"", 3], [""Shagreen File"", 1]]","[[""Marid Tusk Arrowheads"", 24], [""Marid Tusk Arrowheads"", 30], [""Marid Tusk Arrowheads"", 36]]"
|
||||
,78,[],Zeal Cap,Earth,,"[[""Thunder Coral"", 1], [""Darksteel Cap"", 1]]","[[""Zeal Cap +1"", 1], null, null]"
|
||||
,78,"[[""Clothcraft"", 43], [""Leathercraft"", 33]]",Quadav Barbut,Earth,,"[[""Quadav Parts"", 1], [""Tiger Leather"", 1], [""Lizard Molt"", 1], [""Bugard Tusk"", 1], [""Wool Thread"", 1], [""Red Grass Cloth"", 1], [""Black Pearl"", 2]]","[null, null, null]"
|
||||
,79,[],Coral Gorget,Wind,,"[[""Coral Fragment"", 1], [""Sheep Leather"", 1]]","[[""Merman's Gorget"", 1], null, null]"
|
||||
,79,[],Tigerfangs,Fire,,"[[""Carbon Fiber"", 1], [""Black Tiger Fang"", 2], [""Scorpion Shell"", 1]]","[[""Feral Fangs"", 1], null, null]"
|
||||
,79,"[[""Woodworking"", 50]]",Horn Trophy,Earth,,"[[""Wool Thread"", 1], [""Buffalo Horn"", 2], [""Sheep Chammy"", 1], [""Teak Lumber"", 1]]","[null, null, null]"
|
||||
,79,[],Nuna Gorget,Wind,,"[[""Sheep Leather"", 1], [""Craklaw Pincer"", 1]]","[[""Nuna Gorget +1"", 1], null, null]"
|
||||
,80,"[[""Leathercraft"", 50]]",Coral Harness,Earth,,"[[""Coeurl Leather"", 2], [""Coral Fragment"", 2]]","[[""Merman's Harness"", 1], null, null]"
|
||||
,80,[],Coral Ring,Wind,,"[[""Coral Fragment"", 2]]","[[""Merman's Ring"", 1], null, null]"
|
||||
,80,[],Coral Scale Mail,Earth,,"[[""Leather Vest"", 1], [""Coral Fragment"", 4], [""Sheep Leather"", 1], [""Rainbow Thread"", 1]]","[[""Coral Scale Mail +1"", 1], null, null]"
|
||||
,80,[],Reraise Hairpin,Wind,,"[[""Vivified Coral"", 1], [""Coral Hairpin"", 1]]","[null, null, null]"
|
||||
,80,[],Vela Justaucorps,Earth,,"[[""Gold Thread"", 1], [""Beetle Shell"", 1], [""Bastet Fang"", 2], [""Wool Robe"", 1]]","[[""Vela Justaucorps +1"", 1], null, null]"
|
||||
,80,[],Coral Ring,Wind,,"[[""Bonecraft Kit 80"", 1]]","[null, null, null]"
|
||||
,81,"[[""Smithing"", 58]]",Darksteel Shield,Earth,,"[[""Ash Lumber"", 1], [""Darksteel Sheet"", 3], [""Wyvern Scales"", 4]]","[[""Darksteel Shield +1"", 1], null, null]"
|
||||
,81,[],Marid Ring,Wind,,"[[""Marid Tusk"", 2]]","[[""Marid Ring +1"", 1], null, null]"
|
||||
,81,[],Saintly Ring,Earth,,"[[""Ascetic's Ring"", 1], [""Fish Scales"", 1]]","[[""Saintly Ring +1"", 1], null, null]"
|
||||
,82,"[[""Leathercraft"", 5]]",Dragon Cuisses,Earth,,"[[""Leather Trousers"", 1], [""Silver Thread"", 1], [""Wyvern Scales"", 2]]","[[""Dragon Cuisses +1"", 1], null, null]"
|
||||
,82,[],Eremite's Ring,Earth,,"[[""Hermit's Ring"", 1], [""Sheep Tooth"", 1]]","[[""Eremite's Ring +1"", 1], null, null]"
|
||||
,82,[],Reraise Gorget,Wind,,"[[""Vivified Coral"", 1], [""Coral Gorget"", 1]]","[null, null, null]"
|
||||
,82,[],Antlion Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Antlion Jaw"", 1]]","[[""Antlion Arrowheads"", 8], [""Antlion Arrowheads"", 10], [""Antlion Arrowheads"", 12]]"
|
||||
,82,[],Antlion Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Antlion Jaw"", 3], [""Shagreen File"", 1]]","[[""Antlion Arrowheads"", 24], [""Antlion Arrowheads"", 30], [""Antlion Arrowheads"", 36]]"
|
||||
,83,[],Coral Earring,Wind,,"[[""Silver Chain"", 1], [""Coral Fragment"", 2]]","[[""Merman's Earring"", 1], null, null]"
|
||||
,83,[],Mega Fan,Earth,,"[[""Scorpion Shell"", 1], [""Giant Femur"", 1], [""Beeswax"", 1], [""Bat Wing"", 1], [""Wind Cluster"", 1]]","[[""Mega Fan"", 99], null, null]"
|
||||
,83,"[[""Goldsmithing"", 49], [""Leathercraft"", 31]]",Lamia Garland,Wind,,"[[""Brass Chain"", 1], [""Garnet"", 1], [""Manta Leather"", 1], [""Uragnite Shell"", 1], [""Aht Urhgan Brass Ingot"", 1]]","[null, null, null]"
|
||||
,84,[],Behemoth Knife,Wind,,"[[""Behemoth Horn"", 1], [""Mahogany Lumber"", 1]]","[[""Behemoth Knife +1"", 1], null, null]"
|
||||
,84,[],Dragon Finger Gauntlets,Earth,,"[[""Leather Gloves"", 1], [""Silver Thread"", 1], [""Wyvern Scales"", 2]]","[[""Dragon Finger Gauntlets +1"", 1], null, null]"
|
||||
,84,[],Chapuli Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Chapuli Horn"", 1]]","[[""Chapuli Arrowheads"", 8], [""Chapuli Arrowheads"", 10], [""Chapuli Arrowheads"", 12]]"
|
||||
,84,[],Chapuli Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Chapuli Horn"", 3], [""Shagreen File"", 1]]","[[""Chapuli Arrowheads"", 24], [""Chapuli Arrowheads"", 30], [""Chapuli Arrowheads"", 36]]"
|
||||
,85,[],Eris' Earring,Earth,,"[[""Nemesis Earring"", 1], [""Seashell"", 1]]","[[""Eris' Earring +1"", 1], null, null]"
|
||||
,85,[],Hellish Bugle,Earth,,"[[""Imp Horn"", 1], [""Colibri Beak"", 1]]","[[""Hellish Bugle +1"", 1], null, null]"
|
||||
,85,[],Wivre Hairpin,Wind,,"[[""Wivre Maul"", 1]]","[[""Wivre Hairpin +1"", 1], null, null]"
|
||||
,85,[],Ruszor Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Ruszor Fang"", 1]]","[[""Ruszor Arrowheads"", 8], [""Ruszor Arrowheads"", 10], [""Ruszor Arrowheads"", 12]]"
|
||||
,85,[],Ruszor Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Ruszor Fang"", 3], [""Shagreen File"", 1]]","[[""Ruszor Arrowheads"", 24], [""Ruszor Arrowheads"", 30], [""Ruszor Arrowheads"", 36]]"
|
||||
,85,[],Hellish Bugle,Earth,,"[[""Bonecraft Kit 85"", 1]]","[null, null, null]"
|
||||
,86,[],Shofar,Wind,,"[[""Behemoth Horn"", 1], [""Beetle Jaw"", 1]]","[[""Shofar +1"", 1], null, null]"
|
||||
,86,[],Wivre Gorget,Wind,,"[[""Karakul Leather"", 1], [""Wivre Horn"", 1]]","[[""Wivre Gorget +1"", 1], null, null]"
|
||||
,86,[],Dragon Greaves,Earth,,"[[""Leather Highboots"", 1], [""Silver Thread"", 1], [""Wyvern Scales"", 2]]","[[""Dragon Greaves +1"", 1], null, null]"
|
||||
,87,[],Coral Bangles,Wind,,"[[""Giant Femur"", 1], [""Coral Fragment"", 2]]","[[""Merman's Bangles"", 1], null, null]"
|
||||
,87,[],Dragon Mask,Wind,,"[[""Sheep Leather"", 1], [""Wyvern Scales"", 2]]","[[""Dragon Mask +1"", 1], null, null]"
|
||||
,87,[],Snakeeye,Wind,,"[[""Hydra Fang"", 2], [""Wamoura Silk"", 1]]","[[""Snakeeye +1"", 1], null, null]"
|
||||
,88,[],Coral Sword,Earth,,"[[""Katzbalger"", 1], [""Coral Fragment"", 4]]","[[""Merman's Sword"", 1], null, null]"
|
||||
,88,[],Lamian Kaman,Earth,,"[[""Scorpion Claw"", 1], [""Marid Tusk"", 1], [""Lamian Kaman -1"", 1]]","[[""Lamian Kaman +1"", 1], null, null]"
|
||||
,88,"[[""Goldsmithing"", 60], [""Smithing"", 55]]",Naigama,Wind,,"[[""Bloodwood Lumber"", 1], [""Karakul Leather"", 1], [""Relic Steel"", 1], [""Marid Tusk"", 1], [""Scintillant Ingot"", 1]]","[[""Naigama +1"", 1], null, null]"
|
||||
,88,[],Gargouille Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Gargouille Horn"", 1]]","[[""Gargouille Arrowheads"", 8], [""Gargouille Arrowheads"", 10], [""Gargouille Arrowheads"", 12]]"
|
||||
,88,[],Gargouille Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Gargouille Horn"", 3], [""Shagreen File"", 1]]","[[""Gargouille Arrowheads"", 24], [""Gargouille Arrowheads"", 30], [""Gargouille Arrowheads"", 36]]"
|
||||
,88,"[[""Goldsmithing"", 33]]",Ghillie Earring,Wind,,"[[""Silver Chain"", 1], [""Ruszor Fang"", 2]]","[[""Ghillie Earring +1"", 1], null, null]"
|
||||
,89,[],Behemoth Ring,Wind,,"[[""Behemoth Horn"", 2]]","[[""Behemoth Ring +1"", 1], null, null]"
|
||||
,89,[],Earth Greaves,Earth,,"[[""Lithic Wyvern Scale"", 1], [""Dragon Greaves"", 1]]","[null, null, null]"
|
||||
,89,[],Inferno Sabots,Earth,,"[[""Ebony Sabots"", 1], [""Namtar Bone"", 1]]","[[""Inferno Sabots +1"", 1], null, null]"
|
||||
,90,"[[""Leathercraft"", 59]]",Demon's Harness,Earth,,"[[""Behemoth Leather"", 2], [""Demon Skull"", 2]]","[[""Demon's Harness +1"", 1], null, null]"
|
||||
,90,[],Dragon Claws,Earth,,"[[""Beetle Jaw"", 1], [""Dragon Talon"", 2]]","[[""Dragon Claws +1"", 1], null, null]"
|
||||
,90,"[[""Smithing"", 42]]",Dragon Mail,Earth,,"[[""Darksteel Chain"", 1], [""Darksteel Sheet"", 1], [""Leather Vest"", 1], [""Silver Thread"", 1], [""Wyvern Scales"", 3], [""Dragon Scales"", 1]]","[[""Dragon Mail +1"", 1], null, null]"
|
||||
,90,"[[""Goldsmithing"", 40]]",Airmid's Gorget,Earth,,"[[""Silver Chain"", 3], [""Vivified Coral"", 1], [""Vivified Mythril"", 1]]","[null, null, null]"
|
||||
,90,[],Mantid Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Mantid Foreleg"", 1]]","[[""Mantid Arrowheads"", 8], [""Mantid Arrowheads"", 10], [""Mantid Arrowheads"", 12]]"
|
||||
,90,[],Mantid Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Mantid Foreleg"", 3], [""Shagreen File"", 1]]","[[""Mantid Arrowheads"", 24], [""Mantid Arrowheads"", 30], [""Mantid Arrowheads"", 36]]"
|
||||
,90,[],Vexer Ring,Wind,,"[[""Coral Fragment"", 2], [""Twitherym Scale"", 1], [""Matamata Shell"", 1]]","[[""Vexer Ring +1"", 1], null, null]"
|
||||
,90,[],Dragon Claws,Earth,,"[[""Bonecraft Kit 90"", 1]]","[null, null, null]"
|
||||
,91,"[[""Leathercraft"", 41]]",Cursed Subligar,Earth,,"[[""Angel Skin"", 1], [""Silk Cloth"", 1], [""Tiger Leather"", 1]]","[[""Cursed Subligar -1"", 1], null, null]"
|
||||
,91,[],Demon Helm,Dark,,"[[""Sheep Leather"", 1], [""Demon Skull"", 1], [""Demon Horn"", 2]]","[[""Demon Helm +1"", 1], null, null]"
|
||||
,91,"[[""Leathercraft"", 38]]",Igqira Tiara,Earth,,"[[""Coral Fragment"", 3], [""Garnet"", 1], [""Coeurl Leather"", 1], [""Manticore Hair"", 1]]","[[""Genie Tiara"", 1], null, null]"
|
||||
,91,"[[""Goldsmithing"", 60], [""Smithing"", 39]]",Jambiya,Fire,,"[[""Steel Ingot"", 1], [""Mercury"", 1], [""Pigeon's Blood Ruby"", 1], [""Marid Tusk"", 1], [""Scintillant Ingot"", 1]]","[[""Jambiya +1"", 1], null, null]"
|
||||
,91,[],Matamata Shield,Earth,,"[[""Craklaw Pincer"", 1], [""Matamata Shell"", 1]]","[[""Matamata Shield +1"", 1], null, null]"
|
||||
,91,[],Bewitched Leggings,Earth,,"[[""Cursed Leggings -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Leggings"", 1], null, null]"
|
||||
,91,[],Vexed Gamashes,Earth,,"[[""Hexed Gamashes -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Gamashes"", 1], null, null]"
|
||||
,92,[],Carapace Gauntlets,Earth,,"[[""Leather Gloves"", 2], [""High-Quality Crab Shell"", 2]]","[[""Carapace Gauntlets +1"", 1], null, null]"
|
||||
,92,"[[""Leathercraft"", 43]]",Cursed Gloves,Earth,,"[[""Angel Skin"", 1], [""Tiger Leather"", 1], [""Wyvern Scales"", 1]]","[[""Cursed Gloves -1"", 1], null, null]"
|
||||
,92,"[[""Leathercraft"", 53]]",Dragon Subligar,Earth,,"[[""Sarcenet Cloth"", 1], [""Buffalo Leather"", 1], [""Dragon Bone"", 1]]","[[""Dragon Subligar +1"", 1], null, null]"
|
||||
,92,"[[""Goldsmithing"", 31]]",Wivre Ring,Wind,,"[[""Aht Urhgan Brass Ingot"", 1], [""Wivre Horn"", 2]]","[[""Wivre Ring +1"", 1], null, null]"
|
||||
,92,"[[""Leathercraft"", 58]]",Unicorn Subligar,Earth,,"[[""Behemoth Leather"", 1], [""Taffeta Cloth"", 1], [""Unicorn Horn"", 1]]","[[""Unicorn Subligar +1"", 1], null, null]"
|
||||
,92,[],Raaz Arrowheads,Wind,,"[[""Bone Chip"", 1], [""Raaz Tusk"", 1]]","[[""Raaz Arrowheads"", 8], [""Raaz Arrowheads"", 10], [""Raaz Arrowheads"", 12]]"
|
||||
,92,[],Raaz Arrowheads,Wind,Filing,"[[""Bone Chip"", 3], [""Raaz Tusk"", 3], [""Shagreen File"", 1]]","[[""Raaz Arrowheads"", 24], [""Raaz Arrowheads"", 30], [""Raaz Arrowheads"", 36]]"
|
||||
,92,[],Bewitched Gloves,Earth,,"[[""Cursed Gloves -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Gloves"", 1], null, null]"
|
||||
,92,[],Vexed Wristbands,Earth,,"[[""Hexed Wristbands -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Wristbands"", 1], null, null]"
|
||||
,93,[],Carapace Helm,Earth,,"[[""Copper Ingot"", 1], [""High-Quality Crab Shell"", 2], [""Sheep Leather"", 1], [""Ram Leather"", 1]]","[[""Carapace Helm +1"", 1], null, null]"
|
||||
,93,"[[""Alchemy"", 41]]",Igqira Manillas,Earth,,"[[""Garnet"", 1], [""Bugard Tusk"", 1], [""Manticore Hair"", 1], [""Uragnite Shell"", 1], [""Avatar Blood"", 1]]","[[""Genie Manillas"", 1], null, null]"
|
||||
,93,[],Healing Mail,Earth,,"[[""Vivio Wyvern Scale"", 1], [""Dragon Mail"", 1]]","[null, null, null]"
|
||||
,93,[],Marath Baghnakhs,Earth,,"[[""Molybdenum Sheet"", 1], [""Marid Leather"", 1], [""Gargouille Horn"", 3]]","[[""Shivaji Baghnakhs"", 1], null, null]"
|
||||
,93,[],Bewitched Subligar,Earth,,"[[""Cursed Subligar -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Subligar"", 1], null, null]"
|
||||
,93,[],Shadow Throne,Dark,,"[[""Demon Skull"", 1], [""Demon Horn"", 2], [""Giant Femur"", 2], [""Fiend Blood"", 1], [""Demon Blood"", 1], [""Necropsyche"", 1]]","[null, null, null]"
|
||||
,94,"[[""Leathercraft"", 44]]",Cursed Leggings,Earth,,"[[""Angel Skin"", 1], [""Tiger Leather"", 2], [""Wyvern Scales"", 1]]","[[""Cursed Leggings -1"", 1], null, null]"
|
||||
,94,[],Mammoth Tusk,Wind,,"[[""Giant Frozen Head"", 1]]","[null, null, null]"
|
||||
,94,"[[""Alchemy"", 42]]",Shell Lamp,Wind,,"[[""Uragnite Shell"", 1], [""Flint Glass Sheet"", 1], [""Kaolin"", 2], [""Bomb Arm"", 1]]","[null, null, null]"
|
||||
,94,"[[""Leathercraft"", 52]]",Dragon Mittens,Earth,,"[[""Wyvern Scales"", 1], [""Buffalo Leather"", 1], [""Dragon Bone"", 1]]","[[""Dragon Mittens +1"", 1], null, null]"
|
||||
,94,[],Bewitched Cap,Earth,,"[[""Cursed Cap -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Cap"", 1], null, null]"
|
||||
,95,[],Carapace Breastplate,Earth,,"[[""Sheep Leather"", 1], [""Ram Leather"", 2], [""High-Quality Crab Shell"", 4]]","[[""Carapace Breastplate +1"", 1], null, null]"
|
||||
,95,[],Gavial Cuisses,Earth,,"[[""Titanictus Shell"", 1], [""High-Quality Pugil Scales"", 1], [""Rainbow Thread"", 1], [""Leather Trousers"", 1]]","[[""Gavial Cuisses +1"", 1], null, null]"
|
||||
,95,"[[""Leathercraft"", 50]]",Igqira Huaraches,Earth,,"[[""Coeurl Whisker"", 1], [""Coeurl Leather"", 1], [""Bugard Tusk"", 1], [""High-Quality Bugard Skin"", 1], [""Harajnite Shell"", 1]]","[[""Genie Huaraches"", 1], null, null]"
|
||||
,95,"[[""Leathercraft"", 54]]",Unicorn Mittens,Earth,,"[[""Gold Thread"", 1], [""Behemoth Leather"", 1], [""Wyvern Scales"", 1], [""Unicorn Horn"", 1]]","[[""Unicorn Mittens +1"", 1], null, null]"
|
||||
,95,"[[""Woodworking"", 48], [""Goldsmithing"", 30]]",Buzbaz Sainti,Wind,,"[[""Light Steel Ingot"", 2], [""Oak Lumber"", 1], [""Ruszor Fang"", 2]]","[[""Buzbaz Sainti +1"", 1], null, null]"
|
||||
,95,[],Bewitched Harness,Earth,,"[[""Cursed Harness -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Harness"", 1], null, null]"
|
||||
,95,[],Vexed Jacket,Earth,,"[[""Hexed Jacket -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Jacket"", 1], null, null]"
|
||||
,95,[],Carapace Breastplate,Earth,,"[[""Bonecraft Kit 95"", 1]]","[null, null, null]"
|
||||
,96,[],Acheron Shield,Earth,,"[[""Adamantoise Shell"", 2], [""Ram Leather"", 1]]","[[""Acheron Shield +1"", 1], null, null]"
|
||||
,96,"[[""Leathercraft"", 53]]",Dragon Leggings,Earth,,"[[""Wyvern Scales"", 1], [""Buffalo Leather"", 2], [""Dragon Bone"", 1]]","[[""Dragon Leggings +1"", 1], null, null]"
|
||||
,96,[],Scorpion Gauntlets,Earth,,"[[""High-Quality Scorpion Shell"", 2], [""Leather Gloves"", 2]]","[[""Scorpion Gauntlets +1"", 1], null, null]"
|
||||
,96,[],Hydra Cuisses,Earth,,"[[""Hydra Scale"", 1], [""Leather Trousers"", 1], [""Rainbow Thread"", 1], [""Titanictus Shell"", 1]]","[[""Hydra Cuisses +1"", 1], null, null]"
|
||||
,96,[],Trumpet Ring,Wind,,"[[""Trumpet Shell"", 2]]","[[""Nereid Ring"", 1], null, null]"
|
||||
,97,[],Cursed Cap,Earth,,"[[""Angel Skin"", 1], [""Darksteel Cap"", 1]]","[[""Cursed Cap -1"", 1], null, null]"
|
||||
,97,[],Gavial Finger Gauntlets,Earth,,"[[""Titanictus Shell"", 1], [""High-Quality Pugil Scales"", 1], [""Rainbow Thread"", 1], [""Leather Gloves"", 1]]","[[""Gavial Finger Gauntlets +1"", 1], null, null]"
|
||||
,97,"[[""Leathercraft"", 46]]",Igqira Lappa,Earth,,"[[""Coeurl Whisker"", 1], [""Coeurl Leather"", 1], [""Manticore Leather"", 1], [""Uragnite Shell"", 1], [""High-Quality Bugard Skin"", 1], [""Megalobugard Tusk"", 1]]","[[""Genie Lappa"", 1], null, null]"
|
||||
,97,[],Scorpion Helm,Earth,,"[[""High-Quality Scorpion Shell"", 2], [""Ram Leather"", 1], [""Sheep Leather"", 1], [""Copper Ingot"", 1]]","[[""Scorpion Helm +1"", 1], null, null]"
|
||||
,97,"[[""Leathercraft"", 55]]",Unicorn Leggings,Earth,,"[[""Gold Thread"", 1], [""Behemoth Leather"", 2], [""Wyvern Scales"", 1], [""Unicorn Horn"", 1]]","[[""Unicorn Leggings +1"", 1], null, null]"
|
||||
,97,"[[""Leathercraft"", 60]]",Sombra Tiara,Earth,,"[[""Intuila's Hide"", 1], [""Emperor Arthro's Shell"", 1]]","[[""Sombra Tiara +1"", 1], null, null]"
|
||||
,98,"[[""Leathercraft"", 41]]",Wyvern Helm,Dark,,"[[""Guivre's Skull"", 1], [""Tiger Leather"", 1], [""Sheep Leather"", 1], [""Beeswax"", 1]]","[[""Wyvern Helm +1"", 1], null, null]"
|
||||
,98,[],Cerberus Ring,Wind,,"[[""Cerberus Claw"", 2]]","[[""Cerberus Ring +1"", 1], null, null]"
|
||||
,98,[],Dragon Cap,Earth,,"[[""Dragon Bone"", 1], [""Darksteel Cap"", 1]]","[[""Dragon Cap +1"", 1], null, null]"
|
||||
,98,[],Orochi Nodowa,Earth,,"[[""Hydra Scale"", 1], [""Wamoura Silk"", 1]]","[[""Orochi Nodowa +1"", 1], null, null]"
|
||||
,98,[],Hydra Finger Gauntlets,Earth,,"[[""Rainbow Thread"", 1], [""Titanictus Shell"", 1], [""Hydra Scale"", 1], [""Leather Gloves"", 1]]","[[""Hydra Finger Gauntlets +1"", 1], null, null]"
|
||||
,98,[],Sombra Mittens,Earth,,"[[""Damascene Cloth"", 1], [""Buffalo Leather"", 1], [""Raaz Leather"", 1], [""Intuila's Hide"", 1], [""Emperor Arthro's Shell"", 1]]","[[""Sombra Mittens +1"", 1], null, null]"
|
||||
,99,[],Dragon Ring,Wind,,"[[""Dragon Talon"", 2]]","[[""Dragon Ring +1"", 1], null, null]"
|
||||
,99,[],Gavial Greaves,Earth,,"[[""Titanictus Shell"", 1], [""High-Quality Pugil Scales"", 1], [""Rainbow Thread"", 1], [""Leather Highboots"", 1]]","[[""Gavial Greaves +1"", 1], null, null]"
|
||||
,99,"[[""Leathercraft"", 55], [""Alchemy"", 44]]",Igqira Weskit,Earth,,"[[""Coeurl Leather"", 1], [""Lapis Lazuli"", 1], [""Dhalmel Leather"", 1], [""Dragon Talon"", 1], [""Manticore Hair"", 1], [""Avatar Blood"", 1], [""High-Quality Bugard Skin"", 1], [""Bugard Tusk"", 1]]","[[""Genie Weskit"", 1], null, null]"
|
||||
,99,[],Scorpion Breastplate,Earth,,"[[""High-Quality Scorpion Shell"", 4], [""Ram Leather"", 2], [""Sheep Leather"", 1]]","[[""Scorpion Breastplate +1"", 1], null, null]"
|
||||
,99,"[[""Leathercraft"", 52], [""Smithing"", 47]]",Unicorn Cap,Earth,,"[[""Darksteel Sheet"", 1], [""Gold Thread"", 1], [""Tiger Leather"", 1], [""Behemoth Leather"", 1], [""Unicorn Horn"", 1]]","[[""Unicorn Cap +1"", 1], null, null]"
|
||||
,99,"[[""Leathercraft"", 41]]",Wyvern Helm,Dark,,"[[""Wyvern Skull"", 1], [""Tiger Leather"", 1], [""Sheep Leather"", 1], [""Beeswax"", 1]]","[[""Wyvern Helm +1"", 1], null, null]"
|
||||
,99,"[[""Goldsmithing"", 40], [""Smithing"", 39]]",Khimaira Jambiya,Fire,,"[[""Steel Ingot"", 1], [""Gold Ingot"", 1], [""Mercury"", 1], [""Star Sapphire"", 1], [""Khimaira Horn"", 1]]","[[""Amir Jambiya"", 1], null, null]"
|
||||
,99,[],Sombra Tights,Earth,,"[[""Rainbow Cloth"", 1], [""Damascene Cloth"", 1], [""Raaz Leather"", 1], [""Intuila's Hide"", 1], [""Emperor Arthro's Shell"", 1]]","[[""Sombra Tights +1"", 1], null, null]"
|
||||
,100,[],Chronos Tooth,Wind,,"[[""Colossal Skull"", 1]]","[null, null, null]"
|
||||
,100,"[[""Leathercraft"", 41]]",Cursed Harness,Earth,,"[[""Tiger Leather"", 2], [""Coral Fragment"", 1], [""Oxblood"", 1], [""Angel Skin"", 1]]","[[""Cursed Harness -1"", 1], null, null]"
|
||||
,100,[],Gavial Mask,Wind,,"[[""Titanictus Shell"", 1], [""High-Quality Pugil Scales"", 1], [""Sheep Leather"", 1]]","[[""Gavial Mask +1"", 1], null, null]"
|
||||
,100,"[[""Leathercraft"", 58]]",Dragon Harness,Earth,,"[[""Buffalo Leather"", 2], [""Dragon Bone"", 1], [""Wyrm Horn"", 1]]","[[""Dragon Harness +1"", 1], null, null]"
|
||||
,100,[],Hydra Greaves,Earth,,"[[""Rainbow Thread"", 1], [""Titanictus Shell"", 1], [""Hydra Scale"", 1], [""Leather Highboots"", 1]]","[[""Hydra Greaves +1"", 1], null, null]"
|
||||
,100,"[[""Smithing"", 60]]",Handgonne,Earth,,"[[""Darksteel Ingot"", 1], [""Thokcha Ingot"", 1], [""Wyrm Horn"", 1]]","[[""Handgonne +1"", 1], null, null]"
|
||||
,100,[],Hajduk Ring,Wind,,"[[""Khimaira Horn"", 2]]","[[""Hajduk Ring +1"", 1], null, null]"
|
||||
,100,[],Dux Greaves,Earth,,"[[""Gold Thread"", 1], [""Dragon Scales"", 1], [""Turtle Shell"", 1], [""Squamous Hide"", 1], [""Leather Highboots"", 1]]","[[""Dux Greaves +1"", 1], null, null]"
|
||||
,100,[],Sombra Leggings,Earth,,"[[""Damascene Cloth"", 1], [""Behemoth Hide"", 1], [""Raaz Leather"", 2], [""Intuila's Hide"", 1], [""Emperor Arthro's Shell"", 1]]","[[""Sombra Leggings +1"", 1], null, null]"
|
||||
,101,[],Hydra Mask,Wind,,"[[""Titanictus Shell"", 1], [""Hydra Scale"", 1], [""Karakul Leather"", 1]]","[[""Hydra Mask +1"", 1], null, null]"
|
||||
,101,"[[""Woodworking"", 49], [""Smithing"", 37]]",Hades Sainti,Wind,,"[[""Iron Ingot"", 2], [""Bloodwood Lumber"", 1], [""Cerberus Claw"", 2]]","[[""Hades Sainti +1"", 1], null, null]"
|
||||
,102,"[[""Alchemy"", 50]]",Blenmot's Ring,Wind,,"[[""Oxblood"", 1], [""Vivified Coral"", 1], [""Holy Water"", 2], [""Hallowed Water"", 1]]","[[""Blenmot's Ring +1"", 1], null, null]"
|
||||
,102,[],Sombra Harness,Earth,,"[[""Rainbow Cloth"", 1], [""Damascene Cloth"", 1], [""Raaz Leather"", 1], [""Intuila's Hide"", 2], [""Emperor Arthro's Shell"", 2]]","[[""Sombra Harness +1"", 1], null, null]"
|
||||
,103,"[[""Leathercraft"", 60]]",Unicorn Harness,Earth,,"[[""Gold Thread"", 1], [""Tiger Leather"", 1], [""Behemoth Leather"", 1], [""Unicorn Horn"", 2]]","[[""Unicorn Harness +1"", 1], null, null]"
|
||||
,103,[],Gavial Mail,Earth,,"[[""Titanictus Shell"", 2], [""High-Quality Pugil Scales"", 2], [""Rainbow Thread"", 1], [""Sheep Leather"", 1], [""Leather Vest"", 1]]","[[""Gavial Mail +1"", 1], null, null]"
|
||||
,103,[],Dux Cuisses,Earth,,"[[""Gold Thread"", 1], [""Sheep Leather"", 1], [""Dragon Scales"", 1], [""Turtle Shell"", 1], [""Hahava's Mail"", 1], [""Squamous Hide"", 1]]","[[""Dux Cuisses +1"", 1], null, null]"
|
||||
,104,[],Hydra Mail,Earth,,"[[""Titanictus Shell"", 2], [""Hydra Scale"", 2], [""Karakul Leather"", 1], [""Leather Vest"", 1], [""Rainbow Thread"", 1]]","[[""Hydra Mail +1"", 1], null, null]"
|
||||
,104,[],Dark Ixion Ferrule,Wind,,"[[""Dark Ixion Horn"", 1]]","[[""Dark Ixion Ferrule"", 2], [""Dark Ixion Ferrule x3 Verification Needed"", 1], [""Dark Ixion Ferrule x4 Verification Needed"", 1]]"
|
||||
,104,[],Dux Visor,Wind,,"[[""Dragon Scales"", 1], [""Turtle Shell"", 1], [""Hahava's Mail"", 1], [""Squamous Hide"", 1]]","[[""Dux Visor +1"", 1], null, null]"
|
||||
,104,[],Revealer's Crown,Earth,,"[[""Linen Thread"", 1], [""Lizard Molt"", 1], [""Ironhorn Baldurno's Horn"", 1], [""Abyssdiver's Feather"", 1]]","[[""Revealer's Crown +1"", 1], null, null]"
|
||||
,105,[],Winged Balance,Wind,,"[[""Orichalcum Chain"", 1], [""Pearl"", 1], [""Nidhogg Scales"", 1], [""Southern Pearl"", 1], [""Angel Skin"", 1], [""Marid Tusk"", 1], [""Wivre Horn"", 1], [""Trumpet Shell"", 1]]","[null, null, null]"
|
||||
,105,[],Dux Finger Gauntlets,Earth,,"[[""Gold Thread"", 1], [""Dragon Scales"", 1], [""Turtle Shell"", 1], [""Squamous Hide"", 1], [""Leather Gloves"", 1]]","[[""Dux Finger Gauntlets +1"", 1], null, null]"
|
||||
,105,[],Blutkrallen,Earth,,"[[""Iron Ingot"", 1], [""Bloodwood Lumber"", 1], [""Linen Thread"", 1], [""Scintillant Ingot"", 1], [""Meeble Claw"", 3]]","[[""Blutklauen"", 1], null, null]"
|
||||
,105,[],Maliyakaleya Orb,Wind,,"[[""Silver Chain"", 1], [""Maliyakaleya Coral"", 1]]","[[""Maliyakaleya Orb"", 8], [""Maliyakaleya Orb"", 10], [""Maliyakaleya Orb"", 12]]"
|
||||
,105,[],Cyan Orb,Wind,,"[[""Silver Chain"", 1], [""Cyan Coral"", 1]]","[[""Cyan Orb"", 8], [""Cyan Orb"", 10], [""Cyan Orb"", 12]]"
|
||||
,106,"[[""Leathercraft"", 56], [""Goldsmithing"", 30]]",Hexed Gamashes,Earth,,"[[""Malboro Fiber"", 1], [""Marid Leather"", 1], [""Befouled Silver"", 1], [""Staghorn Coral"", 2]]","[[""Hexed Gamashes -1"", 1], null, null]"
|
||||
,106,"[[""Leathercraft"", 56], [""Goldsmithing"", 30]]",Hexed Wristbands,Earth,,"[[""Velvet Cloth"", 1], [""Marid Leather"", 1], [""Befouled Silver"", 1], [""Staghorn Coral"", 1], [""Sealord Leather"", 1]]","[[""Hexed Wristbands -1"", 1], null, null]"
|
||||
,106,[],Yacuruna Ring,Wind,,"[[""Yggdreant Root"", 1], [""Maliyakaleya Coral"", 2]]","[[""Yacuruna Ring +1"", 1], null, null]"
|
||||
,106,[],Maliya Sickle,Wind,,"[[""Urunday Lumber"", 1], [""Raaz Leather"", 1], [""Maliyakaleya Coral"", 1], [""Ra'Kaznar Ingot"", 1]]","[[""Maliya Sickle +1"", 1], null, null]"
|
||||
,107,[],Dux Scale Mail,Earth,,"[[""Gold Thread"", 1], [""Dragon Scales"", 1], [""Turtle Shell"", 3], [""Hahava's Mail"", 1], [""Squamous Hide"", 1], [""Leather Vest"", 1]]","[[""Dux Scale Mail +1"", 1], null, null]"
|
||||
,108,[],Oxossi Facon,Wind,,"[[""Manta Leather"", 1], [""Cassia Lumber"", 1], [""Simian Horn"", 1]]","[[""Oxossi Facon +1"", 1], null, null]"
|
||||
,109,[],Brioso Whistle,Earth,,"[[""Cyan Coral"", 1], [""Cyan Orb"", 2]]","[null, null, null]"
|
||||
,109,[],Brioso Whistle,Earth,,"[[""Cyan Coral"", 1], [""Cyan Orb"", 2]]","[null, null, null]"
|
||||
,109,[],Brioso Whistle,Earth,,"[[""Cyan Coral"", 1], [""Cyan Orb"", 2]]","[null, null, null]"
|
||||
,110,"[[""Leathercraft"", 60], [""Clothcraft"", 30]]",Hexed Jacket,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 2], [""Malboro Fiber"", 1], [""Befouled Silver"", 1], [""Penelope's Cloth"", 1], [""Staghorn Coral"", 1], [""Sealord Leather"", 1]]","[[""Hexed Jacket -1"", 1], null, null]"
|
||||
,110,"[[""Leathercraft"", 55]]",Assassin's Gorget,Light,,"[[""Cehuetzi Pelt"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Gorget"", 1]]","[[""Assassin's Gorget +1"", 1], [""Assassin's Gorget +2"", 1], null]"
|
||||
,110,"[[""Leathercraft"", 55]]",Etoile Gorget,Light,,"[[""Cehuetzi Pelt"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Gorget"", 1]]","[[""Etoile Gorget +1"", 1], [""Etoile Gorget +2"", 1], null]"
|
||||
,110,"[[""Leathercraft"", 55]]",Scout's Gorget,Light,,"[[""Cehuetzi Pelt"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Gorget"", 1]]","[[""Scout's Gorget +1"", 1], [""Scout's Gorget +2"", 1], null]"
|
||||
,111,[],Ej Necklace,Earth,,"[[""Oxblood"", 1], [""Siren's Macrame"", 1], [""Wivre Maul"", 1], [""Carrier Crab Carapace"", 1], [""Rockfin Tooth"", 2]]","[[""Ej Necklace +1"", 1], null, null]"
|
||||
,111,[],Tati Earring,Wind,,"[[""Silver Chain"", 1], [""Gabbrath Horn"", 2]]","[[""Tati Earring +1"", 1], null, null]"
|
||||
,111,"[[""Leathercraft"", 70]]",Bewitched Leggings,Earth,,"[[""Cursed Leggings"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Immanibugard's Hide"", 1]]","[[""Voodoo Leggings"", 1], null, null]"
|
||||
,111,"[[""Alchemy"", 70]]",Vexed Gamashes,Earth,,"[[""Hexed Gamashes"", 1], [""Eschite Ore"", 1], [""Macuil Horn"", 1], [""Sybaritic Samantha's Vine"", 1]]","[[""Jinxed Gamashes"", 1], null, null]"
|
||||
,111,[],Monster Axe,Light,Boneworker's aurum tome,"[[""Macuil Plating"", 1], [""Dark Matter"", 1], [""S. Faulpie Leather"", 1], [""Moldy Axe"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Ankusa Axe"", 1], [""Pangu"", 1], null]"
|
||||
,111,[],Abyss Scythe,Light,Boneworker's aurum tome,"[[""Tartarian Chain"", 1], [""Dark Matter"", 1], [""Cypress Log"", 1], [""Moldy Scythe"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Fallen's Scythe"", 1], [""Father Time"", 1], null]"
|
||||
,112,[],Bhakazi Sainti,Wind,,"[[""Guatambu Lumber"", 1], [""Titanium Ingot"", 1], [""Bismuth Ingot"", 1], [""Cehuetzi Claw"", 2]]","[[""Bhakazi Sainti +1"", 1], null, null]"
|
||||
,112,"[[""Leathercraft"", 70]]",Bewitched Gloves,Earth,,"[[""Cursed Gloves"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Immanibugard's Hide"", 1]]","[[""Voodoo Gloves"", 1], null, null]"
|
||||
,112,"[[""Leathercraft"", 70]]",Vexed Wristbands,Earth,,"[[""Hexed Wristbands"", 1], [""Eschite Ore"", 1], [""Macuil Horn"", 1], [""Warblade Beak's Hide"", 1]]","[[""Jinxed Wristbands"", 1], null, null]"
|
||||
,113,[],Nanti Knife,Wind,,"[[""Waktza Rostrum"", 1], [""Guatambu Lumber"", 1]]","[[""Nanti Knife +1"", 1], null, null]"
|
||||
,113,[],Budliqa,Wind,,"[[""Waktza Rostrum"", 1], [""Guatambu Lumber"", 1], [""Bismuth Ingot"", 1]]","[[""Budliqa +1"", 1], null, null]"
|
||||
,113,[],Killedar Shield,Earth,,"[[""Adamantoise Shell"", 1], [""Eltoro Leather"", 1], [""Gabbrath Horn"", 1]]","[[""Killedar Shield +1"", 1], null, null]"
|
||||
,113,[],Lacryma Sickle,Wind,,"[[""Woodworking - (??)"", 1], [""Ormolu Ingot"", 1], [""Ram Leather"", 1], [""Urunday Lumber"", 1], [""Rockfin Tooth"", 1]]","[[""Lacryma Sickle +1"", 1], null, null]"
|
||||
,113,[],Donderbuss,Fire,,"[[""Ormolu Ingot"", 1], [""Damascus Ingot"", 1], [""Rockfin Tooth"", 1]]","[[""Donderbuss +1"", 1], null, null]"
|
||||
,113,"[[""Leathercraft"", 70]]",Bewitched Subligar,Earth,,"[[""Cursed Subligar"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Immanibugard's Hide"", 1]]","[[""Voodoo Subligar"", 1], null, null]"
|
||||
,114,"[[""Smithing"", 70]]",Bewitched Cap,Earth,,"[[""Cursed Cap"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Largantua's Shard"", 1]]","[[""Voodoo Cap"", 1], null, null]"
|
||||
,115,"[[""Leathercraft"", 70]]",Bewitched Harness,Earth,,"[[""Cursed Harness"", 1], [""Eschite Ore"", 1], [""Maliyakaleya Coral"", 1], [""Immanibugard's Hide"", 1]]","[[""Voodoo Harness"", 1], null, null]"
|
||||
,115,"[[""Leathercraft"", 70]]",Vexed Jacket,Earth,,"[[""Hexed Jacket"", 1], [""Eschite Ore"", 1], [""Warblade Beak's Hide"", 1], [""Macuil Horn"", 1]]","[[""Jinxed Jacket"", 1], null, null]"
|
||||
,115,[],Aurgelmir Orb,Wind,,"[[""Black Ink"", 1], [""Beastman Blood"", 1], [""Cyan Coral"", 3], [""Wyrm Ash"", 1]]","[[""Aurgelmir Orb +1"", 1], null, null]"
|
||||
,115,[],Raetic Scythe,Fire,Boneworker's argentum tome,"[[""Cyan Coral"", 2], [""Cyan Orb"", 3], [""Rune Scythe"", 1]]","[[""Raetic Scythe +1"", 1], null, null]"
|
||||
,115,[],Raetic Bangles,Fire,Boneworker's argentum tome,"[[""Cyan Coral"", 2], [""Cyan Orb"", 3], [""Rune Bangles"", 1]]","[[""Raetic Bangles +1"", 1], null, null]"
|
||||
,116,[],Moonbeam Ring,Wind,,"[[""Moonbow Stone"", 1], [""Moonlight Coral"", 1], [""Cyan Coral"", 1]]","[[""Moonlight Ring"", 1], null, null]"
|
||||
,116,[],Mousai Gages,Earth,Boneworker's argentum tome,"[[""Cashmere Thread"", 2], [""Cyan Orb"", 2], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 1], [""Hades' Claw"", 1]]","[[""Mousai Gages +1"", 1], null, null]"
|
||||
,116,[],Mousai Crackows,Earth,Boneworker's argentum tome,"[[""Cashmere Thread"", 1], [""Cyan Orb"", 2], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 1], [""Hades' Claw"", 1]]","[[""Mousai Crackows +1"", 1], null, null]"
|
||||
,116,[],Mousai Turban,Earth,Boneworker's argentum tome,"[[""Cashmere Cloth"", 1], [""Cyan Orb"", 2], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 1], [""Hades' Claw"", 1]]","[[""Mousai Turban +1"", 1], null, null]"
|
||||
,116,[],Mousai Seraweels,Earth,Boneworker's argentum tome,"[[""Cashmere Cloth"", 1], [""Cyan Orb"", 3], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 1], [""Hades' Claw"", 1]]","[[""Mousai Seraweels +1"", 1], null, null]"
|
||||
,116,[],Mousai Manteel,Earth,Boneworker's argentum tome,"[[""Cashmere Cloth"", 1], [""Cyan Orb"", 3], [""Yggdreant Bole"", 1], [""Plovid Effluvium"", 2], [""Hades' Claw"", 1]]","[[""Mousai Manteel +1"", 1], null, null]"
|
||||
,117,[],Staunch Tathlum,Earth,,"[[""Macuil Horn"", 1], [""Plovid Flesh"", 1], [""Defiant Scarf"", 1], [""Hades' Claw"", 1]]","[[""Staunch Tathlum +1"", 1], null, null]"
|
||||
,117,[],Moonbow Whistle,Earth,,"[[""Brioso Whistle"", 1], [""Moonbow Urushi"", 1], [""Moonbow Stone"", 1]]","[[""Moonbow Whistle +1"", 1], null, null]"
|
||||
|
||||
|
@@ -1,7 +1,5 @@
|
||||
Clothcraft Crafted Items
|
||||
Amateur (1-10)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Love Chocolate
|
||||
|
||||
@@ -196,9 +194,7 @@ Main Craft: Clothcraft - (10)
|
||||
Clothcraft Kit 10
|
||||
|
||||
|
||||
Recruit (11-20)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Cotton Thread
|
||||
|
||||
@@ -706,9 +702,7 @@ Main Craft: Clothcraft - (20)
|
||||
Clothcraft Kit 20
|
||||
|
||||
|
||||
Initiate (21-30)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Cotton Hachimaki
|
||||
|
||||
@@ -1416,9 +1410,7 @@ Main Craft: Clothcraft - (30)
|
||||
Clothcraft Kit 30
|
||||
|
||||
|
||||
Novice (31-40)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Linen Mitts
|
||||
|
||||
@@ -1896,9 +1888,7 @@ Main Craft: Clothcraft - (40)
|
||||
Clothcraft Kit 40
|
||||
|
||||
|
||||
Apprentice (41-50)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Mohbwa Thread
|
||||
|
||||
@@ -2380,9 +2370,7 @@ Main Craft: Clothcraft - (50)
|
||||
Clothcraft Kit 50
|
||||
|
||||
|
||||
Journeyman (51-60)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Silk Thread
|
||||
|
||||
@@ -3026,9 +3014,7 @@ Main Craft: Clothcraft - (60)
|
||||
Clothcraft Kit 60
|
||||
|
||||
|
||||
Craftsman (61-70)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Velvet Cuffs
|
||||
|
||||
@@ -3786,9 +3772,7 @@ Main Craft: Clothcraft - (70)
|
||||
Clothcraft Kit 70
|
||||
|
||||
|
||||
Artisan (71-80)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Shinobi Hachigane
|
||||
|
||||
@@ -4636,9 +4620,7 @@ Main Craft: Clothcraft - (80)
|
||||
Clothcraft Kit 80
|
||||
|
||||
|
||||
Adept (81-90)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Arhat's Jinpachi
|
||||
|
||||
@@ -5380,9 +5362,7 @@ Main Craft: Clothcraft - (90)
|
||||
Clothcraft Kit 90
|
||||
|
||||
|
||||
Veteran (91-100)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Rasetsu Jinpachi
|
||||
|
||||
@@ -6414,9 +6394,7 @@ Key Item: Fletching
|
||||
Zephyr Thread
|
||||
|
||||
|
||||
Expert (101-110)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Errant Cape
|
||||
|
||||
@@ -6919,9 +6897,7 @@ Sub Craft(s): Woodworking - (55)
|
||||
Moldy Stole
|
||||
|
||||
|
||||
Authority (111-120)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Ogapepo Cape
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,5 @@
|
||||
Cooking Crafted Items
|
||||
Amateur (1-10)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Worm Paste x2
|
||||
|
||||
@@ -376,9 +374,7 @@ Main Craft: Cooking - (10)
|
||||
Cooking Kit 10
|
||||
|
||||
|
||||
Recruit (11-20)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Carrion Broth x4
|
||||
|
||||
@@ -810,9 +806,7 @@ Main Craft: Cooking - (20)
|
||||
Cooking Kit 20
|
||||
|
||||
|
||||
Initiate (21-30)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Roast Pipira
|
||||
|
||||
@@ -1320,9 +1314,7 @@ Main Craft: Cooking - (30)
|
||||
Yogurt
|
||||
|
||||
|
||||
Novice (31-40)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Salmon Eggs x3
|
||||
|
||||
@@ -2060,9 +2052,7 @@ Key Item: Patissier
|
||||
Apkallu Egg
|
||||
|
||||
|
||||
Apprentice (41-50)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Apple Vinegar x4
|
||||
|
||||
@@ -2948,9 +2938,7 @@ Main Craft: Cooking - (50)
|
||||
Cooking Kit 50
|
||||
|
||||
|
||||
Journeyman (51-60)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Bretzel x33
|
||||
|
||||
@@ -3907,9 +3895,7 @@ Main Craft: Cooking - (60)
|
||||
Cooking Kit 60
|
||||
|
||||
|
||||
Craftsman (61-70)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Cilbir
|
||||
|
||||
@@ -4952,9 +4938,7 @@ Main Craft: Cooking - (70)
|
||||
Grauberg Lettuce
|
||||
|
||||
|
||||
Artisan (71-80)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Crab Stewpot
|
||||
|
||||
@@ -5944,9 +5928,7 @@ Main Craft: Cooking - (80)
|
||||
Cooking Kit 80
|
||||
|
||||
|
||||
Adept (81-90)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Karni Yarik
|
||||
|
||||
@@ -7076,9 +7058,7 @@ Main Craft: Cooking - (90)
|
||||
Cooking Kit 90
|
||||
|
||||
|
||||
Veteran (91-100)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Angler Stewpot
|
||||
|
||||
@@ -7989,9 +7969,7 @@ Key Item: Stewpot Mastery
|
||||
Warthog Meat
|
||||
|
||||
|
||||
Expert (101-110)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Red Curry
|
||||
|
||||
@@ -8312,9 +8290,7 @@ Main Craft: Cooking - (110)
|
||||
Cerberus Meat
|
||||
|
||||
|
||||
Authority (111-120)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Altana's Repast
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,5 @@
|
||||
Goldsmithing Crafted Items
|
||||
Amateur (1-10)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Zinc Oxide
|
||||
|
||||
@@ -200,9 +198,7 @@ Main Craft: Goldsmithing - (10)
|
||||
Goldsmithing Kit 10
|
||||
|
||||
|
||||
Recruit (11-20)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Brass Sheet
|
||||
|
||||
@@ -805,9 +801,7 @@ Main Craft: Goldsmithing - (20)
|
||||
Sieglinde Putty
|
||||
|
||||
|
||||
Initiate (21-30)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Bastokan Subligar
|
||||
|
||||
@@ -1297,9 +1291,7 @@ Main Craft: Goldsmithing - (30)
|
||||
Goldsmithing Kit 30
|
||||
|
||||
|
||||
Novice (31-40)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Hiraishin x33
|
||||
|
||||
@@ -1870,9 +1862,7 @@ Main Craft: Goldsmithing - (40)
|
||||
Goldsmithing Kit 40
|
||||
|
||||
|
||||
Apprentice (41-50)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Mythril Ingot
|
||||
|
||||
@@ -2601,9 +2591,7 @@ Main Craft: Goldsmithing - (50)
|
||||
Goldsmithing Kit 50
|
||||
|
||||
|
||||
Journeyman (51-60)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: San d'Orian Sollerets
|
||||
|
||||
@@ -3721,9 +3709,7 @@ Main Craft: Goldsmithing - (60)
|
||||
Goldsmithing Kit 60
|
||||
|
||||
|
||||
Craftsman (61-70)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Auto-Repair Kit II x12
|
||||
|
||||
@@ -4593,9 +4579,7 @@ Main Craft: Goldsmithing - (70)
|
||||
Goldsmithing Kit 70
|
||||
|
||||
|
||||
Artisan (71-80)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Gold Cuisses
|
||||
|
||||
@@ -5372,9 +5356,7 @@ Main Craft: Goldsmithing - (80)
|
||||
Goldsmithing Kit 80
|
||||
|
||||
|
||||
Adept (81-90)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Jagdplaute
|
||||
|
||||
@@ -6411,9 +6393,7 @@ Main Craft: Goldsmithing - (90)
|
||||
Goldsmithing Kit 90
|
||||
|
||||
|
||||
Veteran (91-100)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Barone Zucchetto
|
||||
|
||||
@@ -7542,9 +7522,7 @@ Main Craft: Goldsmithing - (100)
|
||||
Snowsteel Ore x4
|
||||
|
||||
|
||||
Expert (101-110)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Amood
|
||||
|
||||
@@ -7991,9 +7969,7 @@ Sub Craft(s): Clothcraft - (55)
|
||||
Moldy Torque
|
||||
|
||||
|
||||
Authority (111-120)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Bewitched Schuhs
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,5 @@
|
||||
Leathercraft Crafted Items
|
||||
Amateur (1-10)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Sheep Leather
|
||||
|
||||
@@ -276,9 +274,7 @@ Main Craft: Leathercraft - (10)
|
||||
Leathercraft Kit 10
|
||||
|
||||
|
||||
Recruit (11-20)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Leather Pouch
|
||||
|
||||
@@ -610,9 +606,7 @@ Main Craft: Leathercraft - (20)
|
||||
Leathercraft Kit 20
|
||||
|
||||
|
||||
Initiate (21-30)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Dhalmel Leather
|
||||
|
||||
@@ -1147,9 +1141,7 @@ Main Craft: Leathercraft - (30)
|
||||
Leathercraft Kit 30
|
||||
|
||||
|
||||
Novice (31-40)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Parchment
|
||||
|
||||
@@ -1594,9 +1586,7 @@ Main Craft: Leathercraft - (40)
|
||||
Leathercraft Kit 40
|
||||
|
||||
|
||||
Apprentice (41-50)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Barbarian's Belt
|
||||
|
||||
@@ -1917,9 +1907,7 @@ Main Craft: Leathercraft - (50)
|
||||
Leathercraft Kit 50
|
||||
|
||||
|
||||
Journeyman (51-60)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Frigid Skin
|
||||
|
||||
@@ -2318,9 +2306,7 @@ Main Craft: Leathercraft - (60)
|
||||
Leathercraft Kit 60
|
||||
|
||||
|
||||
Craftsman (61-70)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Tiger Leather
|
||||
|
||||
@@ -2843,9 +2829,7 @@ Main Craft: Leathercraft - (70)
|
||||
Leathercraft Kit 70
|
||||
|
||||
|
||||
Artisan (71-80)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Coeurl Leather
|
||||
|
||||
@@ -3483,9 +3467,7 @@ Sub Craft(s): Smithing - (34)
|
||||
Darksteel Sheet
|
||||
|
||||
|
||||
Adept (81-90)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Marid Belt
|
||||
|
||||
@@ -4341,9 +4323,7 @@ Main Craft: Leathercraft - (90)
|
||||
Leathercraft Kit 90
|
||||
|
||||
|
||||
Veteran (91-100)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Bison Wristbands
|
||||
|
||||
@@ -5272,9 +5252,7 @@ Main Craft: Leathercraft - (100)
|
||||
Bounding Belinda's Hide
|
||||
|
||||
|
||||
Expert (101-110)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Corselet
|
||||
|
||||
@@ -5802,9 +5780,7 @@ Sub Craft(s): Bonecraft - (55)
|
||||
Moldy Collar
|
||||
|
||||
|
||||
Authority (111-120)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Bewitched Pumps
|
||||
|
||||
|
||||
@@ -1,443 +1,443 @@
|
||||
category,level,subcrafts,name,crystal,key_item,ingredients,hq_yields
|
||||
Amateur,2,[],Sheep Leather,Dark,,"[[""Sheepskin"", 1], [""Willow Log"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,2,[],Sheep Leather,Dark,,"[[""Sheepskin"", 1], [""Windurstian Tea Leaves"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,2,[],Sheep Leather,Dark,Tanning,"[[""Sheepskin"", 3], [""Windurstian Tea Leaves"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,2,[],Smooth Sheep Leather,Dark,Leather Purification,"[[""Sheepskin"", 1], [""Willow Log"", 1], [""Distilled Water"", 1], [""Wind Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
|
||||
Amateur,2,[],Smooth Sheep Leather,Dark,Leather Purification,"[[""Sheepskin"", 1], [""Windurstian Tea Leaves"", 1], [""Distilled Water"", 1], [""Wind Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
|
||||
Amateur,2,[],Vivio Sheep Leather,Dark,Leather Purification,"[[""Sheepskin"", 1], [""Willow Log"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,2,[],Vivio Sheep Leather,Dark,Leather Purification,"[[""Sheepskin"", 1], [""Windurstian Tea Leaves"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,3,"[[""Woodworking"", 1]]",Cesti,Earth,,"[[""Ash Lumber"", 1], [""Sheep Leather"", 2]]","[[""Cesti +1"", 1], null, null]"
|
||||
Amateur,3,[],Vagabond's Gloves,Earth,,"[[""Sheep Leather"", 2], [""Cotton Cloth"", 1]]","[[""Nomad's Gloves"", 1], null, null]"
|
||||
Amateur,4,[],Sheep Wool,Wind,,"[[""Sheepskin"", 2]]","[null, null, null]"
|
||||
Amateur,5,[],Leather Bandana,Wind,,"[[""Sheep Leather"", 1]]","[[""Leather Bandana +1"", 1], null, null]"
|
||||
Amateur,5,[],Vagabond's Boots,Earth,,"[[""Bronze Scales"", 1], [""Grass Cloth"", 1], [""Sheep Leather"", 2]]","[[""Nomad's Boots"", 1], null, null]"
|
||||
Amateur,5,[],Leather Bandana,Wind,,"[[""Leathercraft Kit 5"", 1]]","[null, null, null]"
|
||||
Amateur,5,[],Fine Parchment,Dark,,"[[""Parchment"", 1], [""Pumice Stone"", 1]]","[null, null, null]"
|
||||
Amateur,6,[],Leather Highboots,Earth,,"[[""Bronze Scales"", 1], [""Sheep Leather"", 3]]","[[""Leather Highboots +1"", 1], null, null]"
|
||||
Amateur,7,[],Rabbit Mantle,Earth,,"[[""Rabbit Hide"", 5], [""Grass Thread"", 1]]","[[""Rabbit Mantle +1"", 1], null, null]"
|
||||
Amateur,8,[],Leather Gloves,Earth,,"[[""Grass Cloth"", 1], [""Sheep Leather"", 2]]","[[""Leather Gloves +1"", 1], null, null]"
|
||||
Amateur,8,[],San d'Orian Cesti,Earth,,"[[""Royal Archer's Cesti"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Cesti"", 1], null, null]"
|
||||
Amateur,9,[],Leather Trousers,Earth,,"[[""Grass Cloth"", 2], [""Sheep Leather"", 2]]","[[""Leather Trousers +1"", 1], null, null]"
|
||||
Amateur,10,[],Leather Vest,Earth,,"[[""Sheep Leather"", 3], [""Lizard Skin"", 1]]","[[""Leather Vest +1"", 1], null, null]"
|
||||
Amateur,10,[],Leather Vest,Earth,,"[[""Leathercraft Kit 10"", 1], [""Recruit (11-20)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,11,"[[""Smithing"", 4]]",Leather Pouch,Earth,,"[[""Bronze Scales"", 1], [""Sheep Leather"", 2], [""Rabbit Hide"", 1]]","[null, null, null]"
|
||||
Amateur,11,[],Solea,Wind,,"[[""Sheep Leather"", 2]]","[[""Solea +1"", 1], null, null]"
|
||||
Amateur,12,[],Karakul Leather,Dark,,"[[""Karakul Skin"", 1], [""Imperial Tea Leaves"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,12,[],Karakul Leather,Dark,Tanning,"[[""Karakul Skin"", 3], [""Imperial Tea Leaves"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,12,[],Lizard Belt,Wind,,"[[""Lizard Skin"", 1], [""Iron Chain"", 1]]","[[""Lizard Belt +1"", 1], null, null]"
|
||||
Amateur,12,[],Sturdy Trousers,Earth,Leather Purification,"[[""Leather Trousers"", 1], [""Lambent Fire Cell"", 1], [""Lambent Earth Cell"", 1]]","[null, null, null]"
|
||||
Amateur,12,[],Lizard Strap,Wind,,"[[""Lizard Skin"", 2]]","[[""Lizard Strap +1"", 1], null, null]"
|
||||
Amateur,13,[],Leather Belt,Wind,,"[[""Sheep Leather"", 1], [""Iron Chain"", 1]]","[[""Leather Belt +1"", 1], null, null]"
|
||||
Amateur,14,[],Fisherman's Gloves,Earth,,"[[""Lizard Skin"", 2], [""Cotton Cloth"", 1]]","[[""Angler's Gloves"", 1], null, null]"
|
||||
Amateur,14,[],Karakul Wool,Wind,,"[[""Karakul Skin"", 2]]","[null, null, null]"
|
||||
Amateur,14,[],Lizard Mantle,Earth,,"[[""Lizard Skin"", 1], [""Lizard Molt"", 1], [""Grass Thread"", 1]]","[[""Lizard Mantle +1"", 1], null, null]"
|
||||
Amateur,15,[],Lizard Helm,Earth,,"[[""Lizard Skin"", 2], [""Sheep Leather"", 1]]","[[""Lizard Helm +1"", 1], null, null]"
|
||||
Amateur,15,[],Lizard Helm,Earth,,"[[""Leathercraft Kit 15"", 1]]","[null, null, null]"
|
||||
Amateur,16,[],Augmenting Belt,Wind,Leather Purification,"[[""Lambent Fire Cell"", 1], [""Lambent Earth Cell"", 1], [""Leather Belt"", 1]]","[null, null, null]"
|
||||
Amateur,16,[],Lizard Gloves,Earth,,"[[""Lizard Skin"", 1], [""Leather Gloves"", 1]]","[[""Fine Gloves"", 1], null, null]"
|
||||
Amateur,17,[],Lizard Cesti,Earth,,"[[""Cesti"", 1], [""Lizard Skin"", 1]]","[[""Burning Cesti"", 1], null, null]"
|
||||
Amateur,17,[],Exactitude Mantle,Earth,,"[[""Immortal Molt"", 1], [""Lizard Skin"", 1], [""Grass Thread"", 1]]","[[""Exactitude Mantle +1"", 1], null, null]"
|
||||
Amateur,18,"[[""Goldsmithing"", 5]]",Lizard Ledelsens,Earth,,"[[""Lizard Skin"", 1], [""Brass Sheet"", 1], [""Leather Highboots"", 1]]","[[""Fine Ledelsens"", 1], null, null]"
|
||||
Amateur,18,[],Lizard Trousers,Earth,,"[[""Lizard Skin"", 2], [""Leather Trousers"", 1]]","[[""Fine Trousers"", 1], null, null]"
|
||||
Amateur,19,[],Lizard Jerkin,Earth,,"[[""Lizard Skin"", 3], [""Sheep Leather"", 1]]","[[""Fine Jerkin"", 1], null, null]"
|
||||
Amateur,19,[],Wolf Fur,Wind,,"[[""Wolf Hide"", 3]]","[null, null, null]"
|
||||
Amateur,20,[],Fisherman's Boots,Earth,,"[[""Lizard Skin"", 2], [""Bronze Scales"", 1], [""Grass Cloth"", 1]]","[[""Angler's Boots"", 1], null, null]"
|
||||
Amateur,20,[],Little Worm Belt,Earth,,"[[""Sheep Leather"", 1], [""Animal Glue"", 1], [""Leather Pouch"", 1], [""Worm Mulch"", 1]]","[null, null, null]"
|
||||
Amateur,20,[],Lugworm Belt,Earth,,"[[""Sheep Leather"", 1], [""Animal Glue"", 1], [""Leather Pouch"", 1], [""Lugworm Sand"", 1]]","[null, null, null]"
|
||||
Amateur,20,[],Smash Cesti,Earth,Leather Ensorcellment,"[[""Lambent Earth Cell"", 1], [""Lambent Wind Cell"", 1], [""Lizard Cesti"", 1]]","[null, null, null]"
|
||||
Amateur,20,[],Fisherman's Boots,Earth,,"[[""Leathercraft Kit 20"", 1], [""Initiate (21-30)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,21,[],Dhalmel Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Dhalmel Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,21,[],Dhalmel Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Dhalmel Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,21,[],Dhalmel Leather,Dark,,"[[""Willow Log"", 1], [""Dhalmel Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,21,[],Fragrant Dhalmel Hide,Water,Leather Ensorcellment,"[[""Dhalmel Hide"", 1], [""Wind Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
Amateur,21,[],Tough Dhalmel Leather,Dark,Leather Ensorcellment,"[[""Dhalmel Hide"", 1], [""Windurstian Tea Leaves"", 1], [""Distilled Water"", 1], [""Wind Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
Amateur,21,[],Tough Dhalmel Leather,Dark,Leather Ensorcellment,"[[""Dhalmel Hide"", 1], [""Willow Log"", 1], [""Distilled Water"", 1], [""Wind Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
Amateur,22,[],Leather Ring,Wind,,"[[""Dhalmel Leather"", 1]]","[[""Leather Ring +1"", 1], null, null]"
|
||||
Amateur,22,[],Chocobo Blinkers,Earth,,"[[""Linen Cloth"", 1], [""Silk Cloth"", 1], [""Karakul Leather"", 1]]","[[""Chocobo Blinkers x6 Verification Needed"", 1], [""Chocobo Blinkers x9 Verification Needed"", 1], [""Chocobo Blinkers x12 Verification Needed"", 1]]"
|
||||
Amateur,23,[],Chocobo Gloves,Earth,,"[[""Dhalmel Leather"", 1], [""Lizard Skin"", 1], [""Cotton Cloth"", 1]]","[[""Rider's Gloves"", 1], null, null]"
|
||||
Amateur,24,[],Bugard Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,24,[],Bugard Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Bugard Skin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,24,[],Bugard Leather,Dark,,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,24,[],Glossy Bugard Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Wind Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,24,[],Glossy Bugard Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Wind Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,24,[],Rugged Bugard Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Fire Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,24,[],Rugged Bugard Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Fire Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,24,[],Soft Bugard Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Lightning Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,24,[],Soft Bugard Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Lightning Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,24,[],Studded Bandana,Earth,,"[[""Iron Chain"", 1], [""Leather Bandana"", 1]]","[[""Strong Bandana"", 1], null, null]"
|
||||
Amateur,24,[],Tough Bugard Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Earth Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,24,[],Tough Bugard Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Earth Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,25,[],Armored Ring,Wind,,"[[""Tough Dhalmel Leather"", 1], [""Leather Ring"", 1]]","[null, null, null]"
|
||||
Amateur,25,"[[""Clothcraft"", 20]]",Seer's Pumps,Earth,,"[[""Wool Thread"", 2], [""Cotton Cloth"", 2], [""Sheep Leather"", 1]]","[[""Seer's Pumps +1"", 1], null, null]"
|
||||
Amateur,25,[],Warrior's Belt,Wind,,"[[""Iron Chain"", 1], [""Dhalmel Leather"", 1]]","[[""Warrior's Belt +1"", 1], null, null]"
|
||||
Amateur,25,[],Warrior's Belt,Wind,,"[[""Leathercraft Kit 25"", 1]]","[null, null, null]"
|
||||
Amateur,26,[],Studded Gloves,Earth,,"[[""Iron Chain"", 1], [""Dhalmel Leather"", 1], [""Leather Gloves"", 1]]","[[""Strong Gloves"", 1], null, null]"
|
||||
Amateur,26,"[[""Clothcraft"", 21]]",Trader's Pigaches,Earth,,"[[""Dhalmel Leather"", 1], [""Sheep Leather"", 1], [""Red Grass Thread"", 1], [""Red Grass Cloth"", 2]]","[[""Baron's Pigaches"", 1], null, null]"
|
||||
Amateur,27,[],Dhalmel Mantle,Ice,,"[[""Dhalmel Hide"", 1], [""Wool Thread"", 1]]","[[""Dhalmel Mantle +1"", 1], null, null]"
|
||||
Amateur,28,"[[""Clothcraft"", 27]]",Noct Brais,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 2], [""Sheep Leather"", 1]]","[[""Noct Brais +1"", 1], null, null]"
|
||||
Amateur,28,[],Studded Boots,Earth,,"[[""Iron Chain"", 1], [""Dhalmel Leather"", 1], [""Leather Highboots"", 1]]","[[""Strong Boots"", 1], null, null]"
|
||||
Amateur,29,[],San d'Orian Bandana,Earth,,"[[""Royal Footman's Bandana"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Bandana"", 1], null, null]"
|
||||
Amateur,29,[],Sandals,Wind,,"[[""Dhalmel Leather"", 1], [""Sheep Leather"", 1]]","[[""Mage's Sandals"", 1], null, null]"
|
||||
Amateur,29,[],Aiming Gloves,Earth,Leather Ensorcellment,"[[""Lambent Water Cell"", 1], [""Lambent Wind Cell"", 1], [""Studded Gloves"", 1]]","[null, null, null]"
|
||||
Amateur,29,[],Dhalmel Hair,Wind,,"[[""Dhalmel Hide"", 3]]","[[""Dhalmel Hair"", 2], [""Dhalmel Hair"", 3], [""Dhalmel Hair"", 4]]"
|
||||
Amateur,30,[],Breath Mantle,Ice,,"[[""Fragrant Dhalmel Hide"", 1], [""Dhalmel Mantle"", 1]]","[null, null, null]"
|
||||
Amateur,30,[],Caliginous Wolf Hide,Ice,Leather Purification,"[[""Wolf Hide"", 1], [""Earth Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
|
||||
Amateur,30,[],Chocobo Boots,Earth,,"[[""Dhalmel Leather"", 2], [""Bronze Scales"", 1], [""Grass Cloth"", 1]]","[[""Rider's Boots"", 1], null, null]"
|
||||
Amateur,30,[],Studded Trousers,Earth,,"[[""Iron Chain"", 1], [""Dhalmel Leather"", 1], [""Leather Trousers"", 1]]","[[""Strong Trousers"", 1], null, null]"
|
||||
Amateur,30,[],Studded Trousers,Earth,,"[[""Leathercraft Kit 30"", 1], [""Novice (31-40)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,31,[],Parchment,Dark,,"[[""Karakul Leather"", 1], [""Rolanberry"", 1]]","[null, null, null]"
|
||||
Amateur,31,[],Parchment,Dark,,"[[""Rolanberry"", 1], [""Sheep Leather"", 1]]","[[""Parchment"", 2], [""Parchment"", 3], [""Parchment"", 4]]"
|
||||
Amateur,31,[],San d'Orian Gloves,Earth,,"[[""Royal Footman's Gloves"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Gloves"", 1], null, null]"
|
||||
Amateur,31,[],Vellum,Dark,,"[[""Rolanberry"", 1], [""Sheep Leather"", 1], [""Gold Dust"", 1]]","[[""Vellum"", 4], null, null]"
|
||||
Amateur,32,[],Studded Vest,Earth,,"[[""Dhalmel Leather"", 1], [""Ram Leather"", 1], [""Iron Chain"", 1], [""Leather Vest"", 1]]","[[""Strong Vest"", 1], null, null]"
|
||||
Amateur,33,[],Field Gloves,Earth,,"[[""Dhalmel Leather"", 1], [""Cotton Cloth"", 1], [""Ram Leather"", 1]]","[[""Worker Gloves"", 1], null, null]"
|
||||
Amateur,33,[],San d'Orian Boots,Earth,,"[[""Royal Footman's Boots"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Boots"", 1], null, null]"
|
||||
Amateur,33,[],Wolf Mantle,Ice,,"[[""Wolf Hide"", 1], [""Wool Thread"", 1]]","[[""Wolf Mantle +1"", 1], null, null]"
|
||||
Amateur,34,"[[""Clothcraft"", 8]]",Shoes,Earth,,"[[""Dhalmel Leather"", 2], [""Cotton Cloth"", 1]]","[[""Shoes +1"", 1], null, null]"
|
||||
Amateur,35,[],Bloody Ram Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Ram Skin"", 1], [""Earth Anima"", 1], [""Lightning Anima"", 1], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,35,[],Healing Vest,Earth,,"[[""Vivio Sheep Leather"", 1], [""Studded Vest"", 1]]","[null, null, null]"
|
||||
Amateur,35,[],Light Ram Leather,Dark,Leather Purification,"[[""Ram Skin"", 1], [""Windurstian Tea Leaves"", 1], [""Distilled Water"", 1], [""Ice Anima"", 1], [""Lightning Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
|
||||
Amateur,35,[],Ram Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Ram Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,35,[],Ram Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Ram Skin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,35,[],San d'Orian Trousers,Earth,,"[[""Royal Footman's Trousers"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Trousers"", 1], null, null]"
|
||||
Amateur,35,[],Ram Leather,Dark,,"[[""Leathercraft Kit 35"", 1]]","[null, null, null]"
|
||||
Amateur,36,[],Bloody Ram Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Ram Skin"", 1], [""Earth Anima"", 1], [""Lightning Anima"", 1], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,36,[],Fragrant Ram Skin,Water,Leather Ensorcellment,"[[""Ram Skin"", 1], [""Wind Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
Amateur,36,[],Invisible Mantle,Ice,,"[[""Caliginous Wolf Hide"", 1], [""Wolf Mantle"", 1]]","[null, null, null]"
|
||||
Amateur,36,[],Light Ram Leather,Dark,Leather Purification,"[[""Ram Skin"", 1], [""Willow Log"", 1], [""Distilled Water"", 1], [""Ice Anima"", 1], [""Lightning Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
|
||||
Amateur,36,[],Ram Leather,Dark,,"[[""Willow Log"", 1], [""Ram Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,37,"[[""Clothcraft"", 28]]",Garish Pumps,Earth,,"[[""Sheep Leather"", 1], [""Scarlet Linen"", 2], [""Bloodthread"", 2]]","[[""Rubious Pumps"", 1], null, null]"
|
||||
Amateur,37,[],Leather Gorget,Earth,,"[[""Ram Leather"", 1], [""Grass Thread"", 1]]","[[""Leather Gorget +1"", 1], null, null]"
|
||||
Amateur,37,[],Magic Belt,Wind,,"[[""Toad Oil"", 1], [""Mercury"", 1], [""Ram Leather"", 1]]","[[""Magic Belt +1"", 1], null, null]"
|
||||
Amateur,37,[],San d'Orian Vest,Earth,,"[[""Royal Footman's Vest"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Vest"", 1], null, null]"
|
||||
Amateur,38,[],Cuir Bandana,Water,,"[[""Ram Leather"", 1], [""Beeswax"", 1], [""Leather Bandana"", 1]]","[[""Cuir Bandana +1"", 1], null, null]"
|
||||
Amateur,39,[],Combat Caster's Shoes +1,Earth,,"[[""Combat Caster's Shoes"", 1], [""Dhalmel Leather"", 1]]","[[""Combat Caster's Shoes +2"", 1], null, null]"
|
||||
Amateur,39,"[[""Alchemy"", 10]]",Laminated Ram Leather,Earth,,"[[""Ram Leather"", 1], [""Animal Glue"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,39,[],Wolf Gorget,Earth,,"[[""Cotton Thread"", 1], [""Wolf Hide"", 1]]","[[""Wolf Gorget +1"", 1], null, null]"
|
||||
Amateur,40,[],Cuir Gloves,Water,,"[[""Ram Leather"", 2], [""Beeswax"", 1], [""Leather Gloves"", 1]]","[[""Cuir Gloves +1"", 1], null, null]"
|
||||
Amateur,40,[],Field Boots,Earth,,"[[""Bronze Scales"", 1], [""Grass Cloth"", 1], [""Ram Leather"", 2]]","[[""Worker Boots"", 1], null, null]"
|
||||
Amateur,40,[],Mist Pumps,Earth,,"[[""Smooth Sheep Leather"", 1], [""Garish Pumps"", 1]]","[null, null, null]"
|
||||
Amateur,40,[],Field Boots,Earth,,"[[""Leathercraft Kit 40"", 1], [""Apprentice (41-50)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,41,[],Barbarian's Belt,Water,,"[[""Leather Belt"", 1], [""Fiend Blood"", 1], [""Beastman Blood"", 1]]","[[""Brave Belt"", 1], null, null]"
|
||||
Amateur,42,[],Cuir Highboots,Water,,"[[""Ram Leather"", 2], [""Beeswax"", 1], [""Leather Highboots"", 1]]","[[""Cuir Highboots +1"", 1], null, null]"
|
||||
Amateur,43,[],Waistbelt,Wind,,"[[""Grass Thread"", 1], [""Ram Leather"", 2]]","[[""Waistbelt +1"", 1], null, null]"
|
||||
Amateur,44,[],Acrobat's Belt,Earth,,"[[""Glossy Bugard Leather"", 1], [""Barbarian's Belt"", 1]]","[null, null, null]"
|
||||
Amateur,44,[],Runner's Belt,Earth,,"[[""Soft Bugard Leather"", 1], [""Barbarian's Belt"", 1]]","[null, null, null]"
|
||||
Amateur,44,[],Samsonian Belt,Earth,,"[[""Rugged Bugard Leather"", 1], [""Barbarian's Belt"", 1]]","[null, null, null]"
|
||||
Amateur,44,[],Tough Belt,Earth,,"[[""Tough Bugard Leather"", 1], [""Barbarian's Belt"", 1]]","[null, null, null]"
|
||||
Amateur,45,[],Cuir Trousers,Water,,"[[""Ram Leather"", 2], [""Beeswax"", 1], [""Leather Trousers"", 1]]","[[""Cuir Trousers +1"", 1], null, null]"
|
||||
Amateur,45,"[[""Clothcraft"", 27]]",Chocobo Jack Coat,Earth,,"[[""Linen Cloth"", 1], [""Sheep Leather"", 1], [""Wool Thread"", 1], [""Wool Cloth"", 1], [""Ram Leather"", 2]]","[[""Rider's Jack Coat"", 1], null, null]"
|
||||
Amateur,45,[],Powder Boots,Earth,,"[[""Tough Dhalmel Leather"", 1], [""Cuir Highboots"", 1]]","[null, null, null]"
|
||||
Amateur,45,"[[""Clothcraft"", 4]]",Tarasque Mitts,Earth,,"[[""Saruta Cotton"", 1], [""Tarasque Skin"", 2], [""Grass Thread"", 2]]","[[""Tarasque Mitts +1"", 1], null, null]"
|
||||
Amateur,45,[],Cuir Trousers,Water,,"[[""Leathercraft Kit 45"", 1]]","[null, null, null]"
|
||||
Amateur,46,[],Cuir Bouilli,Water,,"[[""Ram Leather"", 2], [""Beeswax"", 1], [""Leather Vest"", 1]]","[[""Cuir Bouilli +1"", 1], null, null]"
|
||||
Amateur,46,[],Haste Belt,Earth,,"[[""Light Ram Leather"", 1], [""Waistbelt"", 1]]","[null, null, null]"
|
||||
Amateur,46,[],Royal Knight's Belt +1,Earth,,"[[""Royal Knight's Belt"", 1], [""Ram Leather"", 1]]","[[""Royal Knight's Belt +2"", 1], null, null]"
|
||||
Amateur,46,[],Narasimha Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Narasimha Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,47,[],Narasimha Leather,Dark,,"[[""Willow Log"", 1], [""Narasimha Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,48,[],Corsette,Earth,,"[[""Waistbelt"", 1], [""Coeurl Whisker"", 1], [""Scarlet Ribbon"", 1], [""Dhalmel Leather"", 1], [""Silk Cloth"", 1]]","[[""Corsette +1"", 1], null, null]"
|
||||
Amateur,49,[],Buffalo Leather,Dark,,"[[""Willow Log"", 1], [""Buffalo Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,49,[],Buffalo Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Buffalo Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,49,[],Buffalo Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Buffalo Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,49,[],Ram Mantle,Ice,,"[[""Ram Skin"", 1], [""Wool Thread"", 1]]","[[""Ram Mantle +1"", 1], null, null]"
|
||||
Amateur,50,[],Narasimha's Cesti,Earth,,"[[""Cesti"", 1], [""Narasimha Leather"", 1]]","[[""Vishnu's Cesti"", 1], null, null]"
|
||||
Amateur,50,[],Leather Shield,Earth,,"[[""Ram Leather"", 1], [""Raptor Skin"", 1], [""Lauan Shield"", 1]]","[[""Leather Shield +1"", 1], null, null]"
|
||||
Amateur,50,[],Leather Shield,Earth,,"[[""Leathercraft Kit 50"", 1], [""Journeyman (51-60)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,51,[],Frigid Skin,Dark,Leather Ensorcellment,"[[""Raptor Skin"", 1], [""Ice Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
Amateur,52,[],High Breath Mantle,Ice,,"[[""Fragrant Ram Skin"", 1], [""Ram Mantle"", 1]]","[null, null, null]"
|
||||
Amateur,52,[],Himantes,Earth,,"[[""Raptor Skin"", 1], [""Lizard Cesti"", 1]]","[[""Himantes +1"", 1], null, null]"
|
||||
Amateur,52,[],Moblin Sheep Leather,Dark,,"[[""Willow Log"", 1], [""Moblin Sheepskin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,52,[],Moblin Sheep Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Moblin Sheepskin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,52,[],Moblin Sheep Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Moblin Sheepskin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,53,"[[""Alchemy"", 9]]",Laminated Buffalo Leather,Earth,,"[[""Animal Glue"", 1], [""Buffalo Leather"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,53,[],Raptor Strap,Wind,,"[[""Raptor Skin"", 2]]","[[""Raptor Strap +1"", 1], null, null]"
|
||||
Amateur,53,[],Raptor Mantle,Earth,,"[[""Raptor Skin"", 2], [""Grass Thread"", 1]]","[[""Dino Mantle"", 1], null, null]"
|
||||
Amateur,54,[],Moblin Sheep Wool,Wind,,"[[""Moblin Sheepskin"", 2]]","[null, null, null]"
|
||||
Amateur,54,[],Raptor Trousers,Earth,,"[[""Raptor Skin"", 2], [""Cuir Trousers"", 1]]","[[""Dino Trousers"", 1], null, null]"
|
||||
Amateur,55,"[[""Goldsmithing"", 28]]",Raptor Ledelsens,Earth,,"[[""Raptor Skin"", 1], [""Cuir Highboots"", 1], [""Mythril Sheet"", 1]]","[[""Dino Ledelsens"", 1], null, null]"
|
||||
Amateur,55,[],Noble Himantes,Earth,Leather Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Himantes"", 1]]","[null, null, null]"
|
||||
Amateur,55,[],Raptor Gloves,Earth,,"[[""Leathercraft Kit 55"", 1]]","[null, null, null]"
|
||||
Amateur,56,"[[""Clothcraft"", 49]]",Crow Gaiters,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 3], [""Sheep Leather"", 1], [""Ram Leather"", 1], [""Tiger Leather"", 1]]","[[""Raven Gaiters"", 1], null, null]"
|
||||
Amateur,56,"[[""Smithing"", 28]]",Raptor Helm,Earth,,"[[""Raptor Skin"", 2], [""Iron Sheet"", 1], [""Sheep Leather"", 1]]","[[""Dino Helm"", 1], null, null]"
|
||||
Amateur,56,[],Royal Squire's Shield +1,Earth,,"[[""Royal Squire's Shield"", 1], [""Ram Leather"", 1]]","[[""Royal Squire's Shield +2"", 1], null, null]"
|
||||
Amateur,57,"[[""Goldsmithing"", 50], [""Clothcraft"", 48]]",Brigandine,Earth,,"[[""Lizard Jerkin"", 1], [""Velvet Cloth"", 2], [""Gold Sheet"", 1], [""Ram Leather"", 1], [""Mythril Sheet"", 1], [""Brass Scales"", 1]]","[[""Brigandine +1"", 1], null, null]"
|
||||
Amateur,57,[],Desert Boots,Earth,,"[[""Bronze Scales"", 1], [""Sheep Leather"", 2], [""Yowie Skin"", 1]]","[[""Desert Boots +1"", 1], null, null]"
|
||||
Amateur,57,[],Ice Trousers,Earth,,"[[""Frigid Skin"", 1], [""Raptor Trousers"", 1]]","[null, null, null]"
|
||||
Amateur,57,[],Raptor Gloves,Earth,,"[[""Cuir Gloves"", 1], [""Raptor Skin"", 1]]","[[""Dino Gloves"", 1], null, null]"
|
||||
Amateur,58,[],Catoblepas Leather,Dark,,"[[""Willow Log"", 1], [""Catoblepas Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,58,[],Catoblepas Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Catoblepas Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,58,[],Catoblepas Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Catoblepas Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,58,[],Raptor Jerkin,Earth,,"[[""Raptor Skin"", 2], [""Sheep Leather"", 1]]","[[""Dino Jerkin"", 1], null, null]"
|
||||
Amateur,59,"[[""Smithing"", 50]]",Brigandine,Earth,,"[[""Clothcraft - (38)"", 1], [""Darksteel Sheet"", 2], [""Linen Cloth"", 1], [""Iron Chain"", 1], [""Tiger Leather"", 1], [""Sheep Leather"", 1], [""Velvet Cloth"", 1], [""Wool Thread"", 1]]","[[""Brigandine +1"", 1], null, null]"
|
||||
Amateur,59,"[[""Clothcraft"", 8]]",Moccasins,Earth,,"[[""Dhalmel Leather"", 1], [""Linen Cloth"", 1], [""Raptor Skin"", 1]]","[[""Moccasins +1"", 1], null, null]"
|
||||
Amateur,60,[],Amemet Mantle,Earth,,"[[""Amemet Skin"", 1], [""Lizard Molt"", 1], [""Grass Thread"", 1]]","[[""Amemet Mantle +1"", 1], null, null]"
|
||||
Amateur,60,[],Blizzard Gloves,Earth,,"[[""Frigid Skin"", 1], [""Raptor Gloves"", 1]]","[null, null, null]"
|
||||
Amateur,60,[],Hard Leather Ring,Wind,,"[[""Leathercraft Kit 60"", 1], [""Craftsman (61-70)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,61,[],Tiger Leather,Dark,,"[[""Willow Log"", 1], [""Tiger Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,61,[],Tiger Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Tiger Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,61,[],Tiger Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Tiger Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,61,[],Smilodon Leather,Dark,,"[[""Willow Log"", 1], [""Smilodon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,61,[],Smilodon Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Smilodon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,61,[],Smilodon Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Smilodon Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,61,[],Spirit Smilodon Leather,Dark,Leather Purification,"[[""Earth Anima"", 2], [""Dark Anima"", 1], [""Windurstian Tea Leaves"", 1], [""Smilodon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,61,[],Spirit Smilodon Leather,Dark,Leather Purification,"[[""Earth Anima"", 2], [""Dark Anima"", 1], [""Willow Log"", 1], [""Smilodon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,62,[],Hard Leather Ring,Wind,,"[[""Tiger Leather"", 1]]","[[""Tiger Ring"", 1], null, null]"
|
||||
Amateur,62,"[[""Goldsmithing"", 57], [""Clothcraft"", 54]]",Premium Bag,Earth,,"[[""Bugard Leather"", 1], [""Gold Thread"", 1], [""Moblin Sheep Leather"", 1], [""Moblin Sheep Wool"", 1], [""Platinum Ingot"", 1], [""Rainbow Cloth"", 1], [""Rainbow Thread"", 1]]","[null, null, null]"
|
||||
Amateur,62,[],Smilodon Ring,Wind,,"[[""Smilodon Leather"", 1]]","[[""Smilodon Ring +1"", 1], null, null]"
|
||||
Amateur,63,[],Beak Mantle,Earth,,"[[""Cockatrice Skin"", 2], [""Grass Thread"", 1]]","[[""Beak Mantle +1"", 1], null, null]"
|
||||
Amateur,63,"[[""Clothcraft"", 46]]",Crow Hose,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Sheep Leather"", 1], [""Tiger Leather"", 2]]","[[""Raven Hose"", 1], null, null]"
|
||||
Amateur,63,[],Bugard Strap,Wind,,"[[""Bugard Leather"", 2]]","[[""Bugard Strap +1"", 1], null, null]"
|
||||
Amateur,64,[],Beak Trousers,Earth,,"[[""Cockatrice Skin"", 2], [""Cuir Trousers"", 1]]","[[""Beak Trousers +1"", 1], null, null]"
|
||||
Amateur,64,"[[""Clothcraft"", 25]]",Jaridah Khud,Earth,,"[[""Karakul Leather"", 1], [""Marid Leather"", 1], [""Marid Hair"", 1], [""Karakul Cloth"", 1]]","[[""Akinji Khud"", 1], null, null]"
|
||||
Amateur,64,[],Stirge Belt,Wind,,"[[""Ram Leather"", 1], [""Mercury"", 1], [""Toad Oil"", 1], [""Volant Serum"", 1]]","[null, null, null]"
|
||||
Amateur,65,"[[""Goldsmithing"", 28]]",Beak Ledelsens,Earth,,"[[""Cockatrice Skin"", 1], [""Cuir Highboots"", 1], [""Mythril Sheet"", 1]]","[[""Beak Ledelsens +1"", 1], null, null]"
|
||||
Amateur,65,"[[""Alchemy"", 43]]",Sheep Chammy,Dark,,"[[""Sheepskin"", 1], [""Windurstian Tea Leaves"", 1], [""Clot Plasma"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,65,"[[""Alchemy"", 43]]",Sheep Chammy,Dark,,"[[""Sheepskin"", 1], [""Willow Log"", 1], [""Clot Plasma"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,65,[],Protect Ring,Earth,,"[[""Smilodon Ring"", 1], [""Spirit Smilodon Leather"", 1]]","[null, null, null]"
|
||||
Amateur,66,[],Battle Boots,Earth,,"[[""Iron Scales"", 1], [""Ram Leather"", 2], [""Tiger Leather"", 1]]","[[""Battle Boots +1"", 1], null, null]"
|
||||
Amateur,66,"[[""Smithing"", 43], [""Clothcraft"", 39]]",Jaridah Peti,Earth,,"[[""Steel Ingot"", 1], [""Steel Sheet"", 1], [""Darksteel Chain"", 1], [""Brass Chain"", 1], [""Velvet Cloth"", 1], [""Karakul Leather"", 1], [""Marid Leather"", 1], [""Karakul Cloth"", 1]]","[[""Akinji Peti"", 1], null, null]"
|
||||
Amateur,66,[],Battle Boots,Earth,,"[[""Leathercraft Kit 66"", 1]]","[null, null, null]"
|
||||
Amateur,67,"[[""Smithing"", 28]]",Beak Helm,Earth,,"[[""Iron Sheet"", 1], [""Sheep Leather"", 1], [""Cockatrice Skin"", 2]]","[[""Beak Helm +1"", 1], null, null]"
|
||||
Amateur,67,[],White Mouton,Dark,,"[[""Willow Log"", 1], [""Ram Skin"", 1], [""Shell Powder"", 2], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,67,[],White Mouton,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Ram Skin"", 1], [""Shell Powder"", 2], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,68,[],Beak Gloves,Earth,,"[[""Cockatrice Skin"", 1], [""Cuir Gloves"", 1]]","[[""Beak Gloves +1"", 1], null, null]"
|
||||
Amateur,68,"[[""Woodworking"", 53], [""Smithing"", 9]]",Hoplon,Earth,,"[[""Bronze Sheet"", 1], [""Chestnut Lumber"", 1], [""Walnut Lumber"", 1], [""Ram Leather"", 1]]","[[""Hoplon +1"", 1], null, null]"
|
||||
Amateur,69,[],Beak Jerkin,Earth,,"[[""Sheep Leather"", 1], [""Cockatrice Skin"", 2]]","[[""Beak Jerkin +1"", 1], null, null]"
|
||||
Amateur,69,"[[""Smithing"", 34]]",Byrnie,Earth,,"[[""Darksteel Sheet"", 1], [""Dhalmel Leather"", 1], [""Ram Leather"", 1], [""Tiger Leather"", 1], [""Behemoth Leather"", 1], [""Silver Mail"", 1]]","[[""Byrnie +1"", 1], null, null]"
|
||||
Amateur,69,[],Tabin Boots,Earth,,"[[""Marid Leather"", 1], [""Battle Boots"", 1]]","[[""Tabin Boots +1"", 1], null, null]"
|
||||
Amateur,69,[],Silky Suede,Wind,,"[[""Garnet"", 1], [""Buffalo Leather"", 1]]","[null, null, null]"
|
||||
Amateur,70,[],Behemoth Leather,Dark,,"[[""Willow Log"", 1], [""Behemoth Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,70,[],Behemoth Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Behemoth Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,70,[],Behemoth Mantle,Ice,,"[[""Wool Thread"", 1], [""Behemoth Hide"", 1]]","[[""Behemoth Mantle +1"", 1], null, null]"
|
||||
Amateur,70,"[[""Alchemy"", 46], [""Clothcraft"", 32]]",Black Cotehardie,Earth,,"[[""Beak Jerkin"", 1], [""Black Ink"", 1], [""Malboro Fiber"", 1], [""Ram Leather"", 1], [""Tiger Leather"", 1], [""Mistletoe"", 1], [""Fiend Blood"", 1], [""Velvet Robe"", 1]]","[[""Flora Cotehardie"", 1], null, null]"
|
||||
Amateur,70,[],Behemoth Mantle,Ice,,"[[""Leathercraft Kit 70"", 1], [""Artisan (71-80)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,71,[],Coeurl Leather,Dark,,"[[""Willow Log"", 1], [""Coeurl Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,71,[],Coeurl Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Coeurl Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,71,[],Coeurl Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Coeurl Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,71,"[[""Clothcraft"", 45]]",Pigaches,Earth,,"[[""Gold Thread"", 1], [""Silk Cloth"", 1], [""Tiger Leather"", 2], [""Raptor Skin"", 1]]","[[""Pigaches +1"", 1], null, null]"
|
||||
Amateur,71,"[[""Clothcraft"", 45]]",Silken Pigaches,Earth,,"[[""Gold Thread"", 1], [""Raptor Skin"", 1], [""Tiger Leather"", 2], [""Imperial Silk Cloth"", 1]]","[[""Magi Pigaches"", 1], null, null]"
|
||||
Amateur,71,[],Spartan Hoplon,Earth,,"[[""Bloody Ram Leather"", 1], [""Hoplon"", 1]]","[null, null, null]"
|
||||
Amateur,71,[],Swordbelt,Earth,,"[[""Iron Chain"", 1], [""Tiger Leather"", 2]]","[[""Swordbelt +1"", 1], null, null]"
|
||||
Amateur,71,[],Lynx Leather,Dark,,"[[""Willow Log"", 1], [""Lynx Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,71,[],Lynx Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Lynx Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,71,[],Lynx Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Lynx Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,72,[],Coeurl Cesti,Earth,,"[[""Cesti"", 1], [""Coeurl Leather"", 1]]","[[""Torama Cesti"", 1], null, null]"
|
||||
Amateur,72,[],Ovinnik Leather,Dark,,"[[""Willow Log"", 1], [""Ovinnik Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,72,[],Ovinnik Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Ovinnik Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,73,"[[""Clothcraft"", 41]]",Battle Hose,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 2]]","[[""Battle Hose +1"", 1], null, null]"
|
||||
Amateur,73,[],Manta Leather,Dark,,"[[""Willow Log"", 1], [""Manta Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,73,[],Manta Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Manta Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,73,[],Manta Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Manta Skin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,74,[],Lamia Mantle,Earth,,"[[""Manta Skin"", 1], [""Lamia Skin"", 1], [""Mohbwa Thread"", 1]]","[[""Lamia Mantle +1"", 1], null, null]"
|
||||
Amateur,74,[],Tiger Trousers,Earth,,"[[""Cuir Trousers"", 1], [""Tiger Leather"", 2]]","[[""Feral Trousers"", 1], null, null]"
|
||||
Amateur,75,"[[""Smithing"", 38], [""Clothcraft"", 27]]",Goblin Coif,Earth,,"[[""Goblin Cutting"", 1], [""Steel Sheet"", 1], [""Linen Cloth"", 1], [""Artificial Lens"", 2], [""Moblin Thread"", 1], [""Undead Skin"", 1], [""Sheep Leather"", 1]]","[null, null, null]"
|
||||
Amateur,75,"[[""Goldsmithing"", 28]]",Tiger Ledelsens,Earth,,"[[""Cuir Highboots"", 1], [""Mythril Sheet"", 1], [""Tiger Leather"", 1]]","[[""Feral Ledelsens"", 1], null, null]"
|
||||
Amateur,75,[],Tiger Mantle,Ice,,"[[""Tiger Hide"", 1], [""Wool Thread"", 1]]","[[""Feral Mantle"", 1], null, null]"
|
||||
Amateur,75,[],Smilodon Mantle,Ice,,"[[""Smilodon Hide"", 1], [""Wool Thread"", 1]]","[[""Smilodon Mantle +1"", 1], null, null]"
|
||||
Amateur,75,[],Tiger Mantle,Ice,,"[[""Leathercraft Kit 75"", 1]]","[null, null, null]"
|
||||
Amateur,76,"[[""Goldsmithing"", 44], [""Smithing"", 41]]",Black Adargas,Fire,,"[[""Darksteel Ingot"", 2], [""Oak Lumber"", 1], [""Gold Ingot"", 1], [""Ovinnik Leather"", 1]]","[[""Black Adargas +1"", 1], null, null]"
|
||||
Amateur,76,[],Marid Leather,Dark,,"[[""Marid Hide"", 1], [""Imperial Tea Leaves"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,76,[],Marid Leather,Dark,Tanning,"[[""Marid Hide"", 3], [""Imperial Tea Leaves"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,76,"[[""Clothcraft"", 47]]",Silk Pumps,Earth,,"[[""Gold Thread"", 2], [""Silk Cloth"", 2], [""Sheep Leather"", 1]]","[[""Silk Pumps +1"", 1], null, null]"
|
||||
Amateur,76,[],Tabin Hose,Earth,,"[[""Marid Leather"", 1], [""Battle Hose"", 1]]","[[""Tabin Hose +1"", 1], null, null]"
|
||||
Amateur,76,[],Tactician Magician's Pigaches +1,Earth,,"[[""Tactician Magician's Pigaches"", 1], [""Tiger Leather"", 1]]","[[""Tactician Magician's Pigaches +2"", 1], null, null]"
|
||||
Amateur,77,"[[""Goldsmithing"", 46], [""Smithing"", 25]]",Adargas,Fire,,"[[""Steel Ingot"", 2], [""Oak Lumber"", 1], [""Gold Ingot"", 1], [""Rheiyoh Leather"", 1]]","[[""Adargas +1"", 1], null, null]"
|
||||
Amateur,77,[],Tiger Gloves,Earth,,"[[""Cuir Gloves"", 1], [""Tiger Leather"", 1]]","[[""Feral Gloves"", 1], null, null]"
|
||||
Amateur,77,[],Yellow Mouton,Dark,,"[[""Ram Skin"", 1], [""Distilled Water"", 1], [""Windurstian Tea Leaves"", 1], [""Orpiment"", 2]]","[null, null, null]"
|
||||
Amateur,77,[],Yellow Mouton,Dark,,"[[""Ram Skin"", 1], [""Distilled Water"", 1], [""Willow Log"", 1], [""Orpiment"", 2]]","[null, null, null]"
|
||||
Amateur,78,[],Black Mantle,Earth,,"[[""Tiger Mantle"", 1], [""Wool Thread"", 1], [""Tiger Leather"", 1]]","[[""Black Mantle +1"", 1], null, null]"
|
||||
Amateur,78,"[[""Smithing"", 41]]",Tiger Helm,Earth,,"[[""Darksteel Sheet"", 1], [""Tiger Leather"", 2], [""Sheep Leather"", 1]]","[[""Feral Helm"", 1], null, null]"
|
||||
Amateur,78,[],Lavalier,Earth,,"[[""Behemoth Leather"", 1], [""Manticore Hair"", 1]]","[[""Lavalier +1"", 1], null, null]"
|
||||
Amateur,79,[],Coeurl Gorget,Earth,,"[[""Coeurl Hide"", 1], [""Cotton Thread"", 1]]","[[""Torama Gorget"", 1], null, null]"
|
||||
Amateur,79,[],Marid Mantle,Ice,,"[[""Marid Hide"", 1], [""Karakul Thread"", 1]]","[[""Marid Mantle +1"", 1], null, null]"
|
||||
Amateur,79,[],Tiger Jerkin,Earth,,"[[""Tiger Leather"", 2], [""Sheep Leather"", 1]]","[[""Feral Jerkin"", 1], null, null]"
|
||||
Amateur,79,[],Finesse Gloves,Earth,,"[[""Coquecigrue Skin"", 1], [""Beak Gloves"", 1]]","[[""Finesse Gloves +1"", 1], null, null]"
|
||||
Amateur,79,[],Marid Mantle,Ice,,"[[""Leathercraft Kit 79"", 1]]","[null, null, null]"
|
||||
Amateur,80,"[[""Alchemy"", 46], [""Clothcraft"", 32]]",Blue Cotehardie,Earth,,"[[""Beak Jerkin"", 1], [""Velvet Robe"", 1], [""Malboro Fiber"", 1], [""Tiger Leather"", 1], [""Beetle Blood"", 1], [""Mistletoe"", 1], [""Fiend Blood"", 1], [""Ram Leather"", 1]]","[[""Blue Cotehardie +1"", 1], null, null]"
|
||||
Amateur,80,[],Manticore Leather,Dark,,"[[""Willow Log"", 1], [""Manticore Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,80,[],Manticore Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Manticore Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,80,[],Manticore Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Manticore Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,80,"[[""Smithing"", 34]]",Styrne Byrnie,Earth,,"[[""Herensugue Skin"", 1], [""Behemoth Leather"", 1], [""Tiger Leather"", 1], [""Dhalmel Leather"", 1], [""Silver Mail"", 1], [""Darksteel Sheet"", 1], [""Adept (81-90)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Styrne Byrnie +1"", 1], null, null]"
|
||||
Amateur,81,[],Marid Belt,Earth,,"[[""Darksteel Chain"", 1], [""Marid Leather"", 2]]","[[""Marid Belt +1"", 1], null, null]"
|
||||
Amateur,81,"[[""Clothcraft"", 57]]",Noble's Pumps,Earth,,"[[""Gold Thread"", 2], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""Rainbow Cloth"", 1]]","[[""Aristocrat's Pumps"", 1], null, null]"
|
||||
Amateur,81,[],Tropical Punches,Earth,,"[[""Sheep Leather"", 1], [""Fruit Punches"", 1]]","[[""Tropical Punches +1"", 1], null, null]"
|
||||
Amateur,81,"[[""Smithing"", 58]]",Wivre Shield,Earth,,"[[""Darksteel Sheet"", 3], [""Wivre Hide"", 2], [""Ash Lumber"", 1]]","[[""Wivre Shield +1"", 1], null, null]"
|
||||
Amateur,81,[],Cerberus Leather,Dark,,"[[""Imperial Tea Leaves"", 1], [""Cerberus Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,81,[],Peiste Leather,Dark,,"[[""Willow Log"", 1], [""Peiste Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,81,[],Peiste Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Peiste Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,81,[],Peiste Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Peiste Skin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,82,[],Behemoth Cesti,Earth,,"[[""Behemoth Leather"", 1], [""Cesti"", 1]]","[[""Behemoth Cesti +1"", 1], null, null]"
|
||||
Amateur,82,[],Troll Coif,Earth,,"[[""Karakul Leather"", 2], [""Manticore Hair"", 1], [""Marid Leather"", 1], [""Marid Hair"", 1], [""Mohbwa Cloth"", 1]]","[null, null, null]"
|
||||
Amateur,82,[],Nomad's Mantle,Earth,,"[[""Rabbit Hide"", 1], [""Traveler's Mantle"", 1]]","[[""Nomad's Mantle +1"", 1], null, null]"
|
||||
Amateur,83,[],Air Solea,Wind,,"[[""Lizard Molt"", 1], [""Light Soleas"", 1]]","[[""Air Solea +1"", 1], null, null]"
|
||||
Amateur,83,[],Coeurl Trousers,Earth,,"[[""Cuir Trousers"", 1], [""Coeurl Leather"", 2]]","[[""Torama Trousers"", 1], null, null]"
|
||||
Amateur,83,"[[""Clothcraft"", 55]]",War Beret,Earth,,"[[""Gold Thread"", 1], [""Tiger Leather"", 2], [""Giant Bird Plume"", 1]]","[[""War Beret +1"", 1], null, null]"
|
||||
Amateur,83,[],Peiste Belt,Wind,,"[[""Peiste Leather"", 1], [""Iron Chain"", 1]]","[[""Peiste Belt +1"", 1], null, null]"
|
||||
Amateur,83,[],Ruszor Leather,Dark,,"[[""Willow Log"", 1], [""Ruszor Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,83,[],Ruszor Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Ruszor Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,83,[],Ruszor Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Ruszor Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,83,[],Fowler's Mantle,Ice,,"[[""Woolly Pelage"", 1], [""Wool Thread"", 1]]","[[""Fowler's Mantle +1"", 1], null, null]"
|
||||
Amateur,84,"[[""Goldsmithing"", 23]]",Coeurl Ledelsens,Earth,,"[[""Cuir Highboots"", 1], [""Coeurl Leather"", 1], [""Mythril Sheet"", 1]]","[[""Torama Ledelsens"", 1], null, null]"
|
||||
Amateur,84,[],Empowering Mantle,Earth,,"[[""Enhancing Mantle"", 1], [""Lizard Skin"", 1]]","[[""Empowering Mantle +1"", 1], null, null]"
|
||||
Amateur,84,[],Ogre Trousers,Earth,,"[[""Coeurl Trousers"", 1], [""Manticore Leather"", 1]]","[[""Ogre Trousers +1"", 1], null, null]"
|
||||
Amateur,84,"[[""Clothcraft"", 37]]",Wise Braconi,Earth,,"[[""Silver Thread"", 2], [""Velvet Cloth"", 2], [""Eft Skin"", 1], [""Eltoro Leather"", 1]]","[[""Wise Braconi +1"", 1], null, null]"
|
||||
Amateur,84,[],Kinesis Mantle,Earth,,"[[""Ratatoskr Pelt"", 1], [""Nomad's Mantle"", 1]]","[[""Kinesis Mantle +1"", 1], null, null]"
|
||||
Amateur,84,[],Raaz Leather,Dark,,"[[""Willow Log"", 1], [""Raaz Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,84,[],Raaz Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Raaz Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,84,[],Raaz Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Raaz Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,85,[],Coeurl Mantle,Ice,,"[[""Coeurl Hide"", 1], [""Wool Thread"", 1]]","[[""Torama Mantle"", 1], null, null]"
|
||||
Amateur,85,[],Northern Jerkin,Earth,,"[[""Tiger Jerkin"", 1], [""Undead Skin"", 1]]","[[""Tundra Jerkin"", 1], null, null]"
|
||||
Amateur,85,[],Ogre Ledelsens,Earth,,"[[""Coeurl Ledelsens"", 1], [""Manticore Leather"", 1]]","[[""Ogre Ledelsens +1"", 1], null, null]"
|
||||
Amateur,85,[],Sonic Belt,Earth,,"[[""Ram Leather"", 1], [""Speed Belt"", 1]]","[[""Sonic Belt +1"", 1], null, null]"
|
||||
Amateur,85,[],War Boots,Earth,,"[[""Coeurl Leather"", 1], [""Gold Chain"", 1], [""Tiger Leather"", 2]]","[[""War Boots +1"", 1], null, null]"
|
||||
Amateur,85,"[[""Clothcraft"", 34]]",Wise Pigaches,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Sheep Leather"", 1], [""Tiger Leather"", 1], [""Eltoro Leather"", 1]]","[[""Wise Pigaches +1"", 1], null, null]"
|
||||
Amateur,85,[],Lynx Mantle,Ice,,"[[""Lynx Hide"", 1], [""Wool Thread"", 1]]","[[""Lynx Mantle +1"", 1], null, null]"
|
||||
Amateur,85,[],Coeurl Mantle,Ice,,"[[""Leathercraft Kit 85"", 1]]","[null, null, null]"
|
||||
Amateur,86,[],Cavalier's Mantle,Ice,,"[[""Sentinel's Mantle"", 1], [""Wolf Hide"", 1]]","[[""Cavalier's Mantle +1"", 1], null, null]"
|
||||
Amateur,86,[],Shadow Bow,Earth,,"[[""Assassin's Bow"", 1], [""Ram Leather"", 1]]","[[""Shadow Bow +1"", 1], null, null]"
|
||||
Amateur,86,[],Tariqah,Earth,,"[[""Marid Leather"", 1], [""Marid Hair"", 1], [""Tariqah -1"", 1]]","[[""Tariqah +1"", 1], null, null]"
|
||||
Amateur,86,"[[""Alchemy"", 51]]",Khromated Leather,Dark,,"[[""Karakul Skin"", 1], [""Khroma Nugget"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,86,"[[""Alchemy"", 51]]",Khromated Leather,Dark,Tanning,"[[""Karakul Skin"", 3], [""Khroma Nugget"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,87,[],Coeurl Mask,Earth,,"[[""Coeurl Leather"", 2], [""Faceguard"", 1]]","[[""Torama Mask"", 1], null, null]"
|
||||
Amateur,87,[],Gaia Mantle,Earth,,"[[""Cockatrice Skin"", 1], [""Earth Mantle"", 1]]","[[""Gaia Mantle +1"", 1], null, null]"
|
||||
Amateur,87,"[[""Goldsmithing"", 44], [""Clothcraft"", 19]]",Sipahi Dastanas,Earth,,"[[""Mythril Sheet"", 1], [""Karakul Leather"", 1], [""Marid Leather"", 1], [""Marid Hair"", 1], [""Karakul Cloth"", 1]]","[[""Abtal Dastanas"", 1], null, null]"
|
||||
Amateur,87,[],Mamool Ja Helm,Earth,,"[[""Karakul Leather"", 1], [""Lizard Skin"", 1], [""Black Tiger Fang"", 2], [""Coeurl Whisker"", 1], [""Mamool Ja Helmet"", 1], [""Marid Hair"", 1]]","[null, null, null]"
|
||||
Amateur,87,[],Wivre Mask,Wind,,"[[""Karakul Leather"", 1], [""Wivre Hide"", 1]]","[[""Wivre Mask +1"", 1], null, null]"
|
||||
Amateur,87,[],Radical Mantle,Earth,,"[[""Leafkin Frond"", 1], [""Chapuli Wing"", 2], [""Raptor Mantle"", 1]]","[[""Radical Mantle +1"", 1], null, null]"
|
||||
Amateur,88,[],Aurora Mantle,Ice,,"[[""Tiger Hide"", 1], [""Tundra Mantle"", 1]]","[[""Aurora Mantle +1"", 1], null, null]"
|
||||
Amateur,88,[],Coeurl Gloves,Earth,,"[[""Coeurl Leather"", 1], [""Cuir Gloves"", 1]]","[[""Torama Gloves"", 1], null, null]"
|
||||
Amateur,88,[],Ogre Mask,Earth,,"[[""Coeurl Mask"", 1], [""Manticore Leather"", 1]]","[[""Ogre Mask +1"", 1], null, null]"
|
||||
Amateur,88,"[[""Clothcraft"", 40]]",Wise Cap,Earth,,"[[""Silver Thread"", 1], [""Velvet Cloth"", 1], [""Silk Cloth"", 1], [""Manticore Leather"", 1], [""Eltoro Leather"", 1]]","[[""Wise Cap +1"", 1], null, null]"
|
||||
Amateur,89,[],Coeurl Jerkin,Earth,,"[[""Coeurl Leather"", 2], [""Sheep Leather"", 1]]","[[""Torama Jerkin"", 1], null, null]"
|
||||
Amateur,89,[],Ogre Gloves,Earth,,"[[""Coeurl Gloves"", 1], [""Manticore Leather"", 1]]","[[""Ogre Gloves +1"", 1], null, null]"
|
||||
Amateur,89,[],Winged Boots,Earth,,"[[""Lizard Skin"", 1], [""Leaping Boots"", 1]]","[[""Winged Boots +1"", 1], null, null]"
|
||||
Amateur,89,"[[""Clothcraft"", 32]]",Wise Gloves,Earth,,"[[""Silver Thread"", 1], [""Velvet Cloth"", 1], [""Saruta Cotton"", 2], [""Eltoro Leather"", 1], [""Leather Gloves"", 1]]","[[""Wise Gloves +1"", 1], null, null]"
|
||||
Amateur,90,"[[""Clothcraft"", 54]]",Barone Cosciales,Earth,,"[[""Silk Cloth"", 1], [""Sarcenet Cloth"", 1], [""Buffalo Leather"", 2], [""High-Quality Bugard Skin"", 1]]","[[""Conte Cosciales"", 1], null, null]"
|
||||
Amateur,90,"[[""Goldsmithing"", 44], [""Clothcraft"", 40]]",Chasuble,Earth,,"[[""Platinum Ingot"", 1], [""Silver Thread"", 1], [""Velvet Cloth"", 2], [""Manticore Leather"", 1], [""Eft Skin"", 1], [""Eltoro Leather"", 2]]","[[""Chasuble +1"", 1], null, null]"
|
||||
Amateur,90,[],Koenigs Belt,Earth,,"[[""Gold Chain"", 1], [""Manticore Leather"", 2]]","[[""Kaiser Belt"", 1], null, null]"
|
||||
Amateur,90,[],Ogre Jerkin,Earth,,"[[""Coeurl Jerkin"", 1], [""Undead Skin"", 1], [""Manticore Leather"", 1]]","[[""Ogre Jerkin +1"", 1], null, null]"
|
||||
Amateur,90,[],Sniper's Ring,Earth,,"[[""Archer's Ring"", 1], [""Tiger Leather"", 1]]","[[""Sniper's Ring +1"", 1], null, null]"
|
||||
Amateur,90,[],Amphiptere Leather,Dark,,"[[""Willow Log"", 1], [""Amphiptere Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,90,[],Amphiptere Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Amphiptere Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,90,[],Amphiptere Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Amphiptere Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,90,[],Koenigs Belt,Earth,,"[[""Leathercraft Kit 90"", 1], [""Veteran (91-100)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[null, null, null]"
|
||||
Amateur,91,[],Bison Wristbands,Earth,,"[[""Manticore Leather"", 2], [""Manticore Hair"", 2], [""Buffalo Leather"", 1]]","[[""Brave's Wristbands"", 1], null, null]"
|
||||
Amateur,91,"[[""Clothcraft"", 52]]",Errant Pigaches,Earth,,"[[""Rainbow Thread"", 1], [""Velvet Cloth"", 1], [""Undead Skin"", 1], [""Ram Leather"", 2]]","[[""Mahatma Pigaches"", 1], null, null]"
|
||||
Amateur,91,[],Khimaira Wristbands,Earth,,"[[""Manticore Leather"", 2], [""Buffalo Leather"", 1], [""Khimaira Mane"", 2]]","[[""Stout Wristbands"", 1], null, null]"
|
||||
Amateur,91,"[[""Goldsmithing"", 51], [""Clothcraft"", 49]]",Sipahi Jawshan,Earth,,"[[""Mythril Sheet"", 1], [""Steel Sheet"", 1], [""Gold Chain"", 1], [""Silk Cloth"", 1], [""Karakul Leather"", 1], [""Marid Leather"", 2], [""Wamoura Cloth"", 1]]","[[""Abtal Jawshan"", 1], null, null]"
|
||||
Amateur,91,[],Ebon Brais,Earth,,"[[""Amphiptere Leather"", 1], [""Shagreen"", 1], [""Studded Trousers"", 1]]","[null, null, null]"
|
||||
Amateur,91,[],Bewitched Pumps,Earth,,"[[""Cursed Pumps -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Pumps"", 1], null, null]"
|
||||
Amateur,91,[],Vexed Boots,Earth,,"[[""Hexed Boots -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Boots"", 1], null, null]"
|
||||
Amateur,92,"[[""Clothcraft"", 59]]",Cursed Pumps,Earth,,"[[""Siren's Macrame"", 1], [""Velvet Cloth"", 1], [""Gold Thread"", 1], [""Rainbow Cloth"", 1], [""Manticore Leather"", 1]]","[[""Cursed Pumps -1"", 1], null, null]"
|
||||
Amateur,92,[],Desert Mantle,Earth,,"[[""Grass Thread"", 1], [""Yowie Skin"", 2]]","[[""Desert Mantle +1"", 1], null, null]"
|
||||
Amateur,92,"[[""Goldsmithing"", 60], [""Clothcraft"", 38]]",Sha'ir Crackows,Earth,,"[[""Orichalcum Ingot"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 2], [""Buffalo Leather"", 1]]","[[""Sheikh Crackows"", 1], null, null]"
|
||||
Amateur,92,"[[""Clothcraft"", 47], [""Woodworking"", 43]]",Leather Pot,Fire,,"[[""Hickory Lumber"", 1], [""Karakul Leather"", 1], [""Rheiyoh Leather"", 1], [""Karakul Thread"", 1], [""Kaolin"", 2]]","[null, null, null]"
|
||||
Amateur,92,"[[""Clothcraft"", 59], [""Goldsmithing"", 48]]",Cursed Clogs,Earth,,"[[""Velvet Cloth"", 1], [""Undead Skin"", 1], [""Marid Leather"", 2], [""Netherpact Chain"", 1], [""Platinum Silk"", 1]]","[[""Cursed Clogs -1"", 1], null, null]"
|
||||
Amateur,92,[],Vexed Tekko,Fire,,"[[""Hexed Tekko -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Tekko"", 1], null, null]"
|
||||
Amateur,93,[],Dusk Trousers,Earth,,"[[""Tiger Trousers"", 1], [""Behemoth Leather"", 1]]","[[""Dusk Trousers +1"", 1], null, null]"
|
||||
Amateur,93,"[[""Clothcraft"", 11]]",Austere Hat,Earth,,"[[""Rainbow Thread"", 1], [""Sheep Leather"", 1], [""Ram Leather"", 1], [""Yowie Skin"", 1], [""Velvet Hat"", 1]]","[[""Penance Hat"", 1], null, null]"
|
||||
Amateur,93,"[[""Clothcraft"", 29]]",Bison Gamashes,Earth,,"[[""Manticore Leather"", 1], [""Manticore Hair"", 2], [""Hippogryph Feather"", 1], [""Buffalo Leather"", 2]]","[[""Brave's Gamashes"", 1], null, null]"
|
||||
Amateur,93,[],Sultan's Belt,Earth,,"[[""Rugged Bugard Leather"", 1], [""Koenigs Belt"", 1]]","[null, null, null]"
|
||||
Amateur,93,[],Czar's Belt,Earth,,"[[""Tough Bugard Leather"", 1], [""Koenigs Belt"", 1]]","[null, null, null]"
|
||||
Amateur,93,[],Pendragon's Belt,Earth,,"[[""Soft Bugard Leather"", 1], [""Koenigs Belt"", 1]]","[null, null, null]"
|
||||
Amateur,93,[],Maharaja's Belt,Earth,,"[[""Glossy Bugard Leather"", 1], [""Koenigs Belt"", 1]]","[null, null, null]"
|
||||
Amateur,93,"[[""Clothcraft"", 29]]",Khimaira Gamashes,Earth,,"[[""Manticore Leather"", 1], [""Hippogryph Feather"", 1], [""Buffalo Leather"", 2], [""Khimaira Mane"", 2]]","[[""Stout Gamashes"", 1], null, null]"
|
||||
Amateur,93,"[[""Goldsmithing"", 53]]",Ebon Gloves,Earth,,"[[""Amphiptere Leather"", 2], [""Shagreen"", 1], [""Platinum Ingot"", 1]]","[null, null, null]"
|
||||
Amateur,93,[],Vexed Hakama,Fire,,"[[""Hexed Hakama -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Hakama"", 1], null, null]"
|
||||
Amateur,93,[],Vexed Hose,Earth,,"[[""Hexed Hose -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Hose"", 1], null, null]"
|
||||
Amateur,94,"[[""Clothcraft"", 11]]",Austere Sabots,Earth,,"[[""Rainbow Thread"", 1], [""Sheep Leather"", 1], [""Ram Leather"", 1], [""Lindwurm Skin"", 1], [""Ebony Sabots"", 1]]","[[""Penance Sabots"", 1], null, null]"
|
||||
Amateur,94,"[[""Smithing"", 31]]",Cardinal Vest,Water,,"[[""Clothcraft - (21)"", 1], [""Steel Sheet"", 1], [""Gold Thread"", 1], [""Tiger Leather"", 2], [""Beeswax"", 1], [""Manticore Leather"", 2], [""Ram Leather"", 1]]","[[""Bachelor Vest"", 1], null, null]"
|
||||
Amateur,94,[],Dusk Ledelsens,Earth,,"[[""Tiger Ledelsens"", 1], [""Behemoth Leather"", 1]]","[[""Dusk Ledelsens +1"", 1], null, null]"
|
||||
Amateur,95,[],Tiger Mask,Ice,,"[[""Tiger Hide"", 2], [""Wyvern Skin"", 1], [""Wool Thread"", 1], [""Ram Leather"", 1]]","[[""Feral Mask"", 1], null, null]"
|
||||
Amateur,95,"[[""Clothcraft"", 33]]",Bison Warbonnet,Earth,,"[[""Manticore Leather"", 1], [""Manticore Hair"", 2], [""Hippogryph Feather"", 2], [""Eft Skin"", 1], [""Buffalo Leather"", 1]]","[[""Brave's Warbonnet"", 1], null, null]"
|
||||
Amateur,95,[],Cerberus Mantle,Ice,,"[[""Cerberus Hide"", 1], [""Karakul Thread"", 1]]","[[""Cerberus Mantle +1"", 1], null, null]"
|
||||
Amateur,95,"[[""Clothcraft"", 33]]",Khimaira Bonnet,Earth,,"[[""Manticore Leather"", 1], [""Hippogryph Feather"", 2], [""Eft Skin"", 1], [""Buffalo Leather"", 1], [""Khimaira Mane"", 2]]","[[""Stout Bonnet"", 1], null, null]"
|
||||
Amateur,95,[],Peiste Mantle,Earth,,"[[""Peiste Skin"", 2], [""Grass Thread"", 1]]","[[""Peiste Mantle +1"", 1], null, null]"
|
||||
Amateur,95,"[[""Goldsmithing"", 57]]",Ebon Boots,Earth,,"[[""Amphiptere Leather"", 1], [""Shagreen"", 1], [""Molybdenum Sheet"", 1], [""Platinum Ingot"", 1]]","[null, null, null]"
|
||||
Amateur,95,[],Peiste Mantle,Earth,,"[[""Leathercraft Kit 95"", 1]]","[null, null, null]"
|
||||
Amateur,96,"[[""Clothcraft"", 42]]",Opaline Boots,Light,,"[[""Rainbow Thread"", 1], [""Silk Cloth"", 1], [""Rainbow Cloth"", 1], [""Twinthread"", 1], [""Sheep Leather"", 2], [""Manticore Leather"", 1]]","[[""Ceremonial Boots"", 1], null, null]"
|
||||
Amateur,96,"[[""Goldsmithing"", 46], [""Clothcraft"", 41]]",Sha'ir Gages,Earth,,"[[""Gold Ingot"", 1], [""Garnet"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""High-Quality Bugard Skin"", 1]]","[[""Sheikh Gages"", 1], null, null]"
|
||||
Amateur,96,"[[""Goldsmithing"", 45]]",Imperial Tapestry,Earth,,"[[""Gold Ingot"", 1], [""Turquoise"", 1], [""Gold Thread"", 2], [""Marid Hair"", 1], [""Wamoura Cloth"", 1], [""Imperial Silk Cloth"", 2]]","[null, null, null]"
|
||||
Amateur,97,"[[""Clothcraft"", 11]]",Austere Cuffs,Earth,,"[[""Rainbow Thread"", 1], [""Tarasque Skin"", 1], [""Yowie Skin"", 1], [""Velvet Cuffs"", 1]]","[[""Penance Cuffs"", 1], null, null]"
|
||||
Amateur,97,"[[""Clothcraft"", 54]]",Bison Kecks,Earth,,"[[""Tiger Leather"", 1], [""Manticore Leather"", 1], [""Manticore Hair"", 4], [""Buffalo Leather"", 2]]","[[""Brave's Kecks"", 1], null, null]"
|
||||
Amateur,97,[],Dusk Mask,Earth,,"[[""Coeurl Mask"", 1], [""Behemoth Leather"", 1]]","[[""Dusk Mask +1"", 1], null, null]"
|
||||
Amateur,97,[],Griffon Leather,Dark,,"[[""Willow Log"", 1], [""Griffon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,97,[],Griffon Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Griffon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,97,"[[""Clothcraft"", 54]]",Khimaira Kecks,Earth,,"[[""Tiger Leather"", 1], [""Manticore Leather"", 1], [""Buffalo Leather"", 2], [""Khimaira Mane"", 4]]","[[""Stout Kecks"", 1], null, null]"
|
||||
Amateur,97,"[[""Smithing"", 60]]",Ebon Mask,Earth,,"[[""Amphiptere Leather"", 1], [""Shagreen"", 1], [""Molybdenum Sheet"", 1]]","[null, null, null]"
|
||||
Amateur,98,[],Amaltheia Leather,Dark,,"[[""Willow Log"", 1], [""Amaltheia Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,98,[],Amaltheia Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Amaltheia Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,98,[],Amaltheia Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Amaltheia Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
Amateur,98,"[[""Clothcraft"", 11]]",Austere Slops,Earth,,"[[""Rainbow Thread"", 1], [""Undead Skin"", 1], [""Wolf Hide"", 1], [""Lindwurm Skin"", 1], [""Velvet Slops"", 1]]","[[""Penance Slops"", 1], null, null]"
|
||||
Amateur,98,[],Heroic Boots,Earth,,"[[""Iron Scales"", 1], [""Ram Leather"", 2], [""Lindwurm Skin"", 1]]","[[""Heroic Boots +1"", 1], null, null]"
|
||||
Amateur,99,"[[""Bonecraft"", 60]]",Bison Jacket,Earth,,"[[""Clothcraft - (51)"", 1], [""Manticore Leather"", 2], [""Manticore Hair"", 2], [""Buffalo Horn"", 1], [""Eft Skin"", 1], [""Buffalo Leather"", 2]]","[[""Brave's Jacket"", 1], null, null]"
|
||||
Amateur,99,"[[""Clothcraft"", 56]]",Blessed Pumps,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""Manticore Hair"", 1], [""Eltoro Leather"", 1]]","[[""Blessed Pumps +1"", 1], null, null]"
|
||||
Amateur,99,[],Dusk Gloves,Earth,,"[[""Tiger Gloves"", 1], [""Behemoth Leather"", 1]]","[[""Dusk Gloves +1"", 1], null, null]"
|
||||
Amateur,99,"[[""Bonecraft"", 60], [""Clothcraft"", 54]]",Khimaira Jacket,Earth,,"[[""Manticore Leather"", 2], [""Buffalo Horn"", 1], [""Eft Skin"", 1], [""Buffalo Leather"", 2], [""Khimaira Mane"", 2]]","[[""Stout Jacket"", 1], null, null]"
|
||||
Amateur,99,[],Narasimha's Vest,Water,,"[[""Beeswax"", 1], [""Manticore Leather"", 1], [""Narasimha Leather"", 1], [""Cardinal Vest"", 1]]","[[""Vishnu's Vest"", 1], null, null]"
|
||||
Amateur,99,[],Dynamic Belt,Wind,,"[[""Behemoth Leather"", 1], [""Mercury"", 1], [""Umbril Ooze"", 1]]","[[""Dynamic Belt +1"", 1], null, null]"
|
||||
Amateur,99,"[[""Clothcraft"", 50]]",Chelona Boots,Earth,,"[[""Karakul Thread"", 1], [""Karakul Cloth"", 3], [""Platinum Silk Thread"", 1], [""Amphiptere Leather"", 1]]","[[""Chelona Boots +1"", 1], null, null]"
|
||||
Amateur,100,"[[""Clothcraft"", 31]]",Austere Robe,Earth,,"[[""Rainbow Thread"", 1], [""Wool Cloth"", 1], [""Rainbow Cloth"", 1], [""Undead Skin"", 1], [""Ram Leather"", 1], [""Tarasque Skin"", 1], [""Yowie Skin"", 1], [""Velvet Robe"", 1]]","[[""Penance Robe"", 1], null, null]"
|
||||
Amateur,100,"[[""Goldsmithing"", 41]]",Dusk Jerkin,Earth,,"[[""Gold Ingot"", 1], [""Northern Jerkin"", 1], [""Behemoth Leather"", 1], [""Wyvern Skin"", 1]]","[[""Dusk Jerkin +1"", 1], null, null]"
|
||||
Amateur,100,[],Urja Trousers,Earth,,"[[""Buffalo Leather"", 2], [""Squamous Hide"", 2]]","[[""Sthira Trousers"", 1], null, null]"
|
||||
Amateur,100,"[[""Clothcraft"", 60]]",Spolia Pigaches,Earth,,"[[""Catoblepas Leather"", 1], [""Sheep Chammy"", 1], [""Wyrdstrand"", 1], [""Wyrdweave"", 2]]","[[""Opima Pigaches"", 1], null, null]"
|
||||
Amateur,100,"[[""Smithing"", 60], [""Bonecraft"", 40]]",Ebon Harness,Earth,,"[[""Molybdenum Sheet"", 1], [""Platinum Sheet"", 1], [""Angel Skin"", 1], [""Red Textile Dye"", 1], [""Amphiptere Leather"", 2], [""Shagreen"", 1]]","[null, null, null]"
|
||||
Amateur,100,[],Revealer's Pumps,Earth,,"[[""Ancestral Cloth"", 2], [""Prickly Pitriv's Thread"", 2], [""Warblade Beak's Hide"", 1]]","[[""Revealer's Pumps +1"", 1], null, null]"
|
||||
Amateur,100,[],Aptitude Mantle,Earth,,"[[""Wool Thread"", 1], [""Lizard Molt"", 1], [""Raaz Hide"", 1], [""Bounding Belinda's Hide"", 1], [""Expert (101-110)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Aptitude Mantle +1"", 1], null, null]"
|
||||
Amateur,101,"[[""Goldsmithing"", 60], [""Smithing"", 60]]",Corselet,Earth,,"[[""Adaman Sheet"", 1], [""Mercury"", 1], [""Laminated Buffalo Leather"", 1], [""Ovinnik Leather"", 1], [""Marid Leather"", 1], [""Marid Hair"", 1], [""Scintillant Ingot"", 1], [""Star Sapphire"", 1]]","[[""Corselet +1"", 1], null, null]"
|
||||
Amateur,101,[],Haruspex Pigaches,Earth,,"[[""Gold Thread"", 1], [""Raxa"", 1], [""Akaso Cloth"", 1], [""Raaz Hide"", 1], [""Raaz Leather"", 1]]","[[""Haruspex Pigaches +1"", 1], null, null]"
|
||||
Amateur,101,[],Aetosaur Gloves,Earth,,"[[""Squamous Hide"", 1], [""Raaz Leather"", 1], [""Leather Gloves"", 1]]","[[""Aetosaur Gloves +1"", 1], null, null]"
|
||||
Amateur,102,[],Panther Mask,Ice,,"[[""Wool Thread"", 1], [""Ram Leather"", 1], [""High-Quality Coeurl Hide"", 2], [""Wyvern Skin"", 1]]","[[""Panther Mask +1"", 1], null, null]"
|
||||
Amateur,102,"[[""Smithing"", 55]]",Urja Helm,Earth,,"[[""Marid Leather"", 1], [""Dark Bronze Ingot"", 1], [""Squamous Hide"", 2]]","[[""Sthira Helm"", 1], null, null]"
|
||||
Amateur,102,[],Testudo Mantle,Earth,,"[[""Behemoth Leather"", 1], [""Manticore Hair"", 1], [""Herensugue Skin"", 1]]","[[""Testudo Mantle +1"", 1], null, null]"
|
||||
Amateur,103,[],Hermes' Sandals,Wind,,"[[""Karakul Leather"", 1], [""Lynx Leather"", 1], [""Dark Ixion Tail"", 1]]","[[""Hermes' Sandals +1"", 1], null, null]"
|
||||
Amateur,103,"[[""Clothcraft"", 50]]",Attacker's Mantle,Earth,,"[[""Lizard Molt"", 1], [""Hahava's Mail"", 1], [""Wamoura Silk"", 1], [""Squamous Hide"", 1]]","[[""Dauntless Mantle"", 1], null, null]"
|
||||
Amateur,103,[],Aetosaur Ledelsens,Earth,,"[[""Squamous Hide"", 1], [""Rhodium Sheet"", 1], [""Raaz Leather"", 1], [""Leather Highboots"", 1]]","[[""Aetosaur Ledelsens +1"", 1], null, null]"
|
||||
Amateur,104,[],Sealord Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Sealord Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,104,[],Sealord Leather,Dark,,"[[""Willow Log"", 1], [""Sealord Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,104,[],Urja Gloves,Earth,,"[[""Buffalo Leather"", 1], [""Squamous Hide"", 2]]","[[""Sthira Gloves"", 1], null, null]"
|
||||
Amateur,104,[],Pak Corselet,Earth,,"[[""Adaman Sheet"", 1], [""Behemoth Leather"", 2], [""Mercury"", 1], [""Siren's Macrame"", 1], [""Fiendish Skin"", 1], [""Scintillant Ingot"", 1], [""Tanzanite Jewel"", 1]]","[[""Pak Corselet +1"", 1], null, null]"
|
||||
Amateur,105,"[[""Smithing"", 54]]",Urja Ledelsens,Earth,,"[[""Buffalo Leather"", 1], [""Dark Bronze Sheet"", 1], [""Squamous Hide"", 2]]","[[""Sthira Ledelsens"", 1], null, null]"
|
||||
Amateur,105,[],Phos Belt,Earth,,"[[""Scarlet Kadife"", 1], [""Sealord Leather"", 1], [""Sonic Belt"", 1]]","[[""Phos Belt +1"", 1], null, null]"
|
||||
Amateur,105,"[[""Smithing"", 54]]",Urja Jerkin,Earth,,"[[""Buffalo Leather"", 1], [""Dark Bronze Ingot"", 1], [""Squamous Hide"", 2], [""Ogre Jerkin"", 1]]","[[""Sthira Jerkin"", 1], null, null]"
|
||||
Amateur,105,[],Clerisy Strap,Wind,,"[[""Behemoth Hide"", 1], [""Bztavian Wing"", 1]]","[[""Clerisy Strap +1"", 1], null, null]"
|
||||
Amateur,105,[],Elan Strap,Wind,,"[[""Cerberus Hide"", 1], [""Cehuetzi Pelt"", 1]]","[[""Elan Strap +1"", 1], null, null]"
|
||||
Amateur,105,[],Irenic Strap,Wind,,"[[""Behemoth Hide"", 1], [""Rockfin Fin"", 1]]","[[""Irenic Strap +1"", 1], null, null]"
|
||||
Amateur,105,[],Mensch Strap,Wind,,"[[""Cerberus Hide"", 1], [""Yggdreant Root"", 1]]","[[""Mensch Strap +1"", 1], null, null]"
|
||||
Amateur,105,[],Faulpie Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""S. Faulpie Leather"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,105,[],Faulpie Leather,Dark,,"[[""Willow Log"", 1], [""S. Faulpie Leather"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
Amateur,106,[],Aetosaur Helm,Earth,,"[[""Squamous Hide"", 2], [""Raaz Leather"", 1]]","[[""Aetosaur Helm +1"", 1], null, null]"
|
||||
Amateur,107,"[[""Clothcraft"", 50]]",Hexed Boots,Earth,,"[[""Silver Thread"", 1], [""Lynx Leather"", 1], [""Kukulkan's Skin"", 1], [""Serica Cloth"", 1]]","[[""Hexed Boots -1"", 1], null, null]"
|
||||
Amateur,107,[],Aetosaur Trousers,Earth,,"[[""Squamous Hide"", 2], [""Raaz Leather"", 1], [""Leather Trousers"", 1]]","[[""Aetosaur Trousers +1"", 1], null, null]"
|
||||
Amateur,108,"[[""Smithing"", 60], [""Goldsmithing"", 30]]",Hexed Tekko,Fire,,"[[""Scarletite Ingot"", 1], [""Gold Sheet"", 1], [""Durium Chain"", 1], [""Taffeta Cloth"", 1], [""Urushi"", 1], [""Sealord Leather"", 1]]","[[""Hexed Tekko -1"", 1], null, null]"
|
||||
Amateur,109,[],Aetosaur Jerkin,Earth,,"[[""Squamous Hide"", 2], [""Raaz Leather"", 2]]","[[""Aetosaur Jerkin +1"", 1], null, null]"
|
||||
Amateur,109,"[[""Goldsmithing"", 57]]",Sweordfaetels,Earth,,"[[""Palladian Brass Chain"", 1], [""Sealord Leather"", 1], [""Cehuetzi Pelt"", 1]]","[[""Sweordfaetels +1"", 1], null, null]"
|
||||
Amateur,110,"[[""Goldsmithing"", 60]]",Hexed Hose,Earth,,"[[""Ormolu Ingot"", 1], [""Behemoth Leather"", 1], [""Pelt of Dawon"", 1], [""Sealord Leather"", 2]]","[[""Hexed Hose -1"", 1], null, null]"
|
||||
Amateur,110,"[[""Clothcraft"", 38]]",Hexed Hakama,Fire,,"[[""Scarletite Ingot"", 1], [""Gold Ingot"", 1], [""Gold Thread"", 1], [""Taffeta Cloth"", 1], [""Red Grass Cloth"", 1], [""Sealord Leather"", 2]]","[[""Hexed Hakama -1"", 1], null, null]"
|
||||
Amateur,110,[],Pya'ekue Belt,Earth,,"[[""Behemoth Leather"", 1], [""Bztavian Wing"", 1], [""Phos Belt"", 1]]","[[""Pya'ekue Belt +1"", 1], null, null]"
|
||||
Amateur,110,"[[""Bonecraft"", 55]]",Beastmaster Collar,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Collar"", 1]]","[[""Beastmaster Collar +1"", 1], [""Beastmaster Collar +2"", 1], null]"
|
||||
Amateur,110,"[[""Bonecraft"", 55]]",Dragoon's Collar,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Collar"", 1]]","[[""Dragoon's Collar +1"", 1], [""Dragoon's Collar +2"", 1], null]"
|
||||
Amateur,110,"[[""Bonecraft"", 55]]",Puppetmaster's Collar,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Collar"", 1]]","[[""Puppetmaster's Collar +1"", 1], [""Puppetmaster's Collar +2"", 1], null]"
|
||||
Amateur,110,"[[""Bonecraft"", 55]]",Summoner's Collar,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Collar"", 1], [""Authority (111-120)"", 1], [""Synthesis Information"", 1], [""Yield Requirements Ingredients"", 1]]","[[""Summoner's Collar +1"", 1], [""Summoner's Collar +2"", 1], null]"
|
||||
Amateur,111,"[[""Clothcraft"", 70]]",Bewitched Pumps,Earth,,"[[""Sif's Macrame"", 1], [""Cehuetzi Pelt"", 1], [""Eschite Ore"", 1], [""Cursed Pumps"", 1]]","[[""Voodoo Pumps"", 1], null, null]"
|
||||
Amateur,111,"[[""Clothcraft"", 70]]",Vexed Boots,Earth,,"[[""Sif's Macrame"", 1], [""Cehuetzi Pelt"", 1], [""Eschite Ore"", 1], [""Hexed Boots"", 1]]","[[""Jinxed Boots"", 1], null, null]"
|
||||
Amateur,111,[],Tempus Fugit,Earth,,"[[""Pya'ekue Belt"", 1], [""Defiant Scarf"", 1], [""Plovid Flesh"", 1]]","[[""Tempus Fugit +1"", 1], null, null]"
|
||||
Amateur,111,[],Saotome-no-tachi,Light,Tanner's aurum tome,"[[""Goldsmithing - (Information Needed)"", 1], [""Macuil Plating"", 1], [""Dark Matter"", 1], [""Ruthenium Ore"", 1], [""Moldy G. Katana"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Sakonji-no-tachi"", 1], [""Fusenaikyo"", 1], null]"
|
||||
Amateur,111,[],Koga Shinobi-Gatana,Light,Tanner's aurum tome,"[[""Goldsmithing - (Information Needed)"", 1], [""Macuil Plating"", 1], [""Dark Matter"", 1], [""Ruthenium Ore"", 1], [""Moldy Katana"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Mochizuki Shinobi-Gatana"", 1], [""Fudo Masamune"", 1], null]"
|
||||
Amateur,112,[],Aput Mantle,Ice,,"[[""Akaso Thread"", 1], [""Cehuetzi Pelt"", 1]]","[[""Aput Mantle +1"", 1], null, null]"
|
||||
Amateur,112,"[[""Clothcraft"", 70]]",Vexed Tekko,Fire,,"[[""Cehuetzi Pelt"", 1], [""Muut's Vestment"", 1], [""Eschite Ore"", 1], [""Hexed Tekko"", 1]]","[[""Jinxed Tekko"", 1], null, null]"
|
||||
Amateur,113,"[[""Clothcraft"", 70]]",Vexed Hakama,Fire,,"[[""Cehuetzi Pelt"", 1], [""Muut's Vestment"", 1], [""Eschite Ore"", 1], [""Hexed Hakama"", 1]]","[[""Jinxed Hakama"", 1], null, null]"
|
||||
Amateur,113,"[[""Goldsmithing"", 70]]",Vexed Hose,Earth,,"[[""Hepatizon Ingot"", 1], [""Plovid Flesh"", 1], [""Eschite Ore"", 1], [""Hexed Hose"", 1]]","[[""Jinxed Hose"", 1], null, null]"
|
||||
Amateur,115,[],Wretched Coat,Wind,,"[[""Malboro Fiber"", 1], [""Eltoro Leather"", 1], [""Penelope's Cloth"", 1], [""Belladonna Sap"", 1], [""Plovid Flesh"", 2]]","[[""Wretched Coat +1"", 1], null, null]"
|
||||
Amateur,115,[],Gerdr Belt,Earth,,"[[""Orichalcum Chain"", 1], [""Faulpie Leather"", 2], [""Wyrm Ash"", 1]]","[[""Gerdr Belt +1"", 1], null, null]"
|
||||
Amateur,115,[],Arke Gambieras,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 1], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 1], [""Faulpie Leather"", 2]]","[[""Arke Gambieras +1"", 1], null, null]"
|
||||
Amateur,115,[],Heyoka Leggings,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 1], [""Yggdreant Root"", 1], [""Macuil Horn"", 1], [""Faulpie Leather"", 2]]","[[""Heyoka Leggings +1"", 1], null, null]"
|
||||
Amateur,115,[],Arke Manopolas,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 2], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 1], [""Faulpie Leather"", 2]]","[[""Arke Manopolas +1"", 1], null, null]"
|
||||
Amateur,115,[],Heyoka Mittens,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 2], [""Yggdreant Root"", 1], [""Macuil Horn"", 1], [""Faulpie Leather"", 2]]","[[""Heyoka Mittens +1"", 1], null, null]"
|
||||
Amateur,115,[],Arke Zuchetto,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 1], [""Faulpie Leather"", 2]]","[[""Arke Zuchetto +1"", 1], null, null]"
|
||||
Amateur,115,[],Heyoka Cap,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Yggdreant Root"", 1], [""Macuil Horn"", 1], [""Faulpie Leather"", 2]]","[[""Heyoka Cap +1"", 1], null, null]"
|
||||
Amateur,115,[],Arke Cosciales,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 1], [""Faulpie Leather"", 3]]","[[""Arke Cosciales +1"", 1], null, null]"
|
||||
Amateur,115,[],Heyoka Subligar,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Yggdreant Root"", 1], [""Macuil Horn"", 1], [""Faulpie Leather"", 3]]","[[""Heyoka Subligar +1"", 1], null, null]"
|
||||
Amateur,115,[],Arke Corazza,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 2], [""Faulpie Leather"", 3]]","[[""Arke Corazza +1"", 1], null, null]"
|
||||
Amateur,115,[],Heyoka Harness,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Yggdreant Root"", 1], [""Macuil Horn"", 2], [""Faulpie Leather"", 3]]","[[""Heyoka Harness +1"", 1], null, null]"
|
||||
Amateur,118,[],Ioskeha Belt,Earth,,"[[""Palladian Brass Chain"", 1], [""Wyrm Blood"", 1], [""Plovid Flesh"", 1]]","[[""Ioskeha Belt +1"", 1], null, null]"
|
||||
,2,[],Sheep Leather,Dark,,"[[""Sheepskin"", 1], [""Willow Log"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,2,[],Sheep Leather,Dark,,"[[""Sheepskin"", 1], [""Windurstian Tea Leaves"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,2,[],Sheep Leather,Dark,Tanning,"[[""Sheepskin"", 3], [""Windurstian Tea Leaves"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,2,[],Smooth Sheep Leather,Dark,Leather Purification,"[[""Sheepskin"", 1], [""Willow Log"", 1], [""Distilled Water"", 1], [""Wind Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
|
||||
,2,[],Smooth Sheep Leather,Dark,Leather Purification,"[[""Sheepskin"", 1], [""Windurstian Tea Leaves"", 1], [""Distilled Water"", 1], [""Wind Anima"", 2], [""Light Anima"", 1]]","[null, null, null]"
|
||||
,2,[],Vivio Sheep Leather,Dark,Leather Purification,"[[""Sheepskin"", 1], [""Willow Log"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,2,[],Vivio Sheep Leather,Dark,Leather Purification,"[[""Sheepskin"", 1], [""Windurstian Tea Leaves"", 1], [""Wind Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,3,"[[""Woodworking"", 1]]",Cesti,Earth,,"[[""Ash Lumber"", 1], [""Sheep Leather"", 2]]","[[""Cesti +1"", 1], null, null]"
|
||||
,3,[],Vagabond's Gloves,Earth,,"[[""Sheep Leather"", 2], [""Cotton Cloth"", 1]]","[[""Nomad's Gloves"", 1], null, null]"
|
||||
,4,[],Sheep Wool,Wind,,"[[""Sheepskin"", 2]]","[null, null, null]"
|
||||
,5,[],Leather Bandana,Wind,,"[[""Sheep Leather"", 1]]","[[""Leather Bandana +1"", 1], null, null]"
|
||||
,5,[],Vagabond's Boots,Earth,,"[[""Bronze Scales"", 1], [""Grass Cloth"", 1], [""Sheep Leather"", 2]]","[[""Nomad's Boots"", 1], null, null]"
|
||||
,5,[],Leather Bandana,Wind,,"[[""Leathercraft Kit 5"", 1]]","[null, null, null]"
|
||||
,5,[],Fine Parchment,Dark,,"[[""Parchment"", 1], [""Pumice Stone"", 1]]","[null, null, null]"
|
||||
,6,[],Leather Highboots,Earth,,"[[""Bronze Scales"", 1], [""Sheep Leather"", 3]]","[[""Leather Highboots +1"", 1], null, null]"
|
||||
,7,[],Rabbit Mantle,Earth,,"[[""Rabbit Hide"", 5], [""Grass Thread"", 1]]","[[""Rabbit Mantle +1"", 1], null, null]"
|
||||
,8,[],Leather Gloves,Earth,,"[[""Grass Cloth"", 1], [""Sheep Leather"", 2]]","[[""Leather Gloves +1"", 1], null, null]"
|
||||
,8,[],San d'Orian Cesti,Earth,,"[[""Royal Archer's Cesti"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Cesti"", 1], null, null]"
|
||||
,9,[],Leather Trousers,Earth,,"[[""Grass Cloth"", 2], [""Sheep Leather"", 2]]","[[""Leather Trousers +1"", 1], null, null]"
|
||||
,10,[],Leather Vest,Earth,,"[[""Sheep Leather"", 3], [""Lizard Skin"", 1]]","[[""Leather Vest +1"", 1], null, null]"
|
||||
,10,[],Leather Vest,Earth,,"[[""Leathercraft Kit 10"", 1]]","[null, null, null]"
|
||||
,11,"[[""Smithing"", 4]]",Leather Pouch,Earth,,"[[""Bronze Scales"", 1], [""Sheep Leather"", 2], [""Rabbit Hide"", 1]]","[null, null, null]"
|
||||
,11,[],Solea,Wind,,"[[""Sheep Leather"", 2]]","[[""Solea +1"", 1], null, null]"
|
||||
,12,[],Karakul Leather,Dark,,"[[""Karakul Skin"", 1], [""Imperial Tea Leaves"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,12,[],Karakul Leather,Dark,Tanning,"[[""Karakul Skin"", 3], [""Imperial Tea Leaves"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,12,[],Lizard Belt,Wind,,"[[""Lizard Skin"", 1], [""Iron Chain"", 1]]","[[""Lizard Belt +1"", 1], null, null]"
|
||||
,12,[],Sturdy Trousers,Earth,Leather Purification,"[[""Leather Trousers"", 1], [""Lambent Fire Cell"", 1], [""Lambent Earth Cell"", 1]]","[null, null, null]"
|
||||
,12,[],Lizard Strap,Wind,,"[[""Lizard Skin"", 2]]","[[""Lizard Strap +1"", 1], null, null]"
|
||||
,13,[],Leather Belt,Wind,,"[[""Sheep Leather"", 1], [""Iron Chain"", 1]]","[[""Leather Belt +1"", 1], null, null]"
|
||||
,14,[],Fisherman's Gloves,Earth,,"[[""Lizard Skin"", 2], [""Cotton Cloth"", 1]]","[[""Angler's Gloves"", 1], null, null]"
|
||||
,14,[],Karakul Wool,Wind,,"[[""Karakul Skin"", 2]]","[null, null, null]"
|
||||
,14,[],Lizard Mantle,Earth,,"[[""Lizard Skin"", 1], [""Lizard Molt"", 1], [""Grass Thread"", 1]]","[[""Lizard Mantle +1"", 1], null, null]"
|
||||
,15,[],Lizard Helm,Earth,,"[[""Lizard Skin"", 2], [""Sheep Leather"", 1]]","[[""Lizard Helm +1"", 1], null, null]"
|
||||
,15,[],Lizard Helm,Earth,,"[[""Leathercraft Kit 15"", 1]]","[null, null, null]"
|
||||
,16,[],Augmenting Belt,Wind,Leather Purification,"[[""Lambent Fire Cell"", 1], [""Lambent Earth Cell"", 1], [""Leather Belt"", 1]]","[null, null, null]"
|
||||
,16,[],Lizard Gloves,Earth,,"[[""Lizard Skin"", 1], [""Leather Gloves"", 1]]","[[""Fine Gloves"", 1], null, null]"
|
||||
,17,[],Lizard Cesti,Earth,,"[[""Cesti"", 1], [""Lizard Skin"", 1]]","[[""Burning Cesti"", 1], null, null]"
|
||||
,17,[],Exactitude Mantle,Earth,,"[[""Immortal Molt"", 1], [""Lizard Skin"", 1], [""Grass Thread"", 1]]","[[""Exactitude Mantle +1"", 1], null, null]"
|
||||
,18,"[[""Goldsmithing"", 5]]",Lizard Ledelsens,Earth,,"[[""Lizard Skin"", 1], [""Brass Sheet"", 1], [""Leather Highboots"", 1]]","[[""Fine Ledelsens"", 1], null, null]"
|
||||
,18,[],Lizard Trousers,Earth,,"[[""Lizard Skin"", 2], [""Leather Trousers"", 1]]","[[""Fine Trousers"", 1], null, null]"
|
||||
,19,[],Lizard Jerkin,Earth,,"[[""Lizard Skin"", 3], [""Sheep Leather"", 1]]","[[""Fine Jerkin"", 1], null, null]"
|
||||
,19,[],Wolf Fur,Wind,,"[[""Wolf Hide"", 3]]","[null, null, null]"
|
||||
,20,[],Fisherman's Boots,Earth,,"[[""Lizard Skin"", 2], [""Bronze Scales"", 1], [""Grass Cloth"", 1]]","[[""Angler's Boots"", 1], null, null]"
|
||||
,20,[],Little Worm Belt,Earth,,"[[""Sheep Leather"", 1], [""Animal Glue"", 1], [""Leather Pouch"", 1], [""Worm Mulch"", 1]]","[null, null, null]"
|
||||
,20,[],Lugworm Belt,Earth,,"[[""Sheep Leather"", 1], [""Animal Glue"", 1], [""Leather Pouch"", 1], [""Lugworm Sand"", 1]]","[null, null, null]"
|
||||
,20,[],Smash Cesti,Earth,Leather Ensorcellment,"[[""Lambent Earth Cell"", 1], [""Lambent Wind Cell"", 1], [""Lizard Cesti"", 1]]","[null, null, null]"
|
||||
,20,[],Fisherman's Boots,Earth,,"[[""Leathercraft Kit 20"", 1]]","[null, null, null]"
|
||||
,21,[],Dhalmel Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Dhalmel Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,21,[],Dhalmel Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Dhalmel Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,21,[],Dhalmel Leather,Dark,,"[[""Willow Log"", 1], [""Dhalmel Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,21,[],Fragrant Dhalmel Hide,Water,Leather Ensorcellment,"[[""Dhalmel Hide"", 1], [""Wind Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
,21,[],Tough Dhalmel Leather,Dark,Leather Ensorcellment,"[[""Dhalmel Hide"", 1], [""Windurstian Tea Leaves"", 1], [""Distilled Water"", 1], [""Wind Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
,21,[],Tough Dhalmel Leather,Dark,Leather Ensorcellment,"[[""Dhalmel Hide"", 1], [""Willow Log"", 1], [""Distilled Water"", 1], [""Wind Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
,22,[],Leather Ring,Wind,,"[[""Dhalmel Leather"", 1]]","[[""Leather Ring +1"", 1], null, null]"
|
||||
,22,[],Chocobo Blinkers,Earth,,"[[""Linen Cloth"", 1], [""Silk Cloth"", 1], [""Karakul Leather"", 1]]","[[""Chocobo Blinkers x6 Verification Needed"", 1], [""Chocobo Blinkers x9 Verification Needed"", 1], [""Chocobo Blinkers x12 Verification Needed"", 1]]"
|
||||
,23,[],Chocobo Gloves,Earth,,"[[""Dhalmel Leather"", 1], [""Lizard Skin"", 1], [""Cotton Cloth"", 1]]","[[""Rider's Gloves"", 1], null, null]"
|
||||
,24,[],Bugard Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,24,[],Bugard Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Bugard Skin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,24,[],Bugard Leather,Dark,,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,24,[],Glossy Bugard Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Wind Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,24,[],Glossy Bugard Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Wind Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,24,[],Rugged Bugard Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Fire Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,24,[],Rugged Bugard Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Fire Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,24,[],Soft Bugard Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Lightning Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,24,[],Soft Bugard Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Lightning Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,24,[],Studded Bandana,Earth,,"[[""Iron Chain"", 1], [""Leather Bandana"", 1]]","[[""Strong Bandana"", 1], null, null]"
|
||||
,24,[],Tough Bugard Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Bugard Skin"", 1], [""Earth Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,24,[],Tough Bugard Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Bugard Skin"", 1], [""Earth Anima"", 2], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,25,[],Armored Ring,Wind,,"[[""Tough Dhalmel Leather"", 1], [""Leather Ring"", 1]]","[null, null, null]"
|
||||
,25,"[[""Clothcraft"", 20]]",Seer's Pumps,Earth,,"[[""Wool Thread"", 2], [""Cotton Cloth"", 2], [""Sheep Leather"", 1]]","[[""Seer's Pumps +1"", 1], null, null]"
|
||||
,25,[],Warrior's Belt,Wind,,"[[""Iron Chain"", 1], [""Dhalmel Leather"", 1]]","[[""Warrior's Belt +1"", 1], null, null]"
|
||||
,25,[],Warrior's Belt,Wind,,"[[""Leathercraft Kit 25"", 1]]","[null, null, null]"
|
||||
,26,[],Studded Gloves,Earth,,"[[""Iron Chain"", 1], [""Dhalmel Leather"", 1], [""Leather Gloves"", 1]]","[[""Strong Gloves"", 1], null, null]"
|
||||
,26,"[[""Clothcraft"", 21]]",Trader's Pigaches,Earth,,"[[""Dhalmel Leather"", 1], [""Sheep Leather"", 1], [""Red Grass Thread"", 1], [""Red Grass Cloth"", 2]]","[[""Baron's Pigaches"", 1], null, null]"
|
||||
,27,[],Dhalmel Mantle,Ice,,"[[""Dhalmel Hide"", 1], [""Wool Thread"", 1]]","[[""Dhalmel Mantle +1"", 1], null, null]"
|
||||
,28,"[[""Clothcraft"", 27]]",Noct Brais,Earth,,"[[""Linen Thread"", 1], [""Linen Cloth"", 2], [""Sheep Leather"", 1]]","[[""Noct Brais +1"", 1], null, null]"
|
||||
,28,[],Studded Boots,Earth,,"[[""Iron Chain"", 1], [""Dhalmel Leather"", 1], [""Leather Highboots"", 1]]","[[""Strong Boots"", 1], null, null]"
|
||||
,29,[],San d'Orian Bandana,Earth,,"[[""Royal Footman's Bandana"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Bandana"", 1], null, null]"
|
||||
,29,[],Sandals,Wind,,"[[""Dhalmel Leather"", 1], [""Sheep Leather"", 1]]","[[""Mage's Sandals"", 1], null, null]"
|
||||
,29,[],Aiming Gloves,Earth,Leather Ensorcellment,"[[""Lambent Water Cell"", 1], [""Lambent Wind Cell"", 1], [""Studded Gloves"", 1]]","[null, null, null]"
|
||||
,29,[],Dhalmel Hair,Wind,,"[[""Dhalmel Hide"", 3]]","[[""Dhalmel Hair"", 2], [""Dhalmel Hair"", 3], [""Dhalmel Hair"", 4]]"
|
||||
,30,[],Breath Mantle,Ice,,"[[""Fragrant Dhalmel Hide"", 1], [""Dhalmel Mantle"", 1]]","[null, null, null]"
|
||||
,30,[],Caliginous Wolf Hide,Ice,Leather Purification,"[[""Wolf Hide"", 1], [""Earth Anima"", 1], [""Water Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
|
||||
,30,[],Chocobo Boots,Earth,,"[[""Dhalmel Leather"", 2], [""Bronze Scales"", 1], [""Grass Cloth"", 1]]","[[""Rider's Boots"", 1], null, null]"
|
||||
,30,[],Studded Trousers,Earth,,"[[""Iron Chain"", 1], [""Dhalmel Leather"", 1], [""Leather Trousers"", 1]]","[[""Strong Trousers"", 1], null, null]"
|
||||
,30,[],Studded Trousers,Earth,,"[[""Leathercraft Kit 30"", 1]]","[null, null, null]"
|
||||
,31,[],Parchment,Dark,,"[[""Karakul Leather"", 1], [""Rolanberry"", 1]]","[null, null, null]"
|
||||
,31,[],Parchment,Dark,,"[[""Rolanberry"", 1], [""Sheep Leather"", 1]]","[[""Parchment"", 2], [""Parchment"", 3], [""Parchment"", 4]]"
|
||||
,31,[],San d'Orian Gloves,Earth,,"[[""Royal Footman's Gloves"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Gloves"", 1], null, null]"
|
||||
,31,[],Vellum,Dark,,"[[""Rolanberry"", 1], [""Sheep Leather"", 1], [""Gold Dust"", 1]]","[[""Vellum"", 4], null, null]"
|
||||
,32,[],Studded Vest,Earth,,"[[""Dhalmel Leather"", 1], [""Ram Leather"", 1], [""Iron Chain"", 1], [""Leather Vest"", 1]]","[[""Strong Vest"", 1], null, null]"
|
||||
,33,[],Field Gloves,Earth,,"[[""Dhalmel Leather"", 1], [""Cotton Cloth"", 1], [""Ram Leather"", 1]]","[[""Worker Gloves"", 1], null, null]"
|
||||
,33,[],San d'Orian Boots,Earth,,"[[""Royal Footman's Boots"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Boots"", 1], null, null]"
|
||||
,33,[],Wolf Mantle,Ice,,"[[""Wolf Hide"", 1], [""Wool Thread"", 1]]","[[""Wolf Mantle +1"", 1], null, null]"
|
||||
,34,"[[""Clothcraft"", 8]]",Shoes,Earth,,"[[""Dhalmel Leather"", 2], [""Cotton Cloth"", 1]]","[[""Shoes +1"", 1], null, null]"
|
||||
,35,[],Bloody Ram Leather,Dark,Leather Purification,"[[""Windurstian Tea Leaves"", 1], [""Ram Skin"", 1], [""Earth Anima"", 1], [""Lightning Anima"", 1], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,35,[],Healing Vest,Earth,,"[[""Vivio Sheep Leather"", 1], [""Studded Vest"", 1]]","[null, null, null]"
|
||||
,35,[],Light Ram Leather,Dark,Leather Purification,"[[""Ram Skin"", 1], [""Windurstian Tea Leaves"", 1], [""Distilled Water"", 1], [""Ice Anima"", 1], [""Lightning Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
|
||||
,35,[],Ram Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Ram Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,35,[],Ram Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Ram Skin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,35,[],San d'Orian Trousers,Earth,,"[[""Royal Footman's Trousers"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Trousers"", 1], null, null]"
|
||||
,35,[],Ram Leather,Dark,,"[[""Leathercraft Kit 35"", 1]]","[null, null, null]"
|
||||
,36,[],Bloody Ram Leather,Dark,Leather Purification,"[[""Willow Log"", 1], [""Ram Skin"", 1], [""Earth Anima"", 1], [""Lightning Anima"", 1], [""Light Anima"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,36,[],Fragrant Ram Skin,Water,Leather Ensorcellment,"[[""Ram Skin"", 1], [""Wind Anima"", 1], [""Earth Anima"", 1], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
,36,[],Invisible Mantle,Ice,,"[[""Caliginous Wolf Hide"", 1], [""Wolf Mantle"", 1]]","[null, null, null]"
|
||||
,36,[],Light Ram Leather,Dark,Leather Purification,"[[""Ram Skin"", 1], [""Willow Log"", 1], [""Distilled Water"", 1], [""Ice Anima"", 1], [""Lightning Anima"", 1], [""Light Anima"", 1]]","[null, null, null]"
|
||||
,36,[],Ram Leather,Dark,,"[[""Willow Log"", 1], [""Ram Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,37,"[[""Clothcraft"", 28]]",Garish Pumps,Earth,,"[[""Sheep Leather"", 1], [""Scarlet Linen"", 2], [""Bloodthread"", 2]]","[[""Rubious Pumps"", 1], null, null]"
|
||||
,37,[],Leather Gorget,Earth,,"[[""Ram Leather"", 1], [""Grass Thread"", 1]]","[[""Leather Gorget +1"", 1], null, null]"
|
||||
,37,[],Magic Belt,Wind,,"[[""Toad Oil"", 1], [""Mercury"", 1], [""Ram Leather"", 1]]","[[""Magic Belt +1"", 1], null, null]"
|
||||
,37,[],San d'Orian Vest,Earth,,"[[""Royal Footman's Vest"", 1], [""Sheep Leather"", 1]]","[[""Kingdom Vest"", 1], null, null]"
|
||||
,38,[],Cuir Bandana,Water,,"[[""Ram Leather"", 1], [""Beeswax"", 1], [""Leather Bandana"", 1]]","[[""Cuir Bandana +1"", 1], null, null]"
|
||||
,39,[],Combat Caster's Shoes +1,Earth,,"[[""Combat Caster's Shoes"", 1], [""Dhalmel Leather"", 1]]","[[""Combat Caster's Shoes +2"", 1], null, null]"
|
||||
,39,"[[""Alchemy"", 10]]",Laminated Ram Leather,Earth,,"[[""Ram Leather"", 1], [""Animal Glue"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,39,[],Wolf Gorget,Earth,,"[[""Cotton Thread"", 1], [""Wolf Hide"", 1]]","[[""Wolf Gorget +1"", 1], null, null]"
|
||||
,40,[],Cuir Gloves,Water,,"[[""Ram Leather"", 2], [""Beeswax"", 1], [""Leather Gloves"", 1]]","[[""Cuir Gloves +1"", 1], null, null]"
|
||||
,40,[],Field Boots,Earth,,"[[""Bronze Scales"", 1], [""Grass Cloth"", 1], [""Ram Leather"", 2]]","[[""Worker Boots"", 1], null, null]"
|
||||
,40,[],Mist Pumps,Earth,,"[[""Smooth Sheep Leather"", 1], [""Garish Pumps"", 1]]","[null, null, null]"
|
||||
,40,[],Field Boots,Earth,,"[[""Leathercraft Kit 40"", 1]]","[null, null, null]"
|
||||
,41,[],Barbarian's Belt,Water,,"[[""Leather Belt"", 1], [""Fiend Blood"", 1], [""Beastman Blood"", 1]]","[[""Brave Belt"", 1], null, null]"
|
||||
,42,[],Cuir Highboots,Water,,"[[""Ram Leather"", 2], [""Beeswax"", 1], [""Leather Highboots"", 1]]","[[""Cuir Highboots +1"", 1], null, null]"
|
||||
,43,[],Waistbelt,Wind,,"[[""Grass Thread"", 1], [""Ram Leather"", 2]]","[[""Waistbelt +1"", 1], null, null]"
|
||||
,44,[],Acrobat's Belt,Earth,,"[[""Glossy Bugard Leather"", 1], [""Barbarian's Belt"", 1]]","[null, null, null]"
|
||||
,44,[],Runner's Belt,Earth,,"[[""Soft Bugard Leather"", 1], [""Barbarian's Belt"", 1]]","[null, null, null]"
|
||||
,44,[],Samsonian Belt,Earth,,"[[""Rugged Bugard Leather"", 1], [""Barbarian's Belt"", 1]]","[null, null, null]"
|
||||
,44,[],Tough Belt,Earth,,"[[""Tough Bugard Leather"", 1], [""Barbarian's Belt"", 1]]","[null, null, null]"
|
||||
,45,[],Cuir Trousers,Water,,"[[""Ram Leather"", 2], [""Beeswax"", 1], [""Leather Trousers"", 1]]","[[""Cuir Trousers +1"", 1], null, null]"
|
||||
,45,"[[""Clothcraft"", 27]]",Chocobo Jack Coat,Earth,,"[[""Linen Cloth"", 1], [""Sheep Leather"", 1], [""Wool Thread"", 1], [""Wool Cloth"", 1], [""Ram Leather"", 2]]","[[""Rider's Jack Coat"", 1], null, null]"
|
||||
,45,[],Powder Boots,Earth,,"[[""Tough Dhalmel Leather"", 1], [""Cuir Highboots"", 1]]","[null, null, null]"
|
||||
,45,"[[""Clothcraft"", 4]]",Tarasque Mitts,Earth,,"[[""Saruta Cotton"", 1], [""Tarasque Skin"", 2], [""Grass Thread"", 2]]","[[""Tarasque Mitts +1"", 1], null, null]"
|
||||
,45,[],Cuir Trousers,Water,,"[[""Leathercraft Kit 45"", 1]]","[null, null, null]"
|
||||
,46,[],Cuir Bouilli,Water,,"[[""Ram Leather"", 2], [""Beeswax"", 1], [""Leather Vest"", 1]]","[[""Cuir Bouilli +1"", 1], null, null]"
|
||||
,46,[],Haste Belt,Earth,,"[[""Light Ram Leather"", 1], [""Waistbelt"", 1]]","[null, null, null]"
|
||||
,46,[],Royal Knight's Belt +1,Earth,,"[[""Royal Knight's Belt"", 1], [""Ram Leather"", 1]]","[[""Royal Knight's Belt +2"", 1], null, null]"
|
||||
,46,[],Narasimha Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Narasimha Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,47,[],Narasimha Leather,Dark,,"[[""Willow Log"", 1], [""Narasimha Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,48,[],Corsette,Earth,,"[[""Waistbelt"", 1], [""Coeurl Whisker"", 1], [""Scarlet Ribbon"", 1], [""Dhalmel Leather"", 1], [""Silk Cloth"", 1]]","[[""Corsette +1"", 1], null, null]"
|
||||
,49,[],Buffalo Leather,Dark,,"[[""Willow Log"", 1], [""Buffalo Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,49,[],Buffalo Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Buffalo Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,49,[],Buffalo Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Buffalo Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,49,[],Ram Mantle,Ice,,"[[""Ram Skin"", 1], [""Wool Thread"", 1]]","[[""Ram Mantle +1"", 1], null, null]"
|
||||
,50,[],Narasimha's Cesti,Earth,,"[[""Cesti"", 1], [""Narasimha Leather"", 1]]","[[""Vishnu's Cesti"", 1], null, null]"
|
||||
,50,[],Leather Shield,Earth,,"[[""Ram Leather"", 1], [""Raptor Skin"", 1], [""Lauan Shield"", 1]]","[[""Leather Shield +1"", 1], null, null]"
|
||||
,50,[],Leather Shield,Earth,,"[[""Leathercraft Kit 50"", 1]]","[null, null, null]"
|
||||
,51,[],Frigid Skin,Dark,Leather Ensorcellment,"[[""Raptor Skin"", 1], [""Ice Anima"", 2], [""Dark Anima"", 1]]","[null, null, null]"
|
||||
,52,[],High Breath Mantle,Ice,,"[[""Fragrant Ram Skin"", 1], [""Ram Mantle"", 1]]","[null, null, null]"
|
||||
,52,[],Himantes,Earth,,"[[""Raptor Skin"", 1], [""Lizard Cesti"", 1]]","[[""Himantes +1"", 1], null, null]"
|
||||
,52,[],Moblin Sheep Leather,Dark,,"[[""Willow Log"", 1], [""Moblin Sheepskin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,52,[],Moblin Sheep Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Moblin Sheepskin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,52,[],Moblin Sheep Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Moblin Sheepskin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,53,"[[""Alchemy"", 9]]",Laminated Buffalo Leather,Earth,,"[[""Animal Glue"", 1], [""Buffalo Leather"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,53,[],Raptor Strap,Wind,,"[[""Raptor Skin"", 2]]","[[""Raptor Strap +1"", 1], null, null]"
|
||||
,53,[],Raptor Mantle,Earth,,"[[""Raptor Skin"", 2], [""Grass Thread"", 1]]","[[""Dino Mantle"", 1], null, null]"
|
||||
,54,[],Moblin Sheep Wool,Wind,,"[[""Moblin Sheepskin"", 2]]","[null, null, null]"
|
||||
,54,[],Raptor Trousers,Earth,,"[[""Raptor Skin"", 2], [""Cuir Trousers"", 1]]","[[""Dino Trousers"", 1], null, null]"
|
||||
,55,"[[""Goldsmithing"", 28]]",Raptor Ledelsens,Earth,,"[[""Raptor Skin"", 1], [""Cuir Highboots"", 1], [""Mythril Sheet"", 1]]","[[""Dino Ledelsens"", 1], null, null]"
|
||||
,55,[],Noble Himantes,Earth,Leather Ensorcellment,"[[""Lambent Fire Cell"", 1], [""Lambent Wind Cell"", 1], [""Himantes"", 1]]","[null, null, null]"
|
||||
,55,[],Raptor Gloves,Earth,,"[[""Leathercraft Kit 55"", 1]]","[null, null, null]"
|
||||
,56,"[[""Clothcraft"", 49]]",Crow Gaiters,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 3], [""Sheep Leather"", 1], [""Ram Leather"", 1], [""Tiger Leather"", 1]]","[[""Raven Gaiters"", 1], null, null]"
|
||||
,56,"[[""Smithing"", 28]]",Raptor Helm,Earth,,"[[""Raptor Skin"", 2], [""Iron Sheet"", 1], [""Sheep Leather"", 1]]","[[""Dino Helm"", 1], null, null]"
|
||||
,56,[],Royal Squire's Shield +1,Earth,,"[[""Royal Squire's Shield"", 1], [""Ram Leather"", 1]]","[[""Royal Squire's Shield +2"", 1], null, null]"
|
||||
,57,"[[""Goldsmithing"", 50], [""Clothcraft"", 48]]",Brigandine,Earth,,"[[""Lizard Jerkin"", 1], [""Velvet Cloth"", 2], [""Gold Sheet"", 1], [""Ram Leather"", 1], [""Mythril Sheet"", 1], [""Brass Scales"", 1]]","[[""Brigandine +1"", 1], null, null]"
|
||||
,57,[],Desert Boots,Earth,,"[[""Bronze Scales"", 1], [""Sheep Leather"", 2], [""Yowie Skin"", 1]]","[[""Desert Boots +1"", 1], null, null]"
|
||||
,57,[],Ice Trousers,Earth,,"[[""Frigid Skin"", 1], [""Raptor Trousers"", 1]]","[null, null, null]"
|
||||
,57,[],Raptor Gloves,Earth,,"[[""Cuir Gloves"", 1], [""Raptor Skin"", 1]]","[[""Dino Gloves"", 1], null, null]"
|
||||
,58,[],Catoblepas Leather,Dark,,"[[""Willow Log"", 1], [""Catoblepas Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,58,[],Catoblepas Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Catoblepas Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,58,[],Catoblepas Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Catoblepas Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,58,[],Raptor Jerkin,Earth,,"[[""Raptor Skin"", 2], [""Sheep Leather"", 1]]","[[""Dino Jerkin"", 1], null, null]"
|
||||
,59,"[[""Smithing"", 50]]",Brigandine,Earth,,"[[""Clothcraft - (38)"", 1], [""Darksteel Sheet"", 2], [""Linen Cloth"", 1], [""Iron Chain"", 1], [""Tiger Leather"", 1], [""Sheep Leather"", 1], [""Velvet Cloth"", 1], [""Wool Thread"", 1]]","[[""Brigandine +1"", 1], null, null]"
|
||||
,59,"[[""Clothcraft"", 8]]",Moccasins,Earth,,"[[""Dhalmel Leather"", 1], [""Linen Cloth"", 1], [""Raptor Skin"", 1]]","[[""Moccasins +1"", 1], null, null]"
|
||||
,60,[],Amemet Mantle,Earth,,"[[""Amemet Skin"", 1], [""Lizard Molt"", 1], [""Grass Thread"", 1]]","[[""Amemet Mantle +1"", 1], null, null]"
|
||||
,60,[],Blizzard Gloves,Earth,,"[[""Frigid Skin"", 1], [""Raptor Gloves"", 1]]","[null, null, null]"
|
||||
,60,[],Hard Leather Ring,Wind,,"[[""Leathercraft Kit 60"", 1]]","[null, null, null]"
|
||||
,61,[],Tiger Leather,Dark,,"[[""Willow Log"", 1], [""Tiger Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,61,[],Tiger Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Tiger Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,61,[],Tiger Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Tiger Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,61,[],Smilodon Leather,Dark,,"[[""Willow Log"", 1], [""Smilodon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,61,[],Smilodon Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Smilodon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,61,[],Smilodon Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Smilodon Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,61,[],Spirit Smilodon Leather,Dark,Leather Purification,"[[""Earth Anima"", 2], [""Dark Anima"", 1], [""Windurstian Tea Leaves"", 1], [""Smilodon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,61,[],Spirit Smilodon Leather,Dark,Leather Purification,"[[""Earth Anima"", 2], [""Dark Anima"", 1], [""Willow Log"", 1], [""Smilodon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,62,[],Hard Leather Ring,Wind,,"[[""Tiger Leather"", 1]]","[[""Tiger Ring"", 1], null, null]"
|
||||
,62,"[[""Goldsmithing"", 57], [""Clothcraft"", 54]]",Premium Bag,Earth,,"[[""Bugard Leather"", 1], [""Gold Thread"", 1], [""Moblin Sheep Leather"", 1], [""Moblin Sheep Wool"", 1], [""Platinum Ingot"", 1], [""Rainbow Cloth"", 1], [""Rainbow Thread"", 1]]","[null, null, null]"
|
||||
,62,[],Smilodon Ring,Wind,,"[[""Smilodon Leather"", 1]]","[[""Smilodon Ring +1"", 1], null, null]"
|
||||
,63,[],Beak Mantle,Earth,,"[[""Cockatrice Skin"", 2], [""Grass Thread"", 1]]","[[""Beak Mantle +1"", 1], null, null]"
|
||||
,63,"[[""Clothcraft"", 46]]",Crow Hose,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Sheep Leather"", 1], [""Tiger Leather"", 2]]","[[""Raven Hose"", 1], null, null]"
|
||||
,63,[],Bugard Strap,Wind,,"[[""Bugard Leather"", 2]]","[[""Bugard Strap +1"", 1], null, null]"
|
||||
,64,[],Beak Trousers,Earth,,"[[""Cockatrice Skin"", 2], [""Cuir Trousers"", 1]]","[[""Beak Trousers +1"", 1], null, null]"
|
||||
,64,"[[""Clothcraft"", 25]]",Jaridah Khud,Earth,,"[[""Karakul Leather"", 1], [""Marid Leather"", 1], [""Marid Hair"", 1], [""Karakul Cloth"", 1]]","[[""Akinji Khud"", 1], null, null]"
|
||||
,64,[],Stirge Belt,Wind,,"[[""Ram Leather"", 1], [""Mercury"", 1], [""Toad Oil"", 1], [""Volant Serum"", 1]]","[null, null, null]"
|
||||
,65,"[[""Goldsmithing"", 28]]",Beak Ledelsens,Earth,,"[[""Cockatrice Skin"", 1], [""Cuir Highboots"", 1], [""Mythril Sheet"", 1]]","[[""Beak Ledelsens +1"", 1], null, null]"
|
||||
,65,"[[""Alchemy"", 43]]",Sheep Chammy,Dark,,"[[""Sheepskin"", 1], [""Windurstian Tea Leaves"", 1], [""Clot Plasma"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,65,"[[""Alchemy"", 43]]",Sheep Chammy,Dark,,"[[""Sheepskin"", 1], [""Willow Log"", 1], [""Clot Plasma"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,65,[],Protect Ring,Earth,,"[[""Smilodon Ring"", 1], [""Spirit Smilodon Leather"", 1]]","[null, null, null]"
|
||||
,66,[],Battle Boots,Earth,,"[[""Iron Scales"", 1], [""Ram Leather"", 2], [""Tiger Leather"", 1]]","[[""Battle Boots +1"", 1], null, null]"
|
||||
,66,"[[""Smithing"", 43], [""Clothcraft"", 39]]",Jaridah Peti,Earth,,"[[""Steel Ingot"", 1], [""Steel Sheet"", 1], [""Darksteel Chain"", 1], [""Brass Chain"", 1], [""Velvet Cloth"", 1], [""Karakul Leather"", 1], [""Marid Leather"", 1], [""Karakul Cloth"", 1]]","[[""Akinji Peti"", 1], null, null]"
|
||||
,66,[],Battle Boots,Earth,,"[[""Leathercraft Kit 66"", 1]]","[null, null, null]"
|
||||
,67,"[[""Smithing"", 28]]",Beak Helm,Earth,,"[[""Iron Sheet"", 1], [""Sheep Leather"", 1], [""Cockatrice Skin"", 2]]","[[""Beak Helm +1"", 1], null, null]"
|
||||
,67,[],White Mouton,Dark,,"[[""Willow Log"", 1], [""Ram Skin"", 1], [""Shell Powder"", 2], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,67,[],White Mouton,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Ram Skin"", 1], [""Shell Powder"", 2], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,68,[],Beak Gloves,Earth,,"[[""Cockatrice Skin"", 1], [""Cuir Gloves"", 1]]","[[""Beak Gloves +1"", 1], null, null]"
|
||||
,68,"[[""Woodworking"", 53], [""Smithing"", 9]]",Hoplon,Earth,,"[[""Bronze Sheet"", 1], [""Chestnut Lumber"", 1], [""Walnut Lumber"", 1], [""Ram Leather"", 1]]","[[""Hoplon +1"", 1], null, null]"
|
||||
,69,[],Beak Jerkin,Earth,,"[[""Sheep Leather"", 1], [""Cockatrice Skin"", 2]]","[[""Beak Jerkin +1"", 1], null, null]"
|
||||
,69,"[[""Smithing"", 34]]",Byrnie,Earth,,"[[""Darksteel Sheet"", 1], [""Dhalmel Leather"", 1], [""Ram Leather"", 1], [""Tiger Leather"", 1], [""Behemoth Leather"", 1], [""Silver Mail"", 1]]","[[""Byrnie +1"", 1], null, null]"
|
||||
,69,[],Tabin Boots,Earth,,"[[""Marid Leather"", 1], [""Battle Boots"", 1]]","[[""Tabin Boots +1"", 1], null, null]"
|
||||
,69,[],Silky Suede,Wind,,"[[""Garnet"", 1], [""Buffalo Leather"", 1]]","[null, null, null]"
|
||||
,70,[],Behemoth Leather,Dark,,"[[""Willow Log"", 1], [""Behemoth Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,70,[],Behemoth Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Behemoth Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,70,[],Behemoth Mantle,Ice,,"[[""Wool Thread"", 1], [""Behemoth Hide"", 1]]","[[""Behemoth Mantle +1"", 1], null, null]"
|
||||
,70,"[[""Alchemy"", 46], [""Clothcraft"", 32]]",Black Cotehardie,Earth,,"[[""Beak Jerkin"", 1], [""Black Ink"", 1], [""Malboro Fiber"", 1], [""Ram Leather"", 1], [""Tiger Leather"", 1], [""Mistletoe"", 1], [""Fiend Blood"", 1], [""Velvet Robe"", 1]]","[[""Flora Cotehardie"", 1], null, null]"
|
||||
,70,[],Behemoth Mantle,Ice,,"[[""Leathercraft Kit 70"", 1]]","[null, null, null]"
|
||||
,71,[],Coeurl Leather,Dark,,"[[""Willow Log"", 1], [""Coeurl Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,71,[],Coeurl Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Coeurl Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,71,[],Coeurl Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Coeurl Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,71,"[[""Clothcraft"", 45]]",Pigaches,Earth,,"[[""Gold Thread"", 1], [""Silk Cloth"", 1], [""Tiger Leather"", 2], [""Raptor Skin"", 1]]","[[""Pigaches +1"", 1], null, null]"
|
||||
,71,"[[""Clothcraft"", 45]]",Silken Pigaches,Earth,,"[[""Gold Thread"", 1], [""Raptor Skin"", 1], [""Tiger Leather"", 2], [""Imperial Silk Cloth"", 1]]","[[""Magi Pigaches"", 1], null, null]"
|
||||
,71,[],Spartan Hoplon,Earth,,"[[""Bloody Ram Leather"", 1], [""Hoplon"", 1]]","[null, null, null]"
|
||||
,71,[],Swordbelt,Earth,,"[[""Iron Chain"", 1], [""Tiger Leather"", 2]]","[[""Swordbelt +1"", 1], null, null]"
|
||||
,71,[],Lynx Leather,Dark,,"[[""Willow Log"", 1], [""Lynx Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,71,[],Lynx Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Lynx Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,71,[],Lynx Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Lynx Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,72,[],Coeurl Cesti,Earth,,"[[""Cesti"", 1], [""Coeurl Leather"", 1]]","[[""Torama Cesti"", 1], null, null]"
|
||||
,72,[],Ovinnik Leather,Dark,,"[[""Willow Log"", 1], [""Ovinnik Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,72,[],Ovinnik Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Ovinnik Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,73,"[[""Clothcraft"", 41]]",Battle Hose,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 2]]","[[""Battle Hose +1"", 1], null, null]"
|
||||
,73,[],Manta Leather,Dark,,"[[""Willow Log"", 1], [""Manta Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,73,[],Manta Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Manta Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,73,[],Manta Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Manta Skin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,74,[],Lamia Mantle,Earth,,"[[""Manta Skin"", 1], [""Lamia Skin"", 1], [""Mohbwa Thread"", 1]]","[[""Lamia Mantle +1"", 1], null, null]"
|
||||
,74,[],Tiger Trousers,Earth,,"[[""Cuir Trousers"", 1], [""Tiger Leather"", 2]]","[[""Feral Trousers"", 1], null, null]"
|
||||
,75,"[[""Smithing"", 38], [""Clothcraft"", 27]]",Goblin Coif,Earth,,"[[""Goblin Cutting"", 1], [""Steel Sheet"", 1], [""Linen Cloth"", 1], [""Artificial Lens"", 2], [""Moblin Thread"", 1], [""Undead Skin"", 1], [""Sheep Leather"", 1]]","[null, null, null]"
|
||||
,75,"[[""Goldsmithing"", 28]]",Tiger Ledelsens,Earth,,"[[""Cuir Highboots"", 1], [""Mythril Sheet"", 1], [""Tiger Leather"", 1]]","[[""Feral Ledelsens"", 1], null, null]"
|
||||
,75,[],Tiger Mantle,Ice,,"[[""Tiger Hide"", 1], [""Wool Thread"", 1]]","[[""Feral Mantle"", 1], null, null]"
|
||||
,75,[],Smilodon Mantle,Ice,,"[[""Smilodon Hide"", 1], [""Wool Thread"", 1]]","[[""Smilodon Mantle +1"", 1], null, null]"
|
||||
,75,[],Tiger Mantle,Ice,,"[[""Leathercraft Kit 75"", 1]]","[null, null, null]"
|
||||
,76,"[[""Goldsmithing"", 44], [""Smithing"", 41]]",Black Adargas,Fire,,"[[""Darksteel Ingot"", 2], [""Oak Lumber"", 1], [""Gold Ingot"", 1], [""Ovinnik Leather"", 1]]","[[""Black Adargas +1"", 1], null, null]"
|
||||
,76,[],Marid Leather,Dark,,"[[""Marid Hide"", 1], [""Imperial Tea Leaves"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,76,[],Marid Leather,Dark,Tanning,"[[""Marid Hide"", 3], [""Imperial Tea Leaves"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,76,"[[""Clothcraft"", 47]]",Silk Pumps,Earth,,"[[""Gold Thread"", 2], [""Silk Cloth"", 2], [""Sheep Leather"", 1]]","[[""Silk Pumps +1"", 1], null, null]"
|
||||
,76,[],Tabin Hose,Earth,,"[[""Marid Leather"", 1], [""Battle Hose"", 1]]","[[""Tabin Hose +1"", 1], null, null]"
|
||||
,76,[],Tactician Magician's Pigaches +1,Earth,,"[[""Tactician Magician's Pigaches"", 1], [""Tiger Leather"", 1]]","[[""Tactician Magician's Pigaches +2"", 1], null, null]"
|
||||
,77,"[[""Goldsmithing"", 46], [""Smithing"", 25]]",Adargas,Fire,,"[[""Steel Ingot"", 2], [""Oak Lumber"", 1], [""Gold Ingot"", 1], [""Rheiyoh Leather"", 1]]","[[""Adargas +1"", 1], null, null]"
|
||||
,77,[],Tiger Gloves,Earth,,"[[""Cuir Gloves"", 1], [""Tiger Leather"", 1]]","[[""Feral Gloves"", 1], null, null]"
|
||||
,77,[],Yellow Mouton,Dark,,"[[""Ram Skin"", 1], [""Distilled Water"", 1], [""Windurstian Tea Leaves"", 1], [""Orpiment"", 2]]","[null, null, null]"
|
||||
,77,[],Yellow Mouton,Dark,,"[[""Ram Skin"", 1], [""Distilled Water"", 1], [""Willow Log"", 1], [""Orpiment"", 2]]","[null, null, null]"
|
||||
,78,[],Black Mantle,Earth,,"[[""Tiger Mantle"", 1], [""Wool Thread"", 1], [""Tiger Leather"", 1]]","[[""Black Mantle +1"", 1], null, null]"
|
||||
,78,"[[""Smithing"", 41]]",Tiger Helm,Earth,,"[[""Darksteel Sheet"", 1], [""Tiger Leather"", 2], [""Sheep Leather"", 1]]","[[""Feral Helm"", 1], null, null]"
|
||||
,78,[],Lavalier,Earth,,"[[""Behemoth Leather"", 1], [""Manticore Hair"", 1]]","[[""Lavalier +1"", 1], null, null]"
|
||||
,79,[],Coeurl Gorget,Earth,,"[[""Coeurl Hide"", 1], [""Cotton Thread"", 1]]","[[""Torama Gorget"", 1], null, null]"
|
||||
,79,[],Marid Mantle,Ice,,"[[""Marid Hide"", 1], [""Karakul Thread"", 1]]","[[""Marid Mantle +1"", 1], null, null]"
|
||||
,79,[],Tiger Jerkin,Earth,,"[[""Tiger Leather"", 2], [""Sheep Leather"", 1]]","[[""Feral Jerkin"", 1], null, null]"
|
||||
,79,[],Finesse Gloves,Earth,,"[[""Coquecigrue Skin"", 1], [""Beak Gloves"", 1]]","[[""Finesse Gloves +1"", 1], null, null]"
|
||||
,79,[],Marid Mantle,Ice,,"[[""Leathercraft Kit 79"", 1]]","[null, null, null]"
|
||||
,80,"[[""Alchemy"", 46], [""Clothcraft"", 32]]",Blue Cotehardie,Earth,,"[[""Beak Jerkin"", 1], [""Velvet Robe"", 1], [""Malboro Fiber"", 1], [""Tiger Leather"", 1], [""Beetle Blood"", 1], [""Mistletoe"", 1], [""Fiend Blood"", 1], [""Ram Leather"", 1]]","[[""Blue Cotehardie +1"", 1], null, null]"
|
||||
,80,[],Manticore Leather,Dark,,"[[""Willow Log"", 1], [""Manticore Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,80,[],Manticore Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Manticore Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,80,[],Manticore Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Manticore Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,80,"[[""Smithing"", 34]]",Styrne Byrnie,Earth,,"[[""Herensugue Skin"", 1], [""Behemoth Leather"", 1], [""Tiger Leather"", 1], [""Dhalmel Leather"", 1], [""Silver Mail"", 1], [""Darksteel Sheet"", 1]]","[[""Styrne Byrnie +1"", 1], null, null]"
|
||||
,81,[],Marid Belt,Earth,,"[[""Darksteel Chain"", 1], [""Marid Leather"", 2]]","[[""Marid Belt +1"", 1], null, null]"
|
||||
,81,"[[""Clothcraft"", 57]]",Noble's Pumps,Earth,,"[[""Gold Thread"", 2], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""Rainbow Cloth"", 1]]","[[""Aristocrat's Pumps"", 1], null, null]"
|
||||
,81,[],Tropical Punches,Earth,,"[[""Sheep Leather"", 1], [""Fruit Punches"", 1]]","[[""Tropical Punches +1"", 1], null, null]"
|
||||
,81,"[[""Smithing"", 58]]",Wivre Shield,Earth,,"[[""Darksteel Sheet"", 3], [""Wivre Hide"", 2], [""Ash Lumber"", 1]]","[[""Wivre Shield +1"", 1], null, null]"
|
||||
,81,[],Cerberus Leather,Dark,,"[[""Imperial Tea Leaves"", 1], [""Cerberus Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,81,[],Peiste Leather,Dark,,"[[""Willow Log"", 1], [""Peiste Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,81,[],Peiste Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Peiste Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,81,[],Peiste Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Peiste Skin"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,82,[],Behemoth Cesti,Earth,,"[[""Behemoth Leather"", 1], [""Cesti"", 1]]","[[""Behemoth Cesti +1"", 1], null, null]"
|
||||
,82,[],Troll Coif,Earth,,"[[""Karakul Leather"", 2], [""Manticore Hair"", 1], [""Marid Leather"", 1], [""Marid Hair"", 1], [""Mohbwa Cloth"", 1]]","[null, null, null]"
|
||||
,82,[],Nomad's Mantle,Earth,,"[[""Rabbit Hide"", 1], [""Traveler's Mantle"", 1]]","[[""Nomad's Mantle +1"", 1], null, null]"
|
||||
,83,[],Air Solea,Wind,,"[[""Lizard Molt"", 1], [""Light Soleas"", 1]]","[[""Air Solea +1"", 1], null, null]"
|
||||
,83,[],Coeurl Trousers,Earth,,"[[""Cuir Trousers"", 1], [""Coeurl Leather"", 2]]","[[""Torama Trousers"", 1], null, null]"
|
||||
,83,"[[""Clothcraft"", 55]]",War Beret,Earth,,"[[""Gold Thread"", 1], [""Tiger Leather"", 2], [""Giant Bird Plume"", 1]]","[[""War Beret +1"", 1], null, null]"
|
||||
,83,[],Peiste Belt,Wind,,"[[""Peiste Leather"", 1], [""Iron Chain"", 1]]","[[""Peiste Belt +1"", 1], null, null]"
|
||||
,83,[],Ruszor Leather,Dark,,"[[""Willow Log"", 1], [""Ruszor Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,83,[],Ruszor Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Ruszor Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,83,[],Ruszor Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Ruszor Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,83,[],Fowler's Mantle,Ice,,"[[""Woolly Pelage"", 1], [""Wool Thread"", 1]]","[[""Fowler's Mantle +1"", 1], null, null]"
|
||||
,84,"[[""Goldsmithing"", 23]]",Coeurl Ledelsens,Earth,,"[[""Cuir Highboots"", 1], [""Coeurl Leather"", 1], [""Mythril Sheet"", 1]]","[[""Torama Ledelsens"", 1], null, null]"
|
||||
,84,[],Empowering Mantle,Earth,,"[[""Enhancing Mantle"", 1], [""Lizard Skin"", 1]]","[[""Empowering Mantle +1"", 1], null, null]"
|
||||
,84,[],Ogre Trousers,Earth,,"[[""Coeurl Trousers"", 1], [""Manticore Leather"", 1]]","[[""Ogre Trousers +1"", 1], null, null]"
|
||||
,84,"[[""Clothcraft"", 37]]",Wise Braconi,Earth,,"[[""Silver Thread"", 2], [""Velvet Cloth"", 2], [""Eft Skin"", 1], [""Eltoro Leather"", 1]]","[[""Wise Braconi +1"", 1], null, null]"
|
||||
,84,[],Kinesis Mantle,Earth,,"[[""Ratatoskr Pelt"", 1], [""Nomad's Mantle"", 1]]","[[""Kinesis Mantle +1"", 1], null, null]"
|
||||
,84,[],Raaz Leather,Dark,,"[[""Willow Log"", 1], [""Raaz Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,84,[],Raaz Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Raaz Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,84,[],Raaz Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Raaz Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,85,[],Coeurl Mantle,Ice,,"[[""Coeurl Hide"", 1], [""Wool Thread"", 1]]","[[""Torama Mantle"", 1], null, null]"
|
||||
,85,[],Northern Jerkin,Earth,,"[[""Tiger Jerkin"", 1], [""Undead Skin"", 1]]","[[""Tundra Jerkin"", 1], null, null]"
|
||||
,85,[],Ogre Ledelsens,Earth,,"[[""Coeurl Ledelsens"", 1], [""Manticore Leather"", 1]]","[[""Ogre Ledelsens +1"", 1], null, null]"
|
||||
,85,[],Sonic Belt,Earth,,"[[""Ram Leather"", 1], [""Speed Belt"", 1]]","[[""Sonic Belt +1"", 1], null, null]"
|
||||
,85,[],War Boots,Earth,,"[[""Coeurl Leather"", 1], [""Gold Chain"", 1], [""Tiger Leather"", 2]]","[[""War Boots +1"", 1], null, null]"
|
||||
,85,"[[""Clothcraft"", 34]]",Wise Pigaches,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Sheep Leather"", 1], [""Tiger Leather"", 1], [""Eltoro Leather"", 1]]","[[""Wise Pigaches +1"", 1], null, null]"
|
||||
,85,[],Lynx Mantle,Ice,,"[[""Lynx Hide"", 1], [""Wool Thread"", 1]]","[[""Lynx Mantle +1"", 1], null, null]"
|
||||
,85,[],Coeurl Mantle,Ice,,"[[""Leathercraft Kit 85"", 1]]","[null, null, null]"
|
||||
,86,[],Cavalier's Mantle,Ice,,"[[""Sentinel's Mantle"", 1], [""Wolf Hide"", 1]]","[[""Cavalier's Mantle +1"", 1], null, null]"
|
||||
,86,[],Shadow Bow,Earth,,"[[""Assassin's Bow"", 1], [""Ram Leather"", 1]]","[[""Shadow Bow +1"", 1], null, null]"
|
||||
,86,[],Tariqah,Earth,,"[[""Marid Leather"", 1], [""Marid Hair"", 1], [""Tariqah -1"", 1]]","[[""Tariqah +1"", 1], null, null]"
|
||||
,86,"[[""Alchemy"", 51]]",Khromated Leather,Dark,,"[[""Karakul Skin"", 1], [""Khroma Nugget"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,86,"[[""Alchemy"", 51]]",Khromated Leather,Dark,Tanning,"[[""Karakul Skin"", 3], [""Khroma Nugget"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,87,[],Coeurl Mask,Earth,,"[[""Coeurl Leather"", 2], [""Faceguard"", 1]]","[[""Torama Mask"", 1], null, null]"
|
||||
,87,[],Gaia Mantle,Earth,,"[[""Cockatrice Skin"", 1], [""Earth Mantle"", 1]]","[[""Gaia Mantle +1"", 1], null, null]"
|
||||
,87,"[[""Goldsmithing"", 44], [""Clothcraft"", 19]]",Sipahi Dastanas,Earth,,"[[""Mythril Sheet"", 1], [""Karakul Leather"", 1], [""Marid Leather"", 1], [""Marid Hair"", 1], [""Karakul Cloth"", 1]]","[[""Abtal Dastanas"", 1], null, null]"
|
||||
,87,[],Mamool Ja Helm,Earth,,"[[""Karakul Leather"", 1], [""Lizard Skin"", 1], [""Black Tiger Fang"", 2], [""Coeurl Whisker"", 1], [""Mamool Ja Helmet"", 1], [""Marid Hair"", 1]]","[null, null, null]"
|
||||
,87,[],Wivre Mask,Wind,,"[[""Karakul Leather"", 1], [""Wivre Hide"", 1]]","[[""Wivre Mask +1"", 1], null, null]"
|
||||
,87,[],Radical Mantle,Earth,,"[[""Leafkin Frond"", 1], [""Chapuli Wing"", 2], [""Raptor Mantle"", 1]]","[[""Radical Mantle +1"", 1], null, null]"
|
||||
,88,[],Aurora Mantle,Ice,,"[[""Tiger Hide"", 1], [""Tundra Mantle"", 1]]","[[""Aurora Mantle +1"", 1], null, null]"
|
||||
,88,[],Coeurl Gloves,Earth,,"[[""Coeurl Leather"", 1], [""Cuir Gloves"", 1]]","[[""Torama Gloves"", 1], null, null]"
|
||||
,88,[],Ogre Mask,Earth,,"[[""Coeurl Mask"", 1], [""Manticore Leather"", 1]]","[[""Ogre Mask +1"", 1], null, null]"
|
||||
,88,"[[""Clothcraft"", 40]]",Wise Cap,Earth,,"[[""Silver Thread"", 1], [""Velvet Cloth"", 1], [""Silk Cloth"", 1], [""Manticore Leather"", 1], [""Eltoro Leather"", 1]]","[[""Wise Cap +1"", 1], null, null]"
|
||||
,89,[],Coeurl Jerkin,Earth,,"[[""Coeurl Leather"", 2], [""Sheep Leather"", 1]]","[[""Torama Jerkin"", 1], null, null]"
|
||||
,89,[],Ogre Gloves,Earth,,"[[""Coeurl Gloves"", 1], [""Manticore Leather"", 1]]","[[""Ogre Gloves +1"", 1], null, null]"
|
||||
,89,[],Winged Boots,Earth,,"[[""Lizard Skin"", 1], [""Leaping Boots"", 1]]","[[""Winged Boots +1"", 1], null, null]"
|
||||
,89,"[[""Clothcraft"", 32]]",Wise Gloves,Earth,,"[[""Silver Thread"", 1], [""Velvet Cloth"", 1], [""Saruta Cotton"", 2], [""Eltoro Leather"", 1], [""Leather Gloves"", 1]]","[[""Wise Gloves +1"", 1], null, null]"
|
||||
,90,"[[""Clothcraft"", 54]]",Barone Cosciales,Earth,,"[[""Silk Cloth"", 1], [""Sarcenet Cloth"", 1], [""Buffalo Leather"", 2], [""High-Quality Bugard Skin"", 1]]","[[""Conte Cosciales"", 1], null, null]"
|
||||
,90,"[[""Goldsmithing"", 44], [""Clothcraft"", 40]]",Chasuble,Earth,,"[[""Platinum Ingot"", 1], [""Silver Thread"", 1], [""Velvet Cloth"", 2], [""Manticore Leather"", 1], [""Eft Skin"", 1], [""Eltoro Leather"", 2]]","[[""Chasuble +1"", 1], null, null]"
|
||||
,90,[],Koenigs Belt,Earth,,"[[""Gold Chain"", 1], [""Manticore Leather"", 2]]","[[""Kaiser Belt"", 1], null, null]"
|
||||
,90,[],Ogre Jerkin,Earth,,"[[""Coeurl Jerkin"", 1], [""Undead Skin"", 1], [""Manticore Leather"", 1]]","[[""Ogre Jerkin +1"", 1], null, null]"
|
||||
,90,[],Sniper's Ring,Earth,,"[[""Archer's Ring"", 1], [""Tiger Leather"", 1]]","[[""Sniper's Ring +1"", 1], null, null]"
|
||||
,90,[],Amphiptere Leather,Dark,,"[[""Willow Log"", 1], [""Amphiptere Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,90,[],Amphiptere Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Amphiptere Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,90,[],Amphiptere Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Amphiptere Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,90,[],Koenigs Belt,Earth,,"[[""Leathercraft Kit 90"", 1]]","[null, null, null]"
|
||||
,91,[],Bison Wristbands,Earth,,"[[""Manticore Leather"", 2], [""Manticore Hair"", 2], [""Buffalo Leather"", 1]]","[[""Brave's Wristbands"", 1], null, null]"
|
||||
,91,"[[""Clothcraft"", 52]]",Errant Pigaches,Earth,,"[[""Rainbow Thread"", 1], [""Velvet Cloth"", 1], [""Undead Skin"", 1], [""Ram Leather"", 2]]","[[""Mahatma Pigaches"", 1], null, null]"
|
||||
,91,[],Khimaira Wristbands,Earth,,"[[""Manticore Leather"", 2], [""Buffalo Leather"", 1], [""Khimaira Mane"", 2]]","[[""Stout Wristbands"", 1], null, null]"
|
||||
,91,"[[""Goldsmithing"", 51], [""Clothcraft"", 49]]",Sipahi Jawshan,Earth,,"[[""Mythril Sheet"", 1], [""Steel Sheet"", 1], [""Gold Chain"", 1], [""Silk Cloth"", 1], [""Karakul Leather"", 1], [""Marid Leather"", 2], [""Wamoura Cloth"", 1]]","[[""Abtal Jawshan"", 1], null, null]"
|
||||
,91,[],Ebon Brais,Earth,,"[[""Amphiptere Leather"", 1], [""Shagreen"", 1], [""Studded Trousers"", 1]]","[null, null, null]"
|
||||
,91,[],Bewitched Pumps,Earth,,"[[""Cursed Pumps -1"", 1], [""Eschite Ore"", 1]]","[[""Voodoo Pumps"", 1], null, null]"
|
||||
,91,[],Vexed Boots,Earth,,"[[""Hexed Boots -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Boots"", 1], null, null]"
|
||||
,92,"[[""Clothcraft"", 59]]",Cursed Pumps,Earth,,"[[""Siren's Macrame"", 1], [""Velvet Cloth"", 1], [""Gold Thread"", 1], [""Rainbow Cloth"", 1], [""Manticore Leather"", 1]]","[[""Cursed Pumps -1"", 1], null, null]"
|
||||
,92,[],Desert Mantle,Earth,,"[[""Grass Thread"", 1], [""Yowie Skin"", 2]]","[[""Desert Mantle +1"", 1], null, null]"
|
||||
,92,"[[""Goldsmithing"", 60], [""Clothcraft"", 38]]",Sha'ir Crackows,Earth,,"[[""Orichalcum Ingot"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 2], [""Buffalo Leather"", 1]]","[[""Sheikh Crackows"", 1], null, null]"
|
||||
,92,"[[""Clothcraft"", 47], [""Woodworking"", 43]]",Leather Pot,Fire,,"[[""Hickory Lumber"", 1], [""Karakul Leather"", 1], [""Rheiyoh Leather"", 1], [""Karakul Thread"", 1], [""Kaolin"", 2]]","[null, null, null]"
|
||||
,92,"[[""Clothcraft"", 59], [""Goldsmithing"", 48]]",Cursed Clogs,Earth,,"[[""Velvet Cloth"", 1], [""Undead Skin"", 1], [""Marid Leather"", 2], [""Netherpact Chain"", 1], [""Platinum Silk"", 1]]","[[""Cursed Clogs -1"", 1], null, null]"
|
||||
,92,[],Vexed Tekko,Fire,,"[[""Hexed Tekko -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Tekko"", 1], null, null]"
|
||||
,93,[],Dusk Trousers,Earth,,"[[""Tiger Trousers"", 1], [""Behemoth Leather"", 1]]","[[""Dusk Trousers +1"", 1], null, null]"
|
||||
,93,"[[""Clothcraft"", 11]]",Austere Hat,Earth,,"[[""Rainbow Thread"", 1], [""Sheep Leather"", 1], [""Ram Leather"", 1], [""Yowie Skin"", 1], [""Velvet Hat"", 1]]","[[""Penance Hat"", 1], null, null]"
|
||||
,93,"[[""Clothcraft"", 29]]",Bison Gamashes,Earth,,"[[""Manticore Leather"", 1], [""Manticore Hair"", 2], [""Hippogryph Feather"", 1], [""Buffalo Leather"", 2]]","[[""Brave's Gamashes"", 1], null, null]"
|
||||
,93,[],Sultan's Belt,Earth,,"[[""Rugged Bugard Leather"", 1], [""Koenigs Belt"", 1]]","[null, null, null]"
|
||||
,93,[],Czar's Belt,Earth,,"[[""Tough Bugard Leather"", 1], [""Koenigs Belt"", 1]]","[null, null, null]"
|
||||
,93,[],Pendragon's Belt,Earth,,"[[""Soft Bugard Leather"", 1], [""Koenigs Belt"", 1]]","[null, null, null]"
|
||||
,93,[],Maharaja's Belt,Earth,,"[[""Glossy Bugard Leather"", 1], [""Koenigs Belt"", 1]]","[null, null, null]"
|
||||
,93,"[[""Clothcraft"", 29]]",Khimaira Gamashes,Earth,,"[[""Manticore Leather"", 1], [""Hippogryph Feather"", 1], [""Buffalo Leather"", 2], [""Khimaira Mane"", 2]]","[[""Stout Gamashes"", 1], null, null]"
|
||||
,93,"[[""Goldsmithing"", 53]]",Ebon Gloves,Earth,,"[[""Amphiptere Leather"", 2], [""Shagreen"", 1], [""Platinum Ingot"", 1]]","[null, null, null]"
|
||||
,93,[],Vexed Hakama,Fire,,"[[""Hexed Hakama -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Hakama"", 1], null, null]"
|
||||
,93,[],Vexed Hose,Earth,,"[[""Hexed Hose -1"", 1], [""Eschite Ore"", 1]]","[[""Jinxed Hose"", 1], null, null]"
|
||||
,94,"[[""Clothcraft"", 11]]",Austere Sabots,Earth,,"[[""Rainbow Thread"", 1], [""Sheep Leather"", 1], [""Ram Leather"", 1], [""Lindwurm Skin"", 1], [""Ebony Sabots"", 1]]","[[""Penance Sabots"", 1], null, null]"
|
||||
,94,"[[""Smithing"", 31]]",Cardinal Vest,Water,,"[[""Clothcraft - (21)"", 1], [""Steel Sheet"", 1], [""Gold Thread"", 1], [""Tiger Leather"", 2], [""Beeswax"", 1], [""Manticore Leather"", 2], [""Ram Leather"", 1]]","[[""Bachelor Vest"", 1], null, null]"
|
||||
,94,[],Dusk Ledelsens,Earth,,"[[""Tiger Ledelsens"", 1], [""Behemoth Leather"", 1]]","[[""Dusk Ledelsens +1"", 1], null, null]"
|
||||
,95,[],Tiger Mask,Ice,,"[[""Tiger Hide"", 2], [""Wyvern Skin"", 1], [""Wool Thread"", 1], [""Ram Leather"", 1]]","[[""Feral Mask"", 1], null, null]"
|
||||
,95,"[[""Clothcraft"", 33]]",Bison Warbonnet,Earth,,"[[""Manticore Leather"", 1], [""Manticore Hair"", 2], [""Hippogryph Feather"", 2], [""Eft Skin"", 1], [""Buffalo Leather"", 1]]","[[""Brave's Warbonnet"", 1], null, null]"
|
||||
,95,[],Cerberus Mantle,Ice,,"[[""Cerberus Hide"", 1], [""Karakul Thread"", 1]]","[[""Cerberus Mantle +1"", 1], null, null]"
|
||||
,95,"[[""Clothcraft"", 33]]",Khimaira Bonnet,Earth,,"[[""Manticore Leather"", 1], [""Hippogryph Feather"", 2], [""Eft Skin"", 1], [""Buffalo Leather"", 1], [""Khimaira Mane"", 2]]","[[""Stout Bonnet"", 1], null, null]"
|
||||
,95,[],Peiste Mantle,Earth,,"[[""Peiste Skin"", 2], [""Grass Thread"", 1]]","[[""Peiste Mantle +1"", 1], null, null]"
|
||||
,95,"[[""Goldsmithing"", 57]]",Ebon Boots,Earth,,"[[""Amphiptere Leather"", 1], [""Shagreen"", 1], [""Molybdenum Sheet"", 1], [""Platinum Ingot"", 1]]","[null, null, null]"
|
||||
,95,[],Peiste Mantle,Earth,,"[[""Leathercraft Kit 95"", 1]]","[null, null, null]"
|
||||
,96,"[[""Clothcraft"", 42]]",Opaline Boots,Light,,"[[""Rainbow Thread"", 1], [""Silk Cloth"", 1], [""Rainbow Cloth"", 1], [""Twinthread"", 1], [""Sheep Leather"", 2], [""Manticore Leather"", 1]]","[[""Ceremonial Boots"", 1], null, null]"
|
||||
,96,"[[""Goldsmithing"", 46], [""Clothcraft"", 41]]",Sha'ir Gages,Earth,,"[[""Gold Ingot"", 1], [""Garnet"", 1], [""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""High-Quality Bugard Skin"", 1]]","[[""Sheikh Gages"", 1], null, null]"
|
||||
,96,"[[""Goldsmithing"", 45]]",Imperial Tapestry,Earth,,"[[""Gold Ingot"", 1], [""Turquoise"", 1], [""Gold Thread"", 2], [""Marid Hair"", 1], [""Wamoura Cloth"", 1], [""Imperial Silk Cloth"", 2]]","[null, null, null]"
|
||||
,97,"[[""Clothcraft"", 11]]",Austere Cuffs,Earth,,"[[""Rainbow Thread"", 1], [""Tarasque Skin"", 1], [""Yowie Skin"", 1], [""Velvet Cuffs"", 1]]","[[""Penance Cuffs"", 1], null, null]"
|
||||
,97,"[[""Clothcraft"", 54]]",Bison Kecks,Earth,,"[[""Tiger Leather"", 1], [""Manticore Leather"", 1], [""Manticore Hair"", 4], [""Buffalo Leather"", 2]]","[[""Brave's Kecks"", 1], null, null]"
|
||||
,97,[],Dusk Mask,Earth,,"[[""Coeurl Mask"", 1], [""Behemoth Leather"", 1]]","[[""Dusk Mask +1"", 1], null, null]"
|
||||
,97,[],Griffon Leather,Dark,,"[[""Willow Log"", 1], [""Griffon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,97,[],Griffon Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Griffon Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,97,"[[""Clothcraft"", 54]]",Khimaira Kecks,Earth,,"[[""Tiger Leather"", 1], [""Manticore Leather"", 1], [""Buffalo Leather"", 2], [""Khimaira Mane"", 4]]","[[""Stout Kecks"", 1], null, null]"
|
||||
,97,"[[""Smithing"", 60]]",Ebon Mask,Earth,,"[[""Amphiptere Leather"", 1], [""Shagreen"", 1], [""Molybdenum Sheet"", 1]]","[null, null, null]"
|
||||
,98,[],Amaltheia Leather,Dark,,"[[""Willow Log"", 1], [""Amaltheia Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,98,[],Amaltheia Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Amaltheia Hide"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,98,[],Amaltheia Leather,Dark,Tanning,"[[""Windurstian Tea Leaves"", 3], [""Amaltheia Hide"", 3], [""Distilled Water"", 1], [""Tanning Vat"", 1]]","[null, null, null]"
|
||||
,98,"[[""Clothcraft"", 11]]",Austere Slops,Earth,,"[[""Rainbow Thread"", 1], [""Undead Skin"", 1], [""Wolf Hide"", 1], [""Lindwurm Skin"", 1], [""Velvet Slops"", 1]]","[[""Penance Slops"", 1], null, null]"
|
||||
,98,[],Heroic Boots,Earth,,"[[""Iron Scales"", 1], [""Ram Leather"", 2], [""Lindwurm Skin"", 1]]","[[""Heroic Boots +1"", 1], null, null]"
|
||||
,99,"[[""Bonecraft"", 60]]",Bison Jacket,Earth,,"[[""Clothcraft - (51)"", 1], [""Manticore Leather"", 2], [""Manticore Hair"", 2], [""Buffalo Horn"", 1], [""Eft Skin"", 1], [""Buffalo Leather"", 2]]","[[""Brave's Jacket"", 1], null, null]"
|
||||
,99,"[[""Clothcraft"", 56]]",Blessed Pumps,Earth,,"[[""Gold Thread"", 1], [""Velvet Cloth"", 1], [""Tiger Leather"", 1], [""Manticore Hair"", 1], [""Eltoro Leather"", 1]]","[[""Blessed Pumps +1"", 1], null, null]"
|
||||
,99,[],Dusk Gloves,Earth,,"[[""Tiger Gloves"", 1], [""Behemoth Leather"", 1]]","[[""Dusk Gloves +1"", 1], null, null]"
|
||||
,99,"[[""Bonecraft"", 60], [""Clothcraft"", 54]]",Khimaira Jacket,Earth,,"[[""Manticore Leather"", 2], [""Buffalo Horn"", 1], [""Eft Skin"", 1], [""Buffalo Leather"", 2], [""Khimaira Mane"", 2]]","[[""Stout Jacket"", 1], null, null]"
|
||||
,99,[],Narasimha's Vest,Water,,"[[""Beeswax"", 1], [""Manticore Leather"", 1], [""Narasimha Leather"", 1], [""Cardinal Vest"", 1]]","[[""Vishnu's Vest"", 1], null, null]"
|
||||
,99,[],Dynamic Belt,Wind,,"[[""Behemoth Leather"", 1], [""Mercury"", 1], [""Umbril Ooze"", 1]]","[[""Dynamic Belt +1"", 1], null, null]"
|
||||
,99,"[[""Clothcraft"", 50]]",Chelona Boots,Earth,,"[[""Karakul Thread"", 1], [""Karakul Cloth"", 3], [""Platinum Silk Thread"", 1], [""Amphiptere Leather"", 1]]","[[""Chelona Boots +1"", 1], null, null]"
|
||||
,100,"[[""Clothcraft"", 31]]",Austere Robe,Earth,,"[[""Rainbow Thread"", 1], [""Wool Cloth"", 1], [""Rainbow Cloth"", 1], [""Undead Skin"", 1], [""Ram Leather"", 1], [""Tarasque Skin"", 1], [""Yowie Skin"", 1], [""Velvet Robe"", 1]]","[[""Penance Robe"", 1], null, null]"
|
||||
,100,"[[""Goldsmithing"", 41]]",Dusk Jerkin,Earth,,"[[""Gold Ingot"", 1], [""Northern Jerkin"", 1], [""Behemoth Leather"", 1], [""Wyvern Skin"", 1]]","[[""Dusk Jerkin +1"", 1], null, null]"
|
||||
,100,[],Urja Trousers,Earth,,"[[""Buffalo Leather"", 2], [""Squamous Hide"", 2]]","[[""Sthira Trousers"", 1], null, null]"
|
||||
,100,"[[""Clothcraft"", 60]]",Spolia Pigaches,Earth,,"[[""Catoblepas Leather"", 1], [""Sheep Chammy"", 1], [""Wyrdstrand"", 1], [""Wyrdweave"", 2]]","[[""Opima Pigaches"", 1], null, null]"
|
||||
,100,"[[""Smithing"", 60], [""Bonecraft"", 40]]",Ebon Harness,Earth,,"[[""Molybdenum Sheet"", 1], [""Platinum Sheet"", 1], [""Angel Skin"", 1], [""Red Textile Dye"", 1], [""Amphiptere Leather"", 2], [""Shagreen"", 1]]","[null, null, null]"
|
||||
,100,[],Revealer's Pumps,Earth,,"[[""Ancestral Cloth"", 2], [""Prickly Pitriv's Thread"", 2], [""Warblade Beak's Hide"", 1]]","[[""Revealer's Pumps +1"", 1], null, null]"
|
||||
,100,[],Aptitude Mantle,Earth,,"[[""Wool Thread"", 1], [""Lizard Molt"", 1], [""Raaz Hide"", 1], [""Bounding Belinda's Hide"", 1]]","[[""Aptitude Mantle +1"", 1], null, null]"
|
||||
,101,"[[""Goldsmithing"", 60], [""Smithing"", 60]]",Corselet,Earth,,"[[""Adaman Sheet"", 1], [""Mercury"", 1], [""Laminated Buffalo Leather"", 1], [""Ovinnik Leather"", 1], [""Marid Leather"", 1], [""Marid Hair"", 1], [""Scintillant Ingot"", 1], [""Star Sapphire"", 1]]","[[""Corselet +1"", 1], null, null]"
|
||||
,101,[],Haruspex Pigaches,Earth,,"[[""Gold Thread"", 1], [""Raxa"", 1], [""Akaso Cloth"", 1], [""Raaz Hide"", 1], [""Raaz Leather"", 1]]","[[""Haruspex Pigaches +1"", 1], null, null]"
|
||||
,101,[],Aetosaur Gloves,Earth,,"[[""Squamous Hide"", 1], [""Raaz Leather"", 1], [""Leather Gloves"", 1]]","[[""Aetosaur Gloves +1"", 1], null, null]"
|
||||
,102,[],Panther Mask,Ice,,"[[""Wool Thread"", 1], [""Ram Leather"", 1], [""High-Quality Coeurl Hide"", 2], [""Wyvern Skin"", 1]]","[[""Panther Mask +1"", 1], null, null]"
|
||||
,102,"[[""Smithing"", 55]]",Urja Helm,Earth,,"[[""Marid Leather"", 1], [""Dark Bronze Ingot"", 1], [""Squamous Hide"", 2]]","[[""Sthira Helm"", 1], null, null]"
|
||||
,102,[],Testudo Mantle,Earth,,"[[""Behemoth Leather"", 1], [""Manticore Hair"", 1], [""Herensugue Skin"", 1]]","[[""Testudo Mantle +1"", 1], null, null]"
|
||||
,103,[],Hermes' Sandals,Wind,,"[[""Karakul Leather"", 1], [""Lynx Leather"", 1], [""Dark Ixion Tail"", 1]]","[[""Hermes' Sandals +1"", 1], null, null]"
|
||||
,103,"[[""Clothcraft"", 50]]",Attacker's Mantle,Earth,,"[[""Lizard Molt"", 1], [""Hahava's Mail"", 1], [""Wamoura Silk"", 1], [""Squamous Hide"", 1]]","[[""Dauntless Mantle"", 1], null, null]"
|
||||
,103,[],Aetosaur Ledelsens,Earth,,"[[""Squamous Hide"", 1], [""Rhodium Sheet"", 1], [""Raaz Leather"", 1], [""Leather Highboots"", 1]]","[[""Aetosaur Ledelsens +1"", 1], null, null]"
|
||||
,104,[],Sealord Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""Sealord Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,104,[],Sealord Leather,Dark,,"[[""Willow Log"", 1], [""Sealord Skin"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,104,[],Urja Gloves,Earth,,"[[""Buffalo Leather"", 1], [""Squamous Hide"", 2]]","[[""Sthira Gloves"", 1], null, null]"
|
||||
,104,[],Pak Corselet,Earth,,"[[""Adaman Sheet"", 1], [""Behemoth Leather"", 2], [""Mercury"", 1], [""Siren's Macrame"", 1], [""Fiendish Skin"", 1], [""Scintillant Ingot"", 1], [""Tanzanite Jewel"", 1]]","[[""Pak Corselet +1"", 1], null, null]"
|
||||
,105,"[[""Smithing"", 54]]",Urja Ledelsens,Earth,,"[[""Buffalo Leather"", 1], [""Dark Bronze Sheet"", 1], [""Squamous Hide"", 2]]","[[""Sthira Ledelsens"", 1], null, null]"
|
||||
,105,[],Phos Belt,Earth,,"[[""Scarlet Kadife"", 1], [""Sealord Leather"", 1], [""Sonic Belt"", 1]]","[[""Phos Belt +1"", 1], null, null]"
|
||||
,105,"[[""Smithing"", 54]]",Urja Jerkin,Earth,,"[[""Buffalo Leather"", 1], [""Dark Bronze Ingot"", 1], [""Squamous Hide"", 2], [""Ogre Jerkin"", 1]]","[[""Sthira Jerkin"", 1], null, null]"
|
||||
,105,[],Clerisy Strap,Wind,,"[[""Behemoth Hide"", 1], [""Bztavian Wing"", 1]]","[[""Clerisy Strap +1"", 1], null, null]"
|
||||
,105,[],Elan Strap,Wind,,"[[""Cerberus Hide"", 1], [""Cehuetzi Pelt"", 1]]","[[""Elan Strap +1"", 1], null, null]"
|
||||
,105,[],Irenic Strap,Wind,,"[[""Behemoth Hide"", 1], [""Rockfin Fin"", 1]]","[[""Irenic Strap +1"", 1], null, null]"
|
||||
,105,[],Mensch Strap,Wind,,"[[""Cerberus Hide"", 1], [""Yggdreant Root"", 1]]","[[""Mensch Strap +1"", 1], null, null]"
|
||||
,105,[],Faulpie Leather,Dark,,"[[""Windurstian Tea Leaves"", 1], [""S. Faulpie Leather"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,105,[],Faulpie Leather,Dark,,"[[""Willow Log"", 1], [""S. Faulpie Leather"", 1], [""Distilled Water"", 1]]","[null, null, null]"
|
||||
,106,[],Aetosaur Helm,Earth,,"[[""Squamous Hide"", 2], [""Raaz Leather"", 1]]","[[""Aetosaur Helm +1"", 1], null, null]"
|
||||
,107,"[[""Clothcraft"", 50]]",Hexed Boots,Earth,,"[[""Silver Thread"", 1], [""Lynx Leather"", 1], [""Kukulkan's Skin"", 1], [""Serica Cloth"", 1]]","[[""Hexed Boots -1"", 1], null, null]"
|
||||
,107,[],Aetosaur Trousers,Earth,,"[[""Squamous Hide"", 2], [""Raaz Leather"", 1], [""Leather Trousers"", 1]]","[[""Aetosaur Trousers +1"", 1], null, null]"
|
||||
,108,"[[""Smithing"", 60], [""Goldsmithing"", 30]]",Hexed Tekko,Fire,,"[[""Scarletite Ingot"", 1], [""Gold Sheet"", 1], [""Durium Chain"", 1], [""Taffeta Cloth"", 1], [""Urushi"", 1], [""Sealord Leather"", 1]]","[[""Hexed Tekko -1"", 1], null, null]"
|
||||
,109,[],Aetosaur Jerkin,Earth,,"[[""Squamous Hide"", 2], [""Raaz Leather"", 2]]","[[""Aetosaur Jerkin +1"", 1], null, null]"
|
||||
,109,"[[""Goldsmithing"", 57]]",Sweordfaetels,Earth,,"[[""Palladian Brass Chain"", 1], [""Sealord Leather"", 1], [""Cehuetzi Pelt"", 1]]","[[""Sweordfaetels +1"", 1], null, null]"
|
||||
,110,"[[""Goldsmithing"", 60]]",Hexed Hose,Earth,,"[[""Ormolu Ingot"", 1], [""Behemoth Leather"", 1], [""Pelt of Dawon"", 1], [""Sealord Leather"", 2]]","[[""Hexed Hose -1"", 1], null, null]"
|
||||
,110,"[[""Clothcraft"", 38]]",Hexed Hakama,Fire,,"[[""Scarletite Ingot"", 1], [""Gold Ingot"", 1], [""Gold Thread"", 1], [""Taffeta Cloth"", 1], [""Red Grass Cloth"", 1], [""Sealord Leather"", 2]]","[[""Hexed Hakama -1"", 1], null, null]"
|
||||
,110,[],Pya'ekue Belt,Earth,,"[[""Behemoth Leather"", 1], [""Bztavian Wing"", 1], [""Phos Belt"", 1]]","[[""Pya'ekue Belt +1"", 1], null, null]"
|
||||
,110,"[[""Bonecraft"", 55]]",Beastmaster Collar,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Collar"", 1]]","[[""Beastmaster Collar +1"", 1], [""Beastmaster Collar +2"", 1], null]"
|
||||
,110,"[[""Bonecraft"", 55]]",Dragoon's Collar,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Collar"", 1]]","[[""Dragoon's Collar +1"", 1], [""Dragoon's Collar +2"", 1], null]"
|
||||
,110,"[[""Bonecraft"", 55]]",Puppetmaster's Collar,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Collar"", 1]]","[[""Puppetmaster's Collar +1"", 1], [""Puppetmaster's Collar +2"", 1], null]"
|
||||
,110,"[[""Bonecraft"", 55]]",Summoner's Collar,Light,,"[[""Cehuetzi Claw"", 1], [""Dark Matter"", 1], [""Cyan Coral"", 1], [""Moldy Collar"", 1]]","[[""Summoner's Collar +1"", 1], [""Summoner's Collar +2"", 1], null]"
|
||||
,111,"[[""Clothcraft"", 70]]",Bewitched Pumps,Earth,,"[[""Sif's Macrame"", 1], [""Cehuetzi Pelt"", 1], [""Eschite Ore"", 1], [""Cursed Pumps"", 1]]","[[""Voodoo Pumps"", 1], null, null]"
|
||||
,111,"[[""Clothcraft"", 70]]",Vexed Boots,Earth,,"[[""Sif's Macrame"", 1], [""Cehuetzi Pelt"", 1], [""Eschite Ore"", 1], [""Hexed Boots"", 1]]","[[""Jinxed Boots"", 1], null, null]"
|
||||
,111,[],Tempus Fugit,Earth,,"[[""Pya'ekue Belt"", 1], [""Defiant Scarf"", 1], [""Plovid Flesh"", 1]]","[[""Tempus Fugit +1"", 1], null, null]"
|
||||
,111,[],Saotome-no-tachi,Light,Tanner's aurum tome,"[[""Goldsmithing - (Information Needed)"", 1], [""Macuil Plating"", 1], [""Dark Matter"", 1], [""Ruthenium Ore"", 1], [""Moldy G. Katana"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Sakonji-no-tachi"", 1], [""Fusenaikyo"", 1], null]"
|
||||
,111,[],Koga Shinobi-Gatana,Light,Tanner's aurum tome,"[[""Goldsmithing - (Information Needed)"", 1], [""Macuil Plating"", 1], [""Dark Matter"", 1], [""Ruthenium Ore"", 1], [""Moldy Katana"", 1], [""Ratnaraj"", 1], [""Relic Adaman"", 2]]","[[""Mochizuki Shinobi-Gatana"", 1], [""Fudo Masamune"", 1], null]"
|
||||
,112,[],Aput Mantle,Ice,,"[[""Akaso Thread"", 1], [""Cehuetzi Pelt"", 1]]","[[""Aput Mantle +1"", 1], null, null]"
|
||||
,112,"[[""Clothcraft"", 70]]",Vexed Tekko,Fire,,"[[""Cehuetzi Pelt"", 1], [""Muut's Vestment"", 1], [""Eschite Ore"", 1], [""Hexed Tekko"", 1]]","[[""Jinxed Tekko"", 1], null, null]"
|
||||
,113,"[[""Clothcraft"", 70]]",Vexed Hakama,Fire,,"[[""Cehuetzi Pelt"", 1], [""Muut's Vestment"", 1], [""Eschite Ore"", 1], [""Hexed Hakama"", 1]]","[[""Jinxed Hakama"", 1], null, null]"
|
||||
,113,"[[""Goldsmithing"", 70]]",Vexed Hose,Earth,,"[[""Hepatizon Ingot"", 1], [""Plovid Flesh"", 1], [""Eschite Ore"", 1], [""Hexed Hose"", 1]]","[[""Jinxed Hose"", 1], null, null]"
|
||||
,115,[],Wretched Coat,Wind,,"[[""Malboro Fiber"", 1], [""Eltoro Leather"", 1], [""Penelope's Cloth"", 1], [""Belladonna Sap"", 1], [""Plovid Flesh"", 2]]","[[""Wretched Coat +1"", 1], null, null]"
|
||||
,115,[],Gerdr Belt,Earth,,"[[""Orichalcum Chain"", 1], [""Faulpie Leather"", 2], [""Wyrm Ash"", 1]]","[[""Gerdr Belt +1"", 1], null, null]"
|
||||
,115,[],Arke Gambieras,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 1], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 1], [""Faulpie Leather"", 2]]","[[""Arke Gambieras +1"", 1], null, null]"
|
||||
,115,[],Heyoka Leggings,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 1], [""Yggdreant Root"", 1], [""Macuil Horn"", 1], [""Faulpie Leather"", 2]]","[[""Heyoka Leggings +1"", 1], null, null]"
|
||||
,115,[],Arke Manopolas,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 2], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 1], [""Faulpie Leather"", 2]]","[[""Arke Manopolas +1"", 1], null, null]"
|
||||
,115,[],Heyoka Mittens,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 2], [""Yggdreant Root"", 1], [""Macuil Horn"", 1], [""Faulpie Leather"", 2]]","[[""Heyoka Mittens +1"", 1], null, null]"
|
||||
,115,[],Arke Zuchetto,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 1], [""Faulpie Leather"", 2]]","[[""Arke Zuchetto +1"", 1], null, null]"
|
||||
,115,[],Heyoka Cap,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Yggdreant Root"", 1], [""Macuil Horn"", 1], [""Faulpie Leather"", 2]]","[[""Heyoka Cap +1"", 1], null, null]"
|
||||
,115,[],Arke Cosciales,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 1], [""Faulpie Leather"", 3]]","[[""Arke Cosciales +1"", 1], null, null]"
|
||||
,115,[],Heyoka Subligar,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Yggdreant Root"", 1], [""Macuil Horn"", 1], [""Faulpie Leather"", 3]]","[[""Heyoka Subligar +1"", 1], null, null]"
|
||||
,115,[],Arke Corazza,Earth,Tanner's argentum tome,"[[""Rainbow Thread"", 1], [""Rainbow Cloth"", 1], [""Gabbrath Horn"", 1], [""Tartarian Chain"", 2], [""Faulpie Leather"", 3]]","[[""Arke Corazza +1"", 1], null, null]"
|
||||
,115,[],Heyoka Harness,Earth,Tanner's argentum tome,"[[""Darksteel Sheet"", 1], [""Darksteel Chain"", 1], [""Yggdreant Root"", 1], [""Macuil Horn"", 2], [""Faulpie Leather"", 3]]","[[""Heyoka Harness +1"", 1], null, null]"
|
||||
,118,[],Ioskeha Belt,Earth,,"[[""Palladian Brass Chain"", 1], [""Wyrm Blood"", 1], [""Plovid Flesh"", 1]]","[[""Ioskeha Belt +1"", 1], null, null]"
|
||||
|
||||
|
@@ -1,7 +1,5 @@
|
||||
Smithing Crafted Items
|
||||
Amateur (1-10)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Bronze Ingot
|
||||
|
||||
@@ -340,9 +338,7 @@ Main Craft: Smithing - (10)
|
||||
Smithing Kit 10
|
||||
|
||||
|
||||
Recruit (11-20)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Bronze Harness
|
||||
|
||||
@@ -637,9 +633,7 @@ Main Craft: Smithing - (20)
|
||||
Smithing Kit 20
|
||||
|
||||
|
||||
Initiate (21-30)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Iron Ingot
|
||||
|
||||
@@ -1102,9 +1096,7 @@ Main Craft: Smithing - (30)
|
||||
Smithing Kit 30
|
||||
|
||||
|
||||
Novice (31-40)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Chain Mittens
|
||||
|
||||
@@ -1814,9 +1806,7 @@ Main Craft: Smithing - (40)
|
||||
Smithing Kit 40
|
||||
|
||||
|
||||
Apprentice (41-50)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Iron Mittens
|
||||
|
||||
@@ -2495,9 +2485,7 @@ Main Craft: Smithing - (50)
|
||||
Smithing Kit 50
|
||||
|
||||
|
||||
Journeyman (51-60)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Bastokan Hammer
|
||||
|
||||
@@ -3220,9 +3208,7 @@ Main Craft: Smithing - (60)
|
||||
Smithing Kit 60
|
||||
|
||||
|
||||
Craftsman (61-70)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Tsukumo
|
||||
|
||||
@@ -4031,9 +4017,7 @@ Main Craft: Smithing - (70)
|
||||
Smithing Kit 70
|
||||
|
||||
|
||||
Artisan (71-80)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Falsiam Vase
|
||||
|
||||
@@ -4607,9 +4591,7 @@ Main Craft: Smithing - (80)
|
||||
Smithing Kit 80
|
||||
|
||||
|
||||
Adept (81-90)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Darksteel Cuisses
|
||||
|
||||
@@ -5280,9 +5262,7 @@ Main Craft: Smithing - (90)
|
||||
Kunwu Ore x3
|
||||
|
||||
|
||||
Veteran (91-100)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Adaman Ingot
|
||||
|
||||
@@ -6782,9 +6762,7 @@ Main Craft: Smithing - (100)
|
||||
Titanium Sheet
|
||||
|
||||
|
||||
Expert (101-110)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Cursed Sabatons
|
||||
|
||||
@@ -7976,9 +7954,7 @@ Sub Craft(s): Alchemy - (55)
|
||||
Moldy Nodowa
|
||||
|
||||
|
||||
Authority (111-120)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Bewitched Sollerets
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,4 @@
|
||||
Woodworking Crafted Items
|
||||
Amateur (1-10)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
NQ: Banquet Table
|
||||
|
||||
@@ -373,9 +370,7 @@ Main Craft: Woodworking - (10)
|
||||
Woodworking Kit 10
|
||||
|
||||
|
||||
Recruit (11-20)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Ash Clogs
|
||||
|
||||
@@ -1161,9 +1156,7 @@ Sub Craft(s): Alchemy - (??)
|
||||
Glass Sheet
|
||||
|
||||
|
||||
Initiate (21-30)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Chestnut Club
|
||||
|
||||
@@ -1657,9 +1650,7 @@ Sub Craft(s): Alchemy - (??)
|
||||
Pebble
|
||||
|
||||
|
||||
Novice (31-40)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Book Holder
|
||||
|
||||
@@ -2202,9 +2193,7 @@ Sub Craft(s): Alchemy
|
||||
Glass Sheet
|
||||
|
||||
|
||||
Apprentice (41-50)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Mokujin x33
|
||||
|
||||
@@ -2656,9 +2645,7 @@ Sub Craft(s): Clothcraft - (~24)
|
||||
Bomb Arm
|
||||
|
||||
|
||||
Journeyman (51-60)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Desk
|
||||
|
||||
@@ -3212,9 +3199,7 @@ Main Craft: Woodworking - (60)
|
||||
Woodworking Kit 60
|
||||
|
||||
|
||||
Craftsman (61-70)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Chest
|
||||
|
||||
@@ -3914,9 +3899,7 @@ Sub Craft(s): Goldsmithing - (??)
|
||||
Gold Ingot
|
||||
|
||||
|
||||
Artisan (71-80)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Ebony Harp
|
||||
|
||||
@@ -4568,9 +4551,7 @@ Sub Craft(s): Goldsmithing - (??)
|
||||
Gold Ingot x2
|
||||
|
||||
|
||||
Adept (81-90)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Battle Fork
|
||||
|
||||
@@ -5228,9 +5209,7 @@ Main Craft: Woodworking - (90)
|
||||
Woodworking Kit 90
|
||||
|
||||
|
||||
Veteran (91-100)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: 3-Drawer Almirah
|
||||
|
||||
@@ -6085,9 +6064,7 @@ Main Craft: Woodworking - (100)
|
||||
Black Chocobo Feather
|
||||
|
||||
|
||||
Expert (101-110)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Kinkobo
|
||||
|
||||
@@ -6662,9 +6639,7 @@ Sub Craft(s): Clothcraft - (55)
|
||||
Moldy Bead Necklace
|
||||
|
||||
|
||||
Authority (111-120)
|
||||
Synthesis Information
|
||||
Yield Requirements Ingredients
|
||||
|
||||
|
||||
NQ: Bewitched Sune-Ate
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
239
datasets/desythesis_recipes.csv
Normal file
239
datasets/desythesis_recipes.csv
Normal file
@@ -0,0 +1,239 @@
|
||||
Alchemy
|
||||
Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap
|
||||
Distilled Water x3,Lightning,Tahrongi Cactus,Distilled Water x6,Distilled Water x9,Distilled Water x12,2
|
||||
Bronze Ingot x2,Lightning,Bee Spatha,Bronze Ingot x3,Beeswax x2,Lizard Skin x2,14
|
||||
Poison Dust x2,Fire,Gigas Socks,Poison Dust x4,Poison Dust x6,Poison Dust x8,15
|
||||
Glass Fiber x2,Lightning,Goblin Mask,Glass Fiber x4,Glass Fiber x6,Glass Fiber x8,21
|
||||
Glass Fiber x3,Lightning,Tonberry Lantern,Glass Fiber x6,Glass Fiber x9,Glass Fiber x12,23
|
||||
Olive Oil x3,Water,Tonberry Lantern,Toad Oil x2,Slime Oil,Slime Oil,24
|
||||
Glass Fiber x2,Lightning,Moblin Mask,Glass Fiber x4,Glass Fiber x6,Glass Fiber x8,29
|
||||
Copper Ingot,Lightning,Minnow,Copper Ingot,Glass Fiber,Glass Fiber,31
|
||||
Ash Lumber,Lightning,Blind Knife,Animal Glue,Bronze Ingot,Blinding Potion,34
|
||||
Holy Water,Lightning,Holy Mace,Oak Lumber,Mythril Nugget x10,Mythril Ingot x2,51
|
||||
Carbon Fiber,Lightning,Carbon Fishing Rod,Carbon Fiber x2,Carbon Fiber x3,Carbon Fiber x4,53
|
||||
Venom Dust,Lightning,Monke-Onke,Venom Dust x4,,,62
|
||||
Glass Fiber x4,Lightning,Bugbear Mask,Glass Fiber x6,Glass Fiber x8,Glass Fiber x10,62
|
||||
Beetle Jaw,Lightning,Cermet Claws,,,,63
|
||||
Cermet Chunk,Lightning,Composite Fishing Rod,Cermet Chunk x2,Glass Fiber,Carbon Fiber,89
|
||||
Cermet Chunk x2,Lightning,Espadon,Cermet Chunk x3,Coeurl Leather,,90
|
||||
Paralyze Potion,Lightning,Mamushito,Elm Lumber,Iron Nugget x6,Tama-Hagane,91
|
||||
Smithing
|
||||
Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap
|
||||
Bronze Ingot,Lightning,Bronze Cap,Sheep Leather,Bronze Ingot,Sheep Leather x2,4
|
||||
Bronze Ingot,Lightning,Bronze Mittens,Bronze Ingot,Sheep Leather,,5
|
||||
Bronze Ingot,Lightning,Bronze Sword,Bronze Ingot x2,Sheep Leather,,6
|
||||
Bronze Ingot,Lightning,Bronze Leggings,Bronze Ingot x2,Sheep Leather,Sheep Leather x2,7
|
||||
Bronze Ingot,Lightning,Xiphos,Bronze Ingot,Giant Femur,,8
|
||||
Grass Thread x3,Lightning,Bronze Zaghnal,Ash Lumber,Bronze Ingot,Bronze Ingot x2,8
|
||||
Bronze Ingot,Lightning,Bronze Subligar,Grass Thread x3,Sheep Leather,,9
|
||||
Bronze Ingot,Lightning,Bronze Mace,Bronze Ingot,Bronze Ingot x2,Bronze Ingot x3,10
|
||||
Bronze Ingot x2,Lightning,Scale Finger Gauntlets,Cotton Thread,Grass Thread x3,Sheep Leather x2,11
|
||||
Bronze Ingot,Lightning,Bronze Rod,Bronze Ingot,Bronze Ingot x2,Copper Ingot,12
|
||||
Lauan Lumber,Lightning,Light Axe,Bronze Ingot,Bronze Ingot x2,Tourmaline,16
|
||||
Ash Lumber,Lightning,Aspis,Bronze Ingot,Bronze Ingot x2,Bronze Ingot x3,18
|
||||
Bronze Ingot x3,Lightning,Goblin Mail,Iron Ingot x2,Steel Ingot,Steel Ingot,19
|
||||
Bronze Ingot,Lightning,Goblin Helm,Iron Ingot,Steel Ingot,Steel Ingot,19
|
||||
Bronze Sheet,Wind,Goblin Helm,Iron Sheet,Steel Ingot,Steel Ingot,20
|
||||
Bronze Sheet x3,Wind,Goblin Mail,Iron Sheet,,,21
|
||||
Brass Ingot,Lightning,Scimitar,Brass Ingot,Steel Ingot,Steel Ingot x2,24
|
||||
Lizard Skin,Lightning,Iron Sword,Iron Ingot,Iron Ingot x2,,25
|
||||
Bronze Ingot,Lightning,Spatha,Bronze Ingot x2,Bronze Ingot x3,Lizard Skin,25
|
||||
Iron Ingot x2,Lightning,Longsword,,,,27
|
||||
Lizard Skin,Lightning,Kunai,Lizard Skin,Steel Ingot,,29
|
||||
Brass Ingot,Lightning,Iron Mask,Brass Ingot,Iron Ingot,,29
|
||||
Ram Leather,Lightning,Chain Mittens,Ram Leather x2,Iron Ingot x3,,31
|
||||
Ash Lumber,Lightning,Claymore,Lizard Skin,Iron Ingot x3,Steel Ingot x4,32
|
||||
Sheep Leather,Lightning,Iron Cuisses,,,,35
|
||||
Lizard Skin,Lightning,Wakizashi,Elm Lumber,Iron Ingot,Tama-Hagane,36
|
||||
Lizard Skin,Lightning,Padded Cap,Lizard Skin x2,Iron Ingot,,38
|
||||
Ash Lumber,Lightning,War Pick,Ash Lumber,Steel Ingot,,38
|
||||
Mythril Ingot,Lightning,Mythril Kukri,,,,42
|
||||
Bronze Ingot,Lightning,Musketoon,Bronze Ingot,?,,43
|
||||
Oak Lumber,Lightning,Maul,,,,46
|
||||
Bronze Ingot,Lightning,Quadav Helm,Iron Ingot,Steel Ingot,Darksteel Ingot,49
|
||||
Steel Ingot,Lightning,Arquebus,,,,50
|
||||
Bronze Sheet,Wind,Tonberry Lantern,Bronze Sheet,Glass Fiber x9,Glass Fiber x12,51
|
||||
Animal Glue,Lightning,Corrosive Claws,Bronze Ingot,,,51
|
||||
Bronze Ingot,Lightning,Quadav Backplate,Iron Ingot,Iron Ingot,Darksteel Ingot,51
|
||||
Bronze Sheet,Wind,Quadav Helm,Iron Sheet,Steel Sheet,Darksteel Sheet,51
|
||||
Bronze Sheet,Wind,Quadav Backplate,Iron Sheet,Iron Sheet,Darksteel Sheet,53
|
||||
Mythril Nugget x4,Lightning,Darksteel Baselard,,,,63
|
||||
Bronze Ingot x2,Lightning,Antican Pauldron,Darksteel Ingot,,,78
|
||||
Bronze Sheet x2,Wind,Antican Pauldron,Darksteel Sheet,,,78
|
||||
Bronze Ingot,Lightning,Cougar Baghnakhs,,,,?
|
||||
Bronze Ingot,Lightning,Royal Archer's Sword,,,,?
|
||||
Bronze Ingot,Lightning,Legionnaire's Knuckles,Bronze Ingot,,,?
|
||||
Bronze Ingot,Lightning,Goblin Cup,Bronze Ingot,,,?
|
||||
Silver Ingot,Lightning,Curtana,Mythril Nugget x6,Darksteel Ingot,,?
|
||||
Ram Horn,Lightning,Kaiser Sword,Chrysoberyl,Iron Ingot,Iron Ingot x2,?
|
||||
Grass Thread x3,Lightning,Plantreaper,Iron Ingot,Ash Lumber,,?
|
||||
Bonecraft
|
||||
Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap
|
||||
Seashell,Lightning,Shell Earring,Seashell,Seashell x2,,3
|
||||
Bone Chip,Lightning,Bone Hairpin,Bone Chip,,,4
|
||||
Rabbit Hide,Lightning,Cat Baghnakhs,Bronze Ingot,Bone Chip x2,Bone Chip x3,9
|
||||
Brass Ingot,Lightning,Cornette,Brass Ingot,Bone Chip,,14
|
||||
Flint Stone x4,Lightning,Gigas Necklace,Pearl x2,Black Pearl,,18
|
||||
Giant Femur,Lightning,Shell Shield,Giant Femur,Turtle Shell,,23
|
||||
Ash Lumber,Lightning,Bone Pick,Ash Lumber,Giant Femur,,23
|
||||
Beetle Jaw,Lightning,Beetle Ring,Beetle Jaw,,,25
|
||||
Beetle Shell,Lightning,Justaucorps,,,,26
|
||||
Ram Horn,Lightning,Horn Hairpin,Ram Horn,,,29
|
||||
Beetle Jaw,Lightning,Beetle Gorget,Beetle Jaw,Beetle Jaw x2,Beetle Shell,31
|
||||
Fish Scales,Lightning,Horn Ring,Ram Horn,,,36
|
||||
Bone Chip x2,Lightning,Bone Cudgel,,,,39
|
||||
Turtle Shell,Lightning,Shell Hairpin,,,,53
|
||||
Grass Thread,Lightning,Blood Stone,Fiend Blood,Giant Femur,,57
|
||||
Scorpion Shell,Lightning,Scorpion Ring,Scorpion Shell,,,60
|
||||
Fish Scales,Lightning,Demon's Ring,Fish Scales,Demon Horn,,70
|
||||
Linen Thread x2,Lightning,Coral Subligar,Coeurl Leather,Coral Fragment,,71
|
||||
Silver Ingot,Lightning,Coral Earring,Silver Ingot,Coral Fragment,,83
|
||||
Bronze Ingot,Lightning,Lynx Baghnakhs,Bone Chip x2,Bone Chip x3,Tiger Leather,?
|
||||
Goldsmithing
|
||||
Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap
|
||||
Copper Ingot,Lightning,Yagudo Necklace,,,,1
|
||||
Copper Ingot,Lightning,Copper Ring,Copper Ingot,Copper Ingot x2,,5
|
||||
Copper Ingot,Lightning,Copper Hairpin,Copper Ingot,,,7
|
||||
Copper Ingot,Lightning,Circlet,Brass Ingot,,,9
|
||||
Bronze Ingot,Lightning,Brass Cap,Brass Ingot,Sheep Leather,Sheep Leather x2,10
|
||||
Brass Ingot,Lightning,Brass Mittens,Sheep Leather,Bronze Ingot,,12
|
||||
Ash Lumber,Lightning,Brass Axe,,,,12
|
||||
Bronze Ingot,Lightning,Brass Leggings,Brass Ingot,Sheep Leather,Sheep Leather x2,14
|
||||
Brass Ingot,Lightning,Brass Ring,Brass Ingot,Brass Ingot x2,,15
|
||||
Grass Thread x3,Lightning,Brass Subligar,Sheep Leather,Bronze Ingot,Brass Ingot,16
|
||||
Brass Ingot,Lightning,Brass Hairpin,Brass Ingot,,,17
|
||||
Silver Ingot,Lightning,Silver Earring,Silver Ingot,Silver Ingot x2,,22
|
||||
Bronze Ingot,Lightning,Bronze Rod,Bronze Ingot,Bronze Ingot x2,Copper Ingot,23
|
||||
Tourmaline,Lightning,Tourmaline Earring,Tourmaline,Silver Ingot,Silver Ingot x2,25
|
||||
Amber,Lightning,Amber Earring,Amber,Silver Ingot,Silver Ingot x2,25
|
||||
Silver Ingot,Lightning,Silver Hairpin,Silver Ingot,,,27
|
||||
Bronze Ingot,Lightning,Heat Rod,Iron Ingot,Iron Ingot x2,Amethyst,31
|
||||
Silver Ingot,Lightning,Silver Ring,Silver Ingot,Silver Ingot x2,,32
|
||||
Onyx,Lightning,Onyx Ring,Onyx,Silver Ingot,Silver Ingot x2,35
|
||||
Clear Topaz,Lightning,Clear Ring,Clear Topaz,Silver Ingot,Silver Ingot x2,35
|
||||
Pearl,Lightning,Pearl Earring,Pearl,Mythril Ingot,Mythril Ingot x2,45
|
||||
Mythril Ingot,Lightning,Mythril Ring,Mythril Ingot,Mythril Ingot x2,,47
|
||||
Silver Ingot,Lightning,Silver Bangles,Silver Ingot,Silver Ingot x2,Silver Ingot x3,49
|
||||
Mythril Ingot,Lightning,Buckler,,,,49
|
||||
Gold Ingot,Lightning,Gold Orcmask,,,,52
|
||||
Iron Ingot,Lightning,Mythril Degen,Iron Ingot x2,Mythril Ingot,Mythril Ingot x2,52
|
||||
Gold Ingot,Lightning,Gold Hairpin,Gold Ingot,58
|
||||
Iron Ingot,Lightning,Gold Buckler,Holly Lumber,Mercury,Gold Ingot,80
|
||||
Silver Ingot,Lightning,Electrum Ring,Silver Ingot Gold Ingot,,,?
|
||||
Mythril Nugget x6,Lightning,Mythril Dagger,,,,?
|
||||
Brass Ingot,Lightning,Bastokan Leggings,,,,?
|
||||
Bronze Ingot,Lightning,Legionnaire's Harness,Sheep Leather x2,?
|
||||
Copper Ingot,Lightning,Compound Eye Circlet,Copper Ingot,Hecteyes Eye,Mythril Ingot,?
|
||||
Copper Ingot,Lightning,Onion Dagger,Copper Ingot x2,,,?
|
||||
Silver Chain,Wind,Corse Bracelet,Amber,Sphene,Chrysoberyl,?
|
||||
Leathercraft
|
||||
Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap
|
||||
Sheep Leather,Wind,Goblin Mask,Sheep Leather,Sheep Leather x2,Sheep Leather x?,2
|
||||
Ash Lumber,Lightning,Cesti,Sheep Leather,Sheep Leather x2,Sheep Leather x?,3
|
||||
Sheep Leather,Lightning,Leather Bandana,,,,5
|
||||
Bronze Ingot,Lightning,Leather Highboots,Sheep Leather,Sheep Leather x2,Sheep Leather x3,6
|
||||
Grass Thread,Lightning,Rabbit Mantle,Rabbit Hide x3,Rabbit Hide x4,Rabbit Hide x5,7
|
||||
Sheep Leather,Lightning,Leather Gloves,Grass Thread x2,Grass Thread x3,Sheep Leather x2,8
|
||||
Grass Thread x5,Lightning,Leather Trousers,Grass Thread x6,Sheep Leather x6,Sheep Leather x2,8
|
||||
Sheep Leather,Lightning,Leather Vest,Sheep Leather x2,Sheep Leather x3,Lizard Skin,9
|
||||
Sheep Leather,Lightning,Solea,Sheep Leather,Sheep Leather x2,Sheep Leather x2,11
|
||||
Sheep Leather,Lightning,Leather Belt,Sheep Leather,Iron Ingot,Iron Ingot x2,13
|
||||
Sheep Leather,Lightning,Lizard Helm,Lizard Skin,Sheep Leather x2,Sheep Leather x?,15
|
||||
Grass Thread x3,Lightning,Lizard Gloves,Sheep Leather,Lizard Skin x2,Lizard Skin x?,16
|
||||
Ash Lumber,Lightning,Lizard Cesti,Lizard Skin,Lizard Skin x2,,17
|
||||
Dhalmel Leather,Lightning,Leather Ring,,,,22
|
||||
Dhalmel Hide,Lightning,Dhalmel Mantle,Wool Thread,,,24
|
||||
Sheep Leather,Lightning,Studded Bandana,Iron Ingot,Iron Ingot x2,Iron Ingot x?,24
|
||||
Dhalmel Leather,Lightning,Studded Boots,Iron Ingot,,,28
|
||||
Sheep Leather,Lightning,Sandals,Dhalmel Leather,,,29
|
||||
Sheep Leather,Wind,Moblin Mask,,,,31
|
||||
Ram Leather x3,Wind,Bugbear Mask,,,,35
|
||||
Sheep Leather,Wind,Goblin Armor,Ram Leather,Ram Leather x?,,36
|
||||
Grass Thread,Lightning,Leather Gorget,Ram Leather,Grass Thread,Grass Thread x?,37
|
||||
Cotton Thread,Lightning,Wolf Gorget,,,,39
|
||||
Grass Thread,Lightning,Raptor Mantle,Raptor Skin,Raptor Skin x2,,53
|
||||
Wool Thread,Lightning,Behemoth Mantle,Wool Thread,,,70
|
||||
Cotton Thread,Lightning,Coeurl Gorget,Cotton Thread,Coeurl Hide x2,,79
|
||||
Sheep Leather,Lightning,Coeurl Jerkin,Sheep Leather,Coeurl Leather,Coeurl Leather x2,89
|
||||
Sheep Leather,Lightning,Ogre Jerkin,Coeurl Leather x2,Manticore Leather,,90
|
||||
Tiger Hide,Lightning,Tiger Mask,Wool Thread,Ram Leather x2,Wyvern Skin,95
|
||||
Wool Thread,Lightning,Panther Mask,Ram Leather,High-Quality Coeurl Hide,Wyvern Skin,102
|
||||
Clothcraft
|
||||
Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap
|
||||
Grass Thread x3,Wind,Yagudo Necklace,Grass Thread x6,Grass Thread x9,Grass Thread x12,1
|
||||
Grass Thread x4,Lightning,Headgear,Grass Thread x5,Grass Thread x6,Grass Thread x7,5
|
||||
Grass Thread x8,Lightning,Gaiters,Grass Thread x9,Cotton Thread,,6
|
||||
Grass Thread x6,Lightning,Gloves,Grass Thread x7,Saruta Cotton,Saruta Cotton x2,6
|
||||
Grass Thread x4,Lightning,Cape,Grass Thread x5,Grass Thread x6,Grass Thread x7,8
|
||||
Lauan Lumber,Lightning,Tekko,Grass Thread x2,Grass Thread x5,Grass Thread x6,8
|
||||
Cotton Thread x2,Lightning,Goblin Armor,Cotton Thread x4,Cotton Thread x6,Cotton Thread x8,9
|
||||
Cotton Thread x2,Lightning,Antican Robe,Cotton Thread x4,Cotton Thread x6,Cotton Thread x8,9
|
||||
Cotton Cloth,Wind,Antican Robe,Cotton Cloth x2,Cotton Cloth x3,Cotton Cloth x4,10
|
||||
Grass Thread x10,Lightning,Doublet,Grass Thread x12,Saruta Cotton x2,Saruta Cotton x3,10
|
||||
Grass Thread x3,Lightning,Hachimaki,Grass Thread x4,Grass Thread x5,Grass Thread x6,10
|
||||
Grass Thread x2,Lightning,Mitts,Grass Thread x3,,,12
|
||||
Grass Thread x3,Lightning,Cuffs,Flint Stone x2,Cotton Thread x3,Cotton Thread x4,12
|
||||
Grass Thread x7,Lightning,Kyahan,Grass Thread x8,Grass Thread x9,Sheep Leather,14
|
||||
Grass Thread x2,Lightning,Slops,Grass Thread x3,Cotton Thread x3,Cotton Thread x4,14
|
||||
Cotton Thread x7,Lightning,Slacks,Cotton Thread x8,,,15
|
||||
Cotton Thread x4,Lightning,Cotton Headgear,Cotton Thread x5,Cotton Thread x6,Cotton Thread x7,15
|
||||
Grass Thread x5,Lightning,Robe,Grass Thread x7,Cotton Thread x5,Cotton Thread x6,16
|
||||
Grass Thread x6,Lightning,Sitabaki,Grass Thread x7,Cotton Thread x2,Cotton Thread x3,16
|
||||
Linen Thread x2,Lightning,Tonberry Coat,Linen Thread x4,Linen Thread x6,Linen Thread x8,17
|
||||
Cotton Thread x4,Lightning,Cotton Cape,Cotton Thread x5,Cotton Thread x6,Cotton Thread x7,18
|
||||
Grass Thread x7,Lightning,Kenpogi,Grass Thread x8,Grass Thread x9,Grass Thread x10,18
|
||||
Linen Thread,Lightning,Cotton Headband,Linen Thread x2,Linen Thread x3,Carbon Fiber,20
|
||||
Linen Cloth,Wind,Tonberry Coat,Linen Cloth x2,Linen Cloth x2,Linen Cloth x2,22
|
||||
Cotton Thread x3,Lightning,Linen Cuffs,Linen Thread x4,Sardonyx,Sardonyx x2,23
|
||||
Cotton Thread x7,Lightning,Cotton Kyahan,Cotton Thread x8,Cotton Thread x9,Linen Thread,24
|
||||
Lauan Lumber,Lightning,Cotton Tekko,Grass Thread,Cotton Thread x5,Cotton Thread x6,24
|
||||
Cotton Thread x2,Lightning,Linen Slops,Cotton Thread x3,Linen Thread x6,Linen Thread x7,25
|
||||
Grass Thread,Lightning,Heko Obi,Cotton Thread x4,Cotton Thread x5,Cotton Thread x6,27
|
||||
Grass Thread,Lightning,Cotton Dogi,Cotton Thread x7,Cotton Thread x8,Cotton Thread x9,28
|
||||
Bat Fang,Lightning,Fly Lure,Chocobo Feather,Animal Glue,,29
|
||||
Wool Thread x2,Lightning,Gigas Socks,Wool Thread x4,Wool Thread x6,Wool Thread x8,35
|
||||
Grass Thread x5,Lightning,Hemp Gorget,Grass Thread x6,Grass Thread x7,Grass Thread x8,43
|
||||
Saruta Cotton x2,Lightning,Wool Bracers,Wool Thread x5,Wool Thread x6,Wool Thread x7,46
|
||||
Silk Thread x2,Lightning,Black Cape,Silver Thread,Wool Thread x3,Wool Thread x4,54
|
||||
Silk Thread,Lightning,Green Ribbon,Silk Thread,Silk Thread x2,Silk Thread x3,62
|
||||
Silk Thread x4,Lightning,White Cape,Silk Thread x5,Silk Thread x6,Wool Thread,64
|
||||
Saruta Cotton,Lightning,White Mitts,Silk Thread x4,Wool Thread x2,Gold Thread,64
|
||||
Silver Thread,Lightning,Silk Hat,Silk Thread x6,,,65
|
||||
Silk Thread,Lightning,Silk Headband,Silk Thread x2,Silk Thread x3,Carbon Fiber,69
|
||||
Gold Thread,Lightning,Gold Obi,Gold Thread x2,,,70
|
||||
Black Ink,Lightning,Black Silk Neckerchief,Silk Thread x7,Silk Thread x8,Silk Thread x9,?
|
||||
Cotton Thread x2,Lightning,Moblin Armor,Cotton Thread x4,Cotton Thread x6,Cotton Thread x8,?
|
||||
Cotton Thread x4,Lightning,Corse Robe,Cotton Thread x6,Silk Thread,Gold Thread,?
|
||||
Velvet Cloth x2,Wind,Corse Robe,Velvet Cloth x3,,,?
|
||||
Wool Thread x4,Lightning,Wool Cuffs,?,?,?,?
|
||||
Saruta Cotton x2,Lightning,Linen Doublet,Saruta Cotton x3,Linen Cloth x2,?,?
|
||||
Woodworking
|
||||
Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap
|
||||
Parchment,Lightning,Flute,Parchment,Maple Lumber,Maple Lumber,1
|
||||
Lauan Lumber,Lightning,Lauan Shield,Lauan Lumber x2,,,7
|
||||
Ash Lumber,Lightning,Ash Pole,,,,8
|
||||
Ash Lumber,Lightning,Ash Staff,Bat Fang,,,9
|
||||
Ash Lumber,Lightning,Ash Club,,,,9
|
||||
Maple Lumber,Lightning,Maple Shield,Maple Lumber x2,,,11
|
||||
Ash Lumber,Lightning,Ash Clogs,Sheep Leather,Sheep Leather x?,,11
|
||||
Willow Lumber,Lightning,Willow Wand,HQ1:Willow Lumber,HQ2:Willow Lumber,HQ3:Insect Wing,14
|
||||
Bamboo Stick,Lightning,Bamboo Fishing Rod,,,,15
|
||||
Holly Lumber,Lightning,Holly Staff,,,,19
|
||||
Linen Thread,Lightning,Yew Fishing Rod,HQ1:Yew Lumber,HQ2:Linen Thread,,20
|
||||
Yew Lumber,Lightning,Yew Fishing Rod,HQ1:Linen Thread,HQ2:Yew Lumber,,20
|
||||
Parchment,Lightning,Piccolo,HQ1:Parchment,HQ2:Holly Lumber,,20
|
||||
Maple Lumber,Lightning,Maple Harp,HQ1:Coeurl Whisker x2,,,23
|
||||
Yagudo Feather,Lightning,Yew Wand,HQ1:Yew Lumber,,,23
|
||||
Chestnut Lumber,Lightning,Bouncer Club,,,,27
|
||||
Elm Lumber,Lightning,Elm Staff,HQ1:Ram Horn,,,31
|
||||
Elm Lumber,Lightning,Misery Staff,HQ1:Slime Oil,HQ2:Black Pearl,,31
|
||||
Chestnut Lumber,Lightning,Chestnut Wand,HQ1:Bird Feather,,,32
|
||||
Parchment,Lightning,Traversiere,HQ1:Oak Lumber,,,37
|
||||
Elm Lumber,Lightning,Elm Pole,,,,46
|
||||
Bronze Ingot,Lightning,Great Club,HQ1:Mahogany Lumber,,,54
|
||||
Silk Thread,Lightning,Tarutaru Fishing Rod,HQ1:Walnut Lumber,,,63
|
||||
Silk Thread,Lightning,Clothespole,HQ1:Mahogany Lumber,,,77
|
||||
Walnut Lumber,Lightning,Battle Staff,HQ1:Walnut Lumber x2,HQ2:Walnut Lumber x4,,85
|
||||
Rainbow Thread,Lightning,Mithran Fishing Rod,HQ1:Rattan Lumber,,,87
|
||||
Walnut Lumber,Lightning,Eight-Sided Pole,Walnut Lumber x2,Walnut Lumber x6,Mythril Nugget x6,94
|
||||
Holly Lumber,Lightning,Hypno Staff,Peridot,,,99
|
||||
|
239
datasets/desythesis_recipes.csv.bak
Normal file
239
datasets/desythesis_recipes.csv.bak
Normal file
@@ -0,0 +1,239 @@
|
||||
Alchemy
|
||||
Item,Crystal,Ingredients,HQ,Cap
|
||||
Distilled Water x3,Lightning,Tahrongi Cactus,HQ1: Distilled Water x6,HQ2: Distilled Water x9,HQ3: Distilled Waterx12,2
|
||||
Bronze Ingot x2,Lightning,Bee Spatha,HQ1: Bronze Ingot x3,HQ2: Beeswax x2,HQ3: Lizard Skin x2,14
|
||||
Poison Dust x2,Fire,Gigas Socks,HQ1: Poison Dust x4,HQ2: Poison Dust x6,HQ3: Poison Dust x8,15
|
||||
Glass Fiber x2,Lightning,Goblin Mask,HQ1: Glass Fiber x4,HQ2: Glass Fiber x6,HQ3: Glass Fiber x8,21
|
||||
Glass Fiber x3,Lightning,Tonberry Lantern,HQ1: Glass Fiber x6,HQ2: Glass Fiber x9,HQ3: Glass Fiber x12,23
|
||||
Olive Oil x3,Water,Tonberry Lantern,HQ1: Toad Oil x2,HQ2: Slime Oil,HQ3: Slime Oil,24
|
||||
Glass Fiber x2,Lightning,Moblin Mask,HQ1: Glass Fiber x4,HQ2: Glass Fiber x6,HQ3: Glass Fiber x8,29
|
||||
Copper Ingot,Lightning,Minnow,HQ1: Copper Ingot,HQ2: Glass Fiber,HQ3: Glass Fiber,31
|
||||
Ash Lumber,Lightning,Blind Knife,HQ1: Animal Glue,HQ2: Bronze Ingot,HQ3: Blinding Potion,34
|
||||
Holy Water,Lightning,Holy Mace,HQ1: Oak Lumber,HQ2: Mythril Nugget x10,HQ3: Mythril Ingot x2,51
|
||||
Carbon Fiber,Lightning,Carbon Fishing Rod,HQ1: Carbon Fiber x2,HQ2: Carbon Fiber x3,HQ3: Carbon Fiber x4,53
|
||||
Venom Dust,Lightning,Monke-Onke,HQ1: Venom Dust x4,62
|
||||
Glass Fiber x4,Lightning,Bugbear Mask,HQ1: Glass Fiber x6,HQ2: Glass Fiber x8,HQ3: Glass Fiber x10,62
|
||||
Beetle Jaw,Lightning,Cermet Claws,,63
|
||||
Cermet Chunk,Lightning,Composite Fishing Rod,HQ1: Cermet Chunk x2,HQ2: Glass Fiber,HQ3: Carbon Fiber,89
|
||||
Cermet Chunk x2,Lightning,Espadon,HQ1: Cermet Chunk x3,HQ2: Coeurl Leather,90
|
||||
Paralyze Potion,Lightning,Mamushito,HQ1: Elm Lumber,HQ2: Iron Nugget x6,HQ3: Tama-Hagane,91
|
||||
Smithing
|
||||
Item,Crystal,Ingredients,HQ,Cap
|
||||
Bronze Ingot,Lightning,Bronze Cap,HQ1: Sheep Leather,HQ2: Bronze Ingot,HQ3: Sheep Leather x2,4
|
||||
Bronze Ingot,Lightning,Bronze Mittens,HQ1: Bronze Ingot,HQ2: Sheep Leather,5
|
||||
Bronze Ingot,Lightning,Bronze Sword,HQ1: Bronze Ingot x2,HQ2: Sheep Leather,6
|
||||
Bronze Ingot,Lightning,Bronze Leggings,HQ1: Bronze Ingot x2,HQ2: Sheep Leather,HQ3: Sheep Leather x2,7
|
||||
Bronze Ingot,Lightning,Xiphos,HQ1: Bronze Ingot,HQ2: Giant Femur,8
|
||||
Grass Thread x3,Lightning,Bronze Zaghnal,HQ1: Ash Lumber,HQ2: Bronze Ingot,HQ3: Bronze Ingot x2,8
|
||||
Bronze Ingot,Lightning,Bronze Subligar,HQ1: Grass Thread x3,HQ2: Sheep Leather,9
|
||||
Bronze Ingot,Lightning,Bronze Mace,HQ1: Bronze Ingot,HQ2: Bronze Ingot x2,HQ3: Bronze Ingot x3,10
|
||||
Bronze Ingot x2,Lightning,Scale Finger Gauntlets,HQ1: Cotton Thread,HQ2: Grass Thread x3,HQ3: Sheep Leather x2 (unverified),11
|
||||
Bronze Ingot,Lightning,Bronze Rod,HQ1: Bronze Ingot,HQ2: Bronze Ingot x2,HQ3: Copper Ingot,12
|
||||
Lauan Lumber,Lightning,Light Axe,HQ1: Bronze Ingot,HQ2: Bronze Ingot x2,HQ3: Tourmaline,16
|
||||
Ash Lumber,Lightning,Aspis,HQ1: Bronze Ingot,HQ2: Bronze Ingot x2,HQ3: Bronze Ingot x3,18
|
||||
Bronze Ingot x3,Lightning,Goblin Mail,HQ1: Iron Ingot x2,HQ2: Steel Ingot,HQ3: Steel Ingot,19
|
||||
Bronze Ingot,Lightning,Goblin Helm,HQ1: Iron Ingot,HQ2: Steel Ingot,HQ3: Steel Ingot,19
|
||||
Bronze Sheet,Wind,Goblin Helm,HQ1: Iron Sheet,HQ2: Steel Ingot,HQ3: Steel Ingot,20
|
||||
Bronze Sheet x3,Wind,Goblin Mail,HQ1: Iron Sheet,21
|
||||
Brass Ingot,Lightning,Scimitar,HQ1: Brass Ingot,HQ2: Steel Ingot,HQ3: Steel Ingot x2,24
|
||||
Lizard Skin,Lightning,Iron Sword,HQ1: Iron Ingot,HQ2: Iron Ingot x2,25
|
||||
Bronze Ingot,Lightning,Spatha,HQ1: Bronze Ingot x2,HQ2: Bronze Ingot x3,HQ3: Lizard Skin,25
|
||||
Iron Ingot x2,Lightning,Longsword,,27
|
||||
Lizard Skin,Lightning,Kunai,HQ1: Lizard Skin HQ2: Steel Ingot,29
|
||||
Brass Ingot,Lightning,Iron Mask,HQ1: Brass Ingot HQ2: Iron Ingot,29
|
||||
Ram Leather,Lightning,Chain Mittens,HQ1: Ram Leather x2,HQ2: Iron Ingot x3,31
|
||||
Ash Lumber,Lightning,Claymore,HQ1: Lizard Skin,HQ2: Iron Ingot x3,HQ3: Steel Ingot x4,32
|
||||
Sheep Leather,Lightning,Iron Cuisses,,35
|
||||
Lizard Skin,Lightning,Wakizashi,HQ1: Elm Lumber,HQ2: Iron Ingot,HQ3: Tama-Hagane,36
|
||||
Lizard Skin,Lightning,Padded Cap,HQ1: Lizard Skin x2,HQ2: Iron Ingot,38
|
||||
Ash Lumber,Lightning,War Pick,HQ1: Ash Lumber,HQ2: Steel Ingot,38
|
||||
Mythril Ingot,Lightning,Mythril Kukri,,42
|
||||
Bronze Ingot,Lightning,Musketoon,HQ1: Bronze Ingot,HQ2: ??? (unverified),43
|
||||
Oak Lumber,Lightning,Maul,HQ1: Oak Lumber,HQ2: Mythril Nugget x6,46
|
||||
Bronze Ingot,Lightning,Quadav Helm,HQ1: Iron Ingot,HQ2: Steel Ingot,HQ2: Darksteel Ingot,49
|
||||
Steel Ingot,Lightning,Arquebus,,50
|
||||
Bronze Sheet,Wind,Tonberry Lantern,HQ1: Bronze Sheet,HQ2: Glass Fiber x9,HQ3: Glass Fiber x12,51
|
||||
Animal Glue,Lightning,Corrosive Claws,HQ1: Bronze Ingot,51
|
||||
Bronze Ingot,Lightning,Quadav Backplate,HQ1: Iron Ingot,HQ2: Iron Ingot,HQ3: Darksteel Ingot,51
|
||||
Bronze Sheet,Wind,Quadav Helm,HQ1: Iron Sheet,HQ2: Steel Sheet,HQ3: Darksteel Sheet,51
|
||||
Bronze Sheet,Wind,Quadav Backplate,HQ1: Iron Sheet,HQ2: Iron Sheet,HQ3: Darksteel Sheet,53
|
||||
Mythril Nugget x4,Lightning,Darksteel Baselard,,63
|
||||
Bronze Ingot x2,Lightning,Antican Pauldron,HQ1: Darksteel Ingot,78
|
||||
Bronze Sheet x2,Wind,Antican Pauldron,HQ1: Darksteel Sheet,78
|
||||
Bronze Ingot,Lightning,Cougar Baghnakhs,,?
|
||||
Bronze Ingot,Lightning,Royal Archer's Sword,,?
|
||||
Bronze Ingot,Lightning,Legionnaire's Knuckles,HQ1: Bronze Ingot,?
|
||||
Bronze Ingot,Lightning,Goblin Cup,HQ1: Bronze Ingot,?
|
||||
Silver Ingot,Lightning,Curtana,HQ1: Mythril Nugget x6,HQ2: Darksteel Ingot,?
|
||||
Ram Horn,Lightning,Kaiser Sword,HQ1: Chrysoberyl,HQ2: Iron Ingot,HQ3: Iron Ingot x2,?
|
||||
Grass Thread x3,Lightning,Plantreaper,HQ1: Iron Ingot,HQ2: Ash Lumber,?
|
||||
Bonecraft
|
||||
Item,Crystal,Ingredients,HQ,Cap
|
||||
Seashell,Lightning,Shell Earring,HQ1: Seashell,HQ2: Seashell x2,3
|
||||
Bone Chip,Lightning,Bone Hairpin,HQ1: Bone Chip,4
|
||||
Rabbit Hide,Lightning,Cat Baghnakhs,HQ1: Bronze Ingot,HQ2: Bone Chip x2,HQ3: Bone Chip x3,9
|
||||
Brass Ingot,Lightning,Cornette,HQ1: Brass Ingot,HQ2: Bone Chip,14
|
||||
Flint Stone x4,Lightning,Gigas Necklace,HQ1: Pearl x2,HQ2: Black Pearl,18
|
||||
Giant Femur,Lightning,Shell Shield,HQ1: Giant Femur,HQ2: Turtle Shell,23
|
||||
Ash Lumber,Lightning,Bone Pick,HQ1: Ash Lumber,HQ2: Giant Femur,23
|
||||
Beetle Jaw,Lightning,Beetle Ring,HQ1: Beetle Jaw,25
|
||||
Beetle Shell,Lightning,Justaucorps,,26
|
||||
Ram Horn,Lightning,Horn Hairpin,HQ1: Ram Horn,29
|
||||
Beetle Jaw,Lightning,Beetle Gorget,HQ1: Beetle Jaw,HQ2: Beetle Jaw x2,HQ3: Beetle Shell,31
|
||||
Fish Scales,Lightning,Horn Ring,HQ1: Ram Horn,36
|
||||
Bone Chip x2,Lightning,Bone Cudgel,,39
|
||||
Turtle Shell,Lightning,Shell Hairpin,,53
|
||||
Grass Thread,Lightning,Blood Stone,HQ1: Fiend Blood,HQ2: Giant Femur,57
|
||||
Scorpion Shell,Lightning,Scorpion Ring,HQ1: Scorpion Shell,60
|
||||
Fish Scales,Lightning,Demon's Ring,HQ1: Fish Scales,HQ2: Demon Horn,70
|
||||
Linen Thread x2,Lightning,Coral Subligar,HQ1: Coeurl Leather,HQ2: Coral Fragment,71
|
||||
Silver Ingot,Lightning,Coral Earring,HQ1: Silver Ingot,HQ2: Coral Fragment,83
|
||||
Bronze Ingot,Lightning,Lynx Baghnakhs,HQ1: Bone Chip x2,HQ2: Bone Chip x3,HQ3: Tiger Leather,?
|
||||
Goldsmithing
|
||||
Item,Crystal,Ingredients,HQ,Cap
|
||||
Copper Ingot,Lightning,Yagudo Necklace,,1
|
||||
Copper Ingot,Lightning,Copper Ring,HQ1: Copper Ingot,HQ2: Copper Ingot x2,5
|
||||
Copper Ingot,Lightning,Copper Hairpin,HQ1: Copper Ingot,7
|
||||
Copper Ingot,Lightning,Circlet,HQ1: Brass Ingot,9
|
||||
Bronze Ingot,Lightning,Brass Cap,HQ1: Brass Ingot,HQ2: Sheep Leather,HQ3: Sheep Leather x2,10
|
||||
Brass Ingot,Lightning,Brass Mittens,HQ1: Sheep Leather,HQ2: Bronze Ingot,12
|
||||
Ash Lumber,Lightning,Brass Axe,,12
|
||||
Bronze Ingot,Lightning,Brass Leggings,HQ1: Brass Ingot,HQ2: Sheep Leather,HQ3: Sheep Leather x2,14
|
||||
Brass Ingot,Lightning,Brass Ring,HQ1: Brass Ingot,HQ2: Brass Ingot x2,15
|
||||
Grass Thread x3,Lightning,Brass Subligar,HQ1: Sheep Leather,HQ2: Bronze Ingot,HQ3: Brass Ingot,16
|
||||
Brass Ingot,Lightning,Brass Hairpin,HQ1: Brass Ingot,17
|
||||
Silver Ingot,Lightning,Silver Earring,HQ1: Silver Ingot,HQ2: Silver Ingot x2,22
|
||||
Bronze Ingot,Lightning,Bronze Rod,HQ1: Bronze Ingot,HQ2: Bronze Ingot x2,HQ3: Copper Ingot,23
|
||||
Tourmaline,Lightning,Tourmaline Earring,HQ1: Tourmaline,HQ2: Silver Ingot,HQ3: Silver Ingot x2,25
|
||||
Amber,Lightning,Amber Earring,HQ1: Amber,HQ2: Silver Ingot,HQ3: Silver Ingot x2,25
|
||||
Silver Ingot,Lightning,Silver Hairpin,HQ1: Silver Ingot,27
|
||||
Bronze Ingot,Lightning,Heat Rod,HQ1: Iron Ingot,HQ2: Iron Ingot x2,HQ3: Amethyst,31
|
||||
Silver Ingot,Lightning,Silver Ring,HQ1: Silver Ingot,HQ2: Silver Ingot x2,32
|
||||
Onyx,Lightning,Onyx Ring,HQ1: Onyx,HQ2: Silver Ingot,HQ3: Silver Ingot x2,35
|
||||
Clear Topaz,Lightning,Clear Ring,HQ1: Clear Topaz,HQ2: Silver Ingot,HQ3: Silver Ingot x2,35
|
||||
Pearl,Lightning,Pearl Earring,HQ1: Pearl,HQ2: Mythril Ingot,HQ3: Mythril Ingot x2,45
|
||||
Mythril Ingot,Lightning,Mythril Ring,HQ1: Mythril Ingot,HQ2: Mythril Ingot x2,47
|
||||
Silver Ingot,Lightning,Silver Bangles,HQ1: Silver Ingot,HQ2: Silver Ingot x2,HQ3: Silver Ingot x3,49
|
||||
Mythril Ingot,Lightning,Buckler,,49
|
||||
Gold Ingot,Lightning,Gold Orcmask,,52
|
||||
Iron Ingot,Lightning,Mythril Degen,HQ1: Iron Ingot x2,HQ2: Mythril Ingot,HQ3: Mythril Ingot x2,52
|
||||
Gold Ingot,Lightning,Gold Hairpin,HQ1: Gold Ingot,58
|
||||
Iron Ingot,Lightning,Gold Buckler,HQ1: Holly Lumber,HQ2: Mercury,HQ3: Gold Ingot,80
|
||||
Silver Ingot,Lightning,Electrum Ring,HQ1: Silver Ingot HQ2: Gold Ingot,?
|
||||
Mythril Nugget x6,Lightning,Mythril Dagger,,?
|
||||
Brass Ingot,Lightning,Bastokan Leggings,,?
|
||||
Bronze Ingot,Lightning,Legionnaire's Harness,HQ1: Sheep Leather x2,?
|
||||
Copper Ingot,Lightning,Compound Eye Circlet,HQ1: Copper Ingot,HQ2: Hecteyes Eye,HQ3: Mythril Ingot,?
|
||||
Copper Ingot,Lightning,Onion Dagger,HQ1: Copper Ingot x2,?
|
||||
Silver Chain,Wind,Corse Bracelet,HQ1: Amber,HQ2: Sphene,HQ3: Chrysoberyl,?
|
||||
Leathercraft
|
||||
Item,Crystal,Ingredients,HQ,Cap
|
||||
Sheep Leather,Wind,Goblin Mask,HQ1: Sheep Leather,HQ2: Sheep Leather x2,HQ3: Sheep Leatherx ?,2
|
||||
Ash Lumber,Lightning,Cesti,HQ1: Sheep Leather,HQ2: Sheep Leather x2,HQ3: Sheep Leather x ?,3
|
||||
Sheep Leather,Lightning,Leather Bandana,,5
|
||||
Bronze Ingot,Lightning,Leather Highboots,HQ1: Sheep Leather,HQ2: Sheep Leather x2,HQ3: Sheep Leather x3,6
|
||||
Grass Thread,Lightning,Rabbit Mantle,HQ1: Rabbit Hide x3,HQ2: Rabbit Hide x4,HQ3: Rabbit Hide x5,7
|
||||
Sheep Leather,Lightning,Leather Gloves,HQ1: Grass Thread x2,HQ2: Grass Thread x3,HQ3: Sheep Leather x2,8
|
||||
Grass Thread x5,Lightning,Leather Trousers,HQ1: Grass Thread x6,HQ2: Sheep Leather x6,HQ3: Sheep Leather x2,8
|
||||
Sheep Leather,Lightning,Leather Vest,HQ1: Sheep Leather x2,HQ2: Sheep Leather x3,HQ3: Lizard Skin,9
|
||||
Sheep Leather,Lightning,Solea,HQ1: Sheep Leather x1,HQ2: Sheep Leather x2,HQ3: Sheep Leather x2,11
|
||||
Sheep Leather,Lightning,Leather Belt,HQ1: Sheep Leather,HQ2: Iron Ingot,HQ3: Iron Ingot x2,13
|
||||
Sheep Leather,Lightning,Lizard Helm,HQ1: Lizard Skin,HQ2: Sheep Leather x2,HQ3: Sheep Leather x?,15
|
||||
Grass Thread x3,Lightning,Lizard Gloves,HQ1: Sheep Leather,HQ2: Lizard Skin x2,HQ3: Lizard Skin x?,16
|
||||
Ash Lumber,Lightning,Lizard Cesti,HQ1: Lizard Skin,HQ2: Lizard Skin x2,17
|
||||
Dhalmel Leather,Lightning,Leather Ring,,22
|
||||
Dhalmel Hide,Lightning,Dhalmel Mantle,HQ1: Wool Thread,24
|
||||
Sheep Leather,Lightning,Studded Bandana,HQ1: Iron Ingot,HQ2: Iron Ingot x2,HQ3: Iron Ingot x?,24
|
||||
Dhalmel Leather,Lightning,Studded Boots,HQ1: Iron Ingot,28
|
||||
Sheep Leather,Lightning,Sandals,HQ1: Dhalmel Leather,29
|
||||
Sheep Leather,Wind,Moblin Mask,,31
|
||||
Ram Leather x3,Wind,Bugbear Mask,,35
|
||||
Sheep Leather,Wind,Goblin Armor,HQ1: Ram Leather,HQ2: Ram Leather x?,36
|
||||
Grass Thread,Lightning,Leather Gorget,HQ1: Ram Leather,HQ2: Grass Thread,HQ3: Grass Thread x?,37
|
||||
Cotton Thread,Lightning,Wolf Gorget,,39
|
||||
Grass Thread,Lightning,Raptor Mantle,HQ1: Raptor Skin,HQ2: Raptor Skin x2,53
|
||||
Wool Thread,Lightning,Behemoth Mantle,HQ1: Wool Thread,70
|
||||
Cotton Thread,Lightning,Coeurl Gorget,HQ1: Cotton Thread,HQ2: Coeurl Hide x2,79
|
||||
Sheep Leather,Lightning,Coeurl Jerkin,HQ1: Sheep Leather,HQ2: Coeurl Leather,HQ3: Coeurl Leather x2,89
|
||||
Sheep Leather,Lightning,Ogre Jerkin,HQ1: Coeurl Leather x2,HQ2: Manticore Leather,90
|
||||
Tiger Hide,Lightning,Tiger Mask,HQ1: Wool Thread,HQ2: Ram Leather x2,HQ3: Wyvern Skin,95
|
||||
Wool Thread,Lightning,Panther Mask,HQ1: Ram Leather,HQ2: High-Quality Coeurl Hide,HQ3: Wyvern Skin,102
|
||||
Clothcraft
|
||||
Item,Crystal,Ingredients,HQ,Cap
|
||||
Grass Thread x3,Wind,Yagudo Necklace,HQ1: Grass Thread x6,HQ2: Grass Thread x9,HQ3: Grass Thread x12,1
|
||||
Grass Thread x4,Lightning,Headgear,HQ1: Grass Thread x5,HQ2: Grass Thread x6,HQ3: Grass Thread x7,5
|
||||
Grass Thread x8,Lightning,Gaiters,HQ1: Grass Thread x9,HQ2: Cotton Thread x1,6
|
||||
Grass Thread x6,Lightning,Gloves,HQ1: Grass Thread x7,HQ2: Saruta Cotton x1,HQ3: Saruta Cotton x2,6
|
||||
Grass Thread x4,Lightning,Cape,HQ1: Grass Thread x5,HQ2: Grass Thread x6,HQ3: Grass Thread x7,8
|
||||
Lauan Lumber x1,Lightning,Tekko,HQ1: Grass Thread x2,HQ2: Grass Thread x5,HQ3: Grass Thread x6,8
|
||||
Cotton Thread x2,Lightning,Goblin Armor,HQ1: Cotton Thread x4,HQ2: Cotton Thread x6,HQ3: Cotton Thread x8,9
|
||||
Cotton Thread x2,Lightning,Antican Robe,HQ1: Cotton Thread x4,HQ2: Cotton Thread x6,HQ3: Cotton Thread x8,9
|
||||
Cotton Cloth x1,Wind,Antican Robe,HQ1: Cotton Cloth x2,HQ2: Cotton Cloth x3,HQ3: Cotton Cloth x4,10
|
||||
Grass Thread x10,Lightning,Doublet,HQ1: Grass Thread x12,HQ2: Saruta Cotton x2,HQ3: Saruta Cotton x3,10
|
||||
Grass Thread x3,Lightning,Hachimaki,HQ1: Grass Thread x4,HQ2: Grass Thread x5,HQ3: Grass Thread x6,10
|
||||
Grass Thread x2,Lightning,Mitts,HQ1: Grass Thread x3,12
|
||||
Grass Thread x3,Lightning,Cuffs,HQ1: Flint Stone x2,HQ2: Cotton Thread x3,HQ3: Cotton Thread x4,12
|
||||
Grass Thread x7,Lightning,Kyahan,HQ1: Grass Thread x8,HQ2: Grass Thread x9,HQ3: Sheep Leather x1,14
|
||||
Grass Thread x2,Lightning,Slops,HQ1: Grass Thread x3,HQ2: Cotton Thread x3,HQ3: Cotton Thread x4,14
|
||||
Cotton Thread x7,Lightning,Slacks,HQ1: Cotton Thread x8,15
|
||||
Cotton Thread x4,Lightning,Cotton Headgear,HQ1: Cotton Thread x5,HQ2: Cotton Thread x6,HQ3: Cotton Thread x7,15
|
||||
Grass Thread x5,Lightning,Robe,HQ1: Grass Thread x7,HQ2: Cotton Thread x5,HQ3: Cotton Thread x6,16
|
||||
Grass Thread x6,Lightning,Sitabaki,HQ1: Grass Thread x7,HQ2: Cotton Thread x2,HQ3: Cotton Thread x3,16
|
||||
Linen Thread x2,Lightning,Tonberry Coat,HQ1: Linen Thread x4,HQ2: Linen Thread x6,HQ3: Linen Thread x8,17
|
||||
Cotton Thread x4,Lightning,Cotton Cape,HQ1: Cotton Thread x5,HQ2: Cotton Thread x6,HQ3: Cotton Thread x7,18
|
||||
Grass Thread x7,Lightning,Kenpogi,HQ1: Grass Thread x8,HQ2: Grass Thread x9,HQ3: Grass Thread x10,18
|
||||
Linen Thread x1,Lightning,Cotton Headband,HQ1: Linen Thread x2,HQ2: Linen Thread x3,HQ3: Carbon Fiber x1,20
|
||||
Linen Cloth x1,Wind,Tonberry Coat,HQ1: Linen Cloth x2,HQ2: Linen Cloth x2,HQ3: Linen Cloth x2,22
|
||||
Cotton Thread x3,Lightning,Linen Cuffs,HQ1: Linen Thread x4,HQ2: Sardonyx x1,HQ3: Sardonyx x2,23
|
||||
Cotton Thread x7,Lightning,Cotton Kyahan,HQ1: Cotton Thread x8,HQ2: Cotton Thread x9,HQ3: Linen Thread x1,24
|
||||
Lauan Lumber x1,Lightning,Cotton Tekko,HQ1: Grass Thread x1,HQ2: Cotton Thread x5,HQ3: Cotton Thread x6,24
|
||||
Cotton Thread x2,Lightning,Linen Slops,HQ1: Cotton Thread x3,HQ2: Linen Thread x6,HQ3: Linen Thread x7,25
|
||||
Grass Thread x1,Lightning,Heko Obi,HQ1: Cotton Thread x4,HQ2: Cotton Thread x5,HQ3: Cotton Thread x6,27
|
||||
Grass Thread x1,Lightning,Cotton Dogi,HQ1: Cotton Thread x7,HQ2: Cotton Thread x8,HQ3: Cotton Thread x9,28
|
||||
Bat Fang x1,Lightning,Fly Lure,HQ1: Chocobo Feather x1,HQ2: Animal Glue x1,29
|
||||
Wool Thread x2,Lightning,Gigas Socks,HQ1: Wool Thread x4,HQ2: Wool Thread x6,HQ3: Wool Thread x8,35
|
||||
Grass Thread x5,Lightning,Hemp Gorget,HQ1: Grass Thread x6,HQ2: Grass Thread x7,HQ3: Grass Thread x8,43
|
||||
Saruta Cotton x2,Lightning,Wool Bracers,HQ1: Wool Thread x5,HQ2: Wool Thread x6,HQ3: Wool Thread x7,46
|
||||
Silk Thread x2,Lightning,Black Cape,HQ1: Silver Thread x1,HQ2: Wool Thread x3,HQ3: Wool Thread x4,54
|
||||
Silk Thread x1,Lightning,Green Ribbon,HQ1: Silk Thread x1,HQ2: Silk Thread x2,HQ3: Silk Thread x3,62
|
||||
Silk Thread x4,Lightning,White Cape,HQ1: Silk Thread x5,HQ2: Silk Thread x6,HQ3: Wool Thread x1,64
|
||||
Saruta Cotton x1,Lightning,White Mitts,HQ1: Silk Thread x4,HQ2: Wool Thread x2,HQ3: Gold Thread x1,64
|
||||
Silver Thread x1,Lightning,Silk Hat,HQ1: Silk Thread x6,65
|
||||
Silk Thread x1,Lightning,Silk Headband,HQ1: Silk Thread x2,HQ2: Silk Thread x3,HQ3: Carbon Fiber x1,69
|
||||
Gold Thread x1,Lightning,Gold Obi,HQ1: Gold Thread x2,70
|
||||
Black Ink x1,Lightning,Black Silk Neckerchief,HQ1: Silk Thread x7,HQ2: Silk Thread x8,HQ3: Silk Thread x9,???
|
||||
Cotton Thread x2,Lightning,Moblin Armor,HQ1: Cotton Thread x4,HQ2: Cotton Thread x6,HQ3: Cotton Thread x8,???
|
||||
Cotton Thread x4,Lightning,Corse Robe,HQ1: Cotton Thread x6,HQ2: Silk Thread x1,HQ3: Gold Thread x1,???
|
||||
Velvet Cloth x2,Wind,Corse Robe,HQ1: Velvet Cloth x3,???
|
||||
Wool Thread x4,Lightning,Wool Cuffs,HQ1: ???,HQ2: ???,HQ3: ???,???
|
||||
Saruta Cotton x2,Lightning,Linen Doublet,HQ1: Saruta Cotton x3,HQ2: Linen Cloth x2,HQ3: ???,???
|
||||
Woodworking
|
||||
Item,Crystal,Ingredients,HQ,Cap
|
||||
Parchment x1,Lightning,Flute,HQ1: Parchment x1,HQ2: Maple Lumber x1,HQ3: Maple Lumber x1,1
|
||||
Lauan Lumber x1,Lightning,Lauan Shield,HQ1: Lauan Lumber x2,7
|
||||
Ash Lumber x1,Lightning,Ash Pole,,8
|
||||
Ash Lumber x1,Lightning,Ash Staff,HQ1: Bat Fang x1,9
|
||||
Ash Lumber x1,Lightning,Ash Club,,9
|
||||
Maple Lumber x1,Lightning,Maple Shield,HQ1: Maple Lumber x2,11
|
||||
Ash Lumber x1,Lightning,Ash Clogs,HQ1: Sheep Leather x1,HQ2: Sheep Leather x?,11
|
||||
Willow Lumber,Lightning,Willow Wand,HQ1:Willow Lumber,HQ2:Willow Lumber,HQ3:Insect Wing,14
|
||||
Bamboo Stick,Lightning,Bamboo Fishing Rod,,15
|
||||
Holly Lumber,Lightning,Holly Staff,,19
|
||||
Linen Thread,Lightning,Yew Fishing Rod,HQ1:Yew Lumber,HQ2:Linen Thread,20
|
||||
Yew Lumber,Lightning,Yew Fishing Rod,HQ1:Linen Thread,HQ2:Yew Lumber,20
|
||||
Parchment,Lightning,Piccolo,HQ1:Parchment,HQ2:Holly Lumber,20
|
||||
Maple Lumber,Lightning,Maple Harp,HQ1:Coeurl Whisker x2,23
|
||||
Yagudo Feather,Lightning,Yew Wand,HQ1:Yew Lumber,23
|
||||
Chestnut Lumber,Lightning,Bouncer Club,,27
|
||||
Elm Lumber,Lightning,Elm Staff,HQ1:Ram Horn,31
|
||||
Elm Lumber,Lightning,Misery Staff,HQ1:Slime Oil,HQ2:Black Pearl,31
|
||||
Chestnut Lumber,Lightning,Chestnut Wand,HQ1:Bird Feather,32
|
||||
Parchment,Lightning,Traversiere,HQ1:Oak Lumber,37
|
||||
Elm Lumber,Lightning,Elm Pole,,46
|
||||
Bronze Ingot,Lightning,Great Club,HQ1:Mahogany Lumber,54
|
||||
Silk Thread,Lightning,Tarutaru Fishing Rod,HQ1:Walnut Lumber,63
|
||||
Silk Thread,Lightning,Clothespole,HQ1:Mahogany Lumber,77
|
||||
Walnut Lumber,Lightning,Battle Staff,HQ1:Walnut Lumber x2,HQ2:Walnut Lumber x4,85
|
||||
Rainbow Thread,Lightning,Mithran Fishing Rod,HQ1:Rattan Lumber,87
|
||||
Walnut Lumber,Lightning,Eight-Sided Pole,HQ1: Walnut Lumber x2,HQ2: Walnut Lumber x6,HQ3: Mythril Nugget x6,94
|
||||
Holly Lumber,Lightning,Hypno Staff,HQ1: Peridot,99
|
||||
@@ -8,8 +8,9 @@ import Typography from "@mui/material/Typography";
|
||||
import InventoryPage from "./pages/Inventory";
|
||||
import ItemExplorerPage from "./pages/ItemExplorer";
|
||||
import RecipesPage from "./pages/Recipes";
|
||||
import DesynthRecipesPage from "./pages/DesynthRecipes";
|
||||
import Footer from "./components/Footer";
|
||||
import { inventoryColor, explorerColor, recipesColor } from "./constants/colors";
|
||||
import { inventoryColor, explorerColor, recipesColor, desynthColor } from "./constants/colors";
|
||||
import MobileNav from "./components/MobileNav";
|
||||
import useMediaQuery from "@mui/material/useMediaQuery";
|
||||
import { useTheme } from "@mui/material/styles";
|
||||
@@ -35,21 +36,23 @@ export default function App() {
|
||||
MOG SQUIRE
|
||||
</Typography>
|
||||
</Box>
|
||||
{!isMobile && (() => {
|
||||
const tabColors = [inventoryColor, explorerColor, recipesColor];
|
||||
const tabLabels = ['Inventory','Item Explorer','Recipes'];
|
||||
{(() => {
|
||||
const tabColors = [inventoryColor, explorerColor, recipesColor, desynthColor];
|
||||
const tabLabels = ['Inventory','Item Explorer','Recipes','Desynth'];
|
||||
return (
|
||||
<Tabs
|
||||
value={page}
|
||||
onChange={(_, v) => setPage(v)}
|
||||
centered
|
||||
variant={isMobile ? 'fullWidth' : 'standard'}
|
||||
centered={!isMobile}
|
||||
sx={isMobile ? { minHeight: 32 } : {}}
|
||||
TabIndicatorProps={{ sx: { backgroundColor: tabColors[page] } }}
|
||||
>
|
||||
{tabLabels.map((label, idx) => (
|
||||
<Tab
|
||||
key={label}
|
||||
label={label}
|
||||
sx={{ color: tabColors[idx], '&.Mui-selected': { color: tabColors[idx] } }}
|
||||
sx={{ color: tabColors[idx], '&.Mui-selected': { color: tabColors[idx] }, minHeight: isMobile ? 32 : 48, fontSize: isMobile ? '0.7rem' : '0.875rem' }}
|
||||
/>
|
||||
))}
|
||||
</Tabs>
|
||||
@@ -67,6 +70,9 @@ export default function App() {
|
||||
{page === 2 && metadata && (
|
||||
<RecipesPage crafts={["woodworking", "smithing", "alchemy", "bonecraft", "goldsmithing", "clothcraft", "leathercraft", "cooking"]} />
|
||||
)}
|
||||
{page === 3 && (
|
||||
<DesynthRecipesPage />
|
||||
)}
|
||||
</Box>
|
||||
</Box>
|
||||
<Footer />
|
||||
|
||||
130
frontend/src/components/ItemDisplay.tsx
Normal file
130
frontend/src/components/ItemDisplay.tsx
Normal file
@@ -0,0 +1,130 @@
|
||||
import React from "react";
|
||||
import Tooltip from "@mui/material/Tooltip";
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
import { applySubstitutions } from "../utils/nameSubstitutions";
|
||||
import { api } from "../api";
|
||||
|
||||
export interface OwnedInfo {
|
||||
qty: number;
|
||||
storages: string[];
|
||||
icon?: string;
|
||||
description?: string;
|
||||
}
|
||||
|
||||
interface ItemDisplayProps {
|
||||
name: string;
|
||||
/** Overrides text shown (defaults to `name`) */
|
||||
displayName?: string;
|
||||
/** Quantity requirement to colour-code */
|
||||
qty?: number;
|
||||
/** Map of owned items keyed by item name */
|
||||
ownedInfo?: Record<string, OwnedInfo>;
|
||||
/** Disable colour highlighting */
|
||||
noHighlight?: boolean;
|
||||
/** Extra label shown in tooltip when description missing (crystal element, etc.) */
|
||||
label?: string;
|
||||
/** Direct item-id look-up instead of name search */
|
||||
itemId?: number;
|
||||
/** When true, skip automatic removal of the word "Crystal" */
|
||||
exactName?: boolean;
|
||||
}
|
||||
|
||||
export default function ItemDisplay({
|
||||
name,
|
||||
displayName,
|
||||
qty,
|
||||
ownedInfo,
|
||||
noHighlight = false,
|
||||
label,
|
||||
itemId,
|
||||
exactName = false,
|
||||
}: ItemDisplayProps) {
|
||||
/* ------------------------------------------------------------------ */
|
||||
/* 1. Local inventory lookup */
|
||||
/* ------------------------------------------------------------------ */
|
||||
const local = ownedInfo?.[name];
|
||||
const ownedQty = local?.qty ?? 0;
|
||||
|
||||
/* ------------------------------------------------------------------ */
|
||||
/* 2. Clean search key */
|
||||
/* ------------------------------------------------------------------ */
|
||||
const baseNameRaw = exactName
|
||||
? name.replace(/ x\d+$/i, "").trim()
|
||||
: name
|
||||
.replace(/ x\d+$/i, "") // strip qty suffix e.g. "Iron Ingot x2"
|
||||
.replace(/\s+Crystal$/i, "") // strip the word "Crystal"
|
||||
.trim();
|
||||
|
||||
const searchName = applySubstitutions(baseNameRaw);
|
||||
|
||||
/* ------------------------------------------------------------------ */
|
||||
/* 3. Remote meta fetch (if not locally available) */
|
||||
/* ------------------------------------------------------------------ */
|
||||
const { data } = useQuery<{ icon_id?: string; icon_b64?: string; description?: string } | null>({
|
||||
queryKey: ["item-meta", itemId ?? searchName],
|
||||
queryFn: async () => {
|
||||
// If inventory already has description/icon, skip remote call
|
||||
if (local?.icon || local?.description) return null;
|
||||
try {
|
||||
const res = await api.get(
|
||||
itemId ? `/items/${itemId}` : `/items/by-name/${encodeURIComponent(searchName)}`
|
||||
);
|
||||
return res.data as { icon_id?: string; icon_b64?: string; description?: string };
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
},
|
||||
staleTime: 1_800_000, // 30m cache
|
||||
});
|
||||
|
||||
/* ------------------------------------------------------------------ */
|
||||
/* 4. Icon & tooltip */
|
||||
/* ------------------------------------------------------------------ */
|
||||
const icon =
|
||||
local?.icon ||
|
||||
(data?.icon_b64
|
||||
? `data:image/png;base64,${data.icon_b64}`
|
||||
: data?.icon_id
|
||||
? `/api/icon/${data.icon_id}`
|
||||
: undefined);
|
||||
|
||||
const desc = local?.description || data?.description;
|
||||
const locs = local ? ` | ${local.storages.join(", ")}` : "";
|
||||
const tooltip = `${desc ?? label ?? displayName ?? name}${locs}`;
|
||||
|
||||
/* ------------------------------------------------------------------ */
|
||||
/* 5. Text colour logic */
|
||||
/* ------------------------------------------------------------------ */
|
||||
const colorStyle: React.CSSProperties = (() => {
|
||||
if (noHighlight) return {};
|
||||
if (qty !== undefined) {
|
||||
if (ownedQty >= qty && qty > 0) return { color: "green" };
|
||||
if (ownedQty > 0 && ownedQty < qty) return { color: "yellow" };
|
||||
}
|
||||
return {};
|
||||
})();
|
||||
|
||||
const wikiUrl = `https://www.bg-wiki.com/ffxi/${encodeURIComponent(baseNameRaw)}`;
|
||||
|
||||
return (
|
||||
<Tooltip title={tooltip} arrow>
|
||||
<a
|
||||
href={wikiUrl}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
style={{ textDecoration: "none", color: "inherit", ...colorStyle }}
|
||||
>
|
||||
{icon && (
|
||||
<img
|
||||
src={icon}
|
||||
alt={searchName}
|
||||
style={{ width: 16, verticalAlign: "text-bottom", marginRight: 4 }}
|
||||
/>
|
||||
)}
|
||||
{qty !== undefined
|
||||
? `${displayName ?? label ?? name} x${qty}`
|
||||
: displayName ?? label ?? name}
|
||||
</a>
|
||||
</Tooltip>
|
||||
);
|
||||
}
|
||||
@@ -10,6 +10,7 @@ export interface GridItem {
|
||||
iconUrl?: string;
|
||||
icon_id?: string;
|
||||
quantity?: number;
|
||||
stack_size?: number;
|
||||
jobs_description?: string[];
|
||||
storages?: string[];
|
||||
storage_type?: string;
|
||||
@@ -25,15 +26,15 @@ interface Props {
|
||||
}
|
||||
|
||||
const IconImg = styled("img")(({ theme }) => ({
|
||||
width: 32,
|
||||
height: 32,
|
||||
[theme.breakpoints.up("sm")]: {
|
||||
width: 40,
|
||||
height: 40,
|
||||
[theme.breakpoints.up("sm")]: {
|
||||
width: 48,
|
||||
height: 48,
|
||||
},
|
||||
[theme.breakpoints.up("md")]: {
|
||||
width: 80,
|
||||
height: 80,
|
||||
width: 64,
|
||||
height: 64,
|
||||
},
|
||||
}));
|
||||
|
||||
@@ -44,7 +45,7 @@ export default function ItemsGrid({ items, onSelect, loading, duplicates, select
|
||||
sx={{
|
||||
position: 'relative',
|
||||
display: "grid",
|
||||
gridTemplateColumns: { xs: 'repeat(4, 1fr)', sm: 'repeat(6, 1fr)', md: 'repeat(8, 1fr)', lg: 'repeat(10, 1fr)' },
|
||||
gridTemplateColumns: { xs: 'repeat(5, 1fr)', sm: 'repeat(6, 1fr)', md: 'repeat(8, 1fr)', lg: 'repeat(10, 1fr)' },
|
||||
gap: 1,
|
||||
p: 1.5,
|
||||
}}
|
||||
@@ -53,8 +54,8 @@ export default function ItemsGrid({ items, onSelect, loading, duplicates, select
|
||||
<Box
|
||||
key={`${item ? item.id : 'placeholder'}-${idx}`}
|
||||
sx={{
|
||||
width: { xs: 100, sm: 100, md: 100 },
|
||||
height: { xs: 100, sm: 100, md: 100 },
|
||||
width: { xs: 72, sm: 88, md: 100 },
|
||||
height: { xs: 72, sm: 88, md: 100 },
|
||||
borderRadius: 1,
|
||||
bgcolor: "background.paper",
|
||||
display: "flex",
|
||||
@@ -77,7 +78,7 @@ export default function ItemsGrid({ items, onSelect, loading, duplicates, select
|
||||
|
||||
|
||||
{loading || !item ? (
|
||||
<Skeleton variant="rectangular" sx={{ width: { xs: 40, sm: 48, md: 56 }, height: { xs: 40, sm: 48, md: 56 } }} />
|
||||
<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}` : ""}`}
|
||||
@@ -85,7 +86,7 @@ export default function ItemsGrid({ items, onSelect, loading, duplicates, select
|
||||
>
|
||||
<Badge
|
||||
badgeContent={item.quantity && item.quantity > 1 ? item.quantity : undefined}
|
||||
color="secondary"
|
||||
color={item.quantity && item.stack_size && item.quantity === item.stack_size ? 'info' : 'secondary'}
|
||||
overlap="circular"
|
||||
>
|
||||
<IconImg src={item.iconUrl} alt={item.name} />
|
||||
|
||||
@@ -7,23 +7,38 @@ import TableCell from "@mui/material/TableCell";
|
||||
import Typography from "@mui/material/Typography";
|
||||
import CircularProgress from "@mui/material/CircularProgress";
|
||||
import Tooltip from "@mui/material/Tooltip";
|
||||
import { applySubstitutions } from "../utils/nameSubstitutions";
|
||||
import type { RecipeDetail } from "../types";
|
||||
import ItemDisplay from "./ItemDisplay";
|
||||
|
||||
interface Props {
|
||||
recipes: RecipeDetail[] | undefined;
|
||||
recipes?: RecipeDetail[];
|
||||
loading?: boolean;
|
||||
owned?: Set<string>;
|
||||
ownedInfo?: Record<string, { storages: string[]; icon?: string; description?: string }>;
|
||||
ownedInfo?: Record<string, { storages: string[]; qty: number; 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; }) {
|
||||
/*
|
||||
interface ItemDisplayProps {
|
||||
name: string;
|
||||
displayName?: string;
|
||||
qty?: number;
|
||||
ownedInfo?: Record<string, { storages: string[]; qty: number; icon?: string; description?: string }>;
|
||||
noHighlight?: boolean;
|
||||
label?: string;
|
||||
itemId?: number;
|
||||
}
|
||||
function ItemDisplay({ name, displayName, qty, ownedInfo, noHighlight=false, label, itemId }: ItemDisplayProps) {
|
||||
const local = ownedInfo?.[name];
|
||||
const { data } = useQuery<{ icon_id?: string; description?: string } | null>({
|
||||
queryKey: ["item-meta", name],
|
||||
const ownedQty = local?.qty ?? 0;
|
||||
const baseName = name;
|
||||
const searchName = applySubstitutions(baseName);
|
||||
const queryName = itemId ? undefined : searchName;
|
||||
const { data } = useQuery<{ icon_id?: string; icon_b64?: string; description?: string } | null>({
|
||||
queryKey: ["item-meta", itemId ?? searchName],
|
||||
queryFn: async () => {
|
||||
if (local) return null;
|
||||
try {
|
||||
const res = await fetch(`/api/items/by-name/${encodeURIComponent(name)}`);
|
||||
const res = await fetch(itemId ? `/api/items/${itemId}` : `/api/items/by-name/${encodeURIComponent(queryName as string)}`);
|
||||
if (!res.ok) return null;
|
||||
return (await res.json()) as { icon_id?: string; description?: string };
|
||||
} catch {
|
||||
@@ -32,12 +47,22 @@ function ItemDisplay({ name, qty, ownedInfo, owned, label }: { name: string; qty
|
||||
},
|
||||
staleTime: 1000 * 60 * 30,
|
||||
});
|
||||
const icon = local?.icon || (data?.icon_id ? `/api/icon/${data.icon_id}` : undefined);
|
||||
const icon = local?.icon || (data?.icon_b64 ? `data:image/png;base64,${data.icon_b64}` : (data?.icon_id ? `/api/icon/${data.icon_id}` : undefined));
|
||||
const desc = local?.description || data?.description;
|
||||
const tooltip = `${desc ?? label ?? name}`;
|
||||
const locs = local ? ` | ${local.storages.join(', ')}` : '';
|
||||
const tooltip = `${desc ?? label ?? displayName ?? name}${locs}`;
|
||||
const wikiUrl = `https://www.bg-wiki.com/ffxi/${encodeURIComponent(name)}`;
|
||||
const colorStyle = (()=>{
|
||||
if(noHighlight) return {};
|
||||
if(qty!==undefined){
|
||||
if(ownedQty>=qty && qty>0) return {color:'green'};
|
||||
if(ownedQty>0 && ownedQty<qty) return {color:'yellow'};
|
||||
}
|
||||
return {};
|
||||
})();
|
||||
return (
|
||||
<Tooltip title={tooltip} arrow>
|
||||
<span style={owned?.has(name) ? { color: "green" } : {}}>
|
||||
<a href={wikiUrl} target="_blank" rel="noopener noreferrer" style={{textDecoration:'none', color:'inherit', ...colorStyle}}>
|
||||
{icon && (
|
||||
<img
|
||||
src={icon}
|
||||
@@ -45,13 +70,14 @@ function ItemDisplay({ name, qty, ownedInfo, owned, label }: { name: string; qty
|
||||
style={{ width: 16, verticalAlign: "text-bottom", marginRight: 4 }}
|
||||
/>
|
||||
)}
|
||||
{qty !== undefined ? `${label ?? name} x${qty}` : (label ?? name)}
|
||||
</span>
|
||||
{qty !== undefined ? `${displayName ?? label ?? name} x${qty}` : (displayName ?? label ?? name)}
|
||||
</a>
|
||||
</Tooltip>
|
||||
);
|
||||
}
|
||||
*/
|
||||
|
||||
export default function RecipesDetailTable({ recipes, loading, owned, ownedInfo }: Props) {
|
||||
export default function RecipesDetailTable({ recipes, loading, ownedInfo }: Props) {
|
||||
if (loading) return <CircularProgress sx={{ m: 2 }} />;
|
||||
if (!recipes || recipes.length === 0)
|
||||
return (
|
||||
@@ -86,12 +112,12 @@ export default function RecipesDetailTable({ recipes, loading, owned, ownedInfo
|
||||
</TableCell>
|
||||
<TableCell>{r.level}</TableCell>
|
||||
<TableCell>
|
||||
<ItemDisplay name={`${r.crystal} Crystal`} label={r.crystal} ownedInfo={ownedInfo} />
|
||||
<ItemDisplay name={`${r.crystal} Crystal`} label={r.crystal} ownedInfo={ownedInfo} exactName={true} />
|
||||
</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} />
|
||||
<span key={idx}>
|
||||
<ItemDisplay name={n} qty={q} ownedInfo={ownedInfo} />
|
||||
{idx < r.ingredients.length - 1 ? ', ' : ''}
|
||||
</span>
|
||||
))}
|
||||
@@ -100,7 +126,7 @@ export default function RecipesDetailTable({ recipes, loading, owned, ownedInfo
|
||||
<TableCell key={idx}>
|
||||
{hq ? (() => {
|
||||
const [n, q] = hq;
|
||||
return <ItemDisplay name={n} qty={q} ownedInfo={ownedInfo} owned={owned} />
|
||||
return <ItemDisplay name={n} qty={q} ownedInfo={ownedInfo} noHighlight={true} />
|
||||
})() : "—"}
|
||||
</TableCell>
|
||||
))}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
export const inventoryColor = '#66bb6a';
|
||||
export const explorerColor = '#42a5f5';
|
||||
export const recipesColor = '#ffa726';
|
||||
export const desynthColor = '#26c6da'; // cyan for desynthesis
|
||||
|
||||
export const craftColors: Record<string, string> = {
|
||||
woodworking: '#ad7e50', // Woodworking – warm earthy brown
|
||||
|
||||
166
frontend/src/pages/DesynthRecipes.tsx
Normal file
166
frontend/src/pages/DesynthRecipes.tsx
Normal file
@@ -0,0 +1,166 @@
|
||||
import { useMemo, useState } from "react";
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
import Box from "@mui/material/Box";
|
||||
import CircularProgress from "@mui/material/CircularProgress";
|
||||
import Table from "@mui/material/Table";
|
||||
import TableBody from "@mui/material/TableBody";
|
||||
import TableCell from "@mui/material/TableCell";
|
||||
import TableHead from "@mui/material/TableHead";
|
||||
import TableRow from "@mui/material/TableRow";
|
||||
import Typography from "@mui/material/Typography";
|
||||
import ToggleButton from "@mui/material/ToggleButton";
|
||||
import ToggleButtonGroup from "@mui/material/ToggleButtonGroup";
|
||||
import Tabs from "@mui/material/Tabs";
|
||||
import Tab from "@mui/material/Tab";
|
||||
import { craftColors } from "../constants/colors";
|
||||
import { api } from "../api";
|
||||
import { desynthColor } from "../constants/colors";
|
||||
import ItemDisplay from "../components/ItemDisplay";
|
||||
|
||||
interface DesynthRecipe {
|
||||
id: number;
|
||||
craft: string;
|
||||
cap?: number | null;
|
||||
item: string;
|
||||
crystal: string;
|
||||
ingredients: string;
|
||||
hq1?: string | null;
|
||||
hq2?: string | null;
|
||||
hq3?: string | null;
|
||||
}
|
||||
|
||||
export default function DesynthRecipesPage() {
|
||||
const [filter, setFilter] = useState<'all' | 'partial' | 'full'>('all');
|
||||
const [craftIdx, setCraftIdx] = useState(0);
|
||||
|
||||
// inventory owned for default character
|
||||
const { data: inv } = useQuery({
|
||||
queryKey: ["inventory", "Rynore"],
|
||||
queryFn: async () => {
|
||||
const { data } = await api.get(`/inventory/Rynore`);
|
||||
return data as { item_name: string; quantity: number; storage_type: string }[];
|
||||
},
|
||||
});
|
||||
const ownedInfoMap = useMemo(() => {
|
||||
const map: Record<string, { qty: number; storages: string[] }> = {};
|
||||
inv?.forEach((i) => {
|
||||
if (!map[i.item_name]) map[i.item_name] = { qty: 0, storages: [] };
|
||||
map[i.item_name].qty += i.quantity;
|
||||
if (!map[i.item_name].storages.includes(i.storage_type)) {
|
||||
map[i.item_name].storages.push(i.storage_type);
|
||||
}
|
||||
});
|
||||
return map;
|
||||
}, [inv]);
|
||||
|
||||
const { data, isLoading } = useQuery({
|
||||
queryKey: ["desynth-recipes"],
|
||||
queryFn: async () => {
|
||||
const { data } = await api.get(`/recipes/desynthesis`);
|
||||
return data as DesynthRecipe[];
|
||||
},
|
||||
});
|
||||
|
||||
const crafts = useMemo(()=> {
|
||||
if(!data) return [] as string[];
|
||||
return Array.from(new Set(data.map(r=>r.craft))).sort();
|
||||
}, [data]);
|
||||
const currentCraft = crafts[craftIdx];
|
||||
|
||||
const filtered = useMemo(() => {
|
||||
if (!data) return [] as DesynthRecipe[];
|
||||
let arr = data;
|
||||
if(currentCraft) arr = arr.filter(r=>r.craft === currentCraft);
|
||||
if (filter === 'all') return arr;
|
||||
const hasAllIngredients = (recipe: DesynthRecipe) => {
|
||||
return recipe.ingredients.split(',').every((raw) => {
|
||||
const trimmed = raw.trim();
|
||||
const match = trimmed.match(/^(.*?)(?:\s+x(\d+))?$/i);
|
||||
const baseName = match?.[1]?.trim() ?? trimmed;
|
||||
const qtyNeeded = match?.[2] ? parseInt(match[2]) : 1;
|
||||
const qtyOwned = ownedInfoMap[baseName]?.qty ?? 0;
|
||||
return qtyOwned >= qtyNeeded;
|
||||
});
|
||||
};
|
||||
|
||||
const ownsAnyIngredient = (recipe: DesynthRecipe) => {
|
||||
return recipe.ingredients.split(',').some((raw) => {
|
||||
const baseName = raw.trim().replace(/\s+x\d+$/i, '').trim();
|
||||
return (ownedInfoMap[baseName]?.qty ?? 0) > 0;
|
||||
});
|
||||
};
|
||||
|
||||
return arr.filter((r) => {
|
||||
if (filter === 'full') return hasAllIngredients(r);
|
||||
if (filter === 'partial') return ownsAnyIngredient(r) && !hasAllIngredients(r);
|
||||
return true;
|
||||
});
|
||||
}, [data, filter, ownedInfoMap, currentCraft]);
|
||||
|
||||
return (
|
||||
<Box sx={{ mt: 2 }}>
|
||||
<Box sx={{ display: 'flex', justifyContent: 'space-between', mb: 1 }}>
|
||||
<Typography variant="h6" sx={{ color: desynthColor, fontWeight: 'bold' }}>
|
||||
Desynthesis Recipes
|
||||
</Typography>
|
||||
<ToggleButtonGroup size="small" value={filter} exclusive onChange={(_, v) => v && setFilter(v)}>
|
||||
<ToggleButton value="all">All</ToggleButton>
|
||||
<ToggleButton value="full">Owned</ToggleButton>
|
||||
</ToggleButtonGroup>
|
||||
</Box>
|
||||
{isLoading && <CircularProgress sx={{ m: 2 }} />}
|
||||
{!isLoading && (
|
||||
<>
|
||||
{/* Craft tabs */}
|
||||
{crafts.length>1 && (
|
||||
<Tabs
|
||||
value={craftIdx}
|
||||
onChange={(_,v)=>setCraftIdx(v)}
|
||||
variant="scrollable"
|
||||
TabIndicatorProps={{ sx:{ backgroundColor: craftColors[currentCraft] || desynthColor } }}
|
||||
sx={{ mb:1, bgcolor:'background.paper' }}
|
||||
>
|
||||
{crafts.map((c,idx)=> (
|
||||
<Tab key={c} label={c} sx={{ color: craftColors[c] || desynthColor,'&.Mui-selected':{color: craftColors[c] || desynthColor} }} />
|
||||
))}
|
||||
</Tabs>
|
||||
)}
|
||||
<Table size="small">
|
||||
<TableHead>
|
||||
<TableRow>
|
||||
<TableCell>Item</TableCell>
|
||||
<TableCell>Skill Cap</TableCell>
|
||||
<TableCell>Crystal</TableCell>
|
||||
<TableCell>Ingredients</TableCell>
|
||||
<TableCell>HQ1</TableCell>
|
||||
<TableCell>HQ2</TableCell>
|
||||
<TableCell>HQ3</TableCell>
|
||||
</TableRow>
|
||||
</TableHead>
|
||||
<TableBody>
|
||||
{filtered.sort((a,b)=>(a.cap??999)-(b.cap??999)).map((r) => (
|
||||
<TableRow key={r.id}>
|
||||
<TableCell><ItemDisplay name={r.item} ownedInfo={ownedInfoMap} /></TableCell>
|
||||
<TableCell>{r.cap ?? '-'}</TableCell>
|
||||
<TableCell><ItemDisplay name={`${r.crystal} Crystal`} displayName={r.crystal} exactName={true} ownedInfo={{}} noHighlight label={r.crystal} /></TableCell>
|
||||
<TableCell>
|
||||
{r.ingredients.split(',').map((ing,idx)=>{
|
||||
const trimmed = ing.trim();
|
||||
const match = trimmed.match(/^(.*?)(?:\s+x(\d+))?$/i);
|
||||
const baseName = match?.[1]?.trim() ?? trimmed;
|
||||
const qtyNeeded = match?.[2] ? parseInt(match[2]) : 1;
|
||||
return <span key={idx}><ItemDisplay name={baseName} qty={qtyNeeded} ownedInfo={ownedInfoMap} />{idx< r.ingredients.split(',').length-1?', ':''}</span>
|
||||
})}
|
||||
</TableCell>
|
||||
<TableCell>{r.hq1? <ItemDisplay name={r.hq1} ownedInfo={{}} noHighlight /> : '—'}</TableCell>
|
||||
<TableCell>{r.hq2? <ItemDisplay name={r.hq2} ownedInfo={{}} noHighlight /> : '—'}</TableCell>
|
||||
<TableCell>{r.hq3? <ItemDisplay name={r.hq3} ownedInfo={{}} noHighlight /> : '—'}</TableCell>
|
||||
</TableRow>
|
||||
))}
|
||||
</TableBody>
|
||||
</Table>
|
||||
</>
|
||||
)}
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
@@ -25,6 +25,11 @@ import noIcon from "../icons/no-icon.png";
|
||||
import blankIcon from "../icons/blank.png";
|
||||
import { inventoryColor } from "../constants/colors";
|
||||
import Button from "@mui/material/Button";
|
||||
import Table from "@mui/material/Table";
|
||||
import TableHead from "@mui/material/TableHead";
|
||||
import TableRow from "@mui/material/TableRow";
|
||||
import TableCell from "@mui/material/TableCell";
|
||||
import TableBody from "@mui/material/TableBody";
|
||||
import UploadFileIcon from "@mui/icons-material/UploadFile";
|
||||
import { useMutation, useQueryClient } from "@tanstack/react-query";
|
||||
import { importInventoryCsv } from "../api";
|
||||
@@ -35,27 +40,62 @@ interface Props {
|
||||
character?: string;
|
||||
}
|
||||
|
||||
const STORAGE_ORDER = [
|
||||
"inventory",
|
||||
"safe",
|
||||
"safe 2",
|
||||
"storage",
|
||||
"locker",
|
||||
"satchel",
|
||||
"sack",
|
||||
"case",
|
||||
"wardrobe", // wardrobe 1 treated as base label
|
||||
];
|
||||
|
||||
function displayLabel(type: string): string {
|
||||
const canon = type.toLowerCase();
|
||||
if (canon === "inventory") return "Backpack";
|
||||
if (canon.startsWith("wardrobe")) {
|
||||
// ensure space before number if missing
|
||||
return type.replace(/wardrobe\s*/i, "Wardrobe ").replace(/\s+/g, " ").trim();
|
||||
}
|
||||
// Capitalise first letter each word
|
||||
return type.replace(/\b\w/g, (ch) => ch.toUpperCase());
|
||||
}
|
||||
|
||||
function orderIndex(type: string): number {
|
||||
const canon = type.toLowerCase();
|
||||
const idx = STORAGE_ORDER.findIndex((o) => canon.startsWith(o));
|
||||
return idx === -1 ? 999 : idx;
|
||||
}
|
||||
|
||||
export default function InventoryPage({ storageTypes, character = "Rynore" }: Props) {
|
||||
const orderedTypes = useMemo(() => {
|
||||
return [...storageTypes].sort((a, b) => orderIndex(a) - orderIndex(b));
|
||||
}, [storageTypes]);
|
||||
|
||||
// Build full tab label list (storage tabs + Duplicates + optional Search)
|
||||
const baseTabLabels = useMemo(() => [...orderedTypes, "Duplicates"], [orderedTypes]);
|
||||
const [tab, setTab] = useState<number>(0);
|
||||
const [sortKey, setSortKey] = useState<'slot' | 'name' | 'type'>('slot');
|
||||
const prevTabRef = useRef<number>(0);
|
||||
|
||||
// Adjust default selection to "Inventory" once storageTypes are available
|
||||
useEffect(() => {
|
||||
const idx = storageTypes.indexOf("Inventory");
|
||||
const idx = orderedTypes.indexOf("Inventory");
|
||||
if (idx >= 0) {
|
||||
setTab(idx);
|
||||
}
|
||||
}, [storageTypes]);
|
||||
|
||||
|
||||
|
||||
}, [orderedTypes]);
|
||||
|
||||
const [selected, setSelected] = useState<GridItem | null>(null);
|
||||
const [search, setSearch] = useState("");
|
||||
const debouncedSearch = useDebounce(search, 300);
|
||||
const searchMode = debouncedSearch.trim() !== "";
|
||||
const searchTabIndex = storageTypes.length;
|
||||
const searchTabIndex = baseTabLabels.length + (searchMode ? 0 : 0); // will push later
|
||||
const tabLabels = useMemo(() => {
|
||||
return searchMode ? [...baseTabLabels, "Search"] : baseTabLabels;
|
||||
}, [baseTabLabels, searchMode]);
|
||||
|
||||
// Switch automatically to the search tab when a query is entered
|
||||
useEffect(() => {
|
||||
@@ -71,8 +111,7 @@ export default function InventoryPage({ storageTypes, character = "Rynore" }: Pr
|
||||
}
|
||||
}, [searchMode, searchTabIndex]);
|
||||
|
||||
|
||||
const currentType = tab === searchTabIndex ? undefined : storageTypes[tab];
|
||||
const currentType = tab < orderedTypes.length ? orderedTypes[tab] : undefined;
|
||||
|
||||
// Clear selected item when tab changes
|
||||
useEffect(()=> setSelected(null), [currentType]);
|
||||
@@ -147,6 +186,7 @@ export default function InventoryPage({ storageTypes, character = "Rynore" }: Pr
|
||||
storage_type: (row as any).storage_type,
|
||||
name: row.item_name,
|
||||
quantity: 'quantity' in row ? (row as any).quantity : undefined,
|
||||
stack_size: (row as any).stack_size,
|
||||
iconUrl: (row as any).icon_id
|
||||
? `/api/icon/${(row as any).icon_id}`
|
||||
: (() => {
|
||||
@@ -202,10 +242,9 @@ export default function InventoryPage({ storageTypes, character = "Rynore" }: Pr
|
||||
value={tab}
|
||||
onChange={(e)=>setTab(e.target.value as number)}
|
||||
>
|
||||
{storageTypes.map((s,idx)=> (
|
||||
<MenuItem key={s} value={idx}>{s.toUpperCase()}</MenuItem>
|
||||
{tabLabels.map((label, idx) => (
|
||||
<MenuItem key={label} value={idx}>{label.toUpperCase()}</MenuItem>
|
||||
))}
|
||||
{searchMode && <MenuItem value={searchTabIndex}>Search</MenuItem>}
|
||||
</Select>
|
||||
</FormControl>
|
||||
) : (() => {
|
||||
@@ -218,10 +257,9 @@ export default function InventoryPage({ storageTypes, character = "Rynore" }: Pr
|
||||
TabIndicatorProps={{ sx:{ backgroundColor:inventoryColor } }}
|
||||
sx={{ bgcolor:'background.paper' }}
|
||||
>
|
||||
{storageTypes.map((s,idx)=>(
|
||||
<Tab key={s} label={s} sx={{ color:inventoryColor,'&.Mui-selected':{color:inventoryColor} }} />
|
||||
{tabLabels.map((label) => (
|
||||
<Tab key={label} label={displayLabel(label)} sx={{ color:inventoryColor,'&.Mui-selected':{color:inventoryColor} }} />
|
||||
))}
|
||||
{searchMode && <Tab label="Search" sx={{ color:'#90a4ae','&.Mui-selected':{color:'#90a4ae'} }} />}
|
||||
</Tabs>
|
||||
);
|
||||
})()}
|
||||
@@ -275,8 +313,46 @@ export default function InventoryPage({ storageTypes, character = "Rynore" }: Pr
|
||||
</Box>
|
||||
|
||||
|
||||
{isLoading && <CircularProgress sx={{ m: 2 }} />}
|
||||
{(() => {
|
||||
const isDup = tabLabels[tab] === "Duplicates";
|
||||
if (isDup) {
|
||||
if (!allInv) return <CircularProgress sx={{ m:2 }} />;
|
||||
const dupMap: Record<string, { qty: number; storages: {type:string; qty:number}[] }> = {};
|
||||
(allInv as any[]).forEach((row:any) => {
|
||||
const name = row.item_name;
|
||||
dupMap[name] ??= { qty: 0, storages: [] };
|
||||
dupMap[name].qty += row.quantity ?? 0;
|
||||
const bucket = dupMap[name].storages.find(s=>s.type===row.storage_type);
|
||||
if(bucket){ bucket.qty += row.quantity ?? 0; }
|
||||
else { dupMap[name].storages.push({ type: row.storage_type, qty: row.quantity ?? 0 }); }
|
||||
});
|
||||
const rows = Object.entries(dupMap).filter(([_,v])=>v.storages.length>1).sort(([a],[b])=>a.localeCompare(b));
|
||||
return (
|
||||
<Table size="small" sx={{ mt:2 }}>
|
||||
<TableHead>
|
||||
<TableRow>
|
||||
<TableCell>Item</TableCell>
|
||||
<TableCell>Total Qty</TableCell>
|
||||
<TableCell>Storages</TableCell>
|
||||
</TableRow>
|
||||
</TableHead>
|
||||
<TableBody>
|
||||
{rows.map(([name,info])=> (
|
||||
<TableRow key={name}>
|
||||
<TableCell>{name}</TableCell>
|
||||
<TableCell>{info.qty}</TableCell>
|
||||
<TableCell>{info.storages.map(s=>`${displayLabel(s.type)} (${s.qty})`).join(', ')}</TableCell>
|
||||
</TableRow>
|
||||
))}
|
||||
</TableBody>
|
||||
</Table>
|
||||
);
|
||||
}
|
||||
|
||||
// Normal grid view
|
||||
return (
|
||||
<>
|
||||
{isLoading && <CircularProgress sx={{ m: 2 }} />}
|
||||
<ItemsGrid
|
||||
key={tab}
|
||||
items={isLoading ? undefined : gridItems}
|
||||
@@ -285,12 +361,14 @@ export default function InventoryPage({ storageTypes, character = "Rynore" }: Pr
|
||||
duplicates={duplicates}
|
||||
selectedId={selected?.id}
|
||||
/>
|
||||
|
||||
<ItemDetailPanel
|
||||
open={!!selected}
|
||||
item={selected}
|
||||
onClose={() => setSelected(null)}
|
||||
/>
|
||||
</>
|
||||
);
|
||||
})()}
|
||||
|
||||
<Snackbar
|
||||
open={snack.open}
|
||||
|
||||
@@ -30,14 +30,15 @@ export default function RecipesPage({ crafts }: Props) {
|
||||
return data as { item_name: string }[];
|
||||
},
|
||||
});
|
||||
type InvItem = { item_name: string; storage_type: string; icon_id?: string; description?: string };
|
||||
type InvItem = { item_name: string; quantity: number; storage_type: string; icon_id?: string; description?: string };
|
||||
const ownedInfo = useMemo(() => {
|
||||
const map: Record<string, { storages: string[]; icon?: string; description?: string }> = {};
|
||||
const map: Record<string, { storages: string[]; qty: number; 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: [], qty: 0, icon: undefined, description: i.description };
|
||||
}
|
||||
map[i.item_name].storages.push(i.storage_type.toUpperCase());
|
||||
map[i.item_name].qty += i.quantity;
|
||||
if (i.icon_id) {
|
||||
map[i.item_name].icon = `/api/icon/${i.icon_id}`;
|
||||
}
|
||||
@@ -100,13 +101,20 @@ export default function RecipesPage({ crafts }: Props) {
|
||||
if (filter === 'all') return catFiltered;
|
||||
return catFiltered.filter((r) => {
|
||||
const total = r.ingredients.length;
|
||||
const ownedCount = r.ingredients.reduce(
|
||||
(acc, [name]) => acc + (ownedSet.has(name) ? 1 : 0),
|
||||
0
|
||||
);
|
||||
if (filter === 'full') return ownedCount === total && total > 0;
|
||||
let sufficient = 0;
|
||||
let some = 0;
|
||||
for (const [name, reqQty] of r.ingredients) {
|
||||
const info = ownedInfo[name];
|
||||
if (info) {
|
||||
if (info.qty >= reqQty) {
|
||||
sufficient += 1; // green
|
||||
}
|
||||
if (info.qty > 0) some += 1; // any amount
|
||||
}
|
||||
}
|
||||
if (filter === 'full') return sufficient === total && total > 0;
|
||||
if (filter === 'partial')
|
||||
return ownedCount > 0 && ownedCount < total;
|
||||
return some > 0 && sufficient < total;
|
||||
return true;
|
||||
});
|
||||
}, [catFiltered, filter, ownedSet]);
|
||||
@@ -162,7 +170,7 @@ export default function RecipesPage({ crafts }: Props) {
|
||||
{isLoading ? (
|
||||
<CircularProgress sx={{ m: 2 }} />
|
||||
) : (
|
||||
<RecipesDetailTable recipes={filtered} owned={ownedSet} ownedInfo={ownedInfo} />
|
||||
<RecipesDetailTable recipes={filtered} ownedInfo={ownedInfo} />
|
||||
)}
|
||||
</Box>
|
||||
);
|
||||
|
||||
34
frontend/src/utils/nameSubstitutions.ts
Normal file
34
frontend/src/utils/nameSubstitutions.ts
Normal file
@@ -0,0 +1,34 @@
|
||||
// Utility for applying custom string substitutions before fetching item metadata.
|
||||
// The mapping is kept in a simple array so it can be edited in one place.
|
||||
// The first entry that matches (case-sensitive) will be applied.
|
||||
// Extend this list as needed.
|
||||
|
||||
export const SUBSTITUTE_MAP: Array<[string, string]> = [
|
||||
// [searchFor, replaceWith]
|
||||
["Lightning", "Lightng."],
|
||||
["Woodworking Kit", "Wood. Kit"],
|
||||
["Arrowwood Lumber","Arrowwood Lbr."],
|
||||
["Banquet Table ", "B. Table "],
|
||||
["Copy of Melodious Plans", "Melodious Plans"],
|
||||
["Fishing Rod", "Fish. Rod"],
|
||||
["Black Bubble-Eye", "Blk. Bubble-Eye"],
|
||||
["Broken","Bkn."],
|
||||
["Bewitched","Bwtch."],
|
||||
["Dogwood Lumber","Dogwd. Lumber"],
|
||||
["Fishing Rod","Fish. Rod"],
|
||||
["Black Bolt Heads","Blk. Bolt HeadsBlk. Bolt Heads"],
|
||||
["Ethereal Oak Lumber","Ether. Oak Lbr."],
|
||||
|
||||
|
||||
// add more substitutions here
|
||||
];
|
||||
|
||||
export function applySubstitutions(name: string): string {
|
||||
let result = name;
|
||||
for (const [from, to] of SUBSTITUTE_MAP) {
|
||||
if (result.includes(from)) {
|
||||
result = result.replace(from, to);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
78
scripts/convert_hq_entries.py
Normal file
78
scripts/convert_hq_entries.py
Normal file
@@ -0,0 +1,78 @@
|
||||
import json
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
def convert_hq_entries(csv_path: Path, backup: bool = True) -> None:
|
||||
"""Convert HQ1:,HQ2:,HQ3: columns in the desynthesis recipes CSV into a
|
||||
single JSON-like dictionary string stored in the HQ column.
|
||||
|
||||
The CSV currently looks like::
|
||||
Item,Crystal,Ingredients,HQ,Cap
|
||||
Distilled Water x3,Lightning,Tahrongi Cactus,HQ1: Distilled Water x6,HQ2: Distilled Water x9,HQ3: Distilled Waterx12,2
|
||||
|
||||
After conversion it will be::
|
||||
Distilled Water x3,Lightning,Tahrongi Cactus,{"HQ1":"Distilled Water x6","HQ2":"Distilled Water x9","HQ3":"Distilled Waterx12"},2
|
||||
"""
|
||||
csv_path = Path(csv_path)
|
||||
if not csv_path.exists():
|
||||
raise FileNotFoundError(csv_path)
|
||||
|
||||
text = csv_path.read_text(encoding="utf-8").splitlines()
|
||||
output_lines = []
|
||||
|
||||
for line in text:
|
||||
# Keep skill category lines (e.g., "Alchemy") unchanged.
|
||||
if "," not in line:
|
||||
output_lines.append(line)
|
||||
continue
|
||||
|
||||
parts = [p.strip() for p in line.split(",")]
|
||||
|
||||
# The header line already has correct length (5).
|
||||
if parts[:5] == ["Item", "Crystal", "Ingredients", "HQ", "Cap"]:
|
||||
output_lines.append(",".join(parts))
|
||||
continue
|
||||
|
||||
# If this row already has 5 columns, leave as-is.
|
||||
if len(parts) <= 5:
|
||||
output_lines.append(",".join(parts))
|
||||
continue
|
||||
|
||||
# Otherwise consolidate HQ columns.
|
||||
item, crystal, ingredients = parts[:3]
|
||||
cap = parts[-1]
|
||||
hq_parts = parts[3:-1]
|
||||
|
||||
hq_dict = {}
|
||||
unnamed_counter = 1
|
||||
for h in hq_parts:
|
||||
h = h.strip()
|
||||
if not h:
|
||||
continue
|
||||
if ":" in h:
|
||||
key, value = h.split(":", 1)
|
||||
hq_dict[key.strip()] = value.strip()
|
||||
else:
|
||||
# Handle unlabeled HQ values by assigning sequential keys.
|
||||
key = f"HQ{unnamed_counter}"
|
||||
unnamed_counter += 1
|
||||
hq_dict[key] = h
|
||||
|
||||
# Build dictionary string with spaces after commas to match example formatting.
|
||||
hq_json_readable = "{" + ",".join([f'"{k}": "{v}"' if "\"" not in v else f'"{k}": {json.dumps(v)}' for k, v in hq_dict.items()]) + "}"
|
||||
|
||||
new_line = ",".join([item, crystal, ingredients, hq_json_readable, cap])
|
||||
output_lines.append(new_line)
|
||||
|
||||
# Backup original file.
|
||||
if backup:
|
||||
backup_path = csv_path.with_suffix(csv_path.suffix + ".bak")
|
||||
if not backup_path.exists():
|
||||
backup_path.write_text("\n".join(text), encoding="utf-8")
|
||||
|
||||
csv_path.write_text("\n".join(output_lines) + "\n", encoding="utf-8")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
target = Path(__file__).resolve().parents[1] / "datasets" / "desythesis_recipes.csv"
|
||||
convert_hq_entries(target)
|
||||
207
scripts/load_desynth_recipes_to_db.py
Normal file
207
scripts/load_desynth_recipes_to_db.py
Normal file
@@ -0,0 +1,207 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Load datasets/desythesis_recipes.csv into PostgreSQL.
|
||||
|
||||
This script parses the *desynthesis* recipe CSV which is structured slightly
|
||||
differently from the v2 crafting CSVs. Recipes are grouped under craft
|
||||
headings (e.g. "Alchemy", "Smithing"), followed by a header row.
|
||||
|
||||
Recent edits mean each recipe row now lists **multiple HQ columns (HQ1, HQ2, HQ3)**
|
||||
_directly_ in the CSV instead of a single JSON cell. A typical section now looks
|
||||
like::
|
||||
|
||||
Alchemy
|
||||
Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap
|
||||
Distilled Water x3,Lightning,Tahrongi Cactus,HQ1: Distilled Water x6,HQ2: Distilled Water x9,HQ3: Distilled Water x12,2
|
||||
|
||||
Some legacy sections may still use the shorter header ``Item,Crystal,Ingredients,HQ,Cap``
|
||||
with the HQ values spread across several columns. Pragmatically we treat **all
|
||||
columns between ``Ingredients`` and the final ``Cap`` column as HQ fields** and
|
||||
extract at most three of them (hq1-3) for insertion into Postgres.
|
||||
|
||||
The resulting database table schema is::
|
||||
|
||||
CREATE TABLE recipes_desynthesis (
|
||||
id SERIAL PRIMARY KEY,
|
||||
craft TEXT NOT NULL,
|
||||
cap INT,
|
||||
item TEXT NOT NULL,
|
||||
crystal TEXT NOT NULL,
|
||||
ingredients TEXT NOT NULL,
|
||||
hq1 TEXT,
|
||||
hq2 TEXT,
|
||||
hq3 TEXT
|
||||
);
|
||||
|
||||
Run:
|
||||
python scripts/load_desynth_recipes_to_db.py
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
import asyncio
|
||||
import csv
|
||||
import json
|
||||
import pathlib
|
||||
import re
|
||||
from typing import Dict, List, Tuple, Optional
|
||||
|
||||
import asyncpg
|
||||
|
||||
PROJECT_ROOT = pathlib.Path(__file__).resolve().parents[1]
|
||||
CONF_PATH = PROJECT_ROOT / "db.conf"
|
||||
CSV_PATH = PROJECT_ROOT / "datasets" / "desythesis_recipes.csv"
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Helpers
|
||||
# ---------------------------------------------------------------------------
|
||||
RE_CONF = re.compile(r"^([A-Z0-9_]+)=(.*)$")
|
||||
|
||||
|
||||
def parse_db_conf(path: pathlib.Path) -> Dict[str, str]:
|
||||
"""Simple KEY=VALUE parser (quotes stripped)."""
|
||||
if not path.exists():
|
||||
raise FileNotFoundError("db.conf not found")
|
||||
conf: Dict[str, str] = {}
|
||||
for line in path.read_text().splitlines():
|
||||
line = line.strip()
|
||||
if not line or line.startswith("#"):
|
||||
continue
|
||||
m = RE_CONF.match(line)
|
||||
if m:
|
||||
k, v = m.group(1), m.group(2).strip().strip("'\"")
|
||||
conf[k] = v
|
||||
required = {"PSQL_HOST", "PSQL_PORT", "PSQL_USER", "PSQL_PASSWORD", "PSQL_DBNAME"}
|
||||
missing = required - conf.keys()
|
||||
if missing:
|
||||
raise RuntimeError(f"Missing keys in db.conf: {', '.join(sorted(missing))}")
|
||||
return conf
|
||||
|
||||
|
||||
def parse_csv(csv_path: pathlib.Path) -> List[Tuple[str, Optional[int], str, str, str, Optional[str], Optional[str], Optional[str]]]:
|
||||
"""Parse the *desythesis_recipes.csv* file and return rows for COPY.
|
||||
|
||||
The parser is tolerant of the two currently-seen layouts:
|
||||
|
||||
1. ``Item,Crystal,Ingredients,HQ1,HQ2,HQ3,Cap``
|
||||
2. ``Item,Crystal,Ingredients,HQ,Cap`` (legacy header but still multiple HQ
|
||||
columns in the data rows).
|
||||
|
||||
The strategy is therefore:
|
||||
• first three columns are *always* Item, Crystal, Ingredients.
|
||||
• *last* column is CAP.
|
||||
• everything between is treated as HQ fields – the first three of those
|
||||
(if present) are saved as hq1-3.
|
||||
"""
|
||||
|
||||
rows: List[Tuple[str, Optional[int], str, str, str, Optional[str], Optional[str], Optional[str]]] = []
|
||||
current_craft: Optional[str] = None
|
||||
|
||||
with csv_path.open(newline="", encoding="utf-8") as fh:
|
||||
reader = csv.reader(fh)
|
||||
for raw in reader:
|
||||
# ------------------------------------------------------------------
|
||||
# Detect craft headings (single-cell rows, e.g. "Alchemy")
|
||||
# ------------------------------------------------------------------
|
||||
if len(raw) == 1:
|
||||
current_craft = raw[0].strip()
|
||||
continue
|
||||
|
||||
# Skip blank lines or header rows
|
||||
if not raw or raw[0].strip().startswith("Item") or current_craft is None:
|
||||
continue
|
||||
|
||||
if len(raw) < 4:
|
||||
# Not enough columns for a valid recipe – skip
|
||||
continue
|
||||
|
||||
# Standard columns
|
||||
item = raw[0].strip()
|
||||
crystal = raw[1].strip()
|
||||
ingredients = raw[2].strip()
|
||||
|
||||
# CAP is *always* the final column
|
||||
cap_raw = raw[-1].strip()
|
||||
try:
|
||||
cap = int(cap_raw) if cap_raw.isdigit() else None
|
||||
except ValueError:
|
||||
cap = None
|
||||
|
||||
# HQ columns: everything between ingredients and cap
|
||||
hq_columns = [c.strip() for c in raw[3:-1]]
|
||||
hq1 = hq_columns[0] if len(hq_columns) > 0 and hq_columns[0] else None
|
||||
hq2 = hq_columns[1] if len(hq_columns) > 1 and hq_columns[1] else None
|
||||
hq3 = hq_columns[2] if len(hq_columns) > 2 and hq_columns[2] else None
|
||||
|
||||
# Clean prefixes like "HQ1: "
|
||||
def _clean(hq_val: Optional[str]) -> Optional[str]:
|
||||
if hq_val and ":" in hq_val:
|
||||
return hq_val.split(":", 1)[1].strip()
|
||||
return hq_val
|
||||
|
||||
hq1, hq2, hq3 = map(_clean, (hq1, hq2, hq3))
|
||||
|
||||
rows.append((current_craft, cap, item, crystal, ingredients, hq1, hq2, hq3))
|
||||
|
||||
return rows
|
||||
|
||||
|
||||
async def recreate_table(conn: asyncpg.Connection) -> None:
|
||||
await conn.execute(
|
||||
"""
|
||||
DROP TABLE IF EXISTS recipes_desynthesis;
|
||||
CREATE TABLE recipes_desynthesis (
|
||||
id SERIAL PRIMARY KEY,
|
||||
craft TEXT NOT NULL,
|
||||
cap INT,
|
||||
item TEXT NOT NULL,
|
||||
crystal TEXT NOT NULL,
|
||||
ingredients TEXT NOT NULL,
|
||||
hq1 TEXT,
|
||||
hq2 TEXT,
|
||||
hq3 TEXT
|
||||
);
|
||||
"""
|
||||
)
|
||||
|
||||
|
||||
async def copy_rows(conn: asyncpg.Connection, rows):
|
||||
await conn.copy_records_to_table(
|
||||
"recipes_desynthesis",
|
||||
records=rows,
|
||||
columns=[
|
||||
"craft",
|
||||
"cap",
|
||||
"item",
|
||||
"crystal",
|
||||
"ingredients",
|
||||
"hq1",
|
||||
"hq2",
|
||||
"hq3",
|
||||
],
|
||||
)
|
||||
|
||||
|
||||
async def main() -> None:
|
||||
if not CSV_PATH.exists():
|
||||
raise SystemExit("CSV file not found – run conversion first")
|
||||
|
||||
conf = parse_db_conf(CONF_PATH)
|
||||
rows = parse_csv(CSV_PATH)
|
||||
print(f"Parsed {len(rows)} recipes from CSV.")
|
||||
|
||||
conn = await asyncpg.connect(
|
||||
host=conf["PSQL_HOST"],
|
||||
port=int(conf["PSQL_PORT"]),
|
||||
user=conf["PSQL_USER"],
|
||||
password=conf["PSQL_PASSWORD"],
|
||||
database=conf["PSQL_DBNAME"],
|
||||
)
|
||||
try:
|
||||
await recreate_table(conn)
|
||||
await copy_rows(conn, rows)
|
||||
print("Loaded recipes_desynthesis table.")
|
||||
finally:
|
||||
await conn.close()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
asyncio.run(main())
|
||||
@@ -82,6 +82,7 @@ async def ensure_inventory_table(conn: asyncpg.Connection) -> None:
|
||||
storage_type TEXT NOT NULL,
|
||||
item_name TEXT NOT NULL,
|
||||
quantity INT NOT NULL,
|
||||
item_id INT,
|
||||
last_updated TIMESTAMPTZ DEFAULT NOW()
|
||||
);
|
||||
"""
|
||||
@@ -93,7 +94,13 @@ async def truncate_inventory(conn: asyncpg.Connection) -> None:
|
||||
await conn.execute("TRUNCATE TABLE inventory;")
|
||||
|
||||
|
||||
async def copy_csv_to_db(conn: asyncpg.Connection, rows: List[Tuple[str, str, str, int]]) -> None:
|
||||
async def fetch_item_ids(conn: asyncpg.Connection, item_names: List[str]) -> Dict[str, int]:
|
||||
"""Fetch item IDs from the database."""
|
||||
rows = await conn.fetch("SELECT id, name FROM all_items WHERE name = ANY($1::text[])", item_names)
|
||||
return {row["name"]: row["id"] for row in rows}
|
||||
|
||||
|
||||
async def copy_csv_to_db(conn: asyncpg.Connection, rows: List[Tuple[str, str, str, int, int, _dt.datetime]]) -> None:
|
||||
"""Bulk copy the parsed CSV rows into the DB using ``copy_records_to_table``."""
|
||||
await conn.copy_records_to_table(
|
||||
"inventory",
|
||||
@@ -102,6 +109,7 @@ async def copy_csv_to_db(conn: asyncpg.Connection, rows: List[Tuple[str, str, st
|
||||
"character_name",
|
||||
"storage_type",
|
||||
"item_name",
|
||||
"item_id",
|
||||
"quantity",
|
||||
"last_updated",
|
||||
],
|
||||
@@ -130,15 +138,24 @@ async def load_inventory(csv_path: pathlib.Path) -> None:
|
||||
await truncate_inventory(conn)
|
||||
|
||||
# Parse CSV
|
||||
rows: List[Tuple[str, str, str, int]] = []
|
||||
rows: List[Tuple[str, str, str, int, int]] = []
|
||||
with csv_path.open(newline="", encoding="utf-8") as f:
|
||||
reader = csv.DictReader(f, delimiter=";", quotechar='"')
|
||||
names_set = set()
|
||||
for r in reader:
|
||||
names_set.add(r["item"].strip())
|
||||
# fetch ids
|
||||
id_rows = await conn.fetch("SELECT id,name FROM all_items WHERE name = ANY($1::text[])", list(names_set))
|
||||
id_map = {row["name"]: row["id"] for row in id_rows}
|
||||
f.seek(0)
|
||||
next(reader) # skip header again
|
||||
for r in reader:
|
||||
char = r["char"].strip()
|
||||
storage = r["storage"].strip()
|
||||
item = r["item"].strip()
|
||||
qty = int(r["quantity"].strip()) if r["quantity"].strip() else 0
|
||||
rows.append((char, storage, item, qty, _dt.datetime.utcnow()))
|
||||
item_id = id_map.get(item)
|
||||
rows.append((char, storage, item, item_id, qty, _dt.datetime.utcnow()))
|
||||
|
||||
await copy_csv_to_db(conn, rows)
|
||||
print(f"Inserted {len(rows)} inventory rows.")
|
||||
|
||||
Reference in New Issue
Block a user