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

Project1

 找回密码
 注册会员
搜索
12
返回列表 发新帖
楼主: 退屈£无聊
打印 上一主题 下一主题

[原创发布] 【巨坑】蛐蛐儿的简约(渣)菜单计划(四)技能界面

[复制链接]

Lv1.梦旅人

梦石
0
星屑
46
在线时间
1502 小时
注册时间
2010-8-27
帖子
392
11
发表于 2012-1-8 08:44:26 | 只看该作者
本帖最后由 忧雪の伤 于 2012-1-8 10:51 编辑

L主这个菜单真的很不错呢,不过技能和道具栏拉到下面就显示不出来了,能否调整一下?
另外斗胆试问一下还有是否能和以下脚本
  1. #==============================================================================
  2. # 本脚本来自[url]www.66RPG.com[/url],使用和转载请保留此信息
  3. #==============================================================================
  4. class Scene_Save
  5.   #--------------------------------------------------------------------------
  6.   # ● 写入存档数据
  7.   #     file : 写入用文件对像 (已经打开)
  8.   #--------------------------------------------------------------------------
  9.   def write_save_data(file)
  10.     # 生成描绘存档文件用的角色图形
  11.     characters = []
  12.     for i in 0...[$game_party.actors.size,4].min
  13.       actor = $game_party.actors[i]
  14.       characters.push([actor.character_name, actor.character_hue])
  15.     end
  16.     # 写入描绘存档文件用的角色数据
  17.     Marshal.dump(characters, file)
  18.     # 写入测量游戏时间用画面计数
  19.     Marshal.dump(Graphics.frame_count, file)
  20.     # 增加 1 次存档次数
  21.     $game_system.save_count += 1
  22.     # 保存魔法编号
  23.     # (将编辑器保存的值以随机值替换)
  24.     $game_system.magic_number = $data_system.magic_number
  25.     # 写入各种游戏对像
  26.     Marshal.dump($game_system, file)
  27.     Marshal.dump($game_switches, file)
  28.     Marshal.dump($game_variables, file)
  29.     Marshal.dump($game_self_switches, file)
  30.     Marshal.dump($game_screen, file)
  31.     Marshal.dump($game_actors, file)
  32.     Marshal.dump($game_party, file)
  33.     Marshal.dump($game_troop, file)
  34.     Marshal.dump($game_map, file)
  35.     Marshal.dump($game_player, file)
  36.   end
  37. end
  38. class Scene_Battle
  39.   #--------------------------------------------------------------------------
  40.   # ● 设置物品或特技对像方的战斗者
  41.   #     scope : 特技或者是物品的范围
  42.   #--------------------------------------------------------------------------
  43.   def set_target_battlers(scope)
  44.     # 行动方的战斗者是敌人的情况下
  45.     if @active_battler.is_a?(Game_Enemy)
  46.       # 效果范围分支
  47.       case scope
  48.       when 1  # 敌单体
  49.         index = @active_battler.current_action.target_index
  50.         @target_battlers.push($game_party.smooth_target_actor(index))
  51.       when 2  # 敌全体
  52.         for actor in 0...[$game_party.actors.size,4].min
  53.           if $game_party.actors[actor].exist?
  54.             @target_battlers.push($game_party.actors[actor])
  55.           end
  56.         end
  57.       when 3  # 我方单体
  58.         index = @active_battler.current_action.target_index
  59.         @target_battlers.push($game_troop.smooth_target_enemy(index))
  60.       when 4  # 我方全体
  61.         for enemy in $game_troop.enemies
  62.           if enemy.exist?
  63.             @target_battlers.push(enemy)
  64.           end
  65.         end
  66.       when 5  # 我方单体 (HP 0)
  67.         index = @active_battler.current_action.target_index
  68.         enemy = $game_troop.enemies[index]
  69.         if enemy != nil and enemy.hp0?
  70.           @target_battlers.push(enemy)
  71.         end
  72.       when 6  # 我方全体 (HP 0)
  73.         for enemy in $game_troop.enemies
  74.           if enemy != nil and enemy.hp0?
  75.             @target_battlers.push(enemy)
  76.           end
  77.         end
  78.       when 7  # 使用者
  79.         @target_battlers.push(@active_battler)
  80.       end
  81.     end
  82.     # 行动方的战斗者是角色的情况下
  83.     if @active_battler.is_a?(Game_Actor)
  84.       # 效果范围分支
  85.       case scope
  86.       when 1  # 敌单体
  87.         index = @active_battler.current_action.target_index
  88.         @target_battlers.push($game_troop.smooth_target_enemy(index))
  89.       when 2  # 敌全体
  90.         for enemy in $game_troop.enemies
  91.           if enemy.exist?
  92.             @target_battlers.push(enemy)
  93.           end
  94.         end
  95.       when 3  # 我方单体
  96.         index = @active_battler.current_action.target_index
  97.         @target_battlers.push($game_party.smooth_target_actor(index))
  98.       when 4  # 我方全体
  99.         for actor in 0...[$game_party.actors.size,4].min
  100.           if $game_party.actors[actor].exist?
  101.             @target_battlers.push($game_party.actors[actor])
  102.           end
  103.         end
  104.       when 5  # 我方单体 (HP 0)
  105.         index = @active_battler.current_action.target_index
  106.         actor = $game_party.actors[index]
  107.         if actor != nil and actor.hp0?
  108.           @target_battlers.push(actor)
  109.         end
  110.       when 6  # 我方全体 (HP 0)
  111.         for actor in 0...[$game_party.actors.size,4].min
  112.           if $game_party.actors[actor] != nil and $game_party.actors[actor].hp0?
  113.             @target_battlers.push($game_party.actors[actor])
  114.           end
  115.         end
  116.       when 7  # 使用者
  117.         @target_battlers.push(@active_battler)
  118.       end
  119.     end
  120.   end  
  121.   #--------------------------------------------------------------------------
  122.   # ● 生成行动循序
  123.   #--------------------------------------------------------------------------
  124.   def make_action_orders
  125.     # 初始化序列 @action_battlers
  126.     @action_battlers = []
  127.     # 添加敌人到 @action_battlers 序列
  128.     for enemy in $game_troop.enemies
  129.       @action_battlers.push(enemy)
  130.     end
  131.     # 添加角色到 @action_battlers 序列
  132.     for actor in 0...[$game_party.actors.size,4].min
  133.       @action_battlers.push($game_party.actors[actor])
  134.     end
  135.     # 确定全体的行动速度
  136.     for battler in @action_battlers
  137.       battler.make_action_speed
  138.     end
  139.     # 按照行动速度从大到小排列
  140.     @action_battlers.sort! {|a,b|
  141.       b.current_action.speed - a.current_action.speed }
  142.   end
  143.   #--------------------------------------------------------------------------
  144.   # ● 开始结束战斗回合
  145.   #--------------------------------------------------------------------------
  146.   def start_phase5
  147.     # 转移到回合 5
  148.     @phase = 5
  149.     # 演奏战斗结束 ME
  150.     $game_system.me_play($game_system.battle_end_me)
  151.     # 还原为战斗开始前的 BGM
  152.     $game_system.bgm_play($game_temp.map_bgm)
  153.     # 初始化 EXP、金钱、宝物
  154.     exp = 0
  155.     gold = 0
  156.     treasures = []
  157.     # 循环
  158.     for enemy in $game_troop.enemies
  159.       # 敌人不是隐藏状态的情况下
  160.       unless enemy.hidden
  161.         # 获得 EXP、增加金钱
  162.         exp += enemy.exp
  163.         gold += enemy.gold
  164.         # 出现宝物判定
  165.         if rand(100) < enemy.treasure_prob
  166.           if enemy.item_id > 0
  167.             treasures.push($data_items[enemy.item_id])
  168.           end
  169.           if enemy.weapon_id > 0
  170.             treasures.push($data_weapons[enemy.weapon_id])
  171.           end
  172.           if enemy.armor_id > 0
  173.             treasures.push($data_armors[enemy.armor_id])
  174.           end
  175.         end
  176.       end
  177.     end
  178.     # 限制宝物数为 6 个
  179.     treasures = treasures[0..5]
  180.     # 获得 EXP
  181.     for i in 0...[$game_party.actors.size,4].min
  182.       actor = $game_party.actors[i]
  183.       if actor.cant_get_exp? == false
  184.         last_level = actor.level
  185.         actor.exp += exp
  186.         if actor.level > last_level
  187.           @status_window.level_up(i)
  188.         end
  189.       end
  190.     end
  191.     # 获得金钱
  192.     $game_party.gain_gold(gold)
  193.     # 获得宝物
  194.     for item in treasures
  195.       case item
  196.       when RPG::Item
  197.         $game_party.gain_item(item.id, 1)
  198.       when RPG::Weapon
  199.         $game_party.gain_weapon(item.id, 1)
  200.       when RPG::Armor
  201.         $game_party.gain_armor(item.id, 1)
  202.       end
  203.     end
  204.     # 生成战斗结果窗口
  205.     @result_window = Window_BattleResult.new(exp, gold, treasures)
  206.     # 设置等待计数
  207.     @phase5_wait_count = 100
  208.   end
  209.   #--------------------------------------------------------------------------
  210.   # ● 转到输入下一个角色的命令
  211.   #--------------------------------------------------------------------------
  212.   def phase3_next_actor
  213.     # 循环
  214.     begin
  215.       # 角色的明灭效果 OFF
  216.       if @active_battler != nil
  217.         @active_battler.blink = false
  218.       end
  219.       # 最后的角色的情况
  220.       if @actor_index == [$game_party.actors.size-1,3].min
  221.         # 开始主回合
  222.         start_phase4
  223.         return
  224.       end
  225.       # 推进角色索引
  226.       @actor_index += 1
  227.       @active_battler = $game_party.actors[@actor_index]
  228.       @active_battler.blink = true
  229.     # 如果角色是在无法接受指令的状态就再试
  230.     end until @active_battler.inputable?
  231.     # 设置角色的命令窗口
  232.     phase3_setup_command_window
  233.   end
  234. end
  235. class Arrow_Actor < Arrow_Base  
  236.   #--------------------------------------------------------------------------
  237.   # ● 刷新画面
  238.   #--------------------------------------------------------------------------
  239.   def update
  240.     super
  241.     # 光标右
  242.     if Input.repeat?(Input::RIGHT)
  243.       $game_system.se_play($data_system.cursor_se)
  244.       @index += 1
  245.       @index %= [$game_party.actors.size,4].min
  246.     end
  247.     # 光标左
  248.     if Input.repeat?(Input::LEFT)
  249.       $game_system.se_play($data_system.cursor_se)
  250.       @index += $game_party.actors.size - 1
  251.       @index %= [$game_party.actors.size,4].min
  252.     end
  253.     # 设置活动块坐标
  254.     if self.actor != nil
  255.       self.x = self.actor.screen_x
  256.       self.y = self.actor.screen_y
  257.     end
  258.   end
  259. end
  260. #==============================================================================
  261. # ■ Window_Target
  262. #------------------------------------------------------------------------------
  263. #  物品画面与特技画面的、使用对像角色选择窗口。
  264. #==============================================================================
  265. class Window_Target < Window_Selectable
  266. #--------------------------------------------------------------------------
  267. # ● 初始化对像
  268. #--------------------------------------------------------------------------
  269. def initialize
  270.    super(0, 0, 336, 480)
  271.    self.contents = Bitmap.new(width - 32, $game_party.actors.size*112)
  272.    self.z += 10
  273.    @item_max = $game_party.actors.size
  274.    @top_row = 0
  275.    refresh
  276. end
  277. #--------------------------------------------------------------------------
  278. # ● 刷新
  279. #--------------------------------------------------------------------------
  280. def refresh
  281.    self.contents.clear
  282.    for i in 0...$game_party.actors.size
  283.      x = 4
  284.      y = i * 112
  285.      actor = $game_party.actors[i]
  286.      draw_actor_name(actor, x, y)
  287.      draw_actor_class(actor, x + 144, y)
  288.      draw_actor_level(actor, x + 8, y + 32)
  289.      draw_actor_state(actor, x + 8, y + 64)
  290.      draw_actor_hp(actor, x + 152, y + 32)
  291.      draw_actor_sp(actor, x + 152, y + 64)
  292.    end
  293. end  
  294. #--------------------------------------------------------------------------
  295. # ● 刷新光标矩形
  296. #--------------------------------------------------------------------------
  297. def update_cursor_rect   
  298.    # 光标位置 -1 为全选、-2 以下为单独选择 (使用者自身)
  299.    if @index <= -2
  300.      self.cursor_rect.set(0, (@index + 10) * 112, self.width - 32, 96)
  301.    elsif @index == -1
  302.      self.cursor_rect.set(0, 0, self.width - 32, @item_max * 112 - 20)
  303.    else
  304.      tpy = @index * 112 - self.oy
  305.      self.cursor_rect.set(0, tpy, self.width - 32, 96)
  306.      if @index < @top_row
  307.        @top_row = @index
  308.        self.oy = @top_row *112
  309.      end
  310.      if @index > @top_row+3
  311.        @top_row = @index-3
  312.        self.oy = @top_row *112
  313.      end
  314.    end   
  315. end
  316. end
  317. #==============================================================================
  318. # ■ Window_MenuStatus
  319. #------------------------------------------------------------------------------
  320. #  显示菜单画面和同伴状态的窗口。
  321. #==============================================================================
  322. class Window_MenuStatus < Window_Selectable
  323.   #--------------------------------------------------------------------------
  324.   # ● 初始化目标
  325.   #--------------------------------------------------------------------------
  326.   def initialize
  327.     super(0, 0, 480, 480)
  328.     self.contents = Bitmap.new(width - 32,  $game_party.actors.size*112)
  329.     refresh
  330.     @top_row = 0
  331.     self.active = false
  332.     self.index = -1
  333.   end
  334.   #--------------------------------------------------------------------------
  335.   # ● 刷新
  336.   #--------------------------------------------------------------------------
  337.   def refresh
  338.     self.contents.clear
  339.     @item_max = $game_party.actors.size
  340.     for i in 0...$game_party.actors.size
  341.       x = 64
  342.       y = i * 112
  343.       if i <=3
  344.         self.contents.font.color = Color.new(255,255,0,255)
  345.         self.contents.draw_text(x,y,340,32,"[出战]",2)
  346.         self.contents.font.color = normal_color
  347.       else
  348.         self.contents.font.color = Color.new(128,128,128,255)
  349.         self.contents.draw_text(x,y,340,32,"[待机]",2)
  350.         self.contents.font.color = normal_color
  351.       end      
  352.       actor = $game_party.actors[i]
  353.       draw_actor_graphic(actor, x - 40, y + 80)
  354.       draw_actor_name(actor, x, y)
  355.       draw_actor_class(actor, x + 144, y)
  356.       draw_actor_level(actor, x, y + 32)
  357.       draw_actor_state(actor, x + 90, y + 32)
  358.       draw_actor_exp(actor, x, y + 64)
  359.       draw_actor_hp(actor, x + 236, y + 32)
  360.       draw_actor_sp(actor, x + 236, y + 64)
  361.     end
  362.   end
  363.   #--------------------------------------------------------------------------
  364.   # ● 刷新光标矩形
  365.   #--------------------------------------------------------------------------
  366.   def update_cursor_rect
  367.     if @index < 0
  368.       self.cursor_rect.empty
  369.     else
  370.       tpy = @index * 112 - self.oy
  371.       self.cursor_rect.set(0, tpy, self.width - 32, 96)
  372.       if @index < @top_row
  373.         @top_row = @index
  374.         self.oy = @top_row *112
  375.       end
  376.       if @index > @top_row+3
  377.         @top_row = @index-3
  378.         self.oy = @top_row *112
  379.       end
  380.     end
  381.   end
  382. end
  383. class Game_Party
  384.   #--------------------------------------------------------------------------
  385.   # ● 全灭判定
  386.   #--------------------------------------------------------------------------
  387.   def all_dead?
  388.     # 同伴人数为 0 的情况下
  389.     if $game_party.actors.size == 0
  390.       return false
  391.     end
  392.     # 同伴中无人 HP 在 0 以上
  393.     for i in 0..3
  394.       if @actors[i] != nil and@actors[i].hp >0
  395.         return false
  396.       end
  397.     end
  398.     # 全灭
  399.     return true
  400.   end
  401.   #--------------------------------------------------------------------------
  402.   # ● 加入同伴
  403.   #     actor_id : 角色 ID
  404.   #--------------------------------------------------------------------------
  405.   def add_actor(actor_id)
  406.     # 获取角色
  407.     actor = $game_actors[actor_id]
  408.     # 同伴人数未满 4 人、本角色不在队伍中的情况下
  409.     if not @actors.include?(actor)
  410.       # 添加角色
  411.       @actors.push(actor)
  412.       # 还原主角
  413.       $game_player.refresh
  414.     end
  415.   end
  416. end
  417. #==============================================================================
  418. # 本脚本来自[url]www.66RPG.com[/url],使用和转载请保留此信息
  419. #==============================================================================

  420. class Scene_Menu
  421. # --------------------------------
  422.   def initialize(menu_index = 0)
  423.     @menu_index = menu_index
  424.     @changer = 0
  425.     @where = 0
  426.     @checker = 0
  427.   end
  428. # --------------------------------
  429.   def main
  430.     s1 = $data_system.words.item
  431.     s2 = $data_system.words.skill
  432.     s3 = $data_system.words.equip
  433.     s4 = "状态"
  434.     s5 = "储存进度"
  435.     s6 = "离开游戏"
  436.     s7 = "调整队伍"
  437.     s8 = "升级加点"
  438.     s9 = "人物介绍"
  439.     @command_window = Window_Command.new(160, [s1, s2, s3, s4, s5, s6, s7, s8, s9])
  440.     @command_window.index = @menu_index
  441.     if $game_party.actors.size == 0
  442.       @command_window.disable_item(0)
  443.       @command_window.disable_item(1)
  444.       @command_window.disable_item(2)
  445.       @command_window.disable_item(3)
  446.     end
  447.     if $game_system.save_disabled
  448.       @command_window.disable_item(4)
  449.     end
  450.     if $game_party.actors.size == 1
  451.       @command_window.disable_item(6)
  452.     end
  453.     @playtime_window = Window_PlayTime.new
  454.     @playtime_window.x = 0
  455.     @playtime_window.y = 320
  456.     @gold_window = Window_Gold.new
  457.     @gold_window.x = 0
  458.     @gold_window.y = 416
  459.     @status_window = Window_MenuStatus.new
  460.     @status_window.x = 160
  461.     @status_window.y = 0
  462.     Graphics.transition
  463.     loop do
  464.       Graphics.update
  465.       Input.update
  466.       update
  467.       if $scene != self
  468.         break
  469.       end
  470.     end
  471.     Graphics.freeze
  472.     @command_window.dispose
  473.     @playtime_window.dispose
  474.     @gold_window.dispose
  475.     @status_window.dispose
  476.   end
  477. # --------------------------------
  478.   def update
  479.     @command_window.update
  480.     @playtime_window.update
  481.     @gold_window.update
  482.     @status_window.update
  483.     if @command_window.active
  484.       update_command
  485.       return
  486.     end
  487.     if @status_window.active
  488.       update_status
  489.       return
  490.     end
  491.   end
  492. # --------------------------------
  493.   def update_command
  494.     if Input.trigger?(Input::B)
  495.       $game_system.se_play($data_system.cancel_se)
  496.       $scene = Scene_Map.new
  497.       return
  498.     end
  499.     if Input.trigger?(Input::C)
  500.       if $game_party.actors.size == 0 and @command_window.index < 4
  501.         $game_system.se_play($data_system.buzzer_se)
  502.         return
  503.       end
  504.       if $game_party.actors.size == 1 and @command_window.index ==6
  505.         $game_system.se_play($data_system.buzzer_se)
  506.         return
  507.       end
  508.       case @command_window.index
  509.       when 0
  510.         $game_system.se_play($data_system.decision_se)
  511.         $scene = Scene_Item.new
  512.       when 1
  513.         $game_system.se_play($data_system.decision_se)
  514.         @command_window.active = false
  515.         @status_window.active = true
  516.         @status_window.index = 0
  517.       when 2
  518.         $game_system.se_play($data_system.decision_se)
  519.         @command_window.active = false
  520.         @status_window.active = true
  521.         @status_window.index = 0
  522.       when 3
  523.         $game_system.se_play($data_system.decision_se)
  524.         @command_window.active = false
  525.         @status_window.active = true
  526.         @status_window.index = 0
  527.       when 4
  528.         if $game_system.save_disabled
  529.           $game_system.se_play($data_system.buzzer_se)
  530.           return
  531.         end
  532.         $game_system.se_play($data_system.decision_se)
  533.         $scene = Scene_Save.new
  534.       when 5
  535.         $game_system.se_play($data_system.decision_se)
  536.         $scene = Scene_End.new
  537.       when 6
  538.         $game_system.se_play($data_system.decision_se)
  539.         @checker = 0
  540.         @command_window.active = false
  541.         @status_window.active = true
  542.         @status_window.index = 0
  543.       when 7
  544.         $game_system.se_play($data_system.decision_se)
  545.         @command_window.active = false
  546.         @status_window.active = true
  547.         @status_window.index = 0
  548.       when 8
  549.         $game_system.se_play($data_system.decision_se)
  550.         @command_window.active = false
  551.         @status_window.active = true
  552.         @status_window.index = 0
  553.       end
  554.       return
  555.     end
  556.   end
  557. # --------------------------------
  558.   def update_status
  559.     if Input.trigger?(Input::B)
  560.       $game_system.se_play($data_system.cancel_se)
  561.       @command_window.active = true
  562.       @status_window.active = false
  563.       @status_window.index = -1
  564.       return
  565.     end
  566.     if Input.trigger?(Input::C)
  567.       case @command_window.index
  568.       when 1
  569.         if $game_party.actors[@status_window.index].restriction >= 2
  570.           $game_system.se_play($data_system.buzzer_se)
  571.           return
  572.         end
  573.         $game_system.se_play($data_system.decision_se)
  574.         $scene = Scene_Skill.new(@status_window.index)
  575.       when 2
  576.         $game_system.se_play($data_system.decision_se)
  577.         $scene = Scene_Equip.new(@status_window.index)
  578.       when 3
  579.         $game_system.se_play($data_system.decision_se)
  580.         $scene = Scene_Status.new(@status_window.index)
  581.       when 6
  582.         $game_system.se_play($data_system.decision_se)
  583.        if @status_window.index==0
  584.           $game_system.se_play($data_system.cancel_se)
  585.           return
  586.         end
  587.         if @checker == 0
  588.           @changer = $game_party.actors[@status_window.index]
  589.           @where = @status_window.index
  590.           @checker = 1
  591.         else
  592.           $game_party.actors[@where] = $game_party.actors[@status_window.index]
  593.           $game_party.actors[@status_window.index] = @changer
  594.           @checker = 0
  595.           @status_window.refresh
  596.         end
  597.       when 7
  598.         $game_system.se_play($data_system.decision_se)
  599.         $scene = Scene_Lvup.new(@status_window.index)
  600.       when 8
  601.         $game_system.se_play($data_system.decision_se)
  602.         $scene = Scene_Charactor.new(@status_window.index)
  603.       end
  604.       return
  605.     end
  606.   end
  607. end
复制代码
整合到一块,至少让菜单里能有一个调整队伍的选项呢?(本人菜鸟一个,不知道怎么弄,但实在很喜欢这个菜单)
新人菜鸟,触犯勿怪。


存档不能于2012-1-8 12:15补充以下内容:
抱歉,本人太菜了

点评

module New_Menu_Config 里Command的中自行添加["队伍 ",调整队伍的CLASS名],若需要根据状态的选择来判定进入哪一个人的界面,在CLASS名后增加,1  发表于 2012-1-8 11:43
请使用 code 功能,下不为例。  发表于 2012-1-8 10:50
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
105 小时
注册时间
2013-1-24
帖子
115
12
发表于 2013-2-2 16:57:53 | 只看该作者
请问可以整合下鼠标系统吗?很喜欢这个菜单呢。可是不支持鼠标...

也不知道自己会花多长时间忘记你,只希望我做了对的选择,你也一样。
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
55
在线时间
157 小时
注册时间
2012-1-24
帖子
124
13
发表于 2013-2-2 17:59:17 | 只看该作者
看到那个行走图和那个人物实在不能淡定了。。。东方行走图好像有吧。。
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-9-22 19:22

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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