mirror of
https://github.com/tbamud/tbamud.git
synced 2026-01-16 14:15:28 +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.
33 lines
571 B
Text
33 lines
571 B
Text
#27800
|
|
Sea Serpent Fireball - 27801~
|
|
0 k 5
|
|
~
|
|
if %actor.is_pc%
|
|
emote utters the words, 'hisssssss'.
|
|
dg_cast 'fireball' %actor%
|
|
end
|
|
~
|
|
#27802
|
|
Leviathan - 27803~
|
|
0 k 5
|
|
~
|
|
if %actor.is_pc%
|
|
switch %random.3%
|
|
case 1
|
|
emote utters the words, 'transvecta aqua'.
|
|
%echo% a tidal wave smashes into %actor.name%.
|
|
%damage% %actor% 50
|
|
break
|
|
case 2
|
|
emote looks at you with the deepest sorrow.
|
|
break
|
|
case 3
|
|
emote utters the words, 'transvecta talon'.
|
|
dg_cast 'cure critic' %self%
|
|
break
|
|
default
|
|
break
|
|
done
|
|
end
|
|
~
|
|
$~
|