1
0
mirror of https://github.com/LDDestroier/CC/ synced 2024-06-18 11:19:58 +00:00
ldd-CC/CCBN/ccbn-data/chipdata/doubleshot
2019-03-13 17:05:50 -04:00

20 lines
474 B
Plaintext

local stage, players, objects, projectiles, act, images = ...
return {
info = {
name = "DoubleShot",
description = "Fires two panels forwards!",
cooldown = {
shoot = 6,
move = 4
}
},
logic = function(info)
act.projectile.newProjectile(info.x, info.y, info.player, "panelshot", false, info.altDamage)
act.projectile.newProjectile(info.x + info.direction, info.y, info.player, "panelshot", true, info.altDamage)
return false
end
}