1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!NEXT
##################
# BID: 7
# GID: 0
# File: items_tools
##################
id=828
name=kleine Axt
icon=gfx\axe.bmp
group=tool,std
model=gfx\axe2.b3d
scale=0.6
behaviour=blade
mat=stone
weight=1000
info=eine einfache axt die mir hilft bäume zu fällen.
damage=3
healthchange=0
script=start
	on:impact {
		$tmp=impact_class();
		$tmp2=impact_id();
		//+10 Bonus Damage on Wood
		if (compare_material($tmp,$tmp2,"wood")==1){
			$tmp3=15;
			$tmp4=skillvalue("wood");
			if ($tmp4>=50){$tmp3+=10;}
			if ($tmp4>=100){$tmp3+=10;}
			if ($tmp4>=200){$tmp3+=10;}
			if ($tmp4>=400){$tmp3+=10;}
			if ($tmp4>=800){$tmp3+=100;}
			damage $tmp,$tmp2,$tmp3;
			freevar $tmp3;
			freevar $tmp4;
		}
		freevar $tmp;
		freevar $tmp2;
	}
script=end