diff options
| author | 1029chris <1029chris@gmail.com> | 2016-04-23 21:16:54 -0700 |
|---|---|---|
| committer | 1029chris <1029chris@gmail.com> | 2016-04-23 21:16:54 -0700 |
| commit | 829a6ac12c00d12261c15640de391aee1076d8c7 (patch) | |
| tree | 9d6fd1d90680f8067c0bdc34313bfbc845fcd3df | |
| parent | f032ba786b688a16d9eb502b9c8896655076b207 (diff) | |
Virus has dialogue after antivirus transforms
| -rw-r--r-- | dialogue.lua | 10 | ||||
| -rw-r--r-- | virus1.lua | 4 |
2 files changed, 14 insertions, 0 deletions
diff --git a/dialogue.lua b/dialogue.lua index 4b74c98..24a4324 100644 --- a/dialogue.lua +++ b/dialogue.lua @@ -32,4 +32,14 @@ function loadDia() v1.msgs[9] = "... Huh?" v1.msgs[10] = "An Antivirus? Maybe you aren't so stupid afterall!" v1.msgs[11] = "But you're still pretty stupid." + v1.msgs[13] = "HAHA! PATHETIC! Is that it? Is that all you got?" + v1.msgs[14] = "I bet that thing couldn't put a dent in me!" + v1.msgs[15] = "Go ahead! Try it, you won't stop me! Position it below me, and press the fire button! Go on! DO IT!" + v1.msgs[17] = "Wow, you really are an idiot, huh? Aim it below me and SHOOT IT!" + v1.msgs[19] = "ARE YOU REALLY THAT STUPID!? SHOOT ME! DO IT YOU MORON!" + v1.msgs[21] = "WHAT IS WRONG WITH YOU?! ARE YOU SERIOUS!? OR ARE YOU JUST TRYING TO PISS ME OFF!?" + v1.msgs[23] = "Whatever. You had your chance! Now it's time to destory you!" + v1.msgs[25] = "Ouch! It's stronger than I thought! No matter, because I have defenses of my own!" + v1.msgs[26] = "Prepare youself for my UNIMAGINABLY DESTRUCTIVE POWER!" + v1.msgs[27] = "Also, my giant battleship with multiple turrets." end @@ -131,6 +131,10 @@ function drawVirusFight1() if v1.c.chat.time > 4 then v1.c.chat.msgs = 9 end + elseif v1.c.chat.msgs == 12 then + if av.gun == 98 then + v1.c.chat.msgs = 13 + end end v1.c.sp = math.sqrt(math.abs(v1.c.xd - v1.c.x)*2 + math.abs(v1.c.yd - v1.c.y)*2)/5 if v1.c.chat.msgs == 8 then |
