Author Topic: Okay, just how much IS there to Phantasm Romance?  (Read 6109 times)

Milkyway64

  • I AM A MAD SCIENTIST. KIND OF.
Okay, just how much IS there to Phantasm Romance?
« on: November 13, 2009, 03:10:02 AM »
Aya, Yuka, Chen/Ran, Youmu, Suika, Mima, then Shinki/Reimu. So that's six stages plus a choice between too big extra's. But, I hear there is a Yukari, Sakuya, and even a Remilia fight. Just how do we get to these, and from where? I tried beating Mima with varying stats, just straight to Extra 3 or 4. So certainly, there are branching paths in the main game I am somehow missing?


Gc

  • youtu.be/pRZpjlrKM8A
Re: Okay, just how much IS there to Phantasm Romance?
« Reply #1 on: November 13, 2009, 03:17:07 AM »
Go in config.txt and change :
Code: [Select]
playstage = 0 ;to
Code: [Select]
playstage = 14 ;
It will send you directly to the last extra.

Milkyway64

  • I AM A MAD SCIENTIST. KIND OF.
Re: Okay, just how much IS there to Phantasm Romance?
« Reply #2 on: November 13, 2009, 03:20:25 AM »
Go in config.txt and change :
Code: [Select]
playstage = 0 ;to
Code: [Select]
playstage = 14 ;
It will send you directly to the last extra.

With a little help from ctc Marisa B, I can reach Reimu just fine. :V However, I can try every number between to play Extra 2 and whatever stage has Sakuya and Remilia if all else fails, so thanks anyway. ;D

Johnny Walker

  • Perdition Crisis~
Re: Okay, just how much IS there to Phantasm Romance?
« Reply #3 on: November 13, 2009, 05:09:11 AM »
Uncomment the first line in every plural file to show them in danmakufu.
Then in "local_boss.txt", search and comment the next line:

Code: [Select]
if(GetCommonDataDefault("PlayFlg",99)==99){VanishEnemy();}
And now you have separated plural files of each boss (no stage portion).

Milkyway64

  • I AM A MAD SCIENTIST. KIND OF.
Re: Okay, just how much IS there to Phantasm Romance?
« Reply #4 on: November 13, 2009, 06:41:52 AM »
Uncomment the first line in every plural file to show them in danmakufu.
Then in "local_boss.txt", search and comment the next line:

Code: [Select]
if(GetCommonDataDefault("PlayFlg",99)==99){VanishEnemy();}
And now you have separated plural files of each boss (no stage portion).

Also a bit useful. But I'll rephrase the original question a little;

What do we do in Stage three to get Yukari after us, and does simply beating her alter the next few stages through Sakuya and Remi, rather than Youmu and Suika? What are the in-game requirements to see these stages?

Re: Okay, just how much IS there to Phantasm Romance?
« Reply #5 on: November 13, 2009, 03:17:53 PM »
Just by looking at the code:

StageEx1 is unlocked by beating stage1, stage2 and stage3 with a combined total of less than or equal to 6 bombs and lives lost if you're playing normal mode, or a combined total of less than or equal to 5 bombs and lives lost if you are playing lunatic.

If you played StageEx1 and are playing lunatic mode, StageEx2 is automatically unlocked after beating stage4, which replaces stage5. If your playing normal mode, you will automatically play stage5 no matter what.

If you beat stage5/StageEx2 without continuing, you proceed to stage6.

If you're playing normal mode, stage6 is the end of the game.

If you beat stage6 with no continues, have a live stock of greater than or equal to 3, and are playing lunatic mode, you proceed to StageEx3.

If you beat StageEx3 and have still not continued*, you proceed to StageEx4.

*By looking at the code, it looks like all you have to do is beat StageEx3 without continuing, however there is "unnecessary" code that states you can proceed by having less than or equal to 15 bombs. I can't see how this will ever come in to effect though, since you need to pass StageEx3 for the conditional statement to be true anyway. The variable ex3_in is 1 (true) just by playing StageEx3, so the statement if(Continued==false&&extra4_flg&&(ex3_in||GetBombCount<=15)) will always be true if you beat StageEx3 and have not continued at all. The &&(ex3_in||GetBombCount<=15) seems completely unnecessary.

Another note: there are point requirements to pass each level successfully as well, however, if you do not continue at all, it is almost impossible to not reach the point requirement.

Also, I need to play this game and not quit after stage1. Wait! I can remember seeing Ran at some point! Damn, I still need to play this game and remember it.
« Last Edit: November 13, 2009, 03:23:09 PM by Naut »

Milkyway64

  • I AM A MAD SCIENTIST. KIND OF.
Re: Okay, just how much IS there to Phantasm Romance?
« Reply #6 on: November 13, 2009, 08:25:03 PM »
Just by looking at the code:

StageEx1 is unlocked by beating stage1, stage2 and stage3 with a combined total of less than or equal to 6 bombs and lives lost if you're playing normal mode, or a combined total of less than or equal to 5 bombs and lives lost if you are playing lunatic.

If you played StageEx1 and are playing lunatic mode, StageEx2 is automatically unlocked after beating stage4, which replaces stage5. If your playing normal mode, you will automatically play stage5 no matter what.

If you beat stage5/StageEx2 without continuing, you proceed to stage6.

If you're playing normal mode, stage6 is the end of the game.

If you beat stage6 with no continues, have a live stock of greater than or equal to 3, and are playing lunatic mode, you proceed to StageEx3.

If you beat StageEx3 and have still not continued*, you proceed to StageEx4.

*By looking at the code, it looks like all you have to do is beat StageEx3 without continuing, however there is "unnecessary" code that states you can proceed by having less than or equal to 15 bombs. I can't see how this will ever come in to effect though, since you need to pass StageEx3 for the conditional statement to be true anyway. The variable ex3_in is 1 (true) just by playing StageEx3, so the statement if(Continued==false&&extra4_flg&&(ex3_in||GetBombCount<=15)) will always be true if you beat StageEx3 and have not continued at all. The &&(ex3_in||GetBombCount<=15) seems completely unnecessary.

Another note: there are point requirements to pass each level successfully as well, however, if you do not continue at all, it is almost impossible to not reach the point requirement.

Also, I need to play this game and not quit after stage1. Wait! I can remember seeing Ran at some point! Damn, I still need to play this game and remember it.

Yes! Thanks, Naut! +respect