Difference between revisions of "Fortune Hunter/Game"

From Sugar Labs
Jump to navigation Jump to search
(Moving content to sub pages)
(Replaced content with '{{Fortune_Hunter/Navigation}} {{TOCright}} == Page Moved == This page has been removed. {{Fortune_Hunter/Navigation}}')
 
Line 3: Line 3:
 
{{TOCright}}
 
{{TOCright}}
  
= LAN Cooperative Play =
+
== Page Moved ==
  
:Tired of exploring alone? Share the Fortune Hunter activity running on your XO with a friend and let them take control of your legendary partner, Lytic. Together, players can explore the dungeons and face challenging foes, doubling the odds for survival. Players may also help each other out and work together to solve problems and find the hidden treasures. Two is better than one.
+
This page has been removed.
 
 
:This feature is coming at some point in the future and as such, details are currently unavailable. More information will be presented when development is further along.
 
 
 
 
 
= Region Based Game Progression =
 
 
 
:coming...
 
 
 
 
 
= Explorer's League - Networking Around the World =
 
 
 
:The Explorer’s League is a term referring to the online network database for Fortune Hunter. Players can connect online to see how other classrooms and schools are progressing in Fortune Hunter and may also talk about the game with people from all over the world! The more we share, the more fun we have.
 
 
 
:This is a future development goal and is not currently implemented. More information and details will become available upon progression of this feature.
 
 
 
 
 
= XOME - Avatar Customization Feature =
 
 
 
:XOME (pronounced as English ‘home’) is an avatar customization feature that lets the player have a customized avatar to represent them in the game. The avatar is comprised of the XO logo symbol, but can be dressed up with various costumes and paraphernalia to add a personal touch to the player’s persona. These avatars will also be shown online in the Explorer’s League as well as be visible to friends when playing together.
 
 
 
:It is planned that there will be a light version of this feature so that it does not expand the game’s physical memory size too drastically. The light version will have fewer choices of customizable parts and the heavier version of this feature is always an option, providing there is enough room on the hard disk drive where the game directory is installed to.
 
 
 
:More information and details will become available when this feature is in production.
 
 
 
 
 
= Fortune Maker (Custom User Game Creation Feature) =
 
 
 
:Fortune Maker is a separate xo activity and will give teachers and students the ability to create and manipulate their own version of the game, choosing such things as level layout, problem enemy types, and game difficulty. There is an easy to use graphical interface creation tool that works hand in hand with the game to inspire creativity in all users up for the task.
 
 
 
 
 
Visit our [http://wiki.sugarlabs.org/go/Fortune_Hunter/Dungeon_Creator Fortune Maker] page to learn more!
 
 
 
 
 
= Developer Dungeon Creation =
 
 
 
:This work-in-progress feature allows developers to easily create custom maps using a flagged input string method into a text (.txt) document. Each dungeon is represented by a separate file. The 21 digit per room string is broken up into input flags and are labeled as follows. Also note that quotation marks “” are not used in the actual input file.
 
 
 
:In order to explain the string, it will be broken up into segments. The final string will have no indicators of these different segments and will be written as one continuous entity.
 
 
 
 
 
:'''Segment A – Door declaration: ''01234567'''''
 
 
 
::Doors locations and conditions are declared here. They are always handled in the order of North, South, West, and East, and are defined in specific string character positions. Position 0, 2, 4, and 6 can either be a value of ‘0’ for “no door” or ‘N’, ‘S’, ‘W’, or ‘E’, respectively for “a door” at the given direction. A string with a basic door on each wall would look like “N0S0W0E0”. The flags for each door are specified to give the door special properties. These flags fill the remaining positions of the string in positions 1, 3, 5, and 7. Each flag pertains only to the door preceding it. A door must always be specified with a following flag. The flags are as follows. Use ‘u’ for an unlocked door (this is the default), ‘l’ for a locked door, ‘p’ for a puzzle door, ‘b’ for a locked puzzle door, ‘e’ for a dungeon entrance door, or ‘x’ for a dungeon exit door. A basic unlocked door on each wall would look like “NuSuWuEu”. Note that rooms must be capitalized and flags must be lower cased.
 
 
 
 
 
:'''Segment B – Special conditions: ''8'''''
 
 
 
::Special conditions for the room are specified with this character. Use ‘M’ to have a merchant present in the room or ‘P’ for a puzzle room. Note that this character must be capitalized.
 
 
 
 
 
:'''Segment C – Enemy declaration: ''9ABC'''''
 
 
 
::Enemies will be declared in this portion of the string using given identification numbers to represent each one. Each character represents an enemy position in the battle, with a maximum of four enemies. To have an enemy in positions A and B, the string would look like “0110”. The list of enemy identification numbers will be available in the future.
 
 
 
 
 
:'''Segment D – Item declaration: ''DEFGHIJK'''''
 
 
 
::Item declaration is noted in the last 8 characters of the room input string. The items will also have identification numbers (like the enemies). There may be a maximum of four items in a room and they are declared in positions D, F, H, and J of the string. The remaining positions of E, G, I, and K are flags for whether or not the preceding item is visible or a hidden item. This is done with a ‘v’ for visible or a ‘h’ for hidden. Note that these flags must be lower cased. A string with two visible items and one hidden item would look like “1v1v1h00”.
 
 
 
 
 
:The full string compiles as follows: “0123456789ABCDEFGHIJK”
 
 
 
:Sample null string, also used for an empty room: “000000000000000000000”
 
 
 
:The very first line of the text file is where the room dimensions are written in the format of column by row (CxR). Each room will be listed in the text file on a separate line.
 
 
 
 
 
:'''Here is a quick reference for writing these strings. ‘( )’ indicates one string element as each option is contained within. Remember that ‘0’ is used as a default and placeholder and ‘#’ represents an enemy / item ID tag.'''
 
 
 
(N) (ulpbex) (S) (ulpbex) (W) (ulpbex) (E) (ulpbex) (MP) (#) (#) (#) (#) (#) (vh) (#) (vh) (#) (vh) (#) (vh)
 
 
 
 
 
:'''To see what a full dungeon input text file looks like, here is the input to Dungeon 1 of Fortune Hunter.'''
 
 
 
3x5
 
Nx0000Eu000001v000000
 
0000WuEu0110000000000
 
00Su00Eu000001h000000
 
00Su0000000001v000000
 
000000000000000000000
 
NuSb0000000001h1h0000
 
Nu0000Eu0100000000000
 
00SpWuEu000001v000000
 
Nb00Wu000000000000000
 
000000000000000000000
 
NpSu0000000001v000000
 
000000000000000000000
 
000000000000000000000
 
NuSe00000000000000000
 
000000000000000000000
 
 
 
 
 
= Storyline =
 
 
 
:MAFH follows the story of Arith, a determined young researcher dedicated to finding all of the world’s best hidden secrets. One day she stumbled across a piece of blank papyrus during the time she spent studying in Egypt on a dig site. She quickly brought it to her best friend and colleague, Lytic. They were determined to find out more about this strange paper, but the two could not unearth its secrets in such a short time. To them, it was just a blank piece of ancient material.
 
 
 
:Two months later, the dig ever deeper into the earth, Arith noticed a faint glow emanating from a random pile of dirt. “What’s that over there?” she asked Lytic, who was standing nearby with his shovel. Digging it out, Lytic noticed that it was a small amulet. It let off the strangest beautiful teal glow. “Strange,” he remarked. Lytic stared deep into the light, his eyes widening as if in a trance. "Just what are you?" he questioned. The glow got even brighter and then went dim again. Now the amulet appeared to be as plain as any other stone. Confused, the two left the site to turn in for the night.
 
 
 
:Upon bringing this find to back to their living quarters, Lytic tossed it lightly on the table. It landed near the old blank papyrus that she had found months earlier. The amulet began to glow again. This time, the papyrus wasn't blank. The light seemed to be the key and filled the papyrus with teal characters and symbols. The two stared amazed at the sight. Nothing made sense. It was no language they’d ever come across before. Upon closer inspection, only one thing was certain. The image of a giant pile of treasure, larger than anything you could imagine. The other familiar image was of a human mind with mathematical symbols surrounding it. Apparently, those who desired this treasure must be intelligent and versed in the ways of mathematics. There was one other hint on the old Egyptian paper. It was extremely cold to the touch. The two agreed this meant it must be somewhere on Earth in a very cold place. At last, a massive treasure hunt was underway.
 
 
 
:Four days later, Arith and Lytic, found themselves in a strange place face to face with a mysterious and ancient building, relics in hand. “You wait here. I’ll go take a look around,” Arith told Lytic. “Okay. Good luck.”
 
 
 
:Arith entered the chilly, dark structure alone; unaware of what lay in wait…
 
 
 
 
 
= Game Progression =
 
 
 
:Each dungeon will introduce a distinct mathematical concept, and each dungeon will be comprised of several levels of increasing difficulty.
 
 
 
:At the beginning of each level the player will face the entrance of the dungeon. In each room if there are no enemies left, the player will have a decision as to where to go next based on what room in the dungeon they are in and how many exit doors they have available.
 
 
 
:As the player moves through the dungeon, they will face enemies which they will have to fight by solving math problems. If the player answers enough questions correctly in a battle, they will win the battle. However, if they continue to answer questions wrong, they will be damaged and eventually die. When the player dies, they will be given the option to quit to the main screen or to restart the level.  Once the player answers enough math problems correctly or defeats enough enemies, they will be granted access to the dungeons key, which will let them move on to the next level.
 
 
 
:When the player reaches the end of most dungeons, they will encounter a boss that will confront them with numerous timed math problems to ensure mastery of the dungeon's concepts.
 
 
 
:A player's game is completed when they find all of the fortune hidden within each dungeon level and defeats the main game boss.
 
 
 
 
 
== Main Menu -> New Game ==
 
 
 
 
 
=== FMV I – Feels Like Adventure ===
 
 
 
:Having found the amulet, Arith and Lytic find the temple and a way in. They both have a bad feeling about entering and are freezing cold.
 
 
 
 
 
== Dungeon 1 – Temple Main Hall ==
 
 
 
 
 
=== Cutscene I – Crash Course (Dungeons) ===
 
 
 
:Our player gets an explanation of dungeon systems.
 
 
 
 
 
=== FMV II – Where Do You Put the Batteries? ===
 
 
 
:A legendary, ancient calculator is found by our legendary, not-so ancient heroes.
 
 
 
 
 
=== Cutscene II – Crash Course (Menu Screen) ===
 
 
 
:Our player gets an explanation of the menu screen and its available options.
 
 
 
 
 
=== Cutscene III – Crash Course (Room Changing) ===
 
 
 
:Our player gets an explanation of changing rooms.
 
 
 
 
 
=== Cutscene IV – Crash Course (Inventory) ===
 
 
 
:Our player gets an explanation of items and the inventory screen.
 
 
 
 
 
=== Cutscene V – Crash Course (Health Points) ===
 
 
 
:Our player gets an explanation of how health points work.
 
 
 
 
 
=== Cutscene VI – Crash Course (Puzzle Doors) ===
 
 
 
:Our player gets an explanation of puzzle doors.
 
 
 
 
 
=== Cutscene VII – Crash Course (Orientation) ===
 
 
 
:Our player gets an explanation of changing directions (orientation).
 
 
 
 
 
=== Cutscene VIII – Crash Course (Equipment) ===
 
 
 
:Our player gets an explanation of using equipment.
 
 
 
 
 
=== Cutscene IX – Crash Course (Combat) ===
 
 
 
:Our player gets an explanation of combating enemies.
 
 
 
 
 
=== Cutscene X – Crash Course (Room Keys) ===
 
 
 
:Our player gets an explanation of room keys.
 
 
 
 
 
=== Cutscene XI – Crash Course (Locked Doors) ===
 
 
 
:Our player gets an explanation of locked doors.
 
 
 
 
 
=== Cutscene XII – Crash Course (Hidden Secrets) ===
 
 
 
:Our player gets an explanation of using the amulet to uncover hidden secrets.
 
 
 
 
 
=== FMV III – On the Right Track ===
 
 
 
:Arith and Lytic find clues that let them know they are on the right track to the treasure they seek.
 
 
 
 
 
=== Cutscene XIII – Crash Course (Dungeon Keys) ===
 
 
 
:Our player gets an explanation of dungeon keys.
 
 
 
 
 
=== Cutscene XIV – Crash Course (Dungeon Completion) ===
 
 
 
:Our player gets an explanation of completing dungeons.
 
 
 
 
 
== Dungeon 2 - Transference Center ==
 
 
 
 
 
=== Cutscene XV – Crash Course (Currency) ===
 
 
 
:Our player gets an explanation of how the in-game currency system works.
 
 
 
 
 
=== Cutscene XVI – Crash Course (Boss Battles) ===
 
 
 
:Our player gets an explanation of boss battles.
 
 
 
 
 
=== Cutscene XVII – Crash Course (Puzzle Rooms) ===
 
 
 
:Our player gets an explanation of how puzzle rooms work.
 
 
 
 
 
=== FMV IV – Almost Isn’t Good Enough ===
 
 
 
:Arith and Lytic meet the strange travelling merchant.
 
 
 
 
 
== Dungeon 3 - The Gauntlet ==
 
 
 
:being updated...
 
 
 
 
 
== Dungeon 4 - Nerve Block ==
 
 
 
:being updated...
 
 
 
 
 
== Dungeon 5 - Chamber of Trials ==
 
 
 
:being updated...
 
 
 
 
 
= Critical Path =
 
 
 
 
 
== Main Menu ==
 
 
 
:→ Once the title screen appears, scroll to the 'NEW GAME' option and push the select button to begin your quest.
 
 
 
:'''FMV I – Feels Like Adventure'''
 
 
 
 
 
== Dungeon 1 - Temple Main Hall ==
 
 
 
:The main door closes behind Arith and Lytic as they begin their trek into the temple.
 
 
 
 
 
:→ As they enter the first room, room 1, an explanation of dungeons interrupts the game to explain how the levels will work.
 
 
 
:'''Cutscene I – Crash Course (Dungeons)'''
 
 
 
:Afterward, a FMV sequence will begin in which the heroes find the calculator.
 
 
 
:'''FMV II – Where Do You Put the Batteries?'''
 
 
 
:Following the FMV, a cutscene will occur explaining the menu screen.
 
 
 
:'''Cutscene II – Crash Course (Menu Screen)'''
 
 
 
:Immediately after, an explanation of traveling between rooms occurs.
 
 
 
:'''Cutscene III – Crash Course (Room Changing)'''
 
 
 
:When the explanations are over, walk into the north room to continue.
 
 
 
 
 
:→ In room 2, the protagonists trip and fall on a crack in the floor, losing health. Fear not. There is a potion just sitting on the floor, free to take. Upon receiving the item, an explanation of items and their usage will occur.
 
 
 
:'''Cutscene IV – Crash Course (Inventory)'''
 
 
 
:A freebie potion will be given to you to use and replenish your missing health, followed by an explanation of how health points work.
 
 
 
:'''Cutscene V – Crash Course (Health Points)'''
 
 
 
:When you try to enter the next room, an explanation of puzzle doors will happen.
 
 
 
:'''Cutscene VI – Crash Course (Puzzle Doors)'''
 
 
 
:After it is over, you will have to solve the game’s first puzzle in order to progress to the north room.
 
 
 
 
 
:→ Room 3 is the first room with two exit options as there is a door to the west and east. An explanation of changing directions (your orientation) will occur.
 
 
 
:'''Cutscene VII – Crash Course (Orientation)'''
 
 
 
:After the explanation ends, you will notice the game’s first weapon item sitting in the room. An explanation of equipping weapons and armor will occur.
 
 
 
:'''Cutscene VIII – Crash Course (Equipment)'''
 
 
 
:Having your newly acquired weapon equipped, enter the west room first.
 
 
 
 
 
:→ The first thing you will notice about room 4 is an odd and hostile creature dancing about. You will automatically be engaged in your first combat, along with an explanation of how to. Follow the prompts and defeat the enemy.
 
 
 
:'''Cutscene IX – Crash Course (Combat)'''
 
 
 
:Continue to the north for the next room.
 
 
 
 
 
:→ Room 5 houses a silver key. Grab it.
 
 
 
:'''Cutscene X – Crash Course (Room Keys)'''
 
 
 
:Backtrack to room 3. This time, exit room 3 via the east door.
 
 
 
 
 
:→ Upon entering room 6, an explanation of locked doors will happen.
 
 
 
:'''Cutscene XI – Crash Course (Locked Doors)'''
 
 
 
:You will be asked to unlock the north door and solve another puzzle to gain entryway to room 7.
 
 
 
 
 
:→ In room 7, you will be on the receiving end of another lesson, explaining how to explore and find hidden items with your amulet.
 
 
 
:'''Cutscene XII – Crash Course (Hidden Secrets)'''
 
 
 
:Continue to the north.
 
 
 
 
 
:'''FMV III – On the Right Track'''
 
 
 
:→ There’s not much going on in room 8 aside from an FMV sequence, but take a deeper look around with your amulet before continuing to the next room to the west.
 
 
 
 
 
:→ Room 9 may look familiar, but these enemies are just the welcoming party. Defeat them both to progress. Exit via the west room.
 
 
 
 
 
:→ The final room, number 10, will explain how levels are completed and how to obtain and use level keys.
 
 
 
:'''Cutscene XIII – Crash Course (Dungeon Keys)'''
 
 
 
:'''Cutscene XIV – Crash Course (Dungeon Completion)'''
 
 
 
:After obtaining your first level access key, exit the dungeon via the north door to enter dungeon 2.
 
 
 
 
 
== Dungeon 2 - Transference Center ==
 
 
 
:→ This dungeon is filled with more choices of movement than the first. Upon entering the first room, you will notice a puzzle door to the west and another unlocked door to the north. The player has a choice of which door to choose, but for now let’s take the easy road and head north.
 
 
 
 
 
:→ Once in room 2, you will yet again be presented with another two doors. The north door has another puzzle and the west door is open and looking friendly. Snag the potion on the ground and use that amulet of yours to check around. Then head west.
 
 
 
 
 
:→ In the third room of this dungeon, the player will have to fight an enemy. Conquer it as you’ve done before and head south. Note that there’s a door to the north as well.
 
 
 
 
 
:→ Room four grants you access to a key. Solving that first puzzle would have given you a direct line to this room, but it’s still good to explore as much as possible. Solve the puzzle and get back into the first room.
 
 
 
:Now head north by one room and solve the puzzle on the north door.
 
 
 
 
 
:→ This is a great example of why exploring is the smart thing to do. Solving this puzzle and heading north into room 5 will find you in possession of some new armor. You will be happy later on. Ignore the lock on the eastern door for now and head back out the south door.
 
 
 
:Travel west. This time, enter the northern door.
 
 
 
:'''Cutscene XV – Crash Course (Currency)'''
 
 
 
 
 
:→ Entering room 6, you notice a treasure chest filled with shiny gold pieces, henceforth known and referred to as Akhal. Grab the 200* and listen to the explanation introducing you to your in-game currency system. Head west.
 
 
 
 
 
:→ A tougher battle ensues in room 7 with two enemies to defeat. Do this. Before exiting this room, be sure to look around with your amulet. Unlock the northern door and get ready.
 
 
 
:'''Cutscene XVI – Crash Course (Boss Battles)'''
 
 
 
 
 
:→ Room 8 features your very first full-on boss fight! Bosses are much tougher than your standard enemies and require more finesse to defeat. Always think strategy when coming into a boss fight and remember what you have learned up until that point. A tutorial will occur, so don’t be too afraid. Defeat this beast and head east.
 
 
 
 
 
:→ More keys! Pick them up, no surprise one of them is a dungeon key. Exit room 9 the way you came and find your way back to the room where we collected your new armor. (Told you it was a good idea to explore)
 
 
 
:Do this by leaving room 9 and travelling west, south, east, south, east, and north. This time, use that key and gain entry to the east room.
 
 
 
:'''Cutscene XVII – Crash Course (Puzzle Rooms)'''
 
 
 
 
 
:→ This is your first puzzle room challenge, all the way in room 10! You must solve the puzzle presented in puzzle rooms before the timer click away to zero. Read the explanation for how this all works and then solve away! Now exit via the north door.
 
 
 
:'''FMV IV – Almost Isn’t Good Enough'''
 
 
 
 
 
:→ The exit to dungeon 2 is in sight. However, first you notice a strange being lingering about the room. It’s a merchant! This guy has no allegiance to anyone but money. At least you can now purchase or sell items or other pick-ups during that you find during the game. Remain on your toes, as he is apt to cheat you out of a few coins here or there. It’s up to you to stop this. After learning about shopping via the cutscene, you may now exit the dungeon and continue your journey.
 
 
 
 
 
== Dungeon 3 - The Gauntlet ==
 
 
 
:being updated...
 
 
 
 
 
== Dungeon 4 - Nerve Block ==
 
 
 
:being updated...
 
 
 
 
 
== Dungeon 5 - Chamber of Trials ==
 
 
 
:being updated...
 
  
  
 
{{Fortune_Hunter/Navigation}}
 
{{Fortune_Hunter/Navigation}}

Latest revision as of 03:02, 15 January 2010