Changeset 367

Show
Ignore:
Timestamp:
07/23/07 10:18:12 (1 year ago)
Author:
takkaria
Message:

Commit Hugo's alterations to the spell descriptions.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/edit/spell.txt

    r305 r367  
    6060D:Teleports you randomly up to 10 squares away. 
    6161 
     62# Damage should probably be displayed on screen 
    6263N:3:Light Area 
    6364I:90:0:3 
    6465D:Lights up all squares in a level-dependant area, and hurts 
    65 D: light-sensitive monsters in the area of effect for 2d(level/2) 
    66 D: points of damage. 
     66D: all light-sensitive monsters in the area of effect. 
    6767D:  If you are in a room, the entire room will be lit up as well. 
    6868 
     
    149149I:90:1:6 
    150150D:Fires a beam that lights up each square and hurts each 
    151 D: light-sensitive monster in its path for 6d8 points of damage
     151D: light-sensitive monster in its path
    152152 
    153153N:21:Turn Stone to Mud 
     
    159159N:22:Door Creation 
    160160I:90:6:0 
    161 D:A (closed) door is created on each empty floor space that is 
    162 D:directly adjacent to you. 
     161D:A door is created on each empty floor space that is directly 
     162D: adjacent to you.  These doors are closed, but not locked 
    163163 
    164164N:23:Earthquake 
     
    225225D:Teleports you from the dungeon to the town or from the town to the 
    226226D: deepest level you have visited in the dungeon. 
     227 
    227228D:  The recall effect is not immediate; it is delayed by 14+1d20 turns. 
    228229D:  During that delay, the spell can be canceled by invoking the spell 
     
    239240I:90:5:0 
    240241D:Shoots a radius-2 sound ball. 
    241 D:  Apart from doing sound damage, this also attempts to stun 
     242D:  Apart from doing sound damage, this also has a chance to stun 
    242243D: each monster in the area of effect. 
    243244 
     
    258259I:90:8:1 
    259260D:Shoots a radius-4 confusion ball that doesn't cause physical 
    260 D: damage but attempts to confuse each monster in the area of effect. 
     261D: damage but has a chance to confuse each monster in the area of effect. 
    261262D:  Uniques or monsters that resist confusion are not affected. 
    262263 
     
    321322D:  Chance of success and number of charges gained increase with your 
    322323D: level and decrease with level of wand or staff and number of charges. 
    323 D:  A failed attempt to recharge drains all charges from the stack. 
     324D:  A failed attempt to recharge destroys one wand or staff from the stack. 
    324325 
    325326N:51:Enchant Armor 
     
    337338D: level and decrease with level of wand or staff and number of charges, 
    338339D: but are overall much better than for the spell Lesser Recharging. 
    339 D:  A failed attempt to recharge drains all charges from the stack. 
     340D:  A failed attempt to recharge destroys one wand or staff from the stack. 
    340341 
    341342N:54:Elemental Brand 
     
    387388N:62:Rift 
    388389I:90:5:6 
    389 D:Fires a gravity beam that hurts each monster in its path, 
    390 D: then attempts to teleport it away. 
     390D:Fires a gravity beam that hurts each monster in its path 
     391D: and has a chance of teleporting it away. 
    391392 
    392393N:63:Mana Storm 
     
    415416D:Removes fear. 
    416417 
     418# Damage should probably be displayed on screen 
    417419N:68:Call Light 
    418420I:91:0:4 
    419421D:Lights up all squares in a level-dependant area, and hurts 
    420 D: light-sensitive monsters in the area of effect for 2d(level/2) 
    421 D: points of damage. 
     422D: all light-sensitive monsters in the area of effect. 
    422423D:  If you are in a room, the entire room will be lit up as well. 
    423424 
     
    606607N:107:Banish Evil 
    607608I:91:8:2 
    608 D:Teleports each evil monster within line of sight away
     609D:Teleports away each evil monster within line of sight
    609610 
    610611N:108:Word of Destruction 
     
    632633D:  Chance of success and number of charges gained increase with your 
    633634D: level and decrease with level of wand or staff and number of charges. 
    634 D:  A failed attempt to recharge drains all charges from the stack. 
     635D:  A failed attempt to recharge destroys one wand or staff from the stack. 
    635636 
    636637N:112:Dispel Curse 
  • trunk/src/x-spell.c

    r233 r367  
    214214                        strnfmt(p, len, " range 10"); 
    215215                        break; 
     216                case SPELL_LIGHT_AREA: 
     217                        strnfmt(p, len, " dam 2d%d", (plev / 2)); 
     218                        break;  
    216219                case SPELL_CURE_LIGHT_WOUNDS: 
    217220                        strnfmt(p, len, " heal 2d8"); 
     
    315318                                my_strcpy(p, " dur 12+d12", len); 
    316319                                break; 
     320                        case PRAYER_CALL_LIGHT: 
     321                                strnfmt(p, len, " dam 2d%d", (plev / 2)); 
     322                                break;  
    317323                        case PRAYER_PORTAL: 
    318324                                strnfmt(p, len, " range %d", 3 * plev);