counters: Add Space Dock counter.

This commit is contained in:
Loïc Hoguin 2010-10-14 18:32:00 +02:00
parent 8501b10261
commit 84469eb5ff
3 changed files with 46 additions and 20 deletions

View File

@ -651,26 +651,6 @@
%% Background values include: 01 parum, 02 moatoob, 03 neudaiz, 04 guardians hq, 05 parum guardians, 06 moatoob guardians, 07 neudaiz guardians, 08 pitch black, ff destroyed colony %% Background values include: 01 parum, 02 moatoob, 03 neudaiz, 04 guardians hq, 05 parum guardians, 06 moatoob guardians, 07 neudaiz guardians, 08 pitch black, ff destroyed colony
-define(COUNTERS, [ -define(COUNTERS, [
% Space docks: Phantom Ruins, Dark Satellite, Familiar Trees (missing), Boss quest category (missing), Unit category (missing), Enemy category (missing)
{ 1, [{quests, "data/counters/colony.docks.pack"}, {bg, 255}, {options, << 16#01805400:32, 0, 3, 0, 0, 0, 0,
0, 0, 0, 0, 0, % Phantom Ruins C-S
3, 3, 3, 0, % Dark Satellite C-S variant 1
3, 3, 3, 3, % Dark Satellite C-S variant 2
3, 0, 3, 0, % Dark Satellite C-S variant 3
3, 0, 3, % Dark Satellite S2 variant 1-3
3, 0, 3, % Dark Satellite S3 variant 1-3
0:440 >>}]},
%~ { 1, [{quests, "data/counters/colony.docks.pack"}, {bg, 255}, {options, << 16#01805400:32, 3, 3, 0, 0, 0, 0,
%~ 3, 3, 3, 3, 0, % Phantom Ruins C-S
%~ 3, 3, 3, 3, % Dark Satellite C-S variant 1
%~ 3, 3, 3, 3, % Dark Satellite C-S variant 2
%~ 3, 3, 3, 3, % Dark Satellite C-S variant 3
%~ 3, 3, 3, % Dark Satellite S2 variant 1-3
%~ 3, 3, 3, % Dark Satellite S3 variant 1-3
%~ 0:440 >>}]},
% Parum East: Illusionary Shaft, Mad Creatures, Fire purification (missing), Scarred Planet (missing), Scarred Planet % Parum East: Illusionary Shaft, Mad Creatures, Fire purification (missing), Scarred Planet (missing), Scarred Planet
{ 2, [{quests, "data/counters/parum.east.pack"}, {bg, 1}, {options, << 16#01003c00:32, 3, 3, 0, 0, 3, { 2, [{quests, "data/counters/parum.east.pack"}, {bg, 1}, {options, << 16#01003c00:32, 3, 3, 0, 0, 3,

View File

@ -0,0 +1,46 @@
%% This file is part of EGS.
%%
%% EGS is free software: you can redistribute it and/or modify
%% it under the terms of the GNU Affero General Public License as
%% published by the Free Software Foundation, either version 3 of the
%% License, or (at your option) any later version.
%%
%% EGS 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 Affero General Public License for more details.
%%
%% You should have received a copy of the GNU Affero General Public License
%% along with EGS. If not, see <http://www.gnu.org/licenses/>.
%% Space Dock counter.
{bg, 255}.
{cursor, {640, 425}}.
{t_name, 0}.
{t_desc, 1}.
{groups, [
%% Dark Satellite 1.
[{t_name, 2}, {t_desc, 5}, {quests, [
{1001000, "dark-satellite.1.c.quest.nbl"},
{1001001, "dark-satellite.1.b.quest.nbl"},
{1001002, "dark-satellite.1.a.quest.nbl"},
{1001004, "dark-satellite.1.s2.quest.nbl"},
{1001005, "dark-satellite.1.s3.quest.nbl"}
]}],
%% Dark Satellite 2.
[{t_name, 3}, {t_desc, 5}, {quests, [
{1001010, "dark-satellite.2.c.quest.nbl"},
{1001011, "dark-satellite.2.b.quest.nbl"},
{1001012, "dark-satellite.2.a.quest.nbl"},
{1001013, "dark-satellite.2.s.quest.nbl"}
]}],
%% Dark Satellite 3.
[{t_name, 4}, {t_desc, 5}, {quests, [
{1001020, "dark-satellite.3.c.quest.nbl"},
{1001022, "dark-satellite.3.a.quest.nbl"},
{1001024, "dark-satellite.3.s2.quest.nbl"},
{1001025, "dark-satellite.3.s3.quest.nbl"}
]}]
]}.

Binary file not shown.