
* Episode 17.2 Initial Release of instances and quests * Added warp portals and monster spawn scripts * Added Episode 17.2 related database entries Closed #6470 Thanks to @Megelith @Pokye Co-authored-by: JohnnyPlayy <JohnnyPlayy@users.noreply.github.com> Co-authored-by: Everade <privacy@gatheringro.com> Co-authored-by: crazyarashi <26841779+crazy-arashi@users.noreply.github.com> Co-authored-by: Atemo <capucrath@gmail.com>
21 lines
916 B
SQL
21 lines
916 B
SQL
ALTER TABLE `mob_db`
|
|
ADD COLUMN `racegroup_ep172alpha` tinyint(1) unsigned DEFAULT NULL,
|
|
ADD COLUMN `racegroup_ep172beta` tinyint(1) unsigned DEFAULT NULL,
|
|
ADD COLUMN `racegroup_ep172bath` tinyint(1) unsigned DEFAULT NULL
|
|
;
|
|
ALTER TABLE `mob_db2`
|
|
ADD COLUMN `racegroup_ep172alpha` tinyint(1) unsigned DEFAULT NULL,
|
|
ADD COLUMN `racegroup_ep172beta` tinyint(1) unsigned DEFAULT NULL,
|
|
ADD COLUMN `racegroup_ep172bath` tinyint(1) unsigned DEFAULT NULL
|
|
;
|
|
ALTER TABLE `mob_db_re`
|
|
ADD COLUMN `racegroup_ep172alpha` tinyint(1) unsigned DEFAULT NULL,
|
|
ADD COLUMN `racegroup_ep172beta` tinyint(1) unsigned DEFAULT NULL,
|
|
ADD COLUMN `racegroup_ep172bath` tinyint(1) unsigned DEFAULT NULL
|
|
;
|
|
ALTER TABLE `mob_db2_re`
|
|
ADD COLUMN `racegroup_ep172alpha` tinyint(1) unsigned DEFAULT NULL,
|
|
ADD COLUMN `racegroup_ep172beta` tinyint(1) unsigned DEFAULT NULL,
|
|
ADD COLUMN `racegroup_ep172bath` tinyint(1) unsigned DEFAULT NULL
|
|
;
|