public class Fodder extends Thingy {

	public Fodder(String sh, int w) {
		edible = true;
		shape = sh.toLowerCase();
		worth = w;
	}	
}	
