REM ********************************************
REM Hawk the Slayer
REM Script for Level 208
REM Clare Wykes
REM ********************************************



REM ************************************
REM ********** SETUP COMMANDS **********
REM ************************************

SET_GENERATE_SPEED(500)
START_MONEY(PLAYER0,20000)
MAX_CREATURES(PLAYER0,50)

ROOM_AVAILABLE(PLAYER0,TREASURE,1,1)
ROOM_AVAILABLE(PLAYER0,RESEARCH,1,1)
ROOM_AVAILABLE(PLAYER0,TRAINING,1,1)
ROOM_AVAILABLE(PLAYER0,TEMPLE,1,0)
ROOM_AVAILABLE(PLAYER0,GARDEN,1,1)
ROOM_AVAILABLE(PLAYER0,LAIR,1,1)
ROOM_AVAILABLE(PLAYER0,BRIDGE,1,0)
ROOM_AVAILABLE(PLAYER0,GUARD_POST,1,0)
ROOM_AVAILABLE(PLAYER0,ENTRANCE,0,1)

MAGIC_AVAILABLE(PLAYER0,POWER_IMP,1,1)
MAGIC_AVAILABLE(PLAYER0,POWER_OBEY,1,0)
MAGIC_AVAILABLE(PLAYER0,POWER_CALL_TO_ARMS,1,0)
MAGIC_AVAILABLE(PLAYER0,POWER_HEAL_CREATURE,1,0)
MAGIC_AVAILABLE(PLAYER0,POWER_LIGHTNING,1,0)
MAGIC_AVAILABLE(PLAYER0,POWER_SPEED,1,0)
MAGIC_AVAILABLE(PLAYER0,POWER_PROTECT,1,0)
MAGIC_AVAILABLE(PLAYER0,POWER_CONCEAL,1,0)

ADD_CREATURE_TO_POOL(SAMURAI,10)
ADD_CREATURE_TO_POOL(MONK,20)
ADD_CREATURE_TO_POOL(BARBARIAN,10)
ADD_CREATURE_TO_POOL(FAIRY,10)

CREATURE_AVAILABLE(PLAYER0,FAIRY,1,1)
CREATURE_AVAILABLE(PLAYER0,MONK,1,1)
CREATURE_AVAILABLE(PLAYER0,BARBARIAN,1,1)
CREATURE_AVAILABLE(PLAYER0,SAMURAI,1,1)

IF(PLAYER0,GAME_TURN < 50)
    
QUICK_INFORMATION(1,"You are HAWK THE SLAYER, your evil brother has killed your sweetheart and father, and he has created an army of the undead to reek havoc over this once peaceful world")
    
ENDIF

IF(PLAYER0,GAME_TURN > 50)
    
    QUICK_INFORMATION(2," You must destroy him and his minions, however he lives in a caslte, protected by lakes and forest full of the undead")
    
ENDIF

IF(PLAYER0,GAME_TURN > 100)
    
    QUICK_INFORMATION(3,"So you have aquired the help of the witch 'Morag', to give you the gift of her teaching to research spells and summon your own minions")
    
ENDIF


IF(PLAYER0,GAME_TURN > 200)
    
    QUICK_INFORMATION(4," You will also require the help of your old friends, the DWARF, the GIANT and the ELF, the last of their kind.")
    
ENDIF

IF(PLAYER0,GAME_TURN > 300)
    
    
    QUICK_INFORMATION(5," They are being held prisioner in the forest by bands of thieves so find them. And good luck!!!")
    
ENDIF


IF(PLAYER_GOOD,DUNGEON_DESTROYED == 1)
    
    WIN_GAME
    
ENDIF
