-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Magiclysm: Alchemy, Part 1-Potion tools and Stat Potion Brewing (#32132)
* First potion commits * Potion recipes, and harvest for adrenal gland * Alchemist rune now a craft, Cat's potion fixed * Alchemist rune craft difficulty adjustment * Alchemist rune craft diff. adjustment 2 * Typos, harvesting, and rune fix * Linting * Potion starter now uses hard_liquor requirement * No reptile eggs for bird potions * Hairball size increased * Missing 0 * Update data/mods/Magiclysm/items/comestibles.json GitHub desktop won't push chance to hairball volume * Typo
- Loading branch information
Showing
8 changed files
with
411 additions
and
31 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
[ | ||
{ | ||
"type": "recipe", | ||
"result": "copper_circlet", | ||
"byproducts": [ [ "tinder", 40 ] ], | ||
"category": "CC_ENCHANTED", | ||
"subcategory": "CSC_ENCHANTED_TOOLS", | ||
"skill_used": "fabrication", | ||
"skills_required": [ "spellcraft", 2 ], | ||
"difficulty": 3, | ||
"time": "30 m", | ||
"autolearn": true, | ||
"qualities": [ { "id": "HAMMER_FINE", "level": 1 }, { "id": "CUT_FINE", "level": 1 } ], | ||
"tools": [ [ [ "surface_heat", 10, "LIST" ] ] ], | ||
"components": [ [ [ "scrap_copper", 1 ], [ "copper", 100 ] ], [ [ "splinter", 3 ] ] ] | ||
}, | ||
{ | ||
"type": "recipe", | ||
"result": "stone_chisel", | ||
"category": "CC_OTHER", | ||
"subcategory": "CSC_OTHER_TOOLS", | ||
"skill_used": "fabrication", | ||
"difficulty": 0, | ||
"time": "20 m", | ||
"autolearn": true, | ||
"qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "CUT", "level": 1 } ], | ||
"components": [ [ [ "rock", 1 ], [ "sharp_rock", 1 ] ], [ [ "stick", 1 ], [ "2x4", 1 ] ] ] | ||
}, | ||
{ | ||
"type": "recipe", | ||
"result": "copper_infuser", | ||
"category": "CC_ENCHANTED", | ||
"subcategory": "CSC_ENCHANTED_TOOLS", | ||
"skill_used": "fabrication", | ||
"skills_required": [ "spellcraft", 2 ], | ||
"difficulty": 3, | ||
"time": "20 m", | ||
"book_learn": [ [ "alchemy_basic", 4 ] ], | ||
"qualities": [ { "id": "CHISEL", "level": 1 } ], | ||
"components": [ [ [ "copper_bracelet", 1 ] ] ] | ||
}, | ||
{ | ||
"type": "recipe", | ||
"result": "rune_alchemist", | ||
"category": "CC_ENCHANTED", | ||
"subcategory": "CSC_ENCHANTED_TOOLS", | ||
"skill_used": "fabrication", | ||
"skills_required": [ "spellcraft", 4 ], | ||
"difficulty": 2, | ||
"time": "120m", | ||
"autolearn": true, | ||
"qualities": [ { "id": "CHISEL", "level": 1 }, { "id": "MANA_INFUSE", "level": 1 } ], | ||
"components": [ [ [ "pebble", 1 ] ] ] | ||
} | ||
] |
Oops, something went wrong.