summaryrefslogtreecommitdiffstats
path: root/example/scripts/monster/testmonster.lua
blob: fa094a8db2515b21e8b2747ec39bf34573c0c645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
----------------------------------------------------------------------------------
--  Copyright 2009 The Mana World Development Team                              --
--                                                                              --
--  This file is part of The Mana World.                                        --
--                                                                              --
--  The Mana World  is free software; you can redistribute  it and/or modify it --
--  under the terms of the GNU General  Public License as published by the Free --
--  Software Foundation; either version 2 of the License, or any later version. --
----------------------------------------------------------------------------------

function update_monster(mob)
  local r = math.random(0, 200);
  if r == 0 then
    mana.being_say(mob, "Roar! I am a boss")
  end
end

function on_maggot_strike(mob, victim, hit)
  if hit > 0 then
    mana.being_say(mob, "Take this! "..hit.." damage!")
    mana.being_say(victim, "Oh Noez!")
  else
    mana.being_say(mob, "Oh no, my attack missed!")
    mana.being_say(victim, "Whew...")
  end
end