-
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] Add Magiclysm academy (#38511)
* support files new item_groups, 2 maps, magic_basement hint for trap door. * add magic academy * Update data/mods/Magiclysm/items/books_lore.json Co-Authored-By: Curtis Merrill <[email protected]> * fix lava bomb * fix typo, improve word choice. * remove rune spanws Co-authored-by: Curtis Merrill <[email protected]>
- Loading branch information
Showing
9 changed files
with
1,336 additions
and
26 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,50 @@ | ||
[ | ||
{ | ||
"id": "retreat_map", | ||
"copy-from": "abstractmap", | ||
"type": "GENERIC", | ||
"name": "vacation brochure", | ||
"description": "This is a glossy brochure encouraging students to book vactaions at a lake retreat or remote cabin. The brochure includes lush photographs of a tower on an island and a remote looking cabin in the woods. It includes a map of the areas.", | ||
"color": "white", | ||
"use_action": { | ||
"type": "reveal_map", | ||
"radius": 185, | ||
"terrain": [ "lake_retreat_ground", "magic_cabin" ], | ||
"message": "You add the locations to your map." | ||
} | ||
}, | ||
{ | ||
"id": "lair_map", | ||
"copy-from": "abstractmap", | ||
"type": "GENERIC", | ||
"name": "lair map", | ||
"description": "This is an well worn map. It has pictures of fantastical beasts embellishing the carefully drawn map markers.", | ||
"color": "white", | ||
"use_action": { | ||
"type": "reveal_map", | ||
"radius": 185, | ||
"terrain": [ | ||
"demon_spider_lair", | ||
"black_dragon_lair_z-0_NW", | ||
"black_dragon_lair_z-0_NE", | ||
"black_dragon_lair_z-0_SW", | ||
"black_dragon_lair_z-0_SE" | ||
], | ||
"message": "You add the locations to your map." | ||
} | ||
}, | ||
{ | ||
"id": "wizard_photo", | ||
"type": "GENERIC", | ||
"//": "Unique item for magic_basement.", | ||
"category": "other", | ||
"name": "old photo", | ||
"description": "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in this basement. There is a stack of suitcases in the background.", | ||
"weight": "1 g", | ||
"volume": 0, | ||
"price": 800, | ||
"material": [ "paper" ], | ||
"symbol": "*", | ||
"color": "light_gray" | ||
} | ||
] |
Large diffs are not rendered by default.
Oops, something went wrong.
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
Oops, something went wrong.