CreachoPedia/CreacherTypes.cs

22 lines
778 B
C#

namespace creachopedia {
class GroundCreacher:Creacher {
public GroundCreacher(string name, int footsyCount):base(name, footsyCount){
this.type = "creacher of the land";
}
}
class AirCreacher:Creacher {
public AirCreacher(string name, int footsyCount):base(name, footsyCount){
this.type = "creacher of the sky";
}
}
class WaterCreacher:Creacher{
public WaterCreacher(string name, int footsyCount):base(name, footsyCount){
this.type = "creacher of the water";
}
}
class UndergroundCreacher:Creacher {
public UndergroundCreacher(string name, int footsyCount):base(name, footsyCount){
this.type = "creacher that lives underground";
}
}
}