Sakorona / SDVMods

A collection of mods for Stardew Valley
Other
22 stars 21 forks source link

Notes for 1.3 updates #59

Closed Sakorona closed 5 years ago

Sakorona commented 6 years ago

(it's on my 1.3 list: quests, fishing artifacts, Better panning) Well, one that a) weighs unfished artifacts higher, but b) interacts with your fishing level so say, a fisher 10 with the treasure perks will find the treasure chest more often (also one that c) prestacks dup items)

internal class MonsterDrawPatch
{
    public static bool wasGlider;
    public static void Prefix(Monster __instance, SpriteBatch b)
    {
        wasGlider = __instance.isGlider;
        if(wasGlider)
            __instance.isGlider = false;
    }

    public static void Postfix(Monster __instance)
    {
        if(wasGlider)
            __instance.isGlider = true;
    }
}

(That patches Monster.draw)(edited)

Sakorona commented 6 years ago

Rival score code?

Sakorona commented 6 years ago

Test flood code.

Check for secret notes, per-player luck

Sakorona commented 5 years ago

Yeah, I'm ... just going to not pursue active modding beside maintance. Maybe SDV 1.4 will change my mind?