v1.4.4
This commit is contained in:
commit
9c94d113d3
10260 changed files with 1237388 additions and 0 deletions
3
assets/devel/tech/summonmech/summonmech.animation
Normal file
3
assets/devel/tech/summonmech/summonmech.animation
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
|
||||
}
|
14
assets/devel/tech/summonmech/summonmech.lua
Normal file
14
assets/devel/tech/summonmech/summonmech.lua
Normal file
|
@ -0,0 +1,14 @@
|
|||
function init()
|
||||
end
|
||||
|
||||
function update(args)
|
||||
if args.moves["special1"] and not self.specialLast then
|
||||
world.sendEntityMessage(entity.id(), "unlockMech")
|
||||
world.sendEntityMessage(entity.id(), "toggleMech")
|
||||
end
|
||||
self.specialLast = args.moves["special1"]
|
||||
end
|
||||
|
||||
function uninit()
|
||||
|
||||
end
|
13
assets/devel/tech/summonmech/summonmech.tech
Normal file
13
assets/devel/tech/summonmech/summonmech.tech
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"name" : "summonmech",
|
||||
"type" : "head",
|
||||
|
||||
"scripts" : [ "summonmech.lua" ],
|
||||
|
||||
"description" : "Call your modular mech anywhere!",
|
||||
"shortDescription" : "Summon Mech",
|
||||
"rarity" : "Legendary",
|
||||
"icon" : "/tech/mech.png",
|
||||
|
||||
"chipCost" : 0
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue