From d6896ac30b3741ada6158d1ac8907d44adb8a863 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 20 Jun 2022 18:47:22 -0700 Subject: [PATCH] Change levels --- saves/Level3-dialogue.txt | 4 ++-- saves/Level4-dialogue.txt | 8 +++++--- saves/Level4-signs.txt | 2 +- saves/Level4.txt | 8 ++++---- saves/Level5-dialogue.txt | 4 ++-- saves/Level6-dialogue.txt | 4 +++- sound/{pen.wav => pen-2.wav} | Bin src/DialogueMenu.java | 2 +- 8 files changed, 18 insertions(+), 14 deletions(-) rename sound/{pen.wav => pen-2.wav} (100%) diff --git a/saves/Level3-dialogue.txt b/saves/Level3-dialogue.txt index 6ddb556..b18a2c0 100644 --- a/saves/Level3-dialogue.txt +++ b/saves/Level3-dialogue.txt @@ -1,3 +1,3 @@ -Oh you made it past the first real level -Feeling acomplished aren't you... +Whew, that was close! +I think I picked up a clue though; the cannons were all made not far from here... let's go take a gander. diff --git a/saves/Level4-dialogue.txt b/saves/Level4-dialogue.txt index 7fbf43e..59f4ab6 100644 --- a/saves/Level4-dialogue.txt +++ b/saves/Level4-dialogue.txt @@ -1,4 +1,6 @@ $Villain -No more, I won't let you beat this game -It is time for... -BULLET HELL!!!!!!!! \ No newline at end of file +Expecting your friendly pal, weren't you. Unfortunately, he poked his head in the wrong place, and he won't be joining us today. +I am glad you made it here though...... ah, don't act surprised. Surely you've seen the signs I've been leaving everywhere. +While I may be glad you made it here, I certainly am glad you won't be making it out of here. +After all, it's time for... +BULLET HELL! \ No newline at end of file diff --git a/saves/Level4-signs.txt b/saves/Level4-signs.txt index 1ec6efb..05e3603 100644 --- a/saves/Level4-signs.txt +++ b/saves/Level4-signs.txt @@ -1,2 +1,2 @@ --200 400 This level is really hard... +-200 400 Good luck! diff --git a/saves/Level4.txt b/saves/Level4.txt index 4d3a5d8..e43bd14 100644 --- a/saves/Level4.txt +++ b/saves/Level4.txt @@ -2,15 +2,15 @@ d m m m m m q+ d a+ ad d a+ ad d a+ ad -swww3bbbbbbbbbqwwwwwe ad ad -d zxxxxfd ad2www3mu2w3m2ww3m ad +s3bbbbbbbbbbbbbqwwwwe ad ad +d zxxxfd ad2www3mu2w3m2ww3m ad d ad ad ad d ad ad ad -swww3 hd ad ad +sw3 hd ad ad d ak hd ad d ad ad qwwwwwwwwrd d ad zc asssssssstd -swww3 hd asssssssssd +sww3 hd asssssssssd d ad asssssssssd d ad hsssssssssd d ad ! ! qe asssssssssd diff --git a/saves/Level5-dialogue.txt b/saves/Level5-dialogue.txt index 9b8372f..0bda495 100644 --- a/saves/Level5-dialogue.txt +++ b/saves/Level5-dialogue.txt @@ -1,3 +1,3 @@ $Villain -How dare you still be alive -Please DIE DIE DIE DIE DIE DIE \ No newline at end of file +You being alive is quite unfortunate, especially since you tracked me down to my base. +So please do me a favor and DIE. \ No newline at end of file diff --git a/saves/Level6-dialogue.txt b/saves/Level6-dialogue.txt index b49b9cc..67dd51b 100644 --- a/saves/Level6-dialogue.txt +++ b/saves/Level6-dialogue.txt @@ -1 +1,3 @@ -$Empty \ No newline at end of file +Can't believe I made it out of their base! +That was another close one. +Anyways, now that we're out of the woods, we can relax in this clearing, and you can toss some of those bugs you're so fond of. \ No newline at end of file diff --git a/sound/pen.wav b/sound/pen-2.wav similarity index 100% rename from sound/pen.wav rename to sound/pen-2.wav diff --git a/src/DialogueMenu.java b/src/DialogueMenu.java index 1099f06..05af67a 100644 --- a/src/DialogueMenu.java +++ b/src/DialogueMenu.java @@ -108,7 +108,7 @@ public class DialogueMenu extends TextBox implements Serializable { // play dialogue sound if it is not already playing if (currentSound == null || !currentSound.sound.clip.isOpen()) { try { - currentSound = UtilityFunction.playSound("sound/pen.wav"); + currentSound = UtilityFunction.playSound("sound/pen-2.wav"); } catch (UnsupportedAudioFileException | LineUnavailableException | IOException e) { throw new RuntimeException(e); }