You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
SigFiesta/LuaScript/AIScript/BallEgg.lua

18 lines
268 B

require( "common" )
-- 스킬 데미지
SKILL_DAMAGE = 1000
function BallEgg( Handle, MapIndex )
cExecCheck( "BallEgg" )
cStaticDamage_smo( Handle, SKILL_DAMAGE )
cSetServantFlag( Handle, "MobCanDamageTo", 1 )
cAIScriptSet( Handle )
return ReturnAI["END"]
end