summaryrefslogtreecommitdiff
path: root/npc/magic/study.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/magic/study.txt')
-rw-r--r--npc/magic/study.txt19
1 files changed, 19 insertions, 0 deletions
diff --git a/npc/magic/study.txt b/npc/magic/study.txt
new file mode 100644
index 000000000..3176643ef
--- /dev/null
+++ b/npc/magic/study.txt
@@ -0,0 +1,19 @@
+// TMW2 script
+// Author: Jesusalva <admin@tmw2.org>
+//
+// Magic Script: TMW2_STUDY
+//
+// Skill to study a target monster
+// Will report the monster exact current stats, and is part of research
+
+function script SK_study {
+ .@mobGD=getarg(0);
+ if (getunittype(.@mobGD) != UNITTYPE_MOB) {
+ dispbottom l("This skill can only be used on monsters!");
+ }
+ .@mobID=getunitdata(.@mobGD, UDT_CLASS);
+ // getmonsterinfo(.@mobID, )
+ // getunitdata(.@mobGD, )
+ return;
+}
+