Transfer to PC

This commit is contained in:
2024-06-04 20:02:19 +02:00
parent a8123be603
commit 457838e268

View File

@@ -44,6 +44,8 @@ function display(){
}else{ }else{
Aimg.src = imgTiger.Dead; Aimg.src = imgTiger.Dead;
} }
if(hp<=0) Aimg.src = imgTiger.Dead;
} }
function play(){ function play(){
@@ -83,10 +85,13 @@ function clearBoy(){
function time(){ function time(){
setTimeout (() => { setTimeout (() => {
hunger--; if(hunger>0) hunger--;
clean--; clean--;
joy--; joy--;
age+=0.5; if(hp>0) age+=0.5;
if(hunger===0) hp--;
display(); display();