Initial Release of IGNCore version 2.5
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
Could not find recipe item '157668 - Unfinished Alsaqri Chemical Rifle' for recipe id 105
|
||||
Could not find recipe item '157674 - Unfinished HSR Explorer 661' for recipe id 105
|
||||
Could not find recipe item '157646 - Unfinished IMI Tellus TT' for recipe id 105
|
||||
Could not find recipe item '162907 - Unfinished Ithaca Ki12 Vulture' for recipe id 105
|
||||
Could not find recipe item '162937 - Unfinished River Seasons XP' for recipe id 105
|
||||
Could not find recipe item '157656 - Unfinished Soft Pepper Pistol' for recipe id 105
|
||||
Could not find recipe item '157652 - Unfinished Sol Chironis Systems' for recipe id 105
|
||||
Could not find recipe item '157452 - Unfinished Summer SMP' for recipe id 105
|
||||
Could not find recipe item '150817 - Unfinished Bracelet of Arul Saba' for recipe id 25
|
||||
Could not find recipe item '150850 - Bracelet of Arul Saba' for recipe id 25
|
||||
Could not find recipe item '162222 - Programmed Photon Particle Emitter (Shape Soft Armor)' for recipe id 27
|
||||
Could not find recipe item '162222 - Programmed Photon Particle Emitter (Shape Soft Armor)' for recipe id 27
|
||||
Could not find recipe item '162221 - Programmed Photon Particle Emitter (Shape Hard Armor)' for recipe id 30
|
||||
Could not find recipe item '145848 - Compiled Algorithm (A Maker's Touch)' for recipe id 45
|
||||
Could not find recipe item '148848 - Programmed Photon Particle Emitter (A Maker's Touch)' for recipe id 45
|
||||
Could not find recipe item '162222 - Programmed Photon Particle Emitter (Shape Soft Armor)' for recipe id 46
|
||||
Could not find recipe item '155544 - Programmed Photon Particle Emitter (Improve Slashing Weapons)' for recipe id 54
|
||||
Could not find recipe item '245260 - Reanimator's Cloak' for recipe id 563
|
||||
Could not find recipe item '245260 - Reanimator's Cloak' for recipe id 603
|
||||
Could not find recipe item '162221 - Programmed Photon Particle Emitter (Shape Hard Armor)' for recipe id 620
|
||||
Could not find recipe item '162222 - Programmed Photon Particle Emitter (Shape Soft Armor)' for recipe id 620
|
||||
Could not find recipe item '155905 - Programmed Photon Particle Emitter (Improve Crushing Weapons)' for recipe id 620
|
||||
Could not find recipe item '162222 - Programmed Photon Particle Emitter (Shape Soft Armor)' for recipe id 63
|
||||
Could not find recipe item '162222 - Programmed Photon Particle Emitter (Shape Soft Armor)' for recipe id 70
|
||||
Could not find recipe item '247326 - Kyr'Ozch Rifle - Type 3' for recipe id 722
|
||||
Could not find recipe item '121391 - Rapid-Reload-And-Fire Gyro' for recipe id 752
|
||||
Could not find recipe item '121277 - Nano Pylon' for recipe id 755
|
||||
Could not find recipe item '25895 - Sealed Container of Foodstuffs Awaiting Credentials' for recipe id 766
|
||||
Could not find recipe item '162221 - Programmed Photon Particle Emitter (Shape Hard Armor)' for recipe id 77
|
||||
Could not find recipe item '244836 - Lord of Envy' for recipe id 775
|
||||
Could not find recipe item '229180 - Abhan Pattern of 'Screech'' for recipe id 87
|
||||
Could not find recipe item '229181 - Bhotaar Pattern of 'Screech'' for recipe id 87
|
||||
Could not find recipe item '229182 - Chi Pattern of 'Screech'' for recipe id 87
|
||||
Could not find recipe item '229183 - Dom Pattern of 'Screech'' for recipe id 87
|
||||
Could not find recipe item '229186 - Complete Blueprint Pattern of 'Screech'' for recipe id 87
|
||||
Could not find recipe item '229187 - Notum Crystal with Etched 'Screech'' for recipe id 87
|
||||
Could not find recipe item '229188 - Novictalized Notum Crystal with 'Screech'' for recipe id 87
|
||||
@@ -0,0 +1,291 @@
|
||||
import json
|
||||
import os
|
||||
import re
|
||||
|
||||
from core.chat_blob import ChatBlob
|
||||
from core.command_param_types import Any, Int, NamedParameters
|
||||
from core.decorators import instance, command
|
||||
from core.logger import Logger
|
||||
|
||||
|
||||
@instance()
|
||||
class RecipeController:
|
||||
def __init__(self):
|
||||
self.logger = Logger(__name__)
|
||||
|
||||
self.recipe_name_regex = re.compile(r"(\d+)\.(txt|json)")
|
||||
self.recipe_item_regex = re.compile(r"#L \"([^\"]+)\" \"([\d+]+)\"")
|
||||
self.recipe_link_regex = re.compile(r"#L \"([^\"]+)\" \"([^\"]+)\"")
|
||||
|
||||
def inject(self, registry):
|
||||
self.db = registry.get_instance("db")
|
||||
self.text = registry.get_instance("text")
|
||||
self.items_controller = registry.get_instance("items_controller")
|
||||
self.command_alias_service = registry.get_instance("command_alias_service")
|
||||
|
||||
def start(self):
|
||||
self.command_alias_service.add_alias("r", "recipe")
|
||||
self.command_alias_service.add_alias("tradeskill", "recipe")
|
||||
|
||||
self.db.exec("CREATE TABLE IF NOT EXISTS recipe ("
|
||||
"id INT NOT NULL PRIMARY KEY, "
|
||||
"name VARCHAR(50) NOT NULL, "
|
||||
"author VARCHAR(50) NOT NULL, "
|
||||
"recipe TEXT NOT NULL, "
|
||||
"dt INT NOT NULL DEFAULT 0)")
|
||||
self.db.create_view("recipe")
|
||||
recipe_dir = os.path.dirname(os.path.realpath(__file__)) + "/recipes/"
|
||||
recipes = self.db.query("SELECT id, dt FROM recipe")
|
||||
|
||||
for file in os.listdir(recipe_dir):
|
||||
if file.startswith("_"):
|
||||
continue
|
||||
|
||||
m = self.recipe_name_regex.match(file)
|
||||
if m:
|
||||
recipe_id = m.group(1)
|
||||
file_type = m.group(2)
|
||||
dt = int(os.path.getmtime(recipe_dir + file))
|
||||
|
||||
recipe = self.find_recipe(recipe_id, recipes)
|
||||
if recipe:
|
||||
recipes.remove(recipe)
|
||||
if recipe.dt == dt:
|
||||
continue
|
||||
|
||||
self.update_recipe(recipe_dir, recipe_id, file_type, dt)
|
||||
else:
|
||||
raise Exception(f"Unknown recipe format for '{file}'")
|
||||
|
||||
@command(command="recipe", params=[Int("recipe_id")], access_level="member", description="Show a recipe")
|
||||
def recipe_show_cmd(self, _, recipe_id):
|
||||
recipe = self.get_recipe(recipe_id)
|
||||
if not recipe:
|
||||
return f"Could not find recipe with ID <highlight>{recipe_id:d}</highlight>."
|
||||
|
||||
return self.format_recipe(recipe)
|
||||
|
||||
@command(command="recipe",
|
||||
params=[Any("search"), NamedParameters(["page"])],
|
||||
access_level="member",
|
||||
description="Search for a recipe")
|
||||
def recipe_search_cmd(self, _, search, named_params):
|
||||
page = int(named_params.page or "1")
|
||||
page_size = 30
|
||||
offset = (page - 1) * page_size
|
||||
search = self.text.strip_html_tags(search)
|
||||
data = self.db.query("SELECT * FROM recipe "
|
||||
"WHERE name LIKE ? "
|
||||
"or recipe LIKE ? "
|
||||
"ORDER BY name",
|
||||
[f"%{search}%", f"%{search}%"])
|
||||
count = len(data)
|
||||
paged_data = data[offset:offset + page_size]
|
||||
if count == 1:
|
||||
return self.format_recipe(data[0])
|
||||
blob = ""
|
||||
|
||||
if count > page_size:
|
||||
if page > 1 and len(paged_data) > 0:
|
||||
blob += " " + self.text.make_chatcmd(f"«« Page {page - 1:d}", self.get_chat_command(search, page - 1))
|
||||
if offset + page_size < len(data):
|
||||
blob += " Page " + str(page)
|
||||
blob += " " + self.text.make_chatcmd(f"Page {page + 1:d} »»", self.get_chat_command(search, page + 1))
|
||||
blob += "\n\n"
|
||||
|
||||
for row in paged_data:
|
||||
blob += self.text.make_tellcmd(row.name, f"recipe {row.id:d}") + "\n"
|
||||
|
||||
return ChatBlob(
|
||||
f"Recipes Matching '{search}' ({offset + 1:d} - {min(offset + page_size, count):d} of {count:d})", blob)
|
||||
|
||||
def get_recipe(self, recipe_id):
|
||||
return self.db.query_single("SELECT * FROM recipe WHERE id = ?", [recipe_id])
|
||||
|
||||
def format_recipe(self, recipe):
|
||||
blob = f"Recipe ID: <highlight>{recipe.id:d}</highlight>\n"
|
||||
blob += f"Author: <highlight>{recipe.author or 'Unknown'}</highlight>\n\n"
|
||||
blob += self.format_recipe_text(recipe.recipe)
|
||||
|
||||
return ChatBlob(f"Recipe for '{recipe.name}'", blob)
|
||||
|
||||
def format_recipe_text(self, recipe_text):
|
||||
recipe_text = recipe_text.replace("\\n", "\n")
|
||||
recipe_text = self.recipe_item_regex.sub(self.lookup_item, recipe_text)
|
||||
recipe_text = self.recipe_link_regex.sub("<a href='chatcmd://\\2'>\\1</a>", recipe_text)
|
||||
return recipe_text
|
||||
|
||||
def lookup_item(self, m):
|
||||
name = m.group(1)
|
||||
item_id = m.group(2)
|
||||
|
||||
item = self.items_controller.get_by_item_id(item_id)
|
||||
if item:
|
||||
return self.text.make_item(item.lowid, item.highid, item.highql, item.name)
|
||||
else:
|
||||
return name
|
||||
|
||||
def get_chat_command(self, search, page):
|
||||
return f"/tell <myname> recipe {search} --page={page:d}"
|
||||
|
||||
def find_recipe(self, recipe_id, recipes):
|
||||
for row in recipes:
|
||||
if str(row.id) == recipe_id:
|
||||
return row
|
||||
return None
|
||||
|
||||
def update_recipe(self, recipe_dir, recipe_id, _, dt):
|
||||
with open(recipe_dir + recipe_id + ".json", mode="r", encoding="UTF-8") as f:
|
||||
recipe = json.load(f)
|
||||
|
||||
name = recipe["name"]
|
||||
author = recipe["author"]
|
||||
|
||||
if "raw" in recipe:
|
||||
content = recipe["raw"]
|
||||
else:
|
||||
content = self.format_json_recipe(recipe_id, recipe)
|
||||
self.db.exec("REPLACE INTO recipe (id, name, author, recipe, dt) "
|
||||
"VALUES (?, ?, ?, ?, ?)",
|
||||
[recipe_id, name, author, content, dt])
|
||||
|
||||
def format_json_recipe(self, recipe_id, recipe):
|
||||
items = {}
|
||||
for i in recipe["items"]:
|
||||
item = self.items_controller.get_by_item_id(i["item_id"], i.get("ql"))
|
||||
if not item:
|
||||
raise Exception(f"Could not find recipe item '{i['item_id']:d}' for recipe id {recipe_id}")
|
||||
|
||||
item.ql = i.get("ql") or (item.highql if i["item_id"] == item.highid else item.lowql)
|
||||
items[i["alias"]] = item
|
||||
|
||||
content = ""
|
||||
|
||||
ingredients = items.copy()
|
||||
for step in recipe["steps"]:
|
||||
del ingredients[step["result"]]
|
||||
|
||||
content += self.format_ingredients(ingredients.items())
|
||||
content += "\n"
|
||||
content += self.format_steps(items, recipe["steps"])
|
||||
|
||||
if "details" in recipe:
|
||||
content += self.format_details(recipe["details"])
|
||||
|
||||
return content
|
||||
|
||||
def format_ingredients(self, ingredients):
|
||||
content = "<font color=#FFFF00>------------------------------</font>\n"
|
||||
content += "<font color=#FF0000>Ingredients</font>\n"
|
||||
content += "<font color=#FFFF00>------------------------------</font>\n\n"
|
||||
|
||||
for _, ingredient in ingredients:
|
||||
content += self.text.make_image(ingredient["icon"]) + "<tab>"
|
||||
content += self.text.make_item(ingredient["lowid"], ingredient["highid"], ingredient["ql"],
|
||||
ingredient["name"]) + "\n"
|
||||
|
||||
return content
|
||||
|
||||
def format_steps(self, items, steps):
|
||||
content = ""
|
||||
content += "<font color=#FFFF00>------------------------------</font>\n"
|
||||
content += "<font color=#FF0000>Recipe</font>\n"
|
||||
content += "<font color=#FFFF00>------------------------------</font>\n\n"
|
||||
|
||||
for step in steps:
|
||||
source = items[step["source"]]
|
||||
target = items[step["target"]]
|
||||
result = items[step["result"]]
|
||||
content += f"<a href='itemref://{source['lowid']:d}/{source['highid']:d}/{source['ql']:d}'>" \
|
||||
f"{self.text.make_image(source['icon'])}</a>" + ""
|
||||
content += "<font color=#FFFFFF><tab>+<tab></font> "
|
||||
content += f"<a href='itemref://{target['lowid']:d}/{target['highid']:d}/{target['ql']:d}'>" \
|
||||
f"{self.text.make_image(target['icon'])}</a>" + ""
|
||||
content += "<font color=#FFFFFF><tab>=<tab></font> "
|
||||
content += f"<a href='itemref://{result['lowid']:d}/{result['highid']:d}/{result['ql']:d}'>" \
|
||||
f"{self.text.make_image(result['icon'])}</a>"
|
||||
content += "\n<tab><tab>" + self.text.make_item(source["lowid"],
|
||||
source["highid"], source["ql"], source["name"])
|
||||
content += "\n + <tab>" + self.text.make_item(target["lowid"],
|
||||
target["highid"], target["ql"], target["name"])
|
||||
content += "\n = <tab>" + self.text.make_item(result["lowid"],
|
||||
result["highid"], result["ql"], result["name"]) + "\n"
|
||||
|
||||
if "skills" in step:
|
||||
content += f"<font color=#FFFF00>Skills: | {step['skills']} |</font>\n"
|
||||
content += "\n\n"
|
||||
|
||||
return content
|
||||
|
||||
def format_details(self, details):
|
||||
content = ""
|
||||
content += "<font color=#FFFF00>------------------------------</font>\n"
|
||||
content += "<font color=#FF0000>Details</font>\n"
|
||||
content += "<font color=#FFFF00>------------------------------</font>\n\n"
|
||||
|
||||
last_type = ""
|
||||
for detail in details:
|
||||
if "item" in detail:
|
||||
last_type = "item"
|
||||
i = detail["item"]
|
||||
|
||||
if "ql" in i:
|
||||
item = self.items_controller.get_by_item_id(i["id"], i["ql"])
|
||||
else:
|
||||
item = self.items_controller.get_by_item_id(i["id"])
|
||||
item["ql"] = item["highql"]
|
||||
|
||||
content += "<font color=#009B00>%s</font>" % \
|
||||
self.text.make_item(item['lowid'],
|
||||
item['highid'],
|
||||
item['ql'],
|
||||
item['name'])
|
||||
|
||||
if "comment" in i:
|
||||
content += " - " + i["comment"]
|
||||
|
||||
content += "\n"
|
||||
|
||||
elif "text" in detail:
|
||||
if last_type == "item":
|
||||
content += "\n"
|
||||
|
||||
last_type = "text"
|
||||
content += f"<font color=#FFFFFF>{detail['text']}</font>\n"
|
||||
|
||||
return content
|
||||
|
||||
def convert_to_json(self, recipe_dir, recipe_id, file):
|
||||
with open(recipe_dir + file, mode="r", encoding="UTF-8") as f:
|
||||
lines = f.readlines()
|
||||
|
||||
recipe = {
|
||||
"name": lines.pop(0).strip()[6:],
|
||||
"author": lines.pop(0).strip()[8:],
|
||||
"items": list(),
|
||||
"steps": list(),
|
||||
"details": list(),
|
||||
"raw": None
|
||||
}
|
||||
|
||||
content = "".join(lines)
|
||||
items = {}
|
||||
|
||||
matches = self.recipe_item_regex.findall(content)
|
||||
for item_name, item_id in matches:
|
||||
item = self.items_controller.get_by_item_id(item_id)
|
||||
if not item:
|
||||
self.logger.warning(f"Could not find recipe item '{item_id} - {item_name}' for recipe id {recipe_id}")
|
||||
else:
|
||||
items[item.highid] = {"alias": item.name, "item_id": item.highid}
|
||||
|
||||
recipe["items"].extend(items.values())
|
||||
recipe["raw"] = content
|
||||
|
||||
with open(recipe_dir + recipe_id + ".json", mode="w", encoding="UTF-8") as f:
|
||||
f.write(json.dumps(recipe, indent=4))
|
||||
|
||||
# delete file
|
||||
os.remove(recipe_dir + file)
|
||||
|
||||
return True
|
||||
@@ -0,0 +1,55 @@
|
||||
{
|
||||
"name": "Accelerated NCU Memory",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "NCU Memory",
|
||||
"item_id": 95520,
|
||||
"ql": 200
|
||||
},
|
||||
{
|
||||
"alias": "Nano Formula Recompiler",
|
||||
"item_id": 95519
|
||||
},
|
||||
{
|
||||
"alias": "Lock Pick",
|
||||
"item_id": 95577
|
||||
},
|
||||
{
|
||||
"alias": "Nano Programming Interface",
|
||||
"item_id": 161699
|
||||
},
|
||||
{
|
||||
"alias": "Disconnected NCU Memory",
|
||||
"item_id": 164601
|
||||
},
|
||||
{
|
||||
"alias": "Re-configured Nano Formula Recompiler",
|
||||
"item_id": 164600
|
||||
},
|
||||
{
|
||||
"alias": "Accelerated NCU Memory",
|
||||
"item_id": 164608
|
||||
}
|
||||
],
|
||||
"steps": [
|
||||
{
|
||||
"source": "Lock Pick",
|
||||
"target": "NCU Memory",
|
||||
"result": "Disconnected NCU Memory",
|
||||
"skills": "BE,CL"
|
||||
},
|
||||
{
|
||||
"source": "Nano Programming Interface",
|
||||
"target": "Nano Formula Recompiler",
|
||||
"result": "Re-configured Nano Formula Recompiler",
|
||||
"skills": "NP,CL"
|
||||
},
|
||||
{
|
||||
"source": "Re-configured Nano Formula Recompiler",
|
||||
"target": "Disconnected NCU Memory",
|
||||
"result": "Accelerated NCU Memory",
|
||||
"skills": "NP,CL"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "Rebuilt NCU Wrist Implant",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Outdated NCU Wrist Implant",
|
||||
"item_id": 204979
|
||||
},
|
||||
{
|
||||
"alias": "Field Quantum Physics All-Purpose Tool",
|
||||
"item_id": 164558
|
||||
},
|
||||
{
|
||||
"alias": "Rebuilt NCU Wrist Implant",
|
||||
"item_id": 204981
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n#L \"Outdated NCU Wrist Implant\" \"204979\"\n<img src=rdb://20412>\n\n#L \"Field Quantum Physics All-Purpose Tool\" \"164558\"\n<img src=rdb://20410>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nField Quantum Physics All-Purpose Tool</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nOutdated NCU Wrist Implant</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://20412>\n#L \"Rebuilt NCU Wrist Implant\" \"204981\"</font>\n<font color=#FFFF00>Skills: | QT |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nImplant some NCU into character..."
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"name": "Repairman's Hat",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Notum Fragment",
|
||||
"item_id": 136625
|
||||
},
|
||||
{
|
||||
"alias": "Notum Chip",
|
||||
"item_id": 136623
|
||||
},
|
||||
{
|
||||
"alias": "Salesman's Hat",
|
||||
"item_id": 205738
|
||||
},
|
||||
{
|
||||
"alias": "Nano Programming Interface",
|
||||
"item_id": 161699
|
||||
},
|
||||
{
|
||||
"alias": "Inactive OT Metamorphing Liquid Nanobots",
|
||||
"item_id": 164952
|
||||
},
|
||||
{
|
||||
"alias": "Field Quantum Physics All-Purpose Tool",
|
||||
"item_id": 164558
|
||||
},
|
||||
{
|
||||
"alias": "Transformed Salesman's Hat",
|
||||
"item_id": 205741
|
||||
},
|
||||
{
|
||||
"alias": "Activated OT Metamorphing Liquid Nanobots",
|
||||
"item_id": 164954
|
||||
},
|
||||
{
|
||||
"alias": "Stabilized OT Metamorphing Liquid Nanobots",
|
||||
"item_id": 164956
|
||||
},
|
||||
{
|
||||
"alias": "Repairman's Hat",
|
||||
"item_id": 205743
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nSome Notum \n#L \"Notum Fragment\" \"136624\"\n<img src=rdb://25795></font>\n<font color=#FFFFFF>or</font><font color=#009B00>\n#L \"Notum Chip\" \"136622\"\n<img src=rdb://25794>\n\n#L \"Salesman's Hat\" \"205738\"\n<img src=rdb://205771>\n\n#L \"Nano Programming Interface\" \"161699\"\n<img src=rdb://99279>\n\n#L \"Inactive OT Metamorphing Liquid Nanobots\" \"164952\"\n<img src=rdb://156496>\n\n#L \"Field Quantum Physics All-Purpose Tool\" \"164558\"\n<img src=rdb://20410>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nField Quantum Physics All-Purpose Tool</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nSalesman's Hat</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://205772>\n#L \"Transformed Salesman's Hat\" \"205741\"</font>\n<font color=#FFFF00>Skills: | NP,CH |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nNano Programming Interface</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nInactive OT Metamorphing Liquid Nanobots</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://156492>\n#L \"Activated OT Metamorphing Liquid Nanobots\" \"164954\"</font>\n<font color=#FFFF00>Skills: | NP,CH |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nNotum</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nActivated OT Metamorphing Liquid Nanobots</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://164949>\n#L \"Stabilized OT Metamorphing Liquid Nanobots\" \"164956\"</font>\n<font color=#FFFF00>Skills: | NP,CH |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nStabilized OT Metamorphing Liquid Nanobots</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nTransformed Salesman's Hat</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://205772>\n#L \"Repairman's Hat\" \"205743\"</font>\n<font color=#FFFF00>Skills: | NP,CH |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nYou can right-clic it to upgrad it up to QL50."
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "Restoration Kit",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Mimicking Cellular Oil",
|
||||
"item_id": 154268
|
||||
},
|
||||
{
|
||||
"alias": "Receptive Bots",
|
||||
"item_id": 154266
|
||||
},
|
||||
{
|
||||
"alias": "Shining Nano Knot of Restoration",
|
||||
"item_id": 154270
|
||||
},
|
||||
{
|
||||
"alias": "Purple Glowing Stim",
|
||||
"item_id": 154274
|
||||
},
|
||||
{
|
||||
"alias": "Advanced Restoration Kit",
|
||||
"item_id": 154272
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n#L \"Mimicking Cellular Oil\" \"154268\"\n<img src=rdb://100306>\n\n#L \"Receptive Bots\" \"154266\"\n<img src=rdb://11755>\n\n#L \"Shining Nano Knot of Restoration\" \"154270\"\n<img src=rdb://19860>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nMimicking Cellular Oil</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nReceptive Bots</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://11754>\n#L \"Purple Glowing Stim\" \"154274\"</font>\n<font color=#FFFF00>Skills: | PT |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nShining Nano Knot of Restoration</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nPurple Glowing Stim</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://156492>\n#L \"Restoration Kit\" \"154272\"</font>\n<font color=#FFFF00>Skills: | PT |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nVery useful on the paper, recovering Nanopoints and Lifepoints... But ridiculously expensive, this recipe will cost you all your exploited credits..."
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
{
|
||||
"name": "Rollerrat Helmets",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Screwdriver",
|
||||
"item_id": 150922
|
||||
},
|
||||
{
|
||||
"alias": "Mass Relocating Robot (Shape Hard Armor)",
|
||||
"item_id": 162218
|
||||
},
|
||||
{
|
||||
"alias": "Advanced Hacker Tool",
|
||||
"item_id": 87814
|
||||
},
|
||||
{
|
||||
"alias": "B.B.I. - Nano Enhanced B-12 Tanning Acid",
|
||||
"item_id": 162247
|
||||
},
|
||||
{
|
||||
"alias": "Undamaged Piece of Rubbery Rollerrat Flesh",
|
||||
"item_id": 206886
|
||||
},
|
||||
{
|
||||
"alias": "MasterComm - Personalization Device",
|
||||
"item_id": 156025
|
||||
},
|
||||
{
|
||||
"alias": "Ancarim Sun Tan Lotion",
|
||||
"item_id": 205874
|
||||
},
|
||||
{
|
||||
"alias": "Carbonum Plate Helmet",
|
||||
"item_id": 162437
|
||||
},
|
||||
{
|
||||
"alias": "Tanned Piece of Rollerrat Flesh",
|
||||
"item_id": 206890
|
||||
},
|
||||
{
|
||||
"alias": "Communication Device",
|
||||
"item_id": 206891
|
||||
},
|
||||
{
|
||||
"alias": "Fragile Rollerrat Helmet",
|
||||
"item_id": 206892
|
||||
},
|
||||
{
|
||||
"alias": "Simple Rollerrat Helmet",
|
||||
"item_id": 206876
|
||||
},
|
||||
{
|
||||
"alias": "Excellent Rollerrat Helmet",
|
||||
"item_id": 206885
|
||||
},
|
||||
{
|
||||
"alias": "Disassembled Rollerrat Helmet",
|
||||
"item_id": 206898
|
||||
},
|
||||
{
|
||||
"alias": "Rollerrat Carbonum Helmet",
|
||||
"item_id": 206897
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n#L \"screwdriver\" \"150922\"\n<img src=rdb://151011></font>\n<font color=#FFFFFF>or</font><font color=#009B00>\n#L \"Mass Relocating Robot (Shape Hard Armor)\" \"162218\" (#L \"recipe\" \"/tell <myname> recipe 30\")\n<img src=rdb://163856>\n\n#L \"Hacker Tool\" \"87814\"\n<img src=rdb://99282>\n\n#L \"B.B.I. - Nano Enhanced B-12 Tanning Acid\" \"162247\"\n<img src=rdb://156490>\n\n#L \"Undamaged Piece of Rubbery Rollerrat Flesh\" \"206886\"\n<img src=rdb://144702>\n\n#L \"MasterComm - Personalization Device\" \"156025\"\n<img src=rdb://11618>\n\n#L \"Ancarim Sun Tan Lotion\" \"205874\"\n<img src=rdb://156504>\n\n#L \"Carbonum Plate Helmet\" \"162437\" (#L \"recipe\" \"/tell <myname> recipe 30\")\n<img src=rdb://10833>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nB.B.I. - Nano Enhanced B-12 Tanning Acid</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nUndamaged Piece of Rubbery Rollerrat Flesh</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://144701>\n#L \"Tanned Piece of Rollerrat Flesh\" \"206890\"</font>\n<font color=#FFFF00>Skills: | AG,CH |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nHacker Tool</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nMasterComm - Personalization Device</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://11606>\n#L \"Communication Device\" \"206891\"</font>\n<font color=#FFFF00>Skills: | BE |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nCommunication Device</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nTanned Piece of Rollerrat Flesh</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://205768>\n#L \"Fragile Rollerrat Helmet\" \"206892\"</font>\n<font color=#FFFF00>Skills: | BE |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nAncarim Sun Tan Lotion</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nFragile Rollerrat Helmet</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://205768>\n#L \"Simple Rollerrat Helmet\" \"206876\"</font>\n<font color=#FFFF00>Skills: | BE |</font><font color=#009B00>\n\nYou can use 9 another Tanned Piece of Rollerrat Flesh on your Simple Rollerrat Helmet, then you get ...\n\n#L \"Excellent Rollerrat Helmet\" \"206885\"\n<img src=rdb://205768>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nScrewdriver</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nExcellent Rollerrat Helmet</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://205517>\n#L \"Disassembled Rollerrat Helmet\" \"206898\"</font>\n<font color=#FFFF00>Skills: | ME,EE |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nDisassembled Rollerrat Helmet</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nCarbonum Plate Helmet</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://205769>\n#L \"Rollerrat Carbonum Helmet\" \"206897\"</font>\n<font color=#FFFF00>Skills: | ME |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nA very very very very strange looking hat :D"
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "Secured May Fly Throwing Grenade",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Throwing Grenade Basic Kit",
|
||||
"item_id": 165123
|
||||
},
|
||||
{
|
||||
"alias": "Pseudo-Nano Multibenzonoxydant Sulphosalycilic Liquid",
|
||||
"item_id": 165121
|
||||
},
|
||||
{
|
||||
"alias": "Secured May Fly Throwing Grenade",
|
||||
"item_id": 165119
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n#L \"Throwing Grenade Basic Kit\" \"165123\"\n<img src=rdb://156202>\n\n#L \"Pseudo-Nano Multibenzonoxydant Sulphosalycilic Liquid\" \"165121\"\n<img src=rdb://156495>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nPseudo-Nano Multibenzonoxydant Sulphosalycilic Liquid</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nThrowing Grenade Basic Kit</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://131256>\n#L \"Secured May Fly Throwing Grenade\" \"165119\"</font>\n<font color=#FFFF00>Skills: | BE |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nHmmm not that useful as you can only carry one at a time..."
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "Sharpshooter's Helmet",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Agent Gear: Kevlar Wool Balaclava",
|
||||
"item_id": 160571
|
||||
},
|
||||
{
|
||||
"alias": "Sharpshooter's Chip",
|
||||
"item_id": 206990
|
||||
},
|
||||
{
|
||||
"alias": "Kevlar Wool Balaclava Helmet",
|
||||
"item_id": 160569
|
||||
},
|
||||
{
|
||||
"alias": "Sharpshooter's Helmet",
|
||||
"item_id": 206978
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n#L \"Agent Gear: Kevlar Wool Balaclava\" \"160571\"\n<img src=rdb://100311>\n\n#L \"Sharpshooter's Chip\" \"206990\"\n<img src=rdb://43133>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nFirst, right-Click the Agent Gear: Kevlar Wool Balaclava to obtain a \n\n#L \"Kevlar Wool Balaclava Helmet\" \"160569\"\n<img src=rdb://160562>\n\nSharpshooter's Chip</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nKevlar Wool Balaclava Helmet</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://205764>\n#L \"Sharpshooter's Helmet\" \"206978\"</font>\n<font color=#FFFF00>Skills: | ?? |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nnice agent headgear!"
|
||||
}
|
||||
@@ -0,0 +1,81 @@
|
||||
{
|
||||
"name": "Inamorata and Sacrosanct Weapons",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Grey Glyph of Aban",
|
||||
"item_id": 218372
|
||||
},
|
||||
{
|
||||
"alias": "Inamorata Assault Rifle",
|
||||
"item_id": 212302
|
||||
},
|
||||
{
|
||||
"alias": "Inamorata Bhotaar Assault Rifle",
|
||||
"item_id": 212282
|
||||
},
|
||||
{
|
||||
"alias": "Grey Glyph of Ocra-Bhotaar",
|
||||
"item_id": 218380
|
||||
},
|
||||
{
|
||||
"alias": "Grey Glyph of Aban-Shere",
|
||||
"item_id": 218392
|
||||
},
|
||||
{
|
||||
"alias": "Grey Glyph of Ocra-Roch",
|
||||
"item_id": 218382
|
||||
},
|
||||
{
|
||||
"alias": "Grey Glyph of Aban-Thar",
|
||||
"item_id": 218390
|
||||
},
|
||||
{
|
||||
"alias": "Grey Glyph of Ocra-Shere",
|
||||
"item_id": 218378
|
||||
},
|
||||
{
|
||||
"alias": "Grey Glyph of Bhotaar",
|
||||
"item_id": 218364
|
||||
},
|
||||
{
|
||||
"alias": "Grey Glyph of Ocra-Xum",
|
||||
"item_id": 218384
|
||||
},
|
||||
{
|
||||
"alias": "Grey Glyph of Enel",
|
||||
"item_id": 218370
|
||||
},
|
||||
{
|
||||
"alias": "Grey Glyph of Roch",
|
||||
"item_id": 218366
|
||||
},
|
||||
{
|
||||
"alias": "Grey Glyph of Enel-Thar",
|
||||
"item_id": 218388
|
||||
},
|
||||
{
|
||||
"alias": "Grey Glyph of Shere",
|
||||
"item_id": 218368
|
||||
},
|
||||
{
|
||||
"alias": "Grey Glyph of Enel-Xum",
|
||||
"item_id": 218386
|
||||
},
|
||||
{
|
||||
"alias": "Grey Glyph of Thar",
|
||||
"item_id": 218374
|
||||
},
|
||||
{
|
||||
"alias": "Grey Glyph of Ocra",
|
||||
"item_id": 218362
|
||||
},
|
||||
{
|
||||
"alias": "Grey Glyph of Xum",
|
||||
"item_id": 218376
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\na Grey Glyph\n( ie : #L \"Grey Glyph of Aban\" \"218372\" )\n<img src=rdb://25802>\n\nan Inamorata or Sacrosanct Weapon\n( ie : #L \"Inamorata Assault Rifle\" \"212302\" )\n<img src=rdb://210174>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nGrey Glyph</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nInamorata Weapon</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://210174>\nan improved Inamorata Weapon\n( ie : #L \"Inamorata Bhotaar Assault Rifle\" \"212282\" )</font>\n<font color=#FFFF00>Skills: | ME,EE |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Details</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n#L \"Grey Glyph of Aban\" \"218372\" : Adds Sneak Attack\n#L \"Grey Glyph of Ocra-Bhotaar\" \"218380\" : Adds Burst and Fling Shot \n#L \"Grey Glyph of Aban-Shere\" \"218392\" : Adds Sneak Attack, Fast Attack and Brawl\n#L \"Grey Glyph of Ocra-Roch\" \"218382\" : Adds Fling Shot and Fullauto \n#L \"Grey Glyph of Aban-Thar\" \"218390\" : Adds Sneak Attack and Fast Attack\n#L \"Grey Glyph of Ocra-Shere\" \"218378\" : Adds Fling Shot and Aimed Shot \n#L \"Grey Glyph of Bhotaar\" \"218364\" : Adds Burst\n#L \"Grey Glyph of Ocra-Xum\" \"218384\" : Adds Burst and Fullauto \n#L \"Grey Glyph of Enel\" \"218370\" : Adds Brawl\n#L \"Grey Glyph of Roch\" \"218366\" : Adds Fullauto \n#L \"Grey Glyph of Enel-Thar\" \"218388\" : Adds Brawl and Fast Attack\n#L \"Grey Glyph of Shere\" \"218368\" : Adds Aimed Shot \n#L \"Grey Glyph of Enel-Xum\" \"218386\" : Adds Brawl and Dimach\n#L \"Grey Glyph of Thar\" \"218374\" : Adds Fast Attack \n#L \"Grey Glyph of Ocra\" \"218362\" : Adds Fling Shot \n#L \"Grey Glyph of Xum\" \"218376\" : Adds Dimach\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nsee also #L \"Turn Spirit Weapon\" \"/tell <myname> recipe 569\" recipe."
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "Silvertail Dagger",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Snake Bile",
|
||||
"item_id": 227173
|
||||
},
|
||||
{
|
||||
"alias": "Silvertail Horn",
|
||||
"item_id": 227169
|
||||
},
|
||||
{
|
||||
"alias": "Handle-Shaped Gofle Toe Bone",
|
||||
"item_id": 227175
|
||||
},
|
||||
{
|
||||
"alias": "Bone Handle",
|
||||
"item_id": 227177
|
||||
},
|
||||
{
|
||||
"alias": "Silvertail Dagger",
|
||||
"item_id": 227095
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n#L \"Snake Bile\" \"227172\"\n<img src=rdb://156493>\n\n#L \"Silvertail Horn\" \"227169\" \n<img src=rdb://218708>\n\n#L \"Handle-Shaped Gofle Toe Bone\" \"227175\"\n<img src=rdb://130862>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nSnake Bile</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nHandle-Shaped Gofle Toe Bone</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://130862>\n#L \"Bone Handle\" \"227177\"</font>\n<font color=#FFFF00>Skills: | WS |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nBone Handle</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nSilvertail Horn</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://218708>\n#L \"Silvertail Dagger\" \"227095\"</font>\n<font color=#FFFF00>Skills: | WS |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nThese are excellent start-weapons for Shades."
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "Anti Gravity Unit",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Small Backpack",
|
||||
"item_id": 99228
|
||||
},
|
||||
{
|
||||
"alias": "Juggernaut's Anti-Gravity Unit",
|
||||
"item_id": 207249
|
||||
},
|
||||
{
|
||||
"alias": "Anti Gravity Unit",
|
||||
"item_id": 207242
|
||||
}
|
||||
],
|
||||
"steps": [
|
||||
{
|
||||
"source": "Juggernaut's Anti-Gravity Unit",
|
||||
"target": "Small Backpack",
|
||||
"result": "Anti Gravity Unit",
|
||||
"skills": "ME"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"name": "Sided Carbonum Armor",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Omnifier",
|
||||
"item_id": 208312
|
||||
},
|
||||
{
|
||||
"alias": "Storm Carbonum Plate Helmet",
|
||||
"item_id": 208262
|
||||
},
|
||||
{
|
||||
"alias": "Omni Carbonum Plate Helmet",
|
||||
"item_id": 208293
|
||||
},
|
||||
{
|
||||
"alias": "Omni Carbonum Plate Arms",
|
||||
"item_id": 208285
|
||||
},
|
||||
{
|
||||
"alias": "Storm Carbonum Plate Arms",
|
||||
"item_id": 208254
|
||||
},
|
||||
{
|
||||
"alias": "Omni Carbonum Breastplate",
|
||||
"item_id": 208287
|
||||
},
|
||||
{
|
||||
"alias": "Storm Carbonum Breastplate",
|
||||
"item_id": 208256
|
||||
},
|
||||
{
|
||||
"alias": "Omni Carbonum Plate Legs",
|
||||
"item_id": 208295
|
||||
},
|
||||
{
|
||||
"alias": "Storm Carbonum Plate Legs",
|
||||
"item_id": 208264
|
||||
},
|
||||
{
|
||||
"alias": "Omni Carbonum Plate Boots",
|
||||
"item_id": 208289
|
||||
},
|
||||
{
|
||||
"alias": "Storm Carbonum Plate Boots",
|
||||
"item_id": 208258
|
||||
},
|
||||
{
|
||||
"alias": "Omni Carbonum Plate Gloves",
|
||||
"item_id": 208291
|
||||
},
|
||||
{
|
||||
"alias": "Storm Carbonum Plate Gloves",
|
||||
"item_id": 208260
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nA piece of Carbonum Armor (#L \"recipe\" \"/tell <myname> recipe 30\")\n<img src=rdb://162421>\n\n#L \"Omnifier\" \"208312\"\n<img src=rdb://156479></font>\n<font color=#FFFFFF>or</font><font color=#009B00>\n#L \"Clanalizer\" \"208262\"\n<img src=rdb://156479>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nOmnifier</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nCarbonum Armor</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://13251>\nOmni Carbonum Armor</font>\n<font color=#FFFF00>Skills: | CH |</font><font color=#009B00>\n</font>\n<font color=#FFFFFF>OR</font><font color=#009B00>\n\nClanalizer</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nCarbonum Armor</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://162421>\nStorm Carbonum Armor</font>\n<font color=#FFFF00>Skills: | CH |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Details</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nHelmet: #L \"Omni\" \"208293\", #L \"Storm\" \"208262\"\nSleeves: #L \"Omni\" \"208285\", #L \"Storm\" \"208254\"\nBreastplate: #L \"Omni\" \"208287\", #L \"Storm\" \"208255\"\nPants: #L \"Omni\" \"208295\", #L \"Storm\" \"208264\"\nBoots: #L \"Omni\" \"208289\", #L \"Storm\" \"208258\"\nGloves: #L \"Omni\" \"208291\", #L \"Storm\" \"208260\"\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n<highlight>Omni Carbonum</highlight>\nwear : not clan \nbonus : max health\n\n<highlight>Storm Carbonum</highlight>\nwear : not omni\nbonus : nano resist"
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "Bio-Material",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Solid Clump of Kyr'Ozch Bio-Material",
|
||||
"item_id": 247702
|
||||
},
|
||||
{
|
||||
"alias": "Kyr'Ozch Structural Analyzer",
|
||||
"item_id": 247100
|
||||
},
|
||||
{
|
||||
"alias": "Kyr'Ozch Bio-Material - Type 1",
|
||||
"item_id": 247684
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n#L \"Solid Clump of Kyr'Ozch Bio-Material\" \"247702\"\n<img src=rdb://247101>\n\n#L \"Kyr'Ozch Structural Analyzer\" \"247100\"\n( #L \"see here\" \"/tell <myname> recipe 115\" )\n<img src=rdb://247097>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nKyr'Ozch Structural Analyzer</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nSolid Clump of Kyr'Ozch Bio-Material</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://255705>\na Bio-Material\n( ie #L \"Kyr'Ozch Bio-Material - Type 1\" \"247684\" )</font>\n<font color=#FFFF00>Skills: | EE |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nBio material can be found in LE missions, APFs and AI City raids. Basically anywhere you find aliens ^^"
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "Spider Shank Machete",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Snake Bile",
|
||||
"item_id": 227173
|
||||
},
|
||||
{
|
||||
"alias": "Spider Shank",
|
||||
"item_id": 227171
|
||||
},
|
||||
{
|
||||
"alias": "Handle-Shaped Gofle Toe Bone",
|
||||
"item_id": 227175
|
||||
},
|
||||
{
|
||||
"alias": "Bone Handle",
|
||||
"item_id": 227177
|
||||
},
|
||||
{
|
||||
"alias": "Spider Shank Machete",
|
||||
"item_id": 227089
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n#L \"Snake Bile\" \"227172\"\n<img src=rdb://156493>\n\n#L \"Spider Shank\" \"227171\"\n<img src=rdb://158238>\n\n#L \"Handle-Shaped Gofle Toe Bone\" \"227175\"\n<img src=rdb://130862>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nSnake Bile</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nHandle-Shaped Gofle Toe Bone</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://130862>\n#L \"Bone Handle\" \"227177\"</font>\n<font color=#FFFF00>Skills: | WS |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nBone Handle</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nSpider Shank</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://158238>\n#L \"Spider Shank Machete\" \"227089\"</font>\n<font color=#FFFF00>Skills: | WS |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nMore startup weapons for the SL nooby. :)"
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "Kyr'Ozch Structural Analyzer",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Kyr'Ozch Atomic Re-Structuralizing Tool",
|
||||
"item_id": 247099
|
||||
},
|
||||
{
|
||||
"alias": "Field Quantum Physics All-Purpose Tool",
|
||||
"item_id": 164558
|
||||
},
|
||||
{
|
||||
"alias": "Kyr'Ozch Structural Analyzer",
|
||||
"item_id": 247100
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n#L \"Kyr'Ozch Atomic Re-Structuralizing Tool\" \"247099\"\n<img src=rdb://247098>\n\n#L \"Field Quantum Physics All-Purpose Tool\" \"164558\"\n<img src=rdb://20410>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nField Quantum Physics All-Purpose Tool</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nKyr'Ozch Atomic Re-Structuralizing Tool</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://247097>\n#L \"Kyr'Ozch Structural Analyzer\" \"247100\"</font>\n<font color=#FFFF00>Skills: | QT |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nHandy Tool for AI Tradeskilling."
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "Swim Stim",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Mimicking Cellular Oil",
|
||||
"item_id": 154268
|
||||
},
|
||||
{
|
||||
"alias": "Receptive Bots",
|
||||
"item_id": 154266
|
||||
},
|
||||
{
|
||||
"alias": "Shining Nano Knot of Swimming",
|
||||
"item_id": 154385
|
||||
},
|
||||
{
|
||||
"alias": "Purple Glowing Stim",
|
||||
"item_id": 154274
|
||||
},
|
||||
{
|
||||
"alias": "Swim Stim",
|
||||
"item_id": 154384
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n#L \"Mimicking Cellular Oil\" \"154268\"\n<img src=rdb://100306>\n\n#L \"Receptive Bots\" \"154266\"\n<img src=rdb://11755>\n\n#L \"Shining Nano Knot of Swimming\" \"154385\"\n<img src=rdb://19855>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nMimicking Cellular Oil</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nReceptive Bots</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://11754>\n#L \"Purple Glowing Stim\" \"154274\"</font>\n<font color=#FFFF00>Skills: | PT |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nShining Nano Knot of Swimming</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nPurple Glowing Stim</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://11707>\n#L \"Swim Stim\" \"154384\"</font>\n<font color=#FFFF00>Skills: | PT |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nWith ql 36 ones, i buff my swimming skill of 400pts !!! It may be very useful for low level without yalm. Or for swimming competition, but beware of the drug test..\n\nIts also handy for all that swimming you have to do questing in Adonis."
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "Cutting Valuable Stones",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Gem",
|
||||
"item_id": 136641
|
||||
},
|
||||
{
|
||||
"alias": "Jensen Gem Cutter",
|
||||
"item_id": 151366
|
||||
},
|
||||
{
|
||||
"alias": "Perfectly Cut Gem",
|
||||
"item_id": 151552
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\na Valuable Stone\n(ie: #L \"Gem\" \"136641\")\n<img src=rdb://136593>\n\n#L \"Jensen Gem Cutter\" \"151366\"\n<img src=rdb://149941>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nJensen Gem Cutter</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\na Valuable Stone</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://136593>\nPerfectly Cut Valuable Stone\n(ie:#L \"Perfectly Cut Gem\" \"151552\")</font>\n<font color=#FFFF00>Skills: | ME |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nThis process transforms the Valuable Stone into a Perfectly Cut one, thus doubling its value. The result can also be used in the making of #L \"Jewels\" \"/tell <myname> recipe 62\"."
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"name": "Treatment Library",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Advanced Hacker Tool",
|
||||
"item_id": 87814
|
||||
},
|
||||
{
|
||||
"alias": "Pharma Tech Tutoring Device",
|
||||
"item_id": 55682
|
||||
},
|
||||
{
|
||||
"alias": "Advanced Portable Surgery Clinic",
|
||||
"item_id": 43551
|
||||
},
|
||||
{
|
||||
"alias": "Hacked Pharma Tech Tutoring Device",
|
||||
"item_id": 161768
|
||||
},
|
||||
{
|
||||
"alias": "Hacked Portable Surgery Clinic",
|
||||
"item_id": 161765
|
||||
},
|
||||
{
|
||||
"alias": "Treatment Library",
|
||||
"item_id": 161770
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n#L \"Hacker Tool\" \"87814\" x 2\n<img src=rdb://99282>\n\n#L \"Pharma Tech Tutoring Device\" \"55682\"\n<img src=rdb://99286>\n\n#L \"Portable Surgery Clinic\" \"43551\"\n<img src=rdb://13369>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nHacker Tool</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nPharma Tech Tutoring Device</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://161873>\n#L \"Hacked Pharma Tech Tutoring Device\" \"161768\"</font>\n<font color=#FFFF00>Skills: | BE,CL |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nHacker Tool</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nPortable Surgery Clinic</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://161872>\n#L \"Hacked Portable Surgery Clinic\" \"161765\"</font>\n<font color=#FFFF00>Skills: | BE,CL |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nHacked Pharma Tech Tutoring Device</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nHacked Portable Surgery Clinic</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://161869>\n#L \"Treatment Library\" \"161770\"</font>\n<font color=#FFFF00>Skills: | BE,CL |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nGreat for those extra few points of treatment when twinking. Don't forget that the Hacker tools are destroyed in the process..."
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"name": "Treatment and Pharmacy Library",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Advanced Hacker Tool",
|
||||
"item_id": 87814
|
||||
},
|
||||
{
|
||||
"alias": "Pharma Tech Tutoring Device",
|
||||
"item_id": 55682
|
||||
},
|
||||
{
|
||||
"alias": "Advanced Portable Surgery Clinic",
|
||||
"item_id": 43551
|
||||
},
|
||||
{
|
||||
"alias": "Hacked Pharma Tech Tutoring Device",
|
||||
"item_id": 161768
|
||||
},
|
||||
{
|
||||
"alias": "Hacked Portable Surgery Clinic",
|
||||
"item_id": 161765
|
||||
},
|
||||
{
|
||||
"alias": "Treatment and Pharmacy Library",
|
||||
"item_id": 161772
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n#L \"Hacker Tool\" \"87814\" x 2\n<img src=rdb://99282>\n\n#L \"Pharma Tech Tutoring Device\" \"55682\"\n<img src=rdb://99286>\n\n#L \"Portable Surgery Clinic\" \"43551\"\n<img src=rdb://13369>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nHacker Tool</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nPharma Tech Tutoring Device</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://161873>\n#L \"Hacked Pharma Tech Tutoring Device\" \"161768\"</font>\n<font color=#FFFF00>Skills: | BE,CL |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nHacker Tool</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nPortable Surgery Clinic</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://161872>\n#L \"Hacked Portable Surgery Clinic\" \"161765\"</font>\n<font color=#FFFF00>Skills: | BE,CL |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nHacked Portable Surgery Clinic</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nHacked Pharma Tech Tutoring Device</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://161870>\n#L \"Treatment and Pharmacy Library\" \"161772\"</font>\n<font color=#FFFF00>Skills: | EE,CL |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nSame as the Treatement Librairy except that it give Pharma Tech bonus and can only be equipped by Doctors. Don't forget that the Hacker tools are used in the process..."
|
||||
}
|
||||
@@ -0,0 +1,78 @@
|
||||
{
|
||||
"name": "Apocalypse Leather Armor",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Enhanced Leather Armor Boots",
|
||||
"item_id": 85644
|
||||
},
|
||||
{
|
||||
"alias": "Hacker Tool",
|
||||
"item_id": 87814
|
||||
},
|
||||
{
|
||||
"alias": "Clanalizer",
|
||||
"item_id": 208313
|
||||
},
|
||||
{
|
||||
"alias": "Apocalypse Leather Armor Boots",
|
||||
"item_id": 245967
|
||||
},
|
||||
{
|
||||
"alias": "Hacked Leather Armor Boots",
|
||||
"item_id": 245979
|
||||
}
|
||||
],
|
||||
"steps": [
|
||||
{
|
||||
"source": "Hacker Tool",
|
||||
"target": "Enhanced Leather Armor Boots",
|
||||
"result": "Hacked Leather Armor Boots",
|
||||
"skills": "BE"
|
||||
},
|
||||
{
|
||||
"source": "Clanalizer",
|
||||
"target": "Hacked Leather Armor Boots",
|
||||
"result": "Apocalypse Leather Armor Boots",
|
||||
"skills": "??"
|
||||
}
|
||||
],
|
||||
"details": [
|
||||
{
|
||||
"item": {
|
||||
"id": 245967,
|
||||
"name": "Apocalypse Leather Armor Boots"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": {
|
||||
"id": 245969,
|
||||
"_name": "Apocalypse Leather Armor Gloves"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": {
|
||||
"id": 245975,
|
||||
"_name": "Apocalypse Leather Armor Helmet"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": {
|
||||
"id": 245971,
|
||||
"_name": "Apocalypse Leather Armor Pants"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": {
|
||||
"id": 245973,
|
||||
"_name": "Apocalypse Leather Armor Sleeves"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": {
|
||||
"id": 245965,
|
||||
"_name": "Apocalypse Leather Body Armor"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "Trimmer - Increase Aggressiveness",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "XU-11 Serum",
|
||||
"item_id": 154909
|
||||
},
|
||||
{
|
||||
"alias": "Chemical Impact Injector",
|
||||
"item_id": 142911
|
||||
},
|
||||
{
|
||||
"alias": "Trimmer Casing",
|
||||
"item_id": 154938
|
||||
},
|
||||
{
|
||||
"alias": "Modified Chemical Impact Injector",
|
||||
"item_id": 154911
|
||||
},
|
||||
{
|
||||
"alias": "Trimmer - Increase Aggressiveness",
|
||||
"item_id": 154940
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n#L \"XU-11 Serum\" \"154909\"\n<img src=rdb://100338>\n\n#L \"Chemical Impact Injector\" \"142911\"\n<img src=rdb://130815>\n\n#L \"Trimmer Casing\" \"154938\"\n<img src=rdb://154935>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nXU-11 Serum</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nChemical Impact Injector</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://130814>\n#L \"Modified Chemical Impact Injector\" \"154911\"</font>\n<font color=#FFFF00>Skills: | CH |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nModified Chemical Impact Injector</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nTrimmer Casing</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://12697>\n#L \"Trimmer - Increase Aggressiveness\" \"154940\"</font>\n<font color=#FFFF00>Skills: | ME |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nAn extremely important item for Engineers. Select your bot and use this item. The effect should stay on your pet and make it more aggressive. A level 200 one of these works VERY well for engis when they are taking on 'real mean' and 'ace' mobs."
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"name": "Unhallowed Carapace of the Infernal Tyrant",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Carapace of the Infernal Tyrant (Body)",
|
||||
"item_id": 205957
|
||||
},
|
||||
{
|
||||
"alias": "Bloodseal of the Infernal Tyrant",
|
||||
"item_id": 206196
|
||||
},
|
||||
{
|
||||
"alias": "Unhallowed Carapace of the Infernal Tyrant (Sleeves)",
|
||||
"item_id": 205962
|
||||
},
|
||||
{
|
||||
"alias": "Unhallowed Carapace of the Infernal Tyrant (Body)",
|
||||
"item_id": 205963
|
||||
},
|
||||
{
|
||||
"alias": "Unhallowed Carapace of the Infernal Tyrant (Pants)",
|
||||
"item_id": 205964
|
||||
},
|
||||
{
|
||||
"alias": "Unhallowed Carapace of the Infernal Tyrant (Gloves)",
|
||||
"item_id": 205965
|
||||
},
|
||||
{
|
||||
"alias": "Unhallowed Carapace of the Infernal Tyrant (Boots)",
|
||||
"item_id": 205966
|
||||
},
|
||||
{
|
||||
"alias": "Unhallowed Carapace of the Infernal Tyrant (Helmet)",
|
||||
"item_id": 205967
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\na piece of Carapace of the Infernal Tyrant\n( ie : #L \"Carapace of the Infernal Tyrant (Body)\" \"205957\" )\n<img src=rdb://21977>\n\n#L \"Bloodseal of the Infernal Tyrant\" \"206196\"\n<img src=rdb://25801>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nBloodseal of the Infernal Tyrant</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\na piece of Carapace of the Infernal Tyrant</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://21977>\na piece of Unhallowed Carapace of the Infernal Tyrant</font>\n<font color=#FFFF00>Skills: | ?? |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Details</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n#L \"Unhallowed Carapace of the Infernal Tyrant (Sleeves)\" \"205962\"\n#L \"Unhallowed Carapace of the Infernal Tyrant (Body)\" \"205963\"\n#L \"Unhallowed Carapace of the Infernal Tyrant (Pants)\" \"205964\"\n#L \"Unhallowed Carapace of the Infernal Tyrant (Gloves)\" \"205965\"\n#L \"Unhallowed Carapace of the Infernal Tyrant (Boots)\" \"205966\"\n#L \"Unhallowed Carapace of the Infernal Tyrant (Helmet)\" \"205967\"\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nItems drop inside Inner Sanctum I believe."
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "Veil of the Revoked",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Spirit Tech Circlet of Cerubin",
|
||||
"item_id": 245139
|
||||
},
|
||||
{
|
||||
"alias": "Cloak of the Revoked",
|
||||
"item_id": 245135
|
||||
},
|
||||
{
|
||||
"alias": "Veil of the Revoked",
|
||||
"item_id": 247081
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\n#L \"Spirit Tech Circlet of Cerubin\" \"245139\"\n<img src=rdb://130733>\n\n#L \"Cloak of the Revoked\" \"245135\"\n<img src=rdb://22896>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nSpirit Tech Circlet of Cerubin</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nCloak of the Revoked</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://246888>\n#L \"Veil of the Revoked\" \"247081\"</font>\n<font color=#FFFF00>Skills: | ?? |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nVery nice item for Traders and Enforcers!"
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "Yalmaha Tuning",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Yalmaha XL - 29478",
|
||||
"item_id": 96088
|
||||
},
|
||||
{
|
||||
"alias": "Auto Paint v. 303 - XL Gold Flash",
|
||||
"item_id": 204205
|
||||
},
|
||||
{
|
||||
"alias": "Yalmaha XL Gold Flash - 29478",
|
||||
"item_id": 203293
|
||||
},
|
||||
{
|
||||
"alias": "Auto Paint - Adaga Paint Remover",
|
||||
"item_id": 207719
|
||||
}
|
||||
],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Ingredients</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\na Yalmaha\n( ie : #L \"Yalmaha XL - 29478\" \"117322\" )\n<img src=rdb://38023>\n\na Auto Paint\n( ie : #L \"Auto Paint v. 303 - XL Gold Flash\" \"204205\" )\n<img src=rdb://20403>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Recipe</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nAuto Paint</font>\n<font color=#FFFFFF>+</font><font color=#009B00>\nYalmaha XL - 29478</font>\n<font color=#FFFFFF>=</font><font color=#009B00>\n<img src=rdb://202446>\nPainted Yalmaha\n( ie : #L \"Yalmaha XL Gold Flash - 29478\" \"203292\" )</font>\n<font color=#FFFF00>Skills: | ME,CL |</font><font color=#009B00>\n</font>\n<font color=#FFFF00>------------------------------</font>\n<font color=#FF0000>Comments</font>\n<font color=#FFFF00>------------------------------</font><font color=#009B00>\n\nYou can remove paint by using a #L \"Auto Paint - Adaga Paint Remover\" \"207719\" (in theory), but apparently it doesnt work with all the painted yalms.. like Gold Flash for example."
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "1244 Co - Mathis Multi-Energy Rifle",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n '1244 Co - Mathis Multi-Energy Rifle'\n The Construction kit. must be between Quality Level 41 and 60.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n \n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 62-90\n \n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 174-255\n \n 5. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 164-240\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 102-150\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 102-150\n \n 8. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 133-195\n \n 9. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 164-240\n \n 10. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 164-240\n \n 11. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 82-120"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "1244 Co - Senior Mathis Multi-Energy Rifle",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n '1244 Co - Senior Mathis Multi-Energy Rifle'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 2x Layer. Skill To Assemble: Nano Progra: 242-280\n \n 3. Notum Alloy Strengthened Ribs. Skill To Assemble: Mech. Engi: 302-350\n \n 4. Hyper Carbo-Ceramic Cooling System. Skill To Assemble: Weapon Smt: 484-560\n \n 5. Nano Pylon. Skill To Assemble: Mech. Engi: 302-350\n \n 6. Ultra-Long Composite Barrel. Skill To Assemble: Weapon Smt: 514-595\n \n 7. Nano Pylon. Skill To Assemble: Mech. Engi: 302-350\n \n 8. Energy Pack Interface. Skill To Assemble: Elec. Engi: 484-560\n \n 9. Notum Enriched Nano Paste - 1x Layer. Skill To Assemble: Nano Progra: 182-210\n \n 10. Energy Conduction Rack. Skill To Assemble: Quantum FT: 393-455\n \n 11. Runtime Critical Area Analyzer. Skill To Assemble: Weapon Smt: 484-560"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Abigail",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Abigail'\n The Construction kit. must be between Quality Level 61 and 90.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Explosion Propulsion Containment Chamber. Skill To Assemble: Mech. Engi: 214-315\n \n 3. Notum Enriched Nano Paste - 1x Layer. Skill To Assemble: Nano Progra: 92-135\n \n 4. Nano-Interfaced Cooling System. Skill To Assemble: Weapon Smt: 244-360\n \n 5. Runtime Critical Area Analyzer. Skill To Assemble: Weapon Smt: 244-360\n \n 6. Short Composite Barrel. Skill To Assemble: Weapon Smt: 198-292\n \n 7. Self-Repairing Ultra-X. Skill To Assemble: Weapon Smt: 214-315\n \n 8. Notum Enriched Nano Paste - 2x Layer. Skill To Assemble: Nano Progra: 122-180\n \n 9. Lock and Stock. Skill To Assemble: Weapon Smt: 244-360\n \n 10. Notum Alloy Strengthened Ribs. Skill To Assemble: Mech. Engi: 152-225\n \n 11. Nano Pylon. Skill To Assemble: Mech. Engi: 152-225"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Advanced Abigail",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Advanced Abigail'\n The Construction kit. must be between Quality Level 151 and 180.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 378-450\n \n 3. Nano-Interfaced Cooling System. . SkillTo Assemble: Weapon Smt: 604-720\n \n 4. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 528-630\n \n 5. Self-Repairing Ultra-X. . SkillTo Assemble: Weapon Smt: 528-630\n \n 6. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 604-720\n \n 7. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 491-585\n \n 8. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 302-360\n \n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 378-450\n \n 10. Lock and Stock. . SkillTo Assemble: Weapon Smt: 604-720\n \n 11. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 226-270"
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
{
|
||||
"name": "Arrows",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Chemical Arrowheads",
|
||||
"item_id": 158579
|
||||
},
|
||||
{
|
||||
"alias": "Reet-Tech Metaplast Arrowshafts",
|
||||
"item_id": 158575
|
||||
},
|
||||
{
|
||||
"alias": "Needle of Pine",
|
||||
"item_id": 158593
|
||||
}
|
||||
],
|
||||
"steps": [
|
||||
{
|
||||
"source": "Chemical Arrowheads",
|
||||
"target": "Reet-Tech Metaplast Arrowshafts",
|
||||
"result": "Needle of Pine",
|
||||
"skills": "AG, IN"
|
||||
}
|
||||
],
|
||||
"details": [
|
||||
{
|
||||
"text": "Possible Arrow Heads:"
|
||||
},
|
||||
{
|
||||
"item": {
|
||||
"id": 158579,
|
||||
"_name": "Chemical Arrowheads"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": {
|
||||
"id": 158581,
|
||||
"_name": "Fire Arrowheads"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": {
|
||||
"id": 158583,
|
||||
"_name": "Frost Arrowheads"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": {
|
||||
"id": 158577,
|
||||
"_name": "Poison Arrowheads"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": {
|
||||
"id": 158585,
|
||||
"_name": "Radiation Arrowheads"
|
||||
}
|
||||
},
|
||||
{
|
||||
"text": "Possible Arrow Types:"
|
||||
},
|
||||
{
|
||||
"item": {
|
||||
"id": 158593,
|
||||
"_name": "Needle of Pine"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": {
|
||||
"id": 158591,
|
||||
"_name": "Maple Blaze"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": {
|
||||
"id": 158595,
|
||||
"_name": "Frozen Cherry Blossom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": {
|
||||
"id": 158589,
|
||||
"_name": "Poison Bamboo"
|
||||
}
|
||||
},
|
||||
{
|
||||
"item": {
|
||||
"id": 158597,
|
||||
"_name": "Apple Seed"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Advanced Fiddle Rifle",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Advanced Fiddle Rifle'\n The Construction kit. must be between Quality Level 121 and 150.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Lock and Stock. . SkillTo Assemble: Weapon Smt: 484-600\n \n 3. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-375\n \n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 514-638\n \n 5. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 484-600\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-375\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-375\n \n 8. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 484-600\n \n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-225\n \n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-375\n \n 11. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-300\n \n 12. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 424-525"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Amytlo Executioner",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Amytlo Executioner'\n The Construction kit. must be between Quality Level 41 and 80.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. One Handed Edged Weapons Construction kit.\n \n 2. Medium Handle. . SkillTo Assemble: Weapon Smt: 151-294\n \n 3. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 123-240\n \n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 82-160\n \n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 62-120"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "ANEX - Blue Mathis M-E",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'ANEX - Blue Mathis M-E'\n The Construction kit. must be between Quality Level 141 and 160.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 564-640\n \n 3. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 599-680\n \n 4. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 564-640\n \n 5. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 458-520\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 352-400\n \n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 352-400\n \n 9. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 282-320\n \n 10. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 564-640\n \n 11. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 212-240"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "ANEX - Mathis Multi-Energy Rifle",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'ANEX - Mathis Multi-Energy Rifle'\nThe Construction kit. must be between Quality Level 1 and 20.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 2-30\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 2-40\n\n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50\n\n 5. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 4-80\n\n 6. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 4-85\n\n 7. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 3-65\n\n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 2-50\n\n 9. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 4-80\n\n 10. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 4-80\n\n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 2-50"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "ANEX - Red Mathis M-E",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'ANEX - Red Mathis M-E'\nThe Construction kit. must be between Quality Level 200 and 200.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 3. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 800-800\n\n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 850-850\n\n 5. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 800-800\n\n 6. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 800-800\n\n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 400-400\n\n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 500-500\n\n 9. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 650-650\n\n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 500-500\n\n 11. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 300-300"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "ANEX - Yellow Mathis M-E",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'ANEX - Yellow Mathis M-E'\nThe Construction kit. must be between Quality Level 161 and 199.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 644-796\n\n 3. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 644-796\n\n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 684-846\n\n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498\n\n 6. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 644-796\n\n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 242-298\n\n 8. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 523-647\n\n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 402-498\n\n 10. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 322-398\n\n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 402-498"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Asia Toys - Mathis Multi-Energy Rifle",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Asia Toys - Mathis Multi-Energy Rifle'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Rifle Weapons Construction kit.\n\n 2. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 259-340\n\n 3. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 244-320\n\n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160\n\n 5. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 198-260\n\n 6. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 244-320\n\n 7. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 244-320\n\n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200\n\n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 10. Nano Pylon. . SkillTo Assemble: Mech. Engi: 152-200\n\n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 152-200"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Blackened Blaster",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Blackened Blaster'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Self-Cleaning KO-CR Device. . SkillTo Assemble: Weapon Smt: 424-490\n \n 3. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 514-595\n \n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 8. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 393-455\n \n 9. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 484-560\n \n 10. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 484-560\n \n 11. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 484-560\n \n 12. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n \n 13. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-280"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Blackened Blaster Rifle",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Blackened Blaster Rifle'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n \n 3. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 514-595\n \n 4. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 484-560\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-280\n \n 6. Lock and Stock. . SkillTo Assemble: Weapon Smt: 484-560\n \n 7. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 424-490\n \n 8. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 484-560\n \n 9. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 302-350\n \n 10. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 393-455\n \n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 12. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 272-315\n \n 13. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Blackened Miniblaster",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Blackened Miniblaster'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 5. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 6. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 8. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560\n \n 9. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455\n \n 10. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350"
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "Augmented Hellfury Assault Cannon",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Hellfury Assault Cannon",
|
||||
"item_id": 153977
|
||||
},
|
||||
{
|
||||
"alias": "Pulsing Notum Disruptor",
|
||||
"item_id": 202280
|
||||
},
|
||||
{
|
||||
"alias": "Augmented Hellfury Assault Cannon",
|
||||
"item_id": 202278
|
||||
}
|
||||
],
|
||||
"steps": [
|
||||
{
|
||||
"source": "Pulsing Notum Disruptor",
|
||||
"target": "Hellfury Assault Cannon",
|
||||
"result": "Augmented Hellfury Assault Cannon",
|
||||
"skills": "BE"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Blackhole Mk IX",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Blackhole Mk IX'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560\n \n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 4. Ultra-Long Composite Barrel. SkillTo Assemble: Weapon Smt: 514 -> 595\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 7. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 302 -> 350\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 10. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Chunkprojector",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Chunkprojector'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 3. Lock and Stock. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 4. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 9. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 454 -> 525\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 11. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 12. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Disaffiliation Sniper",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Disaffiliation Sniper'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 3. Auto Targeting Computer -IIR 2-Groper-. . SkillTo Assemble: Elec. Engi: 302-350\n \n 4. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 484-560\n \n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 514-595\n \n 6. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 424-490\n \n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n \n 8. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 10. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-280\n \n 11. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 484-560\n \n 12. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 302-350\n \n 13. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 14. Lock and Stock. . SkillTo Assemble: Weapon Smt: 484-560"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced E-Beamer",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced E-Beamer'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 3. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 8. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 302 -> 350\n \n 9. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 10. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455\n \n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 12. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 13. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 14. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Electron-Charged Pistol",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Electron-Charged Pistol'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 3. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 6. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 7. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455\n \n 8. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 10. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 484 -> 560"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Flamethrower",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Flamethrower'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 3. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 5. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 514 -> 595\n \n 6. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 10. Auto Targeting Computer -IIR 1. SkillTo Assemble: Elec. Engi: 272 -> 315\n \n 11. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 484 -> 560\n \n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Grenade-Thrower",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Grenade-Thrower'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Grenades Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 6. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 7. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 302 -> 350\n \n 8. Poison Chemical Combination Chamber. SkillTo Assemble: Chemistry: 484 -> 560\n \n 9. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 363 -> 420"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Heavy Grinner",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Heavy Grinner'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 3. Lock and Stock. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 8. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 514 -> 595\n \n 9. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 424 -> 490\n \n 10. Composite Barrel. SkillTo Assemble: Weapon Smt: 454 -> 525\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 12. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 424 -> 490"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Heavy Lead Sprayer",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Heavy Lead Sprayer'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 514 -> 595\n \n 3. Lock and Stock. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 4. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 544 -> 630\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 6. Composite Barrel. SkillTo Assemble: Weapon Smt: 454 -> 525\n \n 7. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 424 -> 490\n \n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 9. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Kolt 58 Magnum",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Kolt 58 Magnum'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 3. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 4. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 5. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 9. Lock and Stock. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 10. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 11. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 424 -> 490\n \n 12. Composite Barrel. SkillTo Assemble: Weapon Smt: 454 -> 525"
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "Augmented Hellspinner Shock Cannon",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Contained Anti-Matter Generator",
|
||||
"item_id": 201942
|
||||
},
|
||||
{
|
||||
"alias": "Hellspinner Shock Cannon",
|
||||
"item_id": 153976
|
||||
},
|
||||
{
|
||||
"alias": "Augmented Hellspinner Shock Cannon",
|
||||
"item_id": 201939
|
||||
}
|
||||
],
|
||||
"steps": [
|
||||
{
|
||||
"source": "Contained Anti-Matter Generator",
|
||||
"target": "Hellspinner Shock Cannon",
|
||||
"result": "Augmented Hellspinner Shock Cannon",
|
||||
"skills": "BE"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Kolt PDW-37",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Kolt PDW-37'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 4. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 7. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 514 -> 595\n \n 8. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 9. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560\n \n 10. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455\n \n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Light Beamer Pistol",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Light Beamer Pistol'\n The Construction kit. must be between Quality Level 131 and 146.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 524 -> 584\n \n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 262 -> 292\n \n 3. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 524 -> 584\n \n 4. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 426 -> 474\n \n 5. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 426 -> 474\n \n 6. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 524 -> 584\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 196 -> 219\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 328 -> 365\n \n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 458 -> 511\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 328 -> 365"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Mausser Particle Streamer",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Mausser Particle Streamer'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 514-595\n \n 3. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 514-595\n \n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 242-280\n \n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 8. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n \n 9. Lock and Stock. . SkillTo Assemble: Weapon Smt: 484-560\n \n 10. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 424-490\n \n 11. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 272-315\n \n 12. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Megajolt",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Megajolt'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Composite Barrel. SkillTo Assemble: Weapon Smt: 454 -> 525\n \n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 6. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 302 -> 350\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 9. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 10. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560\n \n 11. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 13. Auto Targeting Computer -IIR 2-Groper-. SkillTo Assemble: Elec. Engi: 302 -> 350"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Mini-Shotgun",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Mini-Shotgun'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 454 -> 525\n \n 3. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 4. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 6. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 8. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 9. Nano-Interfaced Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 10. Lock and Stock. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Minigrinner",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Minigrinner'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 363 -> 420\n \n 3. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 4. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 5. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 544 -> 630\n \n 6. Lock and Stock. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 7. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 514 -> 595\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 11. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 424 -> 490\n \n 12. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Plasmaprojector",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Plasmaprojector'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560\n \n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 4. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 8. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 302 -> 350\n \n 9. Runtime Critical Area Analyzer. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 10. Long Composite Barrel. SkillTo Assemble: Weapon Smt: 484 -> 560"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Sleekblaster",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Sleekblaster'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 3. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 4. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560\n \n 5. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 9. Composite Barrel. SkillTo Assemble: Weapon Smt: 454 -> 525\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 11. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 12. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 13. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Sleekblaster Major",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Sleekblaster Major'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 3. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560\n \n 4. Composite Barrel. SkillTo Assemble: Weapon Smt: 454 -> 525\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 7. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 9. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 10. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 12. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 13. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Sleekblaster Minor",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Sleekblaster Minor'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 3. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 4. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 484 -> 560\n \n 5. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 6. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 7. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n \n 10. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280"
|
||||
}
|
||||
@@ -0,0 +1,75 @@
|
||||
{
|
||||
"name": "Barter Armor Boots",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Notum Fragment",
|
||||
"item_id": 136624
|
||||
},
|
||||
{
|
||||
"alias": "Nano Programming Interface",
|
||||
"item_id": 161699
|
||||
},
|
||||
{
|
||||
"alias": "Inactive OT Metamorphing Liquid Nanobots",
|
||||
"item_id": 164952
|
||||
},
|
||||
{
|
||||
"alias": "Activated OT Metamorphing Liquid Nanobots",
|
||||
"item_id": 164954
|
||||
},
|
||||
{
|
||||
"alias": "Stabilized OT Metamorphing Liquid Nanobots",
|
||||
"item_id": 164956
|
||||
},
|
||||
{
|
||||
"alias": "Super-Stabilized OT Metamorphing Liquid Nanobots",
|
||||
"item_id": 164958
|
||||
},
|
||||
{
|
||||
"alias": "Augmented Nano Armor Boots",
|
||||
"item_id": 21805
|
||||
},
|
||||
{
|
||||
"alias": "Barter Armor Boots",
|
||||
"item_id": 164934
|
||||
}
|
||||
],
|
||||
"steps": [
|
||||
{
|
||||
"source": "Nano Programming Interface",
|
||||
"target": "Inactive OT Metamorphing Liquid Nanobots",
|
||||
"result": "Activated OT Metamorphing Liquid Nanobots",
|
||||
"skills": "NP, CH"
|
||||
},
|
||||
{
|
||||
"source": "Notum Fragment",
|
||||
"target": "Activated OT Metamorphing Liquid Nanobots",
|
||||
"result": "Stabilized OT Metamorphing Liquid Nanobots",
|
||||
"skills": "NP, CH"
|
||||
},
|
||||
{
|
||||
"source": "Notum Fragment",
|
||||
"target": "Stabilized OT Metamorphing Liquid Nanobots",
|
||||
"result": "Super-Stabilized OT Metamorphing Liquid Nanobots",
|
||||
"skills": "NP, CH"
|
||||
},
|
||||
{
|
||||
"source": "Super-Stabilized OT Metamorphing Liquid Nanobots",
|
||||
"target": "Augmented Nano Armor Boots",
|
||||
"result": "Barter Armor Boots",
|
||||
"skills": "NP, CH"
|
||||
}
|
||||
],
|
||||
"details": [
|
||||
{
|
||||
"text": "Alternative for the Notum Fragments:"
|
||||
},
|
||||
{
|
||||
"item": {
|
||||
"id": 136622,
|
||||
"_name": "Notum Chip"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Subturbine",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Subturbine'\nThe Construction kit. must be between Quality Level 121 and 140.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n\n 2. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 514 -> 595\n\n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n\n 4. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 424 -> 490\n\n 5. Lock and Stock. SkillTo Assemble: Weapon Smt: 484 -> 560\n\n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n\n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n\n 8. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210\n\n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 424 -> 490\n\n 10. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n\n 11. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n\n 12. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 393 -> 455\n\n 13. Gyro Stabilizing Unit. SkillTo Assemble: Weapon Smt: 544 -> 630\n\n 14. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 302 -> 350\n\n 15. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Supernova Mk VI",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Supernova Mk VI'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Energy Weapons Construction kit.\n \n 2. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 514-595\n \n 3. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 393-455\n \n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 5. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 484-560\n \n 6. Auto Targeting Computer -IIR 4 -Ultra-. . SkillTo Assemble: Elec. Engi: 363-420\n \n 7. Auto Targeting C. -IIR 5 -Powermolder-. . SkillTo Assemble: Elec. Engi: 393-455\n \n 8. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 484-560\n \n 9. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n \n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 12. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Suppressor",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Suppressor'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 182-210\n \n 3. Lock and Stock. . SkillTo Assemble: Weapon Smt: 484-560\n \n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 5. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 514-595\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 302-350\n \n 7. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350\n \n 8. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 544-630\n \n 9. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 424-490\n \n 10. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 514-595\n \n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 302-350"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Balanced Triplejolt",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Balanced Triplejolt'\n The Construction kit. must be between Quality Level 121 and 140.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 3. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 424 -> 490\n \n 4. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 6. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 484 -> 560\n \n 7. Radioactive Isotope Fusion System. SkillTo Assemble: Quantum FT: 484 -> 560\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 242 -> 280\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 302 -> 350\n \n 10. Ultra Short Composite Barrel. SkillTo Assemble: Weapon Smt: 363 -> 420\n \n 11. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 393 -> 455\n \n 12. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 182 -> 210"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Blackened Blaster",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blackened Blaster'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 263-325\n \n 3. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 324-400\n \n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250\n \n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250\n \n 6. Self-Cleaning KO-CR Device. . SkillTo Assemble: Weapon Smt: 284-350\n \n 7. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 324-400\n \n 8. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 122-150\n \n 9. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 344-425\n \n 10. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 324-400\n \n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250\n \n 12. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 162-200\n \n 13. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Blackened Blaster Rifle",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blackened Blaster Rifle'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 263-325\n \n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 162-200\n \n 4. Lock and Stock. . SkillTo Assemble: Weapon Smt: 324-400\n \n 5. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 284-350\n \n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 202-250\n \n 7. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 344-425\n \n 8. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 324-400\n \n 9. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 324-400\n \n 10. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 202-250\n \n 11. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 122-150\n \n 12. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 182-225\n \n 13. Nano Pylon. . SkillTo Assemble: Mech. Engi: 202-250"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Blackhole Mk IX",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blackhole Mk IX'\n The Construction kit. must be between Quality Level 81 and 100.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 2. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 3. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 324 -> 400\n \n 4. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 324 -> 400\n \n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 122 -> 150\n \n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 162 -> 200\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 8. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 202 -> 250\n \n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 202 -> 250\n \n 11. Ultra-Long Composite Barrel. SkillTo Assemble: Weapon Smt: 344 -> 425\n \n 12. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 263 -> 325"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Bladestaff",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Bladestaff'\n The Construction kit. must be between Quality Level 47 and 69.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Two Handed Edged Weapons Construction kit.\n \n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 94-138\n \n 3. 4x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 141-207\n \n 4. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 118-172\n \n 5. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 141-207\n \n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 70-104\n \n 7. 2h Edged Cluster - Faded (Waist). . SkillTo Assemble: Nano Progra: 47-69\n \n 8. 8x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 164-242\n \n 9. Medium Handle. . SkillTo Assemble: Weapon Smt: 173-254"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Blunt Mini Axe",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blunt Mini Axe'\n The Construction kit. must be between Quality Level 61 and 80.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. One Handed Edged Weapons Construction kit.\n \n 2. Short Handle. . SkillTo Assemble: Weapon Smt: 214-280\n \n 3. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 183-240\n \n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n \n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Blunt Notum Spear",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blunt Notum Spear'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 183-240\n\n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 4. Medium Handle. . SkillTo Assemble: Weapon Smt: 224-294\n\n 5. Energy Impact Super Conductor. . SkillTo Assemble: Elec. Engi: 244-320\n\n 6. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160\n\n 7. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 152-200"
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
{
|
||||
"name": "Basic Nano Kit/Recharger",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Notum Pellet",
|
||||
"item_id": 207478
|
||||
},
|
||||
{
|
||||
"alias": "Jensen Personal Ore Extractor",
|
||||
"item_id": 150275
|
||||
},
|
||||
{
|
||||
"alias": "Refined Notum Pellet",
|
||||
"item_id": 207480
|
||||
},
|
||||
{
|
||||
"alias": "Refined Notum Pellet",
|
||||
"item_id": 207480
|
||||
},
|
||||
{
|
||||
"alias": "Semi-Finished Nano Kit",
|
||||
"item_id": 207503
|
||||
},
|
||||
{
|
||||
"alias": "Semi-Finished Nano Recharger",
|
||||
"item_id": 207505
|
||||
},
|
||||
{
|
||||
"alias": "Basic Nano Recharger",
|
||||
"item_id": 25820
|
||||
},
|
||||
{
|
||||
"alias": "Simple Nano Kit",
|
||||
"item_id": 85366
|
||||
}
|
||||
],
|
||||
"steps": [
|
||||
{
|
||||
"source": "Jensen Personal Ore Extractor",
|
||||
"target": "Notum Pellet",
|
||||
"result": "Refined Notum Pellet"
|
||||
},
|
||||
{
|
||||
"source": "Refined Notum Pellet",
|
||||
"target": "Semi-Finished Nano Kit",
|
||||
"result": "Simple Nano Kit"
|
||||
},
|
||||
{
|
||||
"source": "Refined Notum Pellet",
|
||||
"target": "Semi-Finished Nano Recharger",
|
||||
"result": "Basic Nano Recharger"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Blunt Notum Staff",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blunt Notum Staff'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Two Handed Blunt Weapons Construction kit.\n\n 2. Basic Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 137-180\n\n 3. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 152-200\n\n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 5. 4x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 274-360\n\n 6. 8x Layer Carbon-Notum Alloy Rod. . SkillTo Assemble: Weapon Smt: 290-380\n\n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160\n\n 8. Short Handle. . SkillTo Assemble: Weapon Smt: 214-280"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Blunt Right Slice",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blunt Right Slice'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. One Handed Edged Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 3. Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 183-240\n\n 4. Short Handle. . SkillTo Assemble: Weapon Smt: 214-280\n\n 5. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Blunt Slank Chop",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blunt Slank Chop'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. Piercing Weapons Construction kit.\n\n 2. Hyper-Optimized Co-Weapon Interface. . SkillTo Assemble: Comp. Liter: 244-320\n\n 3. Short Handle. . SkillTo Assemble: Weapon Smt: 214-280\n\n 4. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 122-160\n\n 5. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 92-120\n\n 6. 4x Layer Carbon-Notum Alloy Blade. . SkillTo Assemble: Weapon Smt: 183-240"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Blunt Whings",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Blunt Whings'\nThe Construction kit. must be between Quality Level 61 and 80.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\n Add in following order:\n\n 1. Two Handed Edged Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 244 -> 320\n\n 2. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 152 -> 200\n\n 3. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 122 -> 160\n\n 4. 8x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 214 -> 280\n\n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 92 -> 120\n\n 6. 4x Layer Carbon-Notum Alloy Blade. SkillTo Assemble: Weapon Smt: 183 -> 240\n\n 7. Long Handle. SkillTo Assemble: Weapon Smt: 229 -> 300\n\n 8. Optimized Co-Weapon Interface. SkillTo Assemble: Comp. Liter: 183 -> 240"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Bolter Cannon IX 42mm",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Bolter Cannon IX 42mm'\nThe Construction kit. must be between Quality Level 162 and 184.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. AssaultRifle Weapons Construction kit.\n\n 2. Lock and Stock. . SkillTo Assemble: Weapon Smt: 648-736\n\n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 324-368\n\n 4. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 364-414\n\n 5. Nano Pylon. . SkillTo Assemble: Mech. Engi: 405-460\n\n 6. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 405-460\n\n 7. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 526-598\n\n 8. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 729-828\n\n 9. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 567-644\n\n 10. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 243-276\n\n 11. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 648-736\n\n 12. Nano Pylon. . SkillTo Assemble: Mech. Engi: 405-460\n\n 13. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 688-782\n\n 14. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 405-460"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Bolter Cannon XX 42mm",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Bolter Cannon XX 42mm'\nThe Construction kit. must be between Quality Level 185 and 199.\nAll other pieces must be of AT LEAST that level range... \nAdd them using shift+right-click.\nAdd the pieces in the following order:\n\n 1. AssaultRifle Weapons Construction kit.\n\n 2. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 370-398\n\n 3. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 416-448\n\n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 462-498\n\n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 462-498\n\n 6. Short Composite Barrel. . SkillTo Assemble: Weapon Smt: 601-647\n\n 7. Gyro Stabilizing Unit. . SkillTo Assemble: Weapon Smt: 832-896\n\n 8. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 648-696\n\n 9. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 278-298\n\n 10. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 740-796\n\n 11. Nano Pylon. . SkillTo Assemble: Mech. Engi: 462-498\n\n 12. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 786-846\n\n 13. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 462-498\n\n 14. Lock and Stock. . SkillTo Assemble: Weapon Smt: 740-796"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Cast-Off Blackened Blaster",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Blackened Blaster'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 3. Self-Cleaning KO-CR Device. . SkillTo Assemble: Weapon Smt: 74-140\n \n 4. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 89-170\n \n 5. Energy Pack Interface. . SkillTo Assemble: Elec. Engi: 84-160\n \n 6. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n \n 7. Hyper Carbo-Ceramic Cooling System. . SkillTo Assemble: Weapon Smt: 84-160\n \n 8. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 9. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 68-130\n \n 10. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 84-160\n \n 11. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 12. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-80\n \n 13. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Cast-Off Blackened Blaster Rifle",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Blackened Blaster Rifle'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 47-90\n \n 3. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-80\n \n 4. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 5. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 89-170\n \n 6. Lock and Stock. . SkillTo Assemble: Weapon Smt: 84-160\n \n 7. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n \n 8. Rapid-Reload-And-Fire Gyro. . SkillTo Assemble: Weapon Smt: 84-160\n \n 9. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 84-160\n \n 10. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 11. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 52-100\n \n 12. Energy Conduction Rack. . SkillTo Assemble: Quantum FT: 68-130\n \n 13. Jandawit Cleanup Cluster. . SkillTo Assemble: Weapon Smt: 74-140"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Cast-Off Blackened Miniblaster",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Blackened Miniblaster'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 3. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 4. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 84 -> 160\n \n 5. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 6. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 7. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 68 -> 130\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 9. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 10. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 11. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 68 -> 130"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Cast-Off Blackhole Mk IX",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Blackhole Mk IX'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 68 -> 130\n \n 3. Ultra-Long Composite Barrel. SkillTo Assemble: Weapon Smt: 89 -> 170\n \n 4. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 52 -> 100\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 6. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 10. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 12. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 84 -> 160"
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
{
|
||||
"name": "Basic Treatment Laboratory/First-Aid Kit",
|
||||
"author": "",
|
||||
"items": [
|
||||
{
|
||||
"alias": "Blood Plasma",
|
||||
"item_id": 154359
|
||||
},
|
||||
{
|
||||
"alias": "Semi-Finished Treatment Laboratory",
|
||||
"item_id": 206738
|
||||
},
|
||||
{
|
||||
"alias": "Semi-Finished First-Aid Kit",
|
||||
"item_id": 206734
|
||||
},
|
||||
{
|
||||
"alias": "Double Charge of Blood Plasma",
|
||||
"item_id": 206736
|
||||
},
|
||||
{
|
||||
"alias": "Basic Treatment Laboratory",
|
||||
"item_id": 206736
|
||||
},
|
||||
{
|
||||
"alias": "Double Charge of Blood Plasma",
|
||||
"item_id": 206736
|
||||
},
|
||||
{
|
||||
"alias": "Treatment Laboratory",
|
||||
"item_id": 206736
|
||||
},
|
||||
{
|
||||
"alias": "Basic First-Aid Kit",
|
||||
"item_id": 23316
|
||||
}
|
||||
],
|
||||
"steps": [
|
||||
{
|
||||
"source": "Blood Plasma",
|
||||
"target": "Blood Plasma",
|
||||
"result": "Double Charge of Blood Plasma"
|
||||
},
|
||||
{
|
||||
"source": "Double Charge of Blood Plasma",
|
||||
"target": "Semi-Finished Treatment Laboratory",
|
||||
"result": "Treatment Laboratory"
|
||||
},
|
||||
{
|
||||
"source": "Blood Plasma",
|
||||
"target": "Semi-Finished First-Aid Kit",
|
||||
"result": "Basic First-Aid Kit"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Cast-Off Chunkprojector",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Chunkprojector'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Shotgun Weapons Construction kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Lock and Stock. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 3. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 68 -> 130\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 5. Explosion Propulsion Containment Chamber. SkillTo Assemble: Quantum FT: 79 -> 150\n \n 6. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 10. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 11. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 12. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Cast-Off Disaffiliation Sniper",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Disaffiliation Sniper'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Rifle Weapons Construction kit.\n \n 2. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 74-140\n \n 3. Notum Enriched Nano Paste - 4x Layer. . SkillTo Assemble: Nano Progra: 52-100\n \n 4. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n \n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 6. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 7. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 8. Auto Targeting Computer -IIR 2-Groper-. . SkillTo Assemble: Elec. Engi: 52-100\n \n 9. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 10. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 89-170\n \n 11. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-80\n \n 12. Primitive Freon Bag Cooling System. . SkillTo Assemble: Weapon Smt: 84-160\n \n 13. Runtime Critical Area Analyzer. . SkillTo Assemble: Weapon Smt: 84-160\n \n 14. Lock and Stock. . SkillTo Assemble: Weapon Smt: 84-160"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Cast-Off E-Beamer",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off E-Beamer'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Energy Weapons Construction kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 3. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 84 -> 160\n \n 4. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 68 -> 130\n \n 5. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 68 -> 130\n \n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 7. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 9. Notum Enriched Nano Paste - 4x Layer. SkillTo Assemble: Nano Progra: 52 -> 100\n \n 10. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 11. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 12. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 13. Flake Tubing Base Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 14. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Cast-Off Electron-Charged Pistol",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Electron-Charged Pistol'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 3. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 68 -> 130\n \n 4. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 7. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 8. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 68 -> 130\n \n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 10. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 84 -> 160"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Cast-Off Flamethrower",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Flamethrower'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. AssaultRifle Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 3. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 68 -> 130\n \n 4. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 5. Auto Targeting Computer -IIR 1. SkillTo Assemble: Elec. Engi: 47 -> 90\n \n 6. Primitive Freon Bag Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 9. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 10. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 84 -> 160\n \n 11. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 12. Compression Chamber for Chemicals. SkillTo Assemble: Weapon Smt: 89 -> 170"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Cast-Off Heavy Grinner",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Heavy Grinner'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 89 -> 170\n \n 3. Lock and Stock. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 4. Composite Barrel. SkillTo Assemble: Weapon Smt: 79 -> 150\n \n 5. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 6. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 74 -> 140\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 10. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 11. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 12. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 74 -> 140"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Cast-Off Kolt 58 Magnum",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Kolt 58 Magnum'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 3. Composite Barrel. SkillTo Assemble: Weapon Smt: 79 -> 150\n \n 4. Explosion Propulsion Containment Chamber. SkillTo Assemble: Mech. Engi: 74 -> 140\n \n 5. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 6. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 7. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 9. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 10. Jandawit Cleanup Cluster. SkillTo Assemble: Weapon Smt: 74 -> 140\n \n 11. Lock and Stock. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 12. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Cast-Off Kolt PDW-37",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Kolt PDW-37'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 2. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 84 -> 160\n \n 3. Nano Pylon. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 4. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 68 -> 130\n \n 5. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 32 -> 60\n \n 6. Triple Pulse Enabler. SkillTo Assemble: Weapon Smt: 89 -> 170\n \n 7. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 52 -> 100\n \n 8. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 68 -> 130\n \n 9. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 42 -> 80\n \n 10. Energy Pack Interface. SkillTo Assemble: Elec. Engi: 84 -> 160\n \n 11. Rapid-Reload-And-Fire Gyro. SkillTo Assemble: Weapon Smt: 84 -> 160"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Cast-Off Light Beamer Pistol",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Light Beamer Pistol'\n The Construction kit. must be between Quality Level 51 and 66.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add in following order:\n \n 1. Pistol Weapons Construction Kit. SkillTo Assemble: Weapon Smt: 204 -> 264\n \n 2. Hyper Carbo-Ceramic Cooling System. SkillTo Assemble: Weapon Smt: 204 -> 264\n \n 3. Plasma Streamer Interface Nozzle. SkillTo Assemble: Chemistry: 204 -> 264\n \n 4. Notum Enriched Nano Paste - 1x Layer. SkillTo Assemble: Nano Progra: 76 -> 99\n \n 5. Short Composite Barrel. SkillTo Assemble: Weapon Smt: 166 -> 214\n \n 6. Notum Enriched Nano Paste - 2x Layer. SkillTo Assemble: Nano Progra: 102 -> 132\n \n 7. Energy Conduction Rack. SkillTo Assemble: Quantum FT: 166 -> 214\n \n 8. Nano Pylon. SkillTo Assemble: Mech. Engi: 128 -> 165\n \n 9. Notum Alloy Strengthened Ribs. SkillTo Assemble: Mech. Engi: 128 -> 165\n \n 10. Self-Cleaning KO-CR Device. SkillTo Assemble: Weapon Smt: 178 -> 231"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Cast-Off Mausser Particle Streamer",
|
||||
"author": "",
|
||||
"items": [],
|
||||
"steps": [],
|
||||
"details": [],
|
||||
"raw": "<font color=#009B00>\n\nThis Instruction Manual will teach you how to assemble a:\n 'Cast-Off Mausser Particle Streamer'\n The Construction kit. must be between Quality Level 21 and 40.\n All other pieces must be of AT LEAST that level range... \n Add them using shift+right-click.\n Add the pieces in the following order:\n \n 1. Submachinegun Weapons Construction kit.\n \n 2. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 3. Notum Enriched Nano Paste - 1x Layer. . SkillTo Assemble: Nano Progra: 32-60\n \n 4. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 5. Notum Alloy Strengthened Ribs. . SkillTo Assemble: Mech. Engi: 52-100\n \n 6. Explosion Propulsion Containment Chamber. . SkillTo Assemble: Mech. Engi: 74-140\n \n 7. Notum Enriched Nano Paste - 2x Layer. . SkillTo Assemble: Nano Progra: 42-80\n \n 8. Ultra-Long Composite Barrel. . SkillTo Assemble: Weapon Smt: 89-170\n \n 9. Nano Pylon. . SkillTo Assemble: Mech. Engi: 52-100\n \n 10. Triple Pulse Enabler. . SkillTo Assemble: Weapon Smt: 89-170\n \n 11. Auto Targeting Computer -IIR 1. . SkillTo Assemble: Elec. Engi: 47-90\n \n 12. Lock and Stock. . SkillTo Assemble: Weapon Smt: 84-160"
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user