ASA death01: Optimize hog spawn positions, animate professor teleportation
authorWuzzy <Wuzzy2@mail.ru>
Thu, 17 Jan 2019 01:19:33 +0100
changeset 14623 ea9f0a99b55b
parent 14622 64be9a8087f2
child 14624 2759c5e28c7d
ASA death01: Optimize hog spawn positions, animate professor teleportation
share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/death01.lua
--- a/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/death01.lua	Thu Jan 17 00:41:55 2019 +0100
+++ b/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/death01.lua	Thu Jan 17 01:19:33 2019 +0100
@@ -47,37 +47,37 @@
 -- hedgehogs values
 hero.name = loc("Hog Solo")
 hero.x = 520
-hero.y = 845
+hero.y = 871
 hero.dead = false
 paoth1.name = loc("H")
 paoth1.x = 3730
-paoth1.y = 1480
+paoth1.y = 1538
 paoth2.name = loc("Dr. Cornelius")
 paoth2.x = 3800
-paoth2.y = 1480
+paoth2.y = 1538
 professor.name = loc("Prof. Hogevil")
 professor.dead = false
 thug1.x = 1265
-thug1.y = 1400
+thug1.y = 1465
 thug1.health = 70
 thug2.x = 2035
-thug2.y = 1320
+thug2.y = 1380
 thug2.health = 95
 thug3.x = 1980
-thug3.y = 815
+thug3.y = 863
 thug3.health = 35
 thug3.turnLeft = true
 thug4.x = 2830
-thug4.y = 1960
+thug4.y = 2007
 thug4.health = 80
 thug5.x = 2890
-thug5.y = 1960
+thug5.y = 2007
 thug5.health = 80
 thug6.x = 2940
-thug6.y = 1960
+thug6.y = 2007
 thug6.health = 80
 thug7.x = 2990
-thug7.y = 1960
+thug7.y = 2007
 thug7.health = 80
 teamA.name = loc("Hog Solo")
 teamA.color = -6
@@ -327,9 +327,13 @@
 
 function startBattle()
 	ShowMission(unpack(goals[dialog01]))
+	AddVisualGear(GetX(professor.human), GetY(professor.human), vgtExplosion, 0, false)
 	HideHog(professor.human)
 	RestoreHog(professor.bot)
+	AddVisualGear(GetX(professor.bot), GetY(professor.bot), vgtExplosion, 0, false)
+	PlaySound(sndWarp)
 	SetGearMessage(hero.gear, 0)
 	AnimSwitchHog(professor.gear)
+	FollowGear(professor.gear)
 	EndTurn(true)
 end