mirror of
https://github.com/LDDestroier/CC/
synced 2024-11-09 19:39:59 +00:00
16 lines
287 B
Plaintext
16 lines
287 B
Plaintext
local stage, players, objects, projectiles, act, images = ...
|
|
return {
|
|
info = {
|
|
name = "Invis",
|
|
description = "Makes you invincible for a short time!",
|
|
cooldown = {
|
|
shoot = 6,
|
|
move = 5
|
|
}
|
|
},
|
|
logic = function(info)
|
|
info.player.cooldown.iframe = 50
|
|
return false
|
|
end
|
|
}
|