1
0
mirror of https://github.com/LDDestroier/CC/ synced 2024-06-18 11:19:58 +00:00
ldd-CC/CCBN/ccbn-data/chipdata/panelreturn
LDDestroier f4d7b3f893
Added chip selector, win/lose, vulcan flinch
What an update, like damn
2019-03-13 13:56:51 -04:00

23 lines
413 B
Plaintext

local stage, players, objects, projectiles, act, images = ...
return {
info = {
name = "PanelReturn",
description = "Fixes all of your panels!",
cooldown = {
shoot = 8,
move = 4
}
},
logic = function(info)
for y, row in pairs(stage.panels) do
for x, panel in pairs(row) do
if panel.owner == info.owner then
act.stage.crackPanel(x, y, -2)
end
end
end
return false
end
}