mirror of
https://github.com/LDDestroier/CC/
synced 2025-12-08 09:38:06 +00:00
Add files via upload
This commit is contained in:
15
CCBN/ccbn-data/chipdata/recov300
Normal file
15
CCBN/ccbn-data/chipdata/recov300
Normal file
@@ -0,0 +1,15 @@
|
||||
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,
|
||||
}
|
||||
Reference in New Issue
Block a user