1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
-- _________ __ __
-- / _____// |_____________ _/ |______ ____ __ __ ______
-- \_____ \\ __\_ __ \__ \\ __\__ \ / ___\| | \/ ___/
-- / \| | | | \// __ \| | / __ \_/ /_/ > | /\___ \
-- /_______ /|__| |__| (____ /__| (____ /\___ /|____//____ >
-- \/ \/ \//_____/ \/
-- ______________________ ______________________
-- T H E W A R B E G I N S
-- Stratagus - A free fantasy real time strategy game engine
--
-- upgrade.ccl - Define the elites dependencies and upgrades.
--
-- (c) Copyright 2001-2004 by Lutz Sammer and Crestez Leonard
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 2 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
--
-- $Id: upgrade.lua,v 1.4 2004/05/29 10:31:59 feb Exp $
DefineAllow("unit-assault", "AAAAAAAAAAAAAAAA")
DefineAllow("unit-grenadier", "AAAAAAAAAAAAAAAA")
DefineAllow("unit-bazoo", "AAAAAAAAAAAAAAAA")
DefineAllow("unit-engineer", "AAAAAAAAAAAAAAAA")
DefineAllow("unit-medic", "AAAAAAAAAAAAAAAA")
DefineAllow("unit-harvester", "AAAAAAAAAAAAAAAA")
DefineAllow("unit-gen", "AAAAAAAAAAAAAAAA")
DefineAllow("unit-camp", "AAAAAAAAAAAAAAAA")
DefineAllow("unit-dev-yard", "AAAAAAAAAAAAAAAA")
DefineAllow("unit-vault", "AAAAAAAAAAAAAAAA")
DefineAllow("unit-rfac", "AAAAAAAAAAAAAAAA")
DefineAllow("unit-hosp", "AAAAAAAAAAAAAAAA")
DefineAllow("unit-vfac", "AAAAAAAAAAAAAAAA")
DefineAllow("unit-apcs", "AAAAAAAAAAAAAAAA")
DefineAllow("unit-human-wall", "AAAAAAAAAAAAAAAA")
DefineAllow("unit-msilo", "AAAAAAAAAAAAAAAA")
DefineAllow("unit-plate1", "AAAAAAAAAAAAAAAA")
-- - upgrades
DefineUpgrade("upgrade-expl", "icon", "icon-expl",
"costs", {100, 250, 300, 0, 0, 0, 0})
DefineUpgrade("upgrade-expl2", "icon", "icon-expl2",
"costs", {150, 350, 400, 0, 0, 0, 0})
DefineUpgrade("upgrade-tdril", "icon", "icon-tdril",
"costs", {100, 250, 220, 0, 0, 0, 0})
DefineUpgrade("upgrade-ddril", "icon", "icon-ddril",
"costs", {150, 350, 350, 0, 0, 0, 0})
DefineUpgrade("upgrade-pdril", "icon", "icon-pdril",
"costs", {200, 450, 450, 0, 0, 0, 0})
DefineUpgrade("upgrade-void", "icon", "icon-void",
"costs", {2000, 0, 0, 0, 0, 0, 0})
DefineModifier("upgrade-expl2",
{"piercing-damage", 5},
{"apply-to", "unit-grenadier"})
DefineModifier("upgrade-tdril",
-- {"harvesting", 10}
{"apply-to", "unit-engineer"}, {"apply-to", "unit-harvester"})
DefineModifier("upgrade-ddril",
-- {"harvesting", 20}
{"apply-to", "unit-engineer"}, {"apply-to", "unit-harvester"})
DefineModifier("upgrade-pdril",
-- {"harvesting", 30}
{"apply-to", "unit-engineer"}, {"apply-to", "unit-harvester"})
DefineModifier("upgrade-void",
{"piercing-damage", 10},
{"apply-to", "unit-bazoo"}, {"apply-to", "unit-assault"})
DefineAllow("upgrade-expl", "AAAAAAAAAAAAAAAA")
DefineAllow("upgrade-expl2", "AAAAAAAAAAAAAAAA")
DefineAllow("upgrade-tdril", "AAAAAAAAAAAAAAAA")
DefineAllow("upgrade-ddril", "AAAAAAAAAAAAAAAA")
DefineAllow("upgrade-pdril", "AAAAAAAAAAAAAAAA")
DefineAllow("upgrade-void", "AAAAAAAAAAAAAAAA")
-- DefineDependency("upgrade-void", {"upgrade-expl2", "upgrade-pdril"})
DefineDependency("unit-bazoo", {"upgrade-expl2"})
DefineDependency("unit-grenadier", {"upgrade-expl"})
-- DefineDependency("unit-expl2", {"upgrade-expl"})
-- DefineDependency("unit-ddril", {"upgrade-tdril"})
-- DefineDependency("unit-pdril", {"upgrade-ddril"})
DefineDependency("unit-dev-yard", {"unit-vault"})
DefineDependency("unit-camp", {"unit-vault"})
DefineDependency("unit-rfac", {"unit-vault"})
DefineDependency("unit-medic", {"unit-hosp"})
DefineDependency("unit-gen", {"unit-vault"})
DefineDependency("unit-hosp", {"unit-vault", "unit-camp"})
DefineDependency("unit-vfac", {"unit-vault", "unit-rfac"})
DefineDependency("unit-msilo", {"unit-vault", "unit-rfac", "unit-dev-yard"})
|