Crossfire Server, Trunk
guilds.py
Go to the documentation of this file.
1 from collections import namedtuple
2 GuildDef = namedtuple("GuildDef", "id region path exit_path exit_x exit_y storage_path storage_x storage_y name")
3 guilds = [
4 GuildDef("PoisonedDagger", "darcap", "darcap/darcap/guilds/poisoned_dagger", "/world/world_116_102", 19, 41, "same", 21, 26, "Poisoned Dagger"),
5 GuildDef("GreenGoblin", "euthville", "euthville/green_goblin", "/world/world_105_113", 14, 20, "same", 3, 22, "Green Goblin"),
6 GuildDef("SmokingCauldron", "darcap", "darcap/darcap/guilds/smoking_cauldron", "/world/world_116_102", 31, 26, "same", 28, 28, "Smoking Cauldron"),
7 GuildDef("DreamingSage", "navar", "navar_city/dreaming_sage", "/world/world_122_117", 5, 14, "/world/world_121_117", 41, 13, "Dreaming Sage"),
8 GuildDef("BlackShield", "brest", "brest/black_shield", "/world/world_107_123", 39, 42, "same", 27, 29, "Black Shield"),
9 GuildDef("LaughingSkull", "nurnberg", "pup_land/guilds/laughing_skull", "/pup_land/nurnberg/city", 16, 11, "same", 21, 7, "Laughing Skull"),
10 GuildDef("PurpleButterfly", "lonetown", "pup_land/guilds/purple_butterfly", "/pup_land/lone_town/town", 11, 18, "same", 1, 10, "Purple Butterfly"),
11 GuildDef("MailedFist", "scorn", "scorn/guilds/mailed_fist", "/world/world_105_115", 16, 32, "same", 12, 26, "Mailed Fist"),
12 GuildDef("DrunkenBarbarian", "santodominion", "santo_dominion/guilds/drunken_barbarian", "/world/world_102_108", 25, 13, "same", 8, 19, "Drunken Barbarian"),
13 GuildDef("DamnedHeretic", "wolfsburg", "wolfsburg/guilds/damned_heretics", "/world/world_128_109", 27, 16, "same", 25, 8, "Damned Heretics"),
14 GuildDef("NenshouYouso", "azumauindo", "azumauindo/suno-yamatoshi/nenshou_youso", "/world/world_127_101", 47, 15, "/world/world_126_101", 1, 22, "Nenshou Youso"),
15 GuildDef("KetsuekiItsuryuu", "azumauindo", "azumauindo/minatomachi/ketsueki_itsuryuu", "/world/world_129_101", 9, 35, "same", 2, 33, "Ketsueki Itsuryuu"),
16 GuildDef("ZasekiDzukiRyoku", "azumauindo", "azumauindo/zaseki_dzuki_ryoku", "/world/world_128_101", 40, 24, "same", 44, 16, "Zaseki Dzuki Ryoku"),
17 GuildDef("Mockers", "butakisfortress", "lake_country/Butakis/mockers", "/lake_country/Butakis/Butakis0", 2, 15, "same", 2, 20, "Mockers"),
18 ]
guilds.GuildDef
GuildDef
Definition: guilds.py:2