mirror of
https://github.com/LDDestroier/CC/
synced 2024-11-09 19:39:59 +00:00
20 lines
476 B
Plaintext
20 lines
476 B
Plaintext
local stage, players, objects, projectiles, act, images = ...
|
|
return {
|
|
info = {
|
|
name = "WideSword",
|
|
description = "Slash column in front!",
|
|
cooldown = {
|
|
shoot = 8,
|
|
move = 5
|
|
}
|
|
},
|
|
logic = function(info)
|
|
|
|
act.stage.setDamage(info.x + info.direction, info.y - 1, 80, info.owner, 1)
|
|
act.stage.setDamage(info.x + info.direction, info.y, 80, info.owner, 1)
|
|
act.stage.setDamage(info.x + info.direction, info.y + 1, 80, info.owner, 1)
|
|
|
|
return false
|
|
end
|
|
}
|