don't click here

Sonic Lost World (Wii U, 3DS, PC) Megathread

Discussion in 'General Sonic Discussion' started by TimmiT, May 17, 2013.

  1. Twilightzoney

    Twilightzoney

    Tech Member
    353
    0
    16
    Elgin, IL And Hampshire
    Unleashed and Generations Stuff and Custom Works
    Oh what I mean is like they were originally set up that way. Like the levels you assumed to be for Windy Hill were meant to be that way. There is a old lua handling that had them in the order you'd expect them to be. But they made these X** levels like Xbee XCas XSea1 XSea2 and Xind (cave levels) and tried fitting them in to places.

    So originally each 'world' was supposed to get a hard level at the end and then reset. That's why that difficulty got a bit increased in some later levels when some other levels were easy.

    Final Level Order

    Code (Text):
    1. - W1
    2.    {
    3. title = "w1 prairie",
    4.  
    5. stages = {
    6. {
    7. name = "w1a01",
    8. title = "w1-1: Gurasuhiru"
    9. },
    10. {
    11. name = "w1a03",
    12. title = "w1-2: Moonlight",
    13. },
    14. {
    15. name = "xind01",
    16. title = "w1-3: Indy cave",
    17. },
    18. {
    19. name = "w1a06",
    20. title = "w1-4: Moonlight 2",
    21. },
    22. },
    23.    },
    24.    - W2
    25.    {
    26. title = "w2 desert",
    27.  
    28. stages = {
    29. {
    30. name = "w2a01",
    31. title = "w2-1: Sand worm army",
    32. },
    33. {
    34. name = "xbee01",
    35. title = "w2-2: bee nest face",
    36. },
    37. {
    38. name = "xswe01",
    39. title = "w2-3: ilomilo candy",
    40. },
    41. {
    42. name = "w2a06",
    43. title = "w2-4: tornado",
    44. },
    45. },
    46.    },
    47.    - W3
    48.    {
    49. title = "w3 tropical",
    50.  
    51. stages = {
    52. {
    53. name = "w3a01",
    54. title = "w3-1: tropical beach",
    55. },
    56. {
    57. name = "w3a03",
    58. title = "w3-2: fruit plantation",
    59. },
    60. {
    61. name = "xsea01",
    62. title = "w3-3: submarine cave",
    63. },
    64. {
    65. name = "w3a06",
    66. title = "w3-4: Onikinme"
    67. },
    68. {
    69. name = "w6a03",
    70. title = "w3-X: updraft",
    71. },
    72. },
    73.    },
    74.    - W4
    75.    {
    76. title = "w4 snow",
    77.  
    78. stages = {
    79. {
    80. name = "w4a01",
    81. title = "w4-1: military factory",
    82. },
    83. {
    84. name = "w4a04",
    85. title = "w4-2: Poppozu"
    86. },
    87. {
    88. name = "xcas01",
    89. title = "w4-3: Casino",
    90. },
    91. {
    92. name = "w4a06",
    93. title = "w4-4: Ski-to-door",
    94. },
    95. },
    96.    },
    97.    - W5
    98.    {
    99. title = "w5 jungle",
    100.  
    101. stages = {
    102. {
    103. name = "w5a01",
    104. title = "w5-1: Jungle track facility",
    105. },
    106. {
    107. name = "w5a02",
    108. title = "w5-2: horned owl",
    109. },
    110. {
    111. name = "xind02",
    112. title = "w5-3: Indy cave 2",
    113. },
    114. {
    115. name = "xmoa01",
    116. title = "w5-4: Moai"
    117. },
    118. },
    119.    },
    120.    - W6
    121.    {
    122. title = "w6 empty",
    123.  
    124. stages = {
    125. {
    126. name = "w1a04",
    127. title = "w6-1: large monoclonal Army",
    128. },
    129. {
    130. name = "w5a03",
    131. title = "w6-2: flying dragon",
    132. },
    133. {
    134. name = "w6a05",
    135. title = "w6-3: updraft 2",
    136. },
    137. {
    138. name = "w2c01",
    139. title = "w6-4: yellow triplicate spring",
    140. },
    141. {
    142. name = "xnim02",
    143. title = "w6-X: Kin Tokumo 2",
    144. },
    145. },
    146.    },
    147.    - W7
    148.    {
    149. title = "w7 lava",
    150. stages = {
    151. {
    152. name = "w7a01",
    153. title = "w7-1: Volcano",
    154. },
    155. {
    156. name = "xsea02",
    157. title = "w7-2: submarine cave 2",
    158. },
    159. {
    160. name = "w7a02",
    161. title = "w7-3: Citadel volcano 2",
    162. },
    163. {
    164. name = "w7a06",
    165. title = "w7-4: final boss battle",
    166. },
    167. },
    168.    },
    169.    - W8
    170.    {
    171. title = "w8 Special",
    172. stages = {
    173. {
    174. name = "xcub01",
    175. title = "w8-1: Rubik's Cube",
    176. },
    177. {
    178. name = "xsky01",
    179. title = "w8-2: Sky Chase",
    180. },
    181. {
    182. name = "xnim01",
    183. title = "w8-3: Sujitokumo"
    184. },
    185. {
    186. name = "xbak01",
    187. title = "w8-4: Bakubaku scaffolding",
    188. },
    189. },
    190.    }

    Heres the old one you can see the point where they stopped and started adding more stuff into it. Theres more after where this ends but they seem to have old testing levels listed in here and Colors level names listed as well.

    Code (Text):
    1. old_stage_all = {
    2.  
    3.    - W1
    4.    {
    5. title = "w1 prairie",
    6.  
    7. stages = {
    8. {
    9. name = "w1a01",
    10. title = "w1-1: Gurasuhiru"
    11. },
    12. {
    13. name = "w1a02",
    14. title = "w1-2: Indy cave",
    15. },
    16. {
    17. name = "w1a03",
    18. title = "w1-3: Moonlight",
    19. },
    20. {
    21. name = "w1a04",
    22. title = "w1-4: large monoclonal Army",
    23. },
    24. {
    25. name = "w1a05",
    26. title = "w1-5: Moai"
    27. },
    28. {
    29. name = "w1c01",
    30. title = "w1-A: Kin Tokumo"
    31. },
    32. },
    33.    },
    34.    - W2
    35.    {
    36. title = "w2 desert",
    37.  
    38. stages = {
    39. {
    40. name = "w2a01",
    41. title = "w2-1: Sand worm army",
    42. },
    43. {
    44. name = "w2a02",
    45. title = "w2-2: Sky Chase",
    46. },
    47. {
    48. name = "w2a03",
    49. title = "w2-3: ancient city",
    50. },
    51. {
    52. name = "w2a04",
    53. title = "w2-4: giant crab",
    54. },
    55. {
    56. name = "w2a05",
    57. title = "w2-5: Sand worm body",
    58. },
    59. {
    60. name = "w2a06",
    61. title = "w2-6: tornado",
    62. },
    63. {
    64. name = "w2c01",
    65. title = "w2-A: yellow triplicate spring",
    66. },
    67. },
    68.    },
    69.    - W3
    70.    {
    71. title = "w3 tropical",
    72.  
    73. stages = {
    74. {
    75. name = "w3a01",
    76. title = "w3-1: tropical beach",
    77. },
    78. {
    79. name = "w3a03",
    80. title = "w3-3: fruit plantation",
    81. },
    82. {
    83. name = "w3a07",
    84. title = "w3-7: tropical beach 2",
    85. },
    86. },
    87.    },
    88.    - W4
    89.    {
    90. title = "w4 snow",
    91.  
    92. stages = {
    93. {
    94. name = "w4a01",
    95. title = "w4-1: military factory",
    96. },
    97. {
    98. name = "w4a02",
    99. title = "w4-2: Indy cave 2",
    100. },
    101. {
    102. name = "w4a03",
    103. title = "w4-3: ilomilo candy",
    104. },
    105. },
    106.    },
    107.    - W5
    108.    {
    109. title = "w5 jungle",
    110.  
    111. stages = {
    112. {
    113. name = "w5a01",
    114. title = "w5-1: Jungle track facility",
    115. },
    116. },
     
  2. Hamzawesome

    Hamzawesome

    Member
    132
    61
    28
    Umm...

    I'm sorry, but I don't think they'll lose lots of money if they port one or two Sonic games to the Vita. And it's not like Vita games don't sell at all, regardless of the console's current sales itself. Also, if they released 3 games on the Wii U (a console that has sold even less than the Vita), then I think they won't have a problem with one or two ports for Vita.
     
  3. STHX

    STHX

    SEGAAAAAAAAA?!? Member
    1,809
    3
    18
    The world of Trophies
    Sonic In Mushroom Kingdom
    I can't say much about cost-to-sales ration on the Vita, but the Wii U games were obviously part of some sort of agreement between Nintendo and Sega linked to, but not necessarily only for that, Sonic's return in Smash 4. Sonic Lost World is announced and just a month before release suddenly Sonic is confirmed for Smash, coincidence? There is also the M&S series to consider, or the Sonic amiibo compatible with games like Mario Maker.
     
  4. TimmiT

    TimmiT

    ¯\_(ツ)_/¯ Member
    The Wii U thing was done after an exclusivity contract between SEGA and Nintendo. Meaning that those Wii U/3DS games were likely at least partially funded by Nintendo. Also, a big part of Sonic's audience generally buy Nintendo consoles, so a decent amount of sales would likely have been on Wii U and 3DS anyway if it was a multiplatform game. After all: Nintendo fans like mascot platformer games.

    Compare that to the Vita, on which right now the primary audience are people who'd buy niche indie games or niche Japanese games (think JRPGs and visual novels). Meaning that in the niche audience that owns a Vita, only a small group of people is probably actually interested in buying a Sonic game on it. Aside from that, since you're talking about ports, it's also possible that this small group of people already owns the Sonic game on a different system.

    Aside from that: the Vita is pretty much dead outside of the two types of games I just mentioned.
     
  5. Hamzawesome

    Hamzawesome

    Member
    132
    61
    28
    Okay, I understand.
     
  6. TimmiT

    TimmiT

    ¯\_(ツ)_/¯ Member
    Hey Brits, SEGA Europe is holding a community event for the release of the game this Saturday: https://twitter.com/SEGA_Europe/status/6589465009411891
     
  7. Overlord

    Overlord

    Now playable in Smash Bros Ultimate Moderator
    19,239
    972
    93
    Long-term happiness
    Your link's broken: https://twitter.com/SEGA_Europe/status/658946500941189120

    It'd be nice if someone from Retro could get down there and give a report. No way I can attend because I'm occupied that Saturday.
     
  8. DigitalDuck

    DigitalDuck

    Arriving four years late. Member
    5,351
    438
    63
    Lincs, UK
    TurBoa, S1RL
    It's too short notice for me. If they'd announced it last week I might've considered.
     
  9. SaviourDCX

    SaviourDCX

    Oldbie
    227
    4
    18
    If they are holding an event just for the PC version of this game then they might have something to announce or show off :D
     
  10. Absolutely amazing. Because of how I came here out of the blue and asked for such a thing, I didn't actually expect for somebody to help me, this is why I just returned and saw this. Please continue if you can, your effort will be greatly appreciated. :)
     
  11. ICEknight

    ICEknight

    Researcher Researcher
    Wishful thinking, but I hope they're also announcing Sonic Unleashed and Colors PC because ugh Lost World.
     
  12. Neowl

    Neowl

    feels good man Member
    933
    53
    28
    London, England
    SAIL HATAN
    After looking into the venue (quite the gamer-centric bar from the sounds of it), I've booked in and should be attending the event. I can attempt a write up on Sunday if needed.

    Edit: It is strange that there's this event purely for the PC release, it'll be interesting to see how it unfolds.

    Also, I'm a little sceptical that they're gonna show off the Wii U version as a placeholder. Just a thought in the back of my mind, though.
     
  13. TimmiT

    TimmiT

    ¯\_(ツ)_/¯ Member
    There's no real reason for them to do so. The PC port should be ready for release when the event happens. If not, then they'd be cutting it real close to the deadline.
     
  14. KingOfBunnies

    KingOfBunnies

    Member
    1,193
    300
    63
    So, according to my timehop yesterday, this game was release 2 years ago yesterday. Letting it sit with me and stew, yeah, this game was kinda garbage. I know we established this already. One of my posts in this thread 2 years ago was stating that IGN and Gamespot's score of 6 out of 10 was a accurate score. Now, the way they played it was bad, but the score was accurate. In fact, I would rate it a bit lower. I don't understand how Sega could release such a game that just threw away all the good will they had with Colors and Generations. Now they're releasing it on PC and expect people to buy it. I'm just so confused as to why. I feel not even modding could make this game enjoyable. Just introduce some okay levels.
     
  15. Kyuu

    Kyuu

    Memory Access Violation Member
    You're not the only one hoping that, I can tell you that much :v:

    I can't imagine what they'd be holding an event like this for other than something along those lines, though. Seems kinda oddly specific to me that they'd have a community event like this just for the PC version of a 2-year-old game that had a relatively lukewarm reception.
     
  16. Falk

    Falk

    Member
    1,570
    15
    18
    Oh man some of the stories I could tell you.

    Not Sonic related, and not PC related, but Day 1 patches are a thing of beauty.

    By a thing of beauty I actually mean a crutch that has over the years turned into an enabler of crunch nightmares for devs.
     
  17. AnimatedAF

    AnimatedAF

    Member
    827
    34
    28
    I'm going to be going to this too, might even make a little video about it if there's anything noteworthy.
     
  18. TimmiT

    TimmiT

    ¯\_(ツ)_/¯ Member
    People at the event are saying that they improved the controls for the PC version. Which is surprising cause Sega generally don't make any improvements at all for these kinds of ports. I wonder if this means that Sonic Team did the port, I don't see them letting anyone else make improvements to the game like that.
     
  19. Blue Blood

    Blue Blood

    Member
    5,903
    823
    93
    I wonder if the controls are actually improved at all, or if it's just just a case of someone saying "it's not the GamePad so now I like it more"? Cause the controls in Lost World were absolutely fine (in the sense that they worked). I doubt anything has actually changed in regards to how Sonic moves/is controlled. The finicky parkour, instantly stopping when there's no directional input, two separate jump buttons that do different actions in air, and Sonic's total loss of speed when turning are unlikely to be any differentl. If they'd done anything like that, then I'd have expected SEGA to be pushing a whole "revamped control scheme" or something. Also IIRC the evidence points to SEGA Europe managing the port, since they're SEGA's big PC guys now.
     
  20. TimmiT

    TimmiT

    ¯\_(ツ)_/¯ Member
    [​IMG]

    So seems like they took keyboard controls into account. That's surprising.