mirror of
https://github.com/LDDestroier/CC/
synced 2024-11-05 01:26:20 +00:00
18 lines
305 B
Plaintext
18 lines
305 B
Plaintext
local stage, players, objects, projectiles, act, images = ...
|
|
return {
|
|
info = {
|
|
name = "BusterUp",
|
|
description = "Raises your buster power by 1!",
|
|
cooldown = {
|
|
shoot = 8,
|
|
move = 4
|
|
}
|
|
},
|
|
logic = function(info)
|
|
|
|
info.player.busterPower = info.player.busterPower + 1
|
|
|
|
return false
|
|
end
|
|
}
|