diff --git a/.gitignore b/.gitignore
index 0364a4b..fe8eef2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,3 +7,6 @@ _content/output/prc4_ancordia.tlk
*.hak
*.mod
*.md5
+*.md5
+*.hak
+*.tlk
diff --git a/_content/Compiler - Top Hak.bat b/_content/Compiler - Top Hak.bat
new file mode 100644
index 0000000..cf52e99
--- /dev/null
+++ b/_content/Compiler - Top Hak.bat
@@ -0,0 +1,4 @@
+:loop
+"C:\NWN Work\nwnsc.exe" -o -w -n "C:\Games\Steam\steamapps\common\Neverwinter Nights" -i "D:\NWN Repos\Ancordia_PRC\_content\hak\prc8_ancordia";"D:\NWN Repos\PRC8\nwn\nwnprc\trunk\include" "D:\NWN Repos\Ancordia_PRC\_content\hak\prc8_ancordia\*.nss"
+if %errorLevel% == -1 goto :loop
+pause
\ No newline at end of file
diff --git a/_content/hak/prc8_ancordia/69_leadership.nss b/_content/hak/prc8_ancordia/69_leadership.nss
index 261614d..d176d29 100644
--- a/_content/hak/prc8_ancordia/69_leadership.nss
+++ b/_content/hak/prc8_ancordia/69_leadership.nss
@@ -14,9 +14,9 @@ int GetHenchLoyalty(object oHench, object oPC);
int GetHasLeadership(object oPC);
//Returns Leadership Score
int GetLeadershipScore(object oPC);
-//Sets maximum number of henchmen based on Leadership
+//Sets PRCMax(imum number of henchmen based on Leadership
void SetMaxHenchmen69(object oPC);
-//Returns maximum number of henchmen based on Leadership
+//Returns PRCMax(imum number of henchmen based on Leadership
int GetMaxHenchmen69(object oPC);
int GetHenchLoyalty(object oHench, object oPC)
diff --git a/_content/hak/prc8_ancordia/nw_s0_curinflict.nss b/_content/hak/prc8_ancordia/nw_s0_curinflict.nss
index 76dff09..bb70086 100644
--- a/_content/hak/prc8_ancordia/nw_s0_curinflict.nss
+++ b/_content/hak/prc8_ancordia/nw_s0_curinflict.nss
@@ -54,7 +54,7 @@ int DoSpell(object oCaster, object oTarget, int nCasterLevel, int nSpellID, int
}
// Extra points based on spell level, capped to caster level
- int nExtraDamage = min(nSpellLevel * 5, nCasterLevel);
+ int nExtraDamage = PRCMin(nSpellLevel * 5, nCasterLevel);
// Healing is more effective for players on low or normal difficulty
int nDifficultyCondition = (GetIsPC(oTarget) && (GetGameDifficulty() < GAME_DIFFICULTY_CORE_RULES)) && bIsCure;
diff --git a/_content/hak/prc8_ancordia/nw_s0_healcirc.nss b/_content/hak/prc8_ancordia/nw_s0_healcirc.nss
index d9f5095..f489dc3 100644
--- a/_content/hak/prc8_ancordia/nw_s0_healcirc.nss
+++ b/_content/hak/prc8_ancordia/nw_s0_healcirc.nss
@@ -6,7 +6,7 @@
/*
// Positive energy spreads out in all directions
// from the point of origin, curing 1d8 points of
-// damage plus 1 point per caster level (maximum +20)
+// damage plus 1 point per caster level (PRCMax(imum +20)
// to nearby living allies.
//
// Like cure spells, healing circle damages undead in
@@ -21,7 +21,7 @@
//:: modified by mr_bumpkin Dec 4, 2003 for PRC stuff
-//::Added code to maximize for Faith Healing and Blast Infidel
+//::Added code to PRCMax(imize for Faith Healing and Blast Infidel
//::Aaon Graywolf - Jan 7, 2004
#include "prc_inc_function"
@@ -135,7 +135,7 @@ SetLocalInt(OBJECT_SELF, "X2_L_LAST_SPELLSCHOOL_VAR", SPELL_SCHOOL_CONJURATION);
int iBlastFaith = BlastInfidelOrFaithHeal(OBJECT_SELF, oTarget, DAMAGE_TYPE_POSITIVE, FALSE);
if ((nMetaMagic & METAMAGIC_MAXIMIZE) || iBlastFaith)
{
- nHP = 8 + nCasterLvl;//Damage is at max
+ nHP = 8 + nCasterLvl;//Damage is at PRCMax(
}
if ((nMetaMagic & METAMAGIC_EMPOWER))
{
diff --git a/_content/hak/prc8_ancordia/x4_inc_functions.nss b/_content/hak/prc8_ancordia/x4_inc_functions.nss
index 4dbf615..6d85f78 100644
--- a/_content/hak/prc8_ancordia/x4_inc_functions.nss
+++ b/_content/hak/prc8_ancordia/x4_inc_functions.nss
@@ -84,13 +84,13 @@ string CharacterDB(object oPlayer);
string AccountDB(object oPlayer);
// Enforce that the PC will have at least a given number of levels in every
-// class by the time he/she reaches the maximum level allowed in a module.
+// class by the time he/she reaches the PRCMax(imum level allowed in a module.
// If a PC gains a level that would make the above impossible,
// the level-up is cancelled.
// Use at the beginning of an OnLevelUp script.
// - oPC: the levelling player
// - nMinLevel: the minimum number of levels in every class
-// - nPossibleLevel: maximum character level allowed in a module
+// - nPossibleLevel: PRCMax(imum character level allowed in a module
void EnforceAllowedLevel(object oPC, int nMinLevel, int nPossibleLevel = 40);
// Allows (and forces) PC to reassign a given number of levels.
@@ -169,7 +169,7 @@ void EnforceAllowedLevel(object oPC, int nMinLevel, int nPossibleLevel = 40)
}
- //Accept the level-up if the PC doesn't multiclass and hasn't crossed a limit of the maximum possible level in a module
+ //Accept the level-up if the PC doesn't multiclass and hasn't crossed a limit of the PRCMax(imum possible level in a module
if (nClass2 == CLASS_TYPE_INVALID)
{
if (nHD <= nPossibleLevel) return;
diff --git a/_content/output/prc8_ancordia.hak b/_content/output/prc8_ancordia.hak
index 34e2a52..d842a3b 100644
Binary files a/_content/output/prc8_ancordia.hak and b/_content/output/prc8_ancordia.hak differ
diff --git a/_content/output/prc8_ancordia.md5 b/_content/output/prc8_ancordia.md5
index 10eeba9..87b02e8 100644
--- a/_content/output/prc8_ancordia.md5
+++ b/_content/output/prc8_ancordia.md5
@@ -1 +1 @@
-0c1307d9c2cba8ad8677bd037bc88711
\ No newline at end of file
+05b0e24f78179145564e4c79f9556413
\ No newline at end of file
diff --git a/_content/output/prc8_ancordia.tlk b/_content/output/prc8_ancordia.tlk
index 8cbd1a1..4bc6fe1 100644
Binary files a/_content/output/prc8_ancordia.tlk and b/_content/output/prc8_ancordia.tlk differ
diff --git a/_content/tlk/prc8_ancordia.tlk b/_content/tlk/prc8_ancordia.tlk
index 8cbd1a1..4bc6fe1 100644
Binary files a/_content/tlk/prc8_ancordia.tlk and b/_content/tlk/prc8_ancordia.tlk differ
diff --git a/_content/tlk/prc8_ancordia.xml b/_content/tlk/prc8_ancordia.xml
index d585a97..06b9349 100644
--- a/_content/tlk/prc8_ancordia.xml
+++ b/_content/tlk/prc8_ancordia.xml
@@ -83526,7 +83526,7 @@ Special Abilities:
Sohei Spellcasting (Master of Shrouds)
Ur-Priest Spellcasting (Master of Shrouds)
Sorcerous Spellcasting (Hobgoblin Warsoul)
- Sorcerous Casting: Hobgoblin Warsoul's cast spells as a Sorcerer of their hit dice (10th level).
+ Sorcerous Casting: Hobgoblin Warsoul's cast spells as a Sorcerer of their hit dice (10th level).
***** Custom Weapon VFX *****
... Darkness / Shadow
... Psionic / Mind
@@ -85492,42 +85492,49 @@ FEAT FEATURES:
Level
1: AC Armor +4
+2: Exalted Feat
3: AC Armor +5
4: Weapon enhancement +1
+ Exalted Feat
6: AC Armor +6
AC Deflection +1
+ Exalted Feat
7: All saving throws +1
Ability score enhancement +2
8: AC Natural +1
+ Exalted Feat
9: AC Armor +7
10: Weapon enhancement +2
DR 5/-
+ Exalted Feat
11: Ability score enhancement +4/+2
12: AC Armor +8
AC Deflection +2
+ Exalted Feat
13: All saving throws +2
Energy (fire/cold/electric/sonic/acid) resistance 5
14: Weapon enhancement +3
Freedom of Movement
+ Exalted Feat
15: AC Armor +9
Ability score enhancement +6/+4/+2
16: AC Natural +2
+ Exalted Feat
17: Weapon enhancement +4
All saving throws +3
Regeneration 1
18: AC Armor +10
AC Deflection +3
True Seeing
+ Exalted Feat
19: Ability score enhancement +8/+6/+4/+2
DR 10/-
20: Weapon enhancement +5
Energy resistance 15
+ Exalted Feat
*This is based on Vow of Poverty 3.0, with the following variations:
-- Can only be selected at Level 1
-- No Bonus exalted feat every 2 levels (we just have other 2, wouldn't make sense)
- No Endure elements, Sustenance, Mind shielding (would have little impact on NWN gameplay)
-- No Sacred Vow as requirement (so a Level 1 from any race can get it and to partially offset the lack of Bonus exalted feat)
- The level progression continues the same during the Epic Levels
Daring Warrior
@@ -85548,6 +85555,67 @@ Prerequisite: Ki Power, Proficiency with all martial weapons
Specifics: Your fighter and ninja levels stack for the purpose of determining the size of your ki pool, as well as your AC bonus. For example, a 5th-level fighter/1st-level ninja with this feat could use his ki powers a number of times equal to 3 (one-half his ninja and fighter levels) + his Wisdom bonus (if any), and would have a +1 bonus to AC (as if he were a 6th-level ninja).
Use: Automatic
Special: A fighter can select Martial Stalker as one of his fighter bonus feats
+ Investigator
+ Type of Feat: General
+Benefit: You get a +2 bonus on all Sense Motive and Search checks.
+Use: Automatic
+ ## Hidden Talent Reserve ##
+ Hidden Talent
+ Type of Feat: General
+
+Prerequsites:
+CHA 11+, This feat can only be taken at 1st level.
+
+Benefit:
+Your latent power of psionics flares to life, conferring upon you the designation of a psionic character. As a psionic character, you gain a reserve of 2 power points, and you can take psionic feats, metapsionic feats, and psionic item creation feats. If you have or take a class that grants power points, the power points gained from Hidden Talent are added to your total power point reserve.
+
+When you take this feat, choose one 1st-level power from any psionic class list. You know this power (it becomes one of your powers known). You can manifest this power with the power points provided by this feat if you have a Charisma score of 11 or higher. If you have no psionic class levels, you are considered a 1st-level manifester when manifesting this power. If you have psionic class levels, you can manifest the power at the highest manifester level you have attained. (This is not a manifester level, and it does not add to any manifester levels gained by taking psionic classes.) If you have no psionic class levels, use Charisma to determine how powerful a power you can manifest and how hard those powers are to resist.
+ Hidden Talent (Biofeedback)
+ Hidden Talent (Bite of the Wolf)
+ Hidden Talent (Bolt)
+ Hidden Talent (Burst)
+ Hidden Talent (Call To Mind)
+ Hidden Talent (Call Weaponry)
+ Hidden Talent (Chameleon)
+ Hidden Talent (Claws of the Beast)
+ Hidden Talent (Compression)
+ Hidden Talent (Conceal Thoughts)
+ Hidden Talent (Create Sound)
+ Hidden Talent (Crystal Shard)
+ Hidden Talent (Daze)
+ Hidden Talent (Deceleration)
+ Hidden Talent (Precognance, Defensive)
+ Hidden Talent (Demoralize)
+ Hidden Talent (Disable)
+ Hidden Talent (Dissipating Touch)
+ Hidden Talent (Distract)
+ Hidden Talent (Elf Sight)
+ Hidden Talent (Empathy)
+ Hidden Talent (Empty Mind)
+ Hidden Talent (Energy Ray)
+ Hidden Talent (Entangling Ectoplasm)
+ Hidden Talent (Expansion)
+ Hidden Talent (Far Hand)
+ Hidden Talent (Force Screen)
+ Hidden Talent (Grease)
+ Hidden Talent (Hammer)
+ Hidden Talent (Inertial Armour)
+ Hidden Talent (Matter Agitation)
+ Hidden Talent (Metaphysical Claw)
+ Hidden Talent (Metaphysical Weapon)
+ Hidden Talent (Mind Thrust)
+ Hidden Talent (My Light)
+ Hidden Talent (Precognance, Offensive)
+ Hidden Talent (Prescience, Offensive)
+ Hidden Talent (Prevenom)
+ Hidden Talent (Prevenom Weapon)
+ Hidden Talent (Skate)
+ Hidden Talent (Stomp)
+ Hidden Talent (Synesthete)
+ Hidden Talent (Telempathic Projection)
+ Hidden Talent (Thicken Skin)
+ Hidden Talent (Vigor)
+ Hidden Talent (Grip Of Iron)
Force Missiles
Evocation [Force]
Level: Sorcerer 4, Wizard 4,
@@ -85736,4 +85804,29 @@ Tortoise shell slows a creature's movement as if it were wearing heavy armor. An
Tortoise Shell (12)
Tortoise Shell (15)
Tortoise Shell (18)
+ Sanctify Ki Strike
+ Type of Feat: Exalted
+Prerequisite: Improved Unarmed Strike, CHA 15, Ki strike
+Specifics: A Your unarmed strikes deal 1 extra point of damage to evil creatures, or 1d4 points to evil outsiders and evil undead. In addition, they are considered good-aligned for purposes of overcoming damage reduction.
+ Holy Ki Strike
+ Type of Feat: Exalted
+Prerequisite: Improved Unarmed Strike, CHA 15, Ki strike, Sanctify Ki Strike
+Specifics: Your unarmed strike deals 2d6 points of extra holy damage to evil creatures. In addition, it is considered holy, which means that it can bypass the damage reduction of some evil outsiders. This does not stack with the extra damage from the Sanctify Ki Strike feat.
+ Fist of the Heavens
+ Type of Feat: Exalted
+Prerequisite: Improved Unarmed Strike, WIS 15, Sanctify Ki Strike
+Specifics: The saving throw DC of your Stunning Fist increases by 2 when you use it against an evil creature. If the stunning attack succeeds, the creature is staggered for 1 round following the round it is stunned.
+ Vow of Abstinence
+ Type of Feat: Exalted
+Prerequisite: Sacred Vow
+Specifics: You gain a +4 perfection bonus on Fortitude saving throws against poisons and drugs (as long as you are subjected to a drug unwillingly).
+Special: You cannot consume intoxicating, stimulating, depressant, or hallucinogenic substances, including alcohol, caffeine, and other drugs.
+ Vow of Chastity
+ Type of Feat: Exalted
+Prerequisite: Sacred Vow
+Specifics: You gain a +4 perfection bonus on Will saving throws against charm and phantasm spells and effects.
+ Gift of Faith
+ Type of Feat: Exalted
+Prerequisite: Wis 13+
+Specifics: You gain a +2 bonus on saving throws to resist any fear effect, despair effect (such as the crushing despair spell), or similar mind-affecting condition, but not charms or compulsions (such as the charm person and dominate person spells)
\ No newline at end of file
diff --git a/_module/ifo/module.ifo.json b/_module/ifo/module.ifo.json
index 4401f46..3454c90 100644
--- a/_module/ifo/module.ifo.json
+++ b/_module/ifo/module.ifo.json
@@ -1292,7 +1292,7 @@
"Mod_Description": {
"type": "cexolocstring",
"value": {
- "0": "Ancordia [PRC-CEP2]\n\nAncordia v1.12prc8\n---\nAuthor: Grani / PRC'd by: Jaysyn\nNumber of players: 1-20\nClasses: any\nLevel range: 1-40\n\nThe land of Ancordia offers players a dynamic world in which their characters can adventure, as well as grow in experience and collect treasures. They will have a lot to do - from exploring the land of Ancordia, discovering dangerous dungeons in the process, to embarking on quests, to protecting towns and settlements from orcish or undead assaults. Are you brave enough to discover Ancordia's secrets?\n\nModule's website:\nhttp://ancordia.esy.es",
+ "0": "Ancordia [PRC8-CEP2]\n\nAncordia v1.13prc8\n---\nAuthor: Grani / PRC'd by: Jaysyn\nNumber of players: 1-20\nClasses: any\nLevel range: 1-40\n\nThe land of Ancordia offers players a dynamic world in which their characters can adventure, as well as grow in experience and collect treasures. They will have a lot to do - from exploring the land of Ancordia, discovering dangerous dungeons in the process, to embarking on quests, to protecting towns and settlements from orcish or undead assaults. Are you brave enough to discover Ancordia's secrets?\n\nModule's website:\nhttp://ancordia.esy.es",
"10": "Ancordia v1.11\n---\nAutor: Grani\nLiczba graczy: 1-20\nKlasy: dowolne\nPoziomy: 1-40\n\nAncordia oferuje graczom dynamiczny œwiat, w którym ich postacie mog¹ siê rozwijaæ, prze¿ywaæ przygody, zdobywaæ doœwiadczenie oraz odnajdywaæ cenne skarby. Bêd¹ mia³y wiele do roboty - od przemierzania krainy Ancordii, odkrywaj¹c przy okazji lochy wype³nione niebezpieczeñstwami, przez przyjmowanie i wykonywanie zlecanych zadañ, do odpierania inwazji orków lub nieumar³ych. Odwa¿ysz siê odkryæ tajemnice Ancordii?\n\nStrona modu³u:\nhttp://ancordia.esy.es"
}
},
@@ -1629,7 +1629,7 @@
"Mod_Name": {
"type": "cexolocstring",
"value": {
- "0": "Ancordia [PRC-CEP2]",
+ "0": "Ancordia [PRC8-CEP2]",
"10": "Ancordia"
}
},
diff --git a/_module/ncs/bartend_basstout.ncs b/_module/ncs/bartend_basstout.ncs
index 4d505c2..cb66ced 100644
Binary files a/_module/ncs/bartend_basstout.ncs and b/_module/ncs/bartend_basstout.ncs differ
diff --git a/_module/ncs/bartend_btbrandy.ncs b/_module/ncs/bartend_btbrandy.ncs
index d17ff22..e667989 100644
Binary files a/_module/ncs/bartend_btbrandy.ncs and b/_module/ncs/bartend_btbrandy.ncs differ
diff --git a/_module/ncs/bartend_ddwhisky.ncs b/_module/ncs/bartend_ddwhisky.ncs
index c18ddfa..e40e0eb 100644
Binary files a/_module/ncs/bartend_ddwhisky.ncs and b/_module/ncs/bartend_ddwhisky.ncs differ
diff --git a/_module/ncs/bartend_moonshin.ncs b/_module/ncs/bartend_moonshin.ncs
index 65e2e4a..09c5f58 100644
Binary files a/_module/ncs/bartend_moonshin.ncs and b/_module/ncs/bartend_moonshin.ncs differ
diff --git a/_module/ncs/bartend_verdure.ncs b/_module/ncs/bartend_verdure.ncs
index 16a3d89..8f1384b 100644
Binary files a/_module/ncs/bartend_verdure.ncs and b/_module/ncs/bartend_verdure.ncs differ
diff --git a/_module/ncs/craft_itarmor1.ncs b/_module/ncs/craft_itarmor1.ncs
index 63029c1..870ec80 100644
Binary files a/_module/ncs/craft_itarmor1.ncs and b/_module/ncs/craft_itarmor1.ncs differ
diff --git a/_module/ncs/craft_itarmor2.ncs b/_module/ncs/craft_itarmor2.ncs
index 30bda18..3e80668 100644
Binary files a/_module/ncs/craft_itarmor2.ncs and b/_module/ncs/craft_itarmor2.ncs differ
diff --git a/_module/ncs/craft_itarmor3.ncs b/_module/ncs/craft_itarmor3.ncs
index 31ac98e..d0e1509 100644
Binary files a/_module/ncs/craft_itarmor3.ncs and b/_module/ncs/craft_itarmor3.ncs differ
diff --git a/_module/ncs/craft_itarmor4.ncs b/_module/ncs/craft_itarmor4.ncs
index c7f2120..e996e10 100644
Binary files a/_module/ncs/craft_itarmor4.ncs and b/_module/ncs/craft_itarmor4.ncs differ
diff --git a/_module/ncs/craft_itarmor5.ncs b/_module/ncs/craft_itarmor5.ncs
index 6a196e2..94169b3 100644
Binary files a/_module/ncs/craft_itarmor5.ncs and b/_module/ncs/craft_itarmor5.ncs differ
diff --git a/_module/ncs/craft_itarmor6.ncs b/_module/ncs/craft_itarmor6.ncs
index 99ef05f..29f1af0 100644
Binary files a/_module/ncs/craft_itarmor6.ncs and b/_module/ncs/craft_itarmor6.ncs differ
diff --git a/_module/ncs/craft_itarmor7.ncs b/_module/ncs/craft_itarmor7.ncs
index 8ae370c..1672ddb 100644
Binary files a/_module/ncs/craft_itarmor7.ncs and b/_module/ncs/craft_itarmor7.ncs differ
diff --git a/_module/ncs/craft_itarmor8.ncs b/_module/ncs/craft_itarmor8.ncs
index 7ab2ec7..acbed77 100644
Binary files a/_module/ncs/craft_itarmor8.ncs and b/_module/ncs/craft_itarmor8.ncs differ
diff --git a/_module/ncs/dun_phyl_death.ncs b/_module/ncs/dun_phyl_death.ncs
index c712990..dae9c7d 100644
Binary files a/_module/ncs/dun_phyl_death.ncs and b/_module/ncs/dun_phyl_death.ncs differ
diff --git a/_module/ncs/joust_clearskill.ncs b/_module/ncs/joust_clearskill.ncs
index f502280..e9e96d3 100644
Binary files a/_module/ncs/joust_clearskill.ncs and b/_module/ncs/joust_clearskill.ncs differ
diff --git a/_module/ncs/quest_hasransom3.ncs b/_module/ncs/quest_hasransom3.ncs
index 739ea32..feb6efc 100644
Binary files a/_module/ncs/quest_hasransom3.ncs and b/_module/ncs/quest_hasransom3.ncs differ
diff --git a/_module/ncs/quest_isbg1or2.ncs b/_module/ncs/quest_isbg1or2.ncs
index a8c2ea7..c0fad53 100644
Binary files a/_module/ncs/quest_isbg1or2.ncs and b/_module/ncs/quest_isbg1or2.ncs differ
diff --git a/_module/ncs/rumor_drow.ncs b/_module/ncs/rumor_drow.ncs
index 2639cd0..09380b1 100644
Binary files a/_module/ncs/rumor_drow.ncs and b/_module/ncs/rumor_drow.ncs differ
diff --git a/_module/ncs/rumor_ghoul.ncs b/_module/ncs/rumor_ghoul.ncs
index 48d1b7e..f11003d 100644
Binary files a/_module/ncs/rumor_ghoul.ncs and b/_module/ncs/rumor_ghoul.ncs differ
diff --git a/_module/ncs/rumor_island.ncs b/_module/ncs/rumor_island.ncs
index 680c08c..5da649a 100644
Binary files a/_module/ncs/rumor_island.ncs and b/_module/ncs/rumor_island.ncs differ
diff --git a/_module/ncs/rumor_necromance.ncs b/_module/ncs/rumor_necromance.ncs
index 92d8b12..30de664 100644
Binary files a/_module/ncs/rumor_necromance.ncs and b/_module/ncs/rumor_necromance.ncs differ
diff --git a/_module/ncs/rumor_nuvaris.ncs b/_module/ncs/rumor_nuvaris.ncs
index f8d512c..81e8a20 100644
Binary files a/_module/ncs/rumor_nuvaris.ncs and b/_module/ncs/rumor_nuvaris.ncs differ
diff --git a/_module/ncs/rumor_tomb.ncs b/_module/ncs/rumor_tomb.ncs
index 864f15d..2379d5f 100644
Binary files a/_module/ncs/rumor_tomb.ncs and b/_module/ncs/rumor_tomb.ncs differ
diff --git a/_module/ncs/rumor_wizard.ncs b/_module/ncs/rumor_wizard.ncs
index 98f1b1f..2aa3aef 100644
Binary files a/_module/ncs/rumor_wizard.ncs and b/_module/ncs/rumor_wizard.ncs differ
diff --git a/_module/ncs/world_advint1.ncs b/_module/ncs/world_advint1.ncs
index 826839e..e0084ba 100644
Binary files a/_module/ncs/world_advint1.ncs and b/_module/ncs/world_advint1.ncs differ
diff --git a/_module/ncs/world_advint2.ncs b/_module/ncs/world_advint2.ncs
index 07c74f6..1a19825 100644
Binary files a/_module/ncs/world_advint2.ncs and b/_module/ncs/world_advint2.ncs differ
diff --git a/_module/ncs/world_advint3.ncs b/_module/ncs/world_advint3.ncs
index 4ed0951..733eced 100644
Binary files a/_module/ncs/world_advint3.ncs and b/_module/ncs/world_advint3.ncs differ
diff --git a/_release/Ancordia [PRC8-CEP2].7z b/_release/Ancordia [PRC8-CEP2].7z
index 9069427..172fc3a 100644
Binary files a/_release/Ancordia [PRC8-CEP2].7z and b/_release/Ancordia [PRC8-CEP2].7z differ