Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 4c2192c4fb5b24eff5cc84fb0b5d3b57efed2ad2 (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
 ;
; weapons.ini
;
; global weapon type definitions
; This file describes all weapon types

; ------------------------------------------------------------------
; MINES
;

[mine]
label=mine_dumb
name=Dumb mine
info=The dumb mine is the cheapest of all mines. It will remain stationary in space and explode if something touches it.
price=500
damage=25

[mine]
label=mine_proxy
name=Proximity mine
price=2500
damage=100

[mine]
label=mine_smart
name=Smart mine
price=15000
damage=250

; ------------------------------------------------------------------
; CANNONS
;

[cannon]
label=laser1
name=Laser cannon
; default purchase price
price=1500
; player level required to buy his weapon
level=1

	[projectile]
	; speed of a projectile generated by this weapon, in meters per second
	speed=1000
	; interval between two consecutive shots, in milliseconds
	interval=250
	; lifespan of a single projectile, in milliseconds
	lifespan=5000

[cannon]
label=laser2
name=Improved laser cannon
price=5000
level=5

[cannon]
label=laser3
name=Advanced laser cannon
price=15000
level=15

; ------------------------------------------------------------------
; TURRETS
;

[turret]
label=defenselaser1
name=Defense laser
price=25000
level=5

[turret]
label=defenselaser2
name=Advanced Defense laser
price=50000
level=15