Project1

标题: 兩個裝飾品 [打印本页]

作者: win21123    时间: 2010-7-19 18:51
标题: 兩個裝飾品
怎可裝備兩個裝飾品??
作者: 学徒    时间: 2010-7-19 18:58
提示: 作者被禁止或删除 内容自动屏蔽
作者: 小幽的马甲    时间: 2010-7-19 19:14
不修改默认脚本的话只能牺牲一个防具位置来换成装饰品了……(数据库里改用语)
或者可以通过添加脚本来实现
作者: 负零    时间: 2010-7-19 20:23
本帖最后由 负零 于 2010-7-19 20:25 编辑

装20个好不好...??
  1. #_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
  2. #_/    ◆ 装備拡張 - KGC_EquipExtension ◆ VX ◆
  3. #_/    ◇ Last update : 2009/08/18 ◇
  4. #_/----------------------------------------------------------------------------
  5. #_/  装備関連の機能を拡張します。
  6. #_/============================================================================
  7. #_/ 【メニュー】≪拡張装備画面≫ より下に導入してください。
  8. #_/ 【スキル】≪パッシブスキル≫ より上に導入してください。
  9. #_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

  10. #==============================================================================
  11. # ★ カスタマイズ項目 - Customize ★
  12. #==============================================================================

  13. module KGC
  14. module EquipExtension
  15.   # ◆ 拡張装備種別
  16.   #  先頭から順に 4, 5, 6, ... が割り当てられる。
  17.   EXTRA_EQUIP_KIND = ["足", "技能書"]

  18.   # ◆ 装備箇所リスト
  19.   #  武器の後に、ここで指定した順番で並ぶ。
  20.   #  ※ 装備箇所が最低一つないと、二刀流がバグる可能性があります。
  21.   #   ** 装備種別一覧 **
  22.   #  0..盾  1..頭  2..身体  3..装飾品  4~..↑で定義
  23.   EQUIP_TYPE = [0, 1, 2, 4, 3, 3, 5]

  24.   # ◆ EP (Equip Point) 制を使用する
  25.   #  true  : EP で装備品を制限。
  26.   #  false : 通常の装備システム。
  27.   USE_EP_SYSTEM  = true
  28.   # ◆ EP の名前
  29.   VOCAB_EP       = "EP"
  30.   # ◆ EP の名前 (略)
  31.   VOCAB_EP_A     = "E"
  32.   # ◆ ステータス画面に EP を表示する
  33.   SHOW_STATUS_EP = true

  34.   # ◆ 消費 EP 既定値
  35.   #  消費 EP が指定されていない装備品で使用。
  36.   DEFAULT_EP_COST   = 1
  37.   # ◆ 消費 EP 0 は表示しない
  38.   HIDE_ZERO_EP_COST = true

  39.   # ◆ EP 上限
  40.   EP_MAX = 20
  41.   # ◆ EP 下限
  42.   EP_MIN = 5
  43.   # ◆ 最大 EP 算出式
  44.   #   level..アクターのレベル
  45.   #  自動的に整数変換されるので、結果が小数になってもOK。
  46.   EP_CALC_EXP = "level * 0.3 + 4"
  47.   # ◆ アクター毎の最大 EP 算出式
  48.   PERSONAL_EP_CALC_EXP = []
  49.   #  ここから下に、アクターごとの最大 EP を
  50.   #   PERSONAL_EP_CALC_EXP[アクター ID] = "計算式"
  51.   #  という書式で指定。
  52.   #  計算式は EP_CALC_EXP と同様の書式。
  53.   #  指定しなかったアクターは EP_CALC_EXP を使用。
  54.   #   <例> ラルフだけ優遇
  55.   # PERSONAL_EP_CALC_EXP[1] = "level * 0.5 + 5"

  56.   # ◆ 消費 EP 値の色 (アイテム名の末尾に付く数値)
  57.   #  数値  : \C[n] と同じ色。
  58.   #  Color : 指定した色。 ( Color.new(128, 255, 255) など )
  59.   EP_COST_COLOR        = 23
  60.   # ◆ EP ゲージの色
  61.   EP_GAUGE_START_COLOR = 28  # 開始色
  62.   EP_GAUGE_END_COLOR   = 29  # 終了色

  63.   # ◆ EP ゲージに汎用ゲージを使用する
  64.   #  ≪汎用ゲージ描画≫ 導入時のみ有効。
  65.   ENABLE_GENERIC_GAUGE = true
  66.   # ◆ EP ゲージ設定
  67.   #  画像は "Graphics/System" から読み込む。
  68.   GAUGE_IMAGE  = "GaugeEP"  # 画像
  69.   GAUGE_OFFSET = [-23, -2]  # 位置補正 [x, y]
  70.   GAUGE_LENGTH = -4         # 長さ補正
  71.   GAUGE_SLOPE  = 30         # 傾き (-89 ~ 89)
  72. end
  73. end

  74. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  75. $imported = {} if $imported == nil
  76. $imported["EquipExtension"] = true

  77. module KGC::EquipExtension
  78.   # EP 制を使用しない場合の設定
  79.   unless USE_EP_SYSTEM
  80.     SHOW_STATUS_EP = false
  81.     HIDE_ZERO_EP_COST = true
  82.   end

  83.   # 正規表現
  84.   module Regexp
  85.     # ベースアイテム
  86.     module BaseItem
  87.       # 消費 EP
  88.       EP_COST = /<EP\s*(\d+)>/i
  89.       # 装備タイプ
  90.       EQUIP_TYPE = /<(?:EQUIP_TYPE|装備タイプ)\s*(\d+(?:\s*,\s*\d+)*)>/
  91.     end

  92.     # 防具
  93.     module Armor
  94.       # 装備種別
  95.       EQUIP_KIND = /<(?:EQUIP_KIND|装備種別)\s*(.+)>/i
  96.     end
  97.   end
  98. end

  99. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  100. #==============================================================================
  101. # □ KGC::Commands
  102. #==============================================================================

  103. module KGC
  104. module Commands
  105.   module_function
  106.   #--------------------------------------------------------------------------
  107.   # ○ アクターの装備を修復
  108.   #--------------------------------------------------------------------------
  109.   def restore_equip
  110.     (1...$data_actors.size).each { |i|
  111.       actor = $game_actors[i]
  112.       actor.restore_equip
  113.     }
  114.   end
  115.   #--------------------------------------------------------------------------
  116.   # ○ アクターの装備タイプを設定
  117.   #     actor_id   : アクター ID
  118.   #     equip_type : 装備タイプ
  119.   #--------------------------------------------------------------------------
  120.   def set_actor_equip_type(actor_id, equip_type = nil)
  121.     actor = $game_actors[actor_id]
  122.     return if actor == nil
  123.     actor.equip_type = equip_type
  124.   end
  125.   #--------------------------------------------------------------------------
  126.   # ○ アクターの MaxEP 補正値の取得
  127.   #     actor_id    : アクター ID
  128.   #     variable_id : 取得した値を代入する変数の ID
  129.   #--------------------------------------------------------------------------
  130.   def get_actor_own_ep(actor_id, variable_id = 0)
  131.     value = $game_actors[actor_id].maxep_plus
  132.     $game_variables[variable_id] = value if variable_id > 0
  133.     return value
  134.   end
  135.   #--------------------------------------------------------------------------
  136.   # ○ アクターの MaxEP 補正値の変更
  137.   #     actor_id : アクター ID
  138.   #     value    : MaxEP 補正値
  139.   #--------------------------------------------------------------------------
  140.   def set_actor_own_ep(actor_id, value)
  141.     $game_actors[actor_id].maxep_plus = value
  142.   end
  143.   #--------------------------------------------------------------------------
  144.   # ○ アクターの MaxEP 補正値の増加
  145.   #     actor_id : アクター ID
  146.   #     value    : 増加量
  147.   #--------------------------------------------------------------------------
  148.   def gain_actor_ep(actor_id, value)
  149.     $game_actors[actor_id].maxep_plus += value
  150.   end
  151.   #--------------------------------------------------------------------------
  152.   # ○ アクターの装備を変更
  153.   #     actor_id   : アクター ID
  154.   #     index      : 装備部位 (0~)
  155.   #     item_id    : 武器 or 防具 ID (0 で解除)
  156.   #     force_gain : 未所持なら取得 (true or false)
  157.   #--------------------------------------------------------------------------
  158.   def change_actor_equipment(actor_id, index, item_id, force_gain = false)
  159.     actor = $game_actors[actor_id]
  160.     return if actor == nil

  161.     item = (index == 0 ? $data_weapons[item_id] : $data_armors[item_id])
  162.     if actor.two_swords_style && index == 1
  163.       item = $data_weapons[item_id]
  164.     end
  165.     if force_gain && $game_party.item_number(item) == 0
  166.       $game_party.gain_item(item, 1)
  167.     end
  168.     actor.change_equip_by_id(index, item_id)
  169.   end
  170. end
  171. end

  172. class Game_Interpreter
  173.   include KGC::Commands
  174. end

  175. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  176. #==============================================================================
  177. # ■ Vocab
  178. #==============================================================================

  179. module Vocab
  180.   # EP
  181.   def self.ep
  182.     return KGC::EquipExtension::VOCAB_EP
  183.   end

  184.   # EP (略)
  185.   def self.ep_a
  186.     return KGC::EquipExtension::VOCAB_EP_A
  187.   end

  188.   # 拡張防具欄
  189.   def self.extra_armor(index)
  190.     return KGC::EquipExtension::EXTRA_EQUIP_KIND[index]
  191.   end
  192. end

  193. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  194. #==============================================================================
  195. # ■ RPG::BaseItem
  196. #==============================================================================

  197. class RPG::BaseItem
  198.   #--------------------------------------------------------------------------
  199.   # ○ 装備拡張のキャッシュを作成
  200.   #--------------------------------------------------------------------------
  201.   def create_equip_extension_cache
  202.     @__ep_cost = KGC::EquipExtension::DEFAULT_EP_COST
  203.     @__equip_type = []

  204.     self.note.each_line { |line|
  205.       case line
  206.       when KGC::EquipExtension::Regexp::BaseItem::EP_COST
  207.         # 消費 EP
  208.         @__ep_cost = $1.to_i
  209.       when KGC::EquipExtension::Regexp::BaseItem::EQUIP_TYPE
  210.         # 装備タイプ
  211.         @__equip_type = []
  212.         $1.scan(/\d+/) { |num|
  213.           @__equip_type << num.to_i
  214.         }
  215.       end
  216.     }

  217.     # EP 制を使用しない場合は消費 EP = 0
  218.     @__ep_cost = 0 unless KGC::EquipExtension::USE_EP_SYSTEM
  219.   end
  220.   #--------------------------------------------------------------------------
  221.   # ○ 消費 EP
  222.   #--------------------------------------------------------------------------
  223.   def ep_cost
  224.     create_equip_extension_cache if @__ep_cost == nil
  225.     return @__ep_cost
  226.   end
  227.   #--------------------------------------------------------------------------
  228.   # ○ 装備タイプ
  229.   #--------------------------------------------------------------------------
  230.   def equip_type
  231.     create_equip_extension_cache if @__equip_type == nil
  232.     return @__equip_type
  233.   end
  234. end

  235. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  236. #==============================================================================
  237. # ■ RPG::Armor
  238. #==============================================================================

  239. class RPG::Armor < RPG::BaseItem
  240.   #--------------------------------------------------------------------------
  241.   # ○ 装備拡張のキャッシュを作成
  242.   #--------------------------------------------------------------------------
  243.   def create_equip_extension_cache
  244.     super
  245.     @__kind = -1

  246.     self.note.each_line { |line|
  247.       if line =~ KGC::EquipExtension::Regexp::Armor::EQUIP_KIND
  248.         # 装備種別
  249.         e_index = KGC::EquipExtension::EXTRA_EQUIP_KIND.index($1)
  250.         next if e_index == nil
  251.         @__kind = e_index + 4
  252.       end
  253.     }
  254.   end
  255.   #--------------------------------------------------------------------------
  256.   # ○ 種別
  257.   #--------------------------------------------------------------------------
  258.   unless method_defined?(:kind_KGC_EquipExtension)
  259.     alias kind_KGC_EquipExtension kind
  260.   end
  261.   def kind
  262.     create_equip_extension_cache if @__kind == nil
  263.     return (@__kind == -1 ? kind_KGC_EquipExtension : @__kind)
  264.   end
  265. end

  266. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  267. #==============================================================================
  268. # ■ Game_Actor
  269. #==============================================================================

  270. class Game_Actor < Game_Battler
  271.   #--------------------------------------------------------------------------
  272.   # ● 公開インスタンス変数
  273.   #--------------------------------------------------------------------------
  274.   attr_writer   :equip_type               # 装備タイプ
  275.   attr_writer   :maxep_plus               # MaxEP 補正値
  276.   #--------------------------------------------------------------------------
  277.   # ● セットアップ
  278.   #     actor_id : アクター ID
  279.   #--------------------------------------------------------------------------
  280.   alias setup_KGC_EquipExtension setup
  281.   def setup(actor_id)
  282.     actor = $data_actors[actor_id]
  283.     @extra_armor_id = []

  284.     setup_KGC_EquipExtension(actor_id)

  285.     @__last_equip_type = nil
  286.     restore_equip
  287.   end
  288.   #--------------------------------------------------------------------------
  289.   # ○ MaxEP 取得
  290.   #--------------------------------------------------------------------------
  291.   def maxep
  292.     calc_exp = KGC::EquipExtension::PERSONAL_EP_CALC_EXP[self.id]
  293.     if calc_exp == nil
  294.       calc_exp = KGC::EquipExtension::EP_CALC_EXP
  295.     end
  296.     n = Integer(eval(calc_exp)) + maxep_plus
  297.     return [[n, ep_limit].min, KGC::EquipExtension::EP_MIN].max
  298.   end
  299.   #--------------------------------------------------------------------------
  300.   # ○ EP 取得
  301.   #--------------------------------------------------------------------------
  302.   def ep
  303.     n = 0
  304.     equips.compact.each { |item| n += item.ep_cost }
  305.     return [maxep - n, 0].max
  306.   end
  307.   #--------------------------------------------------------------------------
  308.   # ○ EP 上限取得
  309.   #--------------------------------------------------------------------------
  310.   def ep_limit
  311.     return KGC::EquipExtension::EP_MAX
  312.   end
  313.   #--------------------------------------------------------------------------
  314.   # ○ MaxEP 補正値取得
  315.   #--------------------------------------------------------------------------
  316.   def maxep_plus
  317.     @maxep_plus = 0 if @maxep_plus == nil
  318.     return @maxep_plus
  319.   end
  320.   #--------------------------------------------------------------------------
  321.   # ○ 防具欄の取得
  322.   #--------------------------------------------------------------------------
  323.   def equip_type
  324.     if @equip_type.is_a?(Array)
  325.       return @equip_type
  326.     else
  327.       return KGC::EquipExtension::EQUIP_TYPE
  328.     end
  329.   end
  330.   #--------------------------------------------------------------------------
  331.   # ○ 防具欄の数
  332.   #--------------------------------------------------------------------------
  333.   def armor_number
  334.     return equip_type.size
  335.   end
  336.   #--------------------------------------------------------------------------
  337.   # ○ 拡張防具欄の数
  338.   #--------------------------------------------------------------------------
  339.   def extra_armor_number
  340.     return [armor_number - 4, 0].max
  341.   end
  342.   #--------------------------------------------------------------------------
  343.   # ○ 防具 ID リストの取得
  344.   #--------------------------------------------------------------------------
  345.   def extra_armor_id
  346.     @extra_armor_id = [] if @extra_armor_id == nil
  347.     return @extra_armor_id
  348.   end
  349.   #--------------------------------------------------------------------------
  350.   # ● 防具オブジェクトの配列取得
  351.   #--------------------------------------------------------------------------
  352.   alias armors_KGC_EquipExtension armors
  353.   def armors
  354.     result = armors_KGC_EquipExtension

  355.     # 5番目以降の防具を追加
  356.     extra_armor_number.times { |i|
  357.       armor_id = extra_armor_id[i]
  358.       result << (armor_id == nil ? nil : $data_armors[armor_id])
  359.     }
  360.     return result
  361.   end
  362.   #--------------------------------------------------------------------------
  363.   # ● 装備の変更 (オブジェクトで指定)
  364.   #     equip_type : 装備部位
  365.   #     item       : 武器 or 防具 (nil なら装備解除)
  366.   #     test       : テストフラグ (戦闘テスト、または装備画面での一時装備)
  367.   #--------------------------------------------------------------------------
  368.   alias change_equip_KGC_EquipExtension change_equip
  369.   def change_equip(equip_type, item, test = false)
  370.     n = (item != nil ? $game_party.item_number(item) : 0)

  371.     change_equip_KGC_EquipExtension(equip_type, item, test)

  372.     # 拡張防具欄がある場合のみ
  373.     if extra_armor_number > 0 && (item == nil || n > 0)
  374.       item_id = item == nil ? 0 : item.id
  375.       case equip_type
  376.       when 5..armor_number  # 拡張防具欄
  377.         @extra_armor_id = [] if @extra_armor_id == nil
  378.         @extra_armor_id[equip_type - 5] = item_id
  379.       end
  380.     end

  381.     restore_battle_skill if $imported["SkillCPSystem"]
  382.   end
  383.   #--------------------------------------------------------------------------
  384.   # ● 装備の破棄
  385.   #     item : 破棄する武器 or 防具
  386.   #    武器/防具の増減で「装備品も含める」のとき使用する。
  387.   #--------------------------------------------------------------------------
  388.   alias discard_equip_KGC_EquipExtension discard_equip
  389.   def discard_equip(item)
  390.     last_armors = [@armor1_id, @armor2_id, @armor3_id, @armor4_id]

  391.     discard_equip_KGC_EquipExtension(item)

  392.     curr_armors = [@armor1_id, @armor2_id, @armor3_id, @armor4_id]
  393.     return unless item.is_a?(RPG::Armor)  # 防具でない
  394.     return if last_armors != curr_armors  # 既に破棄された

  395.     # 拡張防具欄を検索
  396.     extra_armor_number.times { |i|
  397.       if extra_armor_id[i] == item.id
  398.         @extra_armor_id[i] = 0
  399.         break
  400.       end
  401.     }

  402.     restore_battle_skill if $imported["SkillCPSystem"]
  403.   end
  404.   #--------------------------------------------------------------------------
  405.   # ● 職業 ID の変更
  406.   #     class_id : 新しい職業 ID
  407.   #--------------------------------------------------------------------------
  408.   alias class_id_equal_KGC_EquipExtension class_id=
  409.   def class_id=(class_id)
  410.     class_id_equal_KGC_EquipExtension(class_id)

  411.     return if extra_armor_number == 0  # 拡張防具欄がない

  412.     # 装備できない拡張防具を外す
  413.     for i in 5..armor_number
  414.       change_equip(i, nil) unless equippable?(equips[i])
  415.     end
  416.   end
  417.   #--------------------------------------------------------------------------
  418.   # ○ EP 条件クリア判定
  419.   #     equip_type : 装備部位
  420.   #     item       : 武器 or 防具
  421.   #--------------------------------------------------------------------------
  422.   def ep_condition_clear?(equip_type, item)
  423.     return true if item == nil  # nil は解除なので OK

  424.     curr_item = equips[equip_type]
  425.     offset = (curr_item != nil ? curr_item.ep_cost : 0)
  426.     return false if self.ep < (item.ep_cost - offset)   # EP 不足

  427.     return true
  428.   end
  429.   #--------------------------------------------------------------------------
  430.   # ○ 装備を修復
  431.   #--------------------------------------------------------------------------
  432.   def restore_equip
  433.     return if @__last_equip_type == equip_type

  434.     # 以前の装備品・パラメータを退避
  435.     last_equips = equips
  436.     last_hp = self.hp
  437.     last_mp = self.mp
  438.     if $imported["SkillCPSystem"]
  439.       last_battle_skill_ids = battle_skill_ids.clone
  440.     end

  441.     # パッシブスキルの更新を止める
  442.     if $imported["PassiveSkill"]
  443.       @__passive_rev_restoring = true
  444.     end

  445.     # 全装備解除
  446.     last_equips.each_index { |i| change_equip(i, nil) }

  447.     # 装備品・パラメータを復元
  448.     last_equips.compact.each { |item| equip_legal_slot(item) }
  449.     self.hp = last_hp
  450.     self.mp = last_mp
  451.     if $imported["SkillCPSystem"]
  452.       last_battle_skill_ids.each_with_index { |s, i| set_battle_skill(i, s) }
  453.     end
  454.     @__last_equip_type = equip_type.clone

  455.     # パッシブスキルを修復
  456.     if $imported["PassiveSkill"]
  457.       @__passive_rev_restoring = false
  458.       restore_passive_rev
  459.     end

  460.     Graphics.frame_reset
  461.   end
  462.   #--------------------------------------------------------------------------
  463.   # ○ 装備品を正しい箇所にセット
  464.   #     item : 武器 or 防具
  465.   #--------------------------------------------------------------------------
  466.   def equip_legal_slot(item)
  467.     if item.is_a?(RPG::Weapon)
  468.       if @weapon_id == 0
  469.         # 武器 1
  470.         change_equip(0, item)
  471.       elsif two_swords_style && @armor1_id == 0
  472.         # 武器 2 (二刀流の場合)
  473.         change_equip(1, item)
  474.       end
  475.     elsif item.is_a?(RPG::Armor)
  476.       if !two_swords_style && item.kind == equip_type[0] && @armor1_id == 0
  477.         # 先頭の防具 (二刀流でない場合)
  478.         change_equip(1, item)
  479.       else
  480.         # 装備箇所リストを作成
  481.         list = [-1, @armor2_id, @armor3_id, @armor4_id]
  482.         list += extra_armor_id
  483.         # 正しい、かつ空いている箇所にセット
  484.         equip_type.each_with_index { |kind, i|
  485.           if kind == item.kind && list[i] == 0
  486.             change_equip(i + 1, item)
  487.             break
  488.           end
  489.         }
  490.       end
  491.     end
  492.   end
  493. end

  494. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  495. #==============================================================================
  496. # ■ Window_Base
  497. #==============================================================================

  498. class Window_Base < Window
  499.   #--------------------------------------------------------------------------
  500.   # ○ EP の文字色を取得
  501.   #     actor : アクター
  502.   #--------------------------------------------------------------------------
  503.   def ep_color(actor)
  504.     return knockout_color if actor.maxep > 0 && actor.ep == 0
  505.     return normal_color
  506.   end
  507.   #--------------------------------------------------------------------------
  508.   # ○ EP ゲージの色 1 の取得
  509.   #--------------------------------------------------------------------------
  510.   def ep_gauge_color1
  511.     color = KGC::EquipExtension::EP_GAUGE_START_COLOR
  512.     return (color.is_a?(Integer) ? text_color(color) : color)
  513.   end
  514.   #--------------------------------------------------------------------------
  515.   # ○ EP ゲージの色 2 の取得
  516.   #--------------------------------------------------------------------------
  517.   def ep_gauge_color2
  518.     color = KGC::EquipExtension::EP_GAUGE_END_COLOR
  519.     return (color.is_a?(Integer) ? text_color(color) : color)
  520.   end
  521.   #--------------------------------------------------------------------------
  522.   # ○ EP の描画
  523.   #     actor : アクター
  524.   #     x     : 描画先 X 座標
  525.   #     y     : 描画先 Y 座標
  526.   #     width : 幅
  527.   #--------------------------------------------------------------------------
  528.   def draw_actor_ep(actor, x, y, width = 120)
  529.     draw_actor_ep_gauge(actor, x, y, width)
  530.     self.contents.font.color = system_color
  531.     self.contents.draw_text(x, y, 30, WLH, Vocab::ep_a)
  532.     self.contents.font.color = ep_color(actor)
  533.     xr = x + width
  534.     if width < 120
  535.       self.contents.draw_text(xr - 40, y, 40, WLH, actor.ep, 2)
  536.     else
  537.       self.contents.draw_text(xr - 90, y, 40, WLH, actor.ep, 2)
  538.       self.contents.font.color = normal_color
  539.       self.contents.draw_text(xr - 50, y, 10, WLH, "/", 2)
  540.       self.contents.draw_text(xr - 40, y, 40, WLH, actor.maxep, 2)
  541.     end
  542.     self.contents.font.color = normal_color
  543.   end
  544.   #--------------------------------------------------------------------------
  545.   # ○ EP ゲージの描画
  546.   #     actor : アクター
  547.   #     x     : 描画先 X 座標
  548.   #     y     : 描画先 Y 座標
  549.   #     width : 幅
  550.   #--------------------------------------------------------------------------
  551.   def draw_actor_ep_gauge(actor, x, y, width = 120)
  552.     if KGC::EquipExtension::ENABLE_GENERIC_GAUGE && $imported["GenericGauge"]
  553.       # 汎用ゲージ
  554.       draw_gauge(KGC::EquipExtension::GAUGE_IMAGE,
  555.         x, y, width, actor.ep, [actor.maxep, 1].max,
  556.         KGC::EquipExtension::GAUGE_OFFSET,
  557.         KGC::EquipExtension::GAUGE_LENGTH,
  558.         KGC::EquipExtension::GAUGE_SLOPE)
  559.     else
  560.       # デフォルトゲージ
  561.       gw = width * actor.ep / [actor.maxep, 1].max
  562.       gc1 = ep_gauge_color1
  563.       gc2 = ep_gauge_color2
  564.       self.contents.fill_rect(x, y + WLH - 8, width, 6, gauge_back_color)
  565.       self.contents.gradient_fill_rect(x, y + WLH - 8, gw, 6, gc1, gc2)
  566.     end
  567.   end
  568.   #--------------------------------------------------------------------------
  569.   # ○ 消費 EP の描画
  570.   #     item    : 武器 or 防具
  571.   #     rect    : 描画する領域
  572.   #     enabled : 許可状態
  573.   #--------------------------------------------------------------------------
  574.   def draw_equipment_ep_cost(item, rect, enabled = true)
  575.     return if item == nil
  576.     # 消費 EP 0 を表示しない場合
  577.     return if KGC::EquipExtension::HIDE_ZERO_EP_COST && item.ep_cost == 0

  578.     color = KGC::EquipExtension::EP_COST_COLOR
  579.     self.contents.font.color = (color.is_a?(Integer) ?
  580.       text_color(color) : color)
  581.     self.contents.font.color.alpha = enabled ? 255 : 128
  582.     self.contents.draw_text(rect, item.ep_cost, 2)
  583.   end
  584. end

  585. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  586. #==============================================================================
  587. # ■ Window_Equip
  588. #==============================================================================

  589. class Window_Equip < Window_Selectable
  590.   #--------------------------------------------------------------------------
  591.   # ● リフレッシュ
  592.   #--------------------------------------------------------------------------
  593.   def refresh
  594.     self.contents.clear
  595.     @data = @actor.equips.clone
  596.     @item_max = [@data.size, @actor.armor_number + 1].min
  597.     create_contents

  598.     # 装備箇所を描画
  599.     self.contents.font.color = system_color
  600.     if @actor.two_swords_style
  601.       self.contents.draw_text(4,       0, 92, WLH, Vocab::weapon1)
  602.       self.contents.draw_text(4, WLH * 1, 92, WLH, Vocab::weapon2)
  603.     else
  604.       self.contents.draw_text(4,       0, 92, WLH, Vocab::weapon)
  605.       name = armor_slot_name(@actor.equip_type[0])
  606.       self.contents.draw_text(4, WLH * 1, 92, WLH, name)
  607.     end
  608.     for i in [email protected]_number
  609.       name = armor_slot_name(@actor.equip_type[i])
  610.       self.contents.draw_text(4, WLH * (i + 1), 92, WLH, name)
  611.     end

  612.     # 装備品を描画
  613.     rect = Rect.new(92, 0, self.width - 128, WLH)
  614.     @item_max.times { |i|
  615.       rect.y = WLH * i
  616.       draw_item_name(@data[i], rect.x, rect.y)
  617.       draw_equipment_ep_cost(@data[i], rect)
  618.     }
  619.   end
  620.   #--------------------------------------------------------------------------
  621.   # ○ 防具欄の名称を取得
  622.   #     kind : 種別
  623.   #--------------------------------------------------------------------------
  624.   def armor_slot_name(kind)
  625.     case kind
  626.     when 0..3
  627.       return eval("Vocab.armor#{kind + 1}")
  628.     else
  629.       return Vocab.extra_armor(kind - 4)
  630.     end
  631.   end

  632. unless $imported["ExtendedEquipScene"]
  633.   #--------------------------------------------------------------------------
  634.   # ● カーソルを 1 ページ後ろに移動
  635.   #--------------------------------------------------------------------------
  636.   def cursor_pagedown
  637.     return if Input.repeat?(Input::R)
  638.     super
  639.   end
  640.   #--------------------------------------------------------------------------
  641.   # ● カーソルを 1 ページ前に移動
  642.   #--------------------------------------------------------------------------
  643.   def cursor_pageup
  644.     return if Input.repeat?(Input::L)
  645.     super
  646.   end
  647.   #--------------------------------------------------------------------------
  648.   # ● フレーム更新
  649.   #--------------------------------------------------------------------------
  650.   def update
  651.     super
  652.     return unless self.active

  653.     if Input.repeat?(Input::RIGHT)
  654.       cursor_pagedown
  655.     elsif Input.repeat?(Input::LEFT)
  656.       cursor_pageup
  657.     end
  658.   end
  659. end

  660. end

  661. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  662. #==============================================================================
  663. # ■ Window_EquipItem
  664. #==============================================================================

  665. class Window_EquipItem < Window_Item
  666.   #--------------------------------------------------------------------------
  667.   # ● リフレッシュ
  668.   #--------------------------------------------------------------------------
  669.   def refresh
  670.     @item_enabled = []
  671.     super
  672.     @data.each { |item| @item_enabled << enable?(item) }
  673.   end
  674.   #--------------------------------------------------------------------------
  675.   # ● アイテムをリストに含めるかどうか
  676.   #     item : アイテム
  677.   #--------------------------------------------------------------------------
  678.   def include?(item)
  679.     return true if item == nil
  680.     if @equip_type == 0
  681.       return false unless item.is_a?(RPG::Weapon)
  682.     else
  683.       return false unless item.is_a?(RPG::Armor)
  684.       return false unless item.kind == @equip_type - 1
  685.     end
  686.     return @actor.equippable?(item)
  687.   end
  688.   #--------------------------------------------------------------------------
  689.   # ● アイテムを許可状態で表示するかどうか
  690.   #     item : アイテム
  691.   #--------------------------------------------------------------------------
  692.   def enable?(item)
  693.     return false unless @actor.equippable?(item)                      # 装備不可
  694.     return false unless @actor.ep_condition_clear?(@equip_type, item)  # EP 不足

  695.     return true
  696.   end
  697.   #--------------------------------------------------------------------------
  698.   # ● 項目の描画
  699.   #     index : 項目番号
  700.   #--------------------------------------------------------------------------
  701.   def draw_item(index)
  702.     super(index)   
  703.     rect = item_rect(index)
  704.     item = @data[index]

  705.     # 個数表示分の幅を削る
  706.     cw = self.contents.text_size(sprintf(":%2d", 0)).width
  707.     rect.width -= cw + 4
  708.     draw_equipment_ep_cost(item, rect, enable?(item))
  709.   end
  710.   #--------------------------------------------------------------------------
  711.   # ○ 簡易リフレッシュ
  712.   #     equip_type : 装備部位
  713.   #--------------------------------------------------------------------------
  714.   def simple_refresh(equip_type)
  715.     # 一時的に装備部位を変更
  716.     last_equip_type = @equip_type
  717.     @equip_type = equip_type

  718.     @data.each_with_index { |item, i|
  719.       # 許可状態が変化した項目のみ再描画
  720.       if enable?(item) != @item_enabled[i]
  721.         draw_item(i)
  722.         @item_enabled[i] = enable?(item)
  723.       end
  724.     }
  725.     # 装備部位を戻す
  726.     @equip_type = last_equip_type
  727.   end
  728. end

  729. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  730. #==============================================================================
  731. # ■ Window_EquipStatus
  732. #==============================================================================

  733. class Window_EquipStatus < Window_Base
  734.   #--------------------------------------------------------------------------
  735.   # ● リフレッシュ
  736.   #--------------------------------------------------------------------------
  737.   alias refresh_KGC_EquipExtension refresh
  738.   def refresh
  739.     refresh_KGC_EquipExtension

  740.     draw_actor_ep(@actor, 120, 0, 56) if KGC::EquipExtension::USE_EP_SYSTEM
  741.   end
  742. end

  743. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  744. #==============================================================================
  745. # ■ Window_Status
  746. #==============================================================================

  747. class Window_Status < Window_Base

  748. if KGC::EquipExtension::SHOW_STATUS_EP
  749.   #--------------------------------------------------------------------------
  750.   # ● 基本情報の描画
  751.   #     x : 描画先 X 座標
  752.   #     y : 描画先 Y 座標
  753.   #--------------------------------------------------------------------------
  754.   alias draw_basic_info_KGC_EquipExtension draw_basic_info
  755.   def draw_basic_info(x, y)
  756.     draw_basic_info_KGC_EquipExtension(x, y)

  757.     draw_actor_ep(@actor, x + 160, y + WLH * 4)
  758.   end
  759. end

  760.   #--------------------------------------------------------------------------
  761.   # ● 装備品の描画
  762.   #     x : 描画先 X 座標
  763.   #     y : 描画先 Y 座標
  764.   #--------------------------------------------------------------------------
  765.   def draw_equipments(x, y)
  766.     self.contents.font.color = system_color
  767.     self.contents.draw_text(x, y, 120, WLH, Vocab::equip)

  768.     item_number = [@actor.equips.size, @actor.armor_number + 1].min
  769.     item_number.times { |i|
  770.       draw_item_name(@actor.equips[i], x + 16, y + WLH * (i + 1))
  771.     }
  772.   end
  773. end

  774. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  775. #==============================================================================
  776. # ■ Window_ShopStatus
  777. #==============================================================================

  778. class Window_ShopStatus < Window_Base
  779.   #--------------------------------------------------------------------------
  780.   # ● アクターの現装備と能力値変化の描画
  781.   #     actor : アクター
  782.   #     x     : 描画先 X 座標
  783.   #     y     : 描画先 Y 座標
  784.   #--------------------------------------------------------------------------
  785.   def draw_actor_parameter_change(actor, x, y)
  786.     return if @item.is_a?(RPG::Item)
  787.     enabled = actor.equippable?(@item)
  788.     self.contents.font.color = normal_color
  789.     self.contents.font.color.alpha = enabled ? 255 : 128
  790.     self.contents.draw_text(x, y, 200, WLH, actor.name)
  791.     if @item.is_a?(RPG::Weapon)
  792.       item1 = weaker_weapon(actor)
  793.     elsif actor.two_swords_style and @item.kind == 0
  794.       item1 = nil
  795.     else
  796.       index = actor.equip_type.index(@item.kind)
  797.       item1 = (index != nil ? actor.equips[1 + index] : nil)
  798.     end
  799.     if enabled
  800.       if @item.is_a?(RPG::Weapon)
  801.         atk1 = item1 == nil ? 0 : item1.atk
  802.         atk2 = @item == nil ? 0 : @item.atk
  803.         change = atk2 - atk1
  804.       else
  805.         def1 = item1 == nil ? 0 : item1.def
  806.         def2 = @item == nil ? 0 : @item.def
  807.         change = def2 - def1
  808.       end
  809.       self.contents.draw_text(x, y, 200, WLH, sprintf("%+d", change), 2)
  810.     end
  811.     draw_item_name(item1, x, y + WLH, enabled)
  812.   end
  813. end

  814. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  815. #==============================================================================
  816. # ■ Scene_Equip
  817. #==============================================================================

  818. class Scene_Equip < Scene_Base
  819.   #--------------------------------------------------------------------------
  820.   # ● 定数
  821.   #--------------------------------------------------------------------------
  822.   EQUIP_TYPE_MAX = KGC::EquipExtension::EXTRA_EQUIP_KIND.size + 5
  823.   #--------------------------------------------------------------------------
  824.   # ● オブジェクト初期化
  825.   #     actor_index : アクターインデックス
  826.   #     equip_index : 装備インデックス
  827.   #--------------------------------------------------------------------------
  828.   alias initialize_KGC_EquipExtension initialize
  829.   def initialize(actor_index = 0, equip_index = 0)
  830.     initialize_KGC_EquipExtension(actor_index, equip_index)

  831.     unit = ($imported["LargeParty"] ?
  832.       $game_party.all_members : $game_party.members)
  833.     actor = unit[actor_index]
  834.     @equip_index = [@equip_index, actor.armor_number].min
  835.   end
  836.   #--------------------------------------------------------------------------
  837.   # ● アイテムウィンドウの作成
  838.   #--------------------------------------------------------------------------
  839.   alias create_item_windows_KGC_EquipExtension create_item_windows
  840.   def create_item_windows
  841.     create_item_windows_KGC_EquipExtension

  842.     kind = equip_kind(@equip_index)
  843.     EQUIP_TYPE_MAX.times { |i|
  844.       @item_windows[i].visible = (kind == i)
  845.     }
  846.   end
  847.   #--------------------------------------------------------------------------
  848.   # ● アイテムウィンドウの更新
  849.   #--------------------------------------------------------------------------
  850.   def update_item_windows
  851.     kind = equip_kind(@equip_window.index)
  852.     for i in 0...EQUIP_TYPE_MAX
  853.       @item_windows[i].visible = (kind == i)
  854.       @item_windows[i].update
  855.     end
  856.     @item_window = @item_windows[kind]
  857.     @item_window.simple_refresh(@equip_window.index)
  858.   end
  859.   #--------------------------------------------------------------------------
  860.   # ○ 装備欄の種別を取得
  861.   #     index : 装備欄インデックス
  862.   #--------------------------------------------------------------------------
  863.   def equip_kind(index)
  864.     if index == 0
  865.       return 0
  866.     else
  867.       return @actor.equip_type[index - 1] + 1
  868.     end
  869.   end

  870. unless $imported["ExtendedEquipScene"]
  871.   #--------------------------------------------------------------------------
  872.   # ● ステータスウィンドウの更新
  873.   #--------------------------------------------------------------------------
  874.   def update_status_window
  875.     if @equip_window.active
  876.       @status_window.set_new_parameters(nil, nil, nil, nil)
  877.     elsif @item_window.active
  878.       temp_actor = Marshal.load(Marshal.dump(@actor))
  879.       temp_actor.change_equip(@equip_window.index, @item_window.item, true)
  880.       new_atk = temp_actor.atk
  881.       new_def = temp_actor.def
  882.       new_spi = temp_actor.spi
  883.       new_agi = temp_actor.agi
  884.       @status_window.set_new_parameters(new_atk, new_def, new_spi, new_agi)
  885.     end
  886.     @status_window.update
  887.   end
  888. end

  889.   #--------------------------------------------------------------------------
  890.   # ● アイテム選択の更新
  891.   #--------------------------------------------------------------------------
  892.   alias update_item_selection_KGC_EquipExtension update_item_selection
  893.   def update_item_selection
  894.     if Input.trigger?(Input::C)
  895.       # 装備不可能な場合
  896.       index = @equip_window.index
  897.       item = @item_window.item
  898.       unless item == nil ||
  899.           (@actor.equippable?(item) && @actor.ep_condition_clear?(index, item))
  900.         Sound.play_buzzer
  901.         return
  902.       end
  903.     end

  904.     update_item_selection_KGC_EquipExtension
  905.   end
  906. end

  907. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  908. #==============================================================================
  909. # ■ Scene_File
  910. #==============================================================================

  911. class Scene_File < Scene_Base
  912.   #--------------------------------------------------------------------------
  913.   # ● セーブデータの読み込み
  914.   #     file : 読み込み用ファイルオブジェクト (オープン済み)
  915.   #--------------------------------------------------------------------------
  916.   alias read_save_data_KGC_EquipExtension read_save_data
  917.   def read_save_data(file)
  918.     read_save_data_KGC_EquipExtension(file)

  919.     KGC::Commands.restore_equip
  920.     Graphics.frame_reset
  921.   end
  922. end
复制代码

作者: 负零    时间: 2010-7-19 20:24
  1. #_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
  2. #_/    ◆ 装備拡張 - KGC_EquipExtension ◆ VX ◆
  3. #_/    ◇ Last update : 2009/08/18 ◇
  4. #_/----------------------------------------------------------------------------
  5. #_/  装備関連の機能を拡張します。
  6. #_/============================================================================
  7. #_/ 【メニュー】≪拡張装備画面≫ より下に導入してください。
  8. #_/ 【スキル】≪パッシブスキル≫ より上に導入してください。
  9. #_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

  10. #==============================================================================
  11. # ★ カスタマイズ項目 - Customize ★
  12. #==============================================================================

  13. module KGC
  14. module EquipExtension
  15.   # ◆ 拡張装備種別
  16.   #  先頭から順に 4, 5, 6, ... が割り当てられる。
  17.   EXTRA_EQUIP_KIND = ["足", "技能書"]

  18.   # ◆ 装備箇所リスト
  19.   #  武器の後に、ここで指定した順番で並ぶ。
  20.   #  ※ 装備箇所が最低一つないと、二刀流がバグる可能性があります。
  21.   #   ** 装備種別一覧 **
  22.   #  0..盾  1..頭  2..身体  3..装飾品  4~..↑で定義
  23.   EQUIP_TYPE = [0, 1, 2, 4, 3, 3, 5]

  24.   # ◆ EP (Equip Point) 制を使用する
  25.   #  true  : EP で装備品を制限。
  26.   #  false : 通常の装備システム。
  27.   USE_EP_SYSTEM  = true
  28.   # ◆ EP の名前
  29.   VOCAB_EP       = "EP"
  30.   # ◆ EP の名前 (略)
  31.   VOCAB_EP_A     = "E"
  32.   # ◆ ステータス画面に EP を表示する
  33.   SHOW_STATUS_EP = true

  34.   # ◆ 消費 EP 既定値
  35.   #  消費 EP が指定されていない装備品で使用。
  36.   DEFAULT_EP_COST   = 1
  37.   # ◆ 消費 EP 0 は表示しない
  38.   HIDE_ZERO_EP_COST = true

  39.   # ◆ EP 上限
  40.   EP_MAX = 20
  41.   # ◆ EP 下限
  42.   EP_MIN = 5
  43.   # ◆ 最大 EP 算出式
  44.   #   level..アクターのレベル
  45.   #  自動的に整数変換されるので、結果が小数になってもOK。
  46.   EP_CALC_EXP = "level * 0.3 + 4"
  47.   # ◆ アクター毎の最大 EP 算出式
  48.   PERSONAL_EP_CALC_EXP = []
  49.   #  ここから下に、アクターごとの最大 EP を
  50.   #   PERSONAL_EP_CALC_EXP[アクター ID] = "計算式"
  51.   #  という書式で指定。
  52.   #  計算式は EP_CALC_EXP と同様の書式。
  53.   #  指定しなかったアクターは EP_CALC_EXP を使用。
  54.   #   <例> ラルフだけ優遇
  55.   # PERSONAL_EP_CALC_EXP[1] = "level * 0.5 + 5"

  56.   # ◆ 消費 EP 値の色 (アイテム名の末尾に付く数値)
  57.   #  数値  : \C[n] と同じ色。
  58.   #  Color : 指定した色。 ( Color.new(128, 255, 255) など )
  59.   EP_COST_COLOR        = 23
  60.   # ◆ EP ゲージの色
  61.   EP_GAUGE_START_COLOR = 28  # 開始色
  62.   EP_GAUGE_END_COLOR   = 29  # 終了色

  63.   # ◆ EP ゲージに汎用ゲージを使用する
  64.   #  ≪汎用ゲージ描画≫ 導入時のみ有効。
  65.   ENABLE_GENERIC_GAUGE = true
  66.   # ◆ EP ゲージ設定
  67.   #  画像は "Graphics/System" から読み込む。
  68.   GAUGE_IMAGE  = "GaugeEP"  # 画像
  69.   GAUGE_OFFSET = [-23, -2]  # 位置補正 [x, y]
  70.   GAUGE_LENGTH = -4         # 長さ補正
  71.   GAUGE_SLOPE  = 30         # 傾き (-89 ~ 89)
  72. end
  73. end

  74. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  75. $imported = {} if $imported == nil
  76. $imported["EquipExtension"] = true

  77. module KGC::EquipExtension
  78.   # EP 制を使用しない場合の設定
  79.   unless USE_EP_SYSTEM
  80.     SHOW_STATUS_EP = false
  81.     HIDE_ZERO_EP_COST = true
  82.   end

  83.   # 正規表現
  84.   module Regexp
  85.     # ベースアイテム
  86.     module BaseItem
  87.       # 消費 EP
  88.       EP_COST = /<EP\s*(\d+)>/i
  89.       # 装備タイプ
  90.       EQUIP_TYPE = /<(?:EQUIP_TYPE|装備タイプ)\s*(\d+(?:\s*,\s*\d+)*)>/
  91.     end

  92.     # 防具
  93.     module Armor
  94.       # 装備種別
  95.       EQUIP_KIND = /<(?:EQUIP_KIND|装備種別)\s*(.+)>/i
  96.     end
  97.   end
  98. end

  99. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  100. #==============================================================================
  101. # □ KGC::Commands
  102. #==============================================================================

  103. module KGC
  104. module Commands
  105.   module_function
  106.   #--------------------------------------------------------------------------
  107.   # ○ アクターの装備を修復
  108.   #--------------------------------------------------------------------------
  109.   def restore_equip
  110.     (1...$data_actors.size).each { |i|
  111.       actor = $game_actors[i]
  112.       actor.restore_equip
  113.     }
  114.   end
  115.   #--------------------------------------------------------------------------
  116.   # ○ アクターの装備タイプを設定
  117.   #     actor_id   : アクター ID
  118.   #     equip_type : 装備タイプ
  119.   #--------------------------------------------------------------------------
  120.   def set_actor_equip_type(actor_id, equip_type = nil)
  121.     actor = $game_actors[actor_id]
  122.     return if actor == nil
  123.     actor.equip_type = equip_type
  124.   end
  125.   #--------------------------------------------------------------------------
  126.   # ○ アクターの MaxEP 補正値の取得
  127.   #     actor_id    : アクター ID
  128.   #     variable_id : 取得した値を代入する変数の ID
  129.   #--------------------------------------------------------------------------
  130.   def get_actor_own_ep(actor_id, variable_id = 0)
  131.     value = $game_actors[actor_id].maxep_plus
  132.     $game_variables[variable_id] = value if variable_id > 0
  133.     return value
  134.   end
  135.   #--------------------------------------------------------------------------
  136.   # ○ アクターの MaxEP 補正値の変更
  137.   #     actor_id : アクター ID
  138.   #     value    : MaxEP 補正値
  139.   #--------------------------------------------------------------------------
  140.   def set_actor_own_ep(actor_id, value)
  141.     $game_actors[actor_id].maxep_plus = value
  142.   end
  143.   #--------------------------------------------------------------------------
  144.   # ○ アクターの MaxEP 補正値の増加
  145.   #     actor_id : アクター ID
  146.   #     value    : 増加量
  147.   #--------------------------------------------------------------------------
  148.   def gain_actor_ep(actor_id, value)
  149.     $game_actors[actor_id].maxep_plus += value
  150.   end
  151.   #--------------------------------------------------------------------------
  152.   # ○ アクターの装備を変更
  153.   #     actor_id   : アクター ID
  154.   #     index      : 装備部位 (0~)
  155.   #     item_id    : 武器 or 防具 ID (0 で解除)
  156.   #     force_gain : 未所持なら取得 (true or false)
  157.   #--------------------------------------------------------------------------
  158.   def change_actor_equipment(actor_id, index, item_id, force_gain = false)
  159.     actor = $game_actors[actor_id]
  160.     return if actor == nil

  161.     item = (index == 0 ? $data_weapons[item_id] : $data_armors[item_id])
  162.     if actor.two_swords_style && index == 1
  163.       item = $data_weapons[item_id]
  164.     end
  165.     if force_gain && $game_party.item_number(item) == 0
  166.       $game_party.gain_item(item, 1)
  167.     end
  168.     actor.change_equip_by_id(index, item_id)
  169.   end
  170. end
  171. end

  172. class Game_Interpreter
  173.   include KGC::Commands
  174. end

  175. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  176. #==============================================================================
  177. # ■ Vocab
  178. #==============================================================================

  179. module Vocab
  180.   # EP
  181.   def self.ep
  182.     return KGC::EquipExtension::VOCAB_EP
  183.   end

  184.   # EP (略)
  185.   def self.ep_a
  186.     return KGC::EquipExtension::VOCAB_EP_A
  187.   end

  188.   # 拡張防具欄
  189.   def self.extra_armor(index)
  190.     return KGC::EquipExtension::EXTRA_EQUIP_KIND[index]
  191.   end
  192. end

  193. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  194. #==============================================================================
  195. # ■ RPG::BaseItem
  196. #==============================================================================

  197. class RPG::BaseItem
  198.   #--------------------------------------------------------------------------
  199.   # ○ 装備拡張のキャッシュを作成
  200.   #--------------------------------------------------------------------------
  201.   def create_equip_extension_cache
  202.     @__ep_cost = KGC::EquipExtension::DEFAULT_EP_COST
  203.     @__equip_type = []

  204.     self.note.each_line { |line|
  205.       case line
  206.       when KGC::EquipExtension::Regexp::BaseItem::EP_COST
  207.         # 消費 EP
  208.         @__ep_cost = $1.to_i
  209.       when KGC::EquipExtension::Regexp::BaseItem::EQUIP_TYPE
  210.         # 装備タイプ
  211.         @__equip_type = []
  212.         $1.scan(/\d+/) { |num|
  213.           @__equip_type << num.to_i
  214.         }
  215.       end
  216.     }

  217.     # EP 制を使用しない場合は消費 EP = 0
  218.     @__ep_cost = 0 unless KGC::EquipExtension::USE_EP_SYSTEM
  219.   end
  220.   #--------------------------------------------------------------------------
  221.   # ○ 消費 EP
  222.   #--------------------------------------------------------------------------
  223.   def ep_cost
  224.     create_equip_extension_cache if @__ep_cost == nil
  225.     return @__ep_cost
  226.   end
  227.   #--------------------------------------------------------------------------
  228.   # ○ 装備タイプ
  229.   #--------------------------------------------------------------------------
  230.   def equip_type
  231.     create_equip_extension_cache if @__equip_type == nil
  232.     return @__equip_type
  233.   end
  234. end

  235. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  236. #==============================================================================
  237. # ■ RPG::Armor
  238. #==============================================================================

  239. class RPG::Armor < RPG::BaseItem
  240.   #--------------------------------------------------------------------------
  241.   # ○ 装備拡張のキャッシュを作成
  242.   #--------------------------------------------------------------------------
  243.   def create_equip_extension_cache
  244.     super
  245.     @__kind = -1

  246.     self.note.each_line { |line|
  247.       if line =~ KGC::EquipExtension::Regexp::Armor::EQUIP_KIND
  248.         # 装備種別
  249.         e_index = KGC::EquipExtension::EXTRA_EQUIP_KIND.index($1)
  250.         next if e_index == nil
  251.         @__kind = e_index + 4
  252.       end
  253.     }
  254.   end
  255.   #--------------------------------------------------------------------------
  256.   # ○ 種別
  257.   #--------------------------------------------------------------------------
  258.   unless method_defined?(:kind_KGC_EquipExtension)
  259.     alias kind_KGC_EquipExtension kind
  260.   end
  261.   def kind
  262.     create_equip_extension_cache if @__kind == nil
  263.     return (@__kind == -1 ? kind_KGC_EquipExtension : @__kind)
  264.   end
  265. end

  266. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  267. #==============================================================================
  268. # ■ Game_Actor
  269. #==============================================================================

  270. class Game_Actor < Game_Battler
  271.   #--------------------------------------------------------------------------
  272.   # ● 公開インスタンス変数
  273.   #--------------------------------------------------------------------------
  274.   attr_writer   :equip_type               # 装備タイプ
  275.   attr_writer   :maxep_plus               # MaxEP 補正値
  276.   #--------------------------------------------------------------------------
  277.   # ● セットアップ
  278.   #     actor_id : アクター ID
  279.   #--------------------------------------------------------------------------
  280.   alias setup_KGC_EquipExtension setup
  281.   def setup(actor_id)
  282.     actor = $data_actors[actor_id]
  283.     @extra_armor_id = []

  284.     setup_KGC_EquipExtension(actor_id)

  285.     @__last_equip_type = nil
  286.     restore_equip
  287.   end
  288.   #--------------------------------------------------------------------------
  289.   # ○ MaxEP 取得
  290.   #--------------------------------------------------------------------------
  291.   def maxep
  292.     calc_exp = KGC::EquipExtension::PERSONAL_EP_CALC_EXP[self.id]
  293.     if calc_exp == nil
  294.       calc_exp = KGC::EquipExtension::EP_CALC_EXP
  295.     end
  296.     n = Integer(eval(calc_exp)) + maxep_plus
  297.     return [[n, ep_limit].min, KGC::EquipExtension::EP_MIN].max
  298.   end
  299.   #--------------------------------------------------------------------------
  300.   # ○ EP 取得
  301.   #--------------------------------------------------------------------------
  302.   def ep
  303.     n = 0
  304.     equips.compact.each { |item| n += item.ep_cost }
  305.     return [maxep - n, 0].max
  306.   end
  307.   #--------------------------------------------------------------------------
  308.   # ○ EP 上限取得
  309.   #--------------------------------------------------------------------------
  310.   def ep_limit
  311.     return KGC::EquipExtension::EP_MAX
  312.   end
  313.   #--------------------------------------------------------------------------
  314.   # ○ MaxEP 補正値取得
  315.   #--------------------------------------------------------------------------
  316.   def maxep_plus
  317.     @maxep_plus = 0 if @maxep_plus == nil
  318.     return @maxep_plus
  319.   end
  320.   #--------------------------------------------------------------------------
  321.   # ○ 防具欄の取得
  322.   #--------------------------------------------------------------------------
  323.   def equip_type
  324.     if @equip_type.is_a?(Array)
  325.       return @equip_type
  326.     else
  327.       return KGC::EquipExtension::EQUIP_TYPE
  328.     end
  329.   end
  330.   #--------------------------------------------------------------------------
  331.   # ○ 防具欄の数
  332.   #--------------------------------------------------------------------------
  333.   def armor_number
  334.     return equip_type.size
  335.   end
  336.   #--------------------------------------------------------------------------
  337.   # ○ 拡張防具欄の数
  338.   #--------------------------------------------------------------------------
  339.   def extra_armor_number
  340.     return [armor_number - 4, 0].max
  341.   end
  342.   #--------------------------------------------------------------------------
  343.   # ○ 防具 ID リストの取得
  344.   #--------------------------------------------------------------------------
  345.   def extra_armor_id
  346.     @extra_armor_id = [] if @extra_armor_id == nil
  347.     return @extra_armor_id
  348.   end
  349.   #--------------------------------------------------------------------------
  350.   # ● 防具オブジェクトの配列取得
  351.   #--------------------------------------------------------------------------
  352.   alias armors_KGC_EquipExtension armors
  353.   def armors
  354.     result = armors_KGC_EquipExtension

  355.     # 5番目以降の防具を追加
  356.     extra_armor_number.times { |i|
  357.       armor_id = extra_armor_id[i]
  358.       result << (armor_id == nil ? nil : $data_armors[armor_id])
  359.     }
  360.     return result
  361.   end
  362.   #--------------------------------------------------------------------------
  363.   # ● 装備の変更 (オブジェクトで指定)
  364.   #     equip_type : 装備部位
  365.   #     item       : 武器 or 防具 (nil なら装備解除)
  366.   #     test       : テストフラグ (戦闘テスト、または装備画面での一時装備)
  367.   #--------------------------------------------------------------------------
  368.   alias change_equip_KGC_EquipExtension change_equip
  369.   def change_equip(equip_type, item, test = false)
  370.     n = (item != nil ? $game_party.item_number(item) : 0)

  371.     change_equip_KGC_EquipExtension(equip_type, item, test)

  372.     # 拡張防具欄がある場合のみ
  373.     if extra_armor_number > 0 && (item == nil || n > 0)
  374.       item_id = item == nil ? 0 : item.id
  375.       case equip_type
  376.       when 5..armor_number  # 拡張防具欄
  377.         @extra_armor_id = [] if @extra_armor_id == nil
  378.         @extra_armor_id[equip_type - 5] = item_id
  379.       end
  380.     end

  381.     restore_battle_skill if $imported["SkillCPSystem"]
  382.   end
  383.   #--------------------------------------------------------------------------
  384.   # ● 装備の破棄
  385.   #     item : 破棄する武器 or 防具
  386.   #    武器/防具の増減で「装備品も含める」のとき使用する。
  387.   #--------------------------------------------------------------------------
  388.   alias discard_equip_KGC_EquipExtension discard_equip
  389.   def discard_equip(item)
  390.     last_armors = [@armor1_id, @armor2_id, @armor3_id, @armor4_id]

  391.     discard_equip_KGC_EquipExtension(item)

  392.     curr_armors = [@armor1_id, @armor2_id, @armor3_id, @armor4_id]
  393.     return unless item.is_a?(RPG::Armor)  # 防具でない
  394.     return if last_armors != curr_armors  # 既に破棄された

  395.     # 拡張防具欄を検索
  396.     extra_armor_number.times { |i|
  397.       if extra_armor_id[i] == item.id
  398.         @extra_armor_id[i] = 0
  399.         break
  400.       end
  401.     }

  402.     restore_battle_skill if $imported["SkillCPSystem"]
  403.   end
  404.   #--------------------------------------------------------------------------
  405.   # ● 職業 ID の変更
  406.   #     class_id : 新しい職業 ID
  407.   #--------------------------------------------------------------------------
  408.   alias class_id_equal_KGC_EquipExtension class_id=
  409.   def class_id=(class_id)
  410.     class_id_equal_KGC_EquipExtension(class_id)

  411.     return if extra_armor_number == 0  # 拡張防具欄がない

  412.     # 装備できない拡張防具を外す
  413.     for i in 5..armor_number
  414.       change_equip(i, nil) unless equippable?(equips[i])
  415.     end
  416.   end
  417.   #--------------------------------------------------------------------------
  418.   # ○ EP 条件クリア判定
  419.   #     equip_type : 装備部位
  420.   #     item       : 武器 or 防具
  421.   #--------------------------------------------------------------------------
  422.   def ep_condition_clear?(equip_type, item)
  423.     return true if item == nil  # nil は解除なので OK

  424.     curr_item = equips[equip_type]
  425.     offset = (curr_item != nil ? curr_item.ep_cost : 0)
  426.     return false if self.ep < (item.ep_cost - offset)   # EP 不足

  427.     return true
  428.   end
  429.   #--------------------------------------------------------------------------
  430.   # ○ 装備を修復
  431.   #--------------------------------------------------------------------------
  432.   def restore_equip
  433.     return if @__last_equip_type == equip_type

  434.     # 以前の装備品・パラメータを退避
  435.     last_equips = equips
  436.     last_hp = self.hp
  437.     last_mp = self.mp
  438.     if $imported["SkillCPSystem"]
  439.       last_battle_skill_ids = battle_skill_ids.clone
  440.     end

  441.     # パッシブスキルの更新を止める
  442.     if $imported["PassiveSkill"]
  443.       @__passive_rev_restoring = true
  444.     end

  445.     # 全装備解除
  446.     last_equips.each_index { |i| change_equip(i, nil) }

  447.     # 装備品・パラメータを復元
  448.     last_equips.compact.each { |item| equip_legal_slot(item) }
  449.     self.hp = last_hp
  450.     self.mp = last_mp
  451.     if $imported["SkillCPSystem"]
  452.       last_battle_skill_ids.each_with_index { |s, i| set_battle_skill(i, s) }
  453.     end
  454.     @__last_equip_type = equip_type.clone

  455.     # パッシブスキルを修復
  456.     if $imported["PassiveSkill"]
  457.       @__passive_rev_restoring = false
  458.       restore_passive_rev
  459.     end

  460.     Graphics.frame_reset
  461.   end
  462.   #--------------------------------------------------------------------------
  463.   # ○ 装備品を正しい箇所にセット
  464.   #     item : 武器 or 防具
  465.   #--------------------------------------------------------------------------
  466.   def equip_legal_slot(item)
  467.     if item.is_a?(RPG::Weapon)
  468.       if @weapon_id == 0
  469.         # 武器 1
  470.         change_equip(0, item)
  471.       elsif two_swords_style && @armor1_id == 0
  472.         # 武器 2 (二刀流の場合)
  473.         change_equip(1, item)
  474.       end
  475.     elsif item.is_a?(RPG::Armor)
  476.       if !two_swords_style && item.kind == equip_type[0] && @armor1_id == 0
  477.         # 先頭の防具 (二刀流でない場合)
  478.         change_equip(1, item)
  479.       else
  480.         # 装備箇所リストを作成
  481.         list = [-1, @armor2_id, @armor3_id, @armor4_id]
  482.         list += extra_armor_id
  483.         # 正しい、かつ空いている箇所にセット
  484.         equip_type.each_with_index { |kind, i|
  485.           if kind == item.kind && list[i] == 0
  486.             change_equip(i + 1, item)
  487.             break
  488.           end
  489.         }
  490.       end
  491.     end
  492.   end
  493. end

  494. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  495. #==============================================================================
  496. # ■ Window_Base
  497. #==============================================================================

  498. class Window_Base < Window
  499.   #--------------------------------------------------------------------------
  500.   # ○ EP の文字色を取得
  501.   #     actor : アクター
  502.   #--------------------------------------------------------------------------
  503.   def ep_color(actor)
  504.     return knockout_color if actor.maxep > 0 && actor.ep == 0
  505.     return normal_color
  506.   end
  507.   #--------------------------------------------------------------------------
  508.   # ○ EP ゲージの色 1 の取得
  509.   #--------------------------------------------------------------------------
  510.   def ep_gauge_color1
  511.     color = KGC::EquipExtension::EP_GAUGE_START_COLOR
  512.     return (color.is_a?(Integer) ? text_color(color) : color)
  513.   end
  514.   #--------------------------------------------------------------------------
  515.   # ○ EP ゲージの色 2 の取得
  516.   #--------------------------------------------------------------------------
  517.   def ep_gauge_color2
  518.     color = KGC::EquipExtension::EP_GAUGE_END_COLOR
  519.     return (color.is_a?(Integer) ? text_color(color) : color)
  520.   end
  521.   #--------------------------------------------------------------------------
  522.   # ○ EP の描画
  523.   #     actor : アクター
  524.   #     x     : 描画先 X 座標
  525.   #     y     : 描画先 Y 座標
  526.   #     width : 幅
  527.   #--------------------------------------------------------------------------
  528.   def draw_actor_ep(actor, x, y, width = 120)
  529.     draw_actor_ep_gauge(actor, x, y, width)
  530.     self.contents.font.color = system_color
  531.     self.contents.draw_text(x, y, 30, WLH, Vocab::ep_a)
  532.     self.contents.font.color = ep_color(actor)
  533.     xr = x + width
  534.     if width < 120
  535.       self.contents.draw_text(xr - 40, y, 40, WLH, actor.ep, 2)
  536.     else
  537.       self.contents.draw_text(xr - 90, y, 40, WLH, actor.ep, 2)
  538.       self.contents.font.color = normal_color
  539.       self.contents.draw_text(xr - 50, y, 10, WLH, "/", 2)
  540.       self.contents.draw_text(xr - 40, y, 40, WLH, actor.maxep, 2)
  541.     end
  542.     self.contents.font.color = normal_color
  543.   end
  544.   #--------------------------------------------------------------------------
  545.   # ○ EP ゲージの描画
  546.   #     actor : アクター
  547.   #     x     : 描画先 X 座標
  548.   #     y     : 描画先 Y 座標
  549.   #     width : 幅
  550.   #--------------------------------------------------------------------------
  551.   def draw_actor_ep_gauge(actor, x, y, width = 120)
  552.     if KGC::EquipExtension::ENABLE_GENERIC_GAUGE && $imported["GenericGauge"]
  553.       # 汎用ゲージ
  554.       draw_gauge(KGC::EquipExtension::GAUGE_IMAGE,
  555.         x, y, width, actor.ep, [actor.maxep, 1].max,
  556.         KGC::EquipExtension::GAUGE_OFFSET,
  557.         KGC::EquipExtension::GAUGE_LENGTH,
  558.         KGC::EquipExtension::GAUGE_SLOPE)
  559.     else
  560.       # デフォルトゲージ
  561.       gw = width * actor.ep / [actor.maxep, 1].max
  562.       gc1 = ep_gauge_color1
  563.       gc2 = ep_gauge_color2
  564.       self.contents.fill_rect(x, y + WLH - 8, width, 6, gauge_back_color)
  565.       self.contents.gradient_fill_rect(x, y + WLH - 8, gw, 6, gc1, gc2)
  566.     end
  567.   end
  568.   #--------------------------------------------------------------------------
  569.   # ○ 消費 EP の描画
  570.   #     item    : 武器 or 防具
  571.   #     rect    : 描画する領域
  572.   #     enabled : 許可状態
  573.   #--------------------------------------------------------------------------
  574.   def draw_equipment_ep_cost(item, rect, enabled = true)
  575.     return if item == nil
  576.     # 消費 EP 0 を表示しない場合
  577.     return if KGC::EquipExtension::HIDE_ZERO_EP_COST && item.ep_cost == 0

  578.     color = KGC::EquipExtension::EP_COST_COLOR
  579.     self.contents.font.color = (color.is_a?(Integer) ?
  580.       text_color(color) : color)
  581.     self.contents.font.color.alpha = enabled ? 255 : 128
  582.     self.contents.draw_text(rect, item.ep_cost, 2)
  583.   end
  584. end

  585. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  586. #==============================================================================
  587. # ■ Window_Equip
  588. #==============================================================================

  589. class Window_Equip < Window_Selectable
  590.   #--------------------------------------------------------------------------
  591.   # ● リフレッシュ
  592.   #--------------------------------------------------------------------------
  593.   def refresh
  594.     self.contents.clear
  595.     @data = @actor.equips.clone
  596.     @item_max = [@data.size, @actor.armor_number + 1].min
  597.     create_contents

  598.     # 装備箇所を描画
  599.     self.contents.font.color = system_color
  600.     if @actor.two_swords_style
  601.       self.contents.draw_text(4,       0, 92, WLH, Vocab::weapon1)
  602.       self.contents.draw_text(4, WLH * 1, 92, WLH, Vocab::weapon2)
  603.     else
  604.       self.contents.draw_text(4,       0, 92, WLH, Vocab::weapon)
  605.       name = armor_slot_name(@actor.equip_type[0])
  606.       self.contents.draw_text(4, WLH * 1, 92, WLH, name)
  607.     end
  608.     for i in [email protected]_number
  609.       name = armor_slot_name(@actor.equip_type[i])
  610.       self.contents.draw_text(4, WLH * (i + 1), 92, WLH, name)
  611.     end

  612.     # 装備品を描画
  613.     rect = Rect.new(92, 0, self.width - 128, WLH)
  614.     @item_max.times { |i|
  615.       rect.y = WLH * i
  616.       draw_item_name(@data[i], rect.x, rect.y)
  617.       draw_equipment_ep_cost(@data[i], rect)
  618.     }
  619.   end
  620.   #--------------------------------------------------------------------------
  621.   # ○ 防具欄の名称を取得
  622.   #     kind : 種別
  623.   #--------------------------------------------------------------------------
  624.   def armor_slot_name(kind)
  625.     case kind
  626.     when 0..3
  627.       return eval("Vocab.armor#{kind + 1}")
  628.     else
  629.       return Vocab.extra_armor(kind - 4)
  630.     end
  631.   end

  632. unless $imported["ExtendedEquipScene"]
  633.   #--------------------------------------------------------------------------
  634.   # ● カーソルを 1 ページ後ろに移動
  635.   #--------------------------------------------------------------------------
  636.   def cursor_pagedown
  637.     return if Input.repeat?(Input::R)
  638.     super
  639.   end
  640.   #--------------------------------------------------------------------------
  641.   # ● カーソルを 1 ページ前に移動
  642.   #--------------------------------------------------------------------------
  643.   def cursor_pageup
  644.     return if Input.repeat?(Input::L)
  645.     super
  646.   end
  647.   #--------------------------------------------------------------------------
  648.   # ● フレーム更新
  649.   #--------------------------------------------------------------------------
  650.   def update
  651.     super
  652.     return unless self.active

  653.     if Input.repeat?(Input::RIGHT)
  654.       cursor_pagedown
  655.     elsif Input.repeat?(Input::LEFT)
  656.       cursor_pageup
  657.     end
  658.   end
  659. end

  660. end

  661. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  662. #==============================================================================
  663. # ■ Window_EquipItem
  664. #==============================================================================

  665. class Window_EquipItem < Window_Item
  666.   #--------------------------------------------------------------------------
  667.   # ● リフレッシュ
  668.   #--------------------------------------------------------------------------
  669.   def refresh
  670.     @item_enabled = []
  671.     super
  672.     @data.each { |item| @item_enabled << enable?(item) }
  673.   end
  674.   #--------------------------------------------------------------------------
  675.   # ● アイテムをリストに含めるかどうか
  676.   #     item : アイテム
  677.   #--------------------------------------------------------------------------
  678.   def include?(item)
  679.     return true if item == nil
  680.     if @equip_type == 0
  681.       return false unless item.is_a?(RPG::Weapon)
  682.     else
  683.       return false unless item.is_a?(RPG::Armor)
  684.       return false unless item.kind == @equip_type - 1
  685.     end
  686.     return @actor.equippable?(item)
  687.   end
  688.   #--------------------------------------------------------------------------
  689.   # ● アイテムを許可状態で表示するかどうか
  690.   #     item : アイテム
  691.   #--------------------------------------------------------------------------
  692.   def enable?(item)
  693.     return false unless @actor.equippable?(item)                      # 装備不可
  694.     return false unless @actor.ep_condition_clear?(@equip_type, item)  # EP 不足

  695.     return true
  696.   end
  697.   #--------------------------------------------------------------------------
  698.   # ● 項目の描画
  699.   #     index : 項目番号
  700.   #--------------------------------------------------------------------------
  701.   def draw_item(index)
  702.     super(index)   
  703.     rect = item_rect(index)
  704.     item = @data[index]

  705.     # 個数表示分の幅を削る
  706.     cw = self.contents.text_size(sprintf(":%2d", 0)).width
  707.     rect.width -= cw + 4
  708.     draw_equipment_ep_cost(item, rect, enable?(item))
  709.   end
  710.   #--------------------------------------------------------------------------
  711.   # ○ 簡易リフレッシュ
  712.   #     equip_type : 装備部位
  713.   #--------------------------------------------------------------------------
  714.   def simple_refresh(equip_type)
  715.     # 一時的に装備部位を変更
  716.     last_equip_type = @equip_type
  717.     @equip_type = equip_type

  718.     @data.each_with_index { |item, i|
  719.       # 許可状態が変化した項目のみ再描画
  720.       if enable?(item) != @item_enabled[i]
  721.         draw_item(i)
  722.         @item_enabled[i] = enable?(item)
  723.       end
  724.     }
  725.     # 装備部位を戻す
  726.     @equip_type = last_equip_type
  727.   end
  728. end

  729. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  730. #==============================================================================
  731. # ■ Window_EquipStatus
  732. #==============================================================================

  733. class Window_EquipStatus < Window_Base
  734.   #--------------------------------------------------------------------------
  735.   # ● リフレッシュ
  736.   #--------------------------------------------------------------------------
  737.   alias refresh_KGC_EquipExtension refresh
  738.   def refresh
  739.     refresh_KGC_EquipExtension

  740.     draw_actor_ep(@actor, 120, 0, 56) if KGC::EquipExtension::USE_EP_SYSTEM
  741.   end
  742. end

  743. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  744. #==============================================================================
  745. # ■ Window_Status
  746. #==============================================================================

  747. class Window_Status < Window_Base

  748. if KGC::EquipExtension::SHOW_STATUS_EP
  749.   #--------------------------------------------------------------------------
  750.   # ● 基本情報の描画
  751.   #     x : 描画先 X 座標
  752.   #     y : 描画先 Y 座標
  753.   #--------------------------------------------------------------------------
  754.   alias draw_basic_info_KGC_EquipExtension draw_basic_info
  755.   def draw_basic_info(x, y)
  756.     draw_basic_info_KGC_EquipExtension(x, y)

  757.     draw_actor_ep(@actor, x + 160, y + WLH * 4)
  758.   end
  759. end

  760.   #--------------------------------------------------------------------------
  761.   # ● 装備品の描画
  762.   #     x : 描画先 X 座標
  763.   #     y : 描画先 Y 座標
  764.   #--------------------------------------------------------------------------
  765.   def draw_equipments(x, y)
  766.     self.contents.font.color = system_color
  767.     self.contents.draw_text(x, y, 120, WLH, Vocab::equip)

  768.     item_number = [@actor.equips.size, @actor.armor_number + 1].min
  769.     item_number.times { |i|
  770.       draw_item_name(@actor.equips[i], x + 16, y + WLH * (i + 1))
  771.     }
  772.   end
  773. end

  774. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  775. #==============================================================================
  776. # ■ Window_ShopStatus
  777. #==============================================================================

  778. class Window_ShopStatus < Window_Base
  779.   #--------------------------------------------------------------------------
  780.   # ● アクターの現装備と能力値変化の描画
  781.   #     actor : アクター
  782.   #     x     : 描画先 X 座標
  783.   #     y     : 描画先 Y 座標
  784.   #--------------------------------------------------------------------------
  785.   def draw_actor_parameter_change(actor, x, y)
  786.     return if @item.is_a?(RPG::Item)
  787.     enabled = actor.equippable?(@item)
  788.     self.contents.font.color = normal_color
  789.     self.contents.font.color.alpha = enabled ? 255 : 128
  790.     self.contents.draw_text(x, y, 200, WLH, actor.name)
  791.     if @item.is_a?(RPG::Weapon)
  792.       item1 = weaker_weapon(actor)
  793.     elsif actor.two_swords_style and @item.kind == 0
  794.       item1 = nil
  795.     else
  796.       index = actor.equip_type.index(@item.kind)
  797.       item1 = (index != nil ? actor.equips[1 + index] : nil)
  798.     end
  799.     if enabled
  800.       if @item.is_a?(RPG::Weapon)
  801.         atk1 = item1 == nil ? 0 : item1.atk
  802.         atk2 = @item == nil ? 0 : @item.atk
  803.         change = atk2 - atk1
  804.       else
  805.         def1 = item1 == nil ? 0 : item1.def
  806.         def2 = @item == nil ? 0 : @item.def
  807.         change = def2 - def1
  808.       end
  809.       self.contents.draw_text(x, y, 200, WLH, sprintf("%+d", change), 2)
  810.     end
  811.     draw_item_name(item1, x, y + WLH, enabled)
  812.   end
  813. end

  814. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  815. #==============================================================================
  816. # ■ Scene_Equip
  817. #==============================================================================

  818. class Scene_Equip < Scene_Base
  819.   #--------------------------------------------------------------------------
  820.   # ● 定数
  821.   #--------------------------------------------------------------------------
  822.   EQUIP_TYPE_MAX = KGC::EquipExtension::EXTRA_EQUIP_KIND.size + 5
  823.   #--------------------------------------------------------------------------
  824.   # ● オブジェクト初期化
  825.   #     actor_index : アクターインデックス
  826.   #     equip_index : 装備インデックス
  827.   #--------------------------------------------------------------------------
  828.   alias initialize_KGC_EquipExtension initialize
  829.   def initialize(actor_index = 0, equip_index = 0)
  830.     initialize_KGC_EquipExtension(actor_index, equip_index)

  831.     unit = ($imported["LargeParty"] ?
  832.       $game_party.all_members : $game_party.members)
  833.     actor = unit[actor_index]
  834.     @equip_index = [@equip_index, actor.armor_number].min
  835.   end
  836.   #--------------------------------------------------------------------------
  837.   # ● アイテムウィンドウの作成
  838.   #--------------------------------------------------------------------------
  839.   alias create_item_windows_KGC_EquipExtension create_item_windows
  840.   def create_item_windows
  841.     create_item_windows_KGC_EquipExtension

  842.     kind = equip_kind(@equip_index)
  843.     EQUIP_TYPE_MAX.times { |i|
  844.       @item_windows[i].visible = (kind == i)
  845.     }
  846.   end
  847.   #--------------------------------------------------------------------------
  848.   # ● アイテムウィンドウの更新
  849.   #--------------------------------------------------------------------------
  850.   def update_item_windows
  851.     kind = equip_kind(@equip_window.index)
  852.     for i in 0...EQUIP_TYPE_MAX
  853.       @item_windows[i].visible = (kind == i)
  854.       @item_windows[i].update
  855.     end
  856.     @item_window = @item_windows[kind]
  857.     @item_window.simple_refresh(@equip_window.index)
  858.   end
  859.   #--------------------------------------------------------------------------
  860.   # ○ 装備欄の種別を取得
  861.   #     index : 装備欄インデックス
  862.   #--------------------------------------------------------------------------
  863.   def equip_kind(index)
  864.     if index == 0
  865.       return 0
  866.     else
  867.       return @actor.equip_type[index - 1] + 1
  868.     end
  869.   end

  870. unless $imported["ExtendedEquipScene"]
  871.   #--------------------------------------------------------------------------
  872.   # ● ステータスウィンドウの更新
  873.   #--------------------------------------------------------------------------
  874.   def update_status_window
  875.     if @equip_window.active
  876.       @status_window.set_new_parameters(nil, nil, nil, nil)
  877.     elsif @item_window.active
  878.       temp_actor = Marshal.load(Marshal.dump(@actor))
  879.       temp_actor.change_equip(@equip_window.index, @item_window.item, true)
  880.       new_atk = temp_actor.atk
  881.       new_def = temp_actor.def
  882.       new_spi = temp_actor.spi
  883.       new_agi = temp_actor.agi
  884.       @status_window.set_new_parameters(new_atk, new_def, new_spi, new_agi)
  885.     end
  886.     @status_window.update
  887.   end
  888. end

  889.   #--------------------------------------------------------------------------
  890.   # ● アイテム選択の更新
  891.   #--------------------------------------------------------------------------
  892.   alias update_item_selection_KGC_EquipExtension update_item_selection
  893.   def update_item_selection
  894.     if Input.trigger?(Input::C)
  895.       # 装備不可能な場合
  896.       index = @equip_window.index
  897.       item = @item_window.item
  898.       unless item == nil ||
  899.           (@actor.equippable?(item) && @actor.ep_condition_clear?(index, item))
  900.         Sound.play_buzzer
  901.         return
  902.       end
  903.     end

  904.     update_item_selection_KGC_EquipExtension
  905.   end
  906. end

  907. #★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★

  908. #==============================================================================
  909. # ■ Scene_File
  910. #==============================================================================

  911. class Scene_File < Scene_Base
  912.   #--------------------------------------------------------------------------
  913.   # ● セーブデータの読み込み
  914.   #     file : 読み込み用ファイルオブジェクト (オープン済み)
  915.   #--------------------------------------------------------------------------
  916.   alias read_save_data_KGC_EquipExtension read_save_data
  917.   def read_save_data(file)
  918.     read_save_data_KGC_EquipExtension(file)

  919.     KGC::Commands.restore_equip
  920.     Graphics.frame_reset
  921.   end
  922. end
复制代码





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1