diff --git a/game/04-Variables/variables-versionUpdate.twee b/game/04-Variables/variables-versionUpdate.twee index d912aa606c30967179442d292f187f14e1c78821..c41737ebe381d9c451f864a3401e62c110f0a052 100644 --- a/game/04-Variables/variables-versionUpdate.twee +++ b/game/04-Variables/variables-versionUpdate.twee @@ -4667,7 +4667,7 @@ <<if $temple_rank is "initiate" or $temple_rank is "monk" or $temple_rank is "priest" and $temple_initiate_days is undefined>> <<set $temple_initiate_days to 0>> <</if>> - <<if $temple_rank is "monk" or $temple_rank is "priest" and $temple_monk_days is undefined>> + <<if ($temple_rank is "monk" or $temple_rank is "priest") and $temple_monk_days is undefined>> <<set $temple_monk_days to 0>> <</if>> diff --git a/game/base-combat/ejaculation-kylar.twee b/game/base-combat/ejaculation-kylar.twee index a1ac0da60fa482d4a5e5ec14d10446da6e957491..46751d078ee0a78b9fca0e97920f4b1251035df4 100644 --- a/game/base-combat/ejaculation-kylar.twee +++ b/game/base-combat/ejaculation-kylar.twee @@ -916,7 +916,7 @@ <<faceejacstat>><<ejacstat>><<set $hygiene += 500>><<bodyliquid "face" "semen">> <<case 4 5 6>> - <<He>> strokes <<his>> cock and palming your head, ejaculates onto your face. Warm cum drips down your forehead and nose. <<He>> licks off your face. + <<He>> strokes <<his>> cock and palming your head, ejaculates onto your face. Warm cum drips down your forehead and nose. <<He>> licks it off your face. <<case 7>> <<He>> grasps your hair tightly in <<his>> small fist, stroking <<his>> cock while aiming straight at your mouth. <span class="pink">You splutter and gag as thick ropes of cum push past your clenched lips and into your mouth.</span> "I'm sorry but it's your fault; you make me lose control of myself." diff --git a/game/base-combat/ejaculation-sydney.twee b/game/base-combat/ejaculation-sydney.twee index 2723946992e9073b9a89ba1f22ed5bf12cc335a1..727a00b427baf0bd4d09b25159686697456f6156 100644 --- a/game/base-combat/ejaculation-sydney.twee +++ b/game/base-combat/ejaculation-sydney.twee @@ -1231,7 +1231,7 @@ <br><br> <<faceejacstat>><<ejacstat>><<set $hygiene += 500>><<bodyliquid "face" "semen">> <<case 4 5 6>> - <<He>> strokes <<his>> cock and palming your head, ejaculates onto your face. Warm cum drips down your forehead and nose. <<He>> licks off your face. + <<He>> strokes <<his>> cock and palming your head, ejaculates onto your face. Warm cum drips down your forehead and nose. <<He>> licks it off your face. <br><br> <<case 7>> <<He>> grasps your hair tightly in <<his>> fist, stroking <<his>> cock while aiming straight at your mouth. <span class="pink">You splutter and gag as thick ropes of cum push past your clenched lips and into your mouth.</span> "Swallow it all!" diff --git a/game/base-system/overlays/traits.twee b/game/base-system/overlays/traits.twee index 7d5f3851f813d6f3457431c229e27e25ec6915ca..2f08bbb775a12aa87d07bc35002aa50306f5fdc7 100644 --- a/game/base-system/overlays/traits.twee +++ b/game/base-system/overlays/traits.twee @@ -732,7 +732,7 @@ textColour: "red", }, { - name: () => V.hallucinations >= 2 || V.bestialitydisable === "t" ? "Stockholm Syndrome: Harpy" : "Stockholm Syndrome: Great Hawk", + name: () => V.greathawkmonster === 2 || V.bestialitydisable === "t" ? "Stockholm Syndrome: Harpy" : "Stockholm Syndrome: Great Hawk", colour: "white", has: $syndromebird gte 1, text: "It only wants a mate.", diff --git a/game/base-system/text.twee b/game/base-system/text.twee index 212b4e8615262f41aa085f954580d987a5aa96e1..274d8d7e20d450785d343133f0075e89ac065fcc 100644 --- a/game/base-system/text.twee +++ b/game/base-system/text.twee @@ -6437,7 +6437,7 @@ <<widget "fox">> <<if $statdisable is "f">> | - <span class="orange"><<print ($player.gender_appearance is "m" ? "Foxboy" : "Foxgirl")>></span> + <span class="orange"><<print ($player.gender_appearance is "m" ? "Foxboy" : "Vixen")>></span> <</if>> <</widget>> diff --git a/game/base-system/widgets.twee b/game/base-system/widgets.twee index 632229a49eeba64151a4a2b9ded125a120ba0c2b..030e9e3604916a15a54db7400e91419735478dbf 100644 --- a/game/base-system/widgets.twee +++ b/game/base-system/widgets.twee @@ -1757,6 +1757,7 @@ <</widget>> <<widget "weatherdisplay">> + <<set _season to (Time.season == "winter" ? "_winter" : "")>> <<set _weather_display to (Time.season == "winter" ? "winter" : "normal")>> <<if $options.images is 1>> <<if Time.dayState is "night" and (isBloodmoon() or $forcedBloodmoon)>> @@ -1767,25 +1768,31 @@ <<set _dayState to "_"+Time.dayState>> <<set _imgLoc to 'img/misc/'>> - <<set _imgSky to 'img/misc/'>> - <<set _imgWeather to 'img/misc/'>> + <<set _imgSky to 'img/misc/sky/'>> /* sky (upmost part) */ - <<if $location is "tentworld">> - <img id="daystate" @src="_imgSky+'tentsky'+_dayState+'.png'"> + <<if $skyHidden is true>> + <<set _skybox to "skybox_blank">> + <<elseif $location is "tentworld">> + <<set _skybox to "skybox" + _dayState + "_tentacle">> <<else>> - <img id="daystate" @src="_imgSky+'sky'+_dayStateWithBloodMoon+'.png'"> + <<set _skybox to "skybox" + _dayStateWithBloodMoon>> + <<if $location is "bog">><<set _skybox += "_haze">><</if>> + <img id="daystate" @src="_imgSky + 'sun' + _dayState + '.png'"> + <img id="daystate" @src="_imgSky + 'moon' + _dayStateWithBloodMoon + '.png'"> <</if>> + <div @class="_skybox"> + </div> + /* weather (middle part) */ - <<if $location is "tentworld">> - <img id="weather" @src="_imgWeather+'tentsky'+_dayState+'.png'"> + <<if $location is "tentworld" or $skyHidden is true>> <<else>> <<switch $weather>> - <<case "clear">> <img id="weather" @src="_imgWeather+'clear'+_dayState+'.png'"> - <<case "overcast">> <img id="weather" @src="_imgWeather+_weather_display + '/overcast'+_dayState+'.png'"> - <<case "rain">> <img id="weather" @src="_imgWeather+'rain'+_dayState+'.gif'"> - <<case "snow">> <img id="weather" @src="_imgWeather+'winter/snow'+_dayState+'.gif'"> + <<case "clear">> + <<case "overcast">> <img id="weather" @src="_imgSky + 'overcast' + _dayState + _season + '.png'"> + <<case "rain">> <img id="weather" @src="_imgSky + 'rain' + _dayState + '.gif'"> + <<case "snow">> <img id="weather" @src="_imgSky + 'snow' + _dayState + '.gif'"> <</switch>> <</if>> @@ -1804,11 +1811,7 @@ <img id="location" @src="_imgLoc + _weather_display + '/alex_cottage'+_dayState+'.png'"> <<case "alex_farm">> <<if $bus is "woodland">> - <<if Time.dayState is "night" or Time.dayState is "dawn">> - <img id="location" @src="_imgLoc + _weather_display + '/forest'+_dayState+'.png'"> - <<else>> - <img id="location" @src="_imgLoc + _weather_display + '/forest'+_dayStateWithBloodMoon+'.gif'"> - <</if>> + <img id="location" @src="_imgLoc + _weather_display + '/forest'+_dayStateWithBloodMoon+'.gif'"> <<else>> <img id="location" @src="_imgLoc + _weather_display + '/alex_farm'+_dayState+'.png'"> <</if>> @@ -1833,11 +1836,7 @@ <<case "brothel">> <img id="location" @src="_imgLoc + _weather_display + '/brothel'+_dayState+'.png'"> <<case "cabin">> - <<if Time.season is "winter">> - <img id="location" @src="_imgLoc + _weather_display + '/cabin'+_dayState+'.png'"> - <<else>> - <img id="location" @src="_imgLoc + _weather_display + '/cabin'+_dayState+'.gif'"> - <</if>> + <img id="location" @src="_imgLoc + _weather_display + '/cabin'+_dayState+'.png'"> <<case "cafe">> <<if $chef_state gte 9>> <img id="location" @src="_imgLoc + _weather_display + '/cafe_renovated'+_dayState+'.png'"> @@ -1873,11 +1872,7 @@ <<case "flats">> <img id="location" @src="_imgLoc + _weather_display + '/flats'+_dayState+'.png'"> <<case "forest">> - <<if Time.dayState is "night" or Time.dayState is "dawn">> - <img id="location" @src="_imgLoc + _weather_display + '/forest'+_dayState+'.png'"> - <<else>> - <img id="location" @src="_imgLoc + _weather_display + '/forest'+_dayStateWithBloodMoon+'.gif'"> - <</if>> + <img id="location" @src="_imgLoc + _weather_display + '/forest'+_dayStateWithBloodMoon+'.gif'"> <<case "forest_shop">> <img id="location" @src="_imgLoc + _weather_display + '/forest_shop'+_dayState+'.png'"> <<case "home">> @@ -1915,11 +1910,7 @@ <<case "police_station">> <img id="location" @src="_imgLoc + _weather_display + '/police_station'+_dayState+'.png'"> <<case "pound">> - <<if Time.dayState is "night">> - <img id="location" @src="_imgLoc + _weather_display + '/dog_pound'+_dayState+'.png'"> - <<else>> - <img id="location" @src="_imgLoc + _weather_display + '/dog_pound'+_dayState+'.gif'"> - <</if>> + <img id="location" @src="_imgLoc + _weather_display + '/dog_pound'+_dayState+'.gif'"> <<case "pool">> <img id="location" @src="_imgLoc + _weather_display + '/pool'+_dayState+'.gif'"> <<case "prison">> @@ -1957,11 +1948,7 @@ <<case "tower" "castle">> <img id="location" @src="_imgLoc + _weather_display + '/tower'+_dayStateWithBloodMoon+'.gif'"> <<case "town">> - <<if Time.dayState is "dusk">> - <img id="location" @src="_imgLoc + _weather_display + '/town'+_dayState+'.png'"> - <<else>> - <img id="location" @src="_imgLoc + _weather_display + '/town'+_dayState+'.gif'"> - <</if>> + <img id="location" @src="_imgLoc + _weather_display + '/town'+_dayState+'.gif'"> <<case "underground">> <img id="location" @src="_imgLoc + _weather_display + '/underground'+_dayState+'.png'"> <<case "wolf_cave">> diff --git a/game/overworld-forest/loc-forest/widgets.twee b/game/overworld-forest/loc-forest/widgets.twee index 63778f86bbb094a8a1dde99947d68d0fff73906f..063183a1610756ac92914cc1229b27bd30a6f44b 100644 --- a/game/overworld-forest/loc-forest/widgets.twee +++ b/game/overworld-forest/loc-forest/widgets.twee @@ -43,7 +43,7 @@ <<heelsicon "hobble">><<link [[Hobble in heels (0:30)|Forest]]>><<set $forestmod to 3>><<set $forest += 5>><<pass 30>><<set $forestmove to "hobble">><<if $foresthunt gte 1>><<set $foresthunt += 2>><</if>><</link>><<gharass>> <<if $town_projects.road gte 4 and $forest lte 24>> <br> - <<forestroadicon "deep"icon>><<link [[Follow road (0:10)|Forest]]>><<set $forestmod to 1>><<set $forest += 5>><<set $forestmove to "road">><<pass 10>><<if $foresthunt gte 1>><<set $foresthunt += 1>><</if>><<set $eventskip to 1>><</link>><<noharass>> + <<forestroadicon "deep">><<link [[Follow road (0:10)|Forest]]>><<set $forestmod to 1>><<set $forest += 5>><<set $forestmove to "road">><<pass 10>><<if $foresthunt gte 1>><<set $foresthunt += 1>><</if>><<set $eventskip to 1>><</link>><<noharass>> <</if>> <<else>> <<if !$worn.feet.type.includes("shackle")>> @@ -59,7 +59,7 @@ <<sneakicon>><<link [[Carefully (0:30)|Forest]]>><<set $forestmod to 1>><<set $forest += 5>><<pass 30>><<set $forestmove to "carefully">><<if $foresthunt gte 1>><<set $foresthunt += 2>><</if>><</link>><<lharass>> <<if $town_projects.road gte 4 and $forest lte 24>> <br> - <<forestroadicon "deep"icon>><<link [[Follow road (0:05)|Forest]]>><<set $forestmod to 1>><<set $forest += 5>><<set $forestmove to "road">><<pass 5>><<if $foresthunt gte 1>><<set $foresthunt += 1>><</if>><<set $eventskip to 1>><</link>><<noharass>> + <<forestroadicon "deep">><<link [[Follow road (0:05)|Forest]]>><<set $forestmod to 1>><<set $forest += 5>><<set $forestmove to "road">><<pass 5>><<if $foresthunt gte 1>><<set $foresthunt += 1>><</if>><<set $eventskip to 1>><</link>><<noharass>> <</if>> <</if>> <</widget>> @@ -260,9 +260,8 @@ <<if $foresthunt lte 0>> <<addinlineevent "forest_hunted" 0.5>> A chill runs up your spine, a warning from some primal instinct. <span class="red">Something is hunting you.</span> - <<npc "Black Wolf">> <<set $rng2 to random(1, 2)>> - <<if $rng2 is 1 or ($bestialitydisable is "t" and $monster isnot 1)>> + <<if $rng2 is 1>> <<set $edenforesthunt to 1>> <<set $blackwolfhunt to 0>> <<elseif $rng2 is 2>> diff --git a/game/overworld-plains/loc-bird/main.twee b/game/overworld-plains/loc-bird/main.twee index f65ff285b9e8a3490c5164bef1da09ee6c7ce777..b02c06fbad903d50fd99fc2695d5f5e09dc09865 100644 --- a/game/overworld-plains/loc-bird/main.twee +++ b/game/overworld-plains/loc-bird/main.twee @@ -232,9 +232,9 @@ You remain still. The <<beasttype>> watches you a moment longer, then beats <<bh <<npc "Great Hawk">> You awaken in a stone room, a sheet of feathers covering you. It's a wing. <<if $monster is 1>> - The <<beasttype>> chirps beside you. - <<else>> "I'm glad you're well," the <<beasttype>> says. "Spotted you asleep. Very dangerous. You should be careful. Come to nest when tired." + <<else>> + The <<beasttype>> chirps beside you. <</if>> <br><br> @@ -250,7 +250,7 @@ You remain still. The <<beasttype>> watches you a moment longer, then beats <<bh <<set $bird.timer to 60>> <<set $bird.state to "home">> - <<link [[Bird Tower]]>><<endevent>><</link>> + <<link [[Next|Bird Tower]]>><<endevent>><</link>> <br> <<else>> <<npc "Great Hawk">> @@ -268,7 +268,7 @@ You remain still. The <<beasttype>> watches you a moment longer, then beats <<bh <</if>> <<bird_schedule>> -You are inside a ruined tower, deep in the moor. +You are inside <<if $syndromebird is 1>>your tower<<else>>a ruined tower<</if>>, deep in the moor. <<if $syndromebird isnot 1>><<hunger_description>><</if>> <br><br> @@ -1826,7 +1826,8 @@ You're soon squeaky clean. <</if>> <<strip>> <<wash>> -You remove your clothing. The <<beasttype>> swims to the other side of the pool, making room for you. You slip into the water. It's cold, but you soon get used to it. +<<noClothingCheck>> +<<if _nude is false>>You remove your clothing.<</if>> The <<beasttype>> swims to the other side of the pool, making room for you. You slip into the water. It's cold, but you soon get used to it. <br><br> <<if $daily.birdWash is undefined>> diff --git a/game/overworld-plains/loc-estate/cards.twee b/game/overworld-plains/loc-estate/cards.twee index 52c6de7f46a7adb17d6f81cd9e31be20500d8d31..600ad5615c5bbfa08d1effab2ebc881fd54dcd93 100644 --- a/game/overworld-plains/loc-estate/cards.twee +++ b/game/overworld-plains/loc-estate/cards.twee @@ -624,7 +624,7 @@ You stay in place, allowing Wren's goons to surround you. <br> <</if>> - "Ruining our cards, eh? Thought we wouldn't notice?" <<he>> says. "Tsk, tks. This won't do." + "Ruining our cards, eh? Thought we wouldn't notice?" <<he>> says. "Tsk, tsk. This won't do." <br><br> <<if $speech_attitude is "meek">> "I-I'm sorry, it was an accident!", you say. diff --git a/game/overworld-plains/loc-livestock/field.twee b/game/overworld-plains/loc-livestock/field.twee index 1257eb14f602ae24229e59c696272f36fde4d295..696e52fd169de851e23f855a2848f871ac2bf6e9 100644 --- a/game/overworld-plains/loc-livestock/field.twee +++ b/game/overworld-plains/loc-livestock/field.twee @@ -3178,7 +3178,7 @@ You look up and moo at <<him>>. <<if $cow lt 6>>It doesn't quite feel natural.<< You crawl over to <<him>> and nuzzle <<his>> leg. <br><br> -<<He>> turns around to regard you with surprise. Smiling, <<he>> chuckles to himself. <<He>> grabs the steeds's reins and walks off, glancing back one more time before moving out of view. +<<He>> turns around to regard you with surprise. Smiling, <<he>> chuckles to <<himself>>. <<He>> grabs the steeds's reins and walks off, glancing back one more time before moving out of view. <br><br> <<link [[Next|Livestock Field]]>><<endevent>><</link>> diff --git a/game/overworld-town/loc-adultshop/intro.twee b/game/overworld-town/loc-adultshop/intro.twee index 04511731b1a4421458f867954f3e93e6db6a394b..68d91ad14aaa2dc3e5731c2ee35c5f1b245e9fcb 100644 --- a/game/overworld-town/loc-adultshop/intro.twee +++ b/game/overworld-town/loc-adultshop/intro.twee @@ -528,7 +528,7 @@ You grab a dildo from an open crate, and march over to Sydney's hiding spot. <</if>> <br><br> Sydney looks incredulous. <<He>> throws a furtive glance over the shelf. "Put that down!" <<he>> says, <<his>> voice hushed, but anxious. "I recognise one of them from the temple." -<br><br> +<<exhibitionism1>> "They can't see us," you say. "I think they'd react to me otherwise." You wave at the window. The gawkers don't respond. "It's too dark in here." <br><br> diff --git a/game/overworld-town/loc-flats/main.twee b/game/overworld-town/loc-flats/main.twee index 29f1854982b0894a9373945105413d379396651b..53ee91ac83698d081debd65d311ce100bd5b7b2a 100644 --- a/game/overworld-town/loc-flats/main.twee +++ b/game/overworld-town/loc-flats/main.twee @@ -83,7 +83,7 @@ You are on the ground floor of a block of flats on Barb Street. The walls and fl <<if $whitneyromance is 1>> The <<person1>><<person>> steps in front of you. "What's Whitney's <<girl>> doing around here?" <<he>> asks. <<if random(1, 2) is 2>> - <<He>> pauses, considering, <span class="pink">then shoves you against the wall.</span>. "It doesn't matter. You're in our territory. Get on your knees."<<gtrauma>><<gstress>><<gpain>><<trauma 6>><<stress 6>><<pain 4>> + <<He>> pauses, considering, <span class="pink">then shoves you against the wall.</span> "It doesn't matter. You're in our territory. Get on your knees."<<gtrauma>><<gstress>><<gpain>><<trauma 6>><<stress 6>><<pain 4>> <br><br> <<link [[Get on your knees|Flats Events Knees]]>><<sub 1>><</link>> diff --git a/game/overworld-town/loc-home/ward.twee b/game/overworld-town/loc-home/ward.twee index ed59acd675b3f3ee5d36c5e074de5e7802f46ffc..13608712946b1ec417c588a9753ed61ba0eba4b3 100644 --- a/game/overworld-town/loc-home/ward.twee +++ b/game/overworld-town/loc-home/ward.twee @@ -153,7 +153,7 @@ The lullaby ends with a soothing hum that echoes in your ears. <<tiredness 3>><< "<span class="wraith">Beautiful. So beautiful. Love <<if _childNumber is 1>><<childhim>><<else>>them<</if>> for me, <<pcpetname "Wraith" "nice">>. Please.</span>" <br><br> -A <<wraithEyes>> tear streaks down its eye as the figure slowly fades away. +A <<wraithEyes>> tear streaks down its cheek as the figure slowly fades away. <br><br> <<childicon "crib">><<link [[Next|Childrens Home]]>><</link>> diff --git a/game/overworld-town/loc-school/classes/english-events.twee b/game/overworld-town/loc-school/classes/english-events.twee index 2b8b24332fb7fc85b5dc3b73b9c4beaa6304c399..60bed8c7cd004dd43f4a37e3919a26b12da62088 100644 --- a/game/overworld-town/loc-school/classes/english-events.twee +++ b/game/overworld-town/loc-school/classes/english-events.twee @@ -276,9 +276,9 @@ You nod. "Alright," Doren says. <<He>> doesn't sound convinced. <<else>> No one helps. After a few moments, Doren takes pity. <br><br> - "I think <<pshes>> trying to indicate," Doren says. "That <<pshes>> forgotten <<pher>> book. Can someone help <<phim>>?" + "I think <<pshes>> trying to indicate," Doren says, "that <<pshes>> forgotten <<pher>> book. Can someone help <<phim>> out?" <br><br> - No-one responds. Doren looks disappointed and finally hands you <<his>> copy of the book. "Class. I expected better." + No one responds. Doren looks disappointed and finally hands you <<his>> copy of the book. "Class. I expected better." <br><br> "There you are," <<he>> sighs. "Go on." <<status -5>><<lcool>> <br><br> diff --git a/game/overworld-town/loc-street/elk.twee b/game/overworld-town/loc-street/elk.twee index 7d9d673a2e2ab0423c5172627575b4f550e2c434..3fc552ee1db922c63b35a4a2801818786ee5ab02 100644 --- a/game/overworld-town/loc-street/elk.twee +++ b/game/overworld-town/loc-street/elk.twee @@ -83,7 +83,7 @@ You are on Elk Street. There are roads leading to several large industrial compl <span class="pink">A faint mist hangs over the compound.</span> <br> <</if>> - <<compoundicon>><<link [[Sneak into the compound (0:02)|Elk Compound]]>><<pass 2>><<crimeUp 30>><</link>><<crime "trespassing">> + <<compoundicon>><<link [[Sneak into the compound (0:02)|Elk Compound]]>><<pass 2>><<crimeUp 30 "trespassing">><</link>><<crime "trespassing">> <br> <<if $farm_stage gte 9 and $phials_held gte 1 and $exposed lte 0>> <<compoundicon>><<link [[Approach the compound (0:01)|Elk Compound Approach]]>><<pass 1>><</link>> diff --git a/game/overworld-town/loc-street/widgets.twee b/game/overworld-town/loc-street/widgets.twee index ca22c2c226971bd3dafb1c7c47423c446323f325..48abf75022ebc2b6d7aab412b5d496a5288d3056 100644 --- a/game/overworld-town/loc-street/widgets.twee +++ b/game/overworld-town/loc-street/widgets.twee @@ -974,7 +974,7 @@ <</if>> <<saveNPC 0 tower_creature>> <</if>> - <<if $NPCList[0].monster is "monster" is 1 or $bestialitydisable is "f">> + <<if $NPCList[0].monster is "monster" or $bestialitydisable is "f">> You hear something land behind you, followed by a low growl. You turn, and face a pair of glowing yellow eyes. <<bHe>> steps into the light of a streetlamp, revealing a pair of horns <<if $NPCList[0].monster is "monster">> diff --git a/game/overworld-town/loc-temple/bailey.twee b/game/overworld-town/loc-temple/bailey.twee index 865298c68d196c8c7cac4db5fa770a6905238ba4..2d93d3671252d0558798022349294b04a79c12bb 100644 --- a/game/overworld-town/loc-temple/bailey.twee +++ b/game/overworld-town/loc-temple/bailey.twee @@ -115,7 +115,7 @@ Bailey doesn't look encouraged by this frankness. <<person1>><<He>> lowers <<his Bailey seems uneasy, but satisfied enough. <<He>> strides down the centre aisle, and leaves the temple. <br><br> -The pair walk in opposite directions, and vanish in shadowey alcoves. +The pair walk in opposite directions, and vanish in shadowy alcoves. <br><br> <<link [[Next|Temple]]>><<endevent>><</link>> diff --git a/game/overworld-town/loc-temple/cloister.twee b/game/overworld-town/loc-temple/cloister.twee index cc29de4718144621b4f99fc4ac0840805165545a..166e61c2d9cded42a0286ee790dea78735ad9bac 100644 --- a/game/overworld-town/loc-temple/cloister.twee +++ b/game/overworld-town/loc-temple/cloister.twee @@ -84,7 +84,7 @@ You explore the tunnels leading away from the cloister. <<Monks_and_Nuns>> emerg Other corridors, however, lead to a serpentine labyrinth. Here, the function of the rooms is less clear. You glimpse odd garb, strange altars, and stranger processions. <br><br> -You wander for a while, unable to find the way back to the cloister. You hesitate to ask for directions, from embarrassment rather than fear, as at no point does anyone make you feel less than welcome. At last however, you emerge back at cloister, and its jovial gargoyles. +You wander for a while, unable to find the way back to the cloister. You hesitate to ask for directions, from embarrassment rather than fear, as at no point does anyone make you feel less than welcome. At last however, you emerge back at the cloister, and its jovial gargoyles. <br><br> <<link [[Next|Temple Cloister Explore 2]]>><</link>> @@ -127,7 +127,7 @@ Three others stand with arms folded, watching. Jordan claps <<person1>><<his>> h The <<monk desc>> rests <<his>> baton in both hands as <<he>> steps forward, holding it out for you to see. Rings of metal surround a thick wooden shaft. <br><br> -"We use two weapons in our duties here," Jordan continues. "This baton is one of them." <<person1>><<He>> reaches beneath <<his>> habit, and produces a coiled whip. <<He>> holds it out of you to inspect. "This is the other. Choose one." +"We use two weapons in our duties here," Jordan continues. "This baton is one of them." <<person1>><<He>> reaches beneath <<his>> habit, and produces a coiled whip. <<He>> holds it out for you to inspect. "This is the other. Choose one." <br><br> <<set $prof.baton to 0>> @@ -148,7 +148,7 @@ The <<person2>><<monk desc>> hands you the baton. It's heavier than it looks, pa "Now step into the arena <<sister>>," Jordan says, addressing you. "Don't worry. This is just a demonstration." <br><br> -You step with Jordan onto the sand. <<person3>>The <<monk desc>> hands <<him>> a baton of <<person1>><<his>> own. "By sparring, we become closer to one another. Don't put too much force into your blows. Not here." Without warning, <<he>> springs forward <span class="red">delivering a painful smack to your hip</span> and landing behind you.<<pain 1>><<gpain>> +You step with Jordan onto the sand. <<person3>>The <<monk desc>> hands <<person1>><<him>> a baton of <<his>> own. "By sparring, we become closer to one another. Don't put too much force into your blows. Not here." Without warning, <<he>> springs forward <span class="red">delivering a painful smack to your hip</span> and landing behind you.<<pain 1>><<gpain>> <br><br> <<link [[Counterattack|Temple Cloister Baton Counterattack]]>><</link>> @@ -174,7 +174,7 @@ Jordan looks bashful as <<he>> stands, and helps you to your feet. :: Temple Cloister Baton Guard <<effects>> -You hold your baton ready for another attack. Jordan pirouettes, kicking up sand, but doesn't not follow with another assault. Instead, <<he>> bows. +You hold your baton ready for another attack. Jordan pirouettes, kicking up sand, but doesn't follow with another assault. Instead, <<he>> bows. <br><br> <<link [[Next|Temple Cloister Explore 5]]>><</link>> @@ -357,7 +357,7 @@ You need to kneel on your bunk to get a good view, but <<hes>> right. The temple "There's one more thing to show you," Jordan says. "Another secret." <br><br> -Rather than walk towards the entrance, <<he>> continues to the end of the quarters, into an alcove hidden from view. You follow, and a large portrait of stern-looking priest greets you. +Rather than walk towards the entrance, <<he>> continues to the end of the quarters, into an alcove hidden from view. You follow, and a large portrait of a stern-looking priest greets you. <br><br> "Don't be afraid of the scary expression." Jordan says, running <<his>> fingers over wall. "That's just to scare away initiates." <<He>> presses <<his>> palm against one of the stone bricks. It shifts a little, and the portrait swings open, cutting the stern figure in half. A secret stairwell is revealed, spiralling out of view. diff --git a/game/overworld-town/loc-temple/confess.twee b/game/overworld-town/loc-temple/confess.twee index 917d733a481bc23aa71636fa2a44f2c41f056505..cf21a935f7e08cd9857ec971525eddf3374ac164 100644 --- a/game/overworld-town/loc-temple/confess.twee +++ b/game/overworld-town/loc-temple/confess.twee @@ -3957,7 +3957,7 @@ The <<person1>>center <<priest>> sits, coming down to your eye level. <<His>> fa <<elseif $fallenangel gte 2>> "You're no stranger to loss, are you? There's an emptiness in you, one from which the taint can't escape." The <<bishop>> smiles. "Beyond that, we believe <<elseif $demon gte 6>> - "One so profane is still useful. The taint can't take anything more from you." The <<bishop>> smiles. "Beyond thet, we believe + "One so profane is still useful. The taint can't take anything more from you." The <<bishop>> smiles. "Beyond that, we believe <<else>> The <<bishop>> smiles. "We believe <</if>> diff --git a/game/overworld-town/loc-temple/main.twee b/game/overworld-town/loc-temple/main.twee index 3d59b25ebd9d71ae0e15cd1f74a191e1e6a93b5e..9c5da4f1aad6b2ca1f63420aea58d91ac88f5dc3 100644 --- a/game/overworld-town/loc-temple/main.twee +++ b/game/overworld-town/loc-temple/main.twee @@ -162,7 +162,7 @@ You are in the main hall of the temple. Stone walls and pillars tower into darkn <</if>> They address a familiar figure. <span class="red">Bailey.</span> <br><br> - "Thank you for your understanding," Jordan says to Bailey as you approach. "You've every right be concerned for your ward." <<He>> notices you. "Ah, there they are." + "Thank you for your understanding," Jordan says to Bailey as you approach. "You've every right to be concerned for your ward." <<He>> notices you. "Ah, there they are." <br><br> Bailey turns to you, an uncharacteristic, warm smile spreading across <<person1>><<his>> face. "It's good to see you," <<he>> says. "You do make me worry." <<He>> leans closer, and whispers so that only you can hear. <span class="gold">"You're off the hook this week,</span> but I'll be visiting now and then. To take what's mine." <br><br> @@ -2825,7 +2825,7 @@ Then <<he>> sighs with relief, and pulls away. <<set $outside to 1>><<effects>> <<generateyTemple 2>><<generateyTemple 3>><<generateyTemple 4>><<generateyTemple 5>> -Jordan leads you down a flight of steps, and through a thick wooden door. Modern lights illuminate ancient walls, etched with archaic writing. The priest doesn't slow a step, and continues down a passage. You pass other doors, hearing the sound of metal clanging behind some, and the smells of strange incenses seeping between the cracks of others. +Jordan leads you down a flight of steps, and through a thick wooden door. Modern lights illuminate ancient walls, etched with archaic writing. The <<person1>><<priest>> doesn't slow a step, and continues down a passage. You pass other doors, hearing the sound of metal clanging behind some, and the smells of strange incenses seeping between the cracks of others. <br><br> You are led to another set of stairs, these leading up. There is no door this time. Natural light invades the subterranean passage. @@ -2872,7 +2872,7 @@ On the other side of <<him>>, however, a bell echoes through the cloister. Jordan has produced the instrument, and a hammer, from <<person1>><<his>> robes. <br><br> -"Initiates!" <<he>> shouts, <<his>> voice echoing such that you'd be unable to pinpoint it were the priest not stood in front of you. "This night you face the trial of anguish. You will wait here. All night. The cold will seep into your bones and break you, one by one, until only one remains. God is watching. God will spare the worthy." +"Initiates!" <<he>> shouts, <<his>> voice echoing such that you'd be unable to pinpoint it were the <<priest>> not stood in front of you. "This night you face the trial of anguish. You will wait here. All night. The cold will seep into your bones and break you, one by one, until only one remains. God is watching. God will spare the worthy." <br><br> The bell rings again, and Jordan's expression softens. "That was the scripture. Apologies if it sounded severe." <<He>> bows. "We're rooting for you!" <<He>> turns and walks away, <<his>> habit skirt flailing in the breeze. @@ -3438,7 +3438,7 @@ Jordan leads you back underground, to a small room with a lit fireplace. <<He>> "This temple is now your home. We've much to show you, but there's no hurry. We'll fill you in when you're ready." <br><br> -<<He>> pauses at the door, and smiles back at you. "I'm happy you could join us." +<<person1>><<He>> pauses at the door, and smiles back at you. "I'm happy you could join us." <br><br> <<link [[Next|Temple Cloister]]>><<endevent>><</link>> @@ -3453,7 +3453,7 @@ Jordan leads you both back underground, to a small room with a lit fireplace. << "This temple is now your home. We've much to show you, but there's no hurry. We'll fill you in when you're ready." <br><br> -<<He>> pauses at the door, and smiles back at you. "I'm happy you could both join us." +<<person1>><<He>> pauses at the door, and smiles back at you. "I'm happy you could both join us." <br><br> Sydney hugs you again before leaving. diff --git a/game/overworld-town/special-sydney/walk.twee b/game/overworld-town/special-sydney/walk.twee index bf43bfb078d43ef88c1dc214b2399ff608b28b4e..0ece17871034cb2175e1feca8ea31a1af7bd570d 100644 --- a/game/overworld-town/special-sydney/walk.twee +++ b/game/overworld-town/special-sydney/walk.twee @@ -1641,7 +1641,7 @@ You are on the beach with Sydney. <</if>> <br><br> <<if $worn.under_lower.type.includes("swim") and ($worn.under_upper.type.includes("swim") or $worn.under_upper.type.includes("naked")) or ($worn.upper.type.includes("swim") or $worn.upper.type.includes("naked")) and ($worn.lower.type.includes("swim") or $worn.lower.type.includes("naked"))>> - <<link [[Go for a swim (0:02)|Sydney Beach Swim]]>><<pass 2>><</link>> + <<link [[Go for a swim (0:20)|Sydney Beach Swim]]>><<pass 20>><</link>> <br> <<link [[Tan on the beach (1:00)|Sydney Beach Tanning]]>><<pass 60>><<npcincr Sydney love 1>><</link>><<llstress>><<glove>> <br> @@ -1723,7 +1723,7 @@ You are on the beach with Sydney. <</if>> <</switch>> <br><br> - <<swimicon>><<link [[Swim with Sydney (0:30)|Sydney Beach Swim]]>><<pass 30>><<stress -6>><<tiredness 6>><<set $seaswim to 1>><<npcincr Sydney love 1>><</link>><<gswimming>><<lstress>><<gtiredness>><<glove>> + <<swimicon>><<link [[Swim with Sydney (0:20)|Sydney Beach Swim]]>><<pass 20>><<stress -6>><<tiredness 6>><<set $seaswim to 1>><<npcincr Sydney love 1>><</link>><<gswimming>><<lstress>><<gtiredness>><<glove>> <br> <<beachicon>><<link [[Leave the water (0:01)|Sydney Beach]]>><<pass 1>><<endevent>><<npc "Sydney">><<person1>><</link>> <br> diff --git a/game/overworld-town/special-whitney/main.twee b/game/overworld-town/special-whitney/main.twee index 166d49bbc093927151bd67f484b3a70e4fde86f6..82e0647f6f3bcba3a8fc4e8e5977ba4a60f21a69 100644 --- a/game/overworld-town/special-whitney/main.twee +++ b/game/overworld-town/special-whitney/main.twee @@ -2239,7 +2239,7 @@ Laughter bursts from the group. It echoes down the street as they depart. <<clotheson>> <<endcombat>> - <<tearful>> you leave the same way as Whitney, but don't see <<<nnpc_him "Whitney">> anywhere. + <<tearful>> you leave the same way as Whitney, but don't see <<nnpc_him "Whitney">> anywhere. <br><br> <</if>> diff --git a/img/misc/normal/alex_cottage_dawn.png b/img/misc/normal/alex_cottage_dawn.png index 05d16ea01dcfa119b57532703cfdfe5f2af4ccb2..fd0bc264f0e40f8879c2fdd82d215b1a7ea175c4 100644 Binary files a/img/misc/normal/alex_cottage_dawn.png and b/img/misc/normal/alex_cottage_dawn.png differ diff --git a/img/misc/normal/alex_cottage_day.png b/img/misc/normal/alex_cottage_day.png index bbb9e49b52f8a34330c93765374f69d7b7fc006d..ce6354ea2f5baf2fdddf769d57ba78cc5b733258 100644 Binary files a/img/misc/normal/alex_cottage_day.png and b/img/misc/normal/alex_cottage_day.png differ diff --git a/img/misc/normal/alex_cottage_dusk.png b/img/misc/normal/alex_cottage_dusk.png index 7f6989e3f80e546770182dc7c962b524ff2e26bb..8baaad0f1903ced92cc6f4a933e4171d248c5513 100644 Binary files a/img/misc/normal/alex_cottage_dusk.png and b/img/misc/normal/alex_cottage_dusk.png differ diff --git a/img/misc/normal/alex_cottage_night.png b/img/misc/normal/alex_cottage_night.png index a74c41cd2ae210b9468667e0d0fb9c1b544780bc..657c4eaf972c7456994cec6dccba1cf132f60f32 100644 Binary files a/img/misc/normal/alex_cottage_night.png and b/img/misc/normal/alex_cottage_night.png differ diff --git a/img/misc/normal/alex_farm_dawn.png b/img/misc/normal/alex_farm_dawn.png index 5e5e156c5c544f71ce386842736695412972dd6a..53ff3ad6656f91545f792114a06514023db079df 100644 Binary files a/img/misc/normal/alex_farm_dawn.png and b/img/misc/normal/alex_farm_dawn.png differ diff --git a/img/misc/normal/alex_farm_day.png b/img/misc/normal/alex_farm_day.png index 156ac399cd77d57be6b52000a7372268ffab36d7..65be4aeb9a7e4b78854b212ca26cadbd6d09984b 100644 Binary files a/img/misc/normal/alex_farm_day.png and b/img/misc/normal/alex_farm_day.png differ diff --git a/img/misc/normal/alex_farm_dusk.png b/img/misc/normal/alex_farm_dusk.png index a9994eb1bae2face38358dcce851368c6a86bfc8..645c21c6d2a6cf69f745823bc373c6f661ca674c 100644 Binary files a/img/misc/normal/alex_farm_dusk.png and b/img/misc/normal/alex_farm_dusk.png differ diff --git a/img/misc/normal/alex_farm_night.png b/img/misc/normal/alex_farm_night.png index f5a7762e5f37d0531226376209edf4807b17aaca..ab27f34c7ac92e45de2d648871a20d9d3fd8f1c4 100644 Binary files a/img/misc/normal/alex_farm_night.png and b/img/misc/normal/alex_farm_night.png differ diff --git a/img/misc/normal/alley_bloodmoon.gif b/img/misc/normal/alley_bloodmoon.gif index 3fdf1f9cf8f2620b2b307558bc504fec5c947d2d..faa8e86b4ede6eabd5f1db8dc7be8167f7e1916b 100644 Binary files a/img/misc/normal/alley_bloodmoon.gif and b/img/misc/normal/alley_bloodmoon.gif differ diff --git a/img/misc/normal/alley_dawn.gif b/img/misc/normal/alley_dawn.gif index 7eca72f90d154f252234327da599418069dea7ae..11298ac4c0eed9791242711f50c0af6f60137f7c 100644 Binary files a/img/misc/normal/alley_dawn.gif and b/img/misc/normal/alley_dawn.gif differ diff --git a/img/misc/normal/alley_day.gif b/img/misc/normal/alley_day.gif index 050bd2db49784d32bdec86ac4e6252cbafefc7d3..f25f311159a3f5be34fd45c32e3a48a94b4c60cd 100644 Binary files a/img/misc/normal/alley_day.gif and b/img/misc/normal/alley_day.gif differ diff --git a/img/misc/normal/alley_dusk.gif b/img/misc/normal/alley_dusk.gif index 5d96bae12a3d1195512660e34247d8d1f7f160ff..fef4699b0c543b65cc847b83e3e72c5da6a4e89d 100644 Binary files a/img/misc/normal/alley_dusk.gif and b/img/misc/normal/alley_dusk.gif differ diff --git a/img/misc/normal/alley_night.gif b/img/misc/normal/alley_night.gif index b5f593001ea38f06baa7e660f312a16f7d791896..780295959baec79a793466161c6765060c1016f9 100644 Binary files a/img/misc/normal/alley_night.gif and b/img/misc/normal/alley_night.gif differ diff --git a/img/misc/normal/arcade_dawn.png b/img/misc/normal/arcade_dawn.png index dbbfee8b99123593dd34942ebeb5709e3f0c1a95..cd1f2fe17ec3328626d288b661d381a0b0dc8939 100644 Binary files a/img/misc/normal/arcade_dawn.png and b/img/misc/normal/arcade_dawn.png differ diff --git a/img/misc/normal/arcade_day.png b/img/misc/normal/arcade_day.png index 7738149de286e2248a4f128d1d94f0555f5ff8ca..321dded0b3390bf85b049b5268643c94a9765787 100644 Binary files a/img/misc/normal/arcade_day.png and b/img/misc/normal/arcade_day.png differ diff --git a/img/misc/normal/arcade_dusk.png b/img/misc/normal/arcade_dusk.png index d88a765c4b37186cf2a5eac6bc951f77c8c50786..321dded0b3390bf85b049b5268643c94a9765787 100644 Binary files a/img/misc/normal/arcade_dusk.png and b/img/misc/normal/arcade_dusk.png differ diff --git a/img/misc/normal/arcade_night.png b/img/misc/normal/arcade_night.png index 1a6892af2fe3262f89f7585431668b6f33cfb7fc..d8f77e355b431d98c293373de48022c596eb4025 100644 Binary files a/img/misc/normal/arcade_night.png and b/img/misc/normal/arcade_night.png differ diff --git a/img/misc/normal/asylum_dawnslow.gif b/img/misc/normal/asylum_dawnslow.gif index 7cb086c849316008cd168c7e249883a39eaea21d..67748a21363c8a87568bd72e40a9e3045949aed6 100644 Binary files a/img/misc/normal/asylum_dawnslow.gif and b/img/misc/normal/asylum_dawnslow.gif differ diff --git a/img/misc/normal/asylum_dawnvfast.gif b/img/misc/normal/asylum_dawnvfast.gif index dbf029476d6fd62228341a5674abf6f5340da18c..c1c583b69d21184d993c43cbde64fb715da007e3 100644 Binary files a/img/misc/normal/asylum_dawnvfast.gif and b/img/misc/normal/asylum_dawnvfast.gif differ diff --git a/img/misc/normal/asylum_dayslow.gif b/img/misc/normal/asylum_dayslow.gif index 9e9430f4ec3c483b4d7f6b5071d10cbcf8ac834c..5724ddffe6fee7f375594b094a60f476b7a8517b 100644 Binary files a/img/misc/normal/asylum_dayslow.gif and b/img/misc/normal/asylum_dayslow.gif differ diff --git a/img/misc/normal/asylum_dayvfast.gif b/img/misc/normal/asylum_dayvfast.gif index 6340db4c714476a4d17ac55b30070fab0bf4590f..a8dbd189e16b45ee0e4d57c50943a201b336e065 100644 Binary files a/img/misc/normal/asylum_dayvfast.gif and b/img/misc/normal/asylum_dayvfast.gif differ diff --git a/img/misc/normal/asylum_duskslow.gif b/img/misc/normal/asylum_duskslow.gif index 262e19dc326c3f9fb56aed41e4005a4b0e7a763a..67748a21363c8a87568bd72e40a9e3045949aed6 100644 Binary files a/img/misc/normal/asylum_duskslow.gif and b/img/misc/normal/asylum_duskslow.gif differ diff --git a/img/misc/normal/asylum_duskvfast.gif b/img/misc/normal/asylum_duskvfast.gif index d7cfdba863394ddec2e3e79598d7daa1f74860d0..fc68fe9fbe7922d64204b71636d62ce34ee9eacf 100644 Binary files a/img/misc/normal/asylum_duskvfast.gif and b/img/misc/normal/asylum_duskvfast.gif differ diff --git a/img/misc/normal/asylum_nightslow.gif b/img/misc/normal/asylum_nightslow.gif index 97194c30ea2a2dd593a561c7ef1f035412c4f656..8810db489a0756974552b0ed16a5886968a43d7b 100644 Binary files a/img/misc/normal/asylum_nightslow.gif and b/img/misc/normal/asylum_nightslow.gif differ diff --git a/img/misc/normal/asylum_nightvfast.gif b/img/misc/normal/asylum_nightvfast.gif index 0fc050187b2a243feceb2963ad96cb7c63fa2bce..012634f44ebbc719d60e9e671de189bb28ca995c 100644 Binary files a/img/misc/normal/asylum_nightvfast.gif and b/img/misc/normal/asylum_nightvfast.gif differ diff --git a/img/misc/normal/beach_dawn.gif b/img/misc/normal/beach_dawn.gif index ec43b7f5b614d2679a86bcc5f7aff06acf3ec201..01e9adb93e9d4048f5d42689b6e13fb423759b81 100644 Binary files a/img/misc/normal/beach_dawn.gif and b/img/misc/normal/beach_dawn.gif differ diff --git a/img/misc/normal/beach_day.gif b/img/misc/normal/beach_day.gif index cda9f3f14a26866c9987bd9a9e7a395874e41f5b..9ee2e4e150a9e3a726228e10b59dc1f7fd6ffff6 100644 Binary files a/img/misc/normal/beach_day.gif and b/img/misc/normal/beach_day.gif differ diff --git a/img/misc/normal/beach_dusk.gif b/img/misc/normal/beach_dusk.gif index d94911812822a362ab47e6c8b8947e7bc20bac67..9ee2e4e150a9e3a726228e10b59dc1f7fd6ffff6 100644 Binary files a/img/misc/normal/beach_dusk.gif and b/img/misc/normal/beach_dusk.gif differ diff --git a/img/misc/normal/beach_night.gif b/img/misc/normal/beach_night.gif index 776a781e8a596f8648baacde0633d99440b96c99..5f3cc65d2c2d071101499da88a40a0fc0c602d33 100644 Binary files a/img/misc/normal/beach_night.gif and b/img/misc/normal/beach_night.gif differ diff --git a/img/misc/normal/boat_dawn.gif b/img/misc/normal/boat_dawn.gif index 7b045b7447bcbd20caec28572669896b30db0da3..3a17aeefdb52cedb7280253effef605e7d72e1f4 100644 Binary files a/img/misc/normal/boat_dawn.gif and b/img/misc/normal/boat_dawn.gif differ diff --git a/img/misc/normal/boat_day.gif b/img/misc/normal/boat_day.gif index 1c176ec3d85e792d9e3dd6c22030d99f76a71928..3a17aeefdb52cedb7280253effef605e7d72e1f4 100644 Binary files a/img/misc/normal/boat_day.gif and b/img/misc/normal/boat_day.gif differ diff --git a/img/misc/normal/boat_dusk.gif b/img/misc/normal/boat_dusk.gif index 3dcd2a52ac6e1823a6c343b1549abec7ae18503c..00b68a8ab2fc2d14731a43acf05f2f2d1ae09e42 100644 Binary files a/img/misc/normal/boat_dusk.gif and b/img/misc/normal/boat_dusk.gif differ diff --git a/img/misc/normal/boat_night.gif b/img/misc/normal/boat_night.gif index 62249ce03b61c52b97e73259411d5ef63ac63971..cae8a59b1aa89edaa0e39e45e5eba95580a136c9 100644 Binary files a/img/misc/normal/boat_night.gif and b/img/misc/normal/boat_night.gif differ diff --git a/img/misc/normal/bog_bloodmoon.gif b/img/misc/normal/bog_bloodmoon.gif new file mode 100644 index 0000000000000000000000000000000000000000..573079ffe08060a2b675d8f26c5b273c1ec36b25 Binary files /dev/null and b/img/misc/normal/bog_bloodmoon.gif differ diff --git a/img/misc/normal/bog_dawn.gif b/img/misc/normal/bog_dawn.gif new file mode 100644 index 0000000000000000000000000000000000000000..4c1f5ae00c25f093903f879f7b159617646db53c Binary files /dev/null and b/img/misc/normal/bog_dawn.gif differ diff --git a/img/misc/normal/bog_day.gif b/img/misc/normal/bog_day.gif new file mode 100644 index 0000000000000000000000000000000000000000..cc62509c38c261055e6662012b876ffaeedf32ca Binary files /dev/null and b/img/misc/normal/bog_day.gif differ diff --git a/img/misc/normal/bog_dusk.gif b/img/misc/normal/bog_dusk.gif new file mode 100644 index 0000000000000000000000000000000000000000..7534e7dd9234765ce1a2a6c2ef0da707ad1c85d7 Binary files /dev/null and b/img/misc/normal/bog_dusk.gif differ diff --git a/img/misc/normal/bog_night.gif b/img/misc/normal/bog_night.gif new file mode 100644 index 0000000000000000000000000000000000000000..9d1a18377307c687da97e044a56674998ae1d5f5 Binary files /dev/null and b/img/misc/normal/bog_night.gif differ diff --git a/img/misc/normal/brothel_dawn.png b/img/misc/normal/brothel_dawn.png index 26ff003aedf2a97fd3d7a8f209193c5624499b94..767af9caedc52ff8541362cba4b786917bc159b9 100644 Binary files a/img/misc/normal/brothel_dawn.png and b/img/misc/normal/brothel_dawn.png differ diff --git a/img/misc/normal/brothel_day.png b/img/misc/normal/brothel_day.png index d32333c48c5ee4b4d3f7b7361e5c68b9d872aba4..77b516034175a0fdd1d115fd7f6b8b9cbfae96a2 100644 Binary files a/img/misc/normal/brothel_day.png and b/img/misc/normal/brothel_day.png differ diff --git a/img/misc/normal/brothel_dusk.png b/img/misc/normal/brothel_dusk.png index 951842184801a8c0c7bca0d62aa9b7f668d95175..77b516034175a0fdd1d115fd7f6b8b9cbfae96a2 100644 Binary files a/img/misc/normal/brothel_dusk.png and b/img/misc/normal/brothel_dusk.png differ diff --git a/img/misc/normal/brothel_night.png b/img/misc/normal/brothel_night.png index ce6a27be37409b402d591517bd69ace4080479d2..711eaf2b4a024e5242bb07a3c28a773574199a59 100644 Binary files a/img/misc/normal/brothel_night.png and b/img/misc/normal/brothel_night.png differ diff --git a/img/misc/normal/cabin_dawn.gif b/img/misc/normal/cabin_dawn.gif deleted file mode 100644 index cd896653259a3c91e2fab3b9f1718c3d22d1da85..0000000000000000000000000000000000000000 Binary files a/img/misc/normal/cabin_dawn.gif and /dev/null differ diff --git a/img/misc/normal/cabin_dawn.png b/img/misc/normal/cabin_dawn.png new file mode 100644 index 0000000000000000000000000000000000000000..de6df4fc25c8bb352cd274960bbc55e30cda0483 Binary files /dev/null and b/img/misc/normal/cabin_dawn.png differ diff --git a/img/misc/normal/cabin_day.gif b/img/misc/normal/cabin_day.gif deleted file mode 100644 index ffb806917fe9ca19c5ff84910474332d13f138ee..0000000000000000000000000000000000000000 Binary files a/img/misc/normal/cabin_day.gif and /dev/null differ diff --git a/img/misc/normal/cabin_day.png b/img/misc/normal/cabin_day.png new file mode 100644 index 0000000000000000000000000000000000000000..8eaeb00de5e8acc772fc63620581b3ec15e2505d Binary files /dev/null and b/img/misc/normal/cabin_day.png differ diff --git a/img/misc/normal/cabin_dusk.gif b/img/misc/normal/cabin_dusk.gif deleted file mode 100644 index de9d743f9b860f6d4d969426ec9d50ec23ed182d..0000000000000000000000000000000000000000 Binary files a/img/misc/normal/cabin_dusk.gif and /dev/null differ diff --git a/img/misc/normal/cabin_dusk.png b/img/misc/normal/cabin_dusk.png new file mode 100644 index 0000000000000000000000000000000000000000..002b234ce197ec6879ee3363b4ea4af1e962d159 Binary files /dev/null and b/img/misc/normal/cabin_dusk.png differ diff --git a/img/misc/normal/cabin_night.gif b/img/misc/normal/cabin_night.gif deleted file mode 100644 index 1ee90231ffbd1e72690a81f46e711faa66d8db8a..0000000000000000000000000000000000000000 Binary files a/img/misc/normal/cabin_night.gif and /dev/null differ diff --git a/img/misc/normal/cabin_night.png b/img/misc/normal/cabin_night.png new file mode 100644 index 0000000000000000000000000000000000000000..0f837bdf2d3455a0c10916a3992245c1eb4c753b Binary files /dev/null and b/img/misc/normal/cabin_night.png differ diff --git a/img/misc/normal/cafe_construction_dawn.png b/img/misc/normal/cafe_construction_dawn.png index 9d4d55ac7af61affdb34a6f4461f76c818f45e26..90507c08f84aac0591341d314f765596ff4ae739 100644 Binary files a/img/misc/normal/cafe_construction_dawn.png and b/img/misc/normal/cafe_construction_dawn.png differ diff --git a/img/misc/normal/cafe_construction_day.png b/img/misc/normal/cafe_construction_day.png index a4c151b7c7e0fde520957bf80cff7670600af2d6..bc0fe9b1895f3e0f1f57901d96c6e2a0c76b6ab1 100644 Binary files a/img/misc/normal/cafe_construction_day.png and b/img/misc/normal/cafe_construction_day.png differ diff --git a/img/misc/normal/cafe_construction_dusk.png b/img/misc/normal/cafe_construction_dusk.png index ce132fdef2eaa1a22dedc5e515ffcd35bbb47a90..27ee7b2c4ee73da0aa789236b4551ec7f4fa2f4b 100644 Binary files a/img/misc/normal/cafe_construction_dusk.png and b/img/misc/normal/cafe_construction_dusk.png differ diff --git a/img/misc/normal/cafe_construction_night.png b/img/misc/normal/cafe_construction_night.png index 564fd21dc96b62430c3add8641e79f3893fdf207..eb6d8f1d0fd7e401b12ce3eb433881606cc6fd77 100644 Binary files a/img/misc/normal/cafe_construction_night.png and b/img/misc/normal/cafe_construction_night.png differ diff --git a/img/misc/normal/cafe_dawn.png b/img/misc/normal/cafe_dawn.png index 52663f45e71a843fd3d957ffe6188a35281219d1..cf97e3dfb3edadb8c096c9913e5f884a3d44a391 100644 Binary files a/img/misc/normal/cafe_dawn.png and b/img/misc/normal/cafe_dawn.png differ diff --git a/img/misc/normal/cafe_day.png b/img/misc/normal/cafe_day.png index a985e41224dfe1ae61eb08ab49f5698be360ce0e..9f071e99042241d05550cdf721c9863fae40915f 100644 Binary files a/img/misc/normal/cafe_day.png and b/img/misc/normal/cafe_day.png differ diff --git a/img/misc/normal/cafe_dusk.png b/img/misc/normal/cafe_dusk.png index adc1ab7e3d10a7fbd9afd77f724857d20e7b23bf..3fd8bd735844f71a4d8e759dbc73b3d10a38748e 100644 Binary files a/img/misc/normal/cafe_dusk.png and b/img/misc/normal/cafe_dusk.png differ diff --git a/img/misc/normal/cafe_night.png b/img/misc/normal/cafe_night.png index d147989fc7cf19d74a55198d71b2bfd93a18e1e8..60ea169324f4015468d081eccf6a17891c8e4f0a 100644 Binary files a/img/misc/normal/cafe_night.png and b/img/misc/normal/cafe_night.png differ diff --git a/img/misc/normal/cafe_renovated_dawn.png b/img/misc/normal/cafe_renovated_dawn.png index 0cd92d2ef67f64d7ad1845d74361a29ab478e905..aadcc7e63cf6849085ef970660b2e84f682e57dd 100644 Binary files a/img/misc/normal/cafe_renovated_dawn.png and b/img/misc/normal/cafe_renovated_dawn.png differ diff --git a/img/misc/normal/cafe_renovated_day.png b/img/misc/normal/cafe_renovated_day.png index 40c4f78ca77a0f2e7b36bcee8d8bb54e578fc3b7..1d851de9ba246e46805414273086afaff755644f 100644 Binary files a/img/misc/normal/cafe_renovated_day.png and b/img/misc/normal/cafe_renovated_day.png differ diff --git a/img/misc/normal/cafe_renovated_dusk.png b/img/misc/normal/cafe_renovated_dusk.png index 069a94f73715acdf28eca17d3898fd567707d7aa..f567e71d2fd27604c6e3cfaa51408ca78a1d9ef1 100644 Binary files a/img/misc/normal/cafe_renovated_dusk.png and b/img/misc/normal/cafe_renovated_dusk.png differ diff --git a/img/misc/normal/cafe_renovated_night.png b/img/misc/normal/cafe_renovated_night.png index cb835275554817e876a3a1d89176461c2b388a6a..946509f9651fdce79dd9875f12416f011ad3f3df 100644 Binary files a/img/misc/normal/cafe_renovated_night.png and b/img/misc/normal/cafe_renovated_night.png differ diff --git a/img/misc/normal/canal_dawn.gif b/img/misc/normal/canal_dawn.gif index 34f880af08026e417fff5ff27fb599cacc18c8b9..40c740268c7bc616bc681b3701aa06b875486c40 100644 Binary files a/img/misc/normal/canal_dawn.gif and b/img/misc/normal/canal_dawn.gif differ diff --git a/img/misc/normal/canal_day.gif b/img/misc/normal/canal_day.gif index ecf7f938da26a8b95a046c7dd615ad22ca8ef84c..cc06638a17b3e28374df91bae0c64ee4f6665694 100644 Binary files a/img/misc/normal/canal_day.gif and b/img/misc/normal/canal_day.gif differ diff --git a/img/misc/normal/canal_dusk.gif b/img/misc/normal/canal_dusk.gif index 3937842d339d467338d665a51df7d86a044a5844..2dae01de2797ed4377a113221d6bec065ff5b6a2 100644 Binary files a/img/misc/normal/canal_dusk.gif and b/img/misc/normal/canal_dusk.gif differ diff --git a/img/misc/normal/canal_night.gif b/img/misc/normal/canal_night.gif index e89939b4897e6d642e130fc6843d1d8456d463bf..9e85d96985ff8a4fa097f2c12164afd0ad1afe81 100644 Binary files a/img/misc/normal/canal_night.gif and b/img/misc/normal/canal_night.gif differ diff --git a/img/misc/normal/churchyard_dawn.png b/img/misc/normal/churchyard_dawn.png index a5b2e69ca1cc96cf7582e00b7bb407d9200fe3d7..541a6786e16307aeb073b3abb5e680e2b3056a4a 100644 Binary files a/img/misc/normal/churchyard_dawn.png and b/img/misc/normal/churchyard_dawn.png differ diff --git a/img/misc/normal/churchyard_day.png b/img/misc/normal/churchyard_day.png index 4e25b8025173a9ff8f4e804fe049925ee44d49e6..9f5f26e13933bdea205051d5a5d66397a2ebaf6a 100644 Binary files a/img/misc/normal/churchyard_day.png and b/img/misc/normal/churchyard_day.png differ diff --git a/img/misc/normal/churchyard_dusk.png b/img/misc/normal/churchyard_dusk.png index c9abe8673eba9428a79c7d04c89d7d187b428ac1..30323a499311c9a3c5476ee579ffa144a245439e 100644 Binary files a/img/misc/normal/churchyard_dusk.png and b/img/misc/normal/churchyard_dusk.png differ diff --git a/img/misc/normal/churchyard_night.png b/img/misc/normal/churchyard_night.png index 21b51d4e69795e80bf7a7b67c0cbba3b0a07c653..e055fca59d0a4e1f8a6d510b0f9fdb57d69901a0 100644 Binary files a/img/misc/normal/churchyard_night.png and b/img/misc/normal/churchyard_night.png differ diff --git a/img/misc/normal/compound_dawn.gif b/img/misc/normal/compound_dawn.gif index 8829ee29d37b04ae7d2f3bbf08d9cfffe0891d83..2884f4689fe71c0adb03ee4d29fa26ebb5cd7c1d 100644 Binary files a/img/misc/normal/compound_dawn.gif and b/img/misc/normal/compound_dawn.gif differ diff --git a/img/misc/normal/compound_day.gif b/img/misc/normal/compound_day.gif index cc18ee2d1982f115e9b067c33aa4bfc43f6739db..a5e2904df9d553def7eb22e5a12c94d4dcac5e50 100644 Binary files a/img/misc/normal/compound_day.gif and b/img/misc/normal/compound_day.gif differ diff --git a/img/misc/normal/compound_dusk.gif b/img/misc/normal/compound_dusk.gif index 7336d82b11d2a03e56b5eaeff575e720b28608b0..cc5d8d238d51f3fb465c5e8c1cc6ddd3d19fbf14 100644 Binary files a/img/misc/normal/compound_dusk.gif and b/img/misc/normal/compound_dusk.gif differ diff --git a/img/misc/normal/compound_night.gif b/img/misc/normal/compound_night.gif index 9645bca6bbb345f0fabb2fbf836eaf7f3a992d0e..ca1ec46263ae8c306a9c893b812b125956e35249 100644 Binary files a/img/misc/normal/compound_night.gif and b/img/misc/normal/compound_night.gif differ diff --git a/img/misc/normal/dance_studio_dawn.png b/img/misc/normal/dance_studio_dawn.png index 5614c788972943bda63d73c9795282942a452291..40ad99e814eecbda6dfcf58c04b5198940169e8e 100644 Binary files a/img/misc/normal/dance_studio_dawn.png and b/img/misc/normal/dance_studio_dawn.png differ diff --git a/img/misc/normal/dance_studio_day.png b/img/misc/normal/dance_studio_day.png index 8130030e91bf4cfa8f1dc3fa29aacc2cc96f5907..0adc03c950105ba4c84fa479d992bd649e863a1f 100644 Binary files a/img/misc/normal/dance_studio_day.png and b/img/misc/normal/dance_studio_day.png differ diff --git a/img/misc/normal/dance_studio_dusk.png b/img/misc/normal/dance_studio_dusk.png index ddf06a96c16ff10792a8576b6fa77dd7044860cc..0adc03c950105ba4c84fa479d992bd649e863a1f 100644 Binary files a/img/misc/normal/dance_studio_dusk.png and b/img/misc/normal/dance_studio_dusk.png differ diff --git a/img/misc/normal/dance_studio_night.png b/img/misc/normal/dance_studio_night.png index a7b7876108acd02e92498b4105d131b01939253b..6c8455d7b5e36eba7769c53ab561dcb17e6f5e42 100644 Binary files a/img/misc/normal/dance_studio_night.png and b/img/misc/normal/dance_studio_night.png differ diff --git a/img/misc/normal/dilapidated_shop_dawn.png b/img/misc/normal/dilapidated_shop_dawn.png index dfec9e2854dc295827a7b5f03d4e6307beb1762b..58dfb36b17d200e5c0ec3fedf4c57e222fa22d6c 100644 Binary files a/img/misc/normal/dilapidated_shop_dawn.png and b/img/misc/normal/dilapidated_shop_dawn.png differ diff --git a/img/misc/normal/dilapidated_shop_day.png b/img/misc/normal/dilapidated_shop_day.png index 08193ca53ef4eb7226c75ea923339272480e2a50..3d3f3cf9d3a314f3c77cebb73741a8d51110329f 100644 Binary files a/img/misc/normal/dilapidated_shop_day.png and b/img/misc/normal/dilapidated_shop_day.png differ diff --git a/img/misc/normal/dilapidated_shop_dusk.png b/img/misc/normal/dilapidated_shop_dusk.png index 6fbe2581c2e4f98e644034e2a29de7a4f5f44cd9..f6eb060197c1c7d74448b47a7378b01ffd9f56f5 100644 Binary files a/img/misc/normal/dilapidated_shop_dusk.png and b/img/misc/normal/dilapidated_shop_dusk.png differ diff --git a/img/misc/normal/dilapidated_shop_night.png b/img/misc/normal/dilapidated_shop_night.png index 732df85fd0e377828d1f2e8b91c09b9c79a206c3..5e22b468ecf03241d4d31de13fb9c92f5b115939 100644 Binary files a/img/misc/normal/dilapidated_shop_night.png and b/img/misc/normal/dilapidated_shop_night.png differ diff --git a/img/misc/normal/docks_dawn.png b/img/misc/normal/docks_dawn.png index 881638534fd4d4f9c7740c2f350dbbecb9e33ebb..2c6eabda6aa51a84b0e800877848ef4d50590896 100644 Binary files a/img/misc/normal/docks_dawn.png and b/img/misc/normal/docks_dawn.png differ diff --git a/img/misc/normal/docks_day.png b/img/misc/normal/docks_day.png index a020d5859d9186070b26bac871848f48862ea626..8762280397abbfb7f8b263350e711c561077ff30 100644 Binary files a/img/misc/normal/docks_day.png and b/img/misc/normal/docks_day.png differ diff --git a/img/misc/normal/docks_dusk.png b/img/misc/normal/docks_dusk.png index f78c567a77e3783fda4f1e4305b4b3b248001683..616e979869bb7c6f3e5db5fa5fc2cabc590b093f 100644 Binary files a/img/misc/normal/docks_dusk.png and b/img/misc/normal/docks_dusk.png differ diff --git a/img/misc/normal/docks_night.png b/img/misc/normal/docks_night.png index 3055a9c05240609aff0022e8008ede134cecd85a..0d33ef564b8ddb939f89c19b60365b6f46765389 100644 Binary files a/img/misc/normal/docks_night.png and b/img/misc/normal/docks_night.png differ diff --git a/img/misc/normal/dog_pound_dawn.gif b/img/misc/normal/dog_pound_dawn.gif index d7fc3e0892905ea129b978b7a298f0b8e401f84c..0fde66f3805d5e1fc3067e8bbc09a3c9139b69a2 100644 Binary files a/img/misc/normal/dog_pound_dawn.gif and b/img/misc/normal/dog_pound_dawn.gif differ diff --git a/img/misc/normal/dog_pound_day.gif b/img/misc/normal/dog_pound_day.gif index dac5949885b0dbeedf1288fdf6d86800cffc89d4..1005ba6630900023e130c55ae25b7336b74a8380 100644 Binary files a/img/misc/normal/dog_pound_day.gif and b/img/misc/normal/dog_pound_day.gif differ diff --git a/img/misc/normal/dog_pound_dusk.gif b/img/misc/normal/dog_pound_dusk.gif index f7fdb889c0612ccfb93655d540d6f6475d7223ca..0fde66f3805d5e1fc3067e8bbc09a3c9139b69a2 100644 Binary files a/img/misc/normal/dog_pound_dusk.gif and b/img/misc/normal/dog_pound_dusk.gif differ diff --git a/img/misc/normal/dog_pound_night.gif b/img/misc/normal/dog_pound_night.gif new file mode 100644 index 0000000000000000000000000000000000000000..0570da99fd2212eaa1fee69af47a091d45947a04 Binary files /dev/null and b/img/misc/normal/dog_pound_night.gif differ diff --git a/img/misc/normal/dog_pound_night.png b/img/misc/normal/dog_pound_night.png deleted file mode 100644 index 20537fb9b62967a6a0672d99cb1064e668aa6274..0000000000000000000000000000000000000000 Binary files a/img/misc/normal/dog_pound_night.png and /dev/null differ diff --git a/img/misc/normal/factory_dawn.gif b/img/misc/normal/factory_dawn.gif index 23ce23251af9cf750967313a00898aaed8fa71be..a2061f783979c034d0bf2e75dc38f3b67b7b14e3 100644 Binary files a/img/misc/normal/factory_dawn.gif and b/img/misc/normal/factory_dawn.gif differ diff --git a/img/misc/normal/factory_day.gif b/img/misc/normal/factory_day.gif index 8ede6da505ef64fb5f842d0a2304768d3627ac61..8105ddd8ac282586383f0edea12557279c1cd9b6 100644 Binary files a/img/misc/normal/factory_day.gif and b/img/misc/normal/factory_day.gif differ diff --git a/img/misc/normal/factory_dusk.gif b/img/misc/normal/factory_dusk.gif index 019931fbd1089a6b0af5f4ec43cebbfc2c115f53..932c5584b12968218cbf0b0e6316e2b9786e10e2 100644 Binary files a/img/misc/normal/factory_dusk.gif and b/img/misc/normal/factory_dusk.gif differ diff --git a/img/misc/normal/factory_night.gif b/img/misc/normal/factory_night.gif new file mode 100644 index 0000000000000000000000000000000000000000..71f4303ebba525e5f8f592e6d4666d13d93e8327 Binary files /dev/null and b/img/misc/normal/factory_night.gif differ diff --git a/img/misc/normal/factory_night.png b/img/misc/normal/factory_night.png deleted file mode 100644 index a07132e4f697aa411e723c1d7eee14b3b4b53186..0000000000000000000000000000000000000000 Binary files a/img/misc/normal/factory_night.png and /dev/null differ diff --git a/img/misc/normal/farm_dawn.png b/img/misc/normal/farm_dawn.png index c7f2cfdfbef4c54ba0ad5de8b2343fde0ee39b55..052d204feac4cc2cdd4af50a8643f1289873140b 100644 Binary files a/img/misc/normal/farm_dawn.png and b/img/misc/normal/farm_dawn.png differ diff --git a/img/misc/normal/farm_day.png b/img/misc/normal/farm_day.png index e34c76fe8a0136fbf1f42b4edd861ad77ce22679..f7c504558350712589bf4fa47a13c7c099d9fabe 100644 Binary files a/img/misc/normal/farm_day.png and b/img/misc/normal/farm_day.png differ diff --git a/img/misc/normal/farm_dusk.png b/img/misc/normal/farm_dusk.png index df6829731a15560f201dfd2215b2653e24e5a330..bda7e9c4a37a4baac28d279cecb32cc1df4d86e0 100644 Binary files a/img/misc/normal/farm_dusk.png and b/img/misc/normal/farm_dusk.png differ diff --git a/img/misc/normal/farm_night.png b/img/misc/normal/farm_night.png index b3cbc8bffa1aa979f76a5f7471e2576e962caa25..20acb2fe72ea4ae31902133171af05ab8cc70e88 100644 Binary files a/img/misc/normal/farm_night.png and b/img/misc/normal/farm_night.png differ diff --git a/img/misc/normal/flats_dawn.png b/img/misc/normal/flats_dawn.png index e6868be04d1528613dc274ce8f1ce344ba83430e..35fdfd47dcccdb9edaab6c7137e7a8485cc54b8b 100644 Binary files a/img/misc/normal/flats_dawn.png and b/img/misc/normal/flats_dawn.png differ diff --git a/img/misc/normal/flats_day.png b/img/misc/normal/flats_day.png index 0b525313451b4c00f7d7c40d57accaaf81f28f1c..8b8094afe57e7996fdd355812124f9b21865bcf5 100644 Binary files a/img/misc/normal/flats_day.png and b/img/misc/normal/flats_day.png differ diff --git a/img/misc/normal/flats_dusk.png b/img/misc/normal/flats_dusk.png index 644ea6324e6d181e65d3cf70ca93923ece593c5c..40bff954fe60323085cc18e166a755897d990103 100644 Binary files a/img/misc/normal/flats_dusk.png and b/img/misc/normal/flats_dusk.png differ diff --git a/img/misc/normal/flats_night.png b/img/misc/normal/flats_night.png index c49685d735d693e27f6495a4161de5fbd02a0ddf..761b65d9cc38562f51f43a315724076127cc5d76 100644 Binary files a/img/misc/normal/flats_night.png and b/img/misc/normal/flats_night.png differ diff --git a/img/misc/normal/forest_bloodmoon.gif b/img/misc/normal/forest_bloodmoon.gif index 855a091ae46166d378dee2c192c004f07e15278e..3ff4710e88751e55970e1b51ee47ecb5c9cabf8f 100644 Binary files a/img/misc/normal/forest_bloodmoon.gif and b/img/misc/normal/forest_bloodmoon.gif differ diff --git a/img/misc/normal/forest_dawn.gif b/img/misc/normal/forest_dawn.gif new file mode 100644 index 0000000000000000000000000000000000000000..85f74a2a364350b107a19a971c4c558efc946fe1 Binary files /dev/null and b/img/misc/normal/forest_dawn.gif differ diff --git a/img/misc/normal/forest_dawn.png b/img/misc/normal/forest_dawn.png deleted file mode 100644 index 34ef58528b3417ef3bba218df71c98e960696911..0000000000000000000000000000000000000000 Binary files a/img/misc/normal/forest_dawn.png and /dev/null differ diff --git a/img/misc/normal/forest_day.gif b/img/misc/normal/forest_day.gif index 5877f878e21df9cc2482f44b0bd16297faa649d7..4a163a0458592ebfbc5d4fbb9177c046f028ce4b 100644 Binary files a/img/misc/normal/forest_day.gif and b/img/misc/normal/forest_day.gif differ diff --git a/img/misc/normal/forest_dusk.gif b/img/misc/normal/forest_dusk.gif index 3e6e91378b732acec465c1d3e96e873e37bdc2ad..f338621cc48d0ef53ba1abdf9edd2d6733ef9d05 100644 Binary files a/img/misc/normal/forest_dusk.gif and b/img/misc/normal/forest_dusk.gif differ diff --git a/img/misc/normal/forest_night.gif b/img/misc/normal/forest_night.gif new file mode 100644 index 0000000000000000000000000000000000000000..b37bb8fc9140c2034da7e0f8af2f496361f136de Binary files /dev/null and b/img/misc/normal/forest_night.gif differ diff --git a/img/misc/normal/forest_night.png b/img/misc/normal/forest_night.png deleted file mode 100644 index 30866fe3316b49cd6a65c1d9c263ddce8764996c..0000000000000000000000000000000000000000 Binary files a/img/misc/normal/forest_night.png and /dev/null differ diff --git a/img/misc/normal/forest_shop_dawn.png b/img/misc/normal/forest_shop_dawn.png index b0dc56615720588cf05cb4ef27fca79ee7d78e3e..c67c684770150fa4097b0f330344e691706c71fb 100644 Binary files a/img/misc/normal/forest_shop_dawn.png and b/img/misc/normal/forest_shop_dawn.png differ diff --git a/img/misc/normal/forest_shop_day.png b/img/misc/normal/forest_shop_day.png index e7dfd9614901c1ce9d9b1a11725fdf07ac15791d..9f4c2c753aae109df051c30e1318d2dc56316608 100644 Binary files a/img/misc/normal/forest_shop_day.png and b/img/misc/normal/forest_shop_day.png differ diff --git a/img/misc/normal/forest_shop_dusk.png b/img/misc/normal/forest_shop_dusk.png index a75cb8abfabaa10f955d0b6bd87c2320b37a7f61..be0031dd887276ec2db8c4002342e5cfcd755544 100644 Binary files a/img/misc/normal/forest_shop_dusk.png and b/img/misc/normal/forest_shop_dusk.png differ diff --git a/img/misc/normal/forest_shop_night.png b/img/misc/normal/forest_shop_night.png index cc1dd0a0cc61ab326c27fb0f51b25711e4d5f0a9..db9a2a62526eaa9eaaded60cc2e207a7663f8d91 100644 Binary files a/img/misc/normal/forest_shop_night.png and b/img/misc/normal/forest_shop_night.png differ diff --git a/img/misc/normal/home_bloodmoon.gif b/img/misc/normal/home_bloodmoon.gif index 81845714d7bf32a3d899bfc461b1a95be271a4c3..a259fb870a804baa3108fbebaa13d2336deca1fc 100644 Binary files a/img/misc/normal/home_bloodmoon.gif and b/img/misc/normal/home_bloodmoon.gif differ diff --git a/img/misc/normal/home_dawn.gif b/img/misc/normal/home_dawn.gif index 0caf7fa5ad19557823ad83dbd40fe455bbcff13e..e17b6ce634353c8035413fdabb977eed52d699d8 100644 Binary files a/img/misc/normal/home_dawn.gif and b/img/misc/normal/home_dawn.gif differ diff --git a/img/misc/normal/home_day.gif b/img/misc/normal/home_day.gif index 22e4fa8e3aba13fcc7e1bdeaf34d3a80902e5d58..a2fa76cc7390c1f9bef1e6d020abe6142c4138a2 100644 Binary files a/img/misc/normal/home_day.gif and b/img/misc/normal/home_day.gif differ diff --git a/img/misc/normal/home_dusk.gif b/img/misc/normal/home_dusk.gif index 7936a4cef33040e274fcaf41be914f86459391a3..e17b6ce634353c8035413fdabb977eed52d699d8 100644 Binary files a/img/misc/normal/home_dusk.gif and b/img/misc/normal/home_dusk.gif differ diff --git a/img/misc/normal/home_night.gif b/img/misc/normal/home_night.gif index 289902060c3b1989af065ca4379bce42903e065e..58839efe0fb0aff4c4e080fc054c464dc15f3535 100644 Binary files a/img/misc/normal/home_night.gif and b/img/misc/normal/home_night.gif differ diff --git a/img/misc/normal/hospital_dawn.png b/img/misc/normal/hospital_dawn.png index 47812d762664d2a9c7e967373cd80f82efec4c9a..b44c426c89110c7fc4d2064adacdc0f0cc9cccd2 100644 Binary files a/img/misc/normal/hospital_dawn.png and b/img/misc/normal/hospital_dawn.png differ diff --git a/img/misc/normal/hospital_day.png b/img/misc/normal/hospital_day.png index 7a6d8f0f1e7ef0a4c04bab394629dc03d03c8c7e..b44c426c89110c7fc4d2064adacdc0f0cc9cccd2 100644 Binary files a/img/misc/normal/hospital_day.png and b/img/misc/normal/hospital_day.png differ diff --git a/img/misc/normal/hospital_dusk.png b/img/misc/normal/hospital_dusk.png index 3b3155b3364c500fb98eb1b2566c2a100a4f4f6c..b44c426c89110c7fc4d2064adacdc0f0cc9cccd2 100644 Binary files a/img/misc/normal/hospital_dusk.png and b/img/misc/normal/hospital_dusk.png differ diff --git a/img/misc/normal/hospital_night.png b/img/misc/normal/hospital_night.png index 9a5e81d14aa323e2682d786ef735c503f16af253..210d103f27a63bebb432f97d6b318dbff9a6afd4 100644 Binary files a/img/misc/normal/hospital_night.png and b/img/misc/normal/hospital_night.png differ diff --git a/img/misc/normal/indust_alley_bloodmoon.gif b/img/misc/normal/indust_alley_bloodmoon.gif index 52a91d78b6cf834a9cf0f7be45daa04b01b2a3d6..5c5eca351aac8e44562d42ffd05480716b7007ba 100644 Binary files a/img/misc/normal/indust_alley_bloodmoon.gif and b/img/misc/normal/indust_alley_bloodmoon.gif differ diff --git a/img/misc/normal/indust_alley_dawn.gif b/img/misc/normal/indust_alley_dawn.gif index 2c97e0313961d9f82b7fabb6c91864812b0fdeae..97d44c8630f48c9bcb10ec5635a5092d566e3dd9 100644 Binary files a/img/misc/normal/indust_alley_dawn.gif and b/img/misc/normal/indust_alley_dawn.gif differ diff --git a/img/misc/normal/indust_alley_day.gif b/img/misc/normal/indust_alley_day.gif index 1792d9ae496a29c282fbe964a36372a210497f72..bf5d8bae06d78ce6fc5b6ea6a53771388b874ab5 100644 Binary files a/img/misc/normal/indust_alley_day.gif and b/img/misc/normal/indust_alley_day.gif differ diff --git a/img/misc/normal/indust_alley_dusk.gif b/img/misc/normal/indust_alley_dusk.gif index fadf6574407e98048589f099fc9902391b87ab36..cb75d9127b6d20baf202d8dbe13920cb8ec50d0f 100644 Binary files a/img/misc/normal/indust_alley_dusk.gif and b/img/misc/normal/indust_alley_dusk.gif differ diff --git a/img/misc/normal/indust_alley_night.gif b/img/misc/normal/indust_alley_night.gif index db2907c70d2bccd377e557ac56d3de7fc2a195eb..c704ea85c1aff6e54de53f0c32c674134f992f21 100644 Binary files a/img/misc/normal/indust_alley_night.gif and b/img/misc/normal/indust_alley_night.gif differ diff --git a/img/misc/normal/island_dawn.gif b/img/misc/normal/island_dawn.gif index d4809eb9c4402a90496b18c3061c1f569e2a1a66..2f3b5b125f81297dc09e5b1847c79027bbb0da91 100644 Binary files a/img/misc/normal/island_dawn.gif and b/img/misc/normal/island_dawn.gif differ diff --git a/img/misc/normal/island_day.gif b/img/misc/normal/island_day.gif index 2e736128493684de35b9612b5494355daa6ed032..2f3b5b125f81297dc09e5b1847c79027bbb0da91 100644 Binary files a/img/misc/normal/island_day.gif and b/img/misc/normal/island_day.gif differ diff --git a/img/misc/normal/island_dusk.gif b/img/misc/normal/island_dusk.gif index 4129558e202c061ffa2b8f1548122103a7d6730e..6f1afc1e362832e0af0f506116cf4b413573d6fa 100644 Binary files a/img/misc/normal/island_dusk.gif and b/img/misc/normal/island_dusk.gif differ diff --git a/img/misc/normal/island_night.gif b/img/misc/normal/island_night.gif index 4c45ed54126cb86aa4e6473bed07293931afdd06..2a0b44ec73982efa3c92a95f6b7f3b0e85d12fa0 100644 Binary files a/img/misc/normal/island_night.gif and b/img/misc/normal/island_night.gif differ diff --git a/img/misc/normal/kylar_manor_dawn.png b/img/misc/normal/kylar_manor_dawn.png index aba996a72224614af238c6fb6a527ff9b2958edc..92cc706d5a07cf0f60c4dacdd54102cc02d01bf6 100644 Binary files a/img/misc/normal/kylar_manor_dawn.png and b/img/misc/normal/kylar_manor_dawn.png differ diff --git a/img/misc/normal/kylar_manor_day.png b/img/misc/normal/kylar_manor_day.png index 66685d809f63448d8cc75f427155a0fcb131d6dc..ebaed173c2f2b426949042f82f4e79c064735656 100644 Binary files a/img/misc/normal/kylar_manor_day.png and b/img/misc/normal/kylar_manor_day.png differ diff --git a/img/misc/normal/kylar_manor_dusk.png b/img/misc/normal/kylar_manor_dusk.png index 792127c8275d8c0af0682b11a5c5f9cc5a21332b..eb05b412414657b01321d6481e1feadb60af5528 100644 Binary files a/img/misc/normal/kylar_manor_dusk.png and b/img/misc/normal/kylar_manor_dusk.png differ diff --git a/img/misc/normal/kylar_manor_night.png b/img/misc/normal/kylar_manor_night.png index 65a18533011d287431d79726312a3bdac8dfe998..421881452d7de10804e46ef4a71fc04fbc83873d 100644 Binary files a/img/misc/normal/kylar_manor_night.png and b/img/misc/normal/kylar_manor_night.png differ diff --git a/img/misc/normal/lake_bloodmoon.gif b/img/misc/normal/lake_bloodmoon.gif index 1806f7d59101cffff99b4cb4e627640444607d03..bbe64478d3f4293769d304cbfe4cd9e46be4cad9 100644 Binary files a/img/misc/normal/lake_bloodmoon.gif and b/img/misc/normal/lake_bloodmoon.gif differ diff --git a/img/misc/normal/lake_dawn.gif b/img/misc/normal/lake_dawn.gif index 8de375d3a679a89c9c64033a28d41cb30f561982..9248c583c28f7ec4b42ea1ece6e91b5e04e8c9ff 100644 Binary files a/img/misc/normal/lake_dawn.gif and b/img/misc/normal/lake_dawn.gif differ diff --git a/img/misc/normal/lake_day.gif b/img/misc/normal/lake_day.gif index d985522f2e877dac08d65063a460bcb408cc7cc6..b41ea96ac678ddd9fa78b84ce6628d02044d5452 100644 Binary files a/img/misc/normal/lake_day.gif and b/img/misc/normal/lake_day.gif differ diff --git a/img/misc/normal/lake_dusk.gif b/img/misc/normal/lake_dusk.gif index c57d6bebd7786d2c488ffa879dd9da464b4b5546..009a0e007eeddeeafcb8ae0e077c3244e91fc0a9 100644 Binary files a/img/misc/normal/lake_dusk.gif and b/img/misc/normal/lake_dusk.gif differ diff --git a/img/misc/normal/lake_night.gif b/img/misc/normal/lake_night.gif index f442a6649a33e139437a12bbd7628f9802e47aae..f226799e0612663014e33a136e33b9cb3b6f5528 100644 Binary files a/img/misc/normal/lake_night.gif and b/img/misc/normal/lake_night.gif differ diff --git a/img/misc/normal/landfill_dawn.png b/img/misc/normal/landfill_dawn.png index 2c23400ccd742596043479259d778ff496c1011f..e10baf8c3d73201b753c4ae36217be3600133bd0 100644 Binary files a/img/misc/normal/landfill_dawn.png and b/img/misc/normal/landfill_dawn.png differ diff --git a/img/misc/normal/landfill_day.png b/img/misc/normal/landfill_day.png index 569b3c225672ca3127f8d0e9d2c2dd428a3fda43..ddc6cbd35aae159ddf49471a875fca34d5afb70c 100644 Binary files a/img/misc/normal/landfill_day.png and b/img/misc/normal/landfill_day.png differ diff --git a/img/misc/normal/landfill_dusk.png b/img/misc/normal/landfill_dusk.png index 367707115ae0af7134c5c8b5a6a25b00bcee8a13..7a0634803b0539989cab50f1f8e05225b54b19c1 100644 Binary files a/img/misc/normal/landfill_dusk.png and b/img/misc/normal/landfill_dusk.png differ diff --git a/img/misc/normal/landfill_night.png b/img/misc/normal/landfill_night.png index 0eb02d371bd9a08c001e24b153898fd8dffc26d6..cd923b1c29875356ad5ec914b0dcc8a7efaaf31d 100644 Binary files a/img/misc/normal/landfill_night.png and b/img/misc/normal/landfill_night.png differ diff --git a/img/misc/normal/meadow_dawn.gif b/img/misc/normal/meadow_dawn.gif index 0bf6d2b6cc88473dfb3ad05e2b86fc7fd3b18e46..68e46e7f7cb16424aa3e2f21421cd40574e62086 100644 Binary files a/img/misc/normal/meadow_dawn.gif and b/img/misc/normal/meadow_dawn.gif differ diff --git a/img/misc/normal/meadow_day.gif b/img/misc/normal/meadow_day.gif index 8c4a13d7cfb7fc26dacac1b778e151cc65021fe6..68e46e7f7cb16424aa3e2f21421cd40574e62086 100644 Binary files a/img/misc/normal/meadow_day.gif and b/img/misc/normal/meadow_day.gif differ diff --git a/img/misc/normal/meadow_dusk.gif b/img/misc/normal/meadow_dusk.gif index 98009e8638c7e7a8d93cf05f0b57d6e43fdd3ae3..fa9b5e95f2ece88d7fc067567c06e1bcf332ffc3 100644 Binary files a/img/misc/normal/meadow_dusk.gif and b/img/misc/normal/meadow_dusk.gif differ diff --git a/img/misc/normal/meadow_night.gif b/img/misc/normal/meadow_night.gif index 97ce8437cb08d5426926368009980b9409fb0f00..46bed3589129ae62d3e20614d887a1340d41b7f1 100644 Binary files a/img/misc/normal/meadow_night.gif and b/img/misc/normal/meadow_night.gif differ diff --git a/img/misc/normal/moor_dawn.gif b/img/misc/normal/moor_dawn.gif index d03a4d4ed5b86752fd2ea2db82dc5c97e96b8a2d..b6d98b34ea06e689081b1a0fdd277623780398b2 100644 Binary files a/img/misc/normal/moor_dawn.gif and b/img/misc/normal/moor_dawn.gif differ diff --git a/img/misc/normal/moor_day.gif b/img/misc/normal/moor_day.gif index 3ce6e617e44eb332e5e99a71c1eb04e3690a4901..8e33420ab73eeaceb5a4226431c29553ec19b2b4 100644 Binary files a/img/misc/normal/moor_day.gif and b/img/misc/normal/moor_day.gif differ diff --git a/img/misc/normal/moor_dusk.gif b/img/misc/normal/moor_dusk.gif index 9d8719e366f8bd37b2940897be25a29b61bde72e..3e85602ae97591e4e56a993d76f7bd7dcd66718c 100644 Binary files a/img/misc/normal/moor_dusk.gif and b/img/misc/normal/moor_dusk.gif differ diff --git a/img/misc/normal/moor_night.gif b/img/misc/normal/moor_night.gif index 5e35651864fbafd6656ec46724d97133885a2662..46f71245b170c43199c8fe7803410bc5cd618697 100644 Binary files a/img/misc/normal/moor_night.gif and b/img/misc/normal/moor_night.gif differ diff --git a/img/misc/normal/museum_dawn.png b/img/misc/normal/museum_dawn.png index 87ae86968f65dd8974e1b2b73f8547995cfefb15..adb5c32609991917a95a31ba248246a526ad67a2 100644 Binary files a/img/misc/normal/museum_dawn.png and b/img/misc/normal/museum_dawn.png differ diff --git a/img/misc/normal/museum_day.png b/img/misc/normal/museum_day.png index 4eae6eb2cd16ea11f9d8e260240c8bcacf73ad7c..3b0f0f34c91319c4afabd5d31e61e11296dd8248 100644 Binary files a/img/misc/normal/museum_day.png and b/img/misc/normal/museum_day.png differ diff --git a/img/misc/normal/museum_dusk.png b/img/misc/normal/museum_dusk.png index dae1f016a77dcc8159d02eb776f794d72bbefab0..92f493666d685916fd8dac539c555dd6f3ba281d 100644 Binary files a/img/misc/normal/museum_dusk.png and b/img/misc/normal/museum_dusk.png differ diff --git a/img/misc/normal/museum_night.png b/img/misc/normal/museum_night.png index 2a802ea6015ebb172e9fc4ebea729c8167e2aca6..ef124d6f7603b057d9148197fa550a6f2f2c725e 100644 Binary files a/img/misc/normal/museum_night.png and b/img/misc/normal/museum_night.png differ diff --git a/img/misc/normal/night_monster_lair_dawn.gif b/img/misc/normal/night_monster_lair_dawn.gif index 7b105974b0add227f408231bc3c90ef81e80e910..7a7ae8a760f0958b1636ca6e69fdf585eb3c9375 100644 Binary files a/img/misc/normal/night_monster_lair_dawn.gif and b/img/misc/normal/night_monster_lair_dawn.gif differ diff --git a/img/misc/normal/night_monster_lair_day.gif b/img/misc/normal/night_monster_lair_day.gif index 0a9971a3445b1481ec13640832202e41cb0d63f8..f4ea80fbf0954622b7768dc914ddee7faa976e7c 100644 Binary files a/img/misc/normal/night_monster_lair_day.gif and b/img/misc/normal/night_monster_lair_day.gif differ diff --git a/img/misc/normal/night_monster_lair_dusk.gif b/img/misc/normal/night_monster_lair_dusk.gif index 0e1ca54e0a1e6afed8707c43cc8662873577cad4..5dfa7479820caa1461227205cc821a0a3dd07d3b 100644 Binary files a/img/misc/normal/night_monster_lair_dusk.gif and b/img/misc/normal/night_monster_lair_dusk.gif differ diff --git a/img/misc/normal/night_monster_lair_night.gif b/img/misc/normal/night_monster_lair_night.gif index 264b883772d30b03d235eda1e878c575552c5382..6e15de8c83ebec41f48b43a891afcafd294211ed 100644 Binary files a/img/misc/normal/night_monster_lair_night.gif and b/img/misc/normal/night_monster_lair_night.gif differ diff --git a/img/misc/normal/ocean_dawn.gif b/img/misc/normal/ocean_dawn.gif index 12493afd0caa4e0968b9c8baba19c51ca308a536..3f5e500b66f3c21dfadbadaf13e4cd1ca78c5305 100644 Binary files a/img/misc/normal/ocean_dawn.gif and b/img/misc/normal/ocean_dawn.gif differ diff --git a/img/misc/normal/ocean_day.gif b/img/misc/normal/ocean_day.gif index a3f67c595e0e860df970121b4ac512888c73a2bc..90809ff6807a64a508e6a69e43caed1fb3d4e5d6 100644 Binary files a/img/misc/normal/ocean_day.gif and b/img/misc/normal/ocean_day.gif differ diff --git a/img/misc/normal/ocean_dusk.gif b/img/misc/normal/ocean_dusk.gif index 954ce35cc8f6e58ff5f6249f3f041cd7a7b59559..bb8be7a7dc9bb8126b0831d03eabb8ee514dad10 100644 Binary files a/img/misc/normal/ocean_dusk.gif and b/img/misc/normal/ocean_dusk.gif differ diff --git a/img/misc/normal/ocean_night.gif b/img/misc/normal/ocean_night.gif index a568bacc709952117c6196058aac68f661a93aaa..739fcff49c3e0a543a00e52bdee1ce2a92975f94 100644 Binary files a/img/misc/normal/ocean_night.gif and b/img/misc/normal/ocean_night.gif differ diff --git a/img/misc/normal/office_dawn.png b/img/misc/normal/office_dawn.png index 7f7914519524434147e77dd460d8ccbf4917672a..0b4c0dd23e1c8092d81ee3013cae8b6db8d8a843 100644 Binary files a/img/misc/normal/office_dawn.png and b/img/misc/normal/office_dawn.png differ diff --git a/img/misc/normal/office_day.png b/img/misc/normal/office_day.png index 282eb1968f54ae3edb6e387478b766bc6c7aec48..3e62ace2b21dfc2598850269597789fff363fa7a 100644 Binary files a/img/misc/normal/office_day.png and b/img/misc/normal/office_day.png differ diff --git a/img/misc/normal/office_dusk.png b/img/misc/normal/office_dusk.png index 7a7be74d19344ff5c35ea6f4fe4e3b16c18e60a1..3e62ace2b21dfc2598850269597789fff363fa7a 100644 Binary files a/img/misc/normal/office_dusk.png and b/img/misc/normal/office_dusk.png differ diff --git a/img/misc/normal/office_night.png b/img/misc/normal/office_night.png index 800be84ccafa1fb7e6ebb90336d7b3ff60182f8e..8b8e55a2c0789aa3d12009864aad20a81df15319 100644 Binary files a/img/misc/normal/office_night.png and b/img/misc/normal/office_night.png differ diff --git a/img/misc/normal/park_bloodmoon.gif b/img/misc/normal/park_bloodmoon.gif index 47fa26f764d61a6f1c5a9610008a74f555032326..5ede4c09db544fcd0b06cabc1f8dd694984a77d6 100644 Binary files a/img/misc/normal/park_bloodmoon.gif and b/img/misc/normal/park_bloodmoon.gif differ diff --git a/img/misc/normal/park_dawn.gif b/img/misc/normal/park_dawn.gif index 95da5ef96a8b7ba352af0c3cee6af1ac0de05ed6..58ce48c02b9766eb737ed0986d64472c79c1fd3e 100644 Binary files a/img/misc/normal/park_dawn.gif and b/img/misc/normal/park_dawn.gif differ diff --git a/img/misc/normal/park_day.gif b/img/misc/normal/park_day.gif index d01d10a800a68675e5c889fe7766e65568764cb8..0587d9fcd05611bdc98e60ee9732f8198357788a 100644 Binary files a/img/misc/normal/park_day.gif and b/img/misc/normal/park_day.gif differ diff --git a/img/misc/normal/park_dusk.gif b/img/misc/normal/park_dusk.gif index a9d5d2d5f2f5c77e3c4972a7b693946704e09b29..8639a8d6ff35d7343b53d426d2e7c9946c67fabd 100644 Binary files a/img/misc/normal/park_dusk.gif and b/img/misc/normal/park_dusk.gif differ diff --git a/img/misc/normal/park_night.gif b/img/misc/normal/park_night.gif index b0677c5b09da99c8e30a59dbb04ab7be4fa4350a..079e4366f8aff903ca399ba2bc9459cf772158f6 100644 Binary files a/img/misc/normal/park_night.gif and b/img/misc/normal/park_night.gif differ diff --git a/img/misc/normal/police_station_dawn.png b/img/misc/normal/police_station_dawn.png index f3244324632720a4d1189c2ad6c1743f76eb602f..c3ce8a7158e85ba6d5d1e41d6ffc83263dc04051 100644 Binary files a/img/misc/normal/police_station_dawn.png and b/img/misc/normal/police_station_dawn.png differ diff --git a/img/misc/normal/police_station_day.png b/img/misc/normal/police_station_day.png index dec6e69ad855424f18b5978f2ccacfef5fec1b79..73acef11bd078e3fee0fdcdd94376d7eb7db7561 100644 Binary files a/img/misc/normal/police_station_day.png and b/img/misc/normal/police_station_day.png differ diff --git a/img/misc/normal/police_station_dusk.png b/img/misc/normal/police_station_dusk.png index f9749fc530f373d23f769cc2b0e8d5c103d746e0..7ad26aa38455ddc3c6e071fa9f2ab00a9b2c29de 100644 Binary files a/img/misc/normal/police_station_dusk.png and b/img/misc/normal/police_station_dusk.png differ diff --git a/img/misc/normal/police_station_night.png b/img/misc/normal/police_station_night.png index a1fc645d206e4e19c378d65419b6dec2e0c9e324..7b6cdcd81eb098a566516cc8fe6dd10d5831e841 100644 Binary files a/img/misc/normal/police_station_night.png and b/img/misc/normal/police_station_night.png differ diff --git a/img/misc/normal/pool_dawn.gif b/img/misc/normal/pool_dawn.gif index 2bc4d1e3638be0369197bdd83d68c377efedbaba..a21696333fcaaa547b0be4040dfe13b80ef57bbb 100644 Binary files a/img/misc/normal/pool_dawn.gif and b/img/misc/normal/pool_dawn.gif differ diff --git a/img/misc/normal/pool_day.gif b/img/misc/normal/pool_day.gif index 37e1d9070fbfb4eae6e8e4ba5f46cc5884d502c0..a21696333fcaaa547b0be4040dfe13b80ef57bbb 100644 Binary files a/img/misc/normal/pool_day.gif and b/img/misc/normal/pool_day.gif differ diff --git a/img/misc/normal/pool_dusk.gif b/img/misc/normal/pool_dusk.gif index a36fe9219d5f1e1a0ab9baf288facec6eecd96db..baa5d1d3e8cbddfa8579c35083199c66e68be0dd 100644 Binary files a/img/misc/normal/pool_dusk.gif and b/img/misc/normal/pool_dusk.gif differ diff --git a/img/misc/normal/pool_night.gif b/img/misc/normal/pool_night.gif index b00c8a87faddaf571788b62636bd311b586955d7..280e4878035485e03ac682e161602ffba49183ae 100644 Binary files a/img/misc/normal/pool_night.gif and b/img/misc/normal/pool_night.gif differ diff --git a/img/misc/normal/prison_bloodmoon.gif b/img/misc/normal/prison_bloodmoon.gif index d3fac9b4fa919b548b18a493004a9d14d5bad3dc..062f33fb5165da7bca5ee2184d0990dde4a7b213 100644 Binary files a/img/misc/normal/prison_bloodmoon.gif and b/img/misc/normal/prison_bloodmoon.gif differ diff --git a/img/misc/normal/prison_dawn.gif b/img/misc/normal/prison_dawn.gif index 227559c6901342f93cbe847f4e3edfdb0382aa6e..4a9c0a6f5bf5795cb1efeae2c68c76c563c80504 100644 Binary files a/img/misc/normal/prison_dawn.gif and b/img/misc/normal/prison_dawn.gif differ diff --git a/img/misc/normal/prison_day.gif b/img/misc/normal/prison_day.gif index 9297080438317b4418996e47cb45aa7976e9ed79..4e912817454d2115f489ceb14b8d01e5b15da906 100644 Binary files a/img/misc/normal/prison_day.gif and b/img/misc/normal/prison_day.gif differ diff --git a/img/misc/normal/prison_dusk.gif b/img/misc/normal/prison_dusk.gif index 7633349b4e23a3f1c0f169e726fdfe8c68520042..0caade997f1bd6fd54bb55dc91b53630a96d6225 100644 Binary files a/img/misc/normal/prison_dusk.gif and b/img/misc/normal/prison_dusk.gif differ diff --git a/img/misc/normal/prison_night.gif b/img/misc/normal/prison_night.gif index ad32ab1b83f3f30e7e49af3a4235b4bb55cef332..20d3c3515db54591e4931a6ab142bfaa7ff26d38 100644 Binary files a/img/misc/normal/prison_night.gif and b/img/misc/normal/prison_night.gif differ diff --git a/img/misc/normal/promenade_beach_dawn.gif b/img/misc/normal/promenade_beach_dawn.gif index 01dc6759b7f18f5b4850d26e9318ffc5b6d05475..d78d5c80922b36da0aada47074ef88894163c879 100644 Binary files a/img/misc/normal/promenade_beach_dawn.gif and b/img/misc/normal/promenade_beach_dawn.gif differ diff --git a/img/misc/normal/promenade_beach_day.gif b/img/misc/normal/promenade_beach_day.gif index 6a89763e9305c698046b78d011d7c0a30d8e8797..d5e46097d7ed18a93ad4ce55c05aa06789274a3b 100644 Binary files a/img/misc/normal/promenade_beach_day.gif and b/img/misc/normal/promenade_beach_day.gif differ diff --git a/img/misc/normal/promenade_beach_dusk.gif b/img/misc/normal/promenade_beach_dusk.gif index 95e2a129232c33d2ce4e610b0ff4e195e83c780b..54a50fe25a419c7d36f9910da7f8f1566b926442 100644 Binary files a/img/misc/normal/promenade_beach_dusk.gif and b/img/misc/normal/promenade_beach_dusk.gif differ diff --git a/img/misc/normal/promenade_beach_night.gif b/img/misc/normal/promenade_beach_night.gif index 7099bb3503e564e4809cd6aff31cac3304ca737d..fb58c29e8a882b808c2184337d2cc82b528895ae 100644 Binary files a/img/misc/normal/promenade_beach_night.gif and b/img/misc/normal/promenade_beach_night.gif differ diff --git a/img/misc/normal/pub_dawn.png b/img/misc/normal/pub_dawn.png index bd0b414a36651190776f6894b0447bde221dc022..3c735495ff492ef67bc55e07983d0b68ed310e07 100644 Binary files a/img/misc/normal/pub_dawn.png and b/img/misc/normal/pub_dawn.png differ diff --git a/img/misc/normal/pub_day.png b/img/misc/normal/pub_day.png index 0586ee1459fd4a0db61a556d746a5e89e4f127e9..6265b5cff05bbb61541591910dc67abcee17bbe7 100644 Binary files a/img/misc/normal/pub_day.png and b/img/misc/normal/pub_day.png differ diff --git a/img/misc/normal/pub_dusk.png b/img/misc/normal/pub_dusk.png index 0b417f2fa63c51f8670605c0aa54ded9e46249ee..6265b5cff05bbb61541591910dc67abcee17bbe7 100644 Binary files a/img/misc/normal/pub_dusk.png and b/img/misc/normal/pub_dusk.png differ diff --git a/img/misc/normal/pub_night.png b/img/misc/normal/pub_night.png index 568a9a2b4e4db764a8a020d3f116cfa512374090..2dc5916b0108058f5e06b3817c1015ebdfb8fec8 100644 Binary files a/img/misc/normal/pub_night.png and b/img/misc/normal/pub_night.png differ diff --git a/img/misc/normal/remy_farm_dawn.png b/img/misc/normal/remy_farm_dawn.png index b1ed2da65b9c432aca270b2c1421367c83798d7e..febb629f14bbac9fc4d9e4187c580ab3bf457a46 100644 Binary files a/img/misc/normal/remy_farm_dawn.png and b/img/misc/normal/remy_farm_dawn.png differ diff --git a/img/misc/normal/remy_farm_day.png b/img/misc/normal/remy_farm_day.png index 4649848f17c1b2d891776c5d3498fa2dd17e748d..f267204ee4ca36106da48e3e3d95634259e5d571 100644 Binary files a/img/misc/normal/remy_farm_day.png and b/img/misc/normal/remy_farm_day.png differ diff --git a/img/misc/normal/remy_farm_dusk.png b/img/misc/normal/remy_farm_dusk.png index b5a3adb052679ed4079ccfe3ee7627e4ee9cb5bd..335c8b738fd3ab1aa09e957a8984d162db3974ea 100644 Binary files a/img/misc/normal/remy_farm_dusk.png and b/img/misc/normal/remy_farm_dusk.png differ diff --git a/img/misc/normal/remy_farm_night.png b/img/misc/normal/remy_farm_night.png index 4cb8f1cd6e192b130fbe9060c935c0f8cc97a58f..43be81b06496037f4b87230b3b499ce83a3cf158 100644 Binary files a/img/misc/normal/remy_farm_night.png and b/img/misc/normal/remy_farm_night.png differ diff --git a/img/misc/normal/resi_alley_bloodmoon.gif b/img/misc/normal/resi_alley_bloodmoon.gif index 31bad0ba2a91427dd2856cc6e7287bfba1873d4b..a8b64df5791dcc0378ba1d5a42e3dd63402cb2f5 100644 Binary files a/img/misc/normal/resi_alley_bloodmoon.gif and b/img/misc/normal/resi_alley_bloodmoon.gif differ diff --git a/img/misc/normal/resi_alley_dawn.gif b/img/misc/normal/resi_alley_dawn.gif index 832207647b87dc0880ba654d1a65a0259b399842..77a653c70d37ea0c6d6c51a93eb8cd912cc6722a 100644 Binary files a/img/misc/normal/resi_alley_dawn.gif and b/img/misc/normal/resi_alley_dawn.gif differ diff --git a/img/misc/normal/resi_alley_day.gif b/img/misc/normal/resi_alley_day.gif index 46d6f6b62e8ebef01f4f09798c0fc3afa70bcb1f..9f722b7357e61c3c23ba11137daca8b648978a57 100644 Binary files a/img/misc/normal/resi_alley_day.gif and b/img/misc/normal/resi_alley_day.gif differ diff --git a/img/misc/normal/resi_alley_dusk.gif b/img/misc/normal/resi_alley_dusk.gif index f0a6baefb2a48671c700a65c0f998609843678e3..a3a7c42f35120813a9ae5237f9b3593d2b7b6615 100644 Binary files a/img/misc/normal/resi_alley_dusk.gif and b/img/misc/normal/resi_alley_dusk.gif differ diff --git a/img/misc/normal/resi_alley_night.gif b/img/misc/normal/resi_alley_night.gif index cb7f1aa8bbfcb6ff95b7c05bb1dcc575ab8a98a3..90e9dad64115e86793ff61fe94fb36511411d095 100644 Binary files a/img/misc/normal/resi_alley_night.gif and b/img/misc/normal/resi_alley_night.gif differ diff --git a/img/misc/normal/riding_school_dawn.gif b/img/misc/normal/riding_school_dawn.gif index 2a9429852fc704fceedd7b3c7e7d9014a2e5753d..d45952dbf67f9c350862bb965102e21781dbf55f 100644 Binary files a/img/misc/normal/riding_school_dawn.gif and b/img/misc/normal/riding_school_dawn.gif differ diff --git a/img/misc/normal/riding_school_day.gif b/img/misc/normal/riding_school_day.gif index 3cc3d3b8628f35c3507a35f8e693fed6560cfb77..cbb817eb0ac85e906b8524c2b5cb23ff1a430fd5 100644 Binary files a/img/misc/normal/riding_school_day.gif and b/img/misc/normal/riding_school_day.gif differ diff --git a/img/misc/normal/riding_school_dusk.gif b/img/misc/normal/riding_school_dusk.gif index fab4f91032e7a494ee3a2551e77f8109852e72a6..c7bed626e16f3f245adc47b01ca0addaef3455db 100644 Binary files a/img/misc/normal/riding_school_dusk.gif and b/img/misc/normal/riding_school_dusk.gif differ diff --git a/img/misc/normal/riding_school_night.gif b/img/misc/normal/riding_school_night.gif index 586ba5e964aafeddb8636b447f65e1b7a2afcb57..a7dfd681b405c3e1fc2f6dfbc53a8da5d7160127 100644 Binary files a/img/misc/normal/riding_school_night.gif and b/img/misc/normal/riding_school_night.gif differ diff --git a/img/misc/normal/ruins_bloodmoon.gif b/img/misc/normal/ruins_bloodmoon.gif index 9284d0b23b055f533efd3dd37239860b12c74e05..2588378f01b514ca6cedde8b6c7060531530c0b9 100644 Binary files a/img/misc/normal/ruins_bloodmoon.gif and b/img/misc/normal/ruins_bloodmoon.gif differ diff --git a/img/misc/normal/ruins_dawn.gif b/img/misc/normal/ruins_dawn.gif index 6374a92f19943b1e8c8ad04f714f5580832007c2..aac17988d0d76cecaaca74d29537b5efef4d3fea 100644 Binary files a/img/misc/normal/ruins_dawn.gif and b/img/misc/normal/ruins_dawn.gif differ diff --git a/img/misc/normal/ruins_day.gif b/img/misc/normal/ruins_day.gif index e8a8527245fa164a57aa7364d136e23c65e57b6e..adb3b8a65318fcc5633f0b9b7eabb1206e8076f7 100644 Binary files a/img/misc/normal/ruins_day.gif and b/img/misc/normal/ruins_day.gif differ diff --git a/img/misc/normal/ruins_dusk.gif b/img/misc/normal/ruins_dusk.gif index ef5381871fdbfe5597cb0d26e2c62c0f783b856f..f8b264445ac46bd29d2b6210a3c4fc0b4ab096ae 100644 Binary files a/img/misc/normal/ruins_dusk.gif and b/img/misc/normal/ruins_dusk.gif differ diff --git a/img/misc/normal/ruins_night.gif b/img/misc/normal/ruins_night.gif index 6ae123c45ab6315c313e3f47400c9495803ee312..164e9d45a69eca8aebd7e50b94439e38313eb55a 100644 Binary files a/img/misc/normal/ruins_night.gif and b/img/misc/normal/ruins_night.gif differ diff --git a/img/misc/normal/school_dawn.png b/img/misc/normal/school_dawn.png index ecd6056ba88c3e799aa11ae5ccf8938e3be945ef..995e08a1c257aab8826fa529b1aaecbff5d955d7 100644 Binary files a/img/misc/normal/school_dawn.png and b/img/misc/normal/school_dawn.png differ diff --git a/img/misc/normal/school_day.png b/img/misc/normal/school_day.png index 4f6cfaf019a9684c2483437bfad4b24a7b19d253..2cbde52d8db68765a1026a97592fba16b753e6d6 100644 Binary files a/img/misc/normal/school_day.png and b/img/misc/normal/school_day.png differ diff --git a/img/misc/normal/school_dusk.png b/img/misc/normal/school_dusk.png index 24b7218aff9a637b22aabda3d9a46b12672547d7..2cbde52d8db68765a1026a97592fba16b753e6d6 100644 Binary files a/img/misc/normal/school_dusk.png and b/img/misc/normal/school_dusk.png differ diff --git a/img/misc/normal/school_night.png b/img/misc/normal/school_night.png index ec472aa18b9de97badebde6f81c0f7c421a044c3..95ce79a0b9ba4c69890ac352c162aaef542ee43d 100644 Binary files a/img/misc/normal/school_night.png and b/img/misc/normal/school_night.png differ diff --git a/img/misc/normal/sepulchre_dawn.png b/img/misc/normal/sepulchre_dawn.png index f2a9d45d01aef964f2a0953c3d4c431b763fcb0f..a5e0c0e22b61a7f3d6d69e8606b8efd5d4a00d5a 100644 Binary files a/img/misc/normal/sepulchre_dawn.png and b/img/misc/normal/sepulchre_dawn.png differ diff --git a/img/misc/normal/sepulchre_day.png b/img/misc/normal/sepulchre_day.png index f780f26edb9c21fd89b1fada3ea973c916cddbbb..9c93a5e1ed148a5059f96d1b761b7fb57ff49f96 100644 Binary files a/img/misc/normal/sepulchre_day.png and b/img/misc/normal/sepulchre_day.png differ diff --git a/img/misc/normal/sepulchre_dusk.png b/img/misc/normal/sepulchre_dusk.png index e59a6f8e18734123dda5c9e3e653f6b0194e4feb..3c4ab50eac32737145a09e65de4a7fa41bc98d1e 100644 Binary files a/img/misc/normal/sepulchre_dusk.png and b/img/misc/normal/sepulchre_dusk.png differ diff --git a/img/misc/normal/sepulchre_night.png b/img/misc/normal/sepulchre_night.png index f40c61a94d7adba6469bf6deb578ac39d9e10a91..6bfbf316ca818feceb36e7ab7e14c73881149af6 100644 Binary files a/img/misc/normal/sepulchre_night.png and b/img/misc/normal/sepulchre_night.png differ diff --git a/img/misc/normal/sewers_dawn.gif b/img/misc/normal/sewers_dawn.gif index 2fac34bbfb254ab8020892f836718cc95332b27b..e41fa706f09f58ae21563c8eb54230af01ac3851 100644 Binary files a/img/misc/normal/sewers_dawn.gif and b/img/misc/normal/sewers_dawn.gif differ diff --git a/img/misc/normal/sewers_day.gif b/img/misc/normal/sewers_day.gif index 9bef5824f35837cd95d4544ef65da9ebcdde4d8f..e41fa706f09f58ae21563c8eb54230af01ac3851 100644 Binary files a/img/misc/normal/sewers_day.gif and b/img/misc/normal/sewers_day.gif differ diff --git a/img/misc/normal/sewers_dusk.gif b/img/misc/normal/sewers_dusk.gif index 5ace9df80a3da398f5fd6b9e35ba8103813dc7b2..e41fa706f09f58ae21563c8eb54230af01ac3851 100644 Binary files a/img/misc/normal/sewers_dusk.gif and b/img/misc/normal/sewers_dusk.gif differ diff --git a/img/misc/normal/sewers_night.gif b/img/misc/normal/sewers_night.gif index 82099314b8d5c545733d1e3ac20520dc6e9b2b1d..e41fa706f09f58ae21563c8eb54230af01ac3851 100644 Binary files a/img/misc/normal/sewers_night.gif and b/img/misc/normal/sewers_night.gif differ diff --git a/img/misc/normal/sex_shop_dawn.png b/img/misc/normal/sex_shop_dawn.png index 87ea4a34ce3ee03e9201865ba6724ffd5cb892ba..b691e477c2907aa5b4fcc15c3a5332dd4b3c4c84 100644 Binary files a/img/misc/normal/sex_shop_dawn.png and b/img/misc/normal/sex_shop_dawn.png differ diff --git a/img/misc/normal/sex_shop_day.png b/img/misc/normal/sex_shop_day.png index 7ac2e24e70dc0475f8712be8f8d7f1d2a9c32419..1b15578a2dfbc5015ad135d576d9b2d4654c4460 100644 Binary files a/img/misc/normal/sex_shop_day.png and b/img/misc/normal/sex_shop_day.png differ diff --git a/img/misc/normal/sex_shop_day_open.gif b/img/misc/normal/sex_shop_day_open.gif index ac53dfec00b2bd975c3f72a5f1015d59f7cc4885..ef74a94c845f1659934c2a115f3371089dd828ac 100644 Binary files a/img/misc/normal/sex_shop_day_open.gif and b/img/misc/normal/sex_shop_day_open.gif differ diff --git a/img/misc/normal/sex_shop_dusk.gif b/img/misc/normal/sex_shop_dusk.gif index 5d3d1eb8093f45fbc65728c81c827ff7f28f93a6..f7c68a7e6e6e1ce08e1982c57c4dba10f0020784 100644 Binary files a/img/misc/normal/sex_shop_dusk.gif and b/img/misc/normal/sex_shop_dusk.gif differ diff --git a/img/misc/normal/sex_shop_night.gif b/img/misc/normal/sex_shop_night.gif index 88cd72e5c2455ba7739d43b146df289b1249b44b..970aa1083ae29b9c06fc3756886241841c5ae42f 100644 Binary files a/img/misc/normal/sex_shop_night.gif and b/img/misc/normal/sex_shop_night.gif differ diff --git a/img/misc/normal/shopping_centre_dawn.png b/img/misc/normal/shopping_centre_dawn.png index e557c8e8a2ba64863d256144169af9e57b6d8457..6a57e7ef3a3ee4bd4ca8de9ff8a2bc2d27ae29af 100644 Binary files a/img/misc/normal/shopping_centre_dawn.png and b/img/misc/normal/shopping_centre_dawn.png differ diff --git a/img/misc/normal/shopping_centre_day.png b/img/misc/normal/shopping_centre_day.png index d719be906728741360a1ebb690c9d25879d20f5a..3b2af9c834dcd9dc4a35d23e7f4d0400e788fa51 100644 Binary files a/img/misc/normal/shopping_centre_day.png and b/img/misc/normal/shopping_centre_day.png differ diff --git a/img/misc/normal/shopping_centre_dusk.png b/img/misc/normal/shopping_centre_dusk.png index 9134829890210317723020320628db4423bdd4bb..ef4f8d2b44dc6f21857a8586a18311b15a61b67c 100644 Binary files a/img/misc/normal/shopping_centre_dusk.png and b/img/misc/normal/shopping_centre_dusk.png differ diff --git a/img/misc/normal/shopping_centre_night.png b/img/misc/normal/shopping_centre_night.png index c4a119647fad7c1420a155f9b1634fccf3eda5d8..c75202a9c88dac4e2d8f6eb9f3477ae6b6e2bc48 100644 Binary files a/img/misc/normal/shopping_centre_night.png and b/img/misc/normal/shopping_centre_night.png differ diff --git a/img/misc/normal/spa_dawn.gif b/img/misc/normal/spa_dawn.gif index da52a5d312a941a9db2a5574cfa36b82d73495f2..98cdc54d114b03773f7b764a85244c8f29856ccc 100644 Binary files a/img/misc/normal/spa_dawn.gif and b/img/misc/normal/spa_dawn.gif differ diff --git a/img/misc/normal/spa_day.gif b/img/misc/normal/spa_day.gif index 17958dd1a2d897fc07a32d5a11d5d2558c781257..2db1592345f8791c69e039e98780821812a09673 100644 Binary files a/img/misc/normal/spa_day.gif and b/img/misc/normal/spa_day.gif differ diff --git a/img/misc/normal/spa_dusk.gif b/img/misc/normal/spa_dusk.gif index 1d5e744746dcfda2feeaef5dafb3e4e52cc49a9c..03bd3b1042621756c00117f67fb3704393e242e3 100644 Binary files a/img/misc/normal/spa_dusk.gif and b/img/misc/normal/spa_dusk.gif differ diff --git a/img/misc/normal/spa_night.gif b/img/misc/normal/spa_night.gif index 28b7d9bf27101614e7fa44cc0971df522a6df41f..b39d936d3a1821d759bf4f457c11ba56781f388b 100644 Binary files a/img/misc/normal/spa_night.gif and b/img/misc/normal/spa_night.gif differ diff --git a/img/misc/normal/strip_club_dawn.png b/img/misc/normal/strip_club_dawn.png index 48cbec469cebf219ce89a2ad730a88bfffb1e391..1398847c9374dc01e154212776b7afefde14fc43 100644 Binary files a/img/misc/normal/strip_club_dawn.png and b/img/misc/normal/strip_club_dawn.png differ diff --git a/img/misc/normal/strip_club_day.png b/img/misc/normal/strip_club_day.png index 2597f06d7ad0c3e496e15b57323b33163bac7622..1398847c9374dc01e154212776b7afefde14fc43 100644 Binary files a/img/misc/normal/strip_club_day.png and b/img/misc/normal/strip_club_day.png differ diff --git a/img/misc/normal/strip_club_dusk.png b/img/misc/normal/strip_club_dusk.png index 847778c735b14228a29bb78fb0ec2e4c28fefdd2..1398847c9374dc01e154212776b7afefde14fc43 100644 Binary files a/img/misc/normal/strip_club_dusk.png and b/img/misc/normal/strip_club_dusk.png differ diff --git a/img/misc/normal/strip_club_night.png b/img/misc/normal/strip_club_night.png index f7b2dc4f17a1db607c2bec66e61201721dc24435..4b0310bb1bc0189c3e968b635f99955c13754476 100644 Binary files a/img/misc/normal/strip_club_night.png and b/img/misc/normal/strip_club_night.png differ diff --git a/img/misc/normal/temple_dawn.png b/img/misc/normal/temple_dawn.png index 7879425673582d9af813a68db3a890e7c3f6b2e4..af9ec5596cc96342e803526e51a165c3e21862b6 100644 Binary files a/img/misc/normal/temple_dawn.png and b/img/misc/normal/temple_dawn.png differ diff --git a/img/misc/normal/temple_dawn_old.png b/img/misc/normal/temple_dawn_old.png index db280cc6b20b54dcf145212df5a74ece0c7e99a4..32c38a7f221dab6e0d9510c8f9166cf450d0557a 100644 Binary files a/img/misc/normal/temple_dawn_old.png and b/img/misc/normal/temple_dawn_old.png differ diff --git a/img/misc/normal/temple_day.png b/img/misc/normal/temple_day.png index fae49314b14aa7ba5d1a4893feab77f9f46f5c84..74715d8d55b44a52fbbab6285401568c6a618bd7 100644 Binary files a/img/misc/normal/temple_day.png and b/img/misc/normal/temple_day.png differ diff --git a/img/misc/normal/temple_day_old.png b/img/misc/normal/temple_day_old.png index 0577f2a729179875b2225e1c1911e3a61cc6ae7b..102e481f33ac4088a28768b9101ed71efa89b72c 100644 Binary files a/img/misc/normal/temple_day_old.png and b/img/misc/normal/temple_day_old.png differ diff --git a/img/misc/normal/temple_dusk.png b/img/misc/normal/temple_dusk.png index 5397f6453341f83fafa2879d6e428c6b2467070d..c7d20f6ac3aba76eda72a98c164a580a658d776c 100644 Binary files a/img/misc/normal/temple_dusk.png and b/img/misc/normal/temple_dusk.png differ diff --git a/img/misc/normal/temple_dusk_old.png b/img/misc/normal/temple_dusk_old.png index 9ef9e8e491ccb575eaee97aae2cd613093a9b7bf..102e481f33ac4088a28768b9101ed71efa89b72c 100644 Binary files a/img/misc/normal/temple_dusk_old.png and b/img/misc/normal/temple_dusk_old.png differ diff --git a/img/misc/normal/temple_night.png b/img/misc/normal/temple_night.png index 9bdf255926cb51026185c0df13396bd49b8dd447..f0e3c98e9e850bbe25b770386ed82a128c3cff18 100644 Binary files a/img/misc/normal/temple_night.png and b/img/misc/normal/temple_night.png differ diff --git a/img/misc/normal/temple_night_old.png b/img/misc/normal/temple_night_old.png index e10c1b29bdd512612acb5f72db0c0f8f16e7c89d..f0b94c8bd621f8915764582a552239ed61120aef 100644 Binary files a/img/misc/normal/temple_night_old.png and b/img/misc/normal/temple_night_old.png differ diff --git a/img/misc/normal/tentacles_dawn.gif b/img/misc/normal/tentacles_dawn.gif index 3b58edf3b4ee111525786a85141b66ad95bcecdc..72093832e3884f6c17ece5ead0b05aacd0395818 100644 Binary files a/img/misc/normal/tentacles_dawn.gif and b/img/misc/normal/tentacles_dawn.gif differ diff --git a/img/misc/normal/tentacles_day.gif b/img/misc/normal/tentacles_day.gif index eac8f1b94ea8c39c916efdfdd67892487102e81a..72093832e3884f6c17ece5ead0b05aacd0395818 100644 Binary files a/img/misc/normal/tentacles_day.gif and b/img/misc/normal/tentacles_day.gif differ diff --git a/img/misc/normal/tentacles_dusk.gif b/img/misc/normal/tentacles_dusk.gif index eb2c1067b16f1b8cce40e46b7266ac88aeaa2f98..72093832e3884f6c17ece5ead0b05aacd0395818 100644 Binary files a/img/misc/normal/tentacles_dusk.gif and b/img/misc/normal/tentacles_dusk.gif differ diff --git a/img/misc/normal/tentacles_night.gif b/img/misc/normal/tentacles_night.gif index 7c092f50d0108f591dfe0ebf8a86eb549f055da4..72093832e3884f6c17ece5ead0b05aacd0395818 100644 Binary files a/img/misc/normal/tentacles_night.gif and b/img/misc/normal/tentacles_night.gif differ diff --git a/img/misc/normal/tower_bloodmoon.gif b/img/misc/normal/tower_bloodmoon.gif index 4e13fd7b1f9be67fe6616e5e98a63ad2c3816920..d89e54b3f4b0eb4cd3410b97124eac9f12b9c495 100644 Binary files a/img/misc/normal/tower_bloodmoon.gif and b/img/misc/normal/tower_bloodmoon.gif differ diff --git a/img/misc/normal/tower_dawn.gif b/img/misc/normal/tower_dawn.gif index 554ad44010b0f644abbbdb8c3df826bb92a46bc9..c27f525a792b71e6d3bae18ebb2842774f54d0a9 100644 Binary files a/img/misc/normal/tower_dawn.gif and b/img/misc/normal/tower_dawn.gif differ diff --git a/img/misc/normal/tower_day.gif b/img/misc/normal/tower_day.gif index 35f3795d0e4e65f39d0a02303dc59856f0521825..c080340192447b3b2905c917447638374c9f1ff7 100644 Binary files a/img/misc/normal/tower_day.gif and b/img/misc/normal/tower_day.gif differ diff --git a/img/misc/normal/tower_dusk.gif b/img/misc/normal/tower_dusk.gif index 1bae28932a5762eaa16df18180ffc9934da7f43e..852b56091cf3fc1fd17c668b7d7cbbf789123f17 100644 Binary files a/img/misc/normal/tower_dusk.gif and b/img/misc/normal/tower_dusk.gif differ diff --git a/img/misc/normal/tower_night.gif b/img/misc/normal/tower_night.gif index fa7cb9efd44aa93ffdf635348b64216f302f3a19..a6b63744ba5a896b58e49eb133ab4c91c5915781 100644 Binary files a/img/misc/normal/tower_night.gif and b/img/misc/normal/tower_night.gif differ diff --git a/img/misc/normal/town_dawn.gif b/img/misc/normal/town_dawn.gif index b7789c01da6b3b062242be8037eb4e29055d9573..1dfc5eeeae1a07dd31f0951f091bd803778088d3 100644 Binary files a/img/misc/normal/town_dawn.gif and b/img/misc/normal/town_dawn.gif differ diff --git a/img/misc/normal/town_day.gif b/img/misc/normal/town_day.gif index 55979f454f820ed8f91e740d35b1c05d5c2806fa..eec63f74f36a9f7403dd2d9f8f3dad494a335829 100644 Binary files a/img/misc/normal/town_day.gif and b/img/misc/normal/town_day.gif differ diff --git a/img/misc/normal/town_dusk.gif b/img/misc/normal/town_dusk.gif new file mode 100644 index 0000000000000000000000000000000000000000..5b751638b208c20f79acf2bc85bd51f8bfcd5134 Binary files /dev/null and b/img/misc/normal/town_dusk.gif differ diff --git a/img/misc/normal/town_dusk.png b/img/misc/normal/town_dusk.png deleted file mode 100644 index 3e147b761869825613b1f809e869f400568eab12..0000000000000000000000000000000000000000 Binary files a/img/misc/normal/town_dusk.png and /dev/null differ diff --git a/img/misc/normal/town_night.gif b/img/misc/normal/town_night.gif index d2f447226938ecffb2ae1b7c858010f0ed2399c9..0ee545fa633a695184346b3e4a9e4e55f6374ec0 100644 Binary files a/img/misc/normal/town_night.gif and b/img/misc/normal/town_night.gif differ diff --git a/img/misc/normal/underground_dawn.png b/img/misc/normal/underground_dawn.png index 7e7a3e21a960812bd0edf606b8c4e800d77cf978..709f60c28ef51a8bede8ab79fb40cb70433d2de9 100644 Binary files a/img/misc/normal/underground_dawn.png and b/img/misc/normal/underground_dawn.png differ diff --git a/img/misc/normal/underground_day.png b/img/misc/normal/underground_day.png index 28de71022db58df1deb3afde9426e8869268aedd..ecc4cd829b4ea9b896495bfc2db940711c450a09 100644 Binary files a/img/misc/normal/underground_day.png and b/img/misc/normal/underground_day.png differ diff --git a/img/misc/normal/underground_dusk.png b/img/misc/normal/underground_dusk.png index b2676841d0161dea6cff4ec5f265d5f94d2ea57d..49fc7823e87e81a3516f51c082ee1e0ab54e7cae 100644 Binary files a/img/misc/normal/underground_dusk.png and b/img/misc/normal/underground_dusk.png differ diff --git a/img/misc/normal/underground_night.png b/img/misc/normal/underground_night.png index f645ec852ebcaa5550b24fc92b913acae1c525ca..f0e1ed7ea8ddb0b647faedc4128ff18123637abc 100644 Binary files a/img/misc/normal/underground_night.png and b/img/misc/normal/underground_night.png differ diff --git a/img/misc/normal/wolf_cave_dawn.png b/img/misc/normal/wolf_cave_dawn.png index b76d7825b46d810a78611272bf38db77b2ee8e1f..d8783e59cfd0180c92fef40ce419be54c616a6bb 100644 Binary files a/img/misc/normal/wolf_cave_dawn.png and b/img/misc/normal/wolf_cave_dawn.png differ diff --git a/img/misc/normal/wolf_cave_day.png b/img/misc/normal/wolf_cave_day.png index 2a56d3f727968d2242bc6376487c6afb77e58679..870319d49c3a56ec1b538545134771a55d108e3a 100644 Binary files a/img/misc/normal/wolf_cave_day.png and b/img/misc/normal/wolf_cave_day.png differ diff --git a/img/misc/normal/wolf_cave_dusk.png b/img/misc/normal/wolf_cave_dusk.png index 3358e9312de198d7e539626d0625f84916f9ee8a..870319d49c3a56ec1b538545134771a55d108e3a 100644 Binary files a/img/misc/normal/wolf_cave_dusk.png and b/img/misc/normal/wolf_cave_dusk.png differ diff --git a/img/misc/normal/wolf_cave_night.png b/img/misc/normal/wolf_cave_night.png index 4244c4bf47635bbb99e4fc0e7db82cf341193ac5..587241d7ce2f3da066c381276067b6a3eb6ed6ba 100644 Binary files a/img/misc/normal/wolf_cave_night.png and b/img/misc/normal/wolf_cave_night.png differ diff --git a/img/misc/clear_dawn.png b/img/misc/old/clear_dawn.png similarity index 100% rename from img/misc/clear_dawn.png rename to img/misc/old/clear_dawn.png diff --git a/img/misc/clear_day.png b/img/misc/old/clear_day.png similarity index 100% rename from img/misc/clear_day.png rename to img/misc/old/clear_day.png diff --git a/img/misc/clear_dusk.png b/img/misc/old/clear_dusk.png similarity index 100% rename from img/misc/clear_dusk.png rename to img/misc/old/clear_dusk.png diff --git a/img/misc/clear_night.png b/img/misc/old/clear_night.png similarity index 100% rename from img/misc/clear_night.png rename to img/misc/old/clear_night.png diff --git a/img/misc/forest_day.png b/img/misc/old/forest_day.png similarity index 100% rename from img/misc/forest_day.png rename to img/misc/old/forest_day.png diff --git a/img/misc/forest_dusk.png b/img/misc/old/forest_dusk.png similarity index 100% rename from img/misc/forest_dusk.png rename to img/misc/old/forest_dusk.png diff --git a/img/misc/overcast.png b/img/misc/old/overcast.png similarity index 100% rename from img/misc/overcast.png rename to img/misc/old/overcast.png diff --git a/img/misc/normal/overcast_dawn.png b/img/misc/old/overcast_dawn.png similarity index 100% rename from img/misc/normal/overcast_dawn.png rename to img/misc/old/overcast_dawn.png diff --git a/img/misc/winter/overcast_dawn.png b/img/misc/old/overcast_dawn_winter.png similarity index 100% rename from img/misc/winter/overcast_dawn.png rename to img/misc/old/overcast_dawn_winter.png diff --git a/img/misc/normal/overcast_day.png b/img/misc/old/overcast_day.png similarity index 100% rename from img/misc/normal/overcast_day.png rename to img/misc/old/overcast_day.png diff --git a/img/misc/winter/overcast_day.png b/img/misc/old/overcast_day_winter.png similarity index 100% rename from img/misc/winter/overcast_day.png rename to img/misc/old/overcast_day_winter.png diff --git a/img/misc/normal/overcast_dusk.png b/img/misc/old/overcast_dusk.png similarity index 100% rename from img/misc/normal/overcast_dusk.png rename to img/misc/old/overcast_dusk.png diff --git a/img/misc/winter/overcast_dusk.png b/img/misc/old/overcast_dusk_winter.png similarity index 100% rename from img/misc/winter/overcast_dusk.png rename to img/misc/old/overcast_dusk_winter.png diff --git a/img/misc/normal/overcast_night.png b/img/misc/old/overcast_night.png similarity index 100% rename from img/misc/normal/overcast_night.png rename to img/misc/old/overcast_night.png diff --git a/img/misc/winter/overcast_night.png b/img/misc/old/overcast_night_winter.png similarity index 100% rename from img/misc/winter/overcast_night.png rename to img/misc/old/overcast_night_winter.png diff --git a/img/misc/rain.gif b/img/misc/old/rain.gif similarity index 100% rename from img/misc/rain.gif rename to img/misc/old/rain.gif diff --git a/img/misc/rain_dawn.gif b/img/misc/old/rain_dawn.gif similarity index 100% rename from img/misc/rain_dawn.gif rename to img/misc/old/rain_dawn.gif diff --git a/img/misc/rain_day.gif b/img/misc/old/rain_day.gif similarity index 100% rename from img/misc/rain_day.gif rename to img/misc/old/rain_day.gif diff --git a/img/misc/rain_dusk.gif b/img/misc/old/rain_dusk.gif similarity index 100% rename from img/misc/rain_dusk.gif rename to img/misc/old/rain_dusk.gif diff --git a/img/misc/rain_night.gif b/img/misc/old/rain_night.gif similarity index 100% rename from img/misc/rain_night.gif rename to img/misc/old/rain_night.gif diff --git a/img/misc/sky_bloodmoon.png b/img/misc/old/sky_bloodmoon.png similarity index 100% rename from img/misc/sky_bloodmoon.png rename to img/misc/old/sky_bloodmoon.png diff --git a/img/misc/sky_clear.png b/img/misc/old/sky_clear.png similarity index 100% rename from img/misc/sky_clear.png rename to img/misc/old/sky_clear.png diff --git a/img/misc/sky_dawn.png b/img/misc/old/sky_dawn.png similarity index 100% rename from img/misc/sky_dawn.png rename to img/misc/old/sky_dawn.png diff --git a/img/misc/sky_day.png b/img/misc/old/sky_day.png similarity index 100% rename from img/misc/sky_day.png rename to img/misc/old/sky_day.png diff --git a/img/misc/sky_dusk.png b/img/misc/old/sky_dusk.png similarity index 100% rename from img/misc/sky_dusk.png rename to img/misc/old/sky_dusk.png diff --git a/img/misc/sky_night.png b/img/misc/old/sky_night.png similarity index 100% rename from img/misc/sky_night.png rename to img/misc/old/sky_night.png diff --git a/img/misc/winter/snow_dawn.gif b/img/misc/old/snow_dawn.gif similarity index 100% rename from img/misc/winter/snow_dawn.gif rename to img/misc/old/snow_dawn.gif diff --git a/img/misc/winter/snow_day.gif b/img/misc/old/snow_day.gif similarity index 100% rename from img/misc/winter/snow_day.gif rename to img/misc/old/snow_day.gif diff --git a/img/misc/winter/snow_dusk.gif b/img/misc/old/snow_dusk.gif similarity index 100% rename from img/misc/winter/snow_dusk.gif rename to img/misc/old/snow_dusk.gif diff --git a/img/misc/winter/snow_night.gif b/img/misc/old/snow_night.gif similarity index 100% rename from img/misc/winter/snow_night.gif rename to img/misc/old/snow_night.gif diff --git a/img/misc/tentsky_dawn.png b/img/misc/old/tentsky_dawn.png similarity index 100% rename from img/misc/tentsky_dawn.png rename to img/misc/old/tentsky_dawn.png diff --git a/img/misc/tentsky_day.png b/img/misc/old/tentsky_day.png similarity index 100% rename from img/misc/tentsky_day.png rename to img/misc/old/tentsky_day.png diff --git a/img/misc/tentsky_dusk.png b/img/misc/old/tentsky_dusk.png similarity index 100% rename from img/misc/tentsky_dusk.png rename to img/misc/old/tentsky_dusk.png diff --git a/img/misc/tentsky_night.png b/img/misc/old/tentsky_night.png similarity index 100% rename from img/misc/tentsky_night.png rename to img/misc/old/tentsky_night.png diff --git a/img/misc/tentworld_dawn.gif b/img/misc/old/tentworld_dawn.gif similarity index 100% rename from img/misc/tentworld_dawn.gif rename to img/misc/old/tentworld_dawn.gif diff --git a/img/misc/tentworld_day.gif b/img/misc/old/tentworld_day.gif similarity index 100% rename from img/misc/tentworld_day.gif rename to img/misc/old/tentworld_day.gif diff --git a/img/misc/tentworld_dusk.gif b/img/misc/old/tentworld_dusk.gif similarity index 100% rename from img/misc/tentworld_dusk.gif rename to img/misc/old/tentworld_dusk.gif diff --git a/img/misc/tentworld_night.gif b/img/misc/old/tentworld_night.gif similarity index 100% rename from img/misc/tentworld_night.gif rename to img/misc/old/tentworld_night.gif diff --git a/img/misc/underground.png b/img/misc/old/underground.png similarity index 100% rename from img/misc/underground.png rename to img/misc/old/underground.png diff --git a/img/misc/old/world_map.png b/img/misc/old/world_map.png new file mode 100644 index 0000000000000000000000000000000000000000..14db86d1aece37cf32c827cad4826dd9534bd525 Binary files /dev/null and b/img/misc/old/world_map.png differ diff --git a/img/misc/old/world_map_winter.png b/img/misc/old/world_map_winter.png new file mode 100644 index 0000000000000000000000000000000000000000..48bd4d45a57ddd551c0e4418edcef8c329ee1504 Binary files /dev/null and b/img/misc/old/world_map_winter.png differ diff --git a/img/misc/sky/moon_bloodmoon.png b/img/misc/sky/moon_bloodmoon.png new file mode 100644 index 0000000000000000000000000000000000000000..e2ff434751b6680b5223a59b337bdb05e5922ed9 Binary files /dev/null and b/img/misc/sky/moon_bloodmoon.png differ diff --git a/img/misc/sky/moon_dawn.png b/img/misc/sky/moon_dawn.png new file mode 100644 index 0000000000000000000000000000000000000000..e2f968437fb6339c0a1307c1e48695e6e80b3fe9 Binary files /dev/null and b/img/misc/sky/moon_dawn.png differ diff --git a/img/misc/sky/moon_day.png b/img/misc/sky/moon_day.png new file mode 100644 index 0000000000000000000000000000000000000000..348e9aa78f684be5577c3923bcf9f13adf4da52e Binary files /dev/null and b/img/misc/sky/moon_day.png differ diff --git a/img/misc/sky/moon_dusk.png b/img/misc/sky/moon_dusk.png new file mode 100644 index 0000000000000000000000000000000000000000..b80cbcf1aa84e38927816bb6cdaac2dd07c4c164 Binary files /dev/null and b/img/misc/sky/moon_dusk.png differ diff --git a/img/misc/sky/moon_night.png b/img/misc/sky/moon_night.png new file mode 100644 index 0000000000000000000000000000000000000000..ca859dc6d73b354496d2c6af8f0834c5775c1db3 Binary files /dev/null and b/img/misc/sky/moon_night.png differ diff --git a/img/misc/sky/overcast_dawn.png b/img/misc/sky/overcast_dawn.png new file mode 100644 index 0000000000000000000000000000000000000000..3febd6f38bbdc62ee9da55564bd6426e0506bde3 Binary files /dev/null and b/img/misc/sky/overcast_dawn.png differ diff --git a/img/misc/sky/overcast_dawn_winter.png b/img/misc/sky/overcast_dawn_winter.png new file mode 100644 index 0000000000000000000000000000000000000000..5fa3c4fd92f2fc986962368c7b378b7d81a97ed5 Binary files /dev/null and b/img/misc/sky/overcast_dawn_winter.png differ diff --git a/img/misc/sky/overcast_day.png b/img/misc/sky/overcast_day.png new file mode 100644 index 0000000000000000000000000000000000000000..3febd6f38bbdc62ee9da55564bd6426e0506bde3 Binary files /dev/null and b/img/misc/sky/overcast_day.png differ diff --git a/img/misc/sky/overcast_day_winter.png b/img/misc/sky/overcast_day_winter.png new file mode 100644 index 0000000000000000000000000000000000000000..59b387a2f43a33cf309d32b38ac143d6d4ed0810 Binary files /dev/null and b/img/misc/sky/overcast_day_winter.png differ diff --git a/img/misc/sky/overcast_dusk.png b/img/misc/sky/overcast_dusk.png new file mode 100644 index 0000000000000000000000000000000000000000..3febd6f38bbdc62ee9da55564bd6426e0506bde3 Binary files /dev/null and b/img/misc/sky/overcast_dusk.png differ diff --git a/img/misc/sky/overcast_dusk_winter.png b/img/misc/sky/overcast_dusk_winter.png new file mode 100644 index 0000000000000000000000000000000000000000..59b387a2f43a33cf309d32b38ac143d6d4ed0810 Binary files /dev/null and b/img/misc/sky/overcast_dusk_winter.png differ diff --git a/img/misc/sky/overcast_night.png b/img/misc/sky/overcast_night.png new file mode 100644 index 0000000000000000000000000000000000000000..a251e181f59910683369f0fc4ed40598b7b90299 Binary files /dev/null and b/img/misc/sky/overcast_night.png differ diff --git a/img/misc/sky/overcast_night_winter.png b/img/misc/sky/overcast_night_winter.png new file mode 100644 index 0000000000000000000000000000000000000000..2608ee17b1eada7c3b2cd1add02c4ba56748dd15 Binary files /dev/null and b/img/misc/sky/overcast_night_winter.png differ diff --git a/img/misc/sky/rain_dawn.gif b/img/misc/sky/rain_dawn.gif new file mode 100644 index 0000000000000000000000000000000000000000..a0c4e73ebbb3e9ecf75417b6f3d891a861369fca Binary files /dev/null and b/img/misc/sky/rain_dawn.gif differ diff --git a/img/misc/sky/rain_day.gif b/img/misc/sky/rain_day.gif new file mode 100644 index 0000000000000000000000000000000000000000..a0c4e73ebbb3e9ecf75417b6f3d891a861369fca Binary files /dev/null and b/img/misc/sky/rain_day.gif differ diff --git a/img/misc/sky/rain_dusk.gif b/img/misc/sky/rain_dusk.gif new file mode 100644 index 0000000000000000000000000000000000000000..a0c4e73ebbb3e9ecf75417b6f3d891a861369fca Binary files /dev/null and b/img/misc/sky/rain_dusk.gif differ diff --git a/img/misc/sky/rain_night.gif b/img/misc/sky/rain_night.gif new file mode 100644 index 0000000000000000000000000000000000000000..d5322eb1e31192c516fe5521fc0a60f6a4466b1b Binary files /dev/null and b/img/misc/sky/rain_night.gif differ diff --git a/img/misc/sky/snow_dawn.gif b/img/misc/sky/snow_dawn.gif new file mode 100644 index 0000000000000000000000000000000000000000..3f9a487b0f4859a5fe13d1a02ffc3d67f42c0b33 Binary files /dev/null and b/img/misc/sky/snow_dawn.gif differ diff --git a/img/misc/sky/snow_day.gif b/img/misc/sky/snow_day.gif new file mode 100644 index 0000000000000000000000000000000000000000..c4c9898cdc00c2a822ca1a92c38dede9df2fa064 Binary files /dev/null and b/img/misc/sky/snow_day.gif differ diff --git a/img/misc/sky/snow_dusk.gif b/img/misc/sky/snow_dusk.gif new file mode 100644 index 0000000000000000000000000000000000000000..0e20ac6aa67f0b45b142d1302c24dc43b8008793 Binary files /dev/null and b/img/misc/sky/snow_dusk.gif differ diff --git a/img/misc/sky/snow_night.gif b/img/misc/sky/snow_night.gif new file mode 100644 index 0000000000000000000000000000000000000000..ed9ccfd3f287124f672768055aaf1c2ba19680c4 Binary files /dev/null and b/img/misc/sky/snow_night.gif differ diff --git a/img/misc/sky/sun_dawn.png b/img/misc/sky/sun_dawn.png new file mode 100644 index 0000000000000000000000000000000000000000..703a8f4f517967c732c4c0e14636193d25f804c2 Binary files /dev/null and b/img/misc/sky/sun_dawn.png differ diff --git a/img/misc/sky/sun_day.png b/img/misc/sky/sun_day.png new file mode 100644 index 0000000000000000000000000000000000000000..8927f7502d4a88c3fbbed3fb82c2249836c44532 Binary files /dev/null and b/img/misc/sky/sun_day.png differ diff --git a/img/misc/sky/sun_dusk.png b/img/misc/sky/sun_dusk.png new file mode 100644 index 0000000000000000000000000000000000000000..9538300189e0fcc25bbbf1f1e7ff4c41a584ce7a Binary files /dev/null and b/img/misc/sky/sun_dusk.png differ diff --git a/img/misc/sky/sun_night.png b/img/misc/sky/sun_night.png new file mode 100644 index 0000000000000000000000000000000000000000..348e9aa78f684be5577c3923bcf9f13adf4da52e Binary files /dev/null and b/img/misc/sky/sun_night.png differ diff --git a/img/misc/winter/alex_cottage_dawn.png b/img/misc/winter/alex_cottage_dawn.png index bc4d452937ddf520b20c4780f8164d1047087d35..c864f9e3e3cf1cc620e87d8dd66dcfc87abb3bd8 100644 Binary files a/img/misc/winter/alex_cottage_dawn.png and b/img/misc/winter/alex_cottage_dawn.png differ diff --git a/img/misc/winter/alex_cottage_day.png b/img/misc/winter/alex_cottage_day.png index 0b259874d51fad4f870212033107ee6330740c60..0e49e9b04776f21f810f7a5795be5250ac73f25d 100644 Binary files a/img/misc/winter/alex_cottage_day.png and b/img/misc/winter/alex_cottage_day.png differ diff --git a/img/misc/winter/alex_cottage_dusk.png b/img/misc/winter/alex_cottage_dusk.png index a517d80a907715f857f75b96f9425e5af092ed75..38361a891db26b83c47039939e87b9c1a1f1cce0 100644 Binary files a/img/misc/winter/alex_cottage_dusk.png and b/img/misc/winter/alex_cottage_dusk.png differ diff --git a/img/misc/winter/alex_cottage_night.png b/img/misc/winter/alex_cottage_night.png index d9e820ae7819bd2856328e6c7c8b5b99a314a46b..e5930f85e74692c58fb4544f65c3228a4208fce3 100644 Binary files a/img/misc/winter/alex_cottage_night.png and b/img/misc/winter/alex_cottage_night.png differ diff --git a/img/misc/winter/alex_farm_dawn.png b/img/misc/winter/alex_farm_dawn.png index e7af82e1a6f2bce168c6e15f1696e6d2f33e2ac2..0a91db26e9f7c4e5bedd25b6fee24c665e5651d6 100644 Binary files a/img/misc/winter/alex_farm_dawn.png and b/img/misc/winter/alex_farm_dawn.png differ diff --git a/img/misc/winter/alex_farm_day.png b/img/misc/winter/alex_farm_day.png index eaf40de6a2117988e4e9bd6378173f537c793892..d2ccbc9f9cad75ed33b7682fc8eb687f18b2f49d 100644 Binary files a/img/misc/winter/alex_farm_day.png and b/img/misc/winter/alex_farm_day.png differ diff --git a/img/misc/winter/alex_farm_dusk.png b/img/misc/winter/alex_farm_dusk.png index 68a79eb930b72dcd56f649b1626c219a12ac30a4..d8c6380ff3ed0c32e78851ee2a6e10c6516ec3f5 100644 Binary files a/img/misc/winter/alex_farm_dusk.png and b/img/misc/winter/alex_farm_dusk.png differ diff --git a/img/misc/winter/alex_farm_night.png b/img/misc/winter/alex_farm_night.png index 09a014cbc537a998ea6e87e778966922b8f474c4..931300c22f35662cdd84e44d09d338d00893e33f 100644 Binary files a/img/misc/winter/alex_farm_night.png and b/img/misc/winter/alex_farm_night.png differ diff --git a/img/misc/winter/alley_bloodmoon.gif b/img/misc/winter/alley_bloodmoon.gif index abc121bc37d3393eb1de2e0f43abd2e963ffaf61..0b3f7fa1cb7c58ef4ac5b446000fbe195f375590 100644 Binary files a/img/misc/winter/alley_bloodmoon.gif and b/img/misc/winter/alley_bloodmoon.gif differ diff --git a/img/misc/winter/alley_dawn.gif b/img/misc/winter/alley_dawn.gif index 3452138e0f7907cacbc4ae87f9ee9a3334800eec..b152fe8aa2dfd427347bc466acc83f88cc8d2c2c 100644 Binary files a/img/misc/winter/alley_dawn.gif and b/img/misc/winter/alley_dawn.gif differ diff --git a/img/misc/winter/alley_day.gif b/img/misc/winter/alley_day.gif index c6a626825a1a5cab341a0e2855379850fbd76e46..6c7bdd8b61583299676cf880e954a4027f4b6829 100644 Binary files a/img/misc/winter/alley_day.gif and b/img/misc/winter/alley_day.gif differ diff --git a/img/misc/winter/alley_dusk.gif b/img/misc/winter/alley_dusk.gif index d8f4f6a9d9e3c4d83bfce39e3b39d7f116fe40fc..81fc409c8242a2eab870054b7c874e7fd1cb7bca 100644 Binary files a/img/misc/winter/alley_dusk.gif and b/img/misc/winter/alley_dusk.gif differ diff --git a/img/misc/winter/alley_night.gif b/img/misc/winter/alley_night.gif index 8eec2f0f0fabb3f4fa09654f4f354d7afe546799..89b6ad4855c658811b08ac3402e573b34dcfcca0 100644 Binary files a/img/misc/winter/alley_night.gif and b/img/misc/winter/alley_night.gif differ diff --git a/img/misc/winter/arcade_dawn.png b/img/misc/winter/arcade_dawn.png index 6a8812e3ab52fbb11082b7f4e388b24a11f40b87..5997ba0b660071e1eee4caaaf4357ea74635dda1 100644 Binary files a/img/misc/winter/arcade_dawn.png and b/img/misc/winter/arcade_dawn.png differ diff --git a/img/misc/winter/arcade_day.png b/img/misc/winter/arcade_day.png index 38e9f6cfbab5352c074d48fcf9adb957f8a8b7a0..87eb1286dac5d92d762836e4fedfc5bc473bcb0c 100644 Binary files a/img/misc/winter/arcade_day.png and b/img/misc/winter/arcade_day.png differ diff --git a/img/misc/winter/arcade_dusk.png b/img/misc/winter/arcade_dusk.png index d56ed1c3a5b6f3116dec0cdd6146e8f68e97fee5..87eb1286dac5d92d762836e4fedfc5bc473bcb0c 100644 Binary files a/img/misc/winter/arcade_dusk.png and b/img/misc/winter/arcade_dusk.png differ diff --git a/img/misc/winter/arcade_night.png b/img/misc/winter/arcade_night.png index 91d3e4bc3edb53b3cb6601e3b09109c9dd7ebca3..2222c99449fd81c4bc96d07df7f65661d061f7d4 100644 Binary files a/img/misc/winter/arcade_night.png and b/img/misc/winter/arcade_night.png differ diff --git a/img/misc/winter/asylum_dawnslow.gif b/img/misc/winter/asylum_dawnslow.gif index fec5dc897448dac77d1dd468d9c3851f309f31e3..f5bf9dc2225140631ca87a8b9085eea804991621 100644 Binary files a/img/misc/winter/asylum_dawnslow.gif and b/img/misc/winter/asylum_dawnslow.gif differ diff --git a/img/misc/winter/asylum_dawnvfast.gif b/img/misc/winter/asylum_dawnvfast.gif index 7ac3cb21f6bb813f23ac2ce6c2326b772937182c..0dbbc382a3c38c56bc0fc743d8cf553e178fa16a 100644 Binary files a/img/misc/winter/asylum_dawnvfast.gif and b/img/misc/winter/asylum_dawnvfast.gif differ diff --git a/img/misc/winter/asylum_dayslow.gif b/img/misc/winter/asylum_dayslow.gif index ba4af763fda519d9e52a6b4d0b4f30aa5ace907a..43eb445d7270ec999bd60bb78e6dcabc20c71e21 100644 Binary files a/img/misc/winter/asylum_dayslow.gif and b/img/misc/winter/asylum_dayslow.gif differ diff --git a/img/misc/winter/asylum_dayvfast.gif b/img/misc/winter/asylum_dayvfast.gif index f88773dc733d58ecf88cf3d3fddd204db7b2ecbd..f1cf1615668f1036c5b545fe255408870782f713 100644 Binary files a/img/misc/winter/asylum_dayvfast.gif and b/img/misc/winter/asylum_dayvfast.gif differ diff --git a/img/misc/winter/asylum_duskslow.gif b/img/misc/winter/asylum_duskslow.gif index 19bc5d059fe1c9f1272efa92e1c0c240b290c766..f5bf9dc2225140631ca87a8b9085eea804991621 100644 Binary files a/img/misc/winter/asylum_duskslow.gif and b/img/misc/winter/asylum_duskslow.gif differ diff --git a/img/misc/winter/asylum_duskvfast.gif b/img/misc/winter/asylum_duskvfast.gif index 9f621f213e7191c0308b59f56e1df0feab700a61..3e1513a056d9dc5f0897f67054800f282e245b90 100644 Binary files a/img/misc/winter/asylum_duskvfast.gif and b/img/misc/winter/asylum_duskvfast.gif differ diff --git a/img/misc/winter/asylum_nightslow.gif b/img/misc/winter/asylum_nightslow.gif index 372fb22c4c1bb762892701046951c9bb38d64408..603861971e93fce9abb24028424e4a94f6e73dda 100644 Binary files a/img/misc/winter/asylum_nightslow.gif and b/img/misc/winter/asylum_nightslow.gif differ diff --git a/img/misc/winter/asylum_nightvfast.gif b/img/misc/winter/asylum_nightvfast.gif index 5dcbfcf5ea03f5bec3b375b3240b5757e7050f26..c587156b43e5095fd15a6818f169c1d6e8f251d0 100644 Binary files a/img/misc/winter/asylum_nightvfast.gif and b/img/misc/winter/asylum_nightvfast.gif differ diff --git a/img/misc/winter/beach_dawn.gif b/img/misc/winter/beach_dawn.gif index b3309897c5b740dc7e5253e21533475dddbfd56d..751f7a315ae75a62fd0fe62ea56212d04fa6eba7 100644 Binary files a/img/misc/winter/beach_dawn.gif and b/img/misc/winter/beach_dawn.gif differ diff --git a/img/misc/winter/beach_day.gif b/img/misc/winter/beach_day.gif index 9b1e18b5dd1404db367b56efc7512537999996b4..6f9803fb1e0ec609515f4a2b7e4e8233b6413e9b 100644 Binary files a/img/misc/winter/beach_day.gif and b/img/misc/winter/beach_day.gif differ diff --git a/img/misc/winter/beach_dusk.gif b/img/misc/winter/beach_dusk.gif index c42a1d42417aaeaf2bf743317a8cbe90268816e1..978a7f7211ca72017b0a3310ff6b8c9fd25d2cda 100644 Binary files a/img/misc/winter/beach_dusk.gif and b/img/misc/winter/beach_dusk.gif differ diff --git a/img/misc/winter/beach_night.gif b/img/misc/winter/beach_night.gif index b3dfe92bc9026976627aa1bd4657eaee577f30fa..ef3ebc40cf64ec31583346e56eb1c22279caa578 100644 Binary files a/img/misc/winter/beach_night.gif and b/img/misc/winter/beach_night.gif differ diff --git a/img/misc/winter/boat_dawn.gif b/img/misc/winter/boat_dawn.gif index 7b045b7447bcbd20caec28572669896b30db0da3..3a17aeefdb52cedb7280253effef605e7d72e1f4 100644 Binary files a/img/misc/winter/boat_dawn.gif and b/img/misc/winter/boat_dawn.gif differ diff --git a/img/misc/winter/boat_day.gif b/img/misc/winter/boat_day.gif index 1c176ec3d85e792d9e3dd6c22030d99f76a71928..3a17aeefdb52cedb7280253effef605e7d72e1f4 100644 Binary files a/img/misc/winter/boat_day.gif and b/img/misc/winter/boat_day.gif differ diff --git a/img/misc/winter/boat_dusk.gif b/img/misc/winter/boat_dusk.gif index 3dcd2a52ac6e1823a6c343b1549abec7ae18503c..00b68a8ab2fc2d14731a43acf05f2f2d1ae09e42 100644 Binary files a/img/misc/winter/boat_dusk.gif and b/img/misc/winter/boat_dusk.gif differ diff --git a/img/misc/winter/boat_night.gif b/img/misc/winter/boat_night.gif index 62249ce03b61c52b97e73259411d5ef63ac63971..cae8a59b1aa89edaa0e39e45e5eba95580a136c9 100644 Binary files a/img/misc/winter/boat_night.gif and b/img/misc/winter/boat_night.gif differ diff --git a/img/misc/winter/bog_bloodmoon.gif b/img/misc/winter/bog_bloodmoon.gif new file mode 100644 index 0000000000000000000000000000000000000000..335390b5249b05374479d7d1828c77ac1e8f7eab Binary files /dev/null and b/img/misc/winter/bog_bloodmoon.gif differ diff --git a/img/misc/winter/bog_dawn.gif b/img/misc/winter/bog_dawn.gif new file mode 100644 index 0000000000000000000000000000000000000000..1bcabdb8db1c8106bbe2ceb04b8462599a9a6d85 Binary files /dev/null and b/img/misc/winter/bog_dawn.gif differ diff --git a/img/misc/winter/bog_day.gif b/img/misc/winter/bog_day.gif new file mode 100644 index 0000000000000000000000000000000000000000..4375a44648c8bf63d86bc553fe722a2f8b2c48f9 Binary files /dev/null and b/img/misc/winter/bog_day.gif differ diff --git a/img/misc/winter/bog_dusk.gif b/img/misc/winter/bog_dusk.gif new file mode 100644 index 0000000000000000000000000000000000000000..caa5e3b77da3d682b53a4cb5507611d597d50aff Binary files /dev/null and b/img/misc/winter/bog_dusk.gif differ diff --git a/img/misc/winter/bog_night.gif b/img/misc/winter/bog_night.gif new file mode 100644 index 0000000000000000000000000000000000000000..1f6c607b96879761e7cd9867db403cff451c5d32 Binary files /dev/null and b/img/misc/winter/bog_night.gif differ diff --git a/img/misc/winter/brothel_dawn.png b/img/misc/winter/brothel_dawn.png index 7774d036fbe96b9d9f746a2fb4fc74536d84eebc..638e7b6dacfdcc185a7358a8e316d27e5f1edd82 100644 Binary files a/img/misc/winter/brothel_dawn.png and b/img/misc/winter/brothel_dawn.png differ diff --git a/img/misc/winter/brothel_day.png b/img/misc/winter/brothel_day.png index 7b2e3a8d33fa0319f8e27986127ea987d53b9740..baff2a596badb1cac7b163194ef41a7d7d4e2f64 100644 Binary files a/img/misc/winter/brothel_day.png and b/img/misc/winter/brothel_day.png differ diff --git a/img/misc/winter/brothel_dusk.png b/img/misc/winter/brothel_dusk.png index b6ae5887f7134a6eb8d7239e88398ffb1a7eaec0..baff2a596badb1cac7b163194ef41a7d7d4e2f64 100644 Binary files a/img/misc/winter/brothel_dusk.png and b/img/misc/winter/brothel_dusk.png differ diff --git a/img/misc/winter/brothel_night.png b/img/misc/winter/brothel_night.png index a1272335d3b38a11e13b2fb598f3e526af24fc40..207119b7bdf9c4708375ff9ce209a8b9009eb0b9 100644 Binary files a/img/misc/winter/brothel_night.png and b/img/misc/winter/brothel_night.png differ diff --git a/img/misc/winter/cabin_dawn.png b/img/misc/winter/cabin_dawn.png index c38932925145a6c53e7011078ff1115260699e19..9a9fde136b32a214182fb0dfaae9eba9cd2a1546 100644 Binary files a/img/misc/winter/cabin_dawn.png and b/img/misc/winter/cabin_dawn.png differ diff --git a/img/misc/winter/cabin_day.png b/img/misc/winter/cabin_day.png index 5c0dd649d504abdebb14aa94f0673d136b690941..8c4f94f73350887cf4b6722d378c954bba4ecbeb 100644 Binary files a/img/misc/winter/cabin_day.png and b/img/misc/winter/cabin_day.png differ diff --git a/img/misc/winter/cabin_dusk.png b/img/misc/winter/cabin_dusk.png index 296a1f177f986fbe5df6e9c7afc1024ea8a53f1e..365383f09a6a439fb6c18159635420ff97af20c2 100644 Binary files a/img/misc/winter/cabin_dusk.png and b/img/misc/winter/cabin_dusk.png differ diff --git a/img/misc/winter/cabin_night.png b/img/misc/winter/cabin_night.png index ad33160f299b252d7a1437197331953c15fc91f2..e1c9afbaff1a72b8ee6e8791ce7b7de0e3596728 100644 Binary files a/img/misc/winter/cabin_night.png and b/img/misc/winter/cabin_night.png differ diff --git a/img/misc/winter/cafe_construction_dawn.png b/img/misc/winter/cafe_construction_dawn.png index cc2210b4ec6694dd79e5981f8a0393fb18ea5b7f..6dc28645ecfe8720ccd4046a96d92173c873eda6 100644 Binary files a/img/misc/winter/cafe_construction_dawn.png and b/img/misc/winter/cafe_construction_dawn.png differ diff --git a/img/misc/winter/cafe_construction_day.png b/img/misc/winter/cafe_construction_day.png index 21a6248910eab03350aad563874daae3983a9e23..396e243c7ce9e86518360a88969531b26a59cdac 100644 Binary files a/img/misc/winter/cafe_construction_day.png and b/img/misc/winter/cafe_construction_day.png differ diff --git a/img/misc/winter/cafe_construction_dusk.png b/img/misc/winter/cafe_construction_dusk.png index 52e124f196b5bc9fac1a4f3f2e9b1bf9dd3ae49f..60b8aec128c610c5bb73d78a3cfd32b2ae7e1d2b 100644 Binary files a/img/misc/winter/cafe_construction_dusk.png and b/img/misc/winter/cafe_construction_dusk.png differ diff --git a/img/misc/winter/cafe_construction_night.png b/img/misc/winter/cafe_construction_night.png index 64095faebe7e0e82baa198606d932943aa27da67..0bedc6d663b130918140c0283550e25d8395c358 100644 Binary files a/img/misc/winter/cafe_construction_night.png and b/img/misc/winter/cafe_construction_night.png differ diff --git a/img/misc/winter/cafe_dawn.png b/img/misc/winter/cafe_dawn.png index 336b41d6256ced6d1716d90370d7a23737a09e3a..73302a6e0b54f2348560dbbf02b9c523a85f542f 100644 Binary files a/img/misc/winter/cafe_dawn.png and b/img/misc/winter/cafe_dawn.png differ diff --git a/img/misc/winter/cafe_day.png b/img/misc/winter/cafe_day.png index ba10dca3416a6995a655570dafd27fd23188027a..16fcd19f240356c951ca757b5587c7fecf22af4b 100644 Binary files a/img/misc/winter/cafe_day.png and b/img/misc/winter/cafe_day.png differ diff --git a/img/misc/winter/cafe_dusk.png b/img/misc/winter/cafe_dusk.png index 6235d882260a9724d9544979231e2cb33c4cb4ea..19fce25126937e6816cf56f4eaab6b732e21f66a 100644 Binary files a/img/misc/winter/cafe_dusk.png and b/img/misc/winter/cafe_dusk.png differ diff --git a/img/misc/winter/cafe_night.png b/img/misc/winter/cafe_night.png index dcf6fbc8a6c58e0418cc5f4f400ff7d8845689aa..15b6dcb43faca33273f091164505d5f0066b798b 100644 Binary files a/img/misc/winter/cafe_night.png and b/img/misc/winter/cafe_night.png differ diff --git a/img/misc/winter/cafe_renovated_dawn.png b/img/misc/winter/cafe_renovated_dawn.png index 9146945b626dc832d17506ee64e814069ea58ea5..ed4221d372946abb87e2d822021637510bd9cfac 100644 Binary files a/img/misc/winter/cafe_renovated_dawn.png and b/img/misc/winter/cafe_renovated_dawn.png differ diff --git a/img/misc/winter/cafe_renovated_day.png b/img/misc/winter/cafe_renovated_day.png index fe9970eb7e58a969c13cd526209bcbd8c8e3fbc4..1dffc42084fc539005057eb45b7ae42a350370e1 100644 Binary files a/img/misc/winter/cafe_renovated_day.png and b/img/misc/winter/cafe_renovated_day.png differ diff --git a/img/misc/winter/cafe_renovated_dusk.png b/img/misc/winter/cafe_renovated_dusk.png index 2002822ed805d059ec0260fe8e43ea84858d2899..6dbe24e5f2c5a1697c5139d07f9719045eae9e4e 100644 Binary files a/img/misc/winter/cafe_renovated_dusk.png and b/img/misc/winter/cafe_renovated_dusk.png differ diff --git a/img/misc/winter/cafe_renovated_night.png b/img/misc/winter/cafe_renovated_night.png index ce46e7dee2c6d2c1f8b829226052eed844167631..3a02a305b8e753ba45937f4b79a5ec19b2f7f2d1 100644 Binary files a/img/misc/winter/cafe_renovated_night.png and b/img/misc/winter/cafe_renovated_night.png differ diff --git a/img/misc/winter/canal_dawn.gif b/img/misc/winter/canal_dawn.gif index 2091879f65681594b33157c07e3137f621fadb98..9e32cebe9bb28e7ca77e8a7e825599663ec1436d 100644 Binary files a/img/misc/winter/canal_dawn.gif and b/img/misc/winter/canal_dawn.gif differ diff --git a/img/misc/winter/canal_day.gif b/img/misc/winter/canal_day.gif index 3197389ee71c7efb9716b35c87d6c37efb5b0e67..25070b20bd33059ee8f911d610718666b54b82e5 100644 Binary files a/img/misc/winter/canal_day.gif and b/img/misc/winter/canal_day.gif differ diff --git a/img/misc/winter/canal_dusk.gif b/img/misc/winter/canal_dusk.gif index 6155b8b7027895bd46acba0a64587a33224e722a..4e00cd8ccd01cf9d2b6645b8d119d97d202f3deb 100644 Binary files a/img/misc/winter/canal_dusk.gif and b/img/misc/winter/canal_dusk.gif differ diff --git a/img/misc/winter/canal_night.gif b/img/misc/winter/canal_night.gif index 59fa40b50f56a3cd0e01f0b8034f6be7ba8ddf22..3db5ec94e150f790c42d86dccd85fce872729279 100644 Binary files a/img/misc/winter/canal_night.gif and b/img/misc/winter/canal_night.gif differ diff --git a/img/misc/winter/churchyard_dawn.png b/img/misc/winter/churchyard_dawn.png index 973d47b5e16b4d34dfd856b667d4b704e5ab35ef..33e1a5f78bf5a174ea3695d497b876d32eba8486 100644 Binary files a/img/misc/winter/churchyard_dawn.png and b/img/misc/winter/churchyard_dawn.png differ diff --git a/img/misc/winter/churchyard_day.png b/img/misc/winter/churchyard_day.png index c80c1a6d8dbd868d2ff3474b5ebbe7a12d256656..33e1a5f78bf5a174ea3695d497b876d32eba8486 100644 Binary files a/img/misc/winter/churchyard_day.png and b/img/misc/winter/churchyard_day.png differ diff --git a/img/misc/winter/churchyard_dusk.png b/img/misc/winter/churchyard_dusk.png index bbafe8e3c606de3279651ac80726937a8637e466..813a37adae385f5ea4d9023e0d004c1f2c172d09 100644 Binary files a/img/misc/winter/churchyard_dusk.png and b/img/misc/winter/churchyard_dusk.png differ diff --git a/img/misc/winter/churchyard_night.png b/img/misc/winter/churchyard_night.png index 7103446129f14dc5d72ff34448f12606acc3a2eb..6d0c0ba504773a665e22c35fb221f5eab45d8d7a 100644 Binary files a/img/misc/winter/churchyard_night.png and b/img/misc/winter/churchyard_night.png differ diff --git a/img/misc/winter/compound_dawn.gif b/img/misc/winter/compound_dawn.gif index 2e4569fd2527afa64ba3b129be498a70a74ede0c..45dc345779cc2ab4bb503ef44c26c74da465a910 100644 Binary files a/img/misc/winter/compound_dawn.gif and b/img/misc/winter/compound_dawn.gif differ diff --git a/img/misc/winter/compound_day.gif b/img/misc/winter/compound_day.gif index 413a047a996d892c97af9d7164d71ea383625269..651f87faee9c40a81a2334e8cf3082b47200ad36 100644 Binary files a/img/misc/winter/compound_day.gif and b/img/misc/winter/compound_day.gif differ diff --git a/img/misc/winter/compound_dusk.gif b/img/misc/winter/compound_dusk.gif index 14908a45c1f32326136db99051ef91eff31fde1a..d5bc283152b863bc43c2f8b06efcab88db822c4a 100644 Binary files a/img/misc/winter/compound_dusk.gif and b/img/misc/winter/compound_dusk.gif differ diff --git a/img/misc/winter/compound_night.gif b/img/misc/winter/compound_night.gif index 6f76b6df3af77316b77392e54f33ad8badf1302a..47e1bfe91bbe08b6a69bfbb9b8db1d590d407e6e 100644 Binary files a/img/misc/winter/compound_night.gif and b/img/misc/winter/compound_night.gif differ diff --git a/img/misc/winter/dance_studio_dawn.png b/img/misc/winter/dance_studio_dawn.png index 40d3dfac32647f5cafbffd894addb25c516e0b84..da5b118f73f7ad3aec67ceb36af8e6618d6f6b5a 100644 Binary files a/img/misc/winter/dance_studio_dawn.png and b/img/misc/winter/dance_studio_dawn.png differ diff --git a/img/misc/winter/dance_studio_day.png b/img/misc/winter/dance_studio_day.png index 8f4f2e766f5d0f3e2adaf77681424cc4b6d9fad8..ff100941893d0477b2f73d3f2a400eb4cdcc9c11 100644 Binary files a/img/misc/winter/dance_studio_day.png and b/img/misc/winter/dance_studio_day.png differ diff --git a/img/misc/winter/dance_studio_dusk.png b/img/misc/winter/dance_studio_dusk.png index 18244eed0fddc8f1e6ab5449a174639c21ae0905..ff100941893d0477b2f73d3f2a400eb4cdcc9c11 100644 Binary files a/img/misc/winter/dance_studio_dusk.png and b/img/misc/winter/dance_studio_dusk.png differ diff --git a/img/misc/winter/dance_studio_night.png b/img/misc/winter/dance_studio_night.png index ff6e728800e6803815cb06fc4f0a7579c9cd3ffc..1f3b1a2c7faf236e1c2daef12fa6ce85a23f5d64 100644 Binary files a/img/misc/winter/dance_studio_night.png and b/img/misc/winter/dance_studio_night.png differ diff --git a/img/misc/winter/dilapidated_shop_dawn.png b/img/misc/winter/dilapidated_shop_dawn.png index 7c7b1c1997f7dfbcd5e9dc691f1b18a49a129797..d69ffeb4da4911a23a36bb823063f46f09fa9eab 100644 Binary files a/img/misc/winter/dilapidated_shop_dawn.png and b/img/misc/winter/dilapidated_shop_dawn.png differ diff --git a/img/misc/winter/dilapidated_shop_day.png b/img/misc/winter/dilapidated_shop_day.png index 34bbfd91934489318fea507e6947444d84d1f598..3e0717239bd5b41dd24a3ea308e7147e74fd2796 100644 Binary files a/img/misc/winter/dilapidated_shop_day.png and b/img/misc/winter/dilapidated_shop_day.png differ diff --git a/img/misc/winter/dilapidated_shop_dusk.png b/img/misc/winter/dilapidated_shop_dusk.png index cf4322e9566001dcb931e83bc5a00c84f023268c..ae882db613be7b661a40a123d7fd5980621f27eb 100644 Binary files a/img/misc/winter/dilapidated_shop_dusk.png and b/img/misc/winter/dilapidated_shop_dusk.png differ diff --git a/img/misc/winter/dilapidated_shop_night.png b/img/misc/winter/dilapidated_shop_night.png index f205431ead06efa23b8576e037fd63c798328621..91b2559b294f59f50c46599668e5090c7d51ea12 100644 Binary files a/img/misc/winter/dilapidated_shop_night.png and b/img/misc/winter/dilapidated_shop_night.png differ diff --git a/img/misc/winter/docks_dawn.png b/img/misc/winter/docks_dawn.png index 017937c964f42d7fbb36e2570fd8ee3a275079e8..1fe6e2828885a5345d5c0aef1ac9c89c835fb203 100644 Binary files a/img/misc/winter/docks_dawn.png and b/img/misc/winter/docks_dawn.png differ diff --git a/img/misc/winter/docks_day.png b/img/misc/winter/docks_day.png index b7125526c69faa8bb87e814c5fc91cb871f56135..e62b930e2dada424bb6a630c7261612cc014a704 100644 Binary files a/img/misc/winter/docks_day.png and b/img/misc/winter/docks_day.png differ diff --git a/img/misc/winter/docks_dusk.png b/img/misc/winter/docks_dusk.png index 17e1e6edd98c3e0e3baaddfb6365bc9ef21e1ab1..8668df9e6ce7162941f2d1283fec8e926732b704 100644 Binary files a/img/misc/winter/docks_dusk.png and b/img/misc/winter/docks_dusk.png differ diff --git a/img/misc/winter/docks_night.png b/img/misc/winter/docks_night.png index 9ac3276142c919d00cc60161d424541252c49f89..6e163e38b17c0cc0d02556db3428ef7824ee1c82 100644 Binary files a/img/misc/winter/docks_night.png and b/img/misc/winter/docks_night.png differ diff --git a/img/misc/winter/dog_pound_dawn.gif b/img/misc/winter/dog_pound_dawn.gif index 2679b4e4dfd503186257061d6f346e24aebf62c3..2e411e2826fb0c39215f3c11896c7ec30263a6c2 100644 Binary files a/img/misc/winter/dog_pound_dawn.gif and b/img/misc/winter/dog_pound_dawn.gif differ diff --git a/img/misc/winter/dog_pound_day.gif b/img/misc/winter/dog_pound_day.gif index c22cac8d76add240e661ea18d9e458bde9645932..413c0b34fcba05ea77de3b3e0752638b349cbe36 100644 Binary files a/img/misc/winter/dog_pound_day.gif and b/img/misc/winter/dog_pound_day.gif differ diff --git a/img/misc/winter/dog_pound_dusk.gif b/img/misc/winter/dog_pound_dusk.gif index b95f0b57e1d7cd344f54fb84252ac4030b9366d4..443e9f1ed7b9259752e5fbb235f98f65179d47d2 100644 Binary files a/img/misc/winter/dog_pound_dusk.gif and b/img/misc/winter/dog_pound_dusk.gif differ diff --git a/img/misc/winter/dog_pound_night.gif b/img/misc/winter/dog_pound_night.gif new file mode 100644 index 0000000000000000000000000000000000000000..0570da99fd2212eaa1fee69af47a091d45947a04 Binary files /dev/null and b/img/misc/winter/dog_pound_night.gif differ diff --git a/img/misc/winter/dog_pound_night.png b/img/misc/winter/dog_pound_night.png deleted file mode 100644 index 20537fb9b62967a6a0672d99cb1064e668aa6274..0000000000000000000000000000000000000000 Binary files a/img/misc/winter/dog_pound_night.png and /dev/null differ diff --git a/img/misc/winter/factory_dawn.gif b/img/misc/winter/factory_dawn.gif index db1fcce440fda4bff634ed707998dc1d650d6a6d..f081523411903b2db5e0f3d9c5321da698f23658 100644 Binary files a/img/misc/winter/factory_dawn.gif and b/img/misc/winter/factory_dawn.gif differ diff --git a/img/misc/winter/factory_day.gif b/img/misc/winter/factory_day.gif index f0802f69be2fb4f451a31993078b76a3164fd6c0..cbf562553b39416152a1308d40796a466f5b19d5 100644 Binary files a/img/misc/winter/factory_day.gif and b/img/misc/winter/factory_day.gif differ diff --git a/img/misc/winter/factory_dusk.gif b/img/misc/winter/factory_dusk.gif index 98edae7d76d007c93f3695a4a54690ed2b1a15d8..3c2c6432002f20fdcde83b422400af52075b4896 100644 Binary files a/img/misc/winter/factory_dusk.gif and b/img/misc/winter/factory_dusk.gif differ diff --git a/img/misc/winter/factory_night.gif b/img/misc/winter/factory_night.gif new file mode 100644 index 0000000000000000000000000000000000000000..5ae11f6a63f471be2d54a66cf94b51c02ea0a8bf Binary files /dev/null and b/img/misc/winter/factory_night.gif differ diff --git a/img/misc/winter/factory_night.png b/img/misc/winter/factory_night.png deleted file mode 100644 index 23b6c4db6bc595294d443b6e23f21dff2ee83e7a..0000000000000000000000000000000000000000 Binary files a/img/misc/winter/factory_night.png and /dev/null differ diff --git a/img/misc/winter/farm_dawn.png b/img/misc/winter/farm_dawn.png index 9ab526d72bbd09c8976a9852e061e9298b55e8a1..d327bb482ba3adad95d9ae7d1d89345d6a4aa405 100644 Binary files a/img/misc/winter/farm_dawn.png and b/img/misc/winter/farm_dawn.png differ diff --git a/img/misc/winter/farm_day.png b/img/misc/winter/farm_day.png index 67d0fb1ead5f2ac8112d845b45e92af8038f9947..96034a6923c26bedf90dbf3c680e344b511a18a0 100644 Binary files a/img/misc/winter/farm_day.png and b/img/misc/winter/farm_day.png differ diff --git a/img/misc/winter/farm_dusk.png b/img/misc/winter/farm_dusk.png index 802ce9f8263040cbb9dfd42156c3839cbbf032e5..415011fb25e0bd4d60e5e6e0910e589301600056 100644 Binary files a/img/misc/winter/farm_dusk.png and b/img/misc/winter/farm_dusk.png differ diff --git a/img/misc/winter/farm_night.png b/img/misc/winter/farm_night.png index c066e74f9f444ec146397da54b38d50acca08e5a..3878cdc4ea8cb84f2ab4c721f91978c8413f4a2c 100644 Binary files a/img/misc/winter/farm_night.png and b/img/misc/winter/farm_night.png differ diff --git a/img/misc/winter/flats_dawn.png b/img/misc/winter/flats_dawn.png index 6b32edb8d2cb6470b898e266ba4230d564495b53..efc6045803b3e5db29b4da1cef5d30eff959d07e 100644 Binary files a/img/misc/winter/flats_dawn.png and b/img/misc/winter/flats_dawn.png differ diff --git a/img/misc/winter/flats_day.png b/img/misc/winter/flats_day.png index 2dbbd8d7aa45f998b462f64c62ffef6e315c1302..e7187cdbe159a47b4e2e11e8aa275339b2de968a 100644 Binary files a/img/misc/winter/flats_day.png and b/img/misc/winter/flats_day.png differ diff --git a/img/misc/winter/flats_dusk.png b/img/misc/winter/flats_dusk.png index cc09baca9191d874235e64d7d2b0ee68a3d0b406..cfbc36ac8a48854348275a1f7daf99e4e5f8bc18 100644 Binary files a/img/misc/winter/flats_dusk.png and b/img/misc/winter/flats_dusk.png differ diff --git a/img/misc/winter/flats_night.png b/img/misc/winter/flats_night.png index 63b6c40431a5e158fc6925746cdb9e24efd1d685..f2e85bdb82da0ccf267a3095b9a85f0a2184f633 100644 Binary files a/img/misc/winter/flats_night.png and b/img/misc/winter/flats_night.png differ diff --git a/img/misc/winter/forest_bloodmoon.gif b/img/misc/winter/forest_bloodmoon.gif index dbab9d5b55ba58347a5df1bb7f4b3109c18851de..8956d1286138d13aa75a0054efcf563847e9b96f 100644 Binary files a/img/misc/winter/forest_bloodmoon.gif and b/img/misc/winter/forest_bloodmoon.gif differ diff --git a/img/misc/winter/forest_dawn.gif b/img/misc/winter/forest_dawn.gif new file mode 100644 index 0000000000000000000000000000000000000000..81bf9065422790d1bc84309e3fc4ece644846fdd Binary files /dev/null and b/img/misc/winter/forest_dawn.gif differ diff --git a/img/misc/winter/forest_dawn.png b/img/misc/winter/forest_dawn.png deleted file mode 100644 index b137a514d54e3e95f61de2fb2f8382e1e18ee3f4..0000000000000000000000000000000000000000 Binary files a/img/misc/winter/forest_dawn.png and /dev/null differ diff --git a/img/misc/winter/forest_day.gif b/img/misc/winter/forest_day.gif index 5d192c6751930a0fafcb52b85eae00639543329e..5273b899c5ebb1a3ba67e6b9cc7f95d70ff38b0f 100644 Binary files a/img/misc/winter/forest_day.gif and b/img/misc/winter/forest_day.gif differ diff --git a/img/misc/winter/forest_dusk.gif b/img/misc/winter/forest_dusk.gif index d840c08fb5986c336b122c99743f22e2e7656118..0b020c2f124fa27867339a3122b659ab8870f7aa 100644 Binary files a/img/misc/winter/forest_dusk.gif and b/img/misc/winter/forest_dusk.gif differ diff --git a/img/misc/winter/forest_night.gif b/img/misc/winter/forest_night.gif new file mode 100644 index 0000000000000000000000000000000000000000..e0ba22db8f3d7ee18db83c872a8b23bb02df8f97 Binary files /dev/null and b/img/misc/winter/forest_night.gif differ diff --git a/img/misc/winter/forest_night.png b/img/misc/winter/forest_night.png deleted file mode 100644 index 7d218204faf287cedf1d34525f1aa2db619dfd66..0000000000000000000000000000000000000000 Binary files a/img/misc/winter/forest_night.png and /dev/null differ diff --git a/img/misc/winter/forest_shop_dawn.png b/img/misc/winter/forest_shop_dawn.png index 10207f11ab3c0174cf9a40b50a3480140727e849..66dcdef2d02a089448fe45669267092fb1270c2a 100644 Binary files a/img/misc/winter/forest_shop_dawn.png and b/img/misc/winter/forest_shop_dawn.png differ diff --git a/img/misc/winter/forest_shop_day.png b/img/misc/winter/forest_shop_day.png index f1d605c7d6d7ce4f86db4293b59dda7572af6278..6fa5a97f4047914af5225e0709f3df7fa56ee60c 100644 Binary files a/img/misc/winter/forest_shop_day.png and b/img/misc/winter/forest_shop_day.png differ diff --git a/img/misc/winter/forest_shop_dusk.png b/img/misc/winter/forest_shop_dusk.png index a3ebe09633ce1f708e6fca0891131c7fe34232b7..3e803c564af6e337a89396d9647a4ad2db1994a7 100644 Binary files a/img/misc/winter/forest_shop_dusk.png and b/img/misc/winter/forest_shop_dusk.png differ diff --git a/img/misc/winter/forest_shop_night.png b/img/misc/winter/forest_shop_night.png index c546a68e6c3f4c9efbacf9da7efd5d0b43e9d1c7..0f889a77019c69497f921bd4321c4a642bf8f41a 100644 Binary files a/img/misc/winter/forest_shop_night.png and b/img/misc/winter/forest_shop_night.png differ diff --git a/img/misc/winter/home_bloodmoon.gif b/img/misc/winter/home_bloodmoon.gif index 718cc6c52a3d13479026a5e8578da13598285b47..b55d79fbb7914f7ddea8a21c471e2b08ad3ab209 100644 Binary files a/img/misc/winter/home_bloodmoon.gif and b/img/misc/winter/home_bloodmoon.gif differ diff --git a/img/misc/winter/home_dawn.gif b/img/misc/winter/home_dawn.gif index 0308e193e803747c3658160e9edda9ac20ec856a..8d2104039b80da4916e11d6d140da02002625a6a 100644 Binary files a/img/misc/winter/home_dawn.gif and b/img/misc/winter/home_dawn.gif differ diff --git a/img/misc/winter/home_day.gif b/img/misc/winter/home_day.gif index 7581017c384e7bebaa0b67b0ac51455d9b93f99f..bdc8a6ab48692a5f350c29e26ffc4ef4961d744e 100644 Binary files a/img/misc/winter/home_day.gif and b/img/misc/winter/home_day.gif differ diff --git a/img/misc/winter/home_dusk.gif b/img/misc/winter/home_dusk.gif index bc6157cb07c96a7c5ad7a9b3dee89020e71b025e..48128c2b89501488896f2754e58942a89ef6782d 100644 Binary files a/img/misc/winter/home_dusk.gif and b/img/misc/winter/home_dusk.gif differ diff --git a/img/misc/winter/home_night.gif b/img/misc/winter/home_night.gif index 0ee831f2e7e97c3c42954bb0225b30bcc5a15eaa..0300b59c6e07c2e58d85cccf3e0b397d1778f0ad 100644 Binary files a/img/misc/winter/home_night.gif and b/img/misc/winter/home_night.gif differ diff --git a/img/misc/winter/hospital_dawn.png b/img/misc/winter/hospital_dawn.png index 55e0049348228432143bf1773ae47dac09c83e6e..4cdef9062908f0455bede091f56be87cb39805e6 100644 Binary files a/img/misc/winter/hospital_dawn.png and b/img/misc/winter/hospital_dawn.png differ diff --git a/img/misc/winter/hospital_day.png b/img/misc/winter/hospital_day.png index f0023700408ba8e2a37db7a57b2980c97d1af6f2..163ec0add90b76696a2250b5532a929d20bd0b6e 100644 Binary files a/img/misc/winter/hospital_day.png and b/img/misc/winter/hospital_day.png differ diff --git a/img/misc/winter/hospital_dusk.png b/img/misc/winter/hospital_dusk.png index 91e4d3254e0558116eacdc0fcab05702a370e257..163ec0add90b76696a2250b5532a929d20bd0b6e 100644 Binary files a/img/misc/winter/hospital_dusk.png and b/img/misc/winter/hospital_dusk.png differ diff --git a/img/misc/winter/hospital_night.png b/img/misc/winter/hospital_night.png index b06afc46c76bbeb6a3ddf0b323327f33e5bdf670..2ce238cf4f89ff52a08695bf252f8c886bb10bd0 100644 Binary files a/img/misc/winter/hospital_night.png and b/img/misc/winter/hospital_night.png differ diff --git a/img/misc/winter/indust_alley_bloodmoon.gif b/img/misc/winter/indust_alley_bloodmoon.gif index 525e24b6d22ae98f3bdf125d246567b3db2d6d9d..7e570533b59c243f7b4d5061c2efe0622fab79a9 100644 Binary files a/img/misc/winter/indust_alley_bloodmoon.gif and b/img/misc/winter/indust_alley_bloodmoon.gif differ diff --git a/img/misc/winter/indust_alley_dawn.gif b/img/misc/winter/indust_alley_dawn.gif index e4fc2987727ed2fbd5bb65523d5fb954d3746deb..cea3b331cca4d6312cc601183dfcaff11963c643 100644 Binary files a/img/misc/winter/indust_alley_dawn.gif and b/img/misc/winter/indust_alley_dawn.gif differ diff --git a/img/misc/winter/indust_alley_day.gif b/img/misc/winter/indust_alley_day.gif index f50ab6ad383c8db4f9c29e58248d53d8efc4bf4e..db850b2b22e9d679520e1a5879b335c81baaa631 100644 Binary files a/img/misc/winter/indust_alley_day.gif and b/img/misc/winter/indust_alley_day.gif differ diff --git a/img/misc/winter/indust_alley_dusk.gif b/img/misc/winter/indust_alley_dusk.gif index ccada5ae1ed11c7617332692bc39b2484d981764..811df342e99c4a1e7bf8766f0a63cb6672aa4b7b 100644 Binary files a/img/misc/winter/indust_alley_dusk.gif and b/img/misc/winter/indust_alley_dusk.gif differ diff --git a/img/misc/winter/indust_alley_night.gif b/img/misc/winter/indust_alley_night.gif index 7900c077ca0ea5b47548a83cbf73f980ea7c424a..ae3bf3f99af1981b5db4f0555f8c958c31a97e7a 100644 Binary files a/img/misc/winter/indust_alley_night.gif and b/img/misc/winter/indust_alley_night.gif differ diff --git a/img/misc/winter/island_dawn.gif b/img/misc/winter/island_dawn.gif index d4809eb9c4402a90496b18c3061c1f569e2a1a66..2f3b5b125f81297dc09e5b1847c79027bbb0da91 100644 Binary files a/img/misc/winter/island_dawn.gif and b/img/misc/winter/island_dawn.gif differ diff --git a/img/misc/winter/island_day.gif b/img/misc/winter/island_day.gif index 2e736128493684de35b9612b5494355daa6ed032..2f3b5b125f81297dc09e5b1847c79027bbb0da91 100644 Binary files a/img/misc/winter/island_day.gif and b/img/misc/winter/island_day.gif differ diff --git a/img/misc/winter/island_dusk.gif b/img/misc/winter/island_dusk.gif index 4129558e202c061ffa2b8f1548122103a7d6730e..6f1afc1e362832e0af0f506116cf4b413573d6fa 100644 Binary files a/img/misc/winter/island_dusk.gif and b/img/misc/winter/island_dusk.gif differ diff --git a/img/misc/winter/island_night.gif b/img/misc/winter/island_night.gif index 4c45ed54126cb86aa4e6473bed07293931afdd06..2a0b44ec73982efa3c92a95f6b7f3b0e85d12fa0 100644 Binary files a/img/misc/winter/island_night.gif and b/img/misc/winter/island_night.gif differ diff --git a/img/misc/winter/kylar_manor_dawn.png b/img/misc/winter/kylar_manor_dawn.png index b8f7ffc2682ef5c814ac35e63fc3c56ba902517e..8de13ae824a90a8b5851feeae9a40635a1986ab5 100644 Binary files a/img/misc/winter/kylar_manor_dawn.png and b/img/misc/winter/kylar_manor_dawn.png differ diff --git a/img/misc/winter/kylar_manor_day.png b/img/misc/winter/kylar_manor_day.png index b6322eefb861c3544f4c8c2b12f998c73b7c5651..b2b942bc0b4f3cbcd76604270611d8f0e3bae8bc 100644 Binary files a/img/misc/winter/kylar_manor_day.png and b/img/misc/winter/kylar_manor_day.png differ diff --git a/img/misc/winter/kylar_manor_dusk.png b/img/misc/winter/kylar_manor_dusk.png index 0133d7d1cede722e0ec504016860e66457bda613..77f9b2c3adfcb0f53f751a3e7ad8493983d32d0b 100644 Binary files a/img/misc/winter/kylar_manor_dusk.png and b/img/misc/winter/kylar_manor_dusk.png differ diff --git a/img/misc/winter/kylar_manor_night.png b/img/misc/winter/kylar_manor_night.png index c5df3f8b1dbdfebf6406928c9b53453692a94fb4..279484ce268e2dfd41c6d18625c5c64eba828a8c 100644 Binary files a/img/misc/winter/kylar_manor_night.png and b/img/misc/winter/kylar_manor_night.png differ diff --git a/img/misc/winter/lake_bloodmoon.gif b/img/misc/winter/lake_bloodmoon.gif index 4dc67a37370366249a9675129d236ffca984d531..1932e46fc2942862c536e8a3cbb5c860451c97c7 100644 Binary files a/img/misc/winter/lake_bloodmoon.gif and b/img/misc/winter/lake_bloodmoon.gif differ diff --git a/img/misc/winter/lake_dawn.gif b/img/misc/winter/lake_dawn.gif index bd74502b4f241875e33da98564ae7ba8a4be8bf2..acd89349d7051a1326a4e08ab1f21d5e841f9bdd 100644 Binary files a/img/misc/winter/lake_dawn.gif and b/img/misc/winter/lake_dawn.gif differ diff --git a/img/misc/winter/lake_day.gif b/img/misc/winter/lake_day.gif index 22c2cdfd2353300e1bacf37afcccd762365fad25..115c126f4a1c28ae921b8932673758ac2867257d 100644 Binary files a/img/misc/winter/lake_day.gif and b/img/misc/winter/lake_day.gif differ diff --git a/img/misc/winter/lake_dusk.gif b/img/misc/winter/lake_dusk.gif index e1d7855dbcd1a45316cd24b163947d359621cdee..e5ed84db075a6ffa43b874406c7269004ba472d5 100644 Binary files a/img/misc/winter/lake_dusk.gif and b/img/misc/winter/lake_dusk.gif differ diff --git a/img/misc/winter/lake_night.gif b/img/misc/winter/lake_night.gif index 1ab3a72d71cfae69cdc91744d6a9ef7e8cc69e6a..e843e02d937f596b88c6fc5a9c75195a33ad9552 100644 Binary files a/img/misc/winter/lake_night.gif and b/img/misc/winter/lake_night.gif differ diff --git a/img/misc/winter/landfill_dawn.png b/img/misc/winter/landfill_dawn.png index 9a5c51fc39aac845008227c3928ea0c363250315..07817b779047c49d9bb008698dab6c1b1d10b410 100644 Binary files a/img/misc/winter/landfill_dawn.png and b/img/misc/winter/landfill_dawn.png differ diff --git a/img/misc/winter/landfill_day.png b/img/misc/winter/landfill_day.png index efaddc65c23096572a5d5c12a290317db76d53ba..0b5eff1af944fac99ff956db6b79583bc68a1775 100644 Binary files a/img/misc/winter/landfill_day.png and b/img/misc/winter/landfill_day.png differ diff --git a/img/misc/winter/landfill_dusk.png b/img/misc/winter/landfill_dusk.png index f342230ed4d4cf2bdf5af3db2bb18d019f7907fa..f1fb784d71fae1751c355fbb010affc8f7f77ace 100644 Binary files a/img/misc/winter/landfill_dusk.png and b/img/misc/winter/landfill_dusk.png differ diff --git a/img/misc/winter/landfill_night.png b/img/misc/winter/landfill_night.png index 0647a685a83a42b48d5044fa4605a09a835ef364..c572615e10c716342db43a074a571a133695a322 100644 Binary files a/img/misc/winter/landfill_night.png and b/img/misc/winter/landfill_night.png differ diff --git a/img/misc/winter/meadow_dawn.gif b/img/misc/winter/meadow_dawn.gif index 3950d900916cc975521f40dca9e7eeb30d0ed164..d885dae0373ef5134609e25d9074cdb99f0187c0 100644 Binary files a/img/misc/winter/meadow_dawn.gif and b/img/misc/winter/meadow_dawn.gif differ diff --git a/img/misc/winter/meadow_day.gif b/img/misc/winter/meadow_day.gif index 232f851cd73440ee0e3c72a16fc2903cb3c00458..ab9173f79cc34e4ebbb48f9ee904930e4f293664 100644 Binary files a/img/misc/winter/meadow_day.gif and b/img/misc/winter/meadow_day.gif differ diff --git a/img/misc/winter/meadow_dusk.gif b/img/misc/winter/meadow_dusk.gif index bf9748828559154629267dd796296c905bdb3449..fb9595a7e3fae404b37805610b01b96362d3f02a 100644 Binary files a/img/misc/winter/meadow_dusk.gif and b/img/misc/winter/meadow_dusk.gif differ diff --git a/img/misc/winter/meadow_night.gif b/img/misc/winter/meadow_night.gif index 9635f88ae20ceed77579411ab036d590acc26541..9813bceffc64fd07052418f6ace42596f209e8bc 100644 Binary files a/img/misc/winter/meadow_night.gif and b/img/misc/winter/meadow_night.gif differ diff --git a/img/misc/winter/moor_dawn.gif b/img/misc/winter/moor_dawn.gif index c52836d7206f5632d1ae2d4204e4209a5f8cd71d..ae22c47c51e8545bb232631b28a6bc7e99af51a4 100644 Binary files a/img/misc/winter/moor_dawn.gif and b/img/misc/winter/moor_dawn.gif differ diff --git a/img/misc/winter/moor_day.gif b/img/misc/winter/moor_day.gif index 802679060818efcb9a0c26ec3e0924668c0b1b0e..e7c0c5306cb39d8d6893adfbd6eb7869b41fc40e 100644 Binary files a/img/misc/winter/moor_day.gif and b/img/misc/winter/moor_day.gif differ diff --git a/img/misc/winter/moor_dusk.gif b/img/misc/winter/moor_dusk.gif index 48a580dec8085b69ff083b3e592558fb6d6c590d..84b76033f6419a881ec9b1c5d9433bc98c5c3a4e 100644 Binary files a/img/misc/winter/moor_dusk.gif and b/img/misc/winter/moor_dusk.gif differ diff --git a/img/misc/winter/moor_night.gif b/img/misc/winter/moor_night.gif index 72f46742657df7c3d51f8de09e9e711da7798d13..48760608417845fee0734d15a0e3d4c938bbc472 100644 Binary files a/img/misc/winter/moor_night.gif and b/img/misc/winter/moor_night.gif differ diff --git a/img/misc/winter/museum_dawn.png b/img/misc/winter/museum_dawn.png index 74738238cd36c9421df05fd851f1b938c6d7d3e1..19fa93a70ecadbf8e6bc6b10d006c3ff52f79e36 100644 Binary files a/img/misc/winter/museum_dawn.png and b/img/misc/winter/museum_dawn.png differ diff --git a/img/misc/winter/museum_day.png b/img/misc/winter/museum_day.png index 791c3c14539be6fcbd1659d868dc8e6b1b0105bf..f587f0df70c662911848107c986b7fd1478fca00 100644 Binary files a/img/misc/winter/museum_day.png and b/img/misc/winter/museum_day.png differ diff --git a/img/misc/winter/museum_dusk.png b/img/misc/winter/museum_dusk.png index 944542d7fe7549fedd304831845352e86a38860b..19fa93a70ecadbf8e6bc6b10d006c3ff52f79e36 100644 Binary files a/img/misc/winter/museum_dusk.png and b/img/misc/winter/museum_dusk.png differ diff --git a/img/misc/winter/museum_night.png b/img/misc/winter/museum_night.png index 46fb4c55bf134390fdf48634b099f2b3b90407b6..3261e53e7215a22463fd91f58149f33d44922785 100644 Binary files a/img/misc/winter/museum_night.png and b/img/misc/winter/museum_night.png differ diff --git a/img/misc/winter/night_monster_lair_dawn.gif b/img/misc/winter/night_monster_lair_dawn.gif index 4fab4268387bb45c6c41ee6ce2383bc4b29a1ae2..e4eb4f88a9f48841c23ae928b2e5187ad79efac9 100644 Binary files a/img/misc/winter/night_monster_lair_dawn.gif and b/img/misc/winter/night_monster_lair_dawn.gif differ diff --git a/img/misc/winter/night_monster_lair_day.gif b/img/misc/winter/night_monster_lair_day.gif index 22d89b6c9203ff060ab83540a5c9cd7a844b8d53..e524d835dadf39dc92218d4e5cc40e0243451abc 100644 Binary files a/img/misc/winter/night_monster_lair_day.gif and b/img/misc/winter/night_monster_lair_day.gif differ diff --git a/img/misc/winter/night_monster_lair_dusk.gif b/img/misc/winter/night_monster_lair_dusk.gif index c2fe4b79976291f543a59b1c8b1a3e1657d4ad1c..7465bfb174c634d4e47bd79ec74d017f78f0f7ac 100644 Binary files a/img/misc/winter/night_monster_lair_dusk.gif and b/img/misc/winter/night_monster_lair_dusk.gif differ diff --git a/img/misc/winter/night_monster_lair_night.gif b/img/misc/winter/night_monster_lair_night.gif index 97b4ae99f17795f6f0eb6153ce2406ecfa235707..55a61334d7a38f4aa12fb1b11c2fd953cf645e00 100644 Binary files a/img/misc/winter/night_monster_lair_night.gif and b/img/misc/winter/night_monster_lair_night.gif differ diff --git a/img/misc/winter/ocean_dawn.gif b/img/misc/winter/ocean_dawn.gif index 12493afd0caa4e0968b9c8baba19c51ca308a536..3f5e500b66f3c21dfadbadaf13e4cd1ca78c5305 100644 Binary files a/img/misc/winter/ocean_dawn.gif and b/img/misc/winter/ocean_dawn.gif differ diff --git a/img/misc/winter/ocean_day.gif b/img/misc/winter/ocean_day.gif index a3f67c595e0e860df970121b4ac512888c73a2bc..90809ff6807a64a508e6a69e43caed1fb3d4e5d6 100644 Binary files a/img/misc/winter/ocean_day.gif and b/img/misc/winter/ocean_day.gif differ diff --git a/img/misc/winter/ocean_dusk.gif b/img/misc/winter/ocean_dusk.gif index 954ce35cc8f6e58ff5f6249f3f041cd7a7b59559..bb8be7a7dc9bb8126b0831d03eabb8ee514dad10 100644 Binary files a/img/misc/winter/ocean_dusk.gif and b/img/misc/winter/ocean_dusk.gif differ diff --git a/img/misc/winter/ocean_night.gif b/img/misc/winter/ocean_night.gif index a568bacc709952117c6196058aac68f661a93aaa..739fcff49c3e0a543a00e52bdee1ce2a92975f94 100644 Binary files a/img/misc/winter/ocean_night.gif and b/img/misc/winter/ocean_night.gif differ diff --git a/img/misc/winter/office_dawn.png b/img/misc/winter/office_dawn.png index 799b6a9a7230fa9f75d7c55ba2d443082d112438..629b707247184194470dabceeb36f38857312342 100644 Binary files a/img/misc/winter/office_dawn.png and b/img/misc/winter/office_dawn.png differ diff --git a/img/misc/winter/office_day.png b/img/misc/winter/office_day.png index 19d1a8e6bf126ab8fcde1f6b416117f2389c1ffb..f7f9d88c42bd169bb30f6960771956e8b04a354d 100644 Binary files a/img/misc/winter/office_day.png and b/img/misc/winter/office_day.png differ diff --git a/img/misc/winter/office_dusk.png b/img/misc/winter/office_dusk.png index 85f02b6e860a04b5c0b7fd3b9be1a5ed0c16cbe8..f7f9d88c42bd169bb30f6960771956e8b04a354d 100644 Binary files a/img/misc/winter/office_dusk.png and b/img/misc/winter/office_dusk.png differ diff --git a/img/misc/winter/office_night.png b/img/misc/winter/office_night.png index 7374264f3f8267ed206a226eeb7e7f1d7c934bf7..7d1c3c6bb6fd90300d15f1000387b4b4a4a3d38c 100644 Binary files a/img/misc/winter/office_night.png and b/img/misc/winter/office_night.png differ diff --git a/img/misc/winter/park_dawn.png b/img/misc/winter/park_dawn.png index 9d39abc6fb8280f2239e6ac3285ecce8cb73fa0b..aca78cf93153952f52c348f6c30631a649139cf2 100644 Binary files a/img/misc/winter/park_dawn.png and b/img/misc/winter/park_dawn.png differ diff --git a/img/misc/winter/park_day.png b/img/misc/winter/park_day.png index 0bd77a972da508279145940b219396c9b4b1b4d3..4fc5817ae2b362ffbd83c6df7379f162805b6909 100644 Binary files a/img/misc/winter/park_day.png and b/img/misc/winter/park_day.png differ diff --git a/img/misc/winter/park_dusk.png b/img/misc/winter/park_dusk.png index 884d61abcde4ae487d7109f647aa98947908d261..196310bbe05ed46e1398bb76afec212dc9383827 100644 Binary files a/img/misc/winter/park_dusk.png and b/img/misc/winter/park_dusk.png differ diff --git a/img/misc/winter/park_night.png b/img/misc/winter/park_night.png index 410645eac61ac282c86fdf6c89fa3eee5a8421a9..5f7ee3b67167b6e42ed264720e831e08f1b03c8c 100644 Binary files a/img/misc/winter/park_night.png and b/img/misc/winter/park_night.png differ diff --git a/img/misc/winter/police_station_dawn.png b/img/misc/winter/police_station_dawn.png index 1c1646ec0b263352ebcfe91221077e3d64c7b818..05e611d30494cbadde9448641345b77bbd0fe0bb 100644 Binary files a/img/misc/winter/police_station_dawn.png and b/img/misc/winter/police_station_dawn.png differ diff --git a/img/misc/winter/police_station_day.png b/img/misc/winter/police_station_day.png index 5d77434456a9aab34bc646539274f25af4f4f75a..4fad3f54e15d011c379e857091425f81ae1508f5 100644 Binary files a/img/misc/winter/police_station_day.png and b/img/misc/winter/police_station_day.png differ diff --git a/img/misc/winter/police_station_dusk.png b/img/misc/winter/police_station_dusk.png index 3a8abf2dafa03967477636f8a69b6ec6820f5961..188ce02430b42da826533e9f0c805819d58033ba 100644 Binary files a/img/misc/winter/police_station_dusk.png and b/img/misc/winter/police_station_dusk.png differ diff --git a/img/misc/winter/police_station_night.png b/img/misc/winter/police_station_night.png index 1202f5a7f2eba1279bf2d0eec69a34233e936a34..921537357cca351f1fe8bf52245c0fc02cbc8a0a 100644 Binary files a/img/misc/winter/police_station_night.png and b/img/misc/winter/police_station_night.png differ diff --git a/img/misc/winter/pool_dawn.gif b/img/misc/winter/pool_dawn.gif index c8bdf701dc58fb4fefd4edeb01960ab3c0fe980d..0d1ad29a14da3e1053dbaa8500ea18f033fff27b 100644 Binary files a/img/misc/winter/pool_dawn.gif and b/img/misc/winter/pool_dawn.gif differ diff --git a/img/misc/winter/pool_day.gif b/img/misc/winter/pool_day.gif index 45c49f91bbdb8fac132efd46fdd81163ab9e4657..4a5a743d8b5335e1469268c4f4883beee50644b1 100644 Binary files a/img/misc/winter/pool_day.gif and b/img/misc/winter/pool_day.gif differ diff --git a/img/misc/winter/pool_dusk.gif b/img/misc/winter/pool_dusk.gif index 09bc6cca7b24ef6042c456671539945d63106588..2a95b50863deae9575130e96312393ea141725f7 100644 Binary files a/img/misc/winter/pool_dusk.gif and b/img/misc/winter/pool_dusk.gif differ diff --git a/img/misc/winter/pool_night.gif b/img/misc/winter/pool_night.gif index 441d7ee2c9a2eeaff4b2faedc63b6a2cc98074fc..931289715ca001b543ec489c2d47e3cdc4763ca0 100644 Binary files a/img/misc/winter/pool_night.gif and b/img/misc/winter/pool_night.gif differ diff --git a/img/misc/winter/prison_bloodmoon.gif b/img/misc/winter/prison_bloodmoon.gif index b9f0611434aafc8ce13a51195c48a78ef0a9de04..a632c2bba4814f5f8489279781027110660bc65b 100644 Binary files a/img/misc/winter/prison_bloodmoon.gif and b/img/misc/winter/prison_bloodmoon.gif differ diff --git a/img/misc/winter/prison_dawn.gif b/img/misc/winter/prison_dawn.gif index 19e639b50b0c15b2590cdbce9fc89354e12c2a14..cb145eba298bdcdd4c208b9b035bb61b0a3c9787 100644 Binary files a/img/misc/winter/prison_dawn.gif and b/img/misc/winter/prison_dawn.gif differ diff --git a/img/misc/winter/prison_day.gif b/img/misc/winter/prison_day.gif index 44dd9b7cccf580d9069448e6b6dee01c05acee08..cf74fd10abdcdf3fde719b23971cb4513ec0f8f8 100644 Binary files a/img/misc/winter/prison_day.gif and b/img/misc/winter/prison_day.gif differ diff --git a/img/misc/winter/prison_dusk.gif b/img/misc/winter/prison_dusk.gif index 9229a9cb62faa311560393dc806a9a2762317c9c..d3149b074d40774d7d376cae8746dc62e967c474 100644 Binary files a/img/misc/winter/prison_dusk.gif and b/img/misc/winter/prison_dusk.gif differ diff --git a/img/misc/winter/prison_night.gif b/img/misc/winter/prison_night.gif index 4735d19e7f2b71a1d10d9b5826d153adca433256..aeebf9aa38609b6271966827a86ccde9d4da140a 100644 Binary files a/img/misc/winter/prison_night.gif and b/img/misc/winter/prison_night.gif differ diff --git a/img/misc/winter/promenade_beach_dawn.gif b/img/misc/winter/promenade_beach_dawn.gif index 5d808d47c0ca2ef9e21ea01af06d0da4fd654126..29de8cfb8169382387a2828d387f22ed93cb41fd 100644 Binary files a/img/misc/winter/promenade_beach_dawn.gif and b/img/misc/winter/promenade_beach_dawn.gif differ diff --git a/img/misc/winter/promenade_beach_day.gif b/img/misc/winter/promenade_beach_day.gif index de1f57e9749337444e0951bb25af3b56c946827a..35219fec5949c4330b4fe785e30a1478d9c0ef05 100644 Binary files a/img/misc/winter/promenade_beach_day.gif and b/img/misc/winter/promenade_beach_day.gif differ diff --git a/img/misc/winter/promenade_beach_dusk.gif b/img/misc/winter/promenade_beach_dusk.gif index 23cd05733d6680453060a3229feb3578303f31f2..54179196af688ed527e1e2f0dbc641330e781bef 100644 Binary files a/img/misc/winter/promenade_beach_dusk.gif and b/img/misc/winter/promenade_beach_dusk.gif differ diff --git a/img/misc/winter/promenade_beach_night.gif b/img/misc/winter/promenade_beach_night.gif index 54041a70ad5e69a5c566b625341cb520df51ea18..a04b84f3c7527942e04fc300aea4b3df558631a2 100644 Binary files a/img/misc/winter/promenade_beach_night.gif and b/img/misc/winter/promenade_beach_night.gif differ diff --git a/img/misc/winter/pub_dawn.png b/img/misc/winter/pub_dawn.png index 0d7450f798dcc71e51bfb438168c07732766be75..f52d49db4478825f542ec5ce043d4b18c685921e 100644 Binary files a/img/misc/winter/pub_dawn.png and b/img/misc/winter/pub_dawn.png differ diff --git a/img/misc/winter/pub_day.png b/img/misc/winter/pub_day.png index fe39d80b6eb1caef5e6474791da9b3e965312b55..70483473fdc79c2e2704b7f3b386f7623e729a3f 100644 Binary files a/img/misc/winter/pub_day.png and b/img/misc/winter/pub_day.png differ diff --git a/img/misc/winter/pub_dusk.png b/img/misc/winter/pub_dusk.png index 5e1a6109710022a69011d7660897c0334b2fa3ba..70483473fdc79c2e2704b7f3b386f7623e729a3f 100644 Binary files a/img/misc/winter/pub_dusk.png and b/img/misc/winter/pub_dusk.png differ diff --git a/img/misc/winter/pub_night.png b/img/misc/winter/pub_night.png index c76d00b073392844e0287d116af4c1c658472861..1a7b1143b58efd45ba9947044fb0ed5797dd07d0 100644 Binary files a/img/misc/winter/pub_night.png and b/img/misc/winter/pub_night.png differ diff --git a/img/misc/winter/remy_farm_dawn.png b/img/misc/winter/remy_farm_dawn.png index cf241d9677a6b9248e744465a169cc41aec30e2d..6c176f007406a506597f5a3da83308c527c86695 100644 Binary files a/img/misc/winter/remy_farm_dawn.png and b/img/misc/winter/remy_farm_dawn.png differ diff --git a/img/misc/winter/remy_farm_day.png b/img/misc/winter/remy_farm_day.png index f02210d3b197d2b12ec1616bd7e08ed16ecc3500..dabcd97677496b268acfdb0a7291741e7967bb6c 100644 Binary files a/img/misc/winter/remy_farm_day.png and b/img/misc/winter/remy_farm_day.png differ diff --git a/img/misc/winter/remy_farm_dusk.png b/img/misc/winter/remy_farm_dusk.png index db13bd499ce6f78bfefcf2052d7249f5553f577f..5d722f0451706d231f22564139c8a1832cf8b216 100644 Binary files a/img/misc/winter/remy_farm_dusk.png and b/img/misc/winter/remy_farm_dusk.png differ diff --git a/img/misc/winter/remy_farm_night.png b/img/misc/winter/remy_farm_night.png index c3a3f07b5d9c2dce31b01220a81f8000f2e1cf4f..b6d2496af71e808f718ce15a799dfbccefbbe474 100644 Binary files a/img/misc/winter/remy_farm_night.png and b/img/misc/winter/remy_farm_night.png differ diff --git a/img/misc/winter/resi_alley_bloodmoon.gif b/img/misc/winter/resi_alley_bloodmoon.gif index 44dfd10b4066feb6230cfd1588610b9d8b7270fa..eaaf3e2fbd87043bde0a7a3837f866c58a9f4a2a 100644 Binary files a/img/misc/winter/resi_alley_bloodmoon.gif and b/img/misc/winter/resi_alley_bloodmoon.gif differ diff --git a/img/misc/winter/resi_alley_dawn.gif b/img/misc/winter/resi_alley_dawn.gif index 53e00f4902d1acee2c7d608f16d4e26064b382c2..26296dfbd7a44391aa2524e7c4f7fdaf2c4352bb 100644 Binary files a/img/misc/winter/resi_alley_dawn.gif and b/img/misc/winter/resi_alley_dawn.gif differ diff --git a/img/misc/winter/resi_alley_day.gif b/img/misc/winter/resi_alley_day.gif index f6a628d0c522a0eaf508350715856ebb76b2070c..e0ecceb21ec8cb5be1095404a3e41af2c981b87b 100644 Binary files a/img/misc/winter/resi_alley_day.gif and b/img/misc/winter/resi_alley_day.gif differ diff --git a/img/misc/winter/resi_alley_dusk.gif b/img/misc/winter/resi_alley_dusk.gif index 208ecb4e1151c451fe9524101ec6db7ee147d37e..cbb9ea564e0915307aeebb5612acc3797bc7907d 100644 Binary files a/img/misc/winter/resi_alley_dusk.gif and b/img/misc/winter/resi_alley_dusk.gif differ diff --git a/img/misc/winter/resi_alley_night.gif b/img/misc/winter/resi_alley_night.gif index 7f06a203242ef3ed256467f1bbb3d40d7632693e..60c196c91c3211feb764087b597dced1f6116d69 100644 Binary files a/img/misc/winter/resi_alley_night.gif and b/img/misc/winter/resi_alley_night.gif differ diff --git a/img/misc/winter/riding_school_dawn.gif b/img/misc/winter/riding_school_dawn.gif index 4f076ed38b61dd86a657b601ad6468778219acfb..2bf4a956b3bab27e09867bb242773210a420c332 100644 Binary files a/img/misc/winter/riding_school_dawn.gif and b/img/misc/winter/riding_school_dawn.gif differ diff --git a/img/misc/winter/riding_school_day.gif b/img/misc/winter/riding_school_day.gif index 6afaeef0d2673262280de7d16ee84b0a86683955..3f12efc98143dfcd19a92966652c8f2a232201a6 100644 Binary files a/img/misc/winter/riding_school_day.gif and b/img/misc/winter/riding_school_day.gif differ diff --git a/img/misc/winter/riding_school_dusk.gif b/img/misc/winter/riding_school_dusk.gif index 9efeade10be14d32c8832d386d3bf34713e7d155..44eab8fdfa3077862b2979bd7983ff58b50b8f62 100644 Binary files a/img/misc/winter/riding_school_dusk.gif and b/img/misc/winter/riding_school_dusk.gif differ diff --git a/img/misc/winter/riding_school_night.gif b/img/misc/winter/riding_school_night.gif index 7f8335bcf4eeb2993e2c1e9946e329324c857042..7561b49e59f4599e92cc164d668540a1ffd44128 100644 Binary files a/img/misc/winter/riding_school_night.gif and b/img/misc/winter/riding_school_night.gif differ diff --git a/img/misc/winter/ruins_bloodmoon.gif b/img/misc/winter/ruins_bloodmoon.gif index 61b3d3d56c95aa28d8393fa3865a0f01a619e6ea..e870b5fbc65f3b5097b11e36a06d069e5d1a228d 100644 Binary files a/img/misc/winter/ruins_bloodmoon.gif and b/img/misc/winter/ruins_bloodmoon.gif differ diff --git a/img/misc/winter/ruins_dawn.gif b/img/misc/winter/ruins_dawn.gif index 3e1e562657a351e18c31a9dd312e336c0de29de8..c6897246e2f0720a6537f9fe9b5f1109d1479c71 100644 Binary files a/img/misc/winter/ruins_dawn.gif and b/img/misc/winter/ruins_dawn.gif differ diff --git a/img/misc/winter/ruins_day.gif b/img/misc/winter/ruins_day.gif index 9bd348e0e494df801ffda939cebddd860913ff4b..8065b7cae61d40776b8c8f6843d988613d120457 100644 Binary files a/img/misc/winter/ruins_day.gif and b/img/misc/winter/ruins_day.gif differ diff --git a/img/misc/winter/ruins_dusk.gif b/img/misc/winter/ruins_dusk.gif index acfb950eebb306a0cd59d7eabd7f9f0786f07f64..8bf520bebf85329be3b5dd50f3438f00fc6a63dc 100644 Binary files a/img/misc/winter/ruins_dusk.gif and b/img/misc/winter/ruins_dusk.gif differ diff --git a/img/misc/winter/ruins_night.gif b/img/misc/winter/ruins_night.gif index 93587d32466b27f01277d2c7f8d7ba8b9499218c..7e869656f1ee79831b802ee55c3e6d1f949d9472 100644 Binary files a/img/misc/winter/ruins_night.gif and b/img/misc/winter/ruins_night.gif differ diff --git a/img/misc/winter/school_dawn.png b/img/misc/winter/school_dawn.png index f6e2f08e696015224a8d360cf87233694dfc60e2..3341effb3888362261e80d6860fb06a470ca91e7 100644 Binary files a/img/misc/winter/school_dawn.png and b/img/misc/winter/school_dawn.png differ diff --git a/img/misc/winter/school_day.png b/img/misc/winter/school_day.png index 175c1e0a50eaa3b815b80c29447b384bd4d5a559..a8abeb888a1db6fee61e8664ddd5cf003af2a6ff 100644 Binary files a/img/misc/winter/school_day.png and b/img/misc/winter/school_day.png differ diff --git a/img/misc/winter/school_dusk.png b/img/misc/winter/school_dusk.png index 12e37d8604ba7bc55d2e61ecf5cda2cea9ccab1b..a8abeb888a1db6fee61e8664ddd5cf003af2a6ff 100644 Binary files a/img/misc/winter/school_dusk.png and b/img/misc/winter/school_dusk.png differ diff --git a/img/misc/winter/school_night.png b/img/misc/winter/school_night.png index ab76c5866b4ba649533a271f02d0b482fa38e0e1..ba71ddf45d519f8d7f7338cef8d174e516540d07 100644 Binary files a/img/misc/winter/school_night.png and b/img/misc/winter/school_night.png differ diff --git a/img/misc/winter/sepulchre_dawn.png b/img/misc/winter/sepulchre_dawn.png index e1e798687f221c06464324f4927586ca26cdf88d..2d502206d56e3419ea143b1ee175c4917eee4446 100644 Binary files a/img/misc/winter/sepulchre_dawn.png and b/img/misc/winter/sepulchre_dawn.png differ diff --git a/img/misc/winter/sepulchre_day.png b/img/misc/winter/sepulchre_day.png index 41eeed4faf98a29f32299eefe603bf9a1ed35941..7ec1741dbdc5dea4c58c85a77f64416758beebc1 100644 Binary files a/img/misc/winter/sepulchre_day.png and b/img/misc/winter/sepulchre_day.png differ diff --git a/img/misc/winter/sepulchre_dusk.png b/img/misc/winter/sepulchre_dusk.png index 6f81ffd732a5324e03fb95a309942a7bce6785bf..b718f748980c96ffb8c0fed9c6d717efc4b490f0 100644 Binary files a/img/misc/winter/sepulchre_dusk.png and b/img/misc/winter/sepulchre_dusk.png differ diff --git a/img/misc/winter/sepulchre_night.png b/img/misc/winter/sepulchre_night.png index 2132d620c933a14d8353003bb854cbd083166273..8ddeda9ffd5a51c109ca1cb4635f6bf166e86fff 100644 Binary files a/img/misc/winter/sepulchre_night.png and b/img/misc/winter/sepulchre_night.png differ diff --git a/img/misc/winter/sewers_dawn.gif b/img/misc/winter/sewers_dawn.gif index c0f9845f08a8cb77d60959ec3ff167f40b80c803..120c4965eba2896259a500fdb49c33f15b3dd547 100644 Binary files a/img/misc/winter/sewers_dawn.gif and b/img/misc/winter/sewers_dawn.gif differ diff --git a/img/misc/winter/sewers_day.gif b/img/misc/winter/sewers_day.gif index bd27cd1b85eae3006509afc443f12d4b80f5ba3a..d827b75ddc712107d71a0dafb261fb7489473b5b 100644 Binary files a/img/misc/winter/sewers_day.gif and b/img/misc/winter/sewers_day.gif differ diff --git a/img/misc/winter/sewers_dusk.gif b/img/misc/winter/sewers_dusk.gif index cd8a5fd0e678994cf40897f4bb400f90e568d99b..d827b75ddc712107d71a0dafb261fb7489473b5b 100644 Binary files a/img/misc/winter/sewers_dusk.gif and b/img/misc/winter/sewers_dusk.gif differ diff --git a/img/misc/winter/sewers_night.gif b/img/misc/winter/sewers_night.gif index 19ba8c92b33f89f831fa102cb52417c99b71e029..0b7c67c6424d64d2fb12c20b9933128cf28e59fc 100644 Binary files a/img/misc/winter/sewers_night.gif and b/img/misc/winter/sewers_night.gif differ diff --git a/img/misc/winter/sex_shop_dawn.png b/img/misc/winter/sex_shop_dawn.png index bfb2d26375468370f83c5ba933038eea8c901c9b..8eefb5da0c5461fb798ee2223df2fedf33f2be54 100644 Binary files a/img/misc/winter/sex_shop_dawn.png and b/img/misc/winter/sex_shop_dawn.png differ diff --git a/img/misc/winter/sex_shop_day.png b/img/misc/winter/sex_shop_day.png index 65a6b97e0a8b1615ce28ecf1e31507d19464af90..a30e1fd723098d1279ecb389d576263fc1a0a754 100644 Binary files a/img/misc/winter/sex_shop_day.png and b/img/misc/winter/sex_shop_day.png differ diff --git a/img/misc/winter/sex_shop_day_open.gif b/img/misc/winter/sex_shop_day_open.gif index e2f1d393ad82d3e89ac9e677def5b72ab0856b9e..c473cf10666be24f63c99eaeaca0e1873cf58da7 100644 Binary files a/img/misc/winter/sex_shop_day_open.gif and b/img/misc/winter/sex_shop_day_open.gif differ diff --git a/img/misc/winter/sex_shop_dusk.gif b/img/misc/winter/sex_shop_dusk.gif index 6a553b1b91298a882d7ceac42a43c027cdab5010..cf1e105ad2cc114b586e4c2830e374665550a7a6 100644 Binary files a/img/misc/winter/sex_shop_dusk.gif and b/img/misc/winter/sex_shop_dusk.gif differ diff --git a/img/misc/winter/sex_shop_night.gif b/img/misc/winter/sex_shop_night.gif index f0e9f1c31d0eee1f7b6e2c874b9969383b1e17b1..1fc12fb3e429d6d3f57a1873b870e1798cbab9a7 100644 Binary files a/img/misc/winter/sex_shop_night.gif and b/img/misc/winter/sex_shop_night.gif differ diff --git a/img/misc/winter/shopping_centre_dawn.png b/img/misc/winter/shopping_centre_dawn.png index f3bb44e099cf54d3d522ca70ce91c79147bb8bbe..d82c3237e4a3a43a9efdf99dc46d374964bc386a 100644 Binary files a/img/misc/winter/shopping_centre_dawn.png and b/img/misc/winter/shopping_centre_dawn.png differ diff --git a/img/misc/winter/shopping_centre_day.png b/img/misc/winter/shopping_centre_day.png index 2296295e6217c0b99a5e28a73eb9fdbcf26c6152..e9a73c76e41d131d86d5c63a442d29fa3b7fbf77 100644 Binary files a/img/misc/winter/shopping_centre_day.png and b/img/misc/winter/shopping_centre_day.png differ diff --git a/img/misc/winter/shopping_centre_dusk.png b/img/misc/winter/shopping_centre_dusk.png index 085f29d3eceaa0230d24056dcd4a6169c0bf0c87..896019801e63c90f0dcf923fbf5e956f1517bcd7 100644 Binary files a/img/misc/winter/shopping_centre_dusk.png and b/img/misc/winter/shopping_centre_dusk.png differ diff --git a/img/misc/winter/shopping_centre_night.png b/img/misc/winter/shopping_centre_night.png index d9002b36a27c8a4688da5afed51459f669a75c3e..5fd810becbe92c8fb0ed8e70249129fcde80a884 100644 Binary files a/img/misc/winter/shopping_centre_night.png and b/img/misc/winter/shopping_centre_night.png differ diff --git a/img/misc/winter/spa_dawn.gif b/img/misc/winter/spa_dawn.gif index 08ce2ab17086627fd98b8282940614698f6d20f8..3ae1b404c3d69181c3c222e904a372923af28c6b 100644 Binary files a/img/misc/winter/spa_dawn.gif and b/img/misc/winter/spa_dawn.gif differ diff --git a/img/misc/winter/spa_day.gif b/img/misc/winter/spa_day.gif index 96c7c52ebfc878a8543368f3d968fbe31fa224e2..1003e3f4056f3ef598f386c85fd7a7536ab88e8b 100644 Binary files a/img/misc/winter/spa_day.gif and b/img/misc/winter/spa_day.gif differ diff --git a/img/misc/winter/spa_dusk.gif b/img/misc/winter/spa_dusk.gif index 9fe0f614c0c2c0033217667342d8430322f0b695..e3410d7d84d98a3b64601ac5ff5af13717fba2d9 100644 Binary files a/img/misc/winter/spa_dusk.gif and b/img/misc/winter/spa_dusk.gif differ diff --git a/img/misc/winter/spa_night.gif b/img/misc/winter/spa_night.gif index a1d2d89906ed5218e7480cc72b22d4acc761962e..3ffab207752a97f169e1789779227b49566c3f1f 100644 Binary files a/img/misc/winter/spa_night.gif and b/img/misc/winter/spa_night.gif differ diff --git a/img/misc/winter/strip_club_dawn.png b/img/misc/winter/strip_club_dawn.png index d66500900328c07ed304360f2fcf6ef5b06a5a6f..c35b732f2e7271aa9e1a7d1ebfa3cecf3ff0e84a 100644 Binary files a/img/misc/winter/strip_club_dawn.png and b/img/misc/winter/strip_club_dawn.png differ diff --git a/img/misc/winter/strip_club_day.png b/img/misc/winter/strip_club_day.png index 7c5af6ccd123191a3e5d65f780a626c1e7102f8f..c35b732f2e7271aa9e1a7d1ebfa3cecf3ff0e84a 100644 Binary files a/img/misc/winter/strip_club_day.png and b/img/misc/winter/strip_club_day.png differ diff --git a/img/misc/winter/strip_club_dusk.png b/img/misc/winter/strip_club_dusk.png index 95d2e523d71a02ecbc9297f29f459af37861415f..c35b732f2e7271aa9e1a7d1ebfa3cecf3ff0e84a 100644 Binary files a/img/misc/winter/strip_club_dusk.png and b/img/misc/winter/strip_club_dusk.png differ diff --git a/img/misc/winter/strip_club_night.png b/img/misc/winter/strip_club_night.png index 643a52f88c2c272df37a8f303a7106bc64e4184d..7044c951a44d34a650ad80e1134d365721860c24 100644 Binary files a/img/misc/winter/strip_club_night.png and b/img/misc/winter/strip_club_night.png differ diff --git a/img/misc/winter/temple_dawn.png b/img/misc/winter/temple_dawn.png index 1713f3f1e7899f0f82571c31024239b0e3b05e8b..3dc123d3e6c04fabc64f993551afaf07727c42c6 100644 Binary files a/img/misc/winter/temple_dawn.png and b/img/misc/winter/temple_dawn.png differ diff --git a/img/misc/winter/temple_dawn_old.png b/img/misc/winter/temple_dawn_old.png index ed297c8865a7b41c9a808c2e20cf76f40c8d89a3..0678310b925e0dfe7cfa73e35493de7a38de4a70 100644 Binary files a/img/misc/winter/temple_dawn_old.png and b/img/misc/winter/temple_dawn_old.png differ diff --git a/img/misc/winter/temple_day.png b/img/misc/winter/temple_day.png index 44c09950ab73114ac161cbabe0ac18d20e71621f..ae50b20c4a2463b2fad9b4b4596987f962c1135d 100644 Binary files a/img/misc/winter/temple_day.png and b/img/misc/winter/temple_day.png differ diff --git a/img/misc/winter/temple_day_old.png b/img/misc/winter/temple_day_old.png index b675ab3a7f6b9bb073add28b864d719f54198b4e..9713f59131ace839ca3a40a4362799a9ac97143a 100644 Binary files a/img/misc/winter/temple_day_old.png and b/img/misc/winter/temple_day_old.png differ diff --git a/img/misc/winter/temple_dusk.png b/img/misc/winter/temple_dusk.png index e8435960c28d2a557c8c8fcf08d26a156a9bdb29..535e16e15aa80532e5446e6fb495aeee27c2bcbf 100644 Binary files a/img/misc/winter/temple_dusk.png and b/img/misc/winter/temple_dusk.png differ diff --git a/img/misc/winter/temple_dusk_old.png b/img/misc/winter/temple_dusk_old.png index 3d56d10a686c3a45d3b258ccea891cf6a7ed5d0e..91b12c1de33688d9b563dc5bbfd7d608c394f992 100644 Binary files a/img/misc/winter/temple_dusk_old.png and b/img/misc/winter/temple_dusk_old.png differ diff --git a/img/misc/winter/temple_night.png b/img/misc/winter/temple_night.png index 0c850dbf730ed18692fff5ce0daa71514179c6c9..be810cf53037efe0c44b8402792c1ec468215855 100644 Binary files a/img/misc/winter/temple_night.png and b/img/misc/winter/temple_night.png differ diff --git a/img/misc/winter/temple_night_old.png b/img/misc/winter/temple_night_old.png index 57e562bb469982d09a39163714788d174419941e..16db024a7e8d98e24d3a658eaaf0dac2a1e6557b 100644 Binary files a/img/misc/winter/temple_night_old.png and b/img/misc/winter/temple_night_old.png differ diff --git a/img/misc/winter/tentacles_dawn.gif b/img/misc/winter/tentacles_dawn.gif index 3b58edf3b4ee111525786a85141b66ad95bcecdc..72093832e3884f6c17ece5ead0b05aacd0395818 100644 Binary files a/img/misc/winter/tentacles_dawn.gif and b/img/misc/winter/tentacles_dawn.gif differ diff --git a/img/misc/winter/tentacles_day.gif b/img/misc/winter/tentacles_day.gif index eac8f1b94ea8c39c916efdfdd67892487102e81a..72093832e3884f6c17ece5ead0b05aacd0395818 100644 Binary files a/img/misc/winter/tentacles_day.gif and b/img/misc/winter/tentacles_day.gif differ diff --git a/img/misc/winter/tentacles_dusk.gif b/img/misc/winter/tentacles_dusk.gif index eb2c1067b16f1b8cce40e46b7266ac88aeaa2f98..72093832e3884f6c17ece5ead0b05aacd0395818 100644 Binary files a/img/misc/winter/tentacles_dusk.gif and b/img/misc/winter/tentacles_dusk.gif differ diff --git a/img/misc/winter/tentacles_night.gif b/img/misc/winter/tentacles_night.gif index 7c092f50d0108f591dfe0ebf8a86eb549f055da4..72093832e3884f6c17ece5ead0b05aacd0395818 100644 Binary files a/img/misc/winter/tentacles_night.gif and b/img/misc/winter/tentacles_night.gif differ diff --git a/img/misc/winter/tower_bloodmoon.gif b/img/misc/winter/tower_bloodmoon.gif index 779981361c40773ea58e915637ca35507298e7d3..8423b210b48d38ee07251014e0749bd5812b1bb2 100644 Binary files a/img/misc/winter/tower_bloodmoon.gif and b/img/misc/winter/tower_bloodmoon.gif differ diff --git a/img/misc/winter/tower_dawn.gif b/img/misc/winter/tower_dawn.gif index 33663de954f9a05bf925a2838f51386a6733acbe..6161c31edd8bb78229583d98b499750e29fc9a64 100644 Binary files a/img/misc/winter/tower_dawn.gif and b/img/misc/winter/tower_dawn.gif differ diff --git a/img/misc/winter/tower_day.gif b/img/misc/winter/tower_day.gif index 826f9b1649a5823fa0ed39b911ac69f43ade782e..57abee469f6f118df49d008c38ae060a6a7227dc 100644 Binary files a/img/misc/winter/tower_day.gif and b/img/misc/winter/tower_day.gif differ diff --git a/img/misc/winter/tower_dusk.gif b/img/misc/winter/tower_dusk.gif index 7fda8829d4f815bf79a436d7ebba7b028457048e..5177460e61748d6410cea74a25101c0f3f7383fb 100644 Binary files a/img/misc/winter/tower_dusk.gif and b/img/misc/winter/tower_dusk.gif differ diff --git a/img/misc/winter/tower_night.gif b/img/misc/winter/tower_night.gif index bc89962d1a03ebf7a400865a05c2348f624adc37..c58fa2d51e17d9bb557f5bba8d3597cbc8c17eb3 100644 Binary files a/img/misc/winter/tower_night.gif and b/img/misc/winter/tower_night.gif differ diff --git a/img/misc/winter/town_dawn.gif b/img/misc/winter/town_dawn.gif index afea0b70b0908d38942fa2ec81d55059c64e2478..05a2e9c0a09a76637a4bd92b6a8b7d2f410701ba 100644 Binary files a/img/misc/winter/town_dawn.gif and b/img/misc/winter/town_dawn.gif differ diff --git a/img/misc/winter/town_day.gif b/img/misc/winter/town_day.gif index d37ec98558960dbed908dacf899bbca9ccd27633..e718171350af187b80b3c59b0ab8296985ab38fd 100644 Binary files a/img/misc/winter/town_day.gif and b/img/misc/winter/town_day.gif differ diff --git a/img/misc/winter/town_dusk.gif b/img/misc/winter/town_dusk.gif new file mode 100644 index 0000000000000000000000000000000000000000..49ef31dd141d985b0d4e380fcab1a9f80cf02750 Binary files /dev/null and b/img/misc/winter/town_dusk.gif differ diff --git a/img/misc/winter/town_dusk.png b/img/misc/winter/town_dusk.png deleted file mode 100644 index 8b7ded96ce0af75f369ce9b05ffb22ac7ac4562d..0000000000000000000000000000000000000000 Binary files a/img/misc/winter/town_dusk.png and /dev/null differ diff --git a/img/misc/winter/town_night.gif b/img/misc/winter/town_night.gif index cfdda08aad60f54032477b931795b5cbb4e11cf8..ae713223c0ca029adf06a75ce49e12283bf76031 100644 Binary files a/img/misc/winter/town_night.gif and b/img/misc/winter/town_night.gif differ diff --git a/img/misc/winter/underground_dawn.png b/img/misc/winter/underground_dawn.png index 1e8f49237457ffe68314dd1e4bfbe34b197555ce..3949432b2d50957d097708eb06c1bdfaa26ab942 100644 Binary files a/img/misc/winter/underground_dawn.png and b/img/misc/winter/underground_dawn.png differ diff --git a/img/misc/winter/underground_day.png b/img/misc/winter/underground_day.png index 2a3c06f48aecbf63623c434723f2b5e6cf569edf..6758f90d68e28f202a148605045f9169da58079f 100644 Binary files a/img/misc/winter/underground_day.png and b/img/misc/winter/underground_day.png differ diff --git a/img/misc/winter/underground_dusk.png b/img/misc/winter/underground_dusk.png index c093bc6e05dbdec5b50b178b1bb60bd9862c7897..53314299d56dd0a68a8eec47454b47da114a2be1 100644 Binary files a/img/misc/winter/underground_dusk.png and b/img/misc/winter/underground_dusk.png differ diff --git a/img/misc/winter/underground_night.png b/img/misc/winter/underground_night.png index 34c476687e14fd6152d9313d28d4215b94a1434a..ab47291bc644f6643e0ac0fe3dcf8d89c33790cb 100644 Binary files a/img/misc/winter/underground_night.png and b/img/misc/winter/underground_night.png differ diff --git a/img/misc/winter/wolf_cave_dawn.png b/img/misc/winter/wolf_cave_dawn.png index 3b137cf5a3d016691bac6b57efd404ff7b7b2343..3aacb36fa79b8e2fee722a37d838a55b86a524c8 100644 Binary files a/img/misc/winter/wolf_cave_dawn.png and b/img/misc/winter/wolf_cave_dawn.png differ diff --git a/img/misc/winter/wolf_cave_day.png b/img/misc/winter/wolf_cave_day.png index c09c9be029df0e9b0fda647f8da01d2833a33d19..497533a8d1bf3b4d526bd3011e7c8cbe31f3f394 100644 Binary files a/img/misc/winter/wolf_cave_day.png and b/img/misc/winter/wolf_cave_day.png differ diff --git a/img/misc/winter/wolf_cave_dusk.png b/img/misc/winter/wolf_cave_dusk.png index 649b90d1636c5e8c4d32a852f5adc74a9fa54d4b..497533a8d1bf3b4d526bd3011e7c8cbe31f3f394 100644 Binary files a/img/misc/winter/wolf_cave_dusk.png and b/img/misc/winter/wolf_cave_dusk.png differ diff --git a/img/misc/winter/wolf_cave_night.png b/img/misc/winter/wolf_cave_night.png index 7c52321fc98e6355d5429df40d1a20c3f39edb73..8e31ae3163e4b45568a2765bf96a44087dc19947 100644 Binary files a/img/misc/winter/wolf_cave_night.png and b/img/misc/winter/wolf_cave_night.png differ diff --git a/img/misc/world_map.png b/img/misc/world_map.png index 14db86d1aece37cf32c827cad4826dd9534bd525..753067ef31a5088f9ff41352453bacca5c2ec388 100644 Binary files a/img/misc/world_map.png and b/img/misc/world_map.png differ diff --git a/img/misc/world_map_winter.png b/img/misc/world_map_winter.png index 48bd4d45a57ddd551c0e4418edcef8c329ee1504..a732f23d83d7cfb2226a0615ae64a7948eaf25fc 100644 Binary files a/img/misc/world_map_winter.png and b/img/misc/world_map_winter.png differ diff --git a/modules/css/base.css b/modules/css/base.css index ca1e4a34ac419987f6afd021b74c3888849fe7bd..686eb190aba9180360627cb277c1b1926ff9fa7c 100644 --- a/modules/css/base.css +++ b/modules/css/base.css @@ -2037,6 +2037,79 @@ span.suit { top: 128px; } +.skybox, +.skybox_dawn, +.skybox_dawn_haze, +.skybox_day, +.skybox_day_haze, +.skybox_dusk, +.skybox_dusk_haze, +.skybox_night, +.skybox_night_haze, +.skybox_bloodmoon, +.skybox_bloodmoon_haze, +.skybox_dawn_tentacle, +.skybox_day_tentacle, +.skybox_dusk_tentacle, +.skybox_night_tentacle, +.skybox_blank { + position: fixed; + left: 0; + z-index: 9; + user-select: none; + top: 0; + width: 64px; + height: 192px; +} + +.skybox_dawn { + background-color: #fd7d01; +} +.skybox_dawn_haze { + background-image: linear-gradient(#fd7d01, #e5d397 65%); +} +.skybox_day { + background-color: #408aca; +} +.skybox_day_haze { + background-image: linear-gradient(#408aca, #d0ffea 65%); +} +.skybox_dusk { + background-color: #fad6a5; +} +.skybox_dusk_haze { + background-image: linear-gradient(#fad6a5, #d7a350 65%); +} +.skybox_night { + background-color: #280137; +} +.skybox_night_haze { + background-image: linear-gradient(#280137, #1a2753 65%); +} +.skybox_bloodmoon { + background-image: linear-gradient(#8b0804, #280137 20%); +} +.skybox_bloodmoon_haze { + background-image: linear-gradient(#8b0804, #280137 20%, #4f284e 65%); +} + +.skybox_dawn_tentacle { + background-color: #44056d; +} +.skybox_day_tentacle { + background-color: #69159d; +} +.skybox_dusk_tentacle { + background-color: #550e81; +} +.skybox_night_tentacle { + background-color: #2e0854; +} + +.skybox_blank { + background-color: #000000; +} + #world_map { position: relative; left: 0%;