2026/04/26 Morning Update

Fixed Weapon of Choice: Scythe typo in iprp_feats.2da.
Fixed Chaos Dragon breath not randomizing.
This commit is contained in:
Jaysyn904
2026-04-26 09:03:11 -04:00
parent f2fae74d01
commit dd038b659b
2 changed files with 27006 additions and 27006 deletions

View File

@@ -16273,7 +16273,7 @@
16269 8992 WeaponOfChoice_LightFlail 1 935 16269 8992 WeaponOfChoice_LightFlail 1 935
16270 8993 WeaponOfChoice_WarHammer 1 936 16270 8993 WeaponOfChoice_WarHammer 1 936
16271 8994 WeaponOfChoice_HeavyFlail 1 937 16271 8994 WeaponOfChoice_HeavyFlail 1 937
16272 8995 WeaponOfChoice_Scythe 1 928 16272 8995 WeaponOfChoice_Scythe 1 938
16273 8996 WeaponOfChoice_Katana 1 939 16273 8996 WeaponOfChoice_Katana 1 939
16274 8997 WeaponOfChoice_BastardSword 1 940 16274 8997 WeaponOfChoice_BastardSword 1 940
16275 8998 WeaponOfChoice_DireMace 1 941 16275 8998 WeaponOfChoice_DireMace 1 941

View File

@@ -205,11 +205,11 @@ void main()
//Affects damage, saving throw, and impact visual. //Affects damage, saving throw, and impact visual.
switch(Random(5)) switch(Random(5))
{ {
case 0: DBREED = DAMAGE_TYPE_COLD; case 0: DBREED = DAMAGE_TYPE_COLD; break;
case 1: DBREED = DAMAGE_TYPE_ACID; case 1: DBREED = DAMAGE_TYPE_ACID; break;
case 2: DBREED = DAMAGE_TYPE_FIRE; case 2: DBREED = DAMAGE_TYPE_FIRE; break;
case 3: DBREED = DAMAGE_TYPE_SONIC; case 3: DBREED = DAMAGE_TYPE_SONIC; break;
case 4: DBREED = DAMAGE_TYPE_ELECTRICAL; case 4: DBREED = DAMAGE_TYPE_ELECTRICAL; break;
} }
} }