Bug: Acidmist and Venomshield are not available for use
Danger: Trivial - Incomplete feature
Found by: GatewaySysop
Fixed by: Samson
---
act_info.c, show_visible_affects_to_char
Locate:
if( IS_AFFECTED( victim, AFF_ICESHIELD ) )
{
set_char_color( AT_LBLUE, ch );
ch_printf( ch, "%s is ensphered by shards of glistening ice.\n\r", name );
}
Add below:
if( IS_AFFECTED( victim, AFF_VENOMSHIELD ) )
{
set_char_color( AT_GREEN, ch );
ch_printf( ch, "%s is enshrouded in a choking cloud of gas.\n\r", name );
}
skills.dat file
Add the following 4 entries to your skill file:
#SKILL
Name acidmist~
Type Spell
Info 1536
Flags 0
Target 3
Minpos 112
Mana 70
Rounds 15
Code spell_smaug
Dammsg ~
Wearoff The cloud of acidic mist around you dissipates away.~
Hitchar A vaporous cloud of acidic mist forms around you.~
Hitvict A vaporous cloud of acidic mist forms around you.~
Hitroom A vaporous cloud of acidic mist forms around $N.~
Missvict You fail to conjure the acidic vapors.~
Affect '(l*4)+8' 26 'acidmist' 34
Minlevel 0
End
#SKILL
Name venomshield~
Type Spell
Info 1536
Flags 0
Target 3
Minpos 112
Mana 70
Rounds 15
Code spell_smaug
Dammsg ~
Wearoff The noxious cloud surrounding you dissipates into nothing.~
Hitchar A noxious vapor cloud forms around you.~
Hitvict A noxious vapor cloud forms around you.~
Hitroom A noxious vapor cloud forms around $N.~
Missvict You fail to create the noxious cloud.~
Affect '(l*4)+8' 26 'venomshield' 35
Minlevel 0
End
#SKILL
Name acidshot~
Type Spell
Info 1421
Author Smaug~
Flags 0~
Target 1
Minpos 9~
Mana 15
Rounds 12
Code spell_smaug
Dammsg droplet of acid~
Hitchar $N is burned by your acidmist!~
Hitvict You are burned by droplets of acid from $n's acidmist!~
Hitroom Droplets of acid from $n's acidmist horribly burn $N!~
Diechar $N's body dissolves under the onslaught of acid!~
Dievict The acid overwhelms you and dissolves you into goo!~
Dieroom $N's body dissolves under the onslaught of $n's acidmist!&z~
Dice l/2+30~
Minlevel 51
End
#SKILL
Name venomshot~
Type Spell
Info 1422
Author Smaug~
Flags 0~
Target 1
Minpos 9~
Mana 15
Rounds 12
Code spell_smaug
Dammsg burst of vapor~
Hitchar $N coughs and chokes on vapors from your venomshield!&z~
Hitvict You cough and choke on vapors from $N's venomshield!&z~
Hitroom $N coughs and chokes on vapors from $n's venomshield!&z~
Diechar $N gags and sputters, then collapses dead!&z~
Dievict The vapors from $n's venomshield prove too much for you....&z~
Dieroom $N gags and sputters for a moment, then collapses dead!~
Dice l/2~
Minlevel 51
End
Then determine which classes you want to have these skills and go from there. Do not assign acidshot or venomshot to a class - these are used only for the reactive affect of the spells.
For whatever reason, these two skills were not made available in general release even though it appears as though there is full code support for them in place.