﻿function TealBase(color){
	this.color = color;
}
TealBase.inheritsFrom(Base);

//Static properties
TealBase.localSearch = "pizza";

var smallMapIcon = new GIcon(G_DEFAULT_ICON);
smallMapIcon.image = "http://labs.ribaudio.com/herosquad/img/baseteal.png";
smallMapIcon.shadow = "";
smallMapIcon.iconSize = new GSize(20, 20);
smallMapIcon.iconAnchor = new GPoint(10, 15);
TealBase.smallMapIcon = smallMapIcon;

var mapIcon = new GIcon(G_DEFAULT_ICON);
mapIcon.image = "http://labs.ribaudio.com/herosquad/img/baseteal.png";
mapIcon.shadow = "";
mapIcon.iconSize = new GSize(50, 50);
mapIcon.iconAnchor = new GPoint(25, 25);
TealBase.mapIcon = mapIcon;