The bento box option for sushi is 5 Fullness and consumes:
white rice, seaweed, one of each fish meat, and a Mer-kin lunchbox, and one of:
tempura cucumber, carrot, avocado, broccoli, cauliflower, or radish, and one of:
anemone sauce, inky squid sauce, Mer-kin weaksauce, eel sauce, or peanut sauce.
The sushi doily adds 3 adventures to any sushi (and is consumed).
white rice, seaweed, one of each fish meat, and a Mer-kin lunchbox, and one of:
tempura cucumber, carrot, avocado, broccoli, cauliflower, or radish, and one of:
anemone sauce, inky squid sauce, Mer-kin weaksauce, eel sauce, or peanut sauce.
The sushi doily adds 3 adventures to any sushi (and is consumed).
Code:
<body>
<center><script language=Javascript>
<!--
function updatedivs() {
var picked=document.makesushi.whichsushi.value;
if (picked<4) {
document.getElementById("topping").style.display='none';
document.getElementById("filling1").style.display='none';
document.getElementById("veggie").style.display='none';
document.getElementById("dippin").style.display='none';
} else if (picked==7) {
document.getElementById("topping").style.display='none';
document.getElementById("filling1").style.display='none';
document.getElementById("veggie").style.display='inline';
document.getElementById("dippin").style.display='inline';
} else {
document.getElementById("topping").style.display='inline';
document.getElementById("filling1").style.display='inline';
document.getElementById("veggie").style.display='none';
document.getElementById("dippin").style.display='none';
}
}
//-->
</script>
<table width=95% cellspacing=0 cellpadding=0><tr><td style="color: white;" align=center bgcolor=blue><b>Sushi-Rolling Mat</b></td></tr><tr><td style="padding: 5px; border: 1px solid blue;"><center><table><tr><td><center><table><tr><td><b>You currently have:</b><br>beefy fish meat (3)<br>glistening fish meat<br>slick fish meat (3)<br>white rice (16)<br>seaweed (5)<br>sea cucumber (3)<br>eel sauce (2)<br>sushi doily (6)<br>Mer-kin lunchbox (5)<br>tempura cauliflower<br>inky squid sauce (5)<br>peanut sauce (3)<br></td></tr></table><form name=makesushi action=sushi.php method=post><input type=hidden name=action value=Yep.><input type=hidden name=pwd value=><p>Make Sushi: <select name=whichsushi onChange='updatedivs();'><option value=1 >beefy nigiri (3)</option><option value=2 >glistening nigiri</option><option value=3 >slick nigiri (3)</option><option value=4 >beefy maki (3)</option><option value=5 >glistening maki</option><option value=6 >slick maki (3)</option><option value=7 >bento box</option></select><div id=topping style='display: none;'><p>Topping: <select name=whichtopping><option value=0>- select a topping -</option><option value=3819>eel sauce (2)</option></select></div><div id=filling1 style='display: none;'><p>Additional Filling: <select name=whichfilling1><option value=0>- select a filling -</option><option value=3556>sea cucumber (3)</option></select></div><div id=veggie style='display: none;'><p>Vegetable: <select name=veggie><option value=3690>tempura cauliflower</option></select></div><div id=dippin style='display: none;'><p>Dipping Sauce: <select name=dippin><option value=3819>eel sauce (2)</option><option value=6395>inky squid sauce (5)</option><option value=6397>peanut sauce (3)</option></select></div><p><input class=button type=submit value="Roll and Eat"></form></center><p><center><a href="campground.php">Back to your Campsite</a></center></td></tr></table></center></td></tr><tr><td height=4></td></tr></table></center></body>