115 lines
No EOL
3.9 KiB
Ruby
115 lines
No EOL
3.9 KiB
Ruby
class Window_Status
|
|
def draw_parameters(x, y)
|
|
#6.times {|i| draw_actor_param(@actor, x - 20, y + line_height * i + 20 , i + 2 )
|
|
6.times {|i| draw_actor_param(@actor, x, y -5 + line_height * i, i + 2) }
|
|
# 追加
|
|
y1 = y + line_height * 6
|
|
change_color(system_color)
|
|
draw_text(x+65, y1-270 , 30, line_height, "Mind")
|
|
draw_text(x, y1 -5 , 80, line_height, "Anal Sens.")
|
|
draw_text(x, y1 + 17, 120, line_height, "Communication Device")
|
|
draw_text(x, y1 + 41, 120, line_height, "Innerwear")
|
|
draw_text(x, y1 + 65, 120, line_height, "Outerwear")
|
|
|
|
draw_text(x+160, y1-205 , 105, line_height, "# of Climaxes")
|
|
if $game_switches[386] == true
|
|
draw_text(x+190, y1-205 , 100, line_height, $game_variables[365], 2)
|
|
else
|
|
draw_text(x+190, y1-205 , 100, line_height, $game_variables[8], 2)
|
|
end
|
|
draw_text(x+160, y1-185 , 80, line_height, "Masturbations")
|
|
if $game_switches[386] == true
|
|
draw_text(x+190, y1-185 , 100, line_height, $game_variables[364], 2)
|
|
else
|
|
draw_text(x+190, y1-185 , 100, line_height, $game_variables[11], 2)
|
|
end
|
|
change_color(normal_color)
|
|
draw_text(x+180, y1-270 , 100, line_height, $game_variables[7], 2)
|
|
draw_text(x+160, y1-270 , 55, line_height, "Money")
|
|
draw_text(x+280, y1-270 , 40, line_height, "G")
|
|
draw_text(x + 90, y1 -5, 36, line_height, $game_variables[55], 2)
|
|
draw_text(x+85, y1-270 , 30, line_height, $game_variables[481], 2)
|
|
change_color(tp_gauge_color2)
|
|
draw_text(x+160, y1-245 , 50, line_height, "Pleasure")
|
|
draw_text(x+190, y1-245 , 100, line_height, $game_variables[9], 2)
|
|
|
|
# Edging
|
|
if $game_variables[459] >= 100
|
|
change_color(mp_gauge_color2)
|
|
else
|
|
if $game_variables[459] >= 1
|
|
change_color(mp_gauge_color1)
|
|
else
|
|
change_color(system_color)
|
|
end
|
|
end
|
|
draw_text(x+160, y1-225 , 70, line_height, "Frustration")
|
|
draw_text(x+190, y1-225 , 100, line_height, $game_variables[459], 2)
|
|
if $game_variables[18] >= 5
|
|
change_color(mp_gauge_color2)
|
|
else
|
|
actor = $game_actors[1]
|
|
if actor.state?(18)
|
|
change_color(mp_gauge_color2)
|
|
else
|
|
change_color(mp_gauge_color1)
|
|
end
|
|
end
|
|
draw_text(x+425, y1-270 , 120, line_height, $game_variables[495],)
|
|
# 絶頂不可
|
|
change_color(mp_gauge_color2)
|
|
draw_text(x+425, y1-290 , 120, line_height, $game_variables[496],)
|
|
# 乳房
|
|
if $game_variables[61] >= 100
|
|
change_color(mp_gauge_color2)
|
|
else
|
|
change_color(mp_gauge_color1)
|
|
end
|
|
draw_text(x+485, y1-110 , 120, line_height, $game_variables[21],)
|
|
# 乳首
|
|
if $game_variables[62] >= 100
|
|
change_color(mp_gauge_color2)
|
|
else
|
|
change_color(mp_gauge_color1)
|
|
end
|
|
draw_text(x+340, y1-128 , 120, line_height, $game_variables[22],)
|
|
# 陰唇
|
|
if $game_variables[63] >= 100
|
|
change_color(mp_gauge_color2)
|
|
else
|
|
change_color(mp_gauge_color1)
|
|
end
|
|
draw_text(x+370, y1+35 , 120, line_height, $game_variables[23],)
|
|
# 陰核
|
|
if $game_variables[64] >= 100
|
|
change_color(mp_gauge_color2)
|
|
else
|
|
change_color(mp_gauge_color1)
|
|
end
|
|
draw_text(x+360, y1+15 , 120, line_height, $game_variables[24],)
|
|
# 膣
|
|
if $game_variables[65] >= 100
|
|
change_color(mp_gauge_color2)
|
|
else
|
|
change_color(mp_gauge_color1)
|
|
end
|
|
draw_text(x+420, y1-15 , 120, line_height, $game_variables[25],)
|
|
# 子宮
|
|
if $game_variables[66] >= 100
|
|
change_color(mp_gauge_color2)
|
|
else
|
|
change_color(mp_gauge_color1)
|
|
end
|
|
draw_text(x+420, y1-35 , 120, line_height, $game_variables[26],)
|
|
# アナル
|
|
if $game_variables[67] >= 100
|
|
change_color(mp_gauge_color2)
|
|
else
|
|
change_color(mp_gauge_color1)
|
|
end
|
|
draw_text(x+485, y1+25 , 120, line_height, $game_variables[27],)
|
|
|
|
# ここ
|
|
# 追加ここまで
|
|
end
|
|
end |