diff --git a/data/DataCache.scr b/data/DataCache.scr index d29f87a16..df403c30b 100644 --- a/data/DataCache.scr +++ b/data/DataCache.scr @@ -49,6 +49,8 @@ scripts/fma_ch6_01.dat scripts/fma_ch6_02.dat scripts/fma_ch6_03.dat +scripts/fma_plankton.dat + translations/swe.dat translations/dut.dat translations/ita.dat diff --git a/data/Scripts/fma_plankton.scr b/data/Scripts/fma_plankton.scr index 1922eb051..59d6e6f52 100644 --- a/data/Scripts/fma_plankton.scr +++ b/data/Scripts/fma_plankton.scr @@ -6,15 +6,7 @@ #include data/scripts/defs/trans.scr -_setText(CHAR_JACKCUSTARD,STR__INGAME__FMA_C1_INTRO0); -_setResponseOptions(QUESTION_OK); -do -{ - pause; -} -while(_getResponse()==ANSWER_NONE); - -_setText(CHAR_JACKCUSTARD,STR__INGAME__FMA_C1_INTRO1); +_setText(CHAR_PLANKTON,STR__INGAME__FMA_PLANKTON); _setResponseOptions(QUESTION_OK); do { diff --git a/data/translations/text.dat b/data/translations/text.dat index 06bede423..dd7872b7a 100644 --- a/data/translations/text.dat +++ b/data/translations/text.dat @@ -277,6 +277,10 @@ eng=Well, I have learnt today that friendship is something that is priceless! SB eng=SpongeBob SqaurePants!!! Wait until I get my hands on that porous Freak!!!! +; --------------------------------------------------------------- +; Plankton FMA +[STR__INGAME__FMA_PLANKTON] +eng=Blast you SpongeBreath, you have found my secret time machine! Whatever you do make sure you fill it up before you bring it back!!!! ; --------------------------------------------------------------- [STR__INGAME__GENERIC__CHECK1] @@ -364,8 +368,6 @@ Chapter 2 - Level 1 - 02 eng=I ain't telling you again lad! Wear your boots and you'll go far! Argh! - - ; --------------------------------------------------------------- ; Pause menu ; --------------------------------------------------------------- diff --git a/makefile.gfx b/makefile.gfx index f84ea2de0..8a57d5106 100644 --- a/makefile.gfx +++ b/makefile.gfx @@ -601,7 +601,8 @@ SCRIPTS_LIST := ch1l1_01 ch1l1_02 ch1l2_01 ch1l2_02 ch1l2_03 ch1l4_01 ch1l4_02 fma_ch3_00 fma_ch3_01 fma_ch3_02 \ fma_ch4_00 fma_ch4_01 fma_ch4_02 \ fma_ch5_00 fma_ch5_01 fma_ch5_02 \ - fma_ch6_00 fma_ch6_01 fma_ch6_02 fma_ch6_03 + fma_ch6_00 fma_ch6_01 fma_ch6_02 fma_ch6_03 \ + fma_plankton SCRIPTS_IN_DIR := $(GAME_DATA_DIR)/scripts diff --git a/source/game/convo.cpp b/source/game/convo.cpp index 1fbba5713..34a39eb7e 100644 --- a/source/game/convo.cpp +++ b/source/game/convo.cpp @@ -138,7 +138,7 @@ const sSpeechTable SpeechTable[]= {SPEECH_038,STR__INGAME__FMA_C3_SB1}, {SPEECH_039,STR__INGAME__FMA_C3_BB1}, {SPEECH_040,STR__INGAME__FMA_C3_SB2}, -{SPEECH_041,STR__INGAME__CH3__L1__PLANKTON1}, +{SPEECH_041,STR__INGAME__FMA_PLANKTON}, {SPEECH_042,-1}, {SPEECH_043,-1}, {SPEECH_044,STR__INGAME__CH3__L3__PATRICK1},