Skip to content
Snippets Groups Projects
Commit 70cb9abf authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Merge branch 'master' of gitlab.synchro.net:sbbs/sbbs

parents cba2978b fa3d1553
No related branches found
No related tags found
No related merge requests found
Showing
with 7019 additions and 7018 deletions
......@@ -26,4 +26,5 @@ node3
node4
*.?.cnf
ctrl/recycle
exec/*.bin
\ No newline at end of file
exec/*.bin
exec/*.so
Bugs are now managed in the SDL bug tracker, here:
https://bugzilla.libsdl.org/
You may report bugs there, and search to see if a given issue has already
been reported, discussed, and maybe even fixed.
You may also find help at the SDL forums/mailing list:
https://discourse.libsdl.org/
Bug reports are welcome here, but we really appreciate if you use Bugzilla, as
bugs discussed on the mailing list may be forgotten or missed.
Bugs are now managed in the SDL bug tracker, here:
https://bugzilla.libsdl.org/
You may report bugs there, and search to see if a given issue has already
been reported, discussed, and maybe even fixed.
You may also find help at the SDL forums/mailing list:
https://discourse.libsdl.org/
Bug reports are welcome here, but we really appreciate if you use Bugzilla, as
bugs discussed on the mailing list may be forgotten or missed.
Simple DirectMedia Layer
Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Simple DirectMedia Layer
Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Please distribute this file with the SDL runtime environment:
The Simple DirectMedia Layer (SDL for short) is a cross-platform library
designed to make it easy to write multi-media software, such as games
and emulators.
The Simple DirectMedia Layer library source code is available from:
https://www.libsdl.org/
This library is distributed under the terms of the zlib license:
http://www.zlib.net/zlib_license.html
Please distribute this file with the SDL runtime environment:
The Simple DirectMedia Layer (SDL for short) is a cross-platform library
designed to make it easy to write multi-media software, such as games
and emulators.
The Simple DirectMedia Layer library source code is available from:
https://www.libsdl.org/
This library is distributed under the terms of the zlib license:
http://www.zlib.net/zlib_license.html
Simple DirectMedia Layer
(SDL)
Version 2.0
---
https://www.libsdl.org/
Simple DirectMedia Layer is a cross-platform development library designed
to provide low level access to audio, keyboard, mouse, joystick, and graphics
hardware via OpenGL and Direct3D. It is used by video playback software,
emulators, and popular games including Valve's award winning catalog
and many Humble Bundle games.
More extensive documentation is available in the docs directory, starting
with README.md
Enjoy!
Sam Lantinga (slouken@libsdl.org)
Simple DirectMedia Layer
(SDL)
Version 2.0
---
https://www.libsdl.org/
Simple DirectMedia Layer is a cross-platform development library designed
to provide low level access to audio, keyboard, mouse, joystick, and graphics
hardware via OpenGL and Direct3D. It is used by video playback software,
emulators, and popular games including Valve's award winning catalog
and many Humble Bundle games.
More extensive documentation is available in the docs directory, starting
with README.md
Enjoy!
Sam Lantinga (slouken@libsdl.org)
This diff is collapsed.
; $Id: install-json-service.ini,v 1.1 2020/04/17 05:41:31 rswindell Exp $
[service:JSON]
Port=10088
Interface=127.0.0.1
Options=STATIC | LOOP
Command=json-service.js
; $Id: install-json-service.ini,v 1.1 2020/04/17 05:41:31 rswindell Exp $
[service:JSON]
Port=10088
Interface=127.0.0.1
Options=STATIC | LOOP
Command=json-service.js
This diff is collapsed.
......@@ -107,4 +107,4 @@ while (!js.terminated) {
frame.close();
console.creturn();
console.cleartoeol();
console.cleartoeol();
INFORMATION FOR EXTRACTING SOURCE CODE FROM VIDEO.SRC AND COMPILING THEM INTO
LIBRARIES, AND ALSO SOME INFORMATION ABOUT THE LIBRARIES IN LIB\ SUBDIR.
This subdirectory contains:
- EXTRAIA.EXE => Utility to ungroup source code files grouped in VIDEO.SRC
Documentation about EXTRAIA is found in UTIL\EXTRAIA.TXT
- VIDEO.SRC => Archive that holds all source code files and some batch
files (an ASCII file, editable by any text editor)
- README.TXT => This file
- VIDEO.PRJ => Project file to compile functions with Turbo C IDE
- VIDEO.DSK => Desktop configurations for VIDEO.PRJ
To extract source code files and batch files from VIDEO.SRC type:
EXTRAIA VIDEO
The line above will ungroup all .C and .H source code files and plus the
following files:
- COMPILE.BAT => compiles all .C files and assembles a library, you must
specify the memory model (s,m,c,l,h). Used by ASMLIBS
- ASMLIBS.BAT => compiles all .C files in small, medium, compact, large and
huge memory models.
- VIDEOLIB.DAT => used by compile.bat, list of all modules to be added to
libraries
To compile the source code and assemble them in libraries use:
(after extracting files from VIDEO.SRC with EXTRAIA)
ASMLIBS [options] => to compile in small,medium,compact,large and huge
memory models (designed for TC/TC++)
or
COMPILE <model> [options] => to compile only in <model> memory model
(s,m,c,l,h) (designed for TC/TC++)
[options] are TCC options
These batch files have been created for Turbo C 3.0, so if your compiler is
another, probably you will have to edit COMPILE.BAT
COMPILE.BAT and ASMLIBS assume that TLIB and TCC are in the path.
After being executed these batch files will create .LIB files, that can
replace the existing files in LIB subdirectory.
You may also try to compile with VIDEO.PRJ in Turbo C++ 3.0 (or better/
compatible) IDE. (It creates VIDEO.LIB in small memory model, but you can
choose another memory model in menu Options/Compiler/Code Generation.)
SOME WORDS ABOUT THE LIBRARY FILES STORED IN LIB\ SUBDIRECTORY
Oddly to lib files that you create using ASMLIBS.BAT, the libraries stored
in LIB\ subdir have been compiled with the IDE (Turbo C++ 3.0) using
VIDEO.PRJ.
For each library, first I've deleted all .OBJ files (to prevent the library
from getting some functions in one memory model and other functions in other
memory models), then I've chosen a memory model and I've compiled the
functions. The IDE has created then a file named VIDEO.LIB which I've
renamed to VIDEO?.LIB, where ? is the first letter of the memory model.
After repeating this procedure for Small, Medium, Compact, Large and Huge
memory models, I've moved all libraries to LIB\
To choose a memory model in the IDE, go to menu
Options|Compiler|Code generation.
To produce smaller code and smaller library files, the options
SUPRESS REDUNDANT LOADS (-Z in TCC) and JUMP OPTIMIZATION (-O in TCC)
have been switched on. All comment records and debug information have been
purged.
To increase linking speed with these libraries, each one has a extended
dictionary.
To enable the functions stored in these libraries to run in every IBM
compatible computer, they have been compiled using 8086/8088 instruction set.
However for a better performance you can recompile them using instruction
sets for newer processors, such as 80386, 80486, pentiums, etc.
To recompile them with a newer instruction set with the IDE, simply
open the VIDEO.PRJ project file and choose in
Options/Compiler/Advanced code generation/Instruction Set
the desired instruction set.
To recompile them with the command line compiler, choose the option
related to the choosen instruction set (usually -1 for 80186, -2 for 80286,
etc).
The draw-back of recompiling these functions with instruction sets for
newer processors is that older processors will be unable to run these
functions. That's why I've choose 8086/8088 instruction set when compiling
them.
The compiler was Turbo C++ 3.0 IDE.
INFORMATION FOR EXTRACTING SOURCE CODE FROM VIDEO.SRC AND COMPILING THEM INTO
LIBRARIES, AND ALSO SOME INFORMATION ABOUT THE LIBRARIES IN LIB\ SUBDIR.
This subdirectory contains:
- EXTRAIA.EXE => Utility to ungroup source code files grouped in VIDEO.SRC
Documentation about EXTRAIA is found in UTIL\EXTRAIA.TXT
- VIDEO.SRC => Archive that holds all source code files and some batch
files (an ASCII file, editable by any text editor)
- README.TXT => This file
- VIDEO.PRJ => Project file to compile functions with Turbo C IDE
- VIDEO.DSK => Desktop configurations for VIDEO.PRJ
To extract source code files and batch files from VIDEO.SRC type:
EXTRAIA VIDEO
The line above will ungroup all .C and .H source code files and plus the
following files:
- COMPILE.BAT => compiles all .C files and assembles a library, you must
specify the memory model (s,m,c,l,h). Used by ASMLIBS
- ASMLIBS.BAT => compiles all .C files in small, medium, compact, large and
huge memory models.
- VIDEOLIB.DAT => used by compile.bat, list of all modules to be added to
libraries
To compile the source code and assemble them in libraries use:
(after extracting files from VIDEO.SRC with EXTRAIA)
ASMLIBS [options] => to compile in small,medium,compact,large and huge
memory models (designed for TC/TC++)
or
COMPILE <model> [options] => to compile only in <model> memory model
(s,m,c,l,h) (designed for TC/TC++)
[options] are TCC options
These batch files have been created for Turbo C 3.0, so if your compiler is
another, probably you will have to edit COMPILE.BAT
COMPILE.BAT and ASMLIBS assume that TLIB and TCC are in the path.
After being executed these batch files will create .LIB files, that can
replace the existing files in LIB subdirectory.
You may also try to compile with VIDEO.PRJ in Turbo C++ 3.0 (or better/
compatible) IDE. (It creates VIDEO.LIB in small memory model, but you can
choose another memory model in menu Options/Compiler/Code Generation.)
SOME WORDS ABOUT THE LIBRARY FILES STORED IN LIB\ SUBDIRECTORY
Oddly to lib files that you create using ASMLIBS.BAT, the libraries stored
in LIB\ subdir have been compiled with the IDE (Turbo C++ 3.0) using
VIDEO.PRJ.
For each library, first I've deleted all .OBJ files (to prevent the library
from getting some functions in one memory model and other functions in other
memory models), then I've chosen a memory model and I've compiled the
functions. The IDE has created then a file named VIDEO.LIB which I've
renamed to VIDEO?.LIB, where ? is the first letter of the memory model.
After repeating this procedure for Small, Medium, Compact, Large and Huge
memory models, I've moved all libraries to LIB\
To choose a memory model in the IDE, go to menu
Options|Compiler|Code generation.
To produce smaller code and smaller library files, the options
SUPRESS REDUNDANT LOADS (-Z in TCC) and JUMP OPTIMIZATION (-O in TCC)
have been switched on. All comment records and debug information have been
purged.
To increase linking speed with these libraries, each one has a extended
dictionary.
To enable the functions stored in these libraries to run in every IBM
compatible computer, they have been compiled using 8086/8088 instruction set.
However for a better performance you can recompile them using instruction
sets for newer processors, such as 80386, 80486, pentiums, etc.
To recompile them with a newer instruction set with the IDE, simply
open the VIDEO.PRJ project file and choose in
Options/Compiler/Advanced code generation/Instruction Set
the desired instruction set.
To recompile them with the command line compiler, choose the option
related to the choosen instruction set (usually -1 for 80186, -2 for 80286,
etc).
The draw-back of recompiling these functions with instruction sets for
newer processors is that older processors will be unable to run these
functions. That's why I've choose 8086/8088 instruction set when compiling
them.
The compiler was Turbo C++ 3.0 IDE.
# Stats, an explanation (for myself):
#
# for stats, 0 is average, 3 is excellent, -3 is poor, 5 is amazing
#
Name Barbarian
Agility 2
Dexterity 2
Strength 5
Wisdom -1
ArmorStr 1
Charisma -1
MaxHP 10
MaxMP -3
Gold 100
Name Warrior
Agility 4
Dexterity 3
Strength 3
Wisdom 1
ArmorStr 0
Charisma 0
MaxHP 8
MaxMP 6
Gold 50
Spell 20
Spell 11
Spell 18
Name Martial Artist
Agility 6
Dexterity 5
Strength 1
Wisdom 1
ArmorStr 0
Charisma 2
MaxHP 12
MaxMP 7
Gold 60
Spell 8
Spell 9
Spell 10
Spell 21
Name Knight
Agility 4
Dexterity 3
Strength 4
Wisdom 2
ArmorStr 1
Charisma 4
MaxHP 13
MaxMP 6
Gold 500
Spell 14
Spell 22
Name Assassin
Agility 4
Dexterity 6
Strength 1
Wisdom 2
ArmorStr 0
Charisma 1
MaxHP 8
MaxMP 9
Gold 300
Spell 16
Spell 5
Spell 23
Name Healer
Agility 3
Dexterity 2
Strength 0
Wisdom 3
ArmorStr 0
Charisma 2
MaxHP 7
MaxMP 12
Gold 50
Spell 1
Spell 2
Spell 4
Name Sorcerer
Agility 2
Dexterity 0
Strength -1
Wisdom 4
ArmorStr 0
Charisma 0
MaxHP 10
MaxMP 9
Gold 100
Spell 8
Spell 12
Spell 13
Spell 25
Name Necromancer
Agility 2
Dexterity 1
Strength -1
Wisdom 5
ArmorStr 0
Charisma 0
MaxHP 11
MaxMP 10
Gold 100
Spell 8
Spell 6
Spell 7
Spell 19
Name Wizard
Agility 2
Dexterity -1
Strength -1
Wisdom 5
ArmorStr 0
Charisma 1
MaxHP 7
MaxMP 13
Gold 20
Spell 13
Spell 15
Spell 8
Spell 2
Spell 4
Spell 7
Name Pirate
Agility 7
Dexterity 3
Strength 2
Wisdom 1
ArmorStr 0
Charisma 4
MaxHP 5
MaxMP 0
Gold 750
Name Samurai
Agility 5
Dexterity 4
Strength 2
Wisdom 1
ArmorStr 1
Charisma 2
MaxHP 10
MaxMP 5
Gold 250
Spell 8
Spell 9
# Stats, an explanation (for myself):
#
# for stats, 0 is average, 3 is excellent, -3 is poor, 5 is amazing
#
Name Barbarian
Agility 2
Dexterity 2
Strength 5
Wisdom -1
ArmorStr 1
Charisma -1
MaxHP 10
MaxMP -3
Gold 100
Name Warrior
Agility 4
Dexterity 3
Strength 3
Wisdom 1
ArmorStr 0
Charisma 0
MaxHP 8
MaxMP 6
Gold 50
Spell 20
Spell 11
Spell 18
Name Martial Artist
Agility 6
Dexterity 5
Strength 1
Wisdom 1
ArmorStr 0
Charisma 2
MaxHP 12
MaxMP 7
Gold 60
Spell 8
Spell 9
Spell 10
Spell 21
Name Knight
Agility 4
Dexterity 3
Strength 4
Wisdom 2
ArmorStr 1
Charisma 4
MaxHP 13
MaxMP 6
Gold 500
Spell 14
Spell 22
Name Assassin
Agility 4
Dexterity 6
Strength 1
Wisdom 2
ArmorStr 0
Charisma 1
MaxHP 8
MaxMP 9
Gold 300
Spell 16
Spell 5
Spell 23
Name Healer
Agility 3
Dexterity 2
Strength 0
Wisdom 3
ArmorStr 0
Charisma 2
MaxHP 7
MaxMP 12
Gold 50
Spell 1
Spell 2
Spell 4
Name Sorcerer
Agility 2
Dexterity 0
Strength -1
Wisdom 4
ArmorStr 0
Charisma 0
MaxHP 10
MaxMP 9
Gold 100
Spell 8
Spell 12
Spell 13
Spell 25
Name Necromancer
Agility 2
Dexterity 1
Strength -1
Wisdom 5
ArmorStr 0
Charisma 0
MaxHP 11
MaxMP 10
Gold 100
Spell 8
Spell 6
Spell 7
Spell 19
Name Wizard
Agility 2
Dexterity -1
Strength -1
Wisdom 5
ArmorStr 0
Charisma 1
MaxHP 7
MaxMP 13
Gold 20
Spell 13
Spell 15
Spell 8
Spell 2
Spell 4
Spell 7
Name Pirate
Agility 7
Dexterity 3
Strength 2
Wisdom 1
ArmorStr 0
Charisma 4
MaxHP 5
MaxMP 0
Gold 750
Name Samurai
Agility 5
Dexterity 4
Strength 2
Wisdom 1
ArmorStr 1
Charisma 2
MaxHP 10
MaxMP 5
Gold 250
Spell 8
Spell 9
This diff is collapsed.
# Event monsters that you encounter
# 0
Name Ghoul
HP 12
Difficulty 3
Agility 7
Dexterity 10
Strength 8
Wisdom 9
Charisma 2
Armorstr 0
Undead
Name Ghoul
HP 15
Difficulty 1
Agility 9
Dexterity 4
Strength 7
Wisdom 9
Charisma 2
Armorstr 0
Undead
Name Mad Scientist
HP 20
Difficulty 1
Agility 10
Dexterity 6
Strength 9
Wisdom 9
Charisma 0
Armorstr 0
# 3
Name Mad Gardener
HP 30
Difficulty 1
Agility 7
Dexterity 3
Strength 13
Wisdom 9
Armorstr 1
# 4
Name Orc
HP 10
Difficulty 1
Agility 8
Dexterity 3
Strength 8
Wisdom 9
Armorstr 0
# 5
Name Small Gnome
HP 15
Difficulty 1
Agility 6
Dexterity 6
Strength 11
Wisdom 9
Armorstr 0
# 6
Name Wolf Master
HP 20
Difficulty 1
Agility 10
Dexterity 9
Strength 11
Wisdom 9
Armorstr 0
# 7
Name Wolf
HP 15
Difficulty 1
Agility 8
Dexterity 3
Strength 9
Wisdom 2
Armorstr 0
# 8-10, thieves
Name Thief
HP 18
Difficulty 1
Agility 9
Dexterity 6
Strength 11
Wisdom 2
Armorstr 0
# 9
Name Thief
HP 21
Difficulty 1
Agility 10
Dexterity 4
Strength 13
Wisdom 2
Armorstr 1
# 10
Name Thief
HP 21
Difficulty 1
Agility 10
Dexterity 4
Strength 14
Wisdom 2
Armorstr 0
# 11 & 12 knights
Name Spirit Knight
HP 17
Difficulty 1
Agility 12
Dexterity 8
Strength 11
Wisdom 2
Armorstr 0
Undead
Name Spirit Knight
HP 22
Difficulty 1
Agility 12
Dexterity 9
Strength 12
Wisdom 2
Armorstr 0
Undead
# 13,14,15 orcs
Name Orc
HP 12
Difficulty 1
Agility 6
Dexterity 9
Strength 7
Wisdom 2
Armorstr 0
Name Orc
HP 15
Difficulty 1
Agility 7
Dexterity 9
Strength 8
Wisdom 2
Armorstr 0
Name Orc
HP 15
Difficulty 1
Agility 6
Dexterity 10
Strength 9
#Wisdom 4
Wisdom 15
Armorstr 0
Spell 8
# 16,17 orcs
Name Orc
HP 14
Difficulty 1
Agility 6
Dexterity 9
Strength 10
Wisdom 2
Armorstr 0
Name Orc
HP 19
Difficulty 1
Agility 9
Dexterity 9
Strength 9
Wisdom 2
Armorstr 0
# 18, orc guards
Name Orc Guard
HP 15
Difficulty 1
Agility 10
Dexterity 9
Strength 10
Wisdom 2
Armorstr 0
# 19
Name Man
HP 25
Difficulty 1
Agility 12
Dexterity 9
Strength 12
Wisdom 2
Armorstr 0
# 20 man
Name Man
HP 20
Difficulty 1
Agility 12
Dexterity 11
Strength 10
Wisdom 2
Armorstr 1
# 21 hellhound
Name Hellhound
HP 14
Difficulty 2
Agility 10
Dexterity 11
Strength 10
Wisdom 4
Armorstr 1
Undead
# 22 hellhound
Name Hellhound
HP 16
Difficulty 2
Agility 10
Dexterity 11
Strength 13
Wisdom 4
Armorstr 1
Undead
# 23 beast
Name Beast
HP 60
Difficulty 5
Agility 16
Dexterity 14
Strength 21
Wisdom 10
Armorstr 2
Spell 8
Spell 11
# 24 gardener
Name gardener
HP 20
Difficulty 2
Agility 11
Dexterity 10
Strength 14
Wisdom 10
Armorstr 1
# 25 guard
Name guard
HP 20
Difficulty 2
Agility 8
Dexterity 12
Strength 21
Wisdom 2
Armorstr 1
# 26 guard
Name guard
HP 25
Difficulty 2
Agility 10
Dexterity 10
Strength 13
Wisdom 5
Armorstr 1
# 27 businessman
Name Businessman
HP 45
Difficulty 4
Agility 10
Dexterity 11
Strength 15
Wisdom 10
Armorstr 1
# 28 thief
Name Thief
HP 19
Difficulty 2
Agility 9
Dexterity 8
Strength 12
Wisdom 5
Armorstr 0
Spell 5
# 29 thief
Name Thief
HP 13
Difficulty 1
Agility 9
Dexterity 10
Strength 12
Wisdom 5
# 30 Large thief
Name Large Thief
HP 43
Difficulty 5
Agility 10
Dexterity 12
Strength 16
Wisdom 5
# 31 wyverns
Name Wyvern
HP 27
Difficulty 5
Agility 12
Dexterity 14
Strength 17
Wisdom 5
# 32 hellhounds
Name Hellhound
HP 23
Difficulty 4
Agility 11
Dexterity 12
Strength 12
Wisdom 5
ArmorStr 1
Undead
# 33
Name Green Slyme
HP 35
Difficulty 4
Agility 8
Dexterity 7
Strength 15
Wisdom 5
ArmorStr 0
# 34
Name Skeletal Fiend
HP 22
Difficulty 3
Agility 9
Dexterity 8
Strength 13
Wisdom 2
ArmorStr 0
Undead
# 35
Name Golden Dragon
HP 42
Difficulty 3
Agility 10
Dexterity 9
Strength 16
Wisdom 2
ArmorStr 1
Spell 17
# 36
Name Ghoul
HP 27
Difficulty 3
Agility 8
Dexterity 6
Strength 15
Undead
# Event monsters that you encounter
# 0
Name Ghoul
HP 12
Difficulty 3
Agility 7
Dexterity 10
Strength 8
Wisdom 9
Charisma 2
Armorstr 0
Undead
Name Ghoul
HP 15
Difficulty 1
Agility 9
Dexterity 4
Strength 7
Wisdom 9
Charisma 2
Armorstr 0
Undead
Name Mad Scientist
HP 20
Difficulty 1
Agility 10
Dexterity 6
Strength 9
Wisdom 9
Charisma 0
Armorstr 0
# 3
Name Mad Gardener
HP 30
Difficulty 1
Agility 7
Dexterity 3
Strength 13
Wisdom 9
Armorstr 1
# 4
Name Orc
HP 10
Difficulty 1
Agility 8
Dexterity 3
Strength 8
Wisdom 9
Armorstr 0
# 5
Name Small Gnome
HP 15
Difficulty 1
Agility 6
Dexterity 6
Strength 11
Wisdom 9
Armorstr 0
# 6
Name Wolf Master
HP 20
Difficulty 1
Agility 10
Dexterity 9
Strength 11
Wisdom 9
Armorstr 0
# 7
Name Wolf
HP 15
Difficulty 1
Agility 8
Dexterity 3
Strength 9
Wisdom 2
Armorstr 0
# 8-10, thieves
Name Thief
HP 18
Difficulty 1
Agility 9
Dexterity 6
Strength 11
Wisdom 2
Armorstr 0
# 9
Name Thief
HP 21
Difficulty 1
Agility 10
Dexterity 4
Strength 13
Wisdom 2
Armorstr 1
# 10
Name Thief
HP 21
Difficulty 1
Agility 10
Dexterity 4
Strength 14
Wisdom 2
Armorstr 0
# 11 & 12 knights
Name Spirit Knight
HP 17
Difficulty 1
Agility 12
Dexterity 8
Strength 11
Wisdom 2
Armorstr 0
Undead
Name Spirit Knight
HP 22
Difficulty 1
Agility 12
Dexterity 9
Strength 12
Wisdom 2
Armorstr 0
Undead
# 13,14,15 orcs
Name Orc
HP 12
Difficulty 1
Agility 6
Dexterity 9
Strength 7
Wisdom 2
Armorstr 0
Name Orc
HP 15
Difficulty 1
Agility 7
Dexterity 9
Strength 8
Wisdom 2
Armorstr 0
Name Orc
HP 15
Difficulty 1
Agility 6
Dexterity 10
Strength 9
#Wisdom 4
Wisdom 15
Armorstr 0
Spell 8
# 16,17 orcs
Name Orc
HP 14
Difficulty 1
Agility 6
Dexterity 9
Strength 10
Wisdom 2
Armorstr 0
Name Orc
HP 19
Difficulty 1
Agility 9
Dexterity 9
Strength 9
Wisdom 2
Armorstr 0
# 18, orc guards
Name Orc Guard
HP 15
Difficulty 1
Agility 10
Dexterity 9
Strength 10
Wisdom 2
Armorstr 0
# 19
Name Man
HP 25
Difficulty 1
Agility 12
Dexterity 9
Strength 12
Wisdom 2
Armorstr 0
# 20 man
Name Man
HP 20
Difficulty 1
Agility 12
Dexterity 11
Strength 10
Wisdom 2
Armorstr 1
# 21 hellhound
Name Hellhound
HP 14
Difficulty 2
Agility 10
Dexterity 11
Strength 10
Wisdom 4
Armorstr 1
Undead
# 22 hellhound
Name Hellhound
HP 16
Difficulty 2
Agility 10
Dexterity 11
Strength 13
Wisdom 4
Armorstr 1
Undead
# 23 beast
Name Beast
HP 60
Difficulty 5
Agility 16
Dexterity 14
Strength 21
Wisdom 10
Armorstr 2
Spell 8
Spell 11
# 24 gardener
Name gardener
HP 20
Difficulty 2
Agility 11
Dexterity 10
Strength 14
Wisdom 10
Armorstr 1
# 25 guard
Name guard
HP 20
Difficulty 2
Agility 8
Dexterity 12
Strength 21
Wisdom 2
Armorstr 1
# 26 guard
Name guard
HP 25
Difficulty 2
Agility 10
Dexterity 10
Strength 13
Wisdom 5
Armorstr 1
# 27 businessman
Name Businessman
HP 45
Difficulty 4
Agility 10
Dexterity 11
Strength 15
Wisdom 10
Armorstr 1
# 28 thief
Name Thief
HP 19
Difficulty 2
Agility 9
Dexterity 8
Strength 12
Wisdom 5
Armorstr 0
Spell 5
# 29 thief
Name Thief
HP 13
Difficulty 1
Agility 9
Dexterity 10
Strength 12
Wisdom 5
# 30 Large thief
Name Large Thief
HP 43
Difficulty 5
Agility 10
Dexterity 12
Strength 16
Wisdom 5
# 31 wyverns
Name Wyvern
HP 27
Difficulty 5
Agility 12
Dexterity 14
Strength 17
Wisdom 5
# 32 hellhounds
Name Hellhound
HP 23
Difficulty 4
Agility 11
Dexterity 12
Strength 12
Wisdom 5
ArmorStr 1
Undead
# 33
Name Green Slyme
HP 35
Difficulty 4
Agility 8
Dexterity 7
Strength 15
Wisdom 5
ArmorStr 0
# 34
Name Skeletal Fiend
HP 22
Difficulty 3
Agility 9
Dexterity 8
Strength 13
Wisdom 2
ArmorStr 0
Undead
# 35
Name Golden Dragon
HP 42
Difficulty 3
Agility 10
Dexterity 9
Strength 16
Wisdom 2
ArmorStr 1
Spell 17
# 36
Name Ghoul
HP 27
Difficulty 3
Agility 8
Dexterity 6
Strength 15
Undead
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Boring 2 5 2 2 3 7 11 1 9 1 2 2 10 2 5 2 10 15 2 0 0 2 10
Pigeon_Eye1 1 9 7 1 15 7 7 1 9 1 2 2 10 2 5 2 10 15 7 0 0 2 10
Pigeon_Eye2 1 9 7 1 15 7 7 1 9 1 1 7 15 3 4 2 10 15 7 0 0 2 10
Red_Stuff 4, 12, 2, 4, 4, 7, 12, 3, 11, 8, 4, 3, 11,3,4, 2,10,15, 12,0,0, 2, 7
Red_Hot 6 12 4 5 5 7 13 1 9 1 5 6 14 4 5 4 12 15 2 0 0 8 4
The_Blues 1 9 3 1 11 7 3 2 10 2 5 3 9 5 13 1 9 15 7 0 0 8 4
Cyan+Green 2 3 2 8 8 8 7 7 15 8 8 2 3 4 12 1 9 15 2 0 0 8 7
Bright_Stuff 8 7 15 9 3 7 11 6 14 3 9 3 11 3 4 1 9 11 7 0 0 4 7
Default 2 3 2 6 6 7 3 3 5 8 6 2 3 4 12 6 4 2 2 0 0 6 3
CompetitionDoors 14 15 11 10 8 3 9 4 14 12 9 14 12 3 12 7 9 15 10 0 0 9 15
Ayukawa 6 14 7 5 13 7 5 8 3 8 5 14 6 4 12 4 12 3 6 0 0 1 9
Lush 4 12 7 8 12 14 7 4 12 4 8 7 12 9 13 7 5 13 7 0 0 8 7
Boring 2 5 2 2 3 7 11 1 9 1 2 2 10 2 5 2 10 15 2 0 0 2 10
Pigeon_Eye1 1 9 7 1 15 7 7 1 9 1 2 2 10 2 5 2 10 15 7 0 0 2 10
Pigeon_Eye2 1 9 7 1 15 7 7 1 9 1 1 7 15 3 4 2 10 15 7 0 0 2 10
Red_Stuff 4, 12, 2, 4, 4, 7, 12, 3, 11, 8, 4, 3, 11,3,4, 2,10,15, 12,0,0, 2, 7
Red_Hot 6 12 4 5 5 7 13 1 9 1 5 6 14 4 5 4 12 15 2 0 0 8 4
The_Blues 1 9 3 1 11 7 3 2 10 2 5 3 9 5 13 1 9 15 7 0 0 8 4
Cyan+Green 2 3 2 8 8 8 7 7 15 8 8 2 3 4 12 1 9 15 2 0 0 8 7
Bright_Stuff 8 7 15 9 3 7 11 6 14 3 9 3 11 3 4 1 9 11 7 0 0 4 7
Default 2 3 2 6 6 7 3 3 5 8 6 2 3 4 12 6 4 2 2 0 0 6 3
CompetitionDoors 14 15 11 10 8 3 9 4 14 12 9 14 12 3 12 7 9 15 10 0 0 9 15
Ayukawa 6 14 7 5 13 7 5 8 3 8 5 14 6 4 12 4 12 3 6 0 0 1 9
Lush 4 12 7 8 12 14 7 4 12 4 8 7 12 9 13 7 5 13 7 0 0 8 7
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment