mirror of
https://github.com/tbamud/tbamud.git
synced 2026-01-14 21:38:50 +01:00
This just converts the few DOS text files still in here to standard text files (line-endings), removes all the trailing spaces on lines, removes all the trailing blank lines, and replaces all the tabs (except in .zon files, where they seem to be common) with expanded spaces. It's easy to confirm this is actually a non-change, except for whitespace: * `git show -w` shows this commit as only removing 8 trailing blank lines. This should make no difference to tbaMUD itself, but it will make working on these files, especially with scripts and automated tools, much easier. This is the base change for a set of other changes I will put up once/if this merges, without this, the others are just too complicated to wrangle.
26 lines
901 B
Text
26 lines
901 B
Text
#1600
|
|
Pentagram Entry Half Damage~
|
|
2 g 100
|
|
~
|
|
* By Rumble of The Builder Academy tbamud.com 9091
|
|
* Damage the actor by 1/2 of their hitpoints on entry.
|
|
wait 1 s
|
|
eval num_hitp %actor.hitp%/2
|
|
%damage% %actor% %num_hitp%
|
|
%send% %actor% The searing heat is causing your skin to blister and burn.
|
|
%echoaround% %actor% %actor.name% screams in pain as his skin begins to blister.
|
|
%asound% You hear someone screaming in pain close by
|
|
~
|
|
#1601
|
|
new trigger~
|
|
2 q 100
|
|
~
|
|
* By Rumble of The Builder Academy tbamud.com 9091
|
|
* Damage the actor by 1/2 of their hitpoints on exit.
|
|
eval num_hitp %actor.hitp%/2
|
|
%damage% %actor% %num_hitp%
|
|
%send% %actor% As you pass through the pentagram the pain intensifies almost to the point of unconsciounsness. Then you are through.
|
|
%echoaround% %actor% %actor.name% screams in agony as he steps out of the pentagram.
|
|
%asound% You hear someone screaming in pain close by.
|
|
~
|
|
$~
|