version 1.55 | | version 1.56 |
---|
| | |
%{ | | %{ |
/* | | /* |
* static char *rcsid_object_c = | | * static char *rcsid_object_c = |
* "$Id: loader.l,v 1.55 2003/11/11 07:58:30 mwedel Exp $"; | | * "$Id: loader.l,v 1.56 2004/01/18 10:36:10 ryo_saeba Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
^range_modifier{S} op->range_modifier = IVAL; | | ^range_modifier{S} op->range_modifier = IVAL; |
^dam_modifier{S} op->dam_modifier = IVAL; | | ^dam_modifier{S} op->dam_modifier = IVAL; |
^duration_modifier{S} op->duration_modifier = IVAL; | | ^duration_modifier{S} op->duration_modifier = IVAL; |
| | ^is_buildable{S} SET_OR_CLEAR_FLAG( op, FLAG_IS_BUILDABLE, IVAL ); |
| | |
^event_apply{S} { | | ^event_apply{S} { |
char *yv=yval(); | | char *yv=yval(); |
| | |
"no_skill_ident", "is_blind", "can_see_in_dark", "is_cauldron", | | "no_skill_ident", "is_blind", "can_see_in_dark", "is_cauldron", |
"is_dust", "no_steal", "one_hit", NULL, "berserk", "neutral", /* 100 */ | | "is_dust", "no_steal", "one_hit", NULL, "berserk", "neutral", /* 100 */ |
"no_attack", "no_damage", NULL, NULL, "activate_on_push", | | "no_attack", "no_damage", NULL, NULL, "activate_on_push", |
"activate_on_release", "is_water", "use_content_on_gen", NULL /* 109 */ | | "activate_on_release", "is_water", "use_content_on_gen", NULL, "is_buildable" /* 110 */ |
}; | | }; |
| | |
| | |