CRAW now runs on Windows 7 too - the problem was that Windows 7 has moved some functi...
[craw.git] / configuration / automap_configuration.py
blobaf21546ca567d75226f6eb636a11dd6c62023700
1 from text import *
3 #Automap colours configuration
5 npc_colour = 0x20
7 monster_colour = 0x0a
8 minion_colour = 0xab
9 champion_colour = 0x9b
10 boss_colour = 0x87
12 #Order of resistances: fire, cold, lightning, poison, damage, magic
13 resistance_colours = [red, blue, yellow, green, gold, orange]
15 #The symbol to draw above a monster if it is immune to a particular type of damage
16 immunity_symbol = 'o'
18 #The sumbol to draw above a monster which is extremely vulnerable to a particular type of damage
19 vulnerability_symbol = 'v'
21 special_abilities = {}
23 #Extra strong
24 special_abilities[5] = (red, 'St')
26 #Extra fast
27 special_abilities[6] = (red, 'F')
29 #Cursed
30 special_abilities[7] = (red, 'C')
32 #Magic resistant
33 #special_abilities[8] = (blue, 'Mr')
35 #Fire enchanted
36 special_abilities[9] = (red, 'E')
38 #Champion
39 #special_abilities[16] = (blue, 'C')
41 #Light enchanted
42 special_abilities[17] = (yellow, 'E')
44 #Cold enchanted
45 special_abilities[18] = (blue, 'E')
47 #Steals life
48 #special_abilities[24] = (blue, 'L')
50 #Manaburn
51 special_abilities[25] = (blue, 'M')
53 #Teleportation
54 special_abilities[26] = (yellow, 'T')
56 #Spectral hit
57 #special_abilities[27] = (blue, 'Sh')
59 #Stone Skin
60 #special_abilities[28] = (blue, 'St')
62 #Multiple shots
63 special_abilities[29] = (red, 'Ms')
65 #Aura enchanted
66 special_abilities[32] = (orange, 'A')
68 #Ghostly
69 #special_abilities[36] = (blue, 'G')
71 #Fanatic
72 #special_abilities[37] = (red, 'Fa')
74 #Possessed
75 #special_abilities[38] = (red, 'P')
77 #Berserker
78 #special_abilities[39] = (red, 'B')