diff options
author | Moulberry <james.jenour@student.scotch.wa.edu.au> | 2020-07-19 21:46:29 +1000 |
---|---|---|
committer | Moulberry <james.jenour@student.scotch.wa.edu.au> | 2020-07-19 21:46:29 +1000 |
commit | 7b16a84c00345cd08f9c0dd52c8547093ac08752 (patch) | |
tree | ca856e763243bccfba4f61cc6236fb8691d27812 /constants/bonuses.json | |
parent | b2f80e73e5437f3c340e142f8d21a5d19f3bc4e7 (diff) | |
download | NotEnoughUpdates-REPO-7b16a84c00345cd08f9c0dd52c8547093ac08752.tar.gz NotEnoughUpdates-REPO-7b16a84c00345cd08f9c0dd52c8547093ac08752.tar.bz2 NotEnoughUpdates-REPO-7b16a84c00345cd08f9c0dd52c8547093ac08752.zip |
more constants for stats
Diffstat (limited to 'constants/bonuses.json')
-rw-r--r-- | constants/bonuses.json | 185 |
1 files changed, 185 insertions, 0 deletions
diff --git a/constants/bonuses.json b/constants/bonuses.json new file mode 100644 index 00000000..daa07699 --- /dev/null +++ b/constants/bonuses.json @@ -0,0 +1,185 @@ +{ + "pet_rewards": { + "0": { + "magic_find": 0 + }, + "10": { + "magic_find": 1 + }, + "25": { + "magic_find": 2 + }, + "50": { + "magic_find": 3 + }, + "75": { + "magic_find": 4 + }, + "100": { + "magic_find": 5 + }, + "130": { + "magic_find": 6 + }, + "175": { + "magic_find": 7 + } + }, + "pet_value": { + "COMMON": 1, + "UNCOMMON": 2, + "RARE": 3, + "EPIC": 4, + "LEGENDARY": 5 + }, + "bonus_stats": { + "skill_taming": { + "1": { + "pet_luck": 1 + } + }, + "skill_farming": { + "1": { + "health": 2 + }, + "15": { + "health": 3 + }, + "20": { + "health": 4 + }, + "26": { + "health": 5 + } + }, + "skill_combat": { + "1": { + "crit_chance": 0.5, + "damage_increase": 0.04 + } + }, + "skill_mining": { + "1": { + "defence": 1 + }, + "15": { + "defence": 2 + } + }, + "skill_foraging": { + "1": { + "strength": 1 + }, + "15": { + "strength": 2 + } + }, + + "skill_fishing": { + "1": { + "health": 2 + }, + "15": { + "health": 3 + }, + "20": { + "health": 4 + }, + "26": { + "health": 5 + } + }, + + "skill_enchanting": { + "1": { + "intelligence": 1 + }, + "15": { + "intelligence": 2 + } + }, + + "skill_alchemy": { + "1": { + "intelligence": 1 + }, + "15": { + "intelligence": 2 + } + }, + + "skill_carpentry": { + "1": { + + } + }, + + "skill_runecrafting": { + "1": { + + } + }, + + "slayer_zombie": { + "1": { + "health": 2 + }, + "3": { + "health": 3 + }, + "5": { + "health": 4 + }, + "7": { + "health": 5 + }, + "9": { + "health": 6 + } + }, + + "slayer_spider": { + "1": { + "crit_damage": 1 + }, + "5": { + "crit_damage": 2 + }, + "7": { + "crit_damage": 0, + "crit_chance": 1 + }, + "8": { + "crit_chance": 0, + "crit_damage": 3 + } + }, + + "slayer_wolf": { + "1": { + "speed": 1 + }, + "2": { + "health": 2 + }, + "3": { + "speed": 1 + }, + "4": { + "health": 2 + }, + "5": { + "crit_damage": 1 + }, + "6": { + "health": 3 + }, + "7": { + "crit_damage": 2 + }, + "8": { + "speed": 1 + } + } + } +}; |