设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 1603|回复: 1
打印 上一主题 下一主题

[已经过期] 求助怎么把套装系统和装备扩展合起来

[复制链接]

Lv1.梦旅人

梦石
0
星屑
2349
在线时间
37 小时
注册时间
2013-8-10
帖子
2
跳转到指定楼层
1
发表于 2013-10-17 20:38:29 | 只看该作者 回帖奖励 |正序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
希望大神帮忙解答一下,我弄了半天,发现如果装备扩展的话套装就没反应了
  1. #============新套装系统(支持装备扩展)============By  凌冰===================
  2. module SUITS
  3. #==============
  4. #||初始化数组||
  5. #==============
  6.   WEAPON = []
  7.   ARMORS = []
  8.   SKILLS = []
  9.   PAR_PLU = []
  10.   AUT_STA = []
  11.   GUA_ELE = []
  12.   GUA_STA = []
  13.   ELEMENT = []
  14.   PLU_STA = []
  15.   MIN_STA = []
  16. #=============================================================================
  17. #设置方法
  18. #=============================================================================
  19.   
  20.   #==============
  21.   #||第一套套装||
  22.   #==============
  23.   WEAPON[1] = [1]
  24.   #武器本套装的所有武器
  25.   #即一套套装里可以有多副武器
  26.   ARMORS[1] = [[],[],[],[],[],[],]
  27.   #防具        |盾| |头| |甲| |饰| |链| |鞋|
  28.   #即一套套装里可以有多副同类防具
  29.   #支持装备扩展,可以继续往后写
  30.   #如果套装中不包含某类,前面的或者中间的要写成[]或nil,后面的可以缺省
  31.   SKILLS[1] = [10]
  32.   #技能
  33.   PAR_PLU[1] = [100,10,10,10,10,10,10,10,10,10]
  34.   #            |血|灵|力|敏|速|魔|攻|防|御|敏|
  35.   AUT_STA[1] = []
  36.   #自动状态
  37.   GUA_ELE[1] = []
  38.   #属性防御
  39.   GUA_STA[1] = []
  40.   #状态防御
  41.   ELEMENT[1] = []
  42.   #攻击属性
  43.   PLU_STA[1] = []
  44.   #攻击附加状态
  45.   MIN_STA[1] = []
  46.   #攻击解除状态
  47.   
  48. #================设置完毕================
  49. end
  50. module RPG
  51. #============================================================================
  52. #补充设置  自定义角色初始扩展装备的ID
  53. #============================================================================
  54. ARMOR5 = [0,0,0,0]#按照角色的ID顺序输入即可
  55. ARMOR6 = [0,0,0,0]
  56. ARMOR7 = [0,0,0,0]
  57. ARMOR8 = [0,0,0,0]
  58. end
  59. module RPG
  60.   class Suit
  61.     attr_reader :id
  62.     attr_reader :weapon_id
  63.     attr_reader :armors_id
  64.     attr_reader :skills_id
  65.     attr_reader :plus
  66.     attr_reader :state
  67.     attr_reader :guard_e
  68.     attr_reader :guard_s
  69.     attr_reader :element
  70.     attr_reader :state_p
  71.     attr_reader :state_m
  72.     def initialize(suit_id)
  73.       @id = suit_id
  74.       @weapon_id = SUITS::WEAPON[@id]
  75.       @armors_id = SUITS::ARMORS[@id]
  76.       @skills_id = SUITS::SKILLS[@id]
  77.       [url=home.php?mod=space&uid=304334]@plus[/url] = SUITS::PAR_PLU[@id]
  78.       @state = SUITS::AUT_STA[@id]
  79.       @guard_e = SUITS::GUA_ELE[@id]
  80.       @guard_s = SUITS::GUA_STA[@id]
  81.       [url=home.php?mod=space&uid=12971]@element[/url] = SUITS::ELEMENT[@id]
  82.       @state_p = SUITS::PLU_STA[@id]
  83.       @state_m = SUITS::MIN_STA[@id]
  84.     end
  85.   end
  86.   def self.create
  87.     all_suits = []
  88.     for i in 1...SUITS::WEAPON.size
  89.       s = Suit.new(i)
  90.       all_suits[i] = s
  91.     end
  92.     return all_suits
  93.   end
  94. end
  95. #=============以上貌似多此一举= =|||==================
  96. class Game_Actor < Game_Battler
  97.   alias setup_suit setup
  98.   def setup(actor_id)
  99.     actor = $data_actors[actor_id]
  100.     @weapon_id = actor.weapon_id
  101.     @armor1_id = actor.armor1_id
  102.     @armor2_id = actor.armor2_id
  103.     @armor3_id = actor.armor3_id
  104.     @armor4_id = actor.armor4_id
  105.     @armor5_id = actor.armor5_id
  106.     @armor6_id = actor.armor6_id
  107.     @armor7_id = actor.armor7_id if defined?(armor7_id) != nil
  108.     @armor8_id = actor.armor8_id if defined?(armor8_id) != nil
  109.     @all_suits = RPG::create
  110.     refresh_suit
  111.     setup_suit(actor_id)
  112.     for suit in 1...@all_suits.size
  113.       suit_skill_list = suits_plus(suit,16)
  114.       for i in suit_skill_list
  115.         learn_skill(i) if suit_whole?(suit)
  116.       end
  117.       state_id = suits_plus(suit,10)
  118.       for id in state_id
  119.         add_state(id, true) if suit_whole?(suit)
  120.       end
  121.     end
  122.   end
  123.   def refresh_suit
  124.     @all_armors_id = [@armor1_id,@armor2_id,@armor3_id,@armor4_id,@armor5_id,@armor6_id]
  125.     @all_armors_id.push(@armor7_id) if defined?(armor7_id) != nil
  126.     @all_armors_id.push(@armor8_id) if defined?(armor8_id) != nil
  127.     @suits_list = get_suits
  128.     if @suits_list == []
  129.       @suits_list.push(0)
  130.     end
  131.   end
  132.   def suit_whole?(suit_id)
  133.     suit = @all_suits[suit_id]
  134.     if suit == nil
  135.       return false
  136.     end
  137.     unless suit.weapon_id.include?(@weapon_id)
  138.       return false if !(suit.weapon_id == (nil or []))
  139.     end
  140.     for j in 0...suit.armors_id.size
  141.       if suit.armors_id[j] == (nil or [])
  142.         next
  143.       end
  144.       unless suit.armors_id[j].include?(@all_armors_id[j])
  145.         return false
  146.       end
  147.     end
  148.     return true
  149.   end
  150.   def get_suits
  151.     suits = []
  152.     for i in 1...@all_suits.size
  153.       if suit_whole?(i)
  154.         suits.push(i)
  155.       end
  156.     end
  157.     return suits
  158.   end
  159.   def suits_plus(id,parameter)
  160.     if id == 0
  161.       if parameter < 10
  162.         return 0
  163.       else
  164.         return []
  165.       end
  166.     end
  167.     suit = @all_suits[id]
  168.     if parameter < 10
  169.       return suit.plus[parameter]
  170.     else
  171.       case parameter
  172.       when 10
  173.         return suit.state
  174.       when 11
  175.         return suit.guard_e
  176.       when 12
  177.         return suit.guard_s
  178.       when 13
  179.         return suit.element
  180.       when 14
  181.         return suit.state_p
  182.       when 15
  183.         return suit.state_m
  184.       when 16
  185.         return suit.skills_id
  186.       else
  187.         return nil
  188.       end
  189.     end
  190.   end
  191.   alias base_maxhp_suit base_maxhp
  192.   def base_maxhp
  193.     n = base_maxhp_suit
  194.     for i in @suits_list
  195.       n += suits_plus(i,0)
  196.     end
  197.     return n
  198.   end
  199.   alias base_maxsp_suit base_maxsp
  200.   def base_maxsp
  201.     n = base_maxsp_suit
  202.     for i in @suits_list
  203.       n += suits_plus(i,1)
  204.     end
  205.     return n
  206.   end
  207.   alias base_str_suit base_str
  208.   def base_str
  209.     n = base_str_suit
  210.     for i in @suits_list
  211.       n += suits_plus(i,2)
  212.     end
  213.     return n
  214.   end
  215.   alias base_dex_suit base_dex
  216.   def base_dex
  217.     n = base_dex_suit
  218.     for i in @suits_list
  219.       n += suits_plus(i,3)
  220.     end
  221.     return n
  222.   end
  223.   alias base_agi_suit base_agi
  224.   def base_agi
  225.     n = base_agi_suit
  226.     for i in @suits_list
  227.       n += suits_plus(i,4)
  228.     end
  229.     return n
  230.   end
  231.   alias base_int_suit base_int
  232.   def base_int
  233.     n = base_int_suit
  234.     for i in @suits_list
  235.       n += suits_plus(i,5)
  236.     end
  237.     return n
  238.   end
  239.   alias base_atk_suit base_atk
  240.   def base_atk
  241.     n = base_atk_suit
  242.     for i in @suits_list
  243.       n += suits_plus(i,6)
  244.     end
  245.     return n
  246.   end
  247.   alias base_pdef_suit base_pdef
  248.   def base_pdef
  249.     n = base_pdef_suit
  250.     for i in @suits_list
  251.       n += suits_plus(i,7)
  252.     end
  253.     return n
  254.   end
  255.   alias base_mdef_suit base_mdef
  256.   def base_mdef
  257.     n = base_mdef_suit
  258.     for i in @suits_list
  259.       n += suits_plus(i,8)
  260.     end
  261.     return n
  262.   end
  263.   alias base_eva_suit base_eva
  264.   def base_eva
  265.     n = base_eva_suit
  266.     for i in @suits_list
  267.       n += suits_plus(i,9)
  268.     end
  269.     return n
  270.   end
  271.   alias suit_element_rate element_rate
  272.   def element_rate(element_id)
  273.     result = suit_element_rate(element_id)
  274.     for suit in @suits_list
  275.       suit_element_guard = suits_plus(suit,11)
  276.       result/= 2 if suit_element_guard.include?(element_id)
  277.     end
  278.     return result
  279.   end
  280.   alias suit_state_guard? state_guard?
  281.   def state_guard?(state_id)
  282.     result = suit_state_guard?(state_id)
  283.     for suit in @suits_list
  284.       suit_state_guard = suits_plus(suit,12)
  285.       result = suit_state_guard.include?(state_id)
  286.     end
  287.     return result
  288.   end
  289.   alias suit_element_set element_set
  290.   def element_set
  291.     result = suit_element_set
  292.     for suit in @suits_list
  293.       suit_element = suits_plus(suit,13)
  294.       for i in suit_element
  295.         result.push(i) if !result.include?(i)
  296.       end
  297.     end
  298.     return result
  299.   end
  300.   alias suit_plus_state_set plus_state_set
  301.   def plus_state_set
  302.     result = suit_plus_state_set
  303.     for suit in @suits_list
  304.       suit_plus_state = suits_plus(suit,14)
  305.       for i in suit_plus_state
  306.         result.push(i) if !result.include?(i)
  307.       end
  308.     end
  309.     return result
  310.   end
  311.   alias suit_minus_state_set minus_state_set
  312.   def minus_state_set
  313.     result = suit_minus_state_set
  314.     for suit in @suits_list
  315.       suit_minus_state = suits_plus(suit,15)
  316.       for i in suit_minus_state
  317.         result.push(i) if !result.include?(i)
  318.       end
  319.     end
  320.     return result
  321.   end
  322.   alias suit_equip equip
  323.   def equip(equip_type, id)
  324.     suit_equip(equip_type, id)
  325.     refresh_suit
  326.     for suit in 1...@all_suits.size
  327.       suit_skill_list = suits_plus(suit,16)
  328.       for i in suit_skill_list
  329.         learn_skill(i) if suit_whole?(suit)
  330.         forget_skill(i) if skill_learn?(i) and !suit_whole?(suit)
  331.       end
  332.       state_id = suits_plus(suit,10)
  333.       for id in state_id
  334.         add_state(id, true) if suit_whole?(suit)
  335.         remove_state(id, true) if state?(id) and !suit_whole?(suit)
  336.       end
  337.     end
  338.   end
  339. end
  340. module RPG
  341.   class Actor
  342.     def armor5_id
  343.       return (ARMOR5[@id-1] == nil ? 0 : ARMOR5[@id-1])
  344.     end
  345.     def armor6_id
  346.       return (ARMOR6[@id-1] == nil ? 0 : ARMOR6[@id-1])
  347.     end
  348.     def armor7_id
  349.       return (ARMOR7[@id-1] == nil ? 0 : ARMOR7[@id-1])
  350.     end
  351.     def armor8_id
  352.       return (ARMOR8[@id-1] == nil ? 0 : ARMOR8[@id-1])
  353.     end
  354.   end
  355. end
复制代码
  1. # ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
  2. #
  3. #                                防具类追加
  4. #
  5. # ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
  6. module RPG
  7.   class Armor
  8.     def name
  9.       name = @name.split(/,/)[0]
  10.       return name != nil ? name : ''
  11.     end
  12.     def kind
  13.       kind  = @name.split(/,/)[1]
  14.       return kind  != nil ? kind.to_i : @kind
  15.     end
  16.   end
  17. end
  18. # ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
  19. #
  20. #                  Game_Actor添加新的防具ID,并对相关方法修正
  21. #
  22. # ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
  23. class Game_Actor < Game_Battler
  24.   attr_reader   :armor5_id                # 项链 ID
  25.   attr_reader   :armor6_id                # 戒指 ID
  26.   #--------------------------------------------------------------------------
  27.   # ● 设置
  28.   #     actor_id : 角色 ID
  29.   #--------------------------------------------------------------------------
  30.   alias old_setup setup
  31.   def setup(actor_id)
  32.     old_setup(actor_id)
  33.     @armor5_id = 0
  34.     @armor6_id = 0
  35.     update_auto_state(nil, $data_armors[@armor5_id])
  36.     update_auto_state(nil, $data_armors[@armor6_id])
  37.   end
  38.   #--------------------------------------------------------------------------
  39.   # ● 取得属性修正值
  40.   #     element_id : 属性 ID
  41.   #--------------------------------------------------------------------------
  42.   def element_rate(element_id)
  43.     # 获取对应属性有效度的数值
  44.     table = [0,200,150,100,50,0,-100]
  45.     result = table[$data_classes[@class_id].element_ranks[element_id]]
  46.     # 防具能防御本属性的情况下效果减半
  47.     for i in [@armor1_id, @armor2_id, @armor3_id, @armor4_id, @armor5_id, @armor6_id]
  48.       armor = $data_armors[i]
  49.       if armor != nil and armor.guard_element_set.include?(element_id)
  50.         result /= 2
  51.       end
  52.     end
  53.     # 状态能防御本属性的情况下效果减半
  54.     for i in @states
  55.       if $data_states[i].guard_element_set.include?(element_id)
  56.         result /= 2
  57.       end
  58.     end
  59.     # 过程结束
  60.     return result
  61.   end
  62.   #--------------------------------------------------------------------------
  63.   # ● 判定防御属性
  64.   #     state_id : 属性 ID
  65.   #--------------------------------------------------------------------------
  66.   def state_guard?(state_id)
  67.     for i in [@armor1_id, @armor2_id, @armor3_id, @armor4_id, @armor5_id, @armor6_id]
  68.       armor = $data_armors[i]
  69.       if armor != nil
  70.         if armor.guard_state_set.include?(state_id)
  71.           return true
  72.         end
  73.       end
  74.     end
  75.     return false
  76.   end
  77.   #--------------------------------------------------------------------------
  78.   # ● 获取基本力量
  79.   #--------------------------------------------------------------------------
  80.   def base_str
  81.     n = $data_actors[@actor_id].parameters[2, @level]
  82.     weapon = $data_weapons[@weapon_id]
  83.     armor1 = $data_armors[@armor1_id]
  84.     armor2 = $data_armors[@armor2_id]
  85.     armor3 = $data_armors[@armor3_id]
  86.     armor4 = $data_armors[@armor4_id]
  87.     armor5 = $data_armors[@armor5_id]
  88.     armor6 = $data_armors[@armor6_id]
  89.     n += weapon != nil ? weapon.str_plus : 0
  90.     n += armor1 != nil ? armor1.str_plus : 0
  91.     n += armor2 != nil ? armor2.str_plus : 0
  92.     n += armor3 != nil ? armor3.str_plus : 0
  93.     n += armor4 != nil ? armor4.str_plus : 0
  94.     n += armor5 != nil ? armor5.str_plus : 0
  95.     n += armor6 != nil ? armor6.str_plus : 0
  96.     return [[n, 1].max, 999].min
  97.   end
  98.   #--------------------------------------------------------------------------
  99.   # ● 获取基本灵巧
  100.   #--------------------------------------------------------------------------
  101.   def base_dex
  102.     n = $data_actors[@actor_id].parameters[3, @level]
  103.     weapon = $data_weapons[@weapon_id]
  104.     armor1 = $data_armors[@armor1_id]
  105.     armor2 = $data_armors[@armor2_id]
  106.     armor3 = $data_armors[@armor3_id]
  107.     armor4 = $data_armors[@armor4_id]
  108.     armor5 = $data_armors[@armor5_id]
  109.     armor6 = $data_armors[@armor6_id]
  110.     n += weapon != nil ? weapon.dex_plus : 0
  111.     n += armor1 != nil ? armor1.dex_plus : 0
  112.     n += armor2 != nil ? armor2.dex_plus : 0
  113.     n += armor3 != nil ? armor3.dex_plus : 0
  114.     n += armor4 != nil ? armor4.dex_plus : 0
  115.     n += armor5 != nil ? armor5.dex_plus : 0
  116.     n += armor6 != nil ? armor6.dex_plus : 0
  117.     return [[n, 1].max, 999].min
  118.   end
  119.   #--------------------------------------------------------------------------
  120.   # ● 获取基本速度
  121.   #--------------------------------------------------------------------------
  122.   def base_agi
  123.     n = $data_actors[@actor_id].parameters[4, @level]
  124.     weapon = $data_weapons[@weapon_id]
  125.     armor1 = $data_armors[@armor1_id]
  126.     armor2 = $data_armors[@armor2_id]
  127.     armor3 = $data_armors[@armor3_id]
  128.     armor4 = $data_armors[@armor4_id]
  129.     armor5 = $data_armors[@armor5_id]
  130.     armor6 = $data_armors[@armor6_id]
  131.     n += weapon != nil ? weapon.agi_plus : 0
  132.     n += armor1 != nil ? armor1.agi_plus : 0
  133.     n += armor2 != nil ? armor2.agi_plus : 0
  134.     n += armor3 != nil ? armor3.agi_plus : 0
  135.     n += armor4 != nil ? armor4.agi_plus : 0
  136.     n += armor5 != nil ? armor5.agi_plus : 0
  137.     n += armor6 != nil ? armor6.agi_plus : 0
  138.     return [[n, 1].max, 999].min
  139.   end
  140.   #--------------------------------------------------------------------------
  141.   # ● 获取基本魔力
  142.   #--------------------------------------------------------------------------
  143.   def base_int
  144.     n = $data_actors[@actor_id].parameters[5, @level]
  145.     weapon = $data_weapons[@weapon_id]
  146.     armor1 = $data_armors[@armor1_id]
  147.     armor2 = $data_armors[@armor2_id]
  148.     armor3 = $data_armors[@armor3_id]
  149.     armor4 = $data_armors[@armor4_id]
  150.     armor5 = $data_armors[@armor5_id]
  151.     armor6 = $data_armors[@armor6_id]
  152.     n += weapon != nil ? weapon.int_plus : 0
  153.     n += armor1 != nil ? armor1.int_plus : 0
  154.     n += armor2 != nil ? armor2.int_plus : 0
  155.     n += armor3 != nil ? armor3.int_plus : 0
  156.     n += armor4 != nil ? armor4.int_plus : 0
  157.     n += armor5 != nil ? armor5.int_plus : 0
  158.     n += armor6 != nil ? armor6.int_plus : 0
  159.     return [[n, 1].max, 999].min
  160.   end
  161.   #--------------------------------------------------------------------------
  162.   # ● 获取基本物理防御
  163.   #--------------------------------------------------------------------------
  164.   def base_pdef
  165.     weapon = $data_weapons[@weapon_id]
  166.     armor1 = $data_armors[@armor1_id]
  167.     armor2 = $data_armors[@armor2_id]
  168.     armor3 = $data_armors[@armor3_id]
  169.     armor4 = $data_armors[@armor4_id]
  170.     armor5 = $data_armors[@armor5_id]
  171.     armor6 = $data_armors[@armor6_id]
  172.     pdef1 = weapon != nil ? weapon.pdef : 0
  173.     pdef2 = armor1 != nil ? armor1.pdef : 0
  174.     pdef3 = armor2 != nil ? armor2.pdef : 0
  175.     pdef4 = armor3 != nil ? armor3.pdef : 0
  176.     pdef5 = armor4 != nil ? armor4.pdef : 0
  177.     pdef6 = armor5 != nil ? armor5.pdef : 0
  178.     pdef7 = armor6 != nil ? armor6.pdef : 0
  179.     return pdef1 + pdef2 + pdef3 + pdef4 + pdef5 + pdef6 + pdef7
  180.   end
  181.   #--------------------------------------------------------------------------
  182.   # ● 获取基本魔法防御
  183.   #--------------------------------------------------------------------------
  184.   def base_mdef
  185.     weapon = $data_weapons[@weapon_id]
  186.     armor1 = $data_armors[@armor1_id]
  187.     armor2 = $data_armors[@armor2_id]
  188.     armor3 = $data_armors[@armor3_id]
  189.     armor4 = $data_armors[@armor4_id]
  190.     armor5 = $data_armors[@armor5_id]
  191.     armor6 = $data_armors[@armor6_id]
  192.     mdef1 = weapon != nil ? weapon.mdef : 0
  193.     mdef2 = armor1 != nil ? armor1.mdef : 0
  194.     mdef3 = armor2 != nil ? armor2.mdef : 0
  195.     mdef4 = armor3 != nil ? armor3.mdef : 0
  196.     mdef5 = armor4 != nil ? armor4.mdef : 0
  197.     mdef6 = armor5 != nil ? armor5.mdef : 0
  198.     mdef7 = armor6 != nil ? armor6.mdef : 0
  199.     return mdef1 + mdef2 + mdef3 + mdef4 + mdef5 + mdef6 + mdef7
  200.   end
  201.   #--------------------------------------------------------------------------
  202.   # ● 获取基本回避修正
  203.   #--------------------------------------------------------------------------
  204.   def base_eva
  205.     armor1 = $data_armors[@armor1_id]
  206.     armor2 = $data_armors[@armor2_id]
  207.     armor3 = $data_armors[@armor3_id]
  208.     armor4 = $data_armors[@armor4_id]
  209.     armor5 = $data_armors[@armor5_id]
  210.     armor6 = $data_armors[@armor6_id]
  211.     eva1 = armor1 != nil ? armor1.eva : 0
  212.     eva2 = armor2 != nil ? armor2.eva : 0
  213.     eva3 = armor3 != nil ? armor3.eva : 0
  214.     eva4 = armor4 != nil ? armor4.eva : 0
  215.     eva5 = armor5 != nil ? armor5.eva : 0
  216.     eva6 = armor6 != nil ? armor6.eva : 0
  217.     return eva1 + eva2 + eva3 + eva4 + eva5 + eva6
  218.   end
  219.   #--------------------------------------------------------------------------
  220.   # ● 装备固定判定
  221.   #     equip_type : 装备类型
  222.   #--------------------------------------------------------------------------
  223.   def equip_fix?(equip_type)
  224.     case equip_type
  225.     when 0  # 武器
  226.       return $data_actors[@actor_id].weapon_fix
  227.     when 1  # 盾
  228.       return $data_actors[@actor_id].armor1_fix
  229.     when 2  # 头
  230.       return $data_actors[@actor_id].armor2_fix
  231.     when 3  # 身体
  232.       return $data_actors[@actor_id].armor3_fix
  233.     when 4  # 装饰品
  234.       return $data_actors[@actor_id].armor4_fix
  235.     end
  236.     return false
  237.   end
  238.   #--------------------------------------------------------------------------
  239.   # ● 变更装备
  240.   #     equip_type : 装备类型
  241.   #     id    : 武器 or 防具 ID  (0 为解除装备)
  242.   #--------------------------------------------------------------------------
  243.   def equip(equip_type, id)
  244.     case equip_type
  245.     when 0  # 武器
  246.       if id == 0 or $game_party.weapon_number(id) > 0
  247.         $game_party.gain_weapon(@weapon_id, 1)
  248.         @weapon_id = id
  249.         $game_party.lose_weapon(id, 1)
  250.       end
  251.     when 1  # 盾
  252.       if id == 0 or $game_party.armor_number(id) > 0
  253.         update_auto_state($data_armors[@armor1_id], $data_armors[id])
  254.         $game_party.gain_armor(@armor1_id, 1)
  255.         @armor1_id = id
  256.         $game_party.lose_armor(id, 1)
  257.       end
  258.     when 2  # 头
  259.       if id == 0 or $game_party.armor_number(id) > 0
  260.         update_auto_state($data_armors[@armor2_id], $data_armors[id])
  261.         $game_party.gain_armor(@armor2_id, 1)
  262.         @armor2_id = id
  263.         $game_party.lose_armor(id, 1)
  264.       end
  265.     when 3  # 身体
  266.       if id == 0 or $game_party.armor_number(id) > 0
  267.         update_auto_state($data_armors[@armor3_id], $data_armors[id])
  268.         $game_party.gain_armor(@armor3_id, 1)
  269.         @armor3_id = id
  270.         $game_party.lose_armor(id, 1)
  271.       end
  272.     when 4  # 装饰品
  273.       if id == 0 or $game_party.armor_number(id) > 0
  274.         update_auto_state($data_armors[@armor4_id], $data_armors[id])
  275.         $game_party.gain_armor(@armor4_id, 1)
  276.         @armor4_id = id
  277.         $game_party.lose_armor(id, 1)
  278.       end
  279.     when 5  # 项链
  280.       if id == 0 or $game_party.armor_number(id) > 0
  281.         update_auto_state($data_armors[@armor5_id], $data_armors[id])
  282.         $game_party.gain_armor(@armor5_id, 1)
  283.         @armor5_id = id
  284.         $game_party.lose_armor(id, 1)
  285.       end
  286.     when 6  # 鞋
  287.       if id == 0 or $game_party.armor_number(id) > 0
  288.         update_auto_state($data_armors[@armor6_id], $data_armors[id])
  289.         $game_party.gain_armor(@armor6_id, 1)
  290.         @armor6_id = id
  291.         $game_party.lose_armor(id, 1)
  292.       end
  293.     end
  294.   end
  295.   #--------------------------------------------------------------------------
  296.   # ● 更改职业 ID
  297.   #     class_id : 新的职业 ID
  298.   #--------------------------------------------------------------------------
  299.   def class_id=(class_id)
  300.     if $data_classes[class_id] != nil
  301.       @class_id = class_id
  302.       # 避开无法装备的物品
  303.       unless equippable?($data_weapons[@weapon_id])
  304.         equip(0, 0)
  305.       end
  306.       unless equippable?($data_armors[@armor1_id])
  307.         equip(1, 0)
  308.       end
  309.       unless equippable?($data_armors[@armor2_id])
  310.         equip(2, 0)
  311.       end
  312.       unless equippable?($data_armors[@armor3_id])
  313.         equip(3, 0)
  314.       end
  315.       unless equippable?($data_armors[@armor4_id])
  316.         equip(4, 0)
  317.       end
  318.       unless equippable?($data_armors[@armor5_id])
  319.         equip(5, 0)
  320.       end
  321.       unless equippable?($data_armors[@armor6_id])
  322.         equip(6, 0)
  323.       end
  324.     end
  325.   end
  326. end
  327. # ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
  328. #
  329. #              Window_Base美化,增加属性增减颜色,及全能力值描绘
  330. #
  331. # ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
  332. #==============================================================================
  333. # ■ Window_Base
  334. #------------------------------------------------------------------------------
  335. #  游戏中全部窗口的超级类。
  336. #==============================================================================

  337. class Window_Base < Window
  338.   ################## 属性增减颜色 ##############################
  339.   def up_color
  340.     return Color.new(0, 255, 0)
  341.   end
  342.   def down_color
  343.     return Color.new(255, 0, 0)
  344.   end
  345.   #--------------------------------------------------------------------------
  346.   # ● 描绘能力值
  347.   #     actor : 角色
  348.   #     x     : 描画目标 X 坐标
  349.   #     y     : 描画目标 Y 坐标
  350.   #     type  : 能力值种类 (0~6)
  351.   #--------------------------------------------------------------------------
  352.   def draw_actor_parameter(actor, x, y, type)
  353.     case type
  354.     when 0
  355.       parameter_name = $data_system.words.atk
  356.       parameter_value = actor.atk
  357.     when 1
  358.       parameter_name = $data_system.words.pdef
  359.       parameter_value = actor.pdef
  360.     when 2
  361.       parameter_name = $data_system.words.mdef
  362.       parameter_value = actor.mdef
  363.     when 3
  364.       parameter_name = $data_system.words.str
  365.       parameter_value = actor.str
  366.     when 4
  367.       parameter_name = $data_system.words.dex
  368.       parameter_value = actor.dex
  369.     when 5
  370.       parameter_name = $data_system.words.agi
  371.       parameter_value = actor.agi
  372.     when 6
  373.       parameter_name = $data_system.words.int
  374.       parameter_value = actor.int
  375.     when 7
  376.       parameter_name = "AVD"
  377.       parameter_value = actor.eva
  378.     end
  379.     self.contents.font.color = system_color
  380.     self.contents.draw_text(x, y, 120, 32, parameter_name)
  381.     self.contents.font.color = normal_color
  382.     self.contents.draw_text(x + 80, y, 36, 32, parameter_value.to_s, 2)
  383.   end
  384. end
  385. # ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
  386. #
  387. #              装备窗口美化,全能力值描绘并追加新的防具装备栏
  388. #
  389. # ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
  390. #==============================================================================
  391. # ■ Window_EquipRight
  392. #------------------------------------------------------------------------------
  393. #  装备画面、显示角色现在装备的物品的窗口。
  394. #==============================================================================

  395. class Window_EquipRight < Window_Selectable
  396.   #--------------------------------------------------------------------------
  397.   # ● 初始化对像
  398.   #     actor : 角色
  399.   #--------------------------------------------------------------------------
  400.   def initialize(actor)
  401.     super(272, 64, 348, 256)
  402.     self.contents = Bitmap.new(width - 32, height - 32)
  403.     [url=home.php?mod=space&uid=95897]@actor[/url] = actor
  404.     refresh
  405.     self.index = 0
  406.   end
  407.   #--------------------------------------------------------------------------
  408.   # ● 刷新
  409.   #--------------------------------------------------------------------------
  410.   def refresh
  411.     self.contents.clear
  412.     @data = []
  413.     @data.push($data_weapons[@actor.weapon_id])
  414.     @data.push($data_armors[@actor.armor1_id])
  415.     @data.push($data_armors[@actor.armor2_id])
  416.     @data.push($data_armors[@actor.armor3_id])
  417.     @data.push($data_armors[@actor.armor4_id])
  418.     @data.push($data_armors[@actor.armor5_id])
  419.     @data.push($data_armors[@actor.armor6_id])
  420.     @item_max = @data.size
  421.     self.contents.font.color = system_color
  422.     self.contents.draw_text(4, 32 * 0, 92, 32, $data_system.words.weapon)
  423.     self.contents.draw_text(4, 32 * 1, 92, 32, $data_system.words.armor1)
  424.     self.contents.draw_text(4, 32 * 2, 92, 32, $data_system.words.armor2)
  425.     self.contents.draw_text(4, 32 * 3, 92, 32, $data_system.words.armor3)
  426.     self.contents.draw_text(4, 32 * 4, 92, 32, $data_system.words.armor4)
  427.     self.contents.draw_text(4, 32 * 5, 92, 32, "项链")
  428.     self.contents.draw_text(4, 32 * 6, 92, 32, "戒指")
  429.     draw_item_name(@data[0], 92, 32 * 0)
  430.     draw_item_name(@data[1], 92, 32 * 1)
  431.     draw_item_name(@data[2], 92, 32 * 2)
  432.     draw_item_name(@data[3], 92, 32 * 3)
  433.     draw_item_name(@data[4], 92, 32 * 4)
  434.     draw_item_name(@data[5], 92, 32 * 5)
  435.     draw_item_name(@data[6], 92, 32 * 6)
  436.   end
  437. end

  438. #==============================================================================
  439. # ■ Window_EquipLeft
  440. #------------------------------------------------------------------------------
  441. #  装备画面的、显示角色能力值变化的窗口。
  442. #==============================================================================

  443. class Window_EquipLeft < Window_Base
  444.   #--------------------------------------------------------------------------
  445.   # ● 初始化对像
  446.   #     actor : 角色
  447.   #--------------------------------------------------------------------------
  448.   def initialize(actor)
  449.     super(20, 64, 252, 396)
  450.     self.contents = Bitmap.new(width - 32, height - 32)
  451.     @actor = actor
  452.     refresh
  453.   end
  454.   #--------------------------------------------------------------------------
  455.   # ● 刷新
  456.   #--------------------------------------------------------------------------
  457.   def refresh
  458.     self.contents.clear
  459.     draw_actor_name(@actor, 4, 0)
  460.     draw_actor_level(@actor, 4, 32)

  461.     draw_actor_parameter(@actor, 4, 64, 0)
  462.     draw_actor_parameter(@actor, 4, 96, 1)
  463.     draw_actor_parameter(@actor, 4, 128, 2)
  464.     draw_actor_parameter(@actor, 4, 160, 7)
  465.     draw_actor_parameter(@actor, 4, 192, 3)
  466.     draw_actor_parameter(@actor, 4, 224, 4)
  467.     draw_actor_parameter(@actor, 4, 256, 5)
  468.     draw_actor_parameter(@actor, 4, 288, 6)
  469.     if @new_atk != nil
  470.       self.contents.font.color = system_color
  471.       self.contents.draw_text(120, 64, 40, 32, "→", 1)
  472.       self.contents.font.color = @new_atk>@actor.atk ? up_color : down_color
  473.       self.contents.font.color = normal_color if @new_atk == @actor.atk
  474.       self.contents.draw_text(160, 64, 36, 32, @new_atk.to_s, 2)
  475.     end
  476.     if @new_pdef != nil
  477.       self.contents.font.color = system_color
  478.       self.contents.draw_text(120, 96, 40, 32, "→", 1)
  479.       self.contents.font.color = @new_pdef>@actor.pdef ? up_color : down_color
  480.       self.contents.font.color = normal_color if @new_pdef == @actor.pdef
  481.       self.contents.draw_text(160, 96, 36, 32, @new_pdef.to_s, 2)
  482.     end
  483.     if @new_mdef != nil
  484.       self.contents.font.color = system_color
  485.       self.contents.draw_text(120, 128, 40, 32, "→", 1)
  486.       self.contents.font.color = @new_mdef>@actor.mdef ? up_color : down_color
  487.       self.contents.font.color = normal_color if @new_mdef == @actor.mdef
  488.       self.contents.draw_text(160, 128, 36, 32, @new_mdef.to_s, 2)
  489.     end
  490.     if @new_eva != nil
  491.       self.contents.font.color = system_color
  492.       self.contents.draw_text(120, 160, 40, 32, "→", 1)
  493.       self.contents.font.color = @new_eva>@actor.eva ? up_color : down_color
  494.       self.contents.font.color = normal_color if @new_eva == @actor.eva
  495.       self.contents.draw_text(160, 160, 36, 32, @new_eva.to_s, 2)
  496.     end
  497.     if @new_str != nil
  498.       self.contents.font.color = system_color
  499.       self.contents.draw_text(120, 192, 40, 32, "→", 1)
  500.       self.contents.font.color = @new_str>@actor.str ? up_color : down_color
  501.       self.contents.font.color = normal_color if @new_str == @actor.str
  502.       self.contents.draw_text(160, 192, 36, 32, @new_str.to_s, 2)
  503.     end
  504.     if @new_dex != nil
  505.       self.contents.font.color = system_color
  506.       self.contents.draw_text(120, 224, 40, 32, "→", 1)
  507.       self.contents.font.color = @new_dex>@actor.dex ? up_color : down_color
  508.       self.contents.font.color = normal_color if @new_dex == @actor.dex
  509.       self.contents.draw_text(160, 224, 36, 32, @new_dex.to_s, 2)
  510.     end
  511.     if @new_agi != nil
  512.       self.contents.font.color = system_color
  513.       self.contents.draw_text(120, 256, 40, 32, "→", 1)
  514.       self.contents.font.color = @new_agi>@actor.agi ? up_color : down_color
  515.       self.contents.font.color = normal_color if @new_agi == @actor.agi
  516.       self.contents.draw_text(160, 256, 36, 32, @new_agi.to_s, 2)
  517.     end
  518.     if @new_int != nil
  519.       self.contents.font.color = system_color
  520.       self.contents.draw_text(120, 288, 40, 32, "→", 1)
  521.       self.contents.font.color = @new_int>@actor.int ? up_color : down_color
  522.       self.contents.font.color = normal_color if @new_int == @actor.int
  523.       self.contents.draw_text(160, 288, 36, 32, @new_int.to_s, 2)
  524.     end
  525.   end
  526.   #--------------------------------------------------------------------------
  527.   # ● 变更装备后的能力值设置
  528.   #     new_atk  : 变更装备后的攻击力
  529.   #     new_pdef : 变更装备后的物理防御
  530.   #     new_mdef : 变更装备后的魔法防御
  531.   #--------------------------------------------------------------------------
  532.   def set_new_parameters(new_atk, new_pdef, new_mdef, new_eva, new_str, new_dex, new_agi, new_int)
  533.     if @new_atk != new_atk or @new_pdef !=new_pdef or @new_mdef != new_mdef or @new_eva != new_eva or @new_str != new_str or @new_dex !=new_dex or @new_agi != new_agi or @new_int != new_int
  534.       @new_atk = new_atk
  535.       @new_pdef = new_pdef
  536.       @new_mdef = new_mdef
  537.       @new_eva = new_eva
  538.       @new_str = new_str
  539.       @new_dex = new_dex
  540.       @new_agi = new_agi
  541.       @new_int = new_int
  542.       refresh
  543.     end
  544.   end
  545. end
  546. #==============================================================================
  547. # ■ Window_EquipItem
  548. #------------------------------------------------------------------------------
  549. #  装备画面、显示浏览变更装备的候补物品的窗口。
  550. #==============================================================================

  551. class Window_EquipItem < Window_Selectable
  552.   #--------------------------------------------------------------------------
  553.   # ● 初始化对像
  554.   #     actor      : 角色
  555.   #     equip_type : 装备部位 (0~3)
  556.   #--------------------------------------------------------------------------
  557.   def initialize(actor, equip_type)
  558.     super(272, 320, 348, 140)
  559.     @actor = actor
  560.     @equip_type = equip_type
  561.     @column_max = 1
  562.     refresh
  563.     self.active = false
  564.     self.index = -1
  565.   end
  566.   #--------------------------------------------------------------------------
  567.   # ● 项目的描绘
  568.   #     index : 项目符号
  569.   #--------------------------------------------------------------------------
  570.   def draw_item(index)
  571.     item = @data[index]
  572.     x = 4
  573.     y = index * 32
  574.     case item
  575.     when RPG::Weapon
  576.       number = $game_party.weapon_number(item.id)
  577.     when RPG::Armor
  578.       number = $game_party.armor_number(item.id)
  579.     end
  580.     bitmap = RPG::Cache.icon(item.icon_name)
  581.     self.contents.blt(x, y + 4, bitmap, Rect.new(0, 0, 24, 24))
  582.     self.contents.font.color = normal_color
  583.     self.contents.draw_text(x + 28, y, 212, 32, item.name, 0)
  584.     self.contents.draw_text(x + 246, y, 16, 32, "×", 1)
  585.     self.contents.draw_text(x + 266, y, 24, 32, number.to_s, 2)
  586.   end
  587. end

  588. class Scene_Equip
  589.   #--------------------------------------------------------------------------
  590.   # ● 主处理
  591.   #--------------------------------------------------------------------------
  592.   def main
  593.     # 获取角色
  594.     @actor = $game_party.actors[@actor_index]
  595.     # 生成窗口
  596.     @help_window = Window_Help.new
  597.     @left_window = Window_EquipLeft.new(@actor)
  598.     @right_window = Window_EquipRight.new(@actor)
  599.     @item_window1 = Window_EquipItem.new(@actor, 0)
  600.     @item_window2 = Window_EquipItem.new(@actor, 1)
  601.     @item_window3 = Window_EquipItem.new(@actor, 2)
  602.     @item_window4 = Window_EquipItem.new(@actor, 3)
  603.     @item_window5 = Window_EquipItem.new(@actor, 4)
  604.     @item_window6 = Window_EquipItem.new(@actor, 5)
  605.     @item_window7 = Window_EquipItem.new(@actor, 5)
  606.     # 关联帮助窗口
  607.     @right_window.help_window = @help_window
  608.     @item_window1.help_window = @help_window
  609.     @item_window2.help_window = @help_window
  610.     @item_window3.help_window = @help_window
  611.     @item_window4.help_window = @help_window
  612.     @item_window5.help_window = @help_window
  613.     @item_window6.help_window = @help_window
  614.     @item_window7.help_window = @help_window
  615.     # 设置光标位置
  616.     @right_window.index = @equip_index
  617.     refresh
  618.     # 执行过渡
  619.     Graphics.transition
  620.     # 主循环
  621.     loop do
  622.       # 刷新游戏画面
  623.       Graphics.update
  624.       # 刷新输入信息
  625.       Input.update
  626.       # 刷新画面
  627.       update
  628.       # 如果画面切换的话的就中断循环
  629.       if $scene != self
  630.         break
  631.       end
  632.     end
  633.     # 准备过渡
  634.     Graphics.freeze
  635.     # 释放窗口
  636.     @help_window.dispose
  637.     @left_window.dispose
  638.     @right_window.dispose
  639.     @item_window1.dispose
  640.     @item_window2.dispose
  641.     @item_window3.dispose
  642.     @item_window4.dispose
  643.     @item_window5.dispose
  644.     @item_window6.dispose
  645.     @item_window7.dispose
  646.   end
  647.   #--------------------------------------------------------------------------
  648.   # ● 刷新
  649.   #--------------------------------------------------------------------------
  650.   def refresh
  651.     # 设置物品窗口的可视状态
  652.     @item_window1.visible = (@right_window.index == 0)
  653.     @item_window2.visible = (@right_window.index == 1)
  654.     @item_window3.visible = (@right_window.index == 2)
  655.     @item_window4.visible = (@right_window.index == 3)
  656.     @item_window5.visible = (@right_window.index == 4)
  657.     @item_window6.visible = (@right_window.index == 5)
  658.     @item_window7.visible = (@right_window.index == 6)
  659.     # 获取当前装备中的物品
  660.     item1 = @right_window.item
  661.     # 设置当前的物品窗口到 @item_window
  662.     case @right_window.index
  663.     when 0
  664.       @item_window = @item_window1
  665.     when 1
  666.       @item_window = @item_window2
  667.     when 2
  668.       @item_window = @item_window3
  669.     when 3
  670.       @item_window = @item_window4
  671.     when 4
  672.       @item_window = @item_window5
  673.     when 5
  674.       @item_window = @item_window6
  675.     when 6
  676.       @item_window = @item_window7
  677.     end
  678.     # 右窗口被激活的情况下
  679.     if @right_window.active
  680.       # 删除变更装备后的能力
  681.     ###############################################################
  682.       @left_window.set_new_parameters(nil, nil, nil, nil, nil, nil, nil, nil)
  683.     end
  684.     # 物品窗口被激活的情况下
  685.     if @item_window.active
  686.       # 获取现在选中的物品
  687.       item2 = @item_window.item
  688.       # 变更装备
  689.       last_hp = @actor.hp
  690.       last_sp = @actor.sp
  691.       @actor.equip(@right_window.index, item2 == nil ? 0 : item2.id)
  692.     ###############################################################
  693.       # 获取变更装备后的能力值
  694.       new_atk = @actor.atk
  695.       new_pdef = @actor.pdef
  696.       new_mdef = @actor.mdef
  697.       new_eva = @actor.eva
  698.       new_str = @actor.str
  699.       new_dex = @actor.dex
  700.       new_agi = @actor.agi
  701.       new_int = @actor.int
  702.       # 返回到装备
  703.       @actor.equip(@right_window.index, item1 == nil ? 0 : item1.id)
  704.       @actor.hp = last_hp
  705.       @actor.sp = last_sp
  706.       # 描画左窗口
  707.     ###############################################################
  708.       @left_window.set_new_parameters(new_atk, new_pdef, new_mdef, new_eva, new_str, new_dex, new_agi, new_int)
  709.     ###############################################################
  710.     end
  711.   end
  712. end
  713. # ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
  714. #
  715. #              状态窗口美化,全防具装备栏描绘
  716. #
  717. # ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
  718. #==============================================================================
  719. # ■ Window_Status
  720. #------------------------------------------------------------------------------
  721. #  显示状态画面、完全规格的状态窗口。
  722. #==============================================================================

  723. class Window_Status < Window_Base
  724.   #--------------------------------------------------------------------------
  725.   # ● 刷新
  726.   #--------------------------------------------------------------------------
  727.   def refresh
  728.     self.contents.clear
  729.     draw_actor_graphic(@actor, 40, 112)
  730.     draw_actor_name(@actor, 4, 0)
  731.     draw_actor_class(@actor, 4 + 144, 0)
  732.     draw_actor_level(@actor, 96, 32)
  733.     draw_actor_state(@actor, 96, 64)
  734.     draw_actor_hp(@actor, 96, 112, 172)
  735.     draw_actor_sp(@actor, 96, 144, 172)
  736.     draw_actor_parameter(@actor, 96, 190, 0)
  737.     draw_actor_parameter(@actor, 96, 220, 1)
  738.     draw_actor_parameter(@actor, 96, 250, 2)
  739.     draw_actor_parameter(@actor, 96, 280, 7)
  740.     draw_actor_parameter(@actor, 96, 310, 3)
  741.     draw_actor_parameter(@actor, 96, 340, 4)
  742.     draw_actor_parameter(@actor, 96, 370, 5)
  743.     draw_actor_parameter(@actor, 96, 400, 6)
  744.     self.contents.font.color = system_color
  745.     self.contents.draw_text(320, 48, 80, 32, "EXP")
  746.     self.contents.draw_text(320, 80, 80, 32, "NEXT")
  747.     self.contents.font.color = normal_color
  748.     self.contents.draw_text(320 + 80, 48, 84, 32, @actor.exp_s, 2)
  749.     self.contents.draw_text(320 + 80, 80, 84, 32, @actor.next_rest_exp_s, 2)
  750.     self.contents.font.color = system_color
  751.     self.contents.draw_text(320, 160, 96, 32, "装备")
  752.     draw_item_name($data_weapons[@actor.weapon_id], 320 + 16, 208)
  753.     draw_item_name($data_armors[@actor.armor1_id], 320 + 16, 240)
  754.     draw_item_name($data_armors[@actor.armor2_id], 320 + 16, 272)
  755.     draw_item_name($data_armors[@actor.armor3_id], 320 + 16, 304)
  756.     draw_item_name($data_armors[@actor.armor4_id], 320 + 16, 336)
  757.     draw_item_name($data_armors[@actor.armor5_id], 320 + 16, 368)
  758.     draw_item_name($data_armors[@actor.armor6_id], 320 + 16, 400)
  759.   end
  760.   def dummy
  761.     self.contents.font.color = system_color
  762.     self.contents.draw_text(320, 112, 96, 32, $data_system.words.weapon)
  763.     self.contents.draw_text(320, 176, 96, 32, $data_system.words.armor1)
  764.     self.contents.draw_text(320, 240, 96, 32, $data_system.words.armor2)
  765.     self.contents.draw_text(320, 304, 96, 32, $data_system.words.armor3)
  766.     self.contents.draw_text(320, 368, 96, 32, $data_system.words.armor4)
  767.     draw_item_name($data_weapons[@actor.weapon_id], 320 + 24, 144)
  768.     draw_item_name($data_armors[@actor.armor1_id], 320 + 24, 208)
  769.     draw_item_name($data_armors[@actor.armor2_id], 320 + 24, 272)
  770.     draw_item_name($data_armors[@actor.armor3_id], 320 + 24, 336)
  771.     draw_item_name($data_armors[@actor.armor4_id], 320 + 24, 400)
  772.   end
  773. end
  774. # ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
  775. #
  776. #              商店购买窗口美化,增加对新装备位置的描述
  777. #
  778. # ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
  779. #==============================================================================
  780. # ■ Window_ShopStatus
  781. #------------------------------------------------------------------------------
  782. #  商店画面、显示物品所持数与角色装备的窗口。
  783. #==============================================================================

  784. class Window_ShopStatus < Window_Base
  785.   #--------------------------------------------------------------------------
  786.   # ● 刷新
  787.   #--------------------------------------------------------------------------
  788.   def refresh
  789.     self.contents.clear
  790.     if @item == nil
  791.       return
  792.     end
  793.     case @item
  794.     when RPG::Item
  795.       number = $game_party.item_number(@item.id)
  796.     when RPG::Weapon
  797.       number = $game_party.weapon_number(@item.id)
  798.     when RPG::Armor
  799.       number = $game_party.armor_number(@item.id)
  800.     end
  801.     self.contents.font.color = system_color
  802.     self.contents.draw_text(4, 0, 200, 32, "所持数")
  803.     self.contents.font.color = normal_color
  804.     self.contents.draw_text(204, 0, 32, 32, number.to_s, 2)
  805.     if @item.is_a?(RPG::Item)
  806.       return
  807.     end
  808.     # 添加装备品信息
  809.     for i in 0...$game_party.actors.size
  810.       # 获取角色
  811.       actor = $game_party.actors[i]
  812.       # 可以装备为普通文字颜色、不能装备设置为无效文字颜色
  813.       if actor.equippable?(@item)
  814.         self.contents.font.color = normal_color
  815.       else
  816.         self.contents.font.color = disabled_color
  817.       end
  818.       # 描绘角色名字
  819.       self.contents.draw_text(4, 64 + 64 * i, 120, 32, actor.name)
  820.       # 获取当前的装备品
  821.       if @item.is_a?(RPG::Weapon)
  822.         item1 = $data_weapons[actor.weapon_id]
  823.       elsif @item.kind == 0
  824.         item1 = $data_armors[actor.armor1_id]
  825.       elsif @item.kind == 1
  826.         item1 = $data_armors[actor.armor2_id]
  827.       elsif @item.kind == 2
  828.         item1 = $data_armors[actor.armor3_id]
  829.       elsif @item.kind == 3
  830.         item1 = $data_armors[actor.armor4_id]
  831.       elsif @item.kind == 4
  832.         item1 = $data_armors[actor.armor5_id]
  833.       else# if @item.kind == 5
  834.         item1 = $data_armors[actor.armor6_id]
  835.       end
  836.       # 可以装备的情况
  837.       if actor.equippable?(@item)
  838.         # 武器的情况
  839.         if @item.is_a?(RPG::Weapon)
  840.           atk1 = item1 != nil ? item1.atk : 0
  841.           atk2 = @item != nil ? @item.atk : 0
  842.           change = atk2 - atk1
  843.         end
  844.         # 防具的情况
  845.         if @item.is_a?(RPG::Armor)
  846.           pdef1 = item1 != nil ? item1.pdef : 0
  847.           mdef1 = item1 != nil ? item1.mdef : 0
  848.           pdef2 = @item != nil ? @item.pdef : 0
  849.           mdef2 = @item != nil ? @item.mdef : 0
  850.           change = pdef2 - pdef1 + mdef2 - mdef1
  851.         end
  852.         # 描绘能力值变化
  853.         self.contents.draw_text(124, 64 + 64 * i, 112, 32,
  854.           sprintf("%+d", change), 2)
  855.       end
  856.       # 描绘物品
  857.       if item1 != nil
  858.         x = 4
  859.         y = 64 + 64 * i + 32
  860.         bitmap = RPG::Cache.icon(item1.icon_name)
  861.         opacity = self.contents.font.color == normal_color ? 255 : 128
  862.         self.contents.blt(x, y + 4, bitmap, Rect.new(0, 0, 24, 24), opacity)
  863.         self.contents.draw_text(x + 28, y, 212, 32, item1.name)
  864.       end
  865.     end
  866.   end
  867. end
复制代码

Lv1.梦旅人

梦石
0
星屑
50
在线时间
197 小时
注册时间
2011-6-10
帖子
231
2
发表于 2013-10-22 03:51:06 | 只看该作者
摸摸,很明显冲突了……
可以把装备扩展的内容移动到套装里面,最明显的冲突比如说能力值的变动之类的……

评分

参与人数 1星屑 +30 收起 理由
myownroc + 30 塞糖

查看全部评分

特点:懒
特性:懒
爱好:潜水

《巴雅前奏曲》目前已完成,正在挖学美工……
新坑:目前正制作中0 0
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-9-30 04:26

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表