66 lines
1.5 KiB
Plaintext
66 lines
1.5 KiB
Plaintext
-> ONBOARDING
|
|
|
|
INCLUDE OPENING.ink
|
|
INCLUDE PLAYLIST.ink
|
|
INCLUDE HARMONY.ink
|
|
INCLUDE Level 0/PRACTICE_WHALESONG.ink
|
|
INCLUDE Level 0/PERFORM_WHALESONG.ink
|
|
INCLUDE Level 0/POSTSHOW_WHALESONG.ink
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// *** CHARACTER VARIABLES ***
|
|
|
|
VAR mood_singer = 0
|
|
VAR mood_guitarist = 0
|
|
VAR mood_bassist = 0
|
|
VAR mood_keyboardist = 0
|
|
|
|
|
|
// *** BAND VARIABLES ***
|
|
|
|
VAR band_name = ""
|
|
VAR band_vision = "" // "People", "Rebels", "Neutral"
|
|
VAR song_stance_rebels = 0
|
|
VAR song_stance_people = 0
|
|
|
|
|
|
// *** SONGS LIST ***
|
|
|
|
LIST songs = WhaleSong, SmileCurrency, RobotFix, MoodTattoo
|
|
/* At the beginning of the game, none of the songs are "ON" the list yet, but each is available to be put on the list. Code-wise, round brackets around the song names would mean they are already "ON" the list. To add a song to this list, use this command:
|
|
~ songs += WhaleSong
|
|
To check what songs are on the list, the song name needs to be in brackets:
|
|
{songs == (WhaleSong)}
|
|
or
|
|
{songs == (WhaleSong, RobotFix)}
|
|
to check multiples.
|
|
*/
|
|
|
|
|
|
// *** MUSIC VARIABLES ***
|
|
|
|
//All whalesong music variables will get set to "Whaleish" or "Human".
|
|
VAR drums_whalesong = ""
|
|
VAR vocals_whalesong = ""
|
|
VAR guitar_whalesong = ""
|
|
VAR keys_whalesong = ""
|
|
VAR bass_whalesong = ""
|
|
|
|
//All moodtattoo variables will get set to "Pro" or "Anti".
|
|
VAR drums_moodtattoo = ""
|
|
VAR vocals_moodtattoo = ""
|
|
VAR guitar_moodtattoo = ""
|
|
VAR keys_moodtattoo = ""
|
|
VAR bass_moodtattoo = ""
|
|
|
|
|
|
=== ONBOARDING ===
|
|
|
|
* Check out events.
|
|
-> PLAYLIST
|
|
* Start the game!
|
|
-> OPENING |