Updated the script, created the paleontologist and linked TMDC website.
This commit is contained in:
parent
5380584e85
commit
8dd165337f
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"files.exclude": {
|
||||||
|
"**/*.rpyc": true,
|
||||||
|
"**/*.rpa": true,
|
||||||
|
"**/*.rpymc": true,
|
||||||
|
"**/cache/": true
|
||||||
|
}
|
||||||
|
}
|
|
@ -3,7 +3,7 @@
|
||||||
# Declare characters used by this game. The color argument colorizes the
|
# Declare characters used by this game. The color argument colorizes the
|
||||||
# name of the character.
|
# name of the character.
|
||||||
|
|
||||||
define e = Character("Eileen")
|
define p = Character("Paleontologist")
|
||||||
|
|
||||||
|
|
||||||
# The game starts here.
|
# The game starts here.
|
||||||
|
@ -14,19 +14,19 @@ label start:
|
||||||
# add a file (named either "bg room.png" or "bg room.jpg") to the
|
# add a file (named either "bg room.png" or "bg room.jpg") to the
|
||||||
# images directory to show it.
|
# images directory to show it.
|
||||||
|
|
||||||
scene bg room
|
scene bg field1
|
||||||
|
|
||||||
# This shows a character sprite. A placeholder is used, but you can
|
# This shows a character sprite. A placeholder is used, but you can
|
||||||
# replace it by adding a file named "eileen happy.png" to the images
|
# replace it by adding a file named "eileen happy.png" to the images
|
||||||
# directory.
|
# directory.
|
||||||
|
|
||||||
show eileen happy
|
show paleontologist happy
|
||||||
|
|
||||||
# These display lines of dialogue.
|
# These display lines of dialogue.
|
||||||
|
|
||||||
e "You've created a new Ren'Py game."
|
p "Oh, hello! I didn't see you there. I'm your friendly-neighborhood Paleontologist. On behalf of the {a=https://tmdinosaurcenter.org/}Montana Dinosaur Center{/a}, I hope you enjoy this game."
|
||||||
|
|
||||||
e "Once you add a story, pictures, and music, you can release it to the world!"
|
p "As we progress, we'll be adding more content, characters and conversations to Dinosaur Baddies."
|
||||||
|
|
||||||
# This ends the game.
|
# This ends the game.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue