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

15 lines
319 B
Plaintext

local stage, players, objects, projectiles, act, images = ...
return {
info = {
name = "Recon300",
description = "Gives you 300 health!",
cooldown = {
shoot = 6,
move = 2
}
},
logic = function(info)
info.player.health = math.min(info.player.health + 300, info.player.maxHealth)
return false
end,
}