Template:Location: Difference between revisions
Appearance
mNo edit summary |
mNo edit summary |
||
| Line 12: | Line 12: | ||
</noinclude> | </noinclude> | ||
{{#if:{{{name|}}}| | {{#if:{{{name|}}}| | ||
<div style=" | <div style="font-family: 'Times New Roman', Times, serif; margin: 10px 10px 0 10px; text-transform: uppercase;"> | ||
{{{name}}} | |||
</div> | </div> | ||
}} | }} | ||
{{#if:{{{dialogue|}}}| | |||
<div style="font-family: 'Times New Roman', Times, serif; border: 3px double #000; padding: 20px; margin: 0 10px 10px 10px; background-color: #fefefe;"> | |||
<p>{{{dialogue}}}</p> | <p>{{{dialogue}}}</p> | ||
</div> | </div> | ||
| Line 24: | Line 25: | ||
{{#if:{{{notes|}}}| | {{#if:{{{notes|}}}| | ||
<div style="margin | <div style="margin: 0 10px 10px 10px; padding-top: 10px;"> | ||
<h3 style="margin-bottom: 5px;">Notes:</h3> | <h3 style="margin-bottom: 5px;">Notes:</h3> | ||
<p>{{{notes}}}</p> | <p>{{{notes}}}</p> | ||
Revision as of 00:05, 21 March 2025
This template replicates the style of an AD&D 1e adventure module, with separate sections for dialogue and notes.
Usage
{{AD&D 1e Module Split
| name = Location Name
| dialogue = Description to be read to players...
| notes = Notes for the Dungeon Master...
}}
<templatedata> {
"params": {
"name": {
"label": "Location Name",
"type": "string",
"description": "The name of the location.",
"required": false
},
"dialogue": {
"label": "Dialogue",
"type": "string",
"description": "The description to be read to the players.",
"required": true
},
"notes": {
"label": "Notes",
"type": "string",
"description": "Notes for the Dungeon Master.",
"required": false
}
},
"description": "Template to replicate the style of an AD&D 1e adventure module, with separate sections for dialogue and notes, including an optional location name."
} </templatedata>