-
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.
Merge pull request #77455 from Procyonae/TutorialMod
Shift towards making the tutorial work as a mod behind the scenes
- Loading branch information
Showing
22 changed files
with
564 additions
and
365 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,65 @@ | ||
[ | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_POPULATE_OUTSIDE_CONNECTIONS_FROM_NEIGHBORS", | ||
"info": "Allows to populate outside connections from neighbors.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_RIVERS", | ||
"info": "Allows to place procgen rivers during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_LAKES", | ||
"info": "Allows to place procgen lakes during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_FORESTS", | ||
"info": "Allows to place procgen forests during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_SWAMPS", | ||
"info": "Allows to place procgen swamps during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_RAVINES", | ||
"info": "Allows to place procgen ravines during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_CITIES", | ||
"info": "Allows to place cities during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_FOREST_TRAILS", | ||
"info": "Allows to place procgen forest trails during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
}, | ||
{ | ||
"type": "EXTERNAL_OPTION", | ||
"name": "OVERMAP_PLACE_ROADS", | ||
"info": "Allows to place procgen roads during overmap generation.", | ||
"stype": "bool", | ||
"value": false | ||
} | ||
] |
File renamed without changes.
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,11 @@ | ||
[ | ||
{ | ||
"type": "MOD_INFO", | ||
"id": "dda_tutorial", | ||
"name": "Tutorial", | ||
"description": "Tutorial for Cataclysm-DDA", | ||
"category": "content", | ||
"//": "Marked as obsolete so it doesn't appear in the mod selection list", | ||
"obsolete": true | ||
} | ||
] |
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,23 @@ | ||
[ | ||
{ | ||
"id": "mon_dummy_tutorial", | ||
"type": "MONSTER", | ||
"name": { "str": "dummy", "str_pl": "dummies" }, | ||
"description": "This dummy serves for only one purpose - to teach players how to hit monsters.", | ||
"looks_like": "f_mannequin", | ||
"default_faction": "", | ||
"species": [ "UNKNOWN" ], | ||
"volume": "62500 ml", | ||
"weight": "81500 g", | ||
"hp": 50, | ||
"speed": 100, | ||
"material": [ "wood" ], | ||
"symbol": "X", | ||
"color": "white", | ||
"melee_damage": [ { "damage_type": "cut", "amount": 0 } ], | ||
"vision_day": 1, | ||
"harvest": "exempt", | ||
"death_function": { "corpse_type": "NO_CORPSE", "message": "The %s is destroyed." }, | ||
"flags": [ "IMMOBILE", "NOT_HALLUCINATION" ] | ||
} | ||
] |
Oops, something went wrong.