TL Encycolpedia

This commit is contained in:
DazedAnon 2024-05-30 15:11:25 -05:00
parent 22a6a5986a
commit b03ede44e0
2 changed files with 247 additions and 206 deletions

Binary file not shown.

View file

@ -1,218 +1,259 @@
#==============================================================================
# ■ RGSS3 Item Encyclopedia ver 1.01 Initial Settings
# ■ RGSS3 アイテム図鑑 ver 1.01 初期設定
#------------------------------------------------------------------------------
#  Distribution Source:
#    Shiro no Ma http://izumiwhite.web.fc2.com/
#  配布元:
# 白の魔 http://izumiwhite.web.fc2.com/
#
#  Terms of Use:
#    This can only be used by registered users of RPG Maker VX Ace.
#    No reporting or copyright display is required.
#    Modification is free as you like.
#    We do not take responsibility if any problems occur.
#  利用規約:
# RPGツクールVX Aceの正規の登録者のみご利用になれます。
# 利用報告・著作権表示とかは必要ありません。
# 改造もご自由にどうぞ。
# 何か問題が発生しても責任は持ちません。
#==============================================================================
#-------------------------------------------------------------------------------
# ★ Initial Settings
# ★ 初期設定。
#-------------------------------------------------------------------------------
module WD_itemdictionary_layout
#=== Layout Settings for Each Item ================================================
#=== 各項目のレイアウト設定項目 ================================================
#
#   *_***_display       : Display if true. Hide if false.
#   *_***_display_x     : x-coordinate for display position
#   *_***_display_y     : y-coordinate for display position
#   *_***_display_width : Width of display text
#   *_***_display_text* : Display text
# *_***_display : trueで表示。falseで非表示。
# *_***_display_x : 表示位置のx座標
# *_***_display_y : 表示位置のy座標
# *_***_display_width : 表示テキストの幅
# *_***_display_text* : 表示テキスト
#
#===============================================================================
#===Common Settings for All Encycopedias===========================================
  # Font size
  C_font_size = 20
#===Settings for Item Encyclopedia =================================================
  # Display number
  I_id_display        = true
  I_id_display_x      = 0
  I_id_display_y      = 0
  I_id_display_width  = 60
  I_id_display_digit  = 3 # Number of digits
 
  # Display name
  I_name_display        = true
  I_name_display_x      = 84
  I_name_display_y      = 0
  I_name_display_width  = 172
  # Display price
  I_price_display        = true
  I_price_display_x      = 150
  I_price_display_y      = 32
  I_price_display_width  = 136
  I_price_display_text1  = "Price"
  # Display usable occasions
  I_occasion_display        = true
  I_occasion_display_x      = 0
  I_occasion_display_y      = 62
  I_occasion_display_width  = 140
  I_occasion_display_text1  = "Usage"
  I_occasion_display_text2  = "Anytime"
  I_occasion_display_text3  = "During Battle"
  I_occasion_display_text4  = "While Moving"
  I_occasion_display_text5  = "-"
  # Display if consumable
  I_consumable_display        = true
  I_consumable_display_x      = 150
  I_consumable_display_y      = 62
  I_consumable_display_width  = 140
  I_consumable_display_text1  = "Consumable"
  I_consumable_display_text2  = "Consumable"
  I_consumable_display_text3  = "Non-Consumable"
  # Display features
  I_option_display       = true
  I_option_display_x     = 0
  I_option_display_y     = 92
  I_option_display_width = 286
  I_option_display_text1 = "Features"
  I_option_display_text2 = "None"
#===Settings for Weapon Encyclopedia =================================================
  # Display number
  W_id_display        = true
  W_id_display_x      = 0
  W_id_display_y      = 0
  W_id_display_width  = 60
  W_id_display_digit  = 3 # Number of digits
  # Display name
  W_name_display        = true
  W_name_display_x      = 84
  W_name_display_y      = 0
  W_name_display_width  = 172
  # Display type
  W_type_display        = true
  W_type_display_x      = 0
  W_type_display_y      = 32
  W_type_display_width  = 136
  W_type_display_text1  = "Type"
  # Display price
  W_price_display       = true
  W_price_display_x     = 150
  W_price_display_y     = 32
  W_price_display_width = 136
  W_price_display_text1 = "Price"
  # Display attack power
  W_atk_display         = true
  W_atk_display_x       = 0
  W_atk_display_y       = 62
  W_atk_display_width   = 136
  # Display defense power
  W_def_display         = true
  W_def_display_x       = 150
  W_def_display_y       = 62
  W_def_display_width   = 136
  # Display magical power
  W_mat_display         = true
  W_mat_display_x       = 0
  W_mat_display_y       = 82
  W_mat_display_width   = 136
  # Display magic defense
  W_mdf_display         = true
  W_mdf_display_x       = 150
  W_mdf_display_y       = 82
  W_mdf_display_width   = 136
  # Display agility
  W_agi_display         = true
  W_agi_display_x       = 0
  W_agi_display_y       = 102
  W_agi_display_width   = 136
  # Display luck
  W_luk_display         = true
  W_luk_display_x       = 150
  W_luk_display_y       = 102
  W_luk_display_width   = 136
  # Display maximum HP
  W_mhp_display         = true
  W_mhp_display_x       = 0
  W_mhp_display_y       = 122
  W_mhp_display_width   = 136
  # Display maximum MP
  W_mmp_display         = true
  W_mmp_display_x       = 150
  W_mmp_display_y       = 122
  W_mmp_display_width   = 136
  # Display features
  W_option_display       = true
  W_option_display_x     = 0
  W_option_display_y     = 152
  W_option_display_width = 286
  W_option_display_text1 = "Features"
  W_option_display_text2 = "None"
#===Settings for Armor Encyclopedia =================================================
  # Display number
  A_id_display        = true
  A_id_display_x      = 0
  A_id_display_y      = 0
  A_id_display_width  = 60
  A_id_display_digit  = 3 # Number of digits
  # Display name
  A_name_display        = true
  A_name_display_x      = 84
  A_name_display_y      = 0
  A_name_display_width  = 172
  # Display type
  A_type_display        = true
  A_type_display_x      = 0
  A_type_display_y      = 32
  A_type_display_width  = 136
  A_type_display_text1  = "Type"
  # Display price
  A_price_display       = true
  A_price_display_x     = 150
  A_price_display_y     = 32
  A_price_display_width = 136
  A_price_display_text1 = "Price"
  # Display attack power
  A_atk_display         = true
  A_atk_display_x       = 0
  A_atk_display_y       = 62
  A_atk_display_width   = 136
  # Display defense power
  A_def_display         = true
  A_def_display_x       = 150
  A_def_display_y       = 62
  A_def_display_width   = 136
  # Display magical power
  A_mat_display         = true
  A_mat_display_x       = 0
  A_mat_display_y       = 82
  A_mat_display_width   = 136
  # Display magic defense
  A_mdf_display         = true
  A_mdf_display_x       = 150
  A_mdf_display_y       = 82
  A_mdf_display_width   = 136
  # Display agility
  A_agi_display         = true
  A_agi_display_x       = 0
  A_agi_display_y       = 102
  A_agi_display_width   = 136
  # Display luck
  A_luk_display         = true
  A_luk_display_x       = 150
  A_luk_display_y       = 102
  A_luk_display_width   = 136
  # Display maximum HP
  A_mhp_display         = true
  A_mhp_display_x       = 0
  A_mhp_display_y       = 122
  A_mhp_display_width   = 136
  # Display maximum MP
  A_mmp_display         = true
  A_mmp_display_x       = 150
  A_mmp_display_y       = 122
  A_mmp_display_width   = 136
  # Display features
  A_option_display       = true
  A_option_display_x     = 0
  A_option_display_y     = 152
  A_option_display_width = 286
  A_option_display_text1 = "Features"
  A_option_display_text2 = "None"
#===全図鑑共通設定==============================================================
#フォントサイズ
C_font_size = 20
#===道具図鑑設定================================================================
#番号の表示
I_id_display = true
I_id_display_x = 0
I_id_display_y = 0
I_id_display_width = 60
I_id_display_digit = 3 #桁数
#名前の表示
I_name_display = true
I_name_display_x = 84
I_name_display_y = 0
I_name_display_width = 172
#価格の表示
I_price_display = true
I_price_display_x = 150
I_price_display_y = 32
I_price_display_width = 136
I_price_display_text1 = "Price"
#使用可能時の表示
I_occasion_display = true
I_occasion_display_x = 0
I_occasion_display_y = 62
I_occasion_display_width = 140
I_occasion_display_text1 = "Usage"
I_occasion_display_text2 = "Anytime"
I_occasion_display_text3 = "During Battle"
I_occasion_display_text4 = "Moving"
I_occasion_display_text5 = ""
#消耗の表示
I_consumable_display = true
I_consumable_display_x = 150
I_consumable_display_y = 62
I_consumable_display_width = 140
I_consumable_display_text1 = "Consumable"
I_consumable_display_text2 = "Consumable"
I_consumable_display_text3 = "Non-Consumable"
#特徴の表示
I_option_display = true
I_option_display_x = 0
I_option_display_y = 92
I_option_display_width = 286
I_option_display_text1 = "Features"
I_option_display_text2 = "None"
#===武器図鑑設定================================================================
#番号の表示
W_id_display = true
W_id_display_x = 0
W_id_display_y = 0
W_id_display_width = 60
W_id_display_digit = 3 #桁数
#名前の表示
W_name_display = true
W_name_display_x = 84
W_name_display_y = 0
W_name_display_width = 172
#タイプの表示
W_type_display = true
W_type_display_x = 0
W_type_display_y = 32
W_type_display_width = 136
W_type_display_text1 = "Features"
#価格の表示
W_price_display = true
W_price_display_x = 150
W_price_display_y = 32
W_price_display_width = 136
W_price_display_text1 = "Price"
#攻撃力の表示
W_atk_display = true
W_atk_display_x = 0
W_atk_display_y = 62
W_atk_display_width = 136
#防御力の表示
W_def_display = true
W_def_display_x = 150
W_def_display_y = 62
W_def_display_width = 136
#魔法力の表示
W_mat_display = true
W_mat_display_x = 0
W_mat_display_y = 82
W_mat_display_width = 136
#魔法防御の表示
W_mdf_display = true
W_mdf_display_x = 150
W_mdf_display_y = 82
W_mdf_display_width = 136
#敏捷性の表示
W_agi_display = true
W_agi_display_x = 0
W_agi_display_y = 102
W_agi_display_width = 136
#運の表示
W_luk_display = true
W_luk_display_x = 150
W_luk_display_y = 102
W_luk_display_width = 136
#最大HPの表示
W_mhp_display = true
W_mhp_display_x = 0
W_mhp_display_y = 122
W_mhp_display_width = 136
#最大MPの表示
W_mmp_display = true
W_mmp_display_x = 150
W_mmp_display_y = 122
W_mmp_display_width = 136
#特徴の表示
W_option_display = true
W_option_display_x = 0
W_option_display_y = 152
W_option_display_width = 286
W_option_display_text1 = "Features"
W_option_display_text2 = "None"
#===防具図鑑設定================================================================
#番号の表示
A_id_display = true
A_id_display_x = 0
A_id_display_y = 0
A_id_display_width = 60
A_id_display_digit = 3 #桁数
#名前の表示
A_name_display = true
A_name_display_x = 84
A_name_display_y = 0
A_name_display_width = 172
#タイプの表示
A_type_display = true
A_type_display_x = 0
A_type_display_y = 32
A_type_display_width = 136
A_type_display_text1 = "Type"
#価格の表示
A_price_display = true
A_price_display_x = 150
A_price_display_y = 32
A_price_display_width = 136
A_price_display_text1 = "Price"
#攻撃力の表示
A_atk_display = true
A_atk_display_x = 0
A_atk_display_y = 62
A_atk_display_width = 136
#防御力の表示
A_def_display = true
A_def_display_x = 150
A_def_display_y = 62
A_def_display_width = 136
#魔法力の表示
A_mat_display = true
A_mat_display_x = 0
A_mat_display_y = 82
A_mat_display_width = 136
#魔法防御の表示
A_mdf_display = true
A_mdf_display_x = 150
A_mdf_display_y = 82
A_mdf_display_width = 136
#敏捷性の表示
A_agi_display = true
A_agi_display_x = 0
A_agi_display_y = 102
A_agi_display_width = 136
#運の表示
A_luk_display = true
A_luk_display_x = 150
A_luk_display_y = 102
A_luk_display_width = 136
#最大HPの表示
A_mhp_display = true
A_mhp_display_x = 0
A_mhp_display_y = 122
A_mhp_display_width = 136
#最大MPの表示
A_mmp_display = true
A_mmp_display_x = 150
A_mmp_display_y = 122
A_mmp_display_width = 136
#特徴の表示
A_option_display = true
A_option_display_x = 0
A_option_display_y = 152
A_option_display_width = 286
A_option_display_text1 = "Features"
A_option_display_text2 = "None"
end
#-------------------------------------------------------------------------------
# ★ End of Initial Settings
#-------------------------------------------------------------------------------
# ★ 初期設定おわり
#-------------------------------------------------------------------------------