<img src="images/shop.png" width=500 height=276/>
<br>
there’s a shop
<br>
you love it
<br>
the snacks are delicious
<br>
you’re hungry
<br>
[[enter|inside shop]]
<br>
[[don’t|outside shop]]<!--SCRIPT FORMAT WIDGETS-->
// LOCATION
<!-- Use to define a location for your scene. -->
<<widget "loc" container>>
<div class="loc">
_contents
</div>
<</widget>>
// CHARACTER
<!-- This is a widget for a speaking Character's name. It also creates a container for the Character's name, any delivery instructions, and their lines to ensure that the space between each speaker and whatever text blocks precede or succeed it remains consistent. -->
<<widget "char" container>>
<div class="unit">
<div class="char">
_args[0]
</div>
_contents
</div>
<</widget>>
// WRYLY
<!-- This is a wrapper for parenthetical notes on a particular line's delivery, commonly known as a "wryly". Screenwriting rule of legend and thumb advises using them sparingly, but I prefer to think of them as salt! -->
<<widget "wry" container>>
<div class="wry">
(_contents)
</div>
<</widget>>
// DIALOGUE
<!-- This is a wrapper for a Character's spoken lines. -->
<<widget "dia" container>>
<div class="dia">
_contents
</div>
<</widget>>
// TRANSITION
<!-- This is a wrapper for transitions, used to mark a shift from one scene to another. This can be a shift in time or place or the change of one camera setup to another. Dutch angle, Dutch angle, Dutch angle! -->
<<widget "trans" container>>
<div class="trans">
<p>_contents</p>
</div>
<</widget>>
// ACTION
<!-- This is a wrapper for descriptions of the setting, a character's expression/behaviour, or something happening within either/both, known as action content. -->
<<widget "act" container>>
<div class="act">
_contents
</div>
<</widget>><div id="interface">
<div id="header" data-passage="Header"></div>
<div id="left" data-passage="Left"></div>
<div id="passages"></div>
<div id="right"></div>
<div id="footer" data-passage="Footer">footer</div>
</div> <ul>
<li>
Sugarcube Screenplay UI Template & Screenplay Formatting Widgets by <a href="https://lapinlunaire-games.neocities.org">Lapin Lunaire Games</a>.
</li>
<hr>
<!-- Add more credits below this line -->
<li>
Add more credits here wrapped in {{{<li>}}} tags (you can copy/paste this one as many times as you need to).
</li>
<!-- Your last credit should go above this line! -->
</ul>Press ''"Q"'' at any time to open/close this! ''M'' expands/collapses the menu discs and ''ESC'' closes an open dialog.
<hr>
<!--When using this template, you can change the contents of this passage to a character profile, stats page, achievements page, etc.-->
<p>
''**LOCATION**''
<br>Use to define a location for your scene.
<pre>{{{
<<loc>>
[Int./Ext.] - [Location Name] - [Time of Day]
<</loc>>
}}}</pre>
</p>
<!-- <p>
''**UNIT**''
<br>This is a wrapper for each Character, their lines, and any parentheticals (wrylies) each line might have. Its purpose is to ensure that the space between each speaker and whatever text blocks precede or succeed it remains consistent.<br>
<pre>{{{
<<unit>>
<<char>>
<<dia>> [Dialogue]<</dia>>
<</char>>
<</unit>>
}}}</pre>
</p> -->
<p>''**CHARACTER**''
<br>This sets the indents and capitalization for a speaking Character's name. It takes a Character's name as an argument and should wrap their dialogue and any parentheticals (wrylies) in those lines. ''Note:'' Make sure you wrap the Character's name in <u>straight</u> quotes, not curly quotes! The name can contain spaces.<br>
<pre>{{{
<<char "[Name]">>
[Dialogue and/or wrylies]
<</char>>
}}}</pre>
</p>
<p>''**WRYLY**''
<br>This is a wrapper for parenthetical notes on a particular line's delivery, commonly known as a "wryly". Screenwriting rule of legend and thumb advises using them sparingly, but I prefer to think of them as salt!<br>
<pre>{{{
<<wry>>
[delivery instruction]
<</wry>>
}}}</pre>
</p>
<p>''**DIALOGUE**''
<br>This is a wrapper for a Character's spoken lines.<br>
<pre>{{{
<<dia>>
[Dialogue]
<</dia>>
}}}</pre>
</p>
<p>''**TRANSITION**''
<br>This is a wrapper for transitions, used to mark a shift from one scene to another. This can be a shift in time or place or the change of one camera setup to another. Dutch angle, Dutch angle, Dutch angle!<br>
<pre>{{{
<<trans>>
[Transition instruction]
<</trans>>
}}}</pre>
</p>
<p>''**ACTION**''
<br>This is a wrapper for descriptions of the setting, a character's expression/behaviour, or something happening within either/both, known as action content.<br>
<pre>{{{
<<act>>
[Action description]
<</act>>
}}}</pre>
</p><!--Set default value of text in [[Header]]-->
<<set $header to "">>
<!--Set default save file name-->
<<set $take to "">><!-- Do not remove the tags on this passage -->
<div id="titleCont">''<<include "Title">>''
<br>
<p>by <<include "Author">></p>
<div id="splashLinks">
<<link "start" "Start">><</link>>
</div>
</div>sweet shopluna rose<h1>This is an h1 heading.</h1>
<h2>This is an h2 heading.</h2>
<h3>This is an h3 heading.</h3>
<h4>This is an h4 heading.</h4>
<h5>This is an h5 heading.</h5>
<p>This is ''bold text'', //italic text//, and __underlined text__. <<link "Here is an example of an inline (non-choice) link.">><</link>> Directly below this sentence is an <nowiki><hr></nowiki>.</p>
<hr>
<p>This template comes with default monospace (Courier Prime) font as well as serif (Benne), sans serif (Montserrat Alternates), and Open Dyslexic options. To preview these options, open the menu (‘''M''’) or click the delta at the bottom of the page) and change the font style in the Settings Menu (<i class="fa-solid fa-gears"></i>).</p>
<p>You can also change the UI display theme in the Settings Menu. This minimalist screenplay-inspired template comes with two display themes (“Day” and “Night”). The colors for each are easily customizable through the CSS stylesheet’s variables (look for the section labeled with 🐇🌙🌸🌸🌸🌙🐇 emojis).</p>
<<act>>This template also comes with pre-styled choice links and two styling options for choice buttons. The buttons will resize/wrap automatically to fit. Simply create a div with the class “choice” and your links/buttons inside. If using buttons, you must also add the appropriate styling class (.choicebtn or .stack).<</act>>
<hr>
<<act>>You can use links to direct players...<</act>>
<div class="choice">
[[First Page|Start]]
[[Widget Explanation]]
</div>
<<act>>Or buttons...<</act>>
<div class="choice choicebtn">
<<button 'First Page'>><<goto [[Start]]>><</button>>
<<button 'Widget Explanation'>><<goto [[Widget Explanation]]>><</button>>
</div>
<<act>>Or another style of buttons...<</act>>
<div class="choice choicebtn stack">
<<button "First Page" Start">><</button>>
<<button 'Widget Explanation'>><<goto [[Widget Explanation]]>><</button>>
</div><img src="images/insideshop.png" width=500 height=335/>
<br>
you’re blasted with memories
<br>
memories of a past life
<br>
you can almost see your past
<br>
in the walls
<br>
in the ice cream
<br>
the candy
<br>
[[you run|no running]]<img src="images/shop.png" width=500 height=276/>
<br>
but it smells so good
<br>
and one sweet won’t hurt
<br>
[[inside shop]]you can’t run
<br>
[[you’re stuck here|not here]]<img src="images/insideshop.png" width=500 height=335/>
<br>
you haven’t been here for years
<br>
this place has moved, it’s downtown now
<br>
the inside is newer
<br>
the workers are different
<br>
<<linkreplace "and yet">>
and yet
<br>
it’s the same
<br>
the soul is still there
<br>
the flavors are the same ones you ate
<br>
on winter nights
<br>
[[after days of play|run]]
<</linkreplace>>
<img src="images/theflavors.png" width=500 height=270/>
<br>
you want to run away
<br>
but it calls for you
<br>
the sweet flavors
<br>
[[the ones you love|lemon]]<img src="images/lemon.png" width=500 height=342/>
<br>
especially lemon
<br>
oh how you miss that lemon flavor
<br>
it’s right there
<br>
it’s not that much
<br>
you have the money
<br>
that past you never spent
<br>
[[buy it|greedy]]
<br>
[[don’t|you must]]you give in
<br>
because you’re greedy
<br>
and you feel so fat
<br>
because that’s all your meds are doing
<br>
making you fat
<br>
digging holes into your soul
<br>
and making you stressed
<br>
because they don’t work
<br>
they never worked
<br>
they can’t keep life away
<br>
all this pressure
<br>
all this dysphoria
<br>
it never goes away
<br>
you try
<br>
you hope
<br>
you mask
<br>
you’re good at that
<br>
not much else
<br>
you can pretend you’re fine
<br>
that you’re smart
<br>
that you’re not hiding yourself
<br>
but it makes you stressed
<br>
you eat when you’re stressed
<br>
so you’ve gained a bunch of weight
<br>
everyone tells you it’s fine
<br>
that your weight is fine
<br>
they say you’re healthy
<br>
but you feel fat
<br>
and feeling fat makes you feel stressed
<br>
and then you eat
<br>
and hide in your room
<br>
away
<br>
you want to go home and throw up
<br>
get this fatness out of you
<br>
but you can’t even do that anymore
<br>
because these meds don’t let you
<br>
this ice cream isn’t even that good
<br>
it just reminds you of your deadname
<br>
your past
<br>
the life you want to throw away
<br>
and the bad days
<br>
<img src="images/uncoloredtrashcan.png" width=439 height=500/>
<br>
[[but right there’s a trash can|trash can]]you can’t resist
<br>
[[remember, it tastes so good|greedy]]<img src="images/coloredtrashcan.png" width=360 height=500/>
<br>
so you throw it away
<br>
throw the bad memories away
<br>
throw everything away
<br>
say goodbye
<br>
[[because|memories]]you’re stronger than memories
<br>
and the bad
<br>
[[because|idk]]and sometimes that’s enough
<br>
today, maybe you’ll tell your friends
<br>
oh wait
<br>
you did that
<br>
good on you
<br>
[[you’re doing great|great]]
<img src="images/home.png" width=500 height=366/>
<br>
maybe you’ll go home
<br>
<img src="images/jamming.png" width=500 height=301/>
<br>
put on your favorite songs
<br>
jam out
<br>
<img src="images/writing.png" width=500 height=385/>
<br>
write a story
<br>
since you have ideas
<br>
or maybe you’ll stay up late
<br>
talking with the people you love
<br>
[[who love you|love]]you’re doing fine
<br>
remember
<br>
it’ll be okay
<br>
someday
<br>
maybe not today
<br>
[[but someday|okay]]you can love
<br>
be loved
<br>
by yourself
<br>
by others
<br>
for you
<br>
and you’re not going to hide yourself
<br>
anymore
<br>
and someday
<br>
[[you’ll be you|endPage]]
<br>
<img src="images/heart.png" width=407 height=388/>actually you don’t know why
<br>
but
<br>
[[you try|why not]]
<div id="titleCont">''<<include "Title">>''
<br>
<p>[[by luna rose ♡|TitlePage]]</p>
<div id="splashLinks">
#transpride ✦
for neo twiny jam ✦
template by lapin lunaire games ✦
</div>
</div>