Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion FF1Blazorizer/wwwroot/tooltips/tooltips.json
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,7 @@
"Id": "spellNameMadness",
"title": "Spell Name Obfuscation",
"screenshot": "spellNameMadness.png",
"description": "Hides the actual spell names for all spells:\n\nMixed Up: Shuffles spell names.\n\nMadness: Creates random codewords."
"description": "Hides the actual spell names for all spells:\n\nMixed Up: Shuffles spell names.\n\nMadness: Creates random codewords.\n\nFUCK ICE: Renames all spells to AICE."
},

{
Expand Down
16 changes: 15 additions & 1 deletion FF1Lib/Magic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1226,6 +1226,17 @@ public void FixMute(Flags flags)
PutInBank(0x0C, 0xB3E8, Blob.FromHex("AD8F6CC900D00D"));
}
}

public void FuckIce(Flags flags)
{
if (flags.SpellNameMadness == SpellNameMadness.FuckIce)
{
for (int i = 176; i < 176 + 64; i++)
{
ItemsText[i] = "AICE";
}
}
}
}

public enum SpellNameMadness
Expand All @@ -1237,7 +1248,10 @@ public enum SpellNameMadness
MixedUp,

[Description("Madness")]
Madness
Madness,

[Description("FUCK ICE")]
FuckIce,
}

public class SpellSlotInfo
Expand Down
1 change: 1 addition & 0 deletions FF1Lib/Randomize.cs
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,7 @@ public async Task<Flags> Randomize(Blob seed, Flags flags, Preferences preferenc
ScalePrices(ShopData, flags, rng, ((bool)flags.ClampMinimumPriceScale), ShopData.ItemShopSlot, flags.ImprovedClinic);
extConsumables.AddExtConsumables();
FixMute(flags);
FuckIce(flags);

await this.Progress();

Expand Down