Files
wagic/projects/mtg/bin/Res/campaigns/tutorial/story.xml
wagic.the.homebrew@gmail.com d5be045859 Erwan
- Adding (dead) code for Story mode. This is FAR from being ready so it's deactivated in the code. I just don't want to create a branch (I'm lazy) and I'm fed up with synching. My Goal is to have a tutorial ready with this for the release after this one. If you want to test it (Note: the sample story is not interesting at ALL), just look for "Story mode" and uncomment (3 occurrences). PSP Or Linux need additions to the Makefile...
2010-02-16 10:55:03 +00:00

31 lines
624 B
XML

<?xml version="1.0" ?>
<page id="1">
<type>dialog</type>
<text>This is a test Story, what do you want to do?</text>
<answer goto="2">Go left</answer>
<answer goto="3">Go right</answer>
</page>
<page id="2">
<type>dialog</type>
<text>You found the Grail</text>
<answer goto="duel1">click to continue</answer>
</page>
<page id="3">
<type>dialog</type>
<text>You found the Arch of Noah</text>
<answer goto="duel1">click to continue</answer>
</page>
<page id="duel1">
<type>duel</type>
<onwin>End</onwin>
<onlose>1</onlose>
</page>
<page id="End">
<type>End</type>
<text>The End</text>
</page>