mirror of
https://github.com/LDDestroier/CC/
synced 2024-11-15 06:14:55 +00:00
21 lines
571 B
Plaintext
21 lines
571 B
Plaintext
|
local stage, players, objects, projectiles, act, images = ...
|
||
|
return {
|
||
|
info = {
|
||
|
name = "TripleShot",
|
||
|
description = "Fires three panels forwards!",
|
||
|
cooldown = {
|
||
|
shoot = 6,
|
||
|
move = 4
|
||
|
}
|
||
|
},
|
||
|
logic = function(info)
|
||
|
|
||
|
act.projectile.newProjectile(info.x, info.y - 1, info.player, "panelshot", false, info.altDamage or 100)
|
||
|
act.projectile.newProjectile(info.x, info.y, info.player, "panelshot", true, info.altDamage or 100)
|
||
|
act.projectile.newProjectile(info.x, info.y + 1, info.player, "panelshot", false, info.altDamage or 100)
|
||
|
|
||
|
return false
|
||
|
|
||
|
end
|
||
|
}
|