1816 lines
No EOL
61 KiB
Ruby
1816 lines
No EOL
61 KiB
Ruby
|
||
|
||
=begin
|
||
|
||
トリス 魔物図鑑A設定 ver6
|
||
2015/12/26
|
||
|
||
ver6変更点
|
||
・「サブ盗み」で複数の敵IDを指定可能に
|
||
|
||
ver5変更点
|
||
・「盗みアイテム統合」を追加
|
||
|
||
ver4変更点
|
||
・図鑑画像の仕様変更
|
||
|
||
ver3変更点
|
||
・属性のid設定が機能していなかったのを修正
|
||
・盗みアイテムでスティールリスト1のものだけ表示するように
|
||
|
||
ver2変更点
|
||
・スクリプト「魔物図鑑C内部」を「A設定」に統合
|
||
・命中回避の表示
|
||
・属性倍率の表示
|
||
・敗北数の表示
|
||
・本体ID 脱衣版でも登録とカウントを着衣版のほうに行う
|
||
・サブ盗み 脱衣版の盗みアイテム情報を着衣版の図鑑に追加
|
||
・スイッチオン時は撃破数と敗北数をカウントしない(回想やエミ鯖)
|
||
|
||
|
||
本体ID
|
||
脱衣版のメモ欄に<本体=33>のように着衣版IDを指定
|
||
脱衣版に対する図鑑の登録、カウントの操作は、全て本体(33)に対する操作に置き換わる
|
||
イベントの m_dictionary_encount_switch_on(n) などのnも自動で本体(33)に置き換わる
|
||
ただし「盗み登録」情報だけは、着衣版と脱衣版を別々に管理するため、この効果はない
|
||
|
||
サブ盗み
|
||
着衣版のメモ欄に <サブ盗み=34> <サブ盗み=34,35> のように脱衣版IDを1つ以上指定
|
||
着衣版の図鑑の盗みアイテム情報に、脱衣版の盗みアイテム情報が付け足される
|
||
これで盗みアイテム情報を付け足した後に、下記の「盗みアイテム統合」を適用する
|
||
|
||
盗みアイテム統合
|
||
盗みアイテム情報に「同じアイテムについての盗み情報」が複数あれば、以下2つを適用
|
||
その内の1個目のみを表示し、2個目以降は表示しない
|
||
その内のいずれかの盗み登録がオンなら、1個目がオフであっても???にせず開示する
|
||
|
||
|
||
=end
|
||
|
||
|
||
module WD_monsterdictionary_layout
|
||
|
||
# レイアウト設定
|
||
# *_***_display : trueで表示。falseで非表示。
|
||
# は使いません。下にあるページ設定で表示するかどうか決めます。
|
||
|
||
# 盗める物の表示
|
||
M_steal_display_x = 0
|
||
M_steal_display_y = 360
|
||
M_steal_display_width = 286
|
||
M_steal_display_text1 = "Items that can be stolen"
|
||
M_steal_display_text2 = "None"
|
||
|
||
# 命中率の表示
|
||
M_hit_display_x = 0
|
||
M_hit_display_y = 105
|
||
M_hit_display_width = 136
|
||
M_hit_display_name = "HIT"
|
||
|
||
# 回避率の表示
|
||
M_eva_display_x = 150
|
||
M_eva_display_y = 105
|
||
M_eva_display_width = 136
|
||
M_eva_display_name = "EVADE"
|
||
|
||
# 敗北数の表示
|
||
M_lose_display_x = 260
|
||
M_lose_display_y = 430
|
||
M_lose_display_width = 136
|
||
M_lose_display_text1 = "Raped"
|
||
|
||
# 弱点属性の表示 [項目, 属性1, 属性2...]と設定 項目のidとiconはnil
|
||
M_element_display_id = [nil, 12, 17, 11, 13, 3, 9, 4, 5, 14] # 属性ID
|
||
M_element_display_icon = [nil, 928, 929, 930, 931, 932, 933, 776, 1106, 793] # アイコン番号
|
||
M_element_display_x = [ 0, 0, 140, 0, 140, 0, 140, 280, 280, 280]
|
||
M_element_display_y = [138, 162, 162, 186, 186, 210, 210, 162, 186, 210]
|
||
M_element_display_width = [136, 110, 110, 110, 110, 110, 110, 110, 110, 110]
|
||
M_element_display_text1 = "Ero Zone" # 項目名
|
||
M_element_display_color = 16 # 属性名の文字色 Window.png右下の番号
|
||
M_element_display_text2 = "%d%" # 属性倍率の表示形式 「%d」が倍率に置換
|
||
|
||
end
|
||
|
||
module MDic_Base
|
||
|
||
# このスイッチがオンの時、撃破数と敗北数をカウントしない
|
||
# イベントコマンドでのカウント操作も無効
|
||
NO_COUNT_SWITCH = 89
|
||
|
||
# 図鑑画像の拡大率 x座標,y座標,不透明度は元の図鑑スクリプトで設定
|
||
# 敵ごとの変更はメモ欄で <図鑑画像=porin_2,255,455,200,50>
|
||
# 画像名,x,y,不透明度,拡大率
|
||
PIC_ZOOM = 60
|
||
|
||
|
||
PAGE = [] # 変更しない
|
||
# ページ設定 各ページの表示内容
|
||
# 金は :gold
|
||
# 能力値 :par には命中回避を含む
|
||
|
||
# ページ1 ID 名前 能力 属性 EXP ドロップ 撃破 盗み
|
||
PAGE[0] = [:id, :name, :par, :element, :exp, :drop, :geno, :steal, :lose]
|
||
# ページ2 ID 名前 画像 説明 特徴
|
||
PAGE[1] = [:id, :name, :pic, :help, :feature]
|
||
|
||
end
|
||
|
||
module MDic_Text
|
||
|
||
F = [] # 変更しない
|
||
H = [] # 変更しない
|
||
|
||
# 図鑑特徴と図鑑説明の記述形式は同じ
|
||
#
|
||
# 「文字列」か「文字列の配列」で指定 「\n」で改行 配列の区切りで改行
|
||
|
||
|
||
# 図鑑特徴
|
||
#F[2] = ["Race: Porin", "Personality: Submissive"]
|
||
|
||
# 図鑑説明
|
||
# 33~36は全て同じ(改行の動作確認用)
|
||
|
||
#H[2] = \["温厚なスライム型のモンスターこちらから
|
||
#手を出さなければ犯される事はまず無い。"\] # 画像動作確認
|
||
|
||
|
||
|
||
#ゼリン
|
||
F[4] = ["Race: Plant", "Personality: Submissive"]
|
||
|
||
|
||
H[4] = ["A slime-type monster also found on the La Feuille continent.
|
||
Said to inhabit the entire world, but is always considered
|
||
the weakest wherever it appears. While color variants like
|
||
Jellyrin and Droprin haven\'t been seen on this continent,
|
||
there are apparently unique monsters here, like Zerin
|
||
wearing a turban."]
|
||
|
||
#ミリア
|
||
F[5] = ["Race: Animal", "Personality: Dominant"]
|
||
|
||
H[5] = ["A familiar monster confirmed in many places, just like
|
||
Zerin. The Milia on this continent can be active in caves
|
||
and bright places, so there are reports of attacks even in
|
||
plains and deserts. Still, their combat ability is about the
|
||
same as Zerin, so they\'re not considered very dangerous."]
|
||
|
||
|
||
#グリフォン
|
||
F[11] = ["Race: Animal", "Personality: Submissive"]
|
||
|
||
H[11] = ["A bird-type monster said to have coexisted with humans
|
||
before its evolution. During the Great Divine-Demon War,
|
||
high-ranking knights often used them as mounts. Perhaps
|
||
because of this history, they\'re friendly toward humans and
|
||
easy to keep as pets, but their strength is considerable, so
|
||
care is needed when handling them."]
|
||
|
||
|
||
#キッスプラント
|
||
F[13] = ["Race: Plant", "Personality: Normal"]
|
||
|
||
H[13] = ["A plant-type monster that lives in wetlands. It takes the
|
||
form of a young girl to lure careless travelers, then uses
|
||
its left and right semen-extracting organs to drain them.
|
||
Its vine-like hair can extend freely, and once caught, it\'s
|
||
said to be very difficult to escape. As a newly born plant,
|
||
it only knows how to drain semen using its two organs and
|
||
hasn\'t learned any other methods yet."]
|
||
|
||
|
||
#ガレオン
|
||
F[10] = ["Race: Animal", "Personality: Normal"]
|
||
|
||
H[10] = ["A wolf-type monster living in the Sudri Grasslands that
|
||
moves in packs and attacks travelers. They\'re highly
|
||
carnivorous and, perhaps because of this, extremely greedy
|
||
when it comes to semen extraction, always hungry. Unlike
|
||
humanoid monsters that walk on two legs, even when female-
|
||
shaped, their beastly traits remain strong, and it\'s
|
||
rumored that their vaginas are more animal-like than human."]
|
||
|
||
|
||
#ゴーレム
|
||
F[14] = ["Race: Formless", "Personality: Dead Fish"]
|
||
|
||
H[14] = ["A monster made of rock, a naturally occurring stray golem.
|
||
Its rocky body makes it resistant to sexual techniques, but
|
||
it can still take pleasure damage. Inside is an organic core
|
||
that connects to its reproductive organs."]
|
||
|
||
#聖十字隊(重装)
|
||
F[99] = ["Race: Humanoid", "Personality: Dominant"]
|
||
|
||
H[99] = ["A heavy infantry member of the Holy Cross Squad in the Holy
|
||
City. On the battlefield, they mainly serve as the front
|
||
line, acting as a wall to minimize casualties and are
|
||
considered the squad\'s main defense. Their sturdiness is
|
||
also useful in duels, and the armor covering their entire
|
||
body repels all sexual techniques. As Paracon\'s direct
|
||
guard, their mindset―good or bad―resembles hers."]
|
||
|
||
|
||
#聖十字隊(水着)
|
||
F[89] = ["Race: Humanoid", "Personality: Submissive"]
|
||
|
||
H[89] = ["A light infantry member of the Holy Cross Squad in the Holy
|
||
City. They use their agility and well-built bodies for
|
||
sexual techniques, so they fight in swimsuit-like light
|
||
armor. However, this doesn\'t mean they\'re always wandering
|
||
around the city or temple in swimwear."]
|
||
|
||
|
||
|
||
|
||
#聖十字隊(軽装)
|
||
F[87] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[87] = ["A light infantry member of the Holy Cross Squad in the Holy
|
||
City. Usually patrols the city with the military police to
|
||
maintain public order. They\'re always ready for battle, but
|
||
that doesn\'t mean they\'re always exposed."]
|
||
|
||
|
||
|
||
|
||
#プリースト
|
||
F[93] = ["Race: Humanoid", "Personality: Submissive"]
|
||
|
||
H[93] = ["A priest belonging to the Freya Temple, ranked higher than
|
||
an acolyte. Not a member of the Holy Cross Squad, but always
|
||
accompanies them in emergencies. Also responsible for
|
||
healing within the temple and teaching spells to followers."]
|
||
|
||
|
||
|
||
#フレイア神官
|
||
F[97] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[97] = ["A priest of the temple who hides their face with a mask.
|
||
While this is formal attire within the temple, there\'s no
|
||
rule against showing their face in public. They\'re not
|
||
specialists in fighting monsters, but in sex battles between
|
||
humans, they can fight reasonably well using powers granted
|
||
by the main god. Their rank is above that of Holy Cross
|
||
Squad members."]
|
||
|
||
|
||
|
||
#フレイア教徒
|
||
F[91] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[91] = ["A regular monk of the Freya Temple. The mask they wear is
|
||
given to monks who have become full-fledged, but like the
|
||
protagonist, it\'s not a strict requirement. Their status is
|
||
the same as the protagonist\'s, and there are several tough
|
||
monks in the temple who have been trained through sex
|
||
battles just like him."]
|
||
|
||
|
||
|
||
|
||
#防衛装置
|
||
F[312] = ["Race: Formless", "Personality: Dead Fish"]
|
||
|
||
H[312] = ["A defense device mass-produced at Belma Laboratory. It\'s a
|
||
human-sized, lightweight version of the Durandal-made
|
||
Guardian, with chest armor designed to closely mimic the
|
||
feel and strength of a real body. About 20 units are
|
||
stationed at the lab, and any that become incapacitated are
|
||
repaired before returning to duty."]
|
||
|
||
|
||
|
||
#アビスガード
|
||
F[350] = ["Race: Formless", "Personality: Normal"]
|
||
|
||
H[350] = ["A Guardian assigned to guard the lab\'s restricted area.
|
||
Developed using monster data obtained from Heimdall\'s old
|
||
castle, it features a high-performance AI capable of human-
|
||
like conversation, but its learning program is a bit quirky,
|
||
resulting in a unique personality. The development cost for
|
||
this one unit was equivalent to 10 Guardians or 3 defense
|
||
devices\' worth of Jenis."]
|
||
|
||
|
||
|
||
#バーストリアー
|
||
F[60] = ["Race: Animal", "Personality: Dominant"]
|
||
|
||
H[60] = ["A Milia adapted to volcanic environments, boasting the
|
||
highest combat ability among its kind. Some explorers have
|
||
underestimated it due to its Milia-like appearance, only to
|
||
be taken down in retaliation. Because it constantly emits
|
||
flames, its energy consumption is high, so it replenishes
|
||
itself by absorbing sexual energy."]
|
||
|
||
|
||
|
||
#グルームの牙
|
||
F[112] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[112] = ["An assassin sent by the cult to capture the protagonist.
|
||
Their assassination methods are varied, and it\'s said that
|
||
once you\'re targeted, there\'s no escape except death...
|
||
They usually blend into the city as a resident of the Holy
|
||
Capital."]
|
||
|
||
|
||
|
||
#グルームの牙水着
|
||
F[114] = ["Race: Humanoid", "Personality: Dominant"]
|
||
|
||
H[114] = ["An assassin sent by the cult to capture the protagonist.
|
||
Prefers light clothing like underwear for ease of movement
|
||
and martial arts, but this is also a tactic to avoid
|
||
suspicion as an assassin when seen in public."]
|
||
|
||
|
||
|
||
|
||
#暗殺者
|
||
F[80] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[80] = ["An assassin who has been active with Gloom\'s Fang since
|
||
around the same time as the protagonist. A cocky warrior
|
||
who\'s never known defeat, makes many mistakes but always
|
||
completes her missions. After being outwitted by Giro and
|
||
losing to the protagonist, she began training even harder to
|
||
aim even higher."]
|
||
|
||
|
||
|
||
|
||
#エレメェス=ショーサ
|
||
F[175] = ["Race: Homunculus", "Personality: Normal"]
|
||
|
||
H[175] = ["A homunculus of the assassin type, cloned at the Genshroom
|
||
Laboratory. Even after the lab was sealed, it continued to
|
||
multiply by some means. Functionally and mentally unstable,
|
||
it\'s like a thought-form that can\'t even draw out half the
|
||
performance of the original Butterfly Wings. Its implanted
|
||
ego is \'murderous pleasure,\' obsessing over killing
|
||
others, but also easily accepting being killed itself,
|
||
making it unclear whether it perceives itself as alive or
|
||
dead."]
|
||
|
||
|
||
|
||
#ローレンス=ランブル
|
||
F[177] = ["Race: Homunculus", "Personality: Submissive"]
|
||
|
||
H[177] = ["A knight-type homunculus cloned at the Genshroom Laboratory.
|
||
Even after the lab was sealed, it continued to multiply by
|
||
some means. Functionally and mentally unstable, it\'s like a
|
||
thought-form that can\'t even draw out half the performance
|
||
of the original Butterfly Wings. Its implanted ego is
|
||
\'maternal pleasure,\' finding joy in spoiling others and
|
||
being needed."]
|
||
|
||
|
||
|
||
#サイドワインダー
|
||
F[263] = ["Race: Animal", "Personality: Dominant → Submissive"]
|
||
|
||
H[263] = ["A black snake monster that appeared from the abyss of the
|
||
Dai Plateau Oze Bypass. It crawled up to the surface during
|
||
a temporary weakening of the barrier. When its vitality
|
||
decreases, its hair shortens and its personality becomes
|
||
timid and weak."]
|
||
|
||
|
||
|
||
#ドイレン=ベッシェ
|
||
F[171] = ["Race: Homunculus", "Personality: Normal"]
|
||
|
||
H[171] = ["A priest-type homunculus cloned at the Genshroom Laboratory.
|
||
Even after the lab was sealed, it continued to multiply by
|
||
some means. It has strong mental instability, and perhaps
|
||
influenced by the original personality being an exorcist, it
|
||
mistakes you for an evil spirit. This also makes it unable
|
||
to be honest about love."]
|
||
|
||
|
||
|
||
|
||
#マーガレット=ソニア
|
||
F[332] = ["Race: Homunculus", "Personality: Submissive"]
|
||
|
||
H[332] = ["A high priest-type homunculus cloned at the Genshroom
|
||
Laboratory. Using data taken out, Belma continued to improve
|
||
it in her own lab. The original priest seems to have been a
|
||
member of a royal capital inspection team, and her older
|
||
sister, the high priest, is said to be in the Holy Capital."]
|
||
|
||
|
||
|
||
|
||
#セイバーガーディアン
|
||
F[158] = ["Race: Formless", "Personality: Dead Fish"]
|
||
|
||
H[158] = ["A base defense Guardian developed by Durandal Corp. Mainly
|
||
designed to repel male intruders, it\'s a model specialized
|
||
for close combat using its internal hall. It\'s considered
|
||
outdated in terms of performance, and was smuggled from
|
||
Genshroom Laboratory to the Freya Liberation Front by
|
||
someone."]
|
||
|
||
|
||
|
||
#野良ガーディアン
|
||
F[78] = ["Race: Formless", "Personality: Dead Fish"]
|
||
|
||
H[78] = ["A Guardian abandoned by someone that has gone rogue. Its
|
||
only faithfully kept mission is to repel human intruders, so
|
||
it attacks anyone in its line of sight indiscriminately.
|
||
There have been incidents of illegal dumping of Guardians
|
||
and similar machines in the volcano."]
|
||
|
||
|
||
|
||
#アーチャーガーディアン
|
||
F[160] = ["Race: Formless", "Personality: Dead Fish"]
|
||
|
||
H[160] = ["A base defense Guardian developed by Durandal Corp. Unlike
|
||
the saber type, this model specializes in weaponized
|
||
onaholes on its arms. Its concept is all-in-one offense and
|
||
defense: protecting its weak spot at the crotch while
|
||
annihilating enemies with its right-hand weapon."]
|
||
|
||
|
||
|
||
|
||
#ガーディアン改修型
|
||
F[342] = ["Race: Formless", "Personality: Dead Fish"]
|
||
|
||
H[342] = ["A custom machine made by recovering a Guardian previously
|
||
smuggled to the Freya Liberation Front and modifying it with
|
||
lab equipment. Based on the archer type, all of its specs
|
||
have been enhanced for combat."]
|
||
|
||
|
||
|
||
|
||
#インプ
|
||
F[62] = ["Race: Demon", "Personality: Normal"]
|
||
|
||
H[62] = ["A mischievous little devil living in the volcano. Small and
|
||
quick, it\'s nearly impossible to punish it by penetrating
|
||
from your side. It only has goblin-level intelligence and
|
||
can\'t speak, but some basic communication is possible."]
|
||
|
||
|
||
|
||
#フェーニ
|
||
F[63] = ["Race: Animal", "Personality: Normal"]
|
||
|
||
H[63] = ["A sports-minded bird monster living in the volcano, noisy
|
||
and passionate about cheering others on. It has high evasion
|
||
and accuracy, and has even mastered sex techniques favored
|
||
by elite knights. With strong reproductive power, it\'s
|
||
considered the most troublesome monster confirmed on the
|
||
continent."]
|
||
|
||
|
||
|
||
|
||
#ビヨンド
|
||
F[155] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[155] = ["A term referring to combatants belonging to the Freya
|
||
Liberation Front. Unlike the more serious fighters, these
|
||
types treat sex battles as a game, fighting half for fun and
|
||
trying to seduce their opponents if they get the chance."]
|
||
|
||
|
||
|
||
|
||
|
||
#ビヨンド(軽装)
|
||
F[152] = ["Race: Humanoid", "Personality: Submissive"]
|
||
|
||
H[152] = ["A term referring to combatants belonging to the Freya
|
||
Liberation Front. Constantly training for the coming
|
||
battles, their skills rival even the knights of the Holy
|
||
City. Unlike the Holy Cross Squad, which fights in
|
||
formations, they specialize in guerrilla tactics like
|
||
ambushes and distractions, making them similar to thieves or
|
||
assassins."]
|
||
|
||
|
||
|
||
|
||
#トールドラゴン
|
||
F[66] = ["Race: Animal", "Personality: Submissive"]
|
||
|
||
H[66] = ["A snake-type monster living deep in the volcano. Once it
|
||
takes a liking to a mate, it makes a passionate approach
|
||
and, if it wraps its tail around you, it\'s said it won\'t
|
||
let go until you give in. There are fewer of them than Feny
|
||
and they\'re slower, so they\'re not a threat if you don\'t
|
||
get caught―but if you do, it\'s probably the end for you."]
|
||
|
||
|
||
|
||
#グレムリン
|
||
F[180] = ["Race: Demon", "Personality: Normal"]
|
||
|
||
H[180] = ["A monster abandoned within the sanctuary. It seems to appear
|
||
as if drawn by \'something,\' and is said to react to
|
||
whatever lies deep within the temple. Its habitat is
|
||
unknown, and there are reports of it being seen among
|
||
monsters attacking civilian airships, but its true purpose
|
||
remains unclear."]
|
||
|
||
|
||
|
||
|
||
#グレムリン亜種
|
||
F[181] = ["Race: M", "Personality: Normal"]
|
||
|
||
H[181] = ["A subspecies of gremlin with slightly higher intelligence.
|
||
Other than that, it\'s basically the same, but it\'s
|
||
believed to have evolved into a more humanoid form due to
|
||
some influence. It hasn\'t been seen outside the sanctuary."]
|
||
|
||
|
||
|
||
|
||
#ドゲザエ
|
||
F[182] = ["Race: Demon", "Personality: Normal"]
|
||
|
||
H[182] = ["Originally a one-eyed familiar kept by the cult, it was
|
||
artificially transformed into a female-type monster as part
|
||
of an evolution experiment. As a result, it lost the
|
||
familiar\'s unique communication ability and was abandoned
|
||
in the sanctuary as a failed creation."]
|
||
|
||
|
||
#心を失った者
|
||
F[183] = ["Race: Humanoid", "Personality: Dead Fish"]
|
||
|
||
H[183] = ["The end result of a monk used in experiments. The
|
||
transplanted \'power\' granted them pseudo-immortality, but
|
||
their personality and intelligence collapsed, making them no
|
||
different from zombies. Because of the barrier, they
|
||
couldn\'t be disposed of, so they were sealed deep beneath
|
||
the temple."]
|
||
|
||
|
||
|
||
#心を失った者亜種
|
||
F[185] = ["Race: Humanoid", "Personality: Dead Fish"]
|
||
|
||
H[185] = ["The end result of a monk used in experiments. While some
|
||
traces of their former personality remain, it\'s almost
|
||
completely destroyed, making conversation or communication
|
||
impossible."]
|
||
|
||
|
||
|
||
|
||
|
||
#エキューオ
|
||
F[187] = ["Race: Humanoid", "Personality: Dead Fish"]
|
||
|
||
H[187] = ["The end result of a priest used in experiments. Perhaps
|
||
because the priest was a sorcerer, even after transformation
|
||
they can still use the arts once granted by the main god."]
|
||
|
||
|
||
|
||
|
||
#エキューオ亜種
|
||
F[191] = ["Race: Humanoid", "Personality: Dead Fish"]
|
||
|
||
H[191] = ["The end result of a priest used in experiments. Their
|
||
personality is broken, they\'ve forgotten the power of the
|
||
main god, and have become nothing more than a corpse that
|
||
craves semen. The source of these bodies is unknown, but
|
||
it\'s speculated they were reconstructed after being purged
|
||
by the Fangs."]
|
||
|
||
|
||
|
||
|
||
|
||
#ヘルチョンチョニ
|
||
F[218] = ["Race: Insect", "Personality: Dominant"]
|
||
|
||
H[218] = ["A Chonchoni-type monster based in the island\'s dark temple.
|
||
Though usually free-spirited, here they seem to swear
|
||
loyalty to a certain demon and mainly offer up the life
|
||
force they\'ve gathered."]
|
||
|
||
|
||
|
||
#ヘルチョンチョニ亜種
|
||
F[220] = ["Race: Insect", "Personality: Submissive"]
|
||
|
||
H[220] = ["A monster imprisoned in the dark temple\'s dungeon. She
|
||
insists she was just brought here... but is that really
|
||
true?"]
|
||
|
||
|
||
|
||
#ラギッドグール
|
||
F[201] = ["Race: Undead", "Personality: Dead Fish"]
|
||
|
||
H[201] = ["A corpse living on the nameless island. It has no
|
||
intelligence, personality, or purpose, and just wanders the
|
||
island. Even if its body decays, it will revive again and
|
||
again with each new night as if nothing happened."]
|
||
|
||
|
||
|
||
#グールデストロイ
|
||
F[204] = ["Race: Undead", "Personality: Dead Fish"]
|
||
|
||
H[204] = ["A corpse living in the monastery on the nameless island.
|
||
It\'s unclear if it was a warrior in life, but it attacks
|
||
with an agility uncharacteristic of a ghoul. When idle, it
|
||
tends to its favorite weapon."]
|
||
|
||
|
||
|
||
#ヴァンシィ
|
||
F[206] = ["Race: Demon", "Personality: Normal"]
|
||
|
||
H[206] = ["A half-spirit ghost based in the island\'s dark temple. She
|
||
can phase through her own body and has the special ability
|
||
to merge with her opponent\'s body. She dislikes noise and
|
||
finds fighting troublesome, but still craves life force."]
|
||
|
||
|
||
|
||
#ヴァンシィ亜種
|
||
F[209] = ["Race: Demon", "Personality: Submissive"]
|
||
|
||
H[209] = ["A half-spirit ghost based in the island\'s dark temple.
|
||
Compared to regular Banshees, she has higher magical power
|
||
and specializes in magical sex techniques. In her free time,
|
||
she devours books in places like the monastery library."]
|
||
|
||
|
||
|
||
|
||
#ヘルヴァンシー
|
||
F[326] = ["Race: Demon", "Personality: Dominant"]
|
||
|
||
H[326] = ["A higher species of Banshee, she originally lived in the
|
||
ruins of the Valfreya temple, but before she knew it, the
|
||
area had been rebuilt into a laboratory, so she reluctantly
|
||
decided to stay. She can freely extend and contract her
|
||
hair, and can drain life force from anything entangled in
|
||
it."]
|
||
|
||
|
||
|
||
#ヘルヴァンシー亜種
|
||
F[329] = ["Race: Demon", "Personality: Dominant"]
|
||
|
||
H[329] = ["She holes up in the laboratory\'s archives, leaving
|
||
troublesome things like fighting to her kin and refusing to
|
||
work herself. Occasionally, she acts as an advisor for
|
||
Belma\'s research, providing knowledge and techniques about
|
||
monsters in exchange for stored life force."]
|
||
|
||
|
||
|
||
|
||
#ネクロマンサー
|
||
F[212] = ["Race: Undead", "Personality: Normal"]
|
||
|
||
H[212] = ["The bishop of the dark temple. She supposedly has the power
|
||
to command the dead, but her main role is to assist in
|
||
rituals to resurrect the temple\'s master. If she takes a
|
||
liking to a human, she\'ll kill them and use them as a sex
|
||
slave, then add their bones to her collection after use."]
|
||
|
||
|
||
|
||
|
||
|
||
#ネクロマンサー亜種
|
||
F[216] = ["Race: Undead", "Personality: Submissive"]
|
||
|
||
H[216] = ["The bishop of the dark temple. She finds formal attire too
|
||
much trouble, so she just wears a robe over her naked body.
|
||
Since all of her master\'s close aides are necromancers, she
|
||
rarely gets a chance to use her own command skills."]
|
||
|
||
|
||
|
||
#鳥人間(シャーマン)
|
||
F[42] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[42] = ["A tribe of bird people known as shamans, they are not good
|
||
at close combat. They use the power of wind spirits to
|
||
perform sexual techniques, and can also handle things like
|
||
fortune-telling and curses. These bird people are called the
|
||
Wind Tribe, while the others are called the Spear Tribe
|
||
among their people."]
|
||
|
||
|
||
|
||
#鳥人間(槍)
|
||
F[40] = ["Race: Humanoid", "Personality: Dominant"]
|
||
|
||
H[40] = ["They have a very strong sense of territory and look almost
|
||
human, making it unclear whether they\'re monsters or just a
|
||
warlike tribe. When they find a male they like, they take
|
||
him back to their settlement and keep breeding with him."]
|
||
|
||
|
||
|
||
#鳥人間(槍亜種)
|
||
F[44] = ["Race: Humanoid", "Personality: Dominant"]
|
||
|
||
H[44] = ["Among the Spear Tribe, this is a particularly ferocious and
|
||
warlike species. Their blood as a clan runs strong, and
|
||
their combat ability is higher than other tribes, but their
|
||
intelligence is low. They love strong males."]
|
||
|
||
|
||
|
||
#アイスアー
|
||
F[48] = ["Race: Animal", "Personality: Normal"]
|
||
|
||
H[48] = ["A half-beast monster living in the ice caves. Driven by
|
||
animal instincts―eat, sleep, fuck―they have a strong sense
|
||
of territory but low intelligence. They often clash with the
|
||
bird people from the upper levels over territory."]
|
||
|
||
|
||
|
||
#フリーズゴーレム
|
||
F[50] = ["Race: Formless", "Personality: Dead Fish"]
|
||
|
||
H[50] = ["An ice golem stationed at the deepest part of the ice cave.
|
||
Its basic structure is the same as a regular golem, but this
|
||
one is clearly serving someone as its master and is not a
|
||
stray. The huge mouth on its abdomen is an organ for
|
||
capturing men and draining their life force."]
|
||
|
||
|
||
|
||
#ガーツ
|
||
F[47] = ["Race: Formless", "Personality: Normal"]
|
||
|
||
H[47] = ["A species related to Zerin, but only found on this
|
||
continent. It\'s a monster made of rock and mud. Its
|
||
personality is gentle and laid-back. It can freely change
|
||
the hardness of its surface at will, but if it gets too soft
|
||
like Zerin, it can\'t maintain its shape."]
|
||
|
||
|
||
|
||
#マグゼリン
|
||
F[59] = ["Race: Formless", "Personality: Submissive"]
|
||
|
||
H[59] = ["A Zerin-type species living in volcanic zones, mixed with
|
||
lava, making it stronger than Gartz in battle. It has the
|
||
characteristic gentleness of its kind, but its poor stamina
|
||
means it\'s always hungry for life force."]
|
||
|
||
|
||
|
||
#デスプードル
|
||
F[203] = ["Race: Animal", "Personality: Normal"]
|
||
|
||
H[203] = ["A dog-type monster used by demons, kept as a guard dog in
|
||
gardens and such. It can\'t speak, but it\'s highly
|
||
intelligent and can communicate. It can distinguish between
|
||
its master, their allies, and others; if it recognizes
|
||
someone as an enemy, it will howl to alert its master or
|
||
companions, showing its loyalty."]
|
||
|
||
|
||
|
||
#ターゼリン
|
||
F[70] = ["Race: Plant", "Personality: Submissive"]
|
||
|
||
H[70] = ["A rare Zerin living in desert continents like Ra Feele and
|
||
Mozex. Like a spirit, it listens to the wishes of
|
||
adventurers it meets and grants them. It\'s said that it
|
||
will never appear before those with greed or wicked desires."]
|
||
|
||
|
||
|
||
#マーリン
|
||
F[269] = ["Race: Plant", "Personality: Normal"]
|
||
|
||
H[269] = ["An upper species of Tazerin, revered as the highest among
|
||
Zerin. However, it has no intention of granting wishes―in
|
||
fact, it boasts that just meeting it is lucky enough and you
|
||
should be grateful. Confident in its defenses, no half-
|
||
hearted technique will work on it."]
|
||
|
||
|
||
|
||
|
||
#トニオ
|
||
F[24] = ["Race: Insect", "Personality: Normal"]
|
||
|
||
H[24] = ["A regular soldier ant of the desert ant colony, tasked with
|
||
guarding the nest and capturing... and interrogating any
|
||
humans who enter. Diligent and highly loyal, it dreams of
|
||
being promoted to the royal guard and trains every day."]
|
||
|
||
|
||
|
||
#アモーレ
|
||
F[28] = ["Race: Insect", "Personality: Dominant"]
|
||
|
||
H[28] = ["A regular soldier ant of the desert ant colony, its job is
|
||
to eliminate intruders. It\'s ferocious and highly
|
||
aggressive, often destroying its target before it can even
|
||
interrogate them, which is a problem. Occasionally, some
|
||
desert ants leave the nest and attack travelers, to the
|
||
point that warnings like \'Beware the red desert ants\' have
|
||
been posted."]
|
||
|
||
|
||
|
||
#ロベルタ
|
||
F[26] = ["Race: Insect", "Personality: Normal"]
|
||
|
||
H[26] = ["A regular soldier ant of the desert ant colony, assigned to
|
||
carry supplies and keep watch inside the nest, as well as
|
||
other non-combat tasks. However, its work attitude is
|
||
terrible, with a strong tendency to slack off, so it often
|
||
gets scolded by the royal guard."]
|
||
|
||
|
||
|
||
#ビタラ
|
||
F[29] = ["Race: Insect", "Personality: Submissive"]
|
||
|
||
H[29] = ["An ant-type monster, but not a desert ant―she\'s a special
|
||
guest allowed in and out of the nest. The honey she makes is
|
||
popular even among the desert ants, and is traded for things
|
||
like human semen. She\'s not aggressive, but has a habit of
|
||
seducing and corrupting any human who makes a move on her,
|
||
making them hers."]
|
||
|
||
|
||
|
||
#ムラタン
|
||
F[117] = ["Race: Demon", "Personality: Submissive"]
|
||
|
||
H[117] = ["A demon with a form close to that of a human. She makes her
|
||
home in ruins and pretends to protect treasure from
|
||
outsiders... but in reality, there\'s no treasure left, and
|
||
she just uses it as an excuse to stay there and drain life
|
||
force from humans. Perhaps out of embarrassment, she hides
|
||
her face with a mask."]
|
||
|
||
|
||
|
||
#ムラタン素顔亜種
|
||
F[120] = ["Race: Demon", "Personality: Normal"]
|
||
|
||
H[120] = ["A lightly armored Muratan without a mask. The basics are the
|
||
same as Muratan, but she speaks with a Feyfo accent."]
|
||
|
||
|
||
|
||
#ハーパキャット
|
||
F[72] = ["Race: Animal", "Personality: Normal"]
|
||
|
||
H[72] = ["A cat-type monster living in the jungles near Eyutaya. Quick
|
||
and mischievous, but a gentle species that won\'t cause harm
|
||
unless attacked first. They\'re basically bipedal, talking
|
||
cats, and many men hesitate to have sex with them... but
|
||
their pussies are said to be so good that some can\'t get
|
||
enough."]
|
||
|
||
|
||
|
||
#ヨヨ
|
||
F[75] = ["Race: Animal", "Personality: Normal"]
|
||
|
||
H[75] = ["Originally a monkey-type monster from the royal capital
|
||
area, but moved to Eyutaya for training. She uses sex
|
||
techniques similar to Feyfo martial arts, and many warriors
|
||
have been defeated by her moves. She has a chivalrous side,
|
||
always seeking out strong opponents for fair fights."]
|
||
|
||
|
||
|
||
#コアハンターゴーグル
|
||
F[123] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[123] = ["A member of a mercenary unit that will take any job as long
|
||
as they\'re paid. Their battle suits are designed for combat
|
||
and have resistance to sex techniques; this equipment is
|
||
common in the Republic. Currently, they\'re on assignment in
|
||
Eyutaya, hired by someone."]
|
||
|
||
|
||
|
||
#コアハンターマスク
|
||
F[127] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[127] = ["A member of a mercenary unit that will take any job as long
|
||
as they\'re paid. To avoid being identified, they cover
|
||
their mouth with a mask, making oral sex techniques
|
||
ineffective. Currently, they\'re on assignment in Eyutaya,
|
||
hired by someone."]
|
||
|
||
|
||
|
||
|
||
#コアハンターペア
|
||
F[313] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[313] = ["Has been hired as a mercenary by Belma for some time, and
|
||
stayed on as a combatant lured by the reward. They
|
||
specialize in fighting in pairs. Some have been Belma\'s
|
||
private soldiers for years, and have even stolen a fragment
|
||
of a heart once kept by a royal family."]
|
||
|
||
|
||
|
||
|
||
#レタ
|
||
F[136]= ["Race: Plant", "Personality: Normal"]
|
||
|
||
H[136]= ["
|
||
モスフィア島に生息する植物系の魔物。
|
||
|
||
滅多に人間が足を踏み入れることのない
|
||
島である為、迷い込んだ余所者に対して敵
|
||
意を抱いている。
|
||
|
||
男という性との接点がほぼなかった為、吸
|
||
精などの快楽もまだ知らない。
|
||
"]
|
||
|
||
|
||
|
||
|
||
#レタ亜種
|
||
F[140] = ["Race: Plant", "Personality: Submissive"]
|
||
|
||
H[140] =["
|
||
小型種のレタでフェアリーに近い種族。
|
||
|
||
レタ同様に外界の人間を忌み嫌うが、迷い
|
||
込んだ人間を騙し、さらに森の奥へと誘導
|
||
する悪質な妖精もいる。
|
||
|
||
水と果実と日光があれば生きられるので
|
||
吸精の必要はない。
|
||
"]
|
||
|
||
|
||
|
||
|
||
#ババヤン
|
||
F[142] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[142] = ["A witch living deep in the forests of Mosfia. She can handle
|
||
all kinds of witch work, from magic to curses to potion-
|
||
making. She basically keeps to herself and never cooperates
|
||
or teams up with other witches―in fact, they\'re always
|
||
trying to trick each other whenever they get the chance."]
|
||
|
||
|
||
|
||
#沼の魔女
|
||
F[145] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[145] = ["A witch living deep in the forests of Mosfia. She likes damp
|
||
places and converts things like mold into nutrients. She can
|
||
create swamps out of nothing, and any human who steps into
|
||
her territory won\'t be allowed to leave until they\'re
|
||
dried up like jerky."]
|
||
|
||
|
||
|
||
|
||
#沼の魔女眼鏡
|
||
F[147] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[147] = ["A witch living deep in the forests of Mosfia. She wears
|
||
glasses she swindled from Babayan; her intelligence is a bit
|
||
higher, but her strength is lower... she\'s a total indoor
|
||
type."]
|
||
|
||
|
||
|
||
|
||
#マヴィチャ
|
||
F[149] = ["Race: Plant", "Personality: Submissive"]
|
||
|
||
H[149] = ["An elf living deep in the jungles of Mosfia. Like the
|
||
fairies, she harbors hostility toward humans from the
|
||
outside world, looking down on them as an inferior species.
|
||
She acts high and mighty, but actually has a masochistic
|
||
side."]
|
||
|
||
|
||
|
||
|
||
#イクリプス
|
||
F[251] = ["Race: Animal", "Personality: Submissive"]
|
||
|
||
H[251] = ["The number one most popular girl at the monster girl cafe
|
||
Moncafe, with bookings filled up a month in advance thanks
|
||
to her incredible skills. She also works as a bouncer,
|
||
driving off troublemakers with sex battles when issues arise
|
||
in the shop. There are rumors that she\'s not a pure animal-
|
||
type, but actually an elf from some forest who got bored of
|
||
village life and moved to the Holy City for excitement."]
|
||
|
||
|
||
|
||
|
||
|
||
#スライム娘
|
||
F[306] = ["Race: Aquatic", "Personality: Normal"]
|
||
|
||
H[306] = ["A blue slime that suddenly appeared in the wetlands of the
|
||
Sudri Grasslands. Although a completely different species
|
||
from Zerin, it\'s a brand new type with no previous records
|
||
of encounters. Like Zerin, it\'s gentle and will happily
|
||
become attached if you feed it fish."]
|
||
|
||
|
||
|
||
|
||
#ジェネラルマーメイド
|
||
F[307] = ["Race: Aquatic", "Personality: Dominant"]
|
||
|
||
H[307] = ["A mermaid-type monster that suddenly appeared at Tears
|
||
Beach. Unlike the mermaids living in the underwater caves of
|
||
Izulberta, she\'s a new species similar to the slime girls.
|
||
She has an aggressive personality and sees humans as enemies
|
||
who pollute and ruin the sea. She patrols the coast as if
|
||
protecting \'something\' at the bottom of the ocean."]
|
||
|
||
|
||
|
||
#ヴァルキリー
|
||
F[309] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[309] = ["A white knight with wings who suddenly descended upon the
|
||
ruins of the Valfreya Temple. Calling herself a Valkyrie,
|
||
her divine appearance makes people think she might be a
|
||
messenger from the heavens, but since she mercilessly
|
||
attacks anyone who enters the temple, she\'s recognized as a
|
||
dangerous being."]
|
||
|
||
|
||
|
||
#軍隊蟻
|
||
F[31] = ["Race: Insect", "Personality: Normal → Dominant → Normal"]
|
||
|
||
H[31] = ["An elite soldier ant assigned as a royal guard to protect
|
||
the queen. They specialize in three-unit formations and work
|
||
together in perfect sync, but if even one is defeated, their
|
||
formation quickly collapses."]
|
||
|
||
|
||
|
||
#ルカ=ドッペル
|
||
F[355] = ["Race: Homunculus", "Personality: Dominant"]
|
||
|
||
H[355] = ["A doppelganger cloned in Belma\'s laboratory. Created using
|
||
the same method as the homunculus series with butterfly
|
||
wings that once fought at the Genshroom Laboratory, but
|
||
there is no data at all about the original warrior. It can
|
||
change its gender to match its opponent, but seems to
|
||
perform best in boy form. Maybe due to the original
|
||
personality, it ends up shouting things like \'Ahi!\' when
|
||
climaxing."]
|
||
|
||
|
||
|
||
#エルニン
|
||
F[193] = ["Race: Humanoid", "Personality: Submissive"]
|
||
|
||
H[193] = ["One of the three High Priests of the Freya Temple, known as
|
||
the \'Pope\'s Right Hand.\' She used to raise orphans within
|
||
the temple, but after being dismissed on suspicion of
|
||
attempted assassination, they were taken hostage... and
|
||
unwillingly became Bildolf\'s subordinate, putting her at
|
||
odds with the protagonist. She has the skills befitting a
|
||
High Priest, but couldn\'t fully demonstrate them here due
|
||
to her reluctance to fight."]
|
||
|
||
|
||
|
||
#マスクドフレイア
|
||
F[253] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[253] = ["A mysterious priest who hides their face behind a mask―no
|
||
one knows their true identity. They\'ve guided many young
|
||
monks through their first experiences during coming-of-age
|
||
rituals. Apparently, they use advanced perception-blocking
|
||
magic, so anyone trying to recognize them just gets a mental
|
||
fog."]
|
||
|
||
|
||
|
||
|
||
#ギロ
|
||
F[296] = ["Race: Humanoid", "Personality: Dominant"]
|
||
|
||
H[296] = ["The current boss of Gloom\'s Fang and a master assassin who
|
||
taught the protagonist how to fight. Their origins are
|
||
shrouded in mystery, but since they use techniques from the
|
||
assassin\'s guild south of the royal capital, it\'s believed
|
||
they\'re connected to that area. Since becoming boss,
|
||
they\'ve raised many orphans as candidates for the Fang, but
|
||
only a few remain―and among them, the protagonist, their
|
||
first disciple, is special. Something might happen if you
|
||
lose to them..."]
|
||
|
||
|
||
|
||
|
||
|
||
#ヴィージヨ
|
||
F[225] = ["Race: Demon", "Personality: Dominant"]
|
||
|
||
H[225] = ["A necromancer sent as a spy to Nameless Island to
|
||
investigate the movements of the Lord of Flies. She once had
|
||
her life saved by Lisa and has worshipped her like a goddess
|
||
ever since―she\'d gladly give her life if Lisa told her to
|
||
die. So even being used as a disposable pawn doesn\'t bother
|
||
her... she\'s satisfied just to fulfill her role. If she had
|
||
abandoned her mission, the Lord of Flies\' incarnation
|
||
wouldn\'t have made it in time."]
|
||
|
||
|
||
|
||
#パラコーン
|
||
F[300] = ["Race: Humanoid", "Personality: Submissive"]
|
||
|
||
H[300] = ["The 69th captain of the Holy Cross Squad in the Holy City,
|
||
said to be \'the strongest ever\' among all past captains.
|
||
Her fame has spread beyond the continent, earning her the
|
||
nickname \'Strongest Human\'... even among demons, she\'s
|
||
feared as the most dangerous force. Her true value shines
|
||
most in group battles on the battlefield―her ultimate
|
||
technique absorbs all damage taken by her squad and reflects
|
||
it across the field; even one of the Five Demon Lords
|
||
wouldn\'t survive a direct hit."]
|
||
|
||
|
||
|
||
#チヤ
|
||
F[103] = ["Race: Humanoid", "Personality: Dominant"]
|
||
|
||
H[103] = ["The vice-captain of the Holy Cross Squad in the Holy City
|
||
and Paracon\'s close aide. She leads the archers and other
|
||
rear guard units, specializing in support fire using tools
|
||
called \'pleasure devices.\' She worships Paracon (maybe
|
||
even more than that?), but tends to get carried away and
|
||
often loses her cool."]
|
||
|
||
|
||
|
||
#チヤ模擬戦
|
||
F[274] = ["Race: Humanoid", "Personality: Dominant"]
|
||
|
||
H[274] = ["The vice-captain of the Holy Cross Squad in the Holy City
|
||
and Paracon\'s close aide. After suffering a defeat once,
|
||
she trained hard and now stands before the protagonist as a
|
||
sparring partner. She supposedly holds no grudge against the
|
||
protagonist anymore, but worries he might become a bad
|
||
influence on her beloved Paracon―still, she\'s trying to win
|
||
him over and recruit him to the squad."]
|
||
|
||
|
||
|
||
|
||
#コアンタ
|
||
F[106] = ["Race: Humanoid", "Personality: Submissive"]
|
||
|
||
H[106] = ["A member of the Holy Cross Squad in the Holy City and
|
||
Paracon\'s close aide, ranked third in the squad. She\'s
|
||
famous in all sorts of ways within the temple, and rumor has
|
||
it that most of the men there have had sex with her,
|
||
including in combat. Her abilities are about on par with a
|
||
priest, but she refuses to class change from acolyte just
|
||
because she doesn\'t like wearing the same robes as everyone
|
||
else."]
|
||
|
||
|
||
|
||
|
||
#コアンタ模擬戦
|
||
F[277] = ["Race: Humanoid", "Personality: Submissive"]
|
||
|
||
H[277] = ["A member of the Holy Cross Squad in the Holy City and
|
||
Paracon\'s close aide, ranked third in the squad. She joined
|
||
the mock battle just because \'it seemed interesting,\' and
|
||
afterward formed a cooperative relationship with the
|
||
protagonist. Her behavior and conduct are problematic, and
|
||
she often clashes with Chiya over trivial things, but since
|
||
the top two members of the Holy Cross Squad are so hot-
|
||
blooded, her ability to think about things most objectively
|
||
makes her an important presence in the squad."]
|
||
|
||
|
||
|
||
|
||
|
||
|
||
#ハプリコーン
|
||
F[84] = ["Race: Humanoid", "Personality: Submissive"]
|
||
|
||
H[84] = ["A Freya priestess who teaches self-defense holy arts at the
|
||
Valkyrie Chapel. She is popular and well-supported by the
|
||
people of the Holy City, and there is no end to the male
|
||
devotees who want to learn from her. She is always worried
|
||
about her younger sister, who went missing in the Republic."]
|
||
|
||
|
||
|
||
|
||
#ハノン
|
||
F[56] = ["Race: Humanoid", "Personality: Dominant"]
|
||
|
||
H[56] = ["A priestess assigned to the Valkyrie Chapel and Mema\'s twin
|
||
sister. She looks just like Mema, but their personalities
|
||
are completely different, and she is extremely strict about
|
||
money. She loves her older sister dearly and wants to do
|
||
something about the protagonist, who she suspects is trying
|
||
to seduce her."]
|
||
|
||
|
||
|
||
#イヴ
|
||
F[131] = ["Race: Homunculus", "Personality: Normal"]
|
||
|
||
H[131] = ["A homunculus who served as Volzeb\'s bodyguard. Although
|
||
technically an older model from a previous generation,
|
||
repeated adjustments and improvements have given her specs
|
||
equal to the latest generation, and she has been implanted
|
||
with simulated Assassin Cross sex techniques. She was not
|
||
among the individuals confirmed when Butterfly Wings fought
|
||
at the laboratory before."]
|
||
|
||
|
||
|
||
#イヴ再戦
|
||
F[321] = ["Race: Homunculus", "Personality: Normal"]
|
||
|
||
H[321] = ["Originally an original homunculus developed by Belma to
|
||
counter \'something,\' with no base template. She now always
|
||
accompanies Volzeb as his bodyguard on the front lines.
|
||
While acting together, she somehow awakened something like a
|
||
sense of self, saved her master from danger by acting
|
||
outside her orders, and then went into a dormant state. Her
|
||
glasses function as a battery."]
|
||
|
||
|
||
|
||
|
||
#シグルドリーヴァ
|
||
F[359] = ["Race: Formless", "Personality: Dominant"]
|
||
|
||
H[359] = ["An artificial weapon stored in the restricted area of
|
||
Belma\'s laboratory. Completely different from automata or
|
||
guardians, it feels more like lost technology from the
|
||
Yubeiros Ruins. Its power is extremely great―perhaps even
|
||
beyond the Five Demon Lords."]
|
||
|
||
|
||
|
||
#トレント=イニー
|
||
F[271] = ["Race: Homunculus", "Personality: Dominant"]
|
||
|
||
H[271] = ["The ghost of a dancer homunculus that haunts the abandoned
|
||
Genshroom Laboratory. She can also transform into a
|
||
succubus-like form, a species said to be extinct in this
|
||
world. The original data is unknown, but her appearance and
|
||
techniques somehow remind one of Michelle of Butterfly
|
||
Wings. When checked in monster info, her capture rate shows
|
||
some strange numbers..."]
|
||
|
||
|
||
|
||
#エクスキューショナー
|
||
F[162] = ["Race: Demon", "Personality: Dominant"]
|
||
|
||
H[162] = ["A succubus in armor who worked as a bodyguard for the Freya
|
||
Liberation Front. For some unknown reason, she seems to be
|
||
searching for a strong male warrior. She never showed even
|
||
half her true power and withdrew before getting serious."]
|
||
|
||
|
||
|
||
#エクス本気
|
||
F[336] = ["Race: Demon", "Personality: Dominant"]
|
||
|
||
H[336] = ["The youngest of the three succubus sisters who came to this
|
||
world with Novissa. The moment they arrived, she was
|
||
separated from Novissa after being ambushed by Vijyo. In
|
||
life, she served Novissa and lived in the Forest of Succubi
|
||
until Lisa and Asprika attacked, leading her to join Queen
|
||
Hel of the Underworld for revenge."]
|
||
|
||
|
||
|
||
|
||
|
||
#オーガトゥース
|
||
F[164] = ["Race: Demon", "Personality: Dominant"]
|
||
|
||
H[164] = ["A wandering swordswoman once called the Ogre of the Arena,
|
||
who hunted strong warriors. She seems to know something
|
||
about Novissa...?"]
|
||
|
||
|
||
|
||
|
||
#オーガ本気
|
||
F[338] = ["Race: Demon", "Personality: Dominant"]
|
||
|
||
H[338] = ["The second daughter of the three succubus sisters who came
|
||
to this world with Novissa. Her history up to the present is
|
||
similar to her sisters, and she later reunited with them at
|
||
Belma\'s laboratory. Of the sisters, she\'s the most battle-
|
||
hungry, living for the thrill of fighting strong opponents,
|
||
but deep down she wants to become the strongest herself so
|
||
she can protect her sisters and stand by her master\'s side."]
|
||
|
||
|
||
|
||
|
||
#ミステルテイン
|
||
F[340] = ["Race: Demon", "Personality: Normal"]
|
||
|
||
H[340] = ["The eldest of the three succubus sisters who came to this
|
||
world with Novissa. She was once Novissa\'s lover, but they
|
||
were separated during an attack by fallen angels from
|
||
Heaven... and she joined Queen Hel of the Underworld for
|
||
revenge. Since then, she has repeatedly reunited and parted
|
||
with Novissa, who lost his memories after reincarnation.
|
||
Learning of Belma\'s laboratory, she went to investigate
|
||
alone but was caught in Volzeb\'s trap and taken prisoner."]
|
||
|
||
|
||
|
||
|
||
|
||
#マヤ
|
||
F[7] = ["Race: Insect", "Personality: Dominant"]
|
||
|
||
H[7] = ["The queen ant who leads the desert ants. She built a large
|
||
nest in the desert and tried to expand her territory. Her
|
||
subordinates don\'t usually leave the nest to attack humans,
|
||
but if anyone approaches their nest―even without
|
||
hostility―they\'ll be dragged inside, so she\'s considered
|
||
dangerous even in the Holy City."]
|
||
|
||
|
||
|
||
#マヤゴールド
|
||
F[239] = ["Race: Insect", "Personality: Dominant"]
|
||
|
||
H[239] = ["The evolved form of the desert ant queen previously defeated
|
||
by the protagonist. For revenge, she kept digging tunnels
|
||
from her nest to the underground of the Holy City to launch
|
||
a surprise attack, but failed. The honey secreted by the
|
||
queen ant contains strong pheromones―once you taste it, you
|
||
can never disobey her again. Something might happen if you
|
||
lose to her..."]
|
||
|
||
|
||
|
||
#アストロス
|
||
F[284] = ["Race: Animal", "Personality: Dominant"]
|
||
|
||
H[284] = ["The boss wolf who leads the Galeons, born due to the
|
||
weakening of the continent\'s barrier. Extremely aggressive,
|
||
it attacks any human who enters its territory without
|
||
hesitation. As attacks on the Holy City increased,
|
||
subjugation squads were sent but all were repelled. As a
|
||
beast attracted to strong males, once you put it in its
|
||
place, it becomes a loyal dog."]
|
||
|
||
|
||
|
||
|
||
#オニール
|
||
F[362] = ["Race: Animal", "Personality: Dominant"]
|
||
|
||
H[362] = ["A gluttonous beast with a long tongue that inhabits the
|
||
desert region. It\'s always hungry and craves human essence;
|
||
when satisfied, it\'s in a good mood, but if it stays hungry
|
||
for too long, it goes berserk and becomes uncontrollable."]
|
||
|
||
|
||
|
||
#ハーティー
|
||
F[51] = ["Race: Animal", "Personality: Normal"]
|
||
|
||
H[51] = ["Originally a mythical beast from the snowy continent, it
|
||
moved to an ice cave with a similar environment to raise its
|
||
young. It speaks and acts with dignity, but sometimes
|
||
unconsciously behaves like a dog."]
|
||
|
||
|
||
|
||
#クルトラナッソス
|
||
F[260] = ["Race: Humanoid", "Personality: Submissive"]
|
||
|
||
H[260] = ["A sage who resides in a mansion at the deepest part of the
|
||
ice cave. Possessing power rivaling the Five Great Demon
|
||
Lords, many factions have tried to recruit her, but she has
|
||
no interest in human or demon conflicts. She only gets
|
||
involved in things she finds \'interesting.\' She protected
|
||
the Pope\'s twin brother at Elnin\'s request, not out of
|
||
sympathy, but because she found it intriguing."]
|
||
|
||
|
||
|
||
#ヴェルセブブ
|
||
F[229] = ["Race: Insect", "Personality: Dominant"]
|
||
|
||
H[229] = ["Once feared as the Lord of Flies during the Divine-Demon War
|
||
and one of the Five Great Demon Lords, she was later
|
||
defeated by a commoner known as the \'Demon Lord Slayer.\'
|
||
Afterwards, she laid an egg as a vessel for herself on
|
||
Nameless Island, and awakened in the present world in
|
||
response to the revival of the King of Corpses. With help
|
||
from Lisa Himmelgan, she gained a physical body, but
|
||
couldn\'t use even half her true power and was defeated by
|
||
the Pope, falling into slumber once again."]
|
||
|
||
|
||
|
||
#フィーヴァム
|
||
F[221] = ["Race: Humanoid", "Personality: Submissive"]
|
||
|
||
H[221] = ["She once served as the Pope\'s assistant in the temple, but
|
||
after conspiring with Bildolf in a failed rebellion, her
|
||
twisted ambition for the papacy was exploited by Asprica.
|
||
Her talent and effort were genuine―she became the Pope\'s
|
||
assistant in record time from being a nun. Calculating and
|
||
always with a hidden agenda, she would deliberately trip
|
||
every morning to boldly show off her underwear and attract
|
||
attention from followers. Something might happen if you
|
||
defeat her..."]
|
||
|
||
|
||
|
||
#イグゼニム
|
||
F[344] = ["Race: Homunculus", "Personality: Dead Fish"]
|
||
|
||
H[344] = ["Belma\'s greatest masterpiece of a homunculus. Thanks to a
|
||
fragment of Owl\'s Heart, she possesses powers of
|
||
duplication and super-regeneration... but even without that,
|
||
her abilities far surpass other homunculi. Her original body
|
||
decayed from experiments, but her soul possessed Owl\'s
|
||
Heart, waiting for a chance at revenge. Something might
|
||
happen if you defeat her..."]
|
||
|
||
|
||
|
||
#イフリート
|
||
F[68] = ["Race: Formless", "Personality: Dominant"]
|
||
|
||
H[68] = ["A fire spirit watching over all of La Feele, residing in
|
||
Mujornia Volcano where the fire ley lines are strongest.
|
||
Since ancient times, fighting her has been the final trial
|
||
for the Pope\'s pilgrimage, but as a trial, she would hold
|
||
back to some extent. Perhaps one day you\'ll get to face her
|
||
at full strength."]
|
||
|
||
|
||
|
||
#イフリート再戦
|
||
F[282] = ["Race: Formless", "Personality: Dominant"]
|
||
|
||
H[282] = ["She held back last time you fought, but now she stands
|
||
before you with her full power. She viewed both the Pope\'s
|
||
defeat and the demons\' schemes as part of the \'trial,\'
|
||
but when it comes to herself, she becomes cautious―she sees
|
||
the legendary \'Ice Weapon\' as dangerous and wants to keep
|
||
it close."]
|
||
|
||
|
||
|
||
#ヴィーゴニク
|
||
F[290] = ["Race: Animal", "Personality: Dominant → Dominant → Submissive"]
|
||
|
||
H[290] = ["The three-headed demon dragon feared as a fairy tale legend.
|
||
Recently, they heard humans were encroaching on their
|
||
territory and appeared from the depths to teach them a
|
||
lesson. They specialize in three-in-one teamwork and look
|
||
down on humans, but if things turn against them, they
|
||
quickly change their tune. Something might happen if you
|
||
defeat them..."]
|
||
|
||
|
||
|
||
#タンクウガ
|
||
F[287] = ["Race: Formless", "Personality: Normal"]
|
||
|
||
H[287] = ["An artificial weapon that slept for ages in the ruins of
|
||
Eyutaya. Sensing a strong presence of \'evil,\' it awakened
|
||
from its slumber, and that evil presence only seems to be
|
||
growing. It doesn\'t have artificial intelligence but rather
|
||
a soul-like self-awareness, with a rough temperament and
|
||
foul mouth. The keyword is \'I\'ll do it...\' The
|
||
inscription on the monument ends here."]
|
||
|
||
|
||
|
||
|
||
#グルームの夜
|
||
F[198] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[198] = ["A mass of countless grudges sleeping beneath the Grand
|
||
Temple, given flesh by the power of Owl\'s Heart. It mimics
|
||
the Pope\'s body, which was used as a biological unit,
|
||
making it almost like a clone. It harbors deep hatred and
|
||
resentment toward the cult that put them through such
|
||
suffering."]
|
||
|
||
|
||
|
||
#グルームの夜再戦
|
||
F[259] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[259] = ["Previously defeated in the sanctuary, but Mimir summoned and
|
||
restored its wandering soul. After learning about Mimir\'s
|
||
background, they hit it off and made a contract to rush to
|
||
his side whenever he called."]
|
||
|
||
|
||
|
||
#トリスリタン
|
||
F[53] = ["Race: Demon", "Personality: Submissive"]
|
||
|
||
H[53] = ["One of the demons operating behind the scenes on the La
|
||
Feele continent, a necromancer who commands the dead. On
|
||
orders from her master, she was collecting life force needed
|
||
for resurrection, but after being thwarted by the Holy Cross
|
||
Squad, she held a grudge... and in her impatience for
|
||
achievement, recklessly led 2,000 subordinates on her own.
|
||
She\'s a coward obsessed with status and honor―she grovels
|
||
before the strong and acts tough toward the weak."]
|
||
|
||
|
||
|
||
#トリスリタン再戦
|
||
F[265] = ["Race: Demon", "Personality: Submissive"]
|
||
|
||
H[265] = ["After losing her master, she was on the run until rescued by
|
||
remnants of the laboratory. Originally recruited by Volzeb
|
||
as a pawn, she became angry at being used as a decoy and
|
||
returned to life on the run. She\'s not a pure
|
||
demon―apparently she gained an immortal body through \'some
|
||
kind of power.\'"]
|
||
|
||
|
||
|
||
#クィーンハーピー
|
||
F[249] = ["Race: Animal", "Personality: Dominant"]
|
||
|
||
H[249] = ["A higher species of harpy that suddenly appeared in the
|
||
birdmen\'s settlement. She seems to have no memories, but
|
||
her elegance and demeanor suggest she was of noble lineage.
|
||
She ruled as chief of the birdfolk settlement and grew her
|
||
influence daily, making nearby residents fearful. Now she\'s
|
||
reconciled with humans on the continent and established a
|
||
non-aggression pact. Something might happen if you defeat
|
||
her..."]
|
||
|
||
|
||
|
||
|
||
|
||
#ダークレタ
|
||
F[138] = ["Race: Plant", "Personality: Dominant"]
|
||
|
||
H[138] = ["A plant-type monster inhabiting Mosfia Island. Among its
|
||
kind, it has an especially strong libido, seeking out men\'s
|
||
life force by leaving the island or attacking lost sailors
|
||
in nearby seas. Some individuals, fed up with island life,
|
||
have left and never returned."]
|
||
|
||
|
||
|
||
|
||
#憲兵
|
||
F[20] = ["Race: Humanoid", "Personality: Normal"]
|
||
|
||
H[20] = ["A security soldier who patrols the Holy City and the
|
||
pleasure district, cracking down on illegal shops and
|
||
trespassers. They often get harassed by drunks or sexually
|
||
harassed, and the pay is low, so it\'s not a job anyone
|
||
wants unless they\'re after power. However, they have
|
||
authority equal to the temple\'s regular soldiers."]
|
||
|
||
|
||
|
||
#ブラックネイビス
|
||
F[200] = ["Race: Incorporeal", "Personality: Dead Fish"]
|
||
|
||
|
||
H[200] = ["The being the protagonist faced in Groom\'s Fang\'s final
|
||
trial. It seems that a figure one must overcome stands in
|
||
their way, and this entity was summoned from a possible
|
||
future where the protagonist is feared as the \'Boss of
|
||
Groom\'s Fang.\'"]
|
||
|
||
|
||
|
||
end
|
||
|
||
=begin
|
||
|
||
イベントコマンドのスクリプト
|
||
|
||
m_dictionary_steal_switch_on(33, 1, 0)
|
||
m_dictionary_steal_switch_off(33, 1, 0)
|
||
m_dictionary_steal_switch_on?(33, 1, 0)
|
||
敵ID33のスティールリスト1の0番目の盗みフラグをオン、オフ、取得
|
||
|
||
|
||
設定ここまで
|
||
|
||
=end
|
||
|
||
|
||
|
||
#==============================================================================
|
||
# ■ WD_monsterdictionary
|
||
#==============================================================================
|
||
module WD_monsterdictionary
|
||
def m_dictionary_steal_switch_on(id, effect_data_id, number)
|
||
n = [effect_data_id, number]
|
||
$game_system.m_dic_steal_sw = [] if $game_system.m_dic_steal_sw == nil
|
||
$game_system.m_dic_steal_sw[id] = {} if $game_system.m_dic_steal_sw[id] == nil
|
||
$game_system.m_dic_steal_sw[id][n] = false if $game_system.m_dic_steal_sw[id][n] == nil
|
||
$game_system.m_dic_steal_sw[id][n] = true
|
||
end
|
||
def m_dictionary_steal_switch_off(id, effect_data_id, number)
|
||
n = [effect_data_id, number]
|
||
$game_system.m_dic_steal_sw = [] if $game_system.m_dic_steal_sw == nil
|
||
$game_system.m_dic_steal_sw[id] = {} if $game_system.m_dic_steal_sw[id] == nil
|
||
$game_system.m_dic_steal_sw[id][n] = false if $game_system.m_dic_steal_sw[id][n] == nil
|
||
$game_system.m_dic_steal_sw[id][n] = false
|
||
end
|
||
def m_dictionary_steal_switch_on?(id, effect_data_id, number)
|
||
n = [effect_data_id, number]
|
||
$game_system.m_dic_steal_sw = [] if $game_system.m_dic_steal_sw == nil
|
||
$game_system.m_dic_steal_sw[id] = {} if $game_system.m_dic_steal_sw[id] == nil
|
||
$game_system.m_dic_steal_sw[id][n] = false if $game_system.m_dic_steal_sw[id][n] == nil
|
||
return $game_system.m_dic_steal_sw[id][n]
|
||
end
|
||
def m_dictionary_lose_number_add(id, n)
|
||
$game_system.m_dic_lose_num = [] if $game_system.m_dic_lose_num == nil
|
||
$game_system.m_dic_lose_num[id] = 0 if $game_system.m_dic_lose_num[id] == nil
|
||
$game_system.m_dic_lose_num[id] += n
|
||
end
|
||
def m_dictionary_lose_number(id)
|
||
$game_system.m_dic_lose_num = [] if $game_system.m_dic_lose_num == nil
|
||
$game_system.m_dic_lose_num[id] = 0 if $game_system.m_dic_lose_num[id] == nil
|
||
return $game_system.m_dic_lose_num[id]
|
||
end
|
||
|
||
def ex_dic_id(id)
|
||
return $data_enemies[id].ex_dic_id
|
||
end
|
||
def self.ex_dic_alias(name)
|
||
eval <<-DEF
|
||
alias ex_dic_m_dictionary_#{name} m_dictionary_#{name}
|
||
def m_dictionary_#{name}(*args)
|
||
args[0] = ex_dic_id(args[0])
|
||
ex_dic_m_dictionary_#{name}(*args)
|
||
end
|
||
DEF
|
||
end
|
||
def self.ex_dic_switch_alias(name)
|
||
eval <<-DEF
|
||
alias ex_dic_switch_m_dictionary_#{name} m_dictionary_#{name}
|
||
def m_dictionary_#{name}(*args)
|
||
return if $game_switches[MDic_Base::NO_COUNT_SWITCH]
|
||
ex_dic_switch_m_dictionary_#{name}(*args)
|
||
end
|
||
DEF
|
||
end
|
||
for s1 in ["encount", "victory", "drop"]
|
||
for s2 in ["on", "off", "on?"]
|
||
self.ex_dic_alias(s1 + "_switch_" + s2)
|
||
end
|
||
end
|
||
self.ex_dic_alias("genoside_number_add")
|
||
self.ex_dic_alias("genoside_number")
|
||
self.ex_dic_alias("lose_number_add")
|
||
self.ex_dic_alias("lose_number")
|
||
self.ex_dic_switch_alias("genoside_number_add")
|
||
self.ex_dic_switch_alias("lose_number_add")
|
||
end
|
||
|
||
#==============================================================================
|
||
# ■ RPG::Enemy
|
||
#==============================================================================
|
||
class RPG::Enemy < RPG::BaseItem
|
||
#--------------------------------------------------------------------------
|
||
# ● 本体ID
|
||
#--------------------------------------------------------------------------
|
||
def ex_dic_id
|
||
@note =~ /<本体=(\d+)>/ ? $1.to_i : id
|
||
end
|
||
#--------------------------------------------------------------------------
|
||
# ● サブ盗みID
|
||
#--------------------------------------------------------------------------
|
||
def sub_steal_id_list
|
||
@note =~ /<サブ盗み=(\d+(?:,\d+)*)>/ ? eval("[#{$1}]") : []
|
||
end
|
||
#--------------------------------------------------------------------------
|
||
# ● 図鑑画像 [name, hue, x, y, opacity, zoom]
|
||
#--------------------------------------------------------------------------
|
||
def dic_picture
|
||
if @note =~ /<図鑑画像=(\S+),(\d+),(\d+),(\d+),(\d+)>/
|
||
return [ $1, battler_hue, $2.to_i, $3.to_i, $4.to_i, $5.to_i]
|
||
else
|
||
return [battler_name, battler_hue, nil, nil, nil, nil]
|
||
end
|
||
end
|
||
end
|
||
|
||
class Game_System
|
||
#--------------------------------------------------------------------------
|
||
# ● 公開インスタンス変数
|
||
#--------------------------------------------------------------------------
|
||
attr_accessor :m_dic_steal_sw
|
||
attr_accessor :m_dic_lose_num
|
||
end
|
||
|
||
class Game_Troop < Game_Unit
|
||
#--------------------------------------------------------------------------
|
||
# ● 図鑑への登録(撃破済み判定)
|
||
#--------------------------------------------------------------------------
|
||
def dictionary3
|
||
for enemy in members
|
||
m_dictionary_lose_number_add(enemy.enemy_id, 1) unless enemy.hidden?
|
||
end
|
||
end
|
||
end
|
||
|
||
class << BattleManager
|
||
#--------------------------------------------------------------------------
|
||
# ● 敗北の処理
|
||
#--------------------------------------------------------------------------
|
||
alias :ex_dic_process_defeat :process_defeat
|
||
def process_defeat
|
||
$game_troop.dictionary3
|
||
ex_dic_process_defeat
|
||
end
|
||
end
|
||
|
||
class Game_Battler < Game_BattlerBase
|
||
#--------------------------------------------------------------------------
|
||
# ● 使用効果[アイテムスティール]
|
||
#--------------------------------------------------------------------------
|
||
def item_effect_steal(user, item, effect)
|
||
if enemy?
|
||
@result.use_steal = true
|
||
if self.non_stealed?
|
||
steal_list = self.steal_list[effect.data_id]
|
||
#盗めるアイテムのリストがあれば処理
|
||
if steal_list != nil
|
||
for list in 0..steal_list.size - 1
|
||
if steal_list[list]
|
||
#成功判定
|
||
dice = steal_list[list][2]
|
||
dice = (dice / user.battler_add_ability(0)).to_i if user.actor?
|
||
if rand(dice) == 0 or dice == 0
|
||
m_dictionary_steal_switch_on(@enemy_id, effect.data_id, list)
|
||
case steal_list[list][0]
|
||
when 1
|
||
item = $data_items[steal_list[list][1]]
|
||
when 2
|
||
item = $data_weapons[steal_list[list][1]]
|
||
when 3
|
||
item = $data_armors[steal_list[list][1]]
|
||
end
|
||
$game_party.gain_item(item, 1)
|
||
self.steal = true
|
||
@result.steal = item
|
||
end
|
||
end
|
||
end
|
||
else
|
||
@result.stealed = true
|
||
end
|
||
else
|
||
@result.stealed = true
|
||
end
|
||
end
|
||
end
|
||
end |