diff options
| author | Florian Kagerer | 2009-04-25 13:15:05 +0000 |
|---|---|---|
| committer | Florian Kagerer | 2009-04-25 13:15:05 +0000 |
| commit | ccb64ad81e6c56eaa2350197f964d470d8610ed9 (patch) | |
| tree | 308379b40196a5a934c2161bdaa28673a007940f /tools | |
| parent | f1893d8f25b8f4fc5f6ed48e61dec0c2050bd567 (diff) | |
| download | scummvm-rg350-ccb64ad81e6c56eaa2350197f964d470d8610ed9.tar.gz scummvm-rg350-ccb64ad81e6c56eaa2350197f964d470d8610ed9.tar.bz2 scummvm-rg350-ccb64ad81e6c56eaa2350197f964d470d8610ed9.zip | |
LOL: - Started implementing the fighting system. The damage inflicted is wrong, however (at least the damage inflicted by the monsters). I'm sowewhat clueless about that bug atm.
- added support for monsters with distance attacks (like those orcs in front of roland's house)
- lots of small bug fixes
- Some startup support for the pc-98 16 color version. The intro will run, but the font drawing/coloring is still wrong.
svn-id: r40144
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/create_kyradat/create_kyradat.cpp | 4 | ||||
| -rw-r--r-- | tools/create_kyradat/create_kyradat.h | 2 | ||||
| -rw-r--r-- | tools/create_kyradat/lol_cd.h | 2 | ||||
| -rw-r--r-- | tools/create_kyradat/misc.h | 2 |
4 files changed, 9 insertions, 1 deletions
diff --git a/tools/create_kyradat/create_kyradat.cpp b/tools/create_kyradat/create_kyradat.cpp index 8000585eea..d8876cde3c 100644 --- a/tools/create_kyradat/create_kyradat.cpp +++ b/tools/create_kyradat/create_kyradat.cpp @@ -31,7 +31,7 @@ #include "md5.h" enum { - kKyraDatVersion = 44, + kKyraDatVersion = 45, kIndexSize = 12 }; @@ -341,6 +341,8 @@ const ExtractFilename extractFilenames[] = { { lolMapStringId, lolTypeRaw16, "MAPSTRID.LST" }, //{ lolMapPal, kTypeRawData, "MAP.PAL" }, + { lolHealShapeFrames, kTypeRawData, "MHEAL.SHP" }, + { -1, 0, 0 } }; diff --git a/tools/create_kyradat/create_kyradat.h b/tools/create_kyradat/create_kyradat.h index a2ffb754d3..9589340ebc 100644 --- a/tools/create_kyradat/create_kyradat.h +++ b/tools/create_kyradat/create_kyradat.h @@ -251,6 +251,8 @@ enum kExtractID { lolMapStringId, //lolMapPal, + lolHealShapeFrames, + kMaxResIDs }; diff --git a/tools/create_kyradat/lol_cd.h b/tools/create_kyradat/lol_cd.h index 0ccf6446ab..d05f74f05d 100644 --- a/tools/create_kyradat/lol_cd.h +++ b/tools/create_kyradat/lol_cd.h @@ -74,6 +74,8 @@ const ExtractEntry lolCDFile2[] = { { lolMapStringId, 0x000287D0, 0x0002880C }, //{ lolMapPal, 0x0001D9C0, 0x0001DBC0 }, + { lolHealShapeFrames, 0x000297D0, 0x00029820 }, + { -1, 0, 0 } }; diff --git a/tools/create_kyradat/misc.h b/tools/create_kyradat/misc.h index 91cde9b6e8..c154d423e5 100644 --- a/tools/create_kyradat/misc.h +++ b/tools/create_kyradat/misc.h @@ -557,6 +557,8 @@ const int lolCDFile2Need[] = { lolMapStringId, //lolMapPal, + lolHealShapeFrames, + -1 }; |
