Skip to content

Commit 45f7dc1

Browse files
committed
Yalahar Travel Routes
1 parent 4ee64d1 commit 45f7dc1

1 file changed

Lines changed: 147 additions & 0 deletions

File tree

src/001-constants.lua

Lines changed: 147 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1609,6 +1609,137 @@ local TRAVEL_ROUTES = {
16091609
['Captain Sinbeard'] = {'hi', 'venore', 'yes'},
16101610
['Captain Fearless'] = {'hi', 'svargrond', 'yes'}
16111611
}
1612+
},
1613+
['yalahar~fenrock'] = {
1614+
cost = 0,
1615+
transcript = {
1616+
['Maris'] = {'hi', 'fenrock', 'yes'}
1617+
}
1618+
},
1619+
['fenrock~yalahar'] = {
1620+
cost = 0,
1621+
transcript = {
1622+
['Maris'] = {'hi', 'yalahar', 'yes'}
1623+
}
1624+
},
1625+
['yalahar~mistrock'] = {
1626+
cost = 0,
1627+
transcript = {
1628+
['Maris'] = {'hi', 'mistrock', 'yes'}
1629+
}
1630+
},
1631+
['mistrock~yalahar'] = {
1632+
cost = 0,
1633+
transcript = {
1634+
['Maris'] = {'hi', 'yalahar', 'yes'}
1635+
}
1636+
},
1637+
['yalahar~vengoth'] = {
1638+
cost = 0,
1639+
transcript = {
1640+
['Harlow'] = {'hi', 'vengoth', 'yes'}
1641+
}
1642+
},
1643+
['vengoth~yalahar'] = {
1644+
cost = 0,
1645+
transcript = {
1646+
['Harlow'] = {'hi', 'yalahar', 'yes'}
1647+
}
1648+
},
1649+
['yalahar~quaras'] = {
1650+
cost = 0,
1651+
transcript = {
1652+
['Tarak'] = {'hi', 'trip', 'yes'}
1653+
}
1654+
},
1655+
['quaras~yalahar'] = {
1656+
cost = 0,
1657+
transcript = {
1658+
['Tarak'] = {'hi', 'passage', 'yes'}
1659+
}
1660+
},
1661+
['yalahar~ab\'dendriel'] = {
1662+
cost = 160,
1663+
transcript = {
1664+
['Karith'] = {'hi', 'ab\'dendriel', 'yes'}
1665+
}
1666+
},
1667+
['yalahar~ankrahmun'] = {
1668+
cost = 230,
1669+
transcript = {
1670+
['Karith'] = {'hi', 'ankrahmun', 'yes'}
1671+
}
1672+
},
1673+
['yalahar~carlin'] = {
1674+
cost = 185,
1675+
transcript = {
1676+
['Karith'] = {'hi', 'carlin', 'yes'}
1677+
}
1678+
},
1679+
['yalahar~darashia'] = {
1680+
cost = 210,
1681+
transcript = {
1682+
['Karith'] = {'hi', 'darashia', 'yes'}
1683+
}
1684+
},
1685+
['yalahar~liberty bay'] = {
1686+
cost = 275,
1687+
transcript = {
1688+
['Karith'] = {'hi', 'liberty bay', 'yes'}
1689+
}
1690+
},
1691+
['yalahar~port hope'] = {
1692+
cost = 260,
1693+
transcript = {
1694+
['Karith'] = {'hi', 'port hope', 'yes'}
1695+
}
1696+
},
1697+
['yalahar~thais'] = {
1698+
cost = 200,
1699+
transcript = {
1700+
['Karith'] = {'hi', 'thais', 'yes'}
1701+
}
1702+
},
1703+
['yalahar~venore'] = {
1704+
cost = 185,
1705+
transcript = {
1706+
['Karith'] = {'hi', 'venore', 'yes'}
1707+
}
1708+
},
1709+
['yalahar~edron'] = {
1710+
cost = 360,
1711+
transcript = {
1712+
['Karith'] = {'hi', 'thais', 'yes'},
1713+
['Captain Bluebear'] = {'hi', 'edron', 'yes'}
1714+
}
1715+
},
1716+
['yalahar~roshamuul'] = {
1717+
cost = 410,
1718+
transcript = {
1719+
['Karith'] = {'hi', 'thais', 'yes'},
1720+
['Captain Bluebear'] = {'hi', 'roshamuul', 'yes'}
1721+
}
1722+
},
1723+
['yalahar~oramond'] = {
1724+
cost = 350,
1725+
transcript = {
1726+
['Karith'] = {'hi', 'thais', 'yes'},
1727+
['Captain Bluebear'] = {'hi', 'roshamuul', 'yes'}
1728+
}
1729+
},
1730+
['yalahar~gray island'] = {
1731+
cost = 350,
1732+
transcript = {
1733+
['Karith'] = {'hi', 'thais', 'yes'},
1734+
['Captain Bluebear'] = {'hi', 'gray island', 'yes'}
1735+
}
1736+
},
1737+
['yalahar~svargrond'] = {
1738+
cost = 380,
1739+
transcript = {
1740+
['Karith'] = {'hi', 'thais', 'yes'},
1741+
['Captain Bluebear'] = {'hi', 'roshamuul', 'yes'}
1742+
}
16121743
}
16131744
}
16141745

@@ -1628,6 +1759,22 @@ local SPAWN_TRAVELLING = {
16281759
['cormaya leaf golems (ms)'] = 20,
16291760
['cormaya leaf golems (ed)'] = 20,
16301761
['cormaya leaf golems (rp)'] = 20,
1762+
['fenrock dragon lords (ek)'] = 100,
1763+
['fenrock dragon lords (ms)'] = 100,
1764+
['fenrock dragon lords (ed)'] = 100,
1765+
['fenrock dragon lords (rp)'] = 100,
1766+
['mistrock cyclops (ek)'] = 100,
1767+
['mistrock cyclops (ms)'] = 100,
1768+
['mistrock cyclops (ed)'] = 100,
1769+
['mistrock cyclops (rp)'] = 100,
1770+
['vengoth haunted treelings (ek)'] = 100,
1771+
['vengoth haunted treelings (ms)'] = 100,
1772+
['vengoth haunted treelings (ed)'] = 100,
1773+
['vengoth haunted treelings (rp)'] = 100,
1774+
['yalahar quaras (ek)'] = 50,
1775+
['yalahar quaras (ms)'] = 50,
1776+
['yalahar quaras (ed)'] = 50,
1777+
['yalahar quaras (rp)'] = 50,
16311778
['banuta -2 (ek)'] = 50
16321779
}
16331780

0 commit comments

Comments
 (0)