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
|
#pragma once
#include "tag-version.h"
enum daction_type
{
#if TAG_MAJOR_VERSION == 34
DACT_ALLY_HOLY,
DACT_ALLY_UNHOLY_EVIL,
DACT_ALLY_UNCLEAN_CHAOTIC,
DACT_ALLY_SPELLCASTER,
DACT_ALLY_YRED_RELEASE_SOULS,
#endif
DACT_ALLY_BEOGH, // both orcs and demons summoned by high priests
DACT_ALLY_SLIME,
DACT_ALLY_PLANT,
NUM_DACTION_COUNTERS,
// Leave space for new counters, as they need to be at the start.
DACT_OLD_CHARMD_SOULS_POOF = 16,
#if TAG_MAJOR_VERSION == 34
DACT_HOLY_NEW_ATTEMPT,
#else
DACT_SLIME_NEW_ATTEMPT,
#endif
#if TAG_MAJOR_VERSION == 34
DACT_HOLY_PETS_GO_NEUTRAL,
DACT_ALLY_TROG,
DACT_RECLAIM_DECKS,
#endif
DACT_REAUTOMAP,
DACT_JIYVA_DEAD,
DACT_PIKEL_MINIONS,
DACT_ROT_CORPSES,
#if TAG_MAJOR_VERSION == 34
DACT_TOMB_CTELE,
DACT_SLIME_NEW_ATTEMPT,
#endif
DACT_KIRKE_HOGS,
#if TAG_MAJOR_VERSION == 34
DACT_END_SPIRIT_HOWL,
#endif
DACT_GOLD_ON_TOP,
DACT_BRIBE_TIMEOUT,
DACT_REMOVE_GOZAG_SHOPS,
DACT_SET_BRIBES,
#if TAG_MAJOR_VERSION == 34
DACT_ALLY_MAKHLEB,
DACT_ALLY_SACRIFICE_LOVE,
#endif
DACT_ALLY_HEPLIAKLQANA,
DACT_UPGRADE_ANCESTOR,
DACT_REMOVE_IGNIS_ALTARS,
DACT_BEOGH_VENGEANCE_CLEANUP,
DACT_BANE_MORTALITY_CLEANUP,
NUM_DACTIONS,
// If you want to add a new daction, you need to
// add a corresponding entry to *daction_names[]
// of dactions.cc to avoid breaking the debug build
};
|