REM ********************************************
REM
REM Script for Level 205
REM
REM ********************************************

SET_GENERATE_SPEED(400)

MAX_CREATURES(PLAYER0,15)

START_MONEY(ALL_PLAYERS,15000)


ADD_CREATURE_TO_POOL(TUNNELLER,20)
ADD_CREATURE_TO_POOL(BARBARIAN,20)
ADD_CREATURE_TO_POOL(ARCHER,20)
ADD_CREATURE_TO_POOL(DWARFA,20)
ADD_CREATURE_TO_POOL(FAIRY,20)
ADD_CREATURE_TO_POOL(THIEF,20)

CREATURE_AVAILABLE(PLAYER0,THIEF,1,1)
CREATURE_AVAILABLE(PLAYER0,DWARFA,1,1)
CREATURE_AVAILABLE(PLAYER0,TUNNELLER,1,1)

ROOM_AVAILABLE(ALL_PLAYERS,TREASURE,1,1)
ROOM_AVAILABLE(ALL_PLAYERS,RESEARCH,1,1)
ROOM_AVAILABLE(ALL_PLAYERS,WORKSHOP,1,0)
ROOM_AVAILABLE(ALL_PLAYERS,GARDEN,1,1)
ROOM_AVAILABLE(ALL_PLAYERS,LAIR,1,1)
ROOM_AVAILABLE(ALL_PLAYERS,TRAINING,1,1)
ROOM_AVAILABLE(ALL_PLAYERS,BRIDGE,1,0)

MAGIC_AVAILABLE(ALL_PLAYERS,POWER_HAND,1,1)
MAGIC_AVAILABLE(ALL_PLAYERS,POWER_OBEY,1,1)
MAGIC_AVAILABLE(ALL_PLAYERS,POWER_IMP,1,1)
MAGIC_AVAILABLE(ALL_PLAYERS,POWER_SLAP,1,1)
MAGIC_AVAILABLE(ALL_PLAYERS,POWER_SIGHT,1,0)
MAGIC_AVAILABLE(ALL_PLAYERS,POWER_SPEED,1,0)

DOOR_AVAILABLE(ALL_PLAYERS,WOOD,1,0)
DOOR_AVAILABLE(ALL_PLAYERS,BRACED,1,0)
TRAP_AVAILABLE(ALL_PLAYERS,POISON_GAS,1,0)

SET_TIMER(PLAYER0,TIMER0)


IF(PLAYER0,GAME_TURN > 10000)
    ADD_CREATURE_TO_LEVEL(PLAYER_GOOD,IMP,3,1,3,0)
ENDIF


IF(PLAYER0,WORKSHOP >= 1)
    CREATURE_AVAILABLE(PLAYER0,ARCHER,1,1)
ENDIF

IF(PLAYER0,TRAINING >= 1)
    CREATURE_AVAILABLE(PLAYER0,BARBARIAN,1,1)
ENDIF

IF(PLAYER0,RESEARCH >= 9)
    CREATURE_AVAILABLE(PLAYER0,FAIRY,1,1)
ENDIF


IF(PLAYER0,WORKSHOP < 1)
    NEXT_COMMAND_REUSABLE
    CREATURE_AVAILABLE(PLAYER0,ARCHER,0,0)
ENDIF

IF(PLAYER0,TRAINING < 1)
    NEXT_COMMAND_REUSABLE
    CREATURE_AVAILABLE(PLAYER0,BARBARIAN,0,0)
ENDIF

IF(PLAYER0,RESEARCH < 9)
    NEXT_COMMAND_REUSABLE
    CREATURE_AVAILABLE(PLAYER0,FAIRY,0,0)
ENDIF

IF(PLAYER0,GAME_TURN > 10900)
    QUICK_OBJECTIVE(1,"The Spawners have come, be ready for their offspring.",PLAYER0)
ENDIF

IF(PLAYER0,GAME_TURN > 20)
QUICK_OBJECTIVE(2,"Welcome to this realm, noble hero. It is your holy quest to vanquish the spawners from here forever. They spawn in a pit of lava, heavily guarded. If only you could cover it up.....",PLAYER0)
ENDIF

IF(PLAYER0,GAME_TURN > 150)
QUICK_INFORMATION(3,"There is new technology available to you, oh noble one. Build a library to research them. Wizards are attracted to libraries, but they do not see the spawners as much of a threat, and so will not come. Make do without them!")
ENDIF

IF(PLAYER0,THIEF > 0)
    QUICK_INFORMATION(4,"A Thief has joined you! They are weak at low levels, but later they can become very sneaky. One day, they will learn the error of thier ways (level 11 :P")
ENDIF

IF(PLAYER0,BARBARIAN > 0)
    QUICK_INFORMATION(5,"A Barbarian has joined you! These are mean, strong heros, with attitude!")
ENDIF

IF(PLAYER0,FAIRY > 0)
    QUICK_INFORMATION(6,"A Fairy, how lovely! They are good researchers, and very destructive")
ENDIF

IF(PLAYER0,BRIDGE >= 41)
    ADD_CREATURE_TO_LEVEL(PLAYER_GOOD,HORNY,4,1,5,0)
    
ENDIF

IF(PLAYER0,BRIDGE >= 41)
    QUICK_INFORMATION(7,"Very clever! But it looks like a Horned Reaper has come for revenge... and he looks angry!")
    IF(PLAYER_GOOD,TOTAL_CREATURES == 0)
        QUICK_INFORMATION(8,"Well done! Thats another bit of evil destroyed! Congratulations!")
        WIN_GAME
    ENDIF
ENDIF


IF(PLAYER0,BRIDGE < 41)
    IF(PLAYER0,GAME_TURN > 10900)
        IF(PLAYER0,TIMER0 >= 600)
            IF(PLAYER_GOOD,TOTAL_CREATURES < 40)
                NEXT_COMMAND_REUSABLE
                ADD_CREATURE_TO_LEVEL(PLAYER_GOOD,DEMONSPAWN,1,1,1,0)
                NEXT_COMMAND_REUSABLE
                SET_TIMER(PLAYER0,TIMER0)
            ENDIF
        ENDIF
    ENDIF
ENDIF
