
### Macuahuitl
id=xx
name=Macuahuitl
group=weapon
icon=gfx\Macuahuitl.bmp
model=gfx\Macuahuitl.b3d
scale=0.8
behaviour=blade
mat=metal
weight=2500
info=looks like nailed-cricket club. but older than makeshift nailbat. 
damage=3
healthchange=0
script=start
	on:impact {
		$tmp=impact_class();
		$tmp2=impact_id();
		//+15 Bonus Damage on Flesh
		if (compare_material($tmp,$tmp2,"flesh")==1){
			damage $tmp,$tmp2,15;
		}
		freevar $tmp;
		freevar $tmp2;
	}
script=end