TL Bestiary
This commit is contained in:
parent
e9af26c87c
commit
b5dc721919
6 changed files with 900 additions and 1572 deletions
Binary file not shown.
Binary file not shown.
2294
Scripts/_.50.rb
2294
Scripts/_.50.rb
File diff suppressed because it is too large
Load diff
|
|
@ -104,7 +104,7 @@ module Sound_Control
|
|||
|
||||
#見出しとして表示するテキスト。(大きく表示されます)
|
||||
|
||||
TITLE = "- 音量調節 -"
|
||||
TITLE = "- Volume -"
|
||||
|
||||
#左下・右下に表示するテキストを数値に応じて更に下の方に移動させます。
|
||||
#解像度を640×480に拡張している場合は、この値を32に設定すると
|
||||
|
|
|
|||
|
|
@ -34,119 +34,119 @@ module WD_monsterdictionary_layout
|
|||
#フォントサイズ
|
||||
C_font_size = 20
|
||||
|
||||
#===魔物図鑑設定================================================================
|
||||
#===Monster Encyclopedia Settings================================================================
|
||||
|
||||
#番号の表示
|
||||
#Display number
|
||||
M_id_display = true
|
||||
M_id_display_x = 0
|
||||
M_id_display_y = 0
|
||||
M_id_display_width = 60
|
||||
M_id_display_digit = 3 #桁数
|
||||
M_id_display_digit = 3 #number of digits
|
||||
|
||||
#名前の表示
|
||||
#Display name
|
||||
M_name_display = true
|
||||
M_name_display_x = 84
|
||||
M_name_display_y = 0
|
||||
M_name_display_width = 172
|
||||
|
||||
#画像の表示
|
||||
#Display image
|
||||
M_pic_display = true
|
||||
M_pic_display_x = 204
|
||||
M_pic_display_y = 455
|
||||
M_pic_display_opacity = 200 #画像の不透明度
|
||||
M_pic_display_opacity = 200 #image opacity
|
||||
|
||||
#最大HPの表示
|
||||
#Display max HP
|
||||
M_mhp_display = true
|
||||
M_mhp_display_x = 0
|
||||
M_mhp_display_y = 33
|
||||
M_mhp_display_width = 136
|
||||
|
||||
#最大MPの表示
|
||||
#Display max MP
|
||||
M_mmp_display = true
|
||||
M_mmp_display_x = 150
|
||||
M_mmp_display_y = 33
|
||||
M_mmp_display_width = 136
|
||||
|
||||
#攻撃力の表示
|
||||
#Display attack power
|
||||
M_atk_display = true
|
||||
M_atk_display_x = 0
|
||||
M_atk_display_y = 51
|
||||
M_atk_display_width = 136
|
||||
|
||||
#防御力の表示
|
||||
#Display defense power
|
||||
M_def_display = true
|
||||
M_def_display_x = 150
|
||||
M_def_display_y = 51
|
||||
M_def_display_width = 136
|
||||
|
||||
#魔法力の表示
|
||||
#Display magic power
|
||||
M_mat_display = true
|
||||
M_mat_display_x = 0
|
||||
M_mat_display_y = 69
|
||||
M_mat_display_width = 136
|
||||
|
||||
#魔法防御の表示
|
||||
#Display magic defense
|
||||
M_mdf_display = true
|
||||
M_mdf_display_x = 150
|
||||
M_mdf_display_y = 69
|
||||
M_mdf_display_width = 136
|
||||
|
||||
#敏捷性の表示
|
||||
#Display agility
|
||||
M_agi_display = true
|
||||
M_agi_display_x = 0
|
||||
M_agi_display_y = 87
|
||||
M_agi_display_width = 136
|
||||
|
||||
#運の表示
|
||||
#Display luck
|
||||
M_luk_display = true
|
||||
M_luk_display_x = 150
|
||||
M_luk_display_y = 87
|
||||
M_luk_display_width = 136
|
||||
|
||||
#特徴の表示
|
||||
#Display features
|
||||
M_feature_display = true
|
||||
M_feature_display_x = 0
|
||||
M_feature_display_y = 30
|
||||
M_feature_display_width = 286
|
||||
M_feature_display_text1 = "特徴"
|
||||
M_feature_display_text1 = "Features"
|
||||
M_feature_display_text2 = "-"
|
||||
|
||||
#経験値の表示
|
||||
#Display experience points
|
||||
M_exp_display = true
|
||||
M_exp_display_x = 150
|
||||
M_exp_display_y = 122
|
||||
M_exp_display_width = 136
|
||||
M_exp_display_text1 = "EXP"
|
||||
|
||||
#お金の表示
|
||||
#Display money
|
||||
M_gold_display = false
|
||||
M_gold_display_x = 150
|
||||
M_gold_display_y = 213
|
||||
M_gold_display_width = 136
|
||||
M_gold_display_text1 = "お金"
|
||||
M_gold_display_text1 = "Money"
|
||||
|
||||
#ドロップアイテムの表示
|
||||
#Display drop items
|
||||
M_drop_display = false
|
||||
M_drop_display_x = 0
|
||||
M_drop_display_y = 240
|
||||
M_drop_display_width = 286
|
||||
M_drop_display_text1 = "ドロップアイテム"
|
||||
M_drop_display_text2 = "なし"
|
||||
M_drop_display_text1 = "Drop Items"
|
||||
M_drop_display_text2 = "None"
|
||||
|
||||
#説明の表示
|
||||
#Display description
|
||||
M_help_display = true
|
||||
M_help_display_x = 0
|
||||
M_help_display_y = 110#350
|
||||
M_help_display_width = 405#375
|
||||
M_help_display_text1 = "説明"
|
||||
M_help_display_text1 = "Description"
|
||||
M_help_display_text2 = "-"
|
||||
|
||||
#撃破数の表示
|
||||
#Display number defeated
|
||||
M_geno_display = false
|
||||
M_geno_display_x = 0
|
||||
M_geno_display_y = 430
|
||||
M_geno_display_width = 136
|
||||
M_geno_display_text1 = "イかせた数"
|
||||
M_geno_display_text1 = "Defeated"
|
||||
|
||||
end
|
||||
#-------------------------------------------------------------------------------
|
||||
|
|
|
|||
124
YAML/System.yaml
124
YAML/System.yaml
|
|
@ -1,69 +1,69 @@
|
|||
--- !ruby/object:RPG::System
|
||||
elements:
|
||||
- ''
|
||||
- 物理(挿入)
|
||||
- バックスタブ
|
||||
- 3穴
|
||||
- アナル
|
||||
- 乳首
|
||||
- 予備
|
||||
- ヒール
|
||||
- 必中
|
||||
- 聖
|
||||
- 該当なし
|
||||
- 指
|
||||
- 胸
|
||||
- 口
|
||||
- 触手
|
||||
- 舌技
|
||||
- クンニ
|
||||
- S技
|
||||
- Phys
|
||||
- Bstab
|
||||
- 3Hol
|
||||
- Anal
|
||||
- Nip
|
||||
- Spare
|
||||
- Heel
|
||||
- Hit
|
||||
- Holy
|
||||
- N/A
|
||||
- Fing
|
||||
- Brst
|
||||
- Mth
|
||||
- Tent
|
||||
- TngT
|
||||
- Cuni
|
||||
- STech
|
||||
- M
|
||||
- 正常位
|
||||
- 騎乗位
|
||||
- バック
|
||||
- ポリン
|
||||
- 竜
|
||||
- 人間
|
||||
- 悪魔
|
||||
- 植物
|
||||
- 水棲
|
||||
- 昆虫
|
||||
- ボス
|
||||
- 動物
|
||||
- 不死
|
||||
- 無形
|
||||
- ニューマ可
|
||||
- 天使
|
||||
- ガーディアン
|
||||
- フレイア
|
||||
- ホム
|
||||
- マグロ
|
||||
- もんむす
|
||||
- 剣
|
||||
- 両手
|
||||
- 斧
|
||||
- 槍
|
||||
- 弓
|
||||
- 拳
|
||||
- 本
|
||||
- カタ
|
||||
- 銃
|
||||
- 武器
|
||||
- (親密度補)空
|
||||
- DMG Cap
|
||||
- 眼鏡
|
||||
- パイズリ
|
||||
- 石化殺し
|
||||
- ビッチ
|
||||
- 分からせ
|
||||
- 炎をまとった敵
|
||||
- 凍った敵
|
||||
- 赤い髪
|
||||
- 青い髪
|
||||
- 緑の髪
|
||||
- 金髪
|
||||
- ピュアーズ
|
||||
- Misn
|
||||
- CWGR
|
||||
- Dggy
|
||||
- Plin
|
||||
- Drgn
|
||||
- Hmn
|
||||
- Dmn
|
||||
- Plnt
|
||||
- Aqtc
|
||||
- Inst
|
||||
- Boss
|
||||
- Anml
|
||||
- Undd
|
||||
- Amrp
|
||||
- Pneum
|
||||
- Ancl
|
||||
- Grdn
|
||||
- Frya
|
||||
- Hom
|
||||
- Tuna
|
||||
- MGrl
|
||||
- Swrd
|
||||
- 2Hnd
|
||||
- Axe
|
||||
- Spr
|
||||
- Bow
|
||||
- Fist
|
||||
- Book
|
||||
- Ktr
|
||||
- Gun
|
||||
- Wpn
|
||||
- Emp
|
||||
- DMGC
|
||||
- Glas
|
||||
- Pzri
|
||||
- Ptri
|
||||
- Btch
|
||||
- UKnw
|
||||
- Fire
|
||||
- Frozn
|
||||
- RedH
|
||||
- BluH
|
||||
- GrnH
|
||||
- BldH
|
||||
- Pure
|
||||
- ''
|
||||
- ''
|
||||
- ''
|
||||
|
|
|
|||
Loading…
Reference in a new issue