mirror of
https://github.com/LDDestroier/CC/
synced 2024-11-12 13:00:01 +00:00
18 lines
399 B
Plaintext
18 lines
399 B
Plaintext
local stage, players, objects, projectiles, act, images = ...
|
|
return {
|
|
info = {
|
|
name = "Muramasa",
|
|
description = "Slash for as much damage as you have taken!",
|
|
cooldown = {
|
|
shoot = 8,
|
|
move = 4
|
|
}
|
|
},
|
|
logic = function(info)
|
|
|
|
act.stage.setDamage(info.x + info.direction, info.y, math.min(info.player.maxHealth - info.player.health, 1000), info.owner, 1, false)
|
|
|
|
return false
|
|
end
|
|
}
|