-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathroach.lua
More file actions
110 lines (108 loc) · 3.09 KB
/
Copy pathroach.lua
File metadata and controls
110 lines (108 loc) · 3.09 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
-- roachplosion
return {
["roachplosion"] = {
boom = {
air = true,
class = [[CExpGenSpawner]],
count = 1,
ground = true,
water = true,
properties = {
delay = 0,
explosiongenerator = [[custom:ROME]],
pos = [[0, 0, 0]],
},
},
foom = {
air = true,
class = [[CExpGenSpawner]],
count = 1,
ground = true,
water = true,
properties = {
delay = 0,
explosiongenerator = [[custom:KLARA]],
pos = [[0, 0, 0]],
},
},
groundflash = {
circlealpha = 0.5,
circlegrowth = 0,
flashalpha = 1,
flashsize = 150,
ttl = 40,
color = {
[1] = 1,
[2] = 0.69999998807907,
[3] = 0.20000000298023,
},
},
},
blastwing = {
redploom = {
air = true,
class = [[CExpGenSpawner]],
count = 7,
ground = true,
water = true,
underwater = true,
properties = {
delay = 0,
explosiongenerator = [[custom:napalmfireball_60]],
pos = [[-55 r110, 10 r30, -55 r110]],
},
},
redploom_mid = {
air = true,
class = [[CExpGenSpawner]],
count = 1,
ground = true,
water = true,
underwater = true,
properties = {
delay = 0,
explosiongenerator = [[custom:napalmfireball_45]],
pos = [[-5 r10, 15 r5, -5 r10]],
},
},
groundflash = {
circlealpha = 0.5,
circlegrowth = 0,
flashalpha = 0.8,
flashsize = 130,
ttl = 40,
color = {
[1] = 1,
[2] = 0.69999998807907,
[3] = 0.20000000298023,
},
},
star1 = {
air = true,
class = [[CSimpleParticleSystem]],
count = 26,
ground = true,
water = true,
properties = {
airdrag = 1,
colormap = [[1 0.7 0.3 0.01 1 0.7 0.3 0.01 0.5 0.35 0.15 0.01 0.05 0.05 0.05 0.01]],
directional = true,
emitrot = 0,
emitrotspread = 80,
emitvector = [[0, 1, 0]],
gravity = [[0, -0.15, 0]],
numparticles = 2,
particlelife = 8,
particlelifespread = 4,
particlesize = [[15 i0.8]],
particlesizespread = 0,
particlespeed = [[11 i-0.25]],
particlespeedspread = 2,
pos = [[0, 0, 0]],
sizegrowth = [[-0.1 i0.015]],
sizemod = 1.0,
texture = [[plasma]],
},
},
}
}