Skip to content

Commit

Permalink
Flipped Imbuing and Mysticism Skill
Browse files Browse the repository at this point in the history
  • Loading branch information
DragonSlayer62 committed Aug 12, 2024
1 parent d428164 commit 36f2478
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions data/dfndata/skills/skills.dfn
Original file line number Diff line number Diff line change
Expand Up @@ -1206,10 +1206,10 @@ SKILLPOINT=990,5,0
SKILLPOINT=1000,0,0
}

// Imbuing
// Mysticism
[SKILL 55]
{
NAME=IMBUING
NAME=MYSTICISM
STR=0
DEX=0
INT=0
Expand All @@ -1227,10 +1227,10 @@ SKILLPOINT=990,5,0
SKILLPOINT=1000,0,0
}

// Mysticism
// Imbuing
[SKILL 56]
{
NAME=MYSTICISM
NAME=IMBUING
STR=0
DEX=0
INT=0
Expand Down
2 changes: 2 additions & 0 deletions source/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
12/08/2024 - Dragon Slayer
Flipped Imbuing and Mysticism Skill around.
1/05/2024 - Dragon Slayer/Xuri
Fixed AutoUnequipAttempt function in clumsy.js, createfood.js level1target.js, will no longer fail on casting and return to hardcode.
Fixed createfood to check for reagents on cast.
Expand Down
2 changes: 1 addition & 1 deletion source/UOXJSPropertySpecs.h
Original file line number Diff line number Diff line change
Expand Up @@ -675,8 +675,8 @@ inline JSPropertySpec CSkillsProps[] =
{ "bushido", BUSHIDO, JSPROP_ENUMANDPERM, nullptr, nullptr },
{ "ninjitsu", NINJITSU, JSPROP_ENUMANDPERM, nullptr, nullptr },
{ "spellweaving", SPELLWEAVING, JSPROP_ENUMANDPERM, nullptr, nullptr },
{ "imbuing", IMBUING, JSPROP_ENUMANDPERM, nullptr, nullptr },
{ "mysticism", MYSTICISM, JSPROP_ENUMANDPERM, nullptr, nullptr },
{ "imbuing", IMBUING, JSPROP_ENUMANDPERM, nullptr, nullptr },
{ "throwing", THROWING, JSPROP_ENUMANDPERM, nullptr, nullptr },
{ "allskills", ALLSKILLS, JSPROP_ENUMANDPERM, nullptr, nullptr },
{ nullptr, static_cast<SI08>(0), static_cast<UI08>(0), nullptr, nullptr }
Expand Down
2 changes: 1 addition & 1 deletion source/enums.h
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,8 @@ enum Skills
BUSHIDO,
NINJITSU,
SPELLWEAVING,
IMBUING,
MYSTICISM,
IMBUING,
THROWING,

ALLSKILLS, // #skills+1
Expand Down

0 comments on commit 36f2478

Please sign in to comment.