#===============Affiche_Coeurs===============
#======Créé par mimiman(creatorium)==========
#Faites un évenement
class Affiche_Coeurs
def Coeurs
if ($viemax > 80)
$viemax = 80
end
if ($vie > $viemax)
$vie = $viemax
end
bmpcoeursmax = Sprite.new
bmpcoeursmax.bitmap = Bitmap.new("Graphics/Pictures/coeurmort"+$viemax.to_s)
bmpcoeursmax.x = 10
bmpcoeursmax.y = 10
bmpcoeursmax.z = 3000
bmpcoeursmax.zoom_x = 2
bmpcoeursmax.zoom_y = 2
bmpcoeurs = Sprite.new
bmpcoeurs.bitmap = Bitmap.new("Graphics/Pictures/coeur"+$vie.to_s)
bmpcoeurs.x= 10
bmpcoeurs.y = 10
bmpcoeurs.z = 4000
bmpcoeurs.zoom_x = 2
bmpcoeurs.zoom_y = 2
Graphics.update
bmpcoeursmax.bitmap.clear
bmpcoeurs.bitmap.clear
end
end |