mirror of
https://github.com/sebastian-heinz/Arrowgene.DragonsDogmaOnline
synced 2026-08-03 11:12:41 -04:00
- Add new scripting module for "Skill Augmentation" - Locked EM4 skills behind completion of EM4 - Implemented tree layouts for all jobs - Implemented new REQ, RES and handlers for Skill Augmentation - Implemented the quest Skill Augmentation Guidance of a Renewed White Dragon - Implemented augmentation trials for all jobs - Updated adventure guide logic to handle when to present quests better. - Adjusted how personal quests for vocation are distributed to remove the need to change areas or log out to get them to show. Thanks for help from multiple players to help us collect the skill tree data. Co-authored-by: 𝔢𝔪𝔪𝔞 𝔢𝔳𝔢𝔯𝔤𝔞𝔯𝔡 Co-authored-by: Cold Blood Co-authored-by: Genzyuro Co-authored-by: あゆふぁ Co-authored-by: 鬼頭オパーリン Co-authored-by: GaethanT Co-authored-by: Sapphiratelaemara Co-authored-by: King Flipsta
7 lines
437 B
SQL
7 lines
437 B
SQL
CREATE TABLE ddon_skill_augmentation_released_elements (
|
|
"character_id" INTEGER NOT NULL,
|
|
"job_id" INTEGER NOT NULL,
|
|
"release_id" INTEGER NOT NULL,
|
|
CONSTRAINT pk_ddon_skill_augmentation_released_elements PRIMARY KEY ("character_id", "job_id", "release_id"),
|
|
CONSTRAINT fk_ddon_skill_augmentation_released_elements_character_id FOREIGN KEY ("character_id") REFERENCES "ddon_character" ("character_id") ON DELETE CASCADE
|
|
);
|