/* * * Eressea PB(E)M host Copyright (C) 1998-2015 * Christian Schlittchen (corwin@amber.kn-bremen.de) * Katja Zedel (katze@felidae.kn-bremen.de) * Henning Peters (faroul@beyond.kn-bremen.de) * Enno Rehling (enno@eressea.de) * Ingo Wilken (Ingo.Wilken@informatik.uni-oldenburg.de) * * This program may not be used, modified or distributed without * prior permission by the authors of Eressea. */ #include #include "buildingcurse.h" /* kernel includes */ #include #include #include #include #include /* util includes */ #include #include #include #include #include /* libc includes */ #include #include #include message *cinfo_building(const void *obj, objtype_t typ, const curse * c, int self) { const building *b = (const building *)obj; UNUSED_ARG(typ); assert(typ == TYP_BUILDING); assert(obj); assert(c); return msg_message(mkname("curseinfo", self ? c->type->cname : "buildingunknown"), "id building", c->no, b); } /* CurseInfo mit Spezialabfragen */ /* C_MAGICWALLS*/ static message *cinfo_magicrunes(const void *obj, objtype_t typ, const curse * c, int self) { message *msg = NULL; if (typ == TYP_BUILDING) { building *b; b = (building *)obj; if (self != 0) { msg = msg_message("curseinfo::magicrunes_building", "building id", b, c->no); } } else if (typ == TYP_SHIP) { ship *sh; sh = (ship *)obj; if (self != 0) { msg = msg_message("curseinfo::magicrunes_ship", "ship id", sh, c->no); } } return msg; } const struct curse_type ct_magicrunes = { "magicrunes", CURSETYP_NORM, 0, M_SUMEFFECT, cinfo_magicrunes }; /* Heimstein-Zauber */ const struct curse_type ct_magicwalls = { "magicwalls", CURSETYP_NORM, CURSE_ONLYONE|CURSE_NOAGE, NO_MERGE, cinfo_building }; /* Feste Mauer - Präkampfzauber, wirkt nur 1 Runde */ const struct curse_type ct_strongwall = { "strongwall", CURSETYP_NORM, 0, NO_MERGE, NULL }; /* Ewige Mauern-Zauber */ const struct curse_type ct_nocostbuilding = { "nocostbuilding", CURSETYP_NORM, CURSE_NOAGE | CURSE_ONLYONE, NO_MERGE, cinfo_building }; void register_buildingcurse(void) { ct_register(&ct_magicwalls); ct_register(&ct_strongwall); ct_register(&ct_magicrunes); ct_register(&ct_nocostbuilding); }