forked from PyroFire232/warptorio2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_warptorio-townportal.lua
95 lines (78 loc) · 1.97 KB
/
data_warptorio-townportal.lua
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
local rtint={r=0.4,g=0.4,b=1,a=1}
local rsc=1.5
data:extend{
{
capsule_action = {
attack_parameters={type="stream",range=0,cooldown=10,ammo_category="capsule",
ammo_type={action={action_deliver={target_effects={damage={amount=-10,type="physical"},type="damage"},type="instant"},type="direct"},category="capsule",target_type="position"},
},
type = "use-on-self",
uses_stack=true,
},
icons = {{icon="__warptorio2__/graphics/technology/earth.png",scale=1}},
icon_size = 128,
name = "warptorio-townportal",
order = "zz",
stack_size = 5,
subgroup = "capsule",
type = "capsule"
},
{
enabled = false,
ingredients = {
{
"advanced-circuit",
10
},
{
"grenade",
10
},
{
"radar",
10
},
},
name = "warptorio-townportal",
result = "warptorio-townportal",
type = "recipe"
},
}
data:extend{
{
capsule_action = {
attack_parameters={type="stream",range=0,cooldown=10,ammo_category="capsule",
ammo_type={action={action_deliver={target_effects={damage={amount=-10,type="physical"},type="damage"},type="instant"},type="direct"},category="capsule",target_type="position"},
},
type = "use-on-self",
uses_stack=true,
},
icons = {{icon="__warptorio2__/graphics/technology/earth.png",scale=1,tint=rtint}},
icon_size = 128,
name = "warptorio-homeportal",
order = "zz",
stack_size = 5,
subgroup = "capsule",
type = "capsule"
},
{
enabled = false,
ingredients = {
{
"advanced-circuit",
10
},
{
"grenade",
10
},
{
"radar",
10
},
},
name = "warptorio-homeportal",
result = "warptorio-homeportal",
type = "recipe"
},
}