1
0
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:
LDDestroier
2019-03-13 00:15:41 -04:00
committed by GitHub
parent e4fb776d54
commit e58d3515d1
54 changed files with 1315 additions and 0 deletions

View 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,
}