1
0
mirror of https://github.com/LDDestroier/CC/ synced 2024-06-30 17:13:17 +00:00
ldd-CC/CCBN/ccbn-data/chipdata/fightersword

20 lines
484 B
Plaintext
Raw Normal View History

2019-03-13 04:15:41 +00:00
local stage, players, objects, projectiles, act, images = ...
return {
info = {
name = "FighterSword",
description = "Slash forwards 3 panels!",
cooldown = {
shoot = 8,
move = 4
}
},
logic = function(info)
2019-03-13 21:05:50 +00:00
act.stage.setDamage(info.x + info.direction, info.y, 100, info.owner, 1)
act.stage.setDamage(info.x + info.direction * 2, info.y, 100, info.owner, 1)
act.stage.setDamage(info.x + info.direction * 3, info.y, 100, info.owner, 1)
2019-03-13 04:15:41 +00:00
return false
end
2019-03-13 21:05:50 +00:00
}