-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New spells, hanging spells, spell containers, partial training system w/books
- Loading branch information
Showing
9 changed files
with
752 additions
and
66 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
[ | ||
{ | ||
"id": "spm_book_thaumaturgy_1", | ||
"type": "BOOK", | ||
"name": { "str": "Introduction to Thaumaturgy", "str_pl": "Intorduction to Thaumaturgies" }, | ||
"description": "A basic text on Thaumaturgy, used by starting students of magic.", | ||
"weight": "600 g", | ||
"volume": "400 ml", | ||
"price": 4500, | ||
"price_postapoc": 50000, | ||
"material": [ "paper" ], | ||
"symbol": "?", | ||
"color": "light_blue", | ||
"skill": "thaumaturgy", | ||
"max_level": 2, | ||
"intelligence": 10, | ||
"time": "60 m", | ||
"fun": -1 | ||
}, | ||
{ | ||
"id": "spm_book_thermomancy_1", | ||
"type": "BOOK", | ||
"name": { "str": "Introduction to Thermomantics", "str_pl": "Intorduction to Thermomantics" }, | ||
"description": "A basic text on Thermomantics, used by starting students of magic.", | ||
"weight": "600 g", | ||
"volume": "400 ml", | ||
"price": 4500, | ||
"price_postapoc": 50000, | ||
"material": [ "paper" ], | ||
"symbol": "?", | ||
"color": "light_blue", | ||
"skill": "thermomancy", | ||
"max_level": 2, | ||
"intelligence": 10, | ||
"time": "60 m", | ||
"fun": -1 | ||
}, | ||
{ | ||
"id": "spm_book_psychomancy_1", | ||
"type": "BOOK", | ||
"name": { "str": "Introduction to psychomantics", "str_pl": "Intorduction to psychomantics" }, | ||
"description": "A basic text on psychomantics, used by starting students of magic.", | ||
"weight": "600 g", | ||
"volume": "400 ml", | ||
"price": 4500, | ||
"price_postapoc": 50000, | ||
"material": [ "paper" ], | ||
"symbol": "?", | ||
"color": "light_blue", | ||
"skill": "psychomancy", | ||
"max_level": 2, | ||
"intelligence": 10, | ||
"time": "60 m", | ||
"fun": -1 | ||
}, | ||
{ | ||
"id": "spm_book_physiomancy_1", | ||
"type": "BOOK", | ||
"name": { "str": "Introduction to physiomantics", "str_pl": "Intorduction to physiomantics" }, | ||
"description": "A basic text on physiomantics, used by starting students of magic.", | ||
"weight": "600 g", | ||
"volume": "400 ml", | ||
"price": 4500, | ||
"price_postapoc": 50000, | ||
"material": [ "paper" ], | ||
"symbol": "?", | ||
"color": "light_blue", | ||
"skill": "physiomancy", | ||
"max_level": 2, | ||
"intelligence": 10, | ||
"time": "60 m", | ||
"fun": -1 | ||
} | ||
|
||
] |
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,53 @@ | ||
[ | ||
{ | ||
"type": "mutation", | ||
"id": "SPM_MUT_STEALTH", | ||
"name": { "str": "Optical Blending" }, | ||
"points": 1, | ||
"description": "Disguised by photomancy to appear nondescript, you are harder to notice at a distance.", | ||
"starting_trait": false, | ||
"stealth_modifier": 60, | ||
"anger_relations": [ [ "ZOMBIE", -150 ] ] | ||
}, | ||
{ | ||
"id": "spm_concealment_item", | ||
"type": "ARMOR", | ||
"description": "You wear it.", | ||
"volume": "1 ml", | ||
"symbol": "*", | ||
"color": "light_gray", | ||
"name": { "str": "stealth field", "str_pl": "stealth fields" }, | ||
"relic_data": { | ||
"passive_effects": [ | ||
{ "has": "WORN", "condition": "ALWAYS", "mutations": [ "SPM_MUT_STEALTH" ] } | ||
] | ||
}, | ||
"flags": [ "TRADER_AVOID", "AURA", "NO_SALVAGE" ] | ||
}, | ||
{ | ||
"id": "spm_concealment", | ||
"type": "SPELL", | ||
"name": "Concealment", | ||
"description": "This is the first spell any mage learns, designed to teach them to manipulate magic to accomplish many minor tasks with a minimum of effort. Eventually this becomes reflexive and you can simply do things at will with no spell casting required, just using background mana.", | ||
"valid_targets": [ "self" ], | ||
"effect": "spawn_item", | ||
"effect_str": "spm_concealment_item", | ||
"flags": [ "SILENT", "NO_HANDS", "NO_LEGS", "NO_FAIL" ], | ||
"energy_source": "MANA", | ||
"skill": "photomancy", | ||
"base_casting_time": 500, | ||
"final_casting_time": 500, | ||
"base_energy_cost": 600, | ||
"final_energy_cost": 600, | ||
"difficulty": 3, | ||
"max_level": 5, | ||
"min_damage": 1, | ||
"max_damage": 1, | ||
"min_duration": 36000, | ||
"max_duration": 36000 | ||
} | ||
|
||
|
||
|
||
|
||
] |
Oops, something went wrong.