From d2e7fd87ade7d841640cbce68ef6bbd6f7df3775 Mon Sep 17 00:00:00 2001 From: Joethepic <60947591+Joethepic@users.noreply.github.com> Date: Fri, 28 Jul 2023 10:04:59 -0500 Subject: [PATCH] initial files 1 --- worlds/smgalaxy2/Items.py | 9 +++++++++ worlds/smgalaxy2/Locations.py | 11 +++++++++++ worlds/smgalaxy2/Options.py | 0 3 files changed, 20 insertions(+) create mode 100644 worlds/smgalaxy2/Items.py create mode 100644 worlds/smgalaxy2/Locations.py create mode 100644 worlds/smgalaxy2/Options.py diff --git a/worlds/smgalaxy2/Items.py b/worlds/smgalaxy2/Items.py new file mode 100644 index 00000000000..14c8b9377c3 --- /dev/null +++ b/worlds/smgalaxy2/Items.py @@ -0,0 +1,9 @@ +from ...BaseClasses import Item + +class SMG2Item(Item): + game: str = "Super Mario Galaxy 2" + +star_item_table = { + "Power Star": 1304785679, + "Progressive Grand Star": 1304785680, +} \ No newline at end of file diff --git a/worlds/smgalaxy2/Locations.py b/worlds/smgalaxy2/Locations.py new file mode 100644 index 00000000000..80383a3a773 --- /dev/null +++ b/worlds/smgalaxy2/Locations.py @@ -0,0 +1,11 @@ +from ...BaseClasses import Location + +class SMG2Location(Location): + game: str = "Super Mario Galaxy 2" + +# Sky Station Galaxy +loc_SS_table = { + "Peewee Piranha's Temper Tantrum": 1304785679, + "Storming the Sky Fleet": 1304785680, + "Peewee Piranha's Speed Run": 1304785681, +} \ No newline at end of file diff --git a/worlds/smgalaxy2/Options.py b/worlds/smgalaxy2/Options.py new file mode 100644 index 00000000000..e69de29bb2d