# HG changeset patch # User Periklis Ntanasis # Date 1378946993 -10800 # Node ID 86b82816b2226c334902a2ede99e89af48e77139 # Parent 7fa70d381c75f98df20d5f702abcf2970a4d3bf1 image and description diff -r 7fa70d381c75 -r 86b82816b222 QTfrontend/hedgewars.qrc --- a/QTfrontend/hedgewars.qrc Thu Sep 12 03:19:31 2013 +0300 +++ b/QTfrontend/hedgewars.qrc Thu Sep 12 03:49:53 2013 +0300 @@ -40,6 +40,7 @@ res/campaign/A_Classic_Fairytale/epil.png res/campaign/A_Space_Adventure/cosmos.png res/campaign/A_Space_Adventure/moon01.png + res/campaign/A_Space_Adventure/moon02.png res/campaign/A_Space_Adventure/ice01.png res/campaign/A_Space_Adventure/ice02.png res/campaign/A_Space_Adventure/desert01.png diff -r 7fa70d381c75 -r 86b82816b222 QTfrontend/res/campaign/A_Space_Adventure/moon02.png Binary file QTfrontend/res/campaign/A_Space_Adventure/moon02.png has changed diff -r 7fa70d381c75 -r 86b82816b222 share/hedgewars/Data/Locale/campaigns_en.txt --- a/share/hedgewars/Data/Locale/campaigns_en.txt Thu Sep 12 03:19:31 2013 +0300 +++ b/share/hedgewars/Data/Locale/campaigns_en.txt Thu Sep 12 03:49:53 2013 +0300 @@ -20,6 +20,7 @@ A_Space_Adventure-cosmos.desc="Hogera, the planet of hogs is about to be hit by a gigantic meteorite. In this race for survival you have to lead PAotH's best pilot, Hog Solo, in a space trip around the neighbor planets to collect all the 4 pieces of the long lost anti gravity device!" A_Space_Adventure-moon01.desc="Hog Solo has landed on the moon to refuel his saucer but professor Hogevil has gone there first and set an ambush! Rescue the catpured PAotH researchers and drive professor Hogevil away!" +A_Space_Adventure-moon02.desc="Hog Solo visits an hermit, old PAotH veteran, who lives in moon in order to collect some intel about Pr. Hogevil. However, he has to beat the hermit, Soneek the Crazy Runner, in a chase game first!" A_Space_Adventure-ice01.desc="Welcome to the planet of ice. Here, it's so cold that most of Hog Solo's weapons won't work. You have to get the lost part from the bandit leader Thanta using the weapons that you'll find there!" A_Space_Adventure-ice02.desc="Hog Solo couldn't just visit the Ice Planet without visiting the olympic stadium of saucer flying! In this mission you can proove your flying skills and claim your place between the best!" A_Space_Adventure-desert01.desc="You have landed to the planet of sand! Hog Solo has to find the missing part in the underground tunnels. Be careful as vicious smugglers await to attack and rob you!" diff -r 7fa70d381c75 -r 86b82816b222 share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/campaign.ini --- a/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/campaign.ini Thu Sep 12 03:19:31 2013 +0300 +++ b/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/campaign.ini Thu Sep 12 03:49:53 2013 +0300 @@ -50,5 +50,5 @@ Script=desert03.lua [Mission 13] -Name=Side Mission: Chasing ghosts in moon +Name=Side Mission: Chasing the blue hog Script=moon02.lua diff -r 7fa70d381c75 -r 86b82816b222 share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/moon02.lua --- a/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/moon02.lua Thu Sep 12 03:19:31 2013 +0300 +++ b/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/moon02.lua Thu Sep 12 03:49:53 2013 +0300 @@ -9,7 +9,7 @@ ----------------- VARIABLES -------------------- -- globals -local missionName = loc("Chasing ghosts in moon") +local missionName = loc("Chasing the blue hog") local challengeObjectives = loc("Use your available weapons in order to catch the other hog").."|".. loc("You have to stand very close to him") local currentPosition = 1 @@ -66,7 +66,7 @@ AnimSetGearPosition(hero.gear, hero.x, hero.y) -- Crazy Runner AddTeam(teamB.name, teamB.color, "Bone", "Island", "HillBilly", "cm_birdy") - runner.gear = AddHog(runner.name, 0, 100, "war_desertgrenadier1") + runner.gear = AddHog(runner.name, 0, 100, "sth_Sonic") AnimSetGearPosition(runner.gear, runner.places[1].x, runner.places[1].y) HogTurnLeft(runner.gear, true)