Created
July 13, 2022 12:49
-
-
Save Stuyk/b5eb7cb32ed350704dfb3adb8958d8d3 to your computer and use it in GitHub Desktop.
O:RP Item List
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as alt from 'alt'; | |
| export const ITEM_TEMPLATES = { | |
| almondseeds: { | |
| name: 'Almond Seeds', | |
| key: 'almondseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_grass_02_a' | |
| } | |
| }, | |
| appleseeds: { | |
| name: 'Apple Seeds', | |
| key: 'appleseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_orange' | |
| } | |
| }, | |
| arrowhead: { | |
| name: 'Arrowhead', | |
| key: 'arrowhead', | |
| base: 'artifact', | |
| icon: 'arrowhead', | |
| props: { | |
| description: 'A crudely fashioned knife. Might be worth something.' | |
| } | |
| }, | |
| asparagusseeds: { | |
| name: 'Asparagus Seeds', | |
| key: 'asparagusseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_plant_01a' | |
| } | |
| }, | |
| avocadoseeds: { | |
| name: 'Avocado Seeds', | |
| key: 'avocadoseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_orange' | |
| } | |
| }, | |
| axe: { | |
| name: 'Rusty Axe', | |
| key: 'axe', | |
| base: 'axe', | |
| icon: 'axe', | |
| props: { | |
| lvl: { | |
| skill: 'woodcutting', | |
| requirement: 0, | |
| bonus: 0 | |
| }, | |
| propData: { | |
| name: 'prop_tool_fireaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| } | |
| } | |
| }, | |
| bananaseeds: { | |
| name: 'Banana Seeds', | |
| key: 'bananaseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_orange' | |
| } | |
| }, | |
| beetseeds: { | |
| name: 'Beet Seeds', | |
| key: 'beetseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_plant_fern_01a' | |
| } | |
| }, | |
| bodyarmour: { | |
| name: 'Body Armour', | |
| key: 'bodyarmour', | |
| base: 'bodyarmour', | |
| icon: 'body-armour', | |
| props: {} | |
| }, | |
| boundweapon: { | |
| name: '', | |
| key: 'boundweapon', | |
| base: 'boundweapon', | |
| icon: 'weapon', | |
| props: {} | |
| }, | |
| bracelet: { | |
| name: 'Bracelet', | |
| key: 'bracelet', | |
| base: 'bracelet', | |
| icon: 'bracelet', | |
| props: {} | |
| }, | |
| burger: { | |
| name: 'Burger', | |
| key: 'burger', | |
| base: 'food', | |
| icon: 'burger', | |
| props: { | |
| health: 2 | |
| } | |
| }, | |
| cabbageseeds: { | |
| name: 'Cabbage Seeds', | |
| key: 'cabbageseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_03_cab' | |
| } | |
| }, | |
| candy: { | |
| name: 'Candy Bar', | |
| key: 'candy', | |
| base: 'food', | |
| icon: 'chocolate-bar', | |
| props: { | |
| health: 2 | |
| } | |
| }, | |
| carrotseeds: { | |
| name: 'Carrot Seeds', | |
| key: 'carrotseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_02' | |
| } | |
| }, | |
| cherryseeds: { | |
| name: 'Cherry Seeds', | |
| key: 'cherryseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_orange' | |
| } | |
| }, | |
| coffee: { | |
| name: 'Coffee', | |
| key: 'coffee', | |
| base: 'food', | |
| icon: 'soda', | |
| props: { | |
| skillbonus: [ | |
| { | |
| skill: 'agility', | |
| level: 1, | |
| time: 60000 | |
| } | |
| ], | |
| health: 2 | |
| } | |
| }, | |
| cookedfood: { | |
| name: '', | |
| key: 'cookedfood', | |
| base: 'cookedfood', | |
| icon: 'can', | |
| props: { | |
| health: 0 | |
| } | |
| }, | |
| cosmo: { | |
| name: 'Cosmopolitan', | |
| key: 'cosmo', | |
| base: 'alcohol', | |
| icon: 'liquor', | |
| props: {} | |
| }, | |
| cuffs: { | |
| name: 'Cuffs', | |
| key: 'cuffs', | |
| base: 'cuffs', | |
| icon: 'cuffs', | |
| props: {} | |
| }, | |
| darkbeer: { | |
| name: 'Dark Beer', | |
| key: 'darkbeer', | |
| base: 'alcohol', | |
| icon: 'beer', | |
| props: {} | |
| }, | |
| defibrillator: { | |
| name: 'Defibrillator', | |
| key: 'defibrillator', | |
| base: 'defibrillator', | |
| icon: 'defibrillator', | |
| props: { | |
| description: 'A medical device for reviving downed players.' | |
| } | |
| }, | |
| diamond: { | |
| name: 'Diamond', | |
| key: 'diamond', | |
| base: 'artifact', | |
| icon: 'ruby', | |
| props: { | |
| description: 'A very rare gem.' | |
| } | |
| }, | |
| dice: { | |
| name: 'Dice', | |
| key: 'dice', | |
| base: 'dice', | |
| icon: 'dice', | |
| props: {} | |
| }, | |
| driverslicense: { | |
| name: 'Drivers License', | |
| key: 'driverslicense', | |
| base: 'license', | |
| icon: 'id-card', | |
| props: {} | |
| }, | |
| earrings: { | |
| name: 'Earrings', | |
| key: 'earrings', | |
| base: 'earrings', | |
| icon: 'earring', | |
| props: {} | |
| }, | |
| emeraldcluster: { | |
| name: 'Emerald Cluster', | |
| key: 'emeraldcluster', | |
| base: 'artifact', | |
| icon: 'ruby', | |
| props: { | |
| description: 'A cluster of emeralds.' | |
| } | |
| }, | |
| fishingrod: { | |
| name: 'Rusty Fishing Rod', | |
| key: 'fishingrod', | |
| base: 'fishingrod', | |
| icon: 'fishingrod', | |
| props: { | |
| lvl: { | |
| skill: 'fishing', | |
| requirement: 0, | |
| bonus: 0 | |
| }, | |
| propData: { | |
| name: 'prop_fishing_rod_01', | |
| bone: 18905, | |
| x: 0.1, | |
| y: 0.05, | |
| z: 0, | |
| pitch: 80, | |
| roll: 120, | |
| yaw: 160 | |
| } | |
| } | |
| }, | |
| garlicseeds: { | |
| name: 'Garlic Seeds', | |
| key: 'garlicseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_04_leaf' | |
| } | |
| }, | |
| gascan: { | |
| name: 'Gas Can', | |
| key: 'gascan', | |
| base: 'gascan', | |
| icon: 'jerrycan', | |
| props: { | |
| description: 'Use this to refuel your vehicle.' | |
| } | |
| }, | |
| glasses: { | |
| name: 'Glasses', | |
| key: 'glasses', | |
| base: 'glasses', | |
| icon: 'glasses', | |
| props: {} | |
| }, | |
| goldenmask: { | |
| name: 'Golden Mask', | |
| key: 'goldenmask', | |
| base: 'artifact', | |
| icon: 'maskartifact', | |
| props: { | |
| description: 'An ancient rare golden mask. Might be worth a lot.' | |
| } | |
| }, | |
| granolabar: { | |
| name: 'Granola Bar', | |
| key: 'granolabar', | |
| base: 'food', | |
| icon: 'chocolate-bar', | |
| props: { | |
| health: 5 | |
| } | |
| }, | |
| grapeseeds: { | |
| name: 'Grape Seeds', | |
| key: 'grapeseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_04_leaf' | |
| } | |
| }, | |
| gunlicense: { | |
| name: 'Gun License', | |
| key: 'gunlicense', | |
| base: 'gunlicense', | |
| icon: 'gunlicense', | |
| props: { | |
| description: 'You may legally hold firearms.' | |
| } | |
| }, | |
| hammer: { | |
| name: 'Rusty Hammer', | |
| key: 'hammer', | |
| base: 'hammer', | |
| icon: 'hammer', | |
| props: { | |
| lvl: { | |
| skill: 'smithing', | |
| requirement: 0, | |
| bonus: 0 | |
| }, | |
| propData: { | |
| name: 'prop_tool_mallet', | |
| bone: 57005, | |
| x: 0.1, | |
| y: 0.1, | |
| z: 0, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 180 | |
| } | |
| } | |
| }, | |
| hand: { | |
| name: 'Hand', | |
| key: 'hand', | |
| base: 'hand', | |
| icon: 'hand', | |
| props: {} | |
| }, | |
| hat: { | |
| name: 'Hat', | |
| key: 'hat', | |
| base: 'hat', | |
| icon: 'hat', | |
| props: {} | |
| }, | |
| helmet: { | |
| name: 'Helmet', | |
| key: 'helmet', | |
| base: 'helmet', | |
| icon: 'hat', | |
| props: {} | |
| }, | |
| herbseeds: { | |
| name: 'Herb Seeds', | |
| key: 'herbseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_plant_fern_02a' | |
| } | |
| }, | |
| hotdog: { | |
| name: 'Hot Dog', | |
| key: 'hotdog', | |
| base: 'food', | |
| icon: 'sausage', | |
| props: { | |
| health: 2 | |
| } | |
| }, | |
| ingredient: { | |
| name: '', | |
| key: 'ingredient', | |
| base: 'ingredient', | |
| icon: '', | |
| props: {} | |
| }, | |
| ipabeer: { | |
| name: 'IPA Beer', | |
| key: 'ipabeer', | |
| base: 'alcohol', | |
| icon: 'beer', | |
| props: {} | |
| }, | |
| jalapenoseeds: { | |
| name: 'Jalapeno Seeds', | |
| key: 'jalapenoseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_02' | |
| } | |
| }, | |
| jug: { | |
| name: 'Empty Jug', | |
| key: 'jug', | |
| base: 'generic', | |
| icon: 'jug', | |
| props: {} | |
| }, | |
| lemondrop: { | |
| name: 'Lemon Drop', | |
| key: 'lemondrop', | |
| base: 'alcohol', | |
| icon: 'liquor', | |
| props: {} | |
| }, | |
| lemonseeds: { | |
| name: 'Lemon Seeds', | |
| key: 'lemonseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_orange' | |
| } | |
| }, | |
| lightbeer: { | |
| name: 'Light Beer', | |
| key: 'lightbeer', | |
| base: 'alcohol', | |
| icon: 'beer', | |
| props: {} | |
| }, | |
| manhatten: { | |
| name: 'Manhatten', | |
| key: 'manhatten', | |
| base: 'alcohol', | |
| icon: 'liquor', | |
| props: {} | |
| }, | |
| margarita: { | |
| name: 'Margarita', | |
| key: 'margarita', | |
| base: 'alcohol', | |
| icon: 'liquor', | |
| props: {} | |
| }, | |
| mask: { | |
| name: 'Mask', | |
| key: 'mask', | |
| base: 'mask', | |
| icon: 'bandana', | |
| props: {} | |
| }, | |
| medkit: { | |
| name: 'Medical Kit', | |
| key: 'medkit', | |
| base: 'medkit', | |
| icon: 'medical-pack', | |
| props: {} | |
| }, | |
| megaphone: { | |
| name: 'Megaphone', | |
| key: 'megaphone', | |
| base: 'megaphone', | |
| icon: 'megaphone', | |
| props: { | |
| propData: { | |
| name: 'prop_megaphone_01', | |
| bone: 6286, | |
| x: 0.05, | |
| y: 0.01, | |
| z: 0, | |
| pitch: -100, | |
| roll: 0, | |
| yaw: 0 | |
| } | |
| } | |
| }, | |
| moscowmule: { | |
| name: 'Moscow Mule', | |
| key: 'moscowmule', | |
| base: 'alcohol', | |
| icon: 'liquor', | |
| props: {} | |
| }, | |
| mushroomseeds: { | |
| name: 'Mushroom Seeds', | |
| key: 'mushroomseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_04_leaf' | |
| } | |
| }, | |
| oldfashioned: { | |
| name: 'Old Fashioned', | |
| key: 'oldfashioned', | |
| base: 'alcohol', | |
| icon: 'liquor', | |
| props: {} | |
| }, | |
| onionseeds: { | |
| name: 'Onion Seeds', | |
| key: 'onionseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_04_leaf' | |
| } | |
| }, | |
| orangeseeds: { | |
| name: 'Orange Seeds', | |
| key: 'orangeseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_orange' | |
| } | |
| }, | |
| palealebeer: { | |
| name: 'Pale Ale Beer', | |
| key: 'palealebeer', | |
| base: 'alcohol', | |
| icon: 'beer', | |
| props: {} | |
| }, | |
| pants: { | |
| name: 'Pants', | |
| key: 'pants', | |
| base: 'pants', | |
| icon: 'trousers', | |
| props: {} | |
| }, | |
| peachseeds: { | |
| name: 'Peach Seeds', | |
| key: 'peachseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_orange' | |
| } | |
| }, | |
| phone: { | |
| name: 'Phone', | |
| key: 'phone', | |
| base: 'phone', | |
| icon: 'phone', | |
| props: { | |
| description: 'You can text by typing /t <number>' | |
| } | |
| }, | |
| phonebook: { | |
| name: 'Phone Book', | |
| key: 'phonebook', | |
| base: 'phonebook', | |
| icon: 'phonebook', | |
| props: { | |
| description: 'You can lookup a number by typing: /phonebook' | |
| } | |
| }, | |
| pickaxe: { | |
| name: 'Rusty Pickaxe', | |
| key: 'pickaxe', | |
| base: 'pickaxe', | |
| icon: 'pickaxe', | |
| props: { | |
| lvl: { | |
| skill: 'mining', | |
| requirement: 0, | |
| bonus: 0 | |
| }, | |
| propData: { | |
| name: 'prop_tool_pickaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| } | |
| } | |
| }, | |
| potatoseeds: { | |
| name: 'Potato Seeds', | |
| key: 'potatoseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_02' | |
| } | |
| }, | |
| prehistorictool: { | |
| name: 'Prehistoric Tool', | |
| key: 'prehistorictool', | |
| base: 'artifact', | |
| icon: 'brokentool', | |
| props: { | |
| description: 'An old tool used for chopping wood. Might be worth something.' | |
| } | |
| }, | |
| pumpkinseeds: { | |
| name: 'Pumpkin Seeds', | |
| key: 'pumpkinseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_03_pump' | |
| } | |
| }, | |
| rawfish: { | |
| name: '', | |
| key: 'rawfish', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 0 | |
| } | |
| }, | |
| refinedkevlarium: { | |
| name: 'Refined Kevlarium', | |
| key: 'refinedkevlarium', | |
| base: 'refineddrug', | |
| icon: 'pills', | |
| props: { | |
| armour: 8, | |
| health: -8, | |
| description: "You'll feel invincibile!" | |
| } | |
| }, | |
| refinedmetal: { | |
| name: 'Refined Metal', | |
| key: 'refinedmetal', | |
| base: 'refined', | |
| icon: 'metal', | |
| props: { | |
| description: 'A core material for crafting tools, weapons, etc.' | |
| } | |
| }, | |
| refinedvigorium: { | |
| name: 'Refined Vigorium', | |
| key: 'refinedvigorium', | |
| base: 'refineddrug', | |
| icon: 'syringe', | |
| props: { | |
| skillbonus: [ | |
| { | |
| skill: 'agility', | |
| level: 5, | |
| time: 60000 | |
| } | |
| ], | |
| health: -8, | |
| description: 'Run faster! Longer! Quicker!' | |
| } | |
| }, | |
| refinedwood: { | |
| name: 'Refined Wood', | |
| key: 'refinedwood', | |
| base: 'refined', | |
| icon: 'planks', | |
| props: { | |
| description: 'A core material for crafting tools, weapons, etc.' | |
| } | |
| }, | |
| repairkit: { | |
| name: 'Repair Kit', | |
| key: 'repairkit', | |
| base: 'repairkit', | |
| icon: 'auto-repair', | |
| props: { | |
| description: 'Use to this to repair your vehicle.' | |
| } | |
| }, | |
| rope: { | |
| name: 'Bundle of Rope', | |
| key: 'rope', | |
| base: 'rope', | |
| icon: 'rope', | |
| props: {} | |
| }, | |
| rubycluster: { | |
| name: 'Ruby Cluster', | |
| key: 'rubycluster', | |
| base: 'artifact', | |
| icon: 'ruby', | |
| props: { | |
| description: 'A cluster of rubies.' | |
| } | |
| }, | |
| sapphirecluster: { | |
| name: 'Sapphire Cluster', | |
| key: 'sapphirecluster', | |
| base: 'artifact', | |
| icon: 'ruby', | |
| props: { | |
| description: 'A cluster of sapphires.' | |
| } | |
| }, | |
| shirt: { | |
| name: 'Shirt', | |
| key: 'shirt', | |
| base: 'shirt', | |
| icon: 'shirt', | |
| props: {} | |
| }, | |
| shoes: { | |
| name: 'Shoes', | |
| key: 'shoes', | |
| base: 'shoes', | |
| icon: 'chelsea-boot', | |
| props: {} | |
| }, | |
| sidecar: { | |
| name: 'Sidecar', | |
| key: 'sidecar', | |
| base: 'alcohol', | |
| icon: 'liquor', | |
| props: {} | |
| }, | |
| soda: { | |
| name: 'Soda', | |
| key: 'soda', | |
| base: 'food', | |
| icon: 'soda', | |
| props: { | |
| health: 3 | |
| } | |
| }, | |
| strawberryseeds: { | |
| name: 'Strawberry Seeds', | |
| key: 'strawberryseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_02' | |
| } | |
| }, | |
| sugarcaneseeds: { | |
| name: 'Sugar Cane Seeds', | |
| key: 'sugarcaneseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_plant_fern_01a' | |
| } | |
| }, | |
| suspiciouspackage: { | |
| name: 'Suspicious Package', | |
| key: 'suspiciouspackage', | |
| base: 'suspiciouspackage', | |
| icon: 'package', | |
| props: { | |
| description: 'A suspicious illegal package.' | |
| } | |
| }, | |
| tomatoseeds: { | |
| name: 'Tomato Seeds', | |
| key: 'tomatoseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_02' | |
| } | |
| }, | |
| unrefinedkevlarium: { | |
| name: 'Unrefined Kevlarium', | |
| key: 'unrefinedkevlarium', | |
| base: 'unrefined', | |
| icon: 'leaf', | |
| props: { | |
| description: 'An Unrefined Base Drug' | |
| } | |
| }, | |
| unrefinedmetal: { | |
| name: 'Unrefined Metal', | |
| key: 'unrefinedmetal', | |
| base: 'unrefined', | |
| icon: 'rock', | |
| props: {} | |
| }, | |
| unrefinedvigorium: { | |
| name: 'Unrefined Vigorium Seeds', | |
| key: 'unrefinedvigorium', | |
| base: 'unrefined', | |
| icon: 'seeds', | |
| props: { | |
| description: 'An Unrefined Base Drug' | |
| } | |
| }, | |
| unrefinedwood: { | |
| name: 'Unrefined Wood', | |
| key: 'unrefinedwood', | |
| base: 'unrefined', | |
| icon: 'wood', | |
| props: {} | |
| }, | |
| watch: { | |
| name: 'Watch', | |
| key: 'watch', | |
| base: 'watch', | |
| icon: 'watch', | |
| props: {} | |
| }, | |
| waterjug: { | |
| name: 'Water Jug', | |
| key: 'waterjug', | |
| base: 'ingredient', | |
| icon: 'waterjug', | |
| props: {} | |
| }, | |
| weapon: { | |
| name: '', | |
| key: 'weapon', | |
| base: 'weapon', | |
| icon: 'weapon', | |
| props: {} | |
| }, | |
| weaponbarrel: { | |
| name: 'Weapon Barrel', | |
| key: 'weaponbarrel', | |
| base: 'weaponpart', | |
| icon: 'weaponbarrel', | |
| props: {} | |
| }, | |
| weaponclip: { | |
| name: 'Weapon Clip', | |
| key: 'weaponclip', | |
| base: 'weaponpart', | |
| icon: 'weaponclip', | |
| props: {} | |
| }, | |
| weaponstock: { | |
| name: 'Weapon Stock', | |
| key: 'weaponstock', | |
| base: 'weaponpart', | |
| icon: 'weaponstock', | |
| props: {} | |
| }, | |
| wheatseeds: { | |
| name: 'Wheat Seeds', | |
| key: 'wheatseeds', | |
| base: 'seeds', | |
| icon: 'seeds', | |
| props: { | |
| model: 'prop_veg_crop_04' | |
| } | |
| }, | |
| whiskeysour: { | |
| name: 'Whiskey Sour', | |
| key: 'whiskeysour', | |
| base: 'alcohol', | |
| icon: 'liquor', | |
| props: {} | |
| }, | |
| almond: { | |
| name: 'Almonds', | |
| key: 'almond', | |
| base: 'ingredient', | |
| icon: 'almond', | |
| props: {} | |
| }, | |
| apple: { | |
| name: 'Apples', | |
| key: 'apple', | |
| base: 'ingredient', | |
| icon: 'apple', | |
| props: {} | |
| }, | |
| asparagus: { | |
| name: 'Asparagus', | |
| key: 'asparagus', | |
| base: 'ingredient', | |
| icon: 'asparagus', | |
| props: {} | |
| }, | |
| avocado: { | |
| name: 'Avocados', | |
| key: 'avocado', | |
| base: 'ingredient', | |
| icon: 'avocado', | |
| props: {} | |
| }, | |
| banana: { | |
| name: 'Bananas', | |
| key: 'banana', | |
| base: 'ingredient', | |
| icon: 'banana', | |
| props: {} | |
| }, | |
| beet: { | |
| name: 'Beets', | |
| key: 'beet', | |
| base: 'ingredient', | |
| icon: 'beet', | |
| props: {} | |
| }, | |
| butter: { | |
| name: 'Butter', | |
| key: 'butter', | |
| base: 'ingredient', | |
| icon: 'butter', | |
| props: {} | |
| }, | |
| cabbage: { | |
| name: 'Cabbages', | |
| key: 'cabbage', | |
| base: 'ingredient', | |
| icon: 'cabbage', | |
| props: {} | |
| }, | |
| cheese: { | |
| name: 'Cheese', | |
| key: 'cheese', | |
| base: 'ingredient', | |
| icon: 'cheese', | |
| props: {} | |
| }, | |
| carrot: { | |
| name: 'Carrots', | |
| key: 'carrot', | |
| base: 'ingredient', | |
| icon: 'carrot', | |
| props: {} | |
| }, | |
| cherry: { | |
| name: 'Cherries', | |
| key: 'cherry', | |
| base: 'ingredient', | |
| icon: 'cherry', | |
| props: {} | |
| }, | |
| corn: { | |
| name: 'Corn', | |
| key: 'corn', | |
| base: 'ingredient', | |
| icon: 'corn', | |
| props: {} | |
| }, | |
| garlic: { | |
| name: 'Garlic', | |
| key: 'garlic', | |
| base: 'ingredient', | |
| icon: 'garlic', | |
| props: {} | |
| }, | |
| grain: { | |
| name: 'Grain', | |
| key: 'grain', | |
| base: 'ingredient', | |
| icon: 'grain', | |
| props: {} | |
| }, | |
| grape: { | |
| name: 'Grapes', | |
| key: 'grape', | |
| base: 'ingredient', | |
| icon: 'grape', | |
| props: {} | |
| }, | |
| herbs: { | |
| name: 'Herbs', | |
| key: 'herbs', | |
| base: 'ingredient', | |
| icon: 'herbs', | |
| props: {} | |
| }, | |
| jalapeno: { | |
| name: 'Jalapenos', | |
| key: 'jalapeno', | |
| base: 'ingredient', | |
| icon: 'jalapeno', | |
| props: {} | |
| }, | |
| lemon: { | |
| name: 'Lemon', | |
| key: 'lemon', | |
| base: 'ingredient', | |
| icon: 'lemon', | |
| props: {} | |
| }, | |
| mushroom: { | |
| name: 'Mushrooms', | |
| key: 'mushroom', | |
| base: 'ingredient', | |
| icon: 'mushroom', | |
| props: {} | |
| }, | |
| onion: { | |
| name: 'Onions', | |
| key: 'onion', | |
| base: 'ingredient', | |
| icon: 'onion', | |
| props: {} | |
| }, | |
| orange: { | |
| name: 'Oranges', | |
| key: 'orange', | |
| base: 'ingredient', | |
| icon: 'orange', | |
| props: {} | |
| }, | |
| peach: { | |
| name: 'Peaches', | |
| key: 'peach', | |
| base: 'ingredient', | |
| icon: 'peach', | |
| props: {} | |
| }, | |
| potato: { | |
| name: 'Potatos', | |
| key: 'potato', | |
| base: 'ingredient', | |
| icon: 'potato', | |
| props: {} | |
| }, | |
| pumpkin: { | |
| name: 'Pumpkin', | |
| key: 'pumpkin', | |
| base: 'ingredient', | |
| icon: 'pumpkin', | |
| props: {} | |
| }, | |
| salt: { | |
| name: 'Salt', | |
| key: 'salt', | |
| base: 'ingredient', | |
| icon: 'salt', | |
| props: {} | |
| }, | |
| spices: { | |
| name: 'Spices', | |
| key: 'spices', | |
| base: 'ingredient', | |
| icon: 'spices', | |
| props: {} | |
| }, | |
| strawberry: { | |
| name: 'Strawberries', | |
| key: 'strawberry', | |
| base: 'ingredient', | |
| icon: 'strawberry', | |
| props: {} | |
| }, | |
| sugar: { | |
| name: 'Sugar', | |
| key: 'sugar', | |
| base: 'ingredient', | |
| icon: 'sugar', | |
| props: {} | |
| }, | |
| sugarcane: { | |
| name: 'Sugarcane', | |
| key: 'sugarcane', | |
| base: 'ingredient', | |
| icon: 'sugarcane', | |
| props: {} | |
| }, | |
| tomato: { | |
| name: 'Tomato', | |
| key: 'tomato', | |
| base: 'ingredient', | |
| icon: 'tomato', | |
| props: {} | |
| }, | |
| watermelon: { | |
| name: 'Watermelon', | |
| key: 'watermelon', | |
| base: 'ingredient', | |
| icon: 'watermelon', | |
| props: {} | |
| }, | |
| wheat: { | |
| name: 'Wheat', | |
| key: 'wheat', | |
| base: 'ingredient', | |
| icon: 'wheat', | |
| props: {} | |
| }, | |
| yeast: { | |
| name: 'Yeast', | |
| key: 'yeast', | |
| base: 'ingredient', | |
| icon: 'yeast', | |
| props: {} | |
| }, | |
| // Food | |
| bread: { | |
| name: 'Bread', | |
| key: 'bread', | |
| base: 'cookedfood', | |
| icon: 'bread', | |
| props: { | |
| health: 5 | |
| } | |
| }, | |
| garlicbread: { | |
| name: 'Garlic Bread', | |
| key: 'garlicbread', | |
| base: 'cookedfood', | |
| icon: 'garlicbread', | |
| props: { | |
| health: 5 | |
| } | |
| }, | |
| carrotjuice: { | |
| name: 'Carrot Juice', | |
| key: 'carrotjuice', | |
| base: 'cookedfood', | |
| icon: 'carrotjuice', | |
| props: { | |
| health: 5 | |
| } | |
| }, | |
| salsa: { | |
| name: 'Salsa', | |
| key: 'salsa', | |
| base: 'cookedfood', | |
| icon: 'salsa', | |
| props: { | |
| health: 5 | |
| } | |
| }, | |
| beetjuice: { | |
| name: 'Beet Juice', | |
| key: 'beetjuice', | |
| base: 'cookedfood', | |
| icon: 'beetjuice', | |
| props: { | |
| health: 5 | |
| } | |
| }, | |
| stuffedavocado: { | |
| name: 'Stuffed Avocado', | |
| key: 'stuffedavocado', | |
| base: 'cookedfood', | |
| icon: 'stuffedavocado', | |
| props: { | |
| health: 5 | |
| } | |
| }, | |
| summersalad: { | |
| name: 'Summer Salad', | |
| key: 'summersalad', | |
| base: 'cookedfood', | |
| icon: 'summersalad', | |
| props: { | |
| health: 5 | |
| } | |
| }, | |
| garlicfish: { | |
| name: 'Garlic Fish', | |
| key: 'garlicfish', | |
| base: 'cookedfood', | |
| icon: 'garlicfish', | |
| props: { | |
| health: 6 | |
| } | |
| }, | |
| roastedcorn: { | |
| name: 'Roasted Corn', | |
| key: 'roastedcorn', | |
| base: 'cookedfood', | |
| icon: 'roastedcorn', | |
| props: { | |
| health: 6 | |
| } | |
| }, | |
| lemonfish: { | |
| name: 'Lemon Fish', | |
| key: 'lemonfish', | |
| base: 'cookedfood', | |
| icon: 'lemonfish', | |
| props: { | |
| health: 7 | |
| } | |
| }, | |
| candiedalmonds: { | |
| name: 'Candied Almonds', | |
| key: 'candiedalmonds', | |
| base: 'cookedfood', | |
| icon: 'candiedalmonds', | |
| props: { | |
| health: 7 | |
| } | |
| }, | |
| mushroomburger: { | |
| name: 'Mushroom Burger', | |
| key: 'mushroomburger', | |
| base: 'cookedfood', | |
| icon: 'mushroomburger', | |
| props: { | |
| health: 8 | |
| } | |
| }, | |
| pizzadough: { | |
| name: 'Pizza Dough', | |
| key: 'pizzadough', | |
| base: 'cookedfood', | |
| icon: 'pizzadough', | |
| props: { | |
| health: 9 | |
| } | |
| }, | |
| fishpizza: { | |
| name: 'Fish Pizza', | |
| key: 'fishpizza', | |
| base: 'cookedfood', | |
| icon: 'fishpizza', | |
| props: { | |
| health: 9 | |
| } | |
| }, | |
| mushroompizza: { | |
| name: 'Mushroom Pizza', | |
| key: 'mushroompizza', | |
| base: 'cookedfood', | |
| icon: 'mushroompizza', | |
| props: { | |
| health: 10 | |
| } | |
| }, | |
| shrimpscampi: { | |
| name: 'Shrimp Scampi', | |
| key: 'shrimpscampi', | |
| base: 'cookedfood', | |
| icon: 'shrimpscampi', | |
| props: { | |
| health: 11 | |
| } | |
| }, | |
| fishsandwich: { | |
| name: 'Fish Sandwich', | |
| key: 'fishsandwich', | |
| base: 'cookedfood', | |
| icon: 'fishsandwich', | |
| props: { | |
| health: 12 | |
| } | |
| }, | |
| mushroomsandwich: { | |
| name: 'Mushroom Sandwich', | |
| key: 'mushroomsandwich', | |
| base: 'cookedfood', | |
| icon: 'mushroomsandwich', | |
| props: { | |
| health: 13 | |
| } | |
| }, | |
| roastedmushrooms: { | |
| name: 'Roasted Mushrooms', | |
| key: 'roastedmushrooms', | |
| base: 'cookedfood', | |
| icon: 'roastedmushrooms', | |
| props: { | |
| health: 14 | |
| } | |
| }, | |
| roastedstuffedmushrooms: { | |
| name: 'Roasted Stuffed Mushrooms', | |
| key: 'roastedstuffedmushrooms', | |
| base: 'cookedfood', | |
| icon: 'roastedstuffedmushrooms', | |
| props: { | |
| health: 15 | |
| } | |
| }, | |
| summerlemonfish: { | |
| name: 'Summer Lemon Fish', | |
| key: 'summerlemonfish', | |
| base: 'cookedfood', | |
| icon: 'summerlemonfish', | |
| props: { | |
| health: 16 | |
| } | |
| }, | |
| mushroomcalzone: { | |
| name: 'Mushroom Calzone', | |
| key: 'mushroomcalzone', | |
| base: 'cookedfood', | |
| icon: 'mushroomcalzone', | |
| props: { | |
| health: 17 | |
| } | |
| }, | |
| garlicmushroomsandwich: { | |
| name: 'Garlic Mushroom Sandwich', | |
| key: 'garlicmushroomsandwich', | |
| base: 'cookedfood', | |
| icon: 'garlicmushroomsandwich', | |
| props: { | |
| health: 17 | |
| } | |
| }, | |
| salsafish: { | |
| name: "Salsa'd Fish", | |
| key: 'salsafish', | |
| base: 'cookedfood', | |
| icon: 'salsafish', | |
| props: { | |
| health: 18 | |
| } | |
| }, | |
| fishtacos: { | |
| name: 'Fish Tacos', | |
| key: 'fishtacos', | |
| base: 'cookedfood', | |
| icon: 'fishtacos', | |
| props: { | |
| health: 18 | |
| } | |
| }, | |
| friedfish: { | |
| name: 'Fried Fish', | |
| key: 'friedfish', | |
| base: 'cookedfood', | |
| icon: 'friedfish', | |
| props: { | |
| health: 19 | |
| } | |
| }, | |
| fishdinner: { | |
| name: 'Fish Dinner', | |
| key: 'fishdinner', | |
| base: 'cookedfood', | |
| icon: 'fishdinner', | |
| props: { | |
| health: 20 | |
| } | |
| }, | |
| peachsmoothie: { | |
| name: 'Peach Smoothie', | |
| key: 'peachsmoothie', | |
| base: 'cookedfood', | |
| icon: 'peachsmoothie', | |
| props: { | |
| health: 21 | |
| } | |
| }, | |
| candiedpeaches: { | |
| name: 'Candied Peaches', | |
| key: 'candiedpeaches', | |
| base: 'cookedfood', | |
| icon: 'candiedpeaches', | |
| props: { | |
| health: 22 | |
| } | |
| }, | |
| fishburger: { | |
| name: 'Fish Burger', | |
| key: 'fishburger', | |
| base: 'cookedfood', | |
| icon: 'fishburger', | |
| props: { | |
| health: 23 | |
| } | |
| }, | |
| cornsalsa: { | |
| name: 'Corn Salsa', | |
| key: 'cornsalsa', | |
| base: 'cookedfood', | |
| icon: 'cornsalsa', | |
| props: { | |
| health: 24 | |
| } | |
| }, | |
| friedfishtacos: { | |
| name: 'Fried Fish Tacos', | |
| key: 'friedfishtacos', | |
| base: 'cookedfood', | |
| icon: 'friedfishtacos', | |
| props: { | |
| health: 27 | |
| } | |
| }, | |
| fishandchips: { | |
| name: 'Fish and Chips', | |
| key: 'fishandchips', | |
| base: 'cookedfood', | |
| icon: 'fishandchips', | |
| props: { | |
| health: 28 | |
| } | |
| }, | |
| pickaxe0: { | |
| name: 'Rusty Pickaxe', | |
| key: 'pickaxe0', | |
| base: 'pickaxe', | |
| icon: 'pickaxe', | |
| props: { | |
| lvl: { | |
| skill: 'mining', | |
| requirement: 1, | |
| bonus: 0 | |
| }, | |
| propData: { | |
| name: 'prop_tool_pickaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 1500 | |
| } | |
| }, | |
| axe0: { | |
| name: 'Rusty Axe', | |
| key: 'axe0', | |
| base: 'axe', | |
| icon: 'axe', | |
| props: { | |
| lvl: { | |
| skill: 'woodcutting', | |
| requirement: 1, | |
| bonus: 0 | |
| }, | |
| propData: { | |
| name: 'prop_tool_fireaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 1500 | |
| } | |
| }, | |
| hammer0: { | |
| name: 'Rusty Hammer', | |
| key: 'hammer0', | |
| base: 'hammer', | |
| icon: 'hammer', | |
| props: {} | |
| }, | |
| fishingrod0: { | |
| name: 'Rusty Fishing Rod', | |
| key: 'fishingrod0', | |
| base: 'fishingrod', | |
| icon: 'fishingrod', | |
| props: { | |
| lvl: { | |
| skill: 'fishing', | |
| requirement: 1, | |
| bonus: 0 | |
| }, | |
| propData: { | |
| name: 'prop_fishing_rod_01', | |
| bone: 18905, | |
| x: 0.1, | |
| y: 0.05, | |
| z: 0, | |
| pitch: 80, | |
| roll: 120, | |
| yaw: 160 | |
| }, | |
| durability: 1500 | |
| } | |
| }, | |
| pickaxe1: { | |
| name: 'Oxidized Pickaxe', | |
| key: 'pickaxe1', | |
| base: 'pickaxe', | |
| icon: 'pickaxe', | |
| props: { | |
| lvl: { | |
| skill: 'mining', | |
| requirement: 10, | |
| bonus: 1 | |
| }, | |
| propData: { | |
| name: 'prop_tool_pickaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 6000 | |
| } | |
| }, | |
| axe1: { | |
| name: 'Oxidized Axe', | |
| key: 'axe1', | |
| base: 'axe', | |
| icon: 'axe', | |
| props: { | |
| lvl: { | |
| skill: 'woodcutting', | |
| requirement: 10, | |
| bonus: 1 | |
| }, | |
| propData: { | |
| name: 'prop_tool_fireaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 6000 | |
| } | |
| }, | |
| hammer1: { | |
| name: 'Oxidized Hammer', | |
| key: 'hammer1', | |
| base: 'hammer', | |
| icon: 'hammer', | |
| props: {} | |
| }, | |
| fishingrod1: { | |
| name: 'Oxidized Fishing Rod', | |
| key: 'fishingrod1', | |
| base: 'fishingrod', | |
| icon: 'fishingrod', | |
| props: { | |
| lvl: { | |
| skill: 'fishing', | |
| requirement: 10, | |
| bonus: 0 | |
| }, | |
| propData: { | |
| name: 'prop_fishing_rod_01', | |
| bone: 18905, | |
| x: 0.1, | |
| y: 0.05, | |
| z: 0, | |
| pitch: 80, | |
| roll: 120, | |
| yaw: 160 | |
| }, | |
| durability: 6000 | |
| } | |
| }, | |
| pickaxe2: { | |
| name: 'Used Pickaxe', | |
| key: 'pickaxe2', | |
| base: 'pickaxe', | |
| icon: 'pickaxe', | |
| props: { | |
| lvl: { | |
| skill: 'mining', | |
| requirement: 20, | |
| bonus: 2 | |
| }, | |
| propData: { | |
| name: 'prop_tool_pickaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 11000 | |
| } | |
| }, | |
| axe2: { | |
| name: 'Used Axe', | |
| key: 'axe2', | |
| base: 'axe', | |
| icon: 'axe', | |
| props: { | |
| lvl: { | |
| skill: 'woodcutting', | |
| requirement: 20, | |
| bonus: 2 | |
| }, | |
| propData: { | |
| name: 'prop_tool_fireaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 11000 | |
| } | |
| }, | |
| hammer2: { | |
| name: 'Used Hammer', | |
| key: 'hammer2', | |
| base: 'hammer', | |
| icon: 'hammer', | |
| props: {} | |
| }, | |
| fishingrod2: { | |
| name: 'Used Fishing Rod', | |
| key: 'fishingrod2', | |
| base: 'fishingrod', | |
| icon: 'fishingrod', | |
| props: { | |
| lvl: { | |
| skill: 'fishing', | |
| requirement: 20, | |
| bonus: 1 | |
| }, | |
| propData: { | |
| name: 'prop_fishing_rod_01', | |
| bone: 18905, | |
| x: 0.1, | |
| y: 0.05, | |
| z: 0, | |
| pitch: 80, | |
| roll: 120, | |
| yaw: 160 | |
| }, | |
| durability: 11000 | |
| } | |
| }, | |
| pickaxe3: { | |
| name: 'Decayed Pickaxe', | |
| key: 'pickaxe3', | |
| base: 'pickaxe', | |
| icon: 'pickaxe', | |
| props: { | |
| lvl: { | |
| skill: 'mining', | |
| requirement: 30, | |
| bonus: 3 | |
| }, | |
| propData: { | |
| name: 'prop_tool_pickaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 16000 | |
| } | |
| }, | |
| axe3: { | |
| name: 'Decayed Axe', | |
| key: 'axe3', | |
| base: 'axe', | |
| icon: 'axe', | |
| props: { | |
| lvl: { | |
| skill: 'woodcutting', | |
| requirement: 30, | |
| bonus: 3 | |
| }, | |
| propData: { | |
| name: 'prop_tool_fireaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 16000 | |
| } | |
| }, | |
| hammer3: { | |
| name: 'Decayed Hammer', | |
| key: 'hammer3', | |
| base: 'hammer', | |
| icon: 'hammer', | |
| props: {} | |
| }, | |
| fishingrod3: { | |
| name: 'Decayed Fishing Rod', | |
| key: 'fishingrod3', | |
| base: 'fishingrod', | |
| icon: 'fishingrod', | |
| props: { | |
| lvl: { | |
| skill: 'fishing', | |
| requirement: 30, | |
| bonus: 1 | |
| }, | |
| propData: { | |
| name: 'prop_fishing_rod_01', | |
| bone: 18905, | |
| x: 0.1, | |
| y: 0.05, | |
| z: 0, | |
| pitch: 80, | |
| roll: 120, | |
| yaw: 160 | |
| }, | |
| durability: 16000 | |
| } | |
| }, | |
| pickaxe4: { | |
| name: 'Worn Pickaxe', | |
| key: 'pickaxe4', | |
| base: 'pickaxe', | |
| icon: 'pickaxe', | |
| props: { | |
| lvl: { | |
| skill: 'mining', | |
| requirement: 40, | |
| bonus: 4 | |
| }, | |
| propData: { | |
| name: 'prop_tool_pickaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 21000 | |
| } | |
| }, | |
| axe4: { | |
| name: 'Worn Axe', | |
| key: 'axe4', | |
| base: 'axe', | |
| icon: 'axe', | |
| props: { | |
| lvl: { | |
| skill: 'woodcutting', | |
| requirement: 40, | |
| bonus: 4 | |
| }, | |
| propData: { | |
| name: 'prop_tool_fireaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 21000 | |
| } | |
| }, | |
| hammer4: { | |
| name: 'Worn Hammer', | |
| key: 'hammer4', | |
| base: 'hammer', | |
| icon: 'hammer', | |
| props: {} | |
| }, | |
| fishingrod4: { | |
| name: 'Worn Fishing Rod', | |
| key: 'fishingrod4', | |
| base: 'fishingrod', | |
| icon: 'fishingrod', | |
| props: { | |
| lvl: { | |
| skill: 'fishing', | |
| requirement: 40, | |
| bonus: 2 | |
| }, | |
| propData: { | |
| name: 'prop_fishing_rod_01', | |
| bone: 18905, | |
| x: 0.1, | |
| y: 0.05, | |
| z: 0, | |
| pitch: 80, | |
| roll: 120, | |
| yaw: 160 | |
| }, | |
| durability: 21000 | |
| } | |
| }, | |
| pickaxe5: { | |
| name: 'Slightly Worn Pickaxe', | |
| key: 'pickaxe5', | |
| base: 'pickaxe', | |
| icon: 'pickaxe', | |
| props: { | |
| lvl: { | |
| skill: 'mining', | |
| requirement: 50, | |
| bonus: 5 | |
| }, | |
| propData: { | |
| name: 'prop_tool_pickaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 26000 | |
| } | |
| }, | |
| axe5: { | |
| name: 'Slightly Worn Axe', | |
| key: 'axe5', | |
| base: 'axe', | |
| icon: 'axe', | |
| props: { | |
| lvl: { | |
| skill: 'woodcutting', | |
| requirement: 50, | |
| bonus: 5 | |
| }, | |
| propData: { | |
| name: 'prop_tool_fireaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 26000 | |
| } | |
| }, | |
| hammer5: { | |
| name: 'Slightly Worn Hammer', | |
| key: 'hammer5', | |
| base: 'hammer', | |
| icon: 'hammer', | |
| props: {} | |
| }, | |
| fishingrod5: { | |
| name: 'Slightly Worn Fishing Rod', | |
| key: 'fishingrod5', | |
| base: 'fishingrod', | |
| icon: 'fishingrod', | |
| props: { | |
| lvl: { | |
| skill: 'fishing', | |
| requirement: 50, | |
| bonus: 2 | |
| }, | |
| propData: { | |
| name: 'prop_fishing_rod_01', | |
| bone: 18905, | |
| x: 0.1, | |
| y: 0.05, | |
| z: 0, | |
| pitch: 80, | |
| roll: 120, | |
| yaw: 160 | |
| }, | |
| durability: 26000 | |
| } | |
| }, | |
| pickaxe6: { | |
| name: 'Nearly New Pickaxe', | |
| key: 'pickaxe6', | |
| base: 'pickaxe', | |
| icon: 'pickaxe', | |
| props: { | |
| lvl: { | |
| skill: 'mining', | |
| requirement: 60, | |
| bonus: 6 | |
| }, | |
| propData: { | |
| name: 'prop_tool_pickaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 31000 | |
| } | |
| }, | |
| axe6: { | |
| name: 'Nearly New Axe', | |
| key: 'axe6', | |
| base: 'axe', | |
| icon: 'axe', | |
| props: { | |
| lvl: { | |
| skill: 'woodcutting', | |
| requirement: 60, | |
| bonus: 6 | |
| }, | |
| propData: { | |
| name: 'prop_tool_fireaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 31000 | |
| } | |
| }, | |
| hammer6: { | |
| name: 'Nearly New Hammer', | |
| key: 'hammer6', | |
| base: 'hammer', | |
| icon: 'hammer', | |
| props: {} | |
| }, | |
| fishingrod6: { | |
| name: 'Nearly New Fishing Rod', | |
| key: 'fishingrod6', | |
| base: 'fishingrod', | |
| icon: 'fishingrod', | |
| props: { | |
| lvl: { | |
| skill: 'fishing', | |
| requirement: 60, | |
| bonus: 3 | |
| }, | |
| propData: { | |
| name: 'prop_fishing_rod_01', | |
| bone: 18905, | |
| x: 0.1, | |
| y: 0.05, | |
| z: 0, | |
| pitch: 80, | |
| roll: 120, | |
| yaw: 160 | |
| }, | |
| durability: 31000 | |
| } | |
| }, | |
| pickaxe7: { | |
| name: 'New Pickaxe', | |
| key: 'pickaxe7', | |
| base: 'pickaxe', | |
| icon: 'pickaxe', | |
| props: { | |
| lvl: { | |
| skill: 'mining', | |
| requirement: 70, | |
| bonus: 7 | |
| }, | |
| propData: { | |
| name: 'prop_tool_pickaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 36000 | |
| } | |
| }, | |
| axe7: { | |
| name: 'New Axe', | |
| key: 'axe7', | |
| base: 'axe', | |
| icon: 'axe', | |
| props: { | |
| lvl: { | |
| skill: 'woodcutting', | |
| requirement: 70, | |
| bonus: 7 | |
| }, | |
| propData: { | |
| name: 'prop_tool_fireaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 36000 | |
| } | |
| }, | |
| hammer7: { | |
| name: 'New Hammer', | |
| key: 'hammer7', | |
| base: 'hammer', | |
| icon: 'hammer', | |
| props: {} | |
| }, | |
| fishingrod7: { | |
| name: 'New Fishing Rod', | |
| key: 'fishingrod7', | |
| base: 'fishingrod', | |
| icon: 'fishingrod', | |
| props: { | |
| lvl: { | |
| skill: 'fishing', | |
| requirement: 70, | |
| bonus: 3 | |
| }, | |
| propData: { | |
| name: 'prop_fishing_rod_01', | |
| bone: 18905, | |
| x: 0.1, | |
| y: 0.05, | |
| z: 0, | |
| pitch: 80, | |
| roll: 120, | |
| yaw: 160 | |
| }, | |
| durability: 36000 | |
| } | |
| }, | |
| pickaxe8: { | |
| name: 'Master Pickaxe', | |
| key: 'pickaxe8', | |
| base: 'pickaxe', | |
| icon: 'pickaxe', | |
| props: { | |
| lvl: { | |
| skill: 'mining', | |
| requirement: 80, | |
| bonus: 8 | |
| }, | |
| propData: { | |
| name: 'prop_tool_pickaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 41000 | |
| } | |
| }, | |
| axe8: { | |
| name: 'Master Axe', | |
| key: 'axe8', | |
| base: 'axe', | |
| icon: 'axe', | |
| props: { | |
| lvl: { | |
| skill: 'woodcutting', | |
| requirement: 80, | |
| bonus: 8 | |
| }, | |
| propData: { | |
| name: 'prop_tool_fireaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 41000 | |
| } | |
| }, | |
| hammer8: { | |
| name: 'Master Hammer', | |
| key: 'hammer8', | |
| base: 'hammer', | |
| icon: 'hammer', | |
| props: {} | |
| }, | |
| fishingrod8: { | |
| name: 'Master Fishing Rod', | |
| key: 'fishingrod8', | |
| base: 'fishingrod', | |
| icon: 'fishingrod', | |
| props: { | |
| lvl: { | |
| skill: 'fishing', | |
| requirement: 80, | |
| bonus: 4 | |
| }, | |
| propData: { | |
| name: 'prop_fishing_rod_01', | |
| bone: 18905, | |
| x: 0.1, | |
| y: 0.05, | |
| z: 0, | |
| pitch: 80, | |
| roll: 120, | |
| yaw: 160 | |
| }, | |
| durability: 41000 | |
| } | |
| }, | |
| pickaxe9: { | |
| name: 'Artisan Pickaxe', | |
| key: 'pickaxe9', | |
| base: 'pickaxe', | |
| icon: 'pickaxe', | |
| props: { | |
| lvl: { | |
| skill: 'mining', | |
| requirement: 90, | |
| bonus: 9 | |
| }, | |
| propData: { | |
| name: 'prop_tool_pickaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 46000 | |
| } | |
| }, | |
| axe9: { | |
| name: 'Artisan Axe', | |
| key: 'axe9', | |
| base: 'axe', | |
| icon: 'axe', | |
| props: { | |
| lvl: { | |
| skill: 'woodcutting', | |
| requirement: 90, | |
| bonus: 9 | |
| }, | |
| propData: { | |
| name: 'prop_tool_fireaxe', | |
| bone: 57005, | |
| x: 0.1, | |
| y: -0.1, | |
| z: -0.02, | |
| pitch: 80, | |
| roll: 0, | |
| yaw: 170 | |
| }, | |
| durability: 46000 | |
| } | |
| }, | |
| hammer9: { | |
| name: 'Artisan Hammer', | |
| key: 'hammer9', | |
| base: 'hammer', | |
| icon: 'hammer', | |
| props: {} | |
| }, | |
| fishingrod9: { | |
| name: 'Artisan Fishing Rod', | |
| key: 'fishingrod9', | |
| base: 'fishingrod', | |
| icon: 'fishingrod', | |
| props: { | |
| lvl: { | |
| skill: 'fishing', | |
| requirement: 90, | |
| bonus: 4 | |
| }, | |
| propData: { | |
| name: 'prop_fishing_rod_01', | |
| bone: 18905, | |
| x: 0.1, | |
| y: 0.05, | |
| z: 0, | |
| pitch: 80, | |
| roll: 120, | |
| yaw: 160 | |
| }, | |
| durability: 46000 | |
| } | |
| }, | |
| rawminno: { | |
| name: 'Raw Minno', | |
| key: 'rawminno', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 30, | |
| lvl: 1 | |
| } | |
| }, | |
| rawsardine: { | |
| name: 'Raw Sardine', | |
| key: 'rawsardine', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 40, | |
| lvl: 5 | |
| } | |
| }, | |
| rawherring: { | |
| name: 'Raw Herring', | |
| key: 'rawherring', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 45, | |
| lvl: 10 | |
| } | |
| }, | |
| rawanchovies: { | |
| name: 'Raw Anchovies', | |
| key: 'rawanchovies', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 50, | |
| lvl: 15 | |
| } | |
| }, | |
| rawmackerel: { | |
| name: 'Raw Mackerel', | |
| key: 'rawmackerel', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 55, | |
| lvl: 17 | |
| } | |
| }, | |
| rawtrout: { | |
| name: 'Raw Trout', | |
| key: 'rawtrout', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 60, | |
| lvl: 20 | |
| } | |
| }, | |
| rawcod: { | |
| name: 'Raw Cod', | |
| key: 'rawcod', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 65, | |
| lvl: 23 | |
| } | |
| }, | |
| rawpike: { | |
| name: 'Raw Pike', | |
| key: 'rawpike', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 70, | |
| lvl: 25 | |
| } | |
| }, | |
| raweel: { | |
| name: 'Raw Eel', | |
| key: 'raweel', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 75, | |
| lvl: 28 | |
| } | |
| }, | |
| rawsalmon: { | |
| name: 'Raw Salmon', | |
| key: 'rawsalmon', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 80, | |
| lvl: 30 | |
| } | |
| }, | |
| rawtuna: { | |
| name: 'Raw Tuna', | |
| key: 'rawtuna', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 85, | |
| lvl: 35 | |
| } | |
| }, | |
| rawrainbowfish: { | |
| name: 'Raw Rainbow Fish', | |
| key: 'rawrainbowfish', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 90, | |
| lvl: 38 | |
| } | |
| }, | |
| rawlobster: { | |
| name: 'Raw Lobster', | |
| key: 'rawlobster', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 95, | |
| lvl: 40 | |
| } | |
| }, | |
| rawbass: { | |
| name: 'Raw Bass', | |
| key: 'rawbass', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 100, | |
| lvl: 45 | |
| } | |
| }, | |
| rawswordfish: { | |
| name: 'Raw Swordfish', | |
| key: 'rawswordfish', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 120, | |
| lvl: 50 | |
| } | |
| }, | |
| rawrockfish: { | |
| name: 'Raw Rockfish', | |
| key: 'rawrockfish', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 135, | |
| lvl: 62 | |
| } | |
| }, | |
| rawshark: { | |
| name: 'Raw Shark', | |
| key: 'rawshark', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 150, | |
| lvl: 73 | |
| } | |
| }, | |
| rawanglerfish: { | |
| name: 'Raw Anglerfish', | |
| key: 'rawanglerfish', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 200, | |
| lvl: 82 | |
| } | |
| }, | |
| rawmantaray: { | |
| name: 'Raw Manta Ray', | |
| key: 'rawmantaray', | |
| base: 'rawfish', | |
| icon: 'fish', | |
| props: { | |
| xp: 250, | |
| lvl: 92 | |
| } | |
| } | |
| }; | |
| alt.emit('itemTemplates:Ready', ITEM_TEMPLATES); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment