Power Fist
item (goes in tools json file):
{
“id”: “power_fist”,
“type”: “TOOL”,
“symbol”: “#”,
“color”: “light_gray”,
“name”: “power fist (off)”,
“name_plural”: “power fists (off)”,
“description”: “This is an experimental weapon made from steel and high-quality electronic components and sensors, designed to significantly increase the power and accuracy of unarmed attacks.”,
“price”: 150000,
“material”: [“steel”],
“weight”: 2300,
“volume”: 4,
“bashing”: 10,
“to_hit”: 0,
“max_charges”: 200,
“initial_charges”: 200,
“charges_per_use”: 1,
“turns_per_charge”: 0,
“ammo”: “battery”,
“revert_to”: “null”,
“use_action”: {
“type”: “transform”,
“msg”: “You turn the power fist on.”,
“target”: “power_fist_on”,
“active”: true,
“need_charges”: 1,
“need_charges_msg”: “The power fist’s batteries are dead.”
}
},
{
“id”: “power_fist_on”,
“type”: “TOOL”,
“symbol”: “#”,
“color”: “light_gray”,
“name”: “power fist (on)”,
“name_plural”: “power fists (on)”,
“description”: “This is an experimental weapon made from steel and high-quality electronic components and sensors, designed to significantly increase the power and accuracy of unarmed attacks.”,
“price”: 150000,
“material”: [“steel”],
“flags” : [“UNARMED_WEAPON”, “DURABLE_MELEE”],
“weight”: 1300,
“volume”: 4,
“bashing”: 24,
“to_hit”: 3,
“max_charges”: 200,
“initial_charges”: 200,
“charges_per_use”: 0,
“turns_per_charge”: 2,
“ammo”: “battery”,
“revert_to”: “power_fist”,
“use_action”: {
“type”: “transform”,
“msg”: “You turn the power fist off.”,
“target”: “power_fist”
}
},
basic recipe (goes in weapon recipes):
{
“type” : “recipe”,
“result”: “power_fist”,
“category”: “CC_WEAPON”,
“subcategory”: “CSC_WEAPON_BASHING”,
“skill_used”: “electronics”,
“skills_required”: [ “electronics”, 5 ],
“difficulty”: 7,
“time”: 150000,
“reversible”: false,
“autolearn”: false,
“book_learn”: [[ “advanced_electronics”, 3 ] , [ “textbook_electronics”, 3 ] , [ “textbook_anarch”, 4 ]],
“qualities”:[
{“id”:“SAW_M_FINE”,“level”:1,“amount”:1},
{“id”:“SCREW”,“level”:1,“amount”:1},
{“id”:“WRENCH”,“level”:1,“amount”:1}
], “tools”: [
[
[ “soldering_iron”, 100 ],
[ “toolset”, 50 ],
[ “small_repairkit”, 70 ],
[ “large_repairkit”, 60 ],
[ “oxy_torch”, 15 ],
[ “welder”, 30 ],
[ “welder_crude”, 75 ]
]
],
“components”: [
[
[ “steel_chunk”, 6 ]
],
[
[ “power_supply”, 2 ]
],
[
[ “amplifier”, 2 ]
],
[
[ “scrap”, 6 ]
],
[
[ “cable”, 15 ]
],
[
[“spring”, 2]
],
[
[“circuit”, 4]
],
[
[“e_scrap”, 6]
]
]
},
Ripper
item (goes in tools json file):
{
“id”: “ripper”,
“type”: “TOOL”,
“symbol”: “)”,
“color”: “light_gray”,
“name”: “ripper (off)”,
“name_plural”: “rippers (off)”,
“description”: “This is an electric carver that has been modified for melee combat. It features improved handling, durability, and increased battery capacity over the electric carver.”,
“price”: 50000,
“material”: [“steel”],
“weight”: 970,
“volume”: 6,
“bashing”: 6,
“cutting”: 3,
“to_hit”: 1,
“max_charges”: 200,
“initial_charges”: 200,
“charges_per_use”: 1,
“turns_per_charge”: 0,
“ammo”: “battery”,
“revert_to”: “null”,
“use_action”: {
“type”: “transform”,
“msg”: “You turn the ripper on.”,
“target”: “ripper_on”,
“active”: true,
“need_charges”: 1,
“need_charges_msg”: “The ripper’s batteries are dead.”
}
},
{
“id”: “ripper_on”,
“type”: “TOOL”,
“symbol”: “)”,
“color”: “red”,
“name”: “ripper (on)”,
“name_plural”: “rippers (on)”,
“description”: “This is an electric carver that has been modified for melee combat. It features improved handling, durability, and increased battery capacity over the electric carver.”,
“price”: 50000,
“material”: [“steel”],
“flags” : [“DURABLE_MELEE”],
“weight”: 970,
“volume”: 6,
“bashing”: 6,
“cutting”: 24,
“to_hit”: 1,
“max_charges”: 200,
“initial_charges”: 200,
“charges_per_use”: 0,
“turns_per_charge”: 6,
“ammo”: “battery”,
“revert_to”: “ripper”,
“use_action”: {
“type”: “transform”,
“msg”: “You turn the ripper off.”,
“target”: “ripper”
}
},
basic recipe (goes in weapon recipes json file):
{
“type” : “recipe”,
“result”: “ripper”,
“category”: “CC_WEAPON”,
“subcategory”: “CSC_WEAPON_CUTTING”,
“skill_used”: “fabrication”,
“skills_required”: [ “fabrication”, 3 ],
“difficulty”: 3,
“time”: 25000,
“reversible”: true,
“autolearn”: false,
“book_learn”: [[ “advanced_electronics”, 3 ] , [ “textbook_electronics”, 3 ] , [ “textbook_anarch”, 4 ]],
“qualities”:[
{“id”:“SAW_M_FINE”,“level”:1,“amount”:1}
], “tools”: [
[
[ “soldering_iron”, 10 ],
[ “toolset”, 10 ],
[ “small_repairkit”, 10 ],
[ “large_repairkit”, 5 ]
]
],
“components”: [
[
[ “pipe”, 1 ]
],
[
[ “power_supply”, 1 ]
],
[
[ “amplifier”, 1 ]
],
[
[ “scrap”, 6 ]
],
[
[ “cable”, 20 ]
],
[
[“carver_off”, 1]
]
]
},