mirror of
https://github.com/LDDestroier/CC/
synced 2024-11-14 13:54:52 +00:00
16 lines
320 B
Plaintext
16 lines
320 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,
|
||
|
}
|