The file "enemy.txt" contains the enemy roster for the game. Presumably (not yet confirmed) during startup, its data is loaded in order to create the enemy database.
Therefore, only enemies which are listed in this file will be available in the game; enemies not listed here will be ignored, even if their data is otherwise complete!
This file is also used to create the enemy character numbers. Basically, enemies are numbered according to their place in the list starting with 0 without the possibility for any further modification. Since you usually access the IDs via shorthands anyway, however, during the normal programming, you will not really need this information.
Basically, the relevant content of this file is a list of enemy names, one name per line. In addition, you can add comments by adding a semicolon (';') to a line or starting a line with a semicolon. Everything AFTER a semicolon will be considered a comment and will be ignored.
The following conventions apply to the names:
* The names are identical with the file and directory names used in the Enemy directory. This is probably (unconfirmed) case sensitive, that is, capital letters usage must be identical.
* Names may not contain semicolons (';'), TABs, or SPACES.
Besides the comments mentioned above, it seems to be possible to leave completely blank lines without any adverse effects.
The current release version of the game includes the following executed data in this file (the comments with the Japanese monster names are also included to add identification of the monsters. Note that these comments are not executed code):
Goblin ; ゴブリン Slime ; スライム Slime2 ; 寄生細胞 GiantSlime ; ジャイアントスライム HellDiver ; ヘルダイバー Alkanoid ; アルカノイド LandRay ; ランドレイ LandRay_Tail ; ランドレイ(尾) DesertTrap ; デザートトラップ IceCoffin ; アイスコフィン Ghost ; ゴースト BlackMaster ; ブラックマスター Icylf ; 氷のようせい Ninjin ; にんじん PoisonFlog ; 毒がえる Ultima ; アルテマ Ra_tako ; 失敗作たこ Ra_slime ; らスライム Ra_plant ; らプラント Ra_zombie ; ラぞぬび Ra_harpy ; ラはーぴー Ra_fire ; ラふぁいあ Ra_lamia ; ラらみあ Ra_ririm ; ラりりんぬ hana_girl ; 花少女 usi_girl ; 牛少女 bee_girl ; 蜂少女 queen_bee ; クイーンビー slime_girl ; スライム少女 slime_girl_black ; 黒スライム少女 slime_girl_blue ; 青スライム少女 slime_girl_green ; 緑スライム少女 slime_girl_pink ; 桃スライム少女 slime_girl_red ; 赤スライム少女 slime_girl_turbid ; スライム少女(不透明) Rydia_d ; リディア Rydia_d2 ; リディア2 Rydia_parasite ; 寄生リディア Gorrem ; ゴーレム Tokibito ; 刻人 Roper ; ローパー Living_Maiden_Statue ; 動く石像少女 PowderEater ; パウダーイーター Ironmaiden ; 鉄の処女
Return to the StartData directory overview
Return to the main index