-
Notifications
You must be signed in to change notification settings - Fork 653
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5992 from jmcmorris/mamool_ja_family
Mamool Ja Family Improvements
- Loading branch information
Showing
37 changed files
with
364 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
require('scripts/globals/mixins') | ||
|
||
g_mixins = g_mixins or {} | ||
g_mixins.families = g_mixins.families or {} | ||
|
||
g_mixins.families.mamoolJa = function(mamoolJaMob) | ||
mamoolJaMob:addListener('WEAPONSKILL_STATE_EXIT', 'MAMOOL_JA_AMBUSH_FINISH', function(mob, skillID) | ||
-- Remove weapon after using Javelin Throw, Axe Throw, or Stave Toss | ||
if skillID == 1735 or skillID == 1736 or skillID == 1925 or skillID == 2361 then | ||
mob:setAnimationSub(2) | ||
end | ||
end) | ||
end | ||
|
||
return g_mixins.families.mamoolJa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
scripts/zones/Bhaflau_Thickets/mobs/mamool_ja_blusterer.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
----------------------------------- | ||
-- Area: Bhaflau Thickets | ||
-- Mob: Mamool Ja Blusterer | ||
----------------------------------- | ||
mixins = { require('scripts/mixins/families/mamool_ja'), require('scripts/mixins/weapon_break') } | ||
----------------------------------- | ||
local entity = {} | ||
|
||
entity.onMobDeath = function(mob, player, optParams) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
----------------------------------- | ||
-- Area: Bhaflau Thickets | ||
-- Mob: Mamool Ja Lurker | ||
----------------------------------- | ||
mixins = { require('scripts/mixins/weapon_break') } | ||
----------------------------------- | ||
local entity = {} | ||
|
||
entity.onMobDeath = function(mob, player, optParams) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
----------------------------------- | ||
-- Area: Bhaflau Thickets | ||
-- Mob: Mamool Ja Mimer | ||
----------------------------------- | ||
mixins = { require('scripts/mixins/weapon_break') } | ||
----------------------------------- | ||
local entity = {} | ||
|
||
entity.onMobDeath = function(mob, player, optParams) | ||
end | ||
|
||
return entity |
12 changes: 12 additions & 0 deletions
12
scripts/zones/Bhaflau_Thickets/mobs/mamool_ja_philosopher.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
----------------------------------- | ||
-- Area: Bhaflau Thickets | ||
-- Mob: Mamool Ja Philosopher | ||
----------------------------------- | ||
mixins = { require('scripts/mixins/families/mamool_ja'), require('scripts/mixins/weapon_break') } | ||
----------------------------------- | ||
local entity = {} | ||
|
||
entity.onMobDeath = function(mob, player, optParams) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
----------------------------------- | ||
-- Area: Bhaflau Thickets | ||
-- Mob: Mamool Ja Pikeman | ||
----------------------------------- | ||
mixins = { require('scripts/mixins/families/mamool_ja'), require('scripts/mixins/weapon_break') } | ||
----------------------------------- | ||
local entity = {} | ||
|
||
entity.onMobDeath = function(mob, player, optParams) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
----------------------------------- | ||
-- Area: Bhaflau Thickets | ||
-- Mob: Mamool Ja Stabler | ||
----------------------------------- | ||
mixins = { require('scripts/mixins/families/mamool_ja'), require('scripts/mixins/weapon_break') } | ||
----------------------------------- | ||
local entity = {} | ||
|
||
entity.onMobDeath = function(mob, player, optParams) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
----------------------------------- | ||
-- Area: Mamook | ||
-- Mob: Mamool Ja Blusterer | ||
----------------------------------- | ||
mixins = { require('scripts/mixins/families/mamool_ja'), require('scripts/mixins/weapon_break') } | ||
----------------------------------- | ||
local entity = {} | ||
|
||
entity.onMobDeath = function(mob, player, optParams) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
----------------------------------- | ||
-- Area: Mamook | ||
-- Mob: Mamool Ja Bounder | ||
----------------------------------- | ||
mixins = { require('scripts/mixins/weapon_break') } | ||
----------------------------------- | ||
local entity = {} | ||
|
||
entity.onMobDeath = function(mob, player, optParams) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
----------------------------------- | ||
-- Area: Mamook | ||
-- Mob: Mamool Ja Lurker | ||
----------------------------------- | ||
mixins = { require('scripts/mixins/weapon_break') } | ||
----------------------------------- | ||
local entity = {} | ||
|
||
entity.onMobDeath = function(mob, player, optParams) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
----------------------------------- | ||
-- Area: Mamook | ||
-- Mob: Mamool Ja Mimer | ||
----------------------------------- | ||
mixins = { require('scripts/mixins/weapon_break') } | ||
----------------------------------- | ||
local entity = {} | ||
|
||
entity.onMobDeath = function(mob, player, optParams) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
----------------------------------- | ||
-- Area: Mamook | ||
-- Mob: Mamool Ja Mimicker | ||
----------------------------------- | ||
mixins = { require('scripts/mixins/weapon_break') } | ||
----------------------------------- | ||
local entity = {} | ||
|
||
entity.onMobDeath = function(mob, player, optParams) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
----------------------------------- | ||
-- Area: Mamook | ||
-- Mob: Mamool Ja Philosopher | ||
----------------------------------- | ||
mixins = { require('scripts/mixins/families/mamool_ja'), require('scripts/mixins/weapon_break') } | ||
----------------------------------- | ||
local entity = {} | ||
|
||
entity.onMobDeath = function(mob, player, optParams) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
----------------------------------- | ||
-- Area: Mamook | ||
-- Mob: Mamool Ja Pikeman | ||
----------------------------------- | ||
mixins = { require('scripts/mixins/families/mamool_ja'), require('scripts/mixins/weapon_break') } | ||
----------------------------------- | ||
local entity = {} | ||
|
||
entity.onMobDeath = function(mob, player, optParams) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
----------------------------------- | ||
-- Area: Mamook | ||
-- Mob: Mamool Ja Savant | ||
----------------------------------- | ||
mixins = { require('scripts/mixins/families/mamool_ja'), require('scripts/mixins/weapon_break') } | ||
----------------------------------- | ||
local entity = {} | ||
|
||
entity.onMobDeath = function(mob, player, optParams) | ||
end | ||
|
||
return entity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
----------------------------------- | ||
-- Area: Mamook | ||
-- Mob: Mamool Ja Sophist | ||
----------------------------------- | ||
mixins = { require('scripts/mixins/families/mamool_ja'), require('scripts/mixins/weapon_break') } | ||
----------------------------------- | ||
local entity = {} | ||
|
||
entity.onMobDeath = function(mob, player, optParams) | ||
end | ||
|
||
return entity |
Oops, something went wrong.