"Once rated as the most handsome man in the universe. Scott and his patented special stuffing will set you on the path to food heaven"),
"Once rated as the most handsome man in the universe. Scott and his patented special stuffing will set you on the path to food heaven"),
"Organic Turkey":newMarketItem(this,"Organic Turkey",180,360,randomWeight[0]*2.00,"res/items/Turkey5.png","res/items/Turkey5Glow.png",null,null,"All natural. No hormones. No antibiotics. Free Range. Lead Free",parseFloat(randomWeight[0])),
"Organic Turkey":newMarketItem(this,"Organic Turkey",180,360,randomWeight[0]*1.6,"res/items/Turkey5.png","res/items/Turkey5Glow.png",null,null,"All natural. No hormones. No antibiotics. Free Range. Lead Free",parseFloat(randomWeight[0])),
"Free Range Turkey":newMarketItem(this,"Free Range Turkey",540,320,randomWeight[1]*1.25,"res/items/Turkey4.png","res/items/Turkey4Glow.png",null,null,"Our turkeys have wide open spaces to roam and are fed with only the highest quality feed.",parseFloat(randomWeight[1])),
"Free Range Turkey":newMarketItem(this,"Free Range Turkey",540,320,randomWeight[1]*1.20,"res/items/Turkey4.png","res/items/Turkey4Glow.png",null,null,"Our turkeys have wide open spaces to roam and are fed with only the highest quality feed.",parseFloat(randomWeight[1])),
"Sunny Farms Turkey":newMarketItem(this,"Sunny Farms Turkey",265,415,randomWeight[2]*0.85,"res/items/Turkey3.png","res/items/Turkey3Glow.png",null,null,"100% Turkey product from Sunny Farms Heavy Industries, Ltd.",parseFloat(randomWeight[2])),
"Sunny Farms Turkey":newMarketItem(this,"Sunny Farms Turkey",265,415,randomWeight[2]*0.80,"res/items/Turkey3.png","res/items/Turkey3Glow.png",null,null,"100% Turkey product from Sunny Farms Heavy Industries, Ltd.",parseFloat(randomWeight[2])),
"Pastured Turkey":newMarketItem(this,"Pastured Turkey",474,357,randomWeight[3]*1.75,"res/items/Turkey2.png","res/items/Turkey2Glow.png",null,null,"Grassy fields and natural ingredients allow our turkeys to have a better life, and taste great.",parseFloat(randomWeight[3])),
"Pastured Turkey":newMarketItem(this,"Pastured Turkey",474,357,randomWeight[3]*1.4,"res/items/Turkey2.png","res/items/Turkey2Glow.png",null,null,"Grassy fields and natural ingredients allow our turkeys to have a better life, and taste great.",parseFloat(randomWeight[3])),
"General Turkey":newMarketItem(this,"General Turkey",378,426,randomWeight[4]*1.00,"res/items/Turkey1.png","res/items/Turkey1Glow.png",null,null,"100% General Satisfaction Guaranteed",parseFloat(randomWeight[4]))
"General Turkey":newMarketItem(this,"General Turkey",378,426,randomWeight[4]*1.00,"res/items/Turkey1.png","res/items/Turkey1Glow.png",null,null,"100% General Satisfaction Guaranteed",parseFloat(randomWeight[4]))
@ -274,9 +274,14 @@ function OvenUI( stage, gameState ){
// Show core temperature
// Show core temperature
this.showTempDialog=function(){
this.showTempDialog=function(){
state=ovenModel.getTurkeyState();
if(that.ovenDoor==OVEN_CLOSED){
gameState.pubsub.publish("ShowDialog",{seq:"custom",autoAdvance:false,customText:"Hmm.. the core temperature of the turkey is "+UtilityFunctions.C2F(state.core.temp).toFixed(2)+" F"});
gameState.pubsub.publish("AddRecord","Core temperature measured: "+UtilityFunctions.C2F(state.core.temp).toFixed(2)+" F");
}
else{
state=ovenModel.getTurkeyState();
gameState.pubsub.publish("ShowDialog",{seq:"custom",autoAdvance:false,customText:"Hmm.. the core temperature of the turkey is "+UtilityFunctions.C2F(state.core.temp).toFixed(2)+" F"});
gameState.pubsub.publish("AddRecord","Core temperature measured: "+UtilityFunctions.C2F(state.core.temp).toFixed(2)+" F");