Changes

→‎Alternatives using Content Patcher: update for new Nexus profile pages
Line 3: Line 3:  
<div style="border: 1px solid red; background: #FCC; padding: 1em;">'''XNB mods are an older type of mod and are no longer recommended. SMAPI can't validate them for compatibility. Use XNB mods at your own risk, or see [[#Alternatives using Content Patcher|alternatives using Content Patcher]].'''</div>
 
<div style="border: 1px solid red; background: #FCC; padding: 1em;">'''XNB mods are an older type of mod and are no longer recommended. SMAPI can't validate them for compatibility. Use XNB mods at your own risk, or see [[#Alternatives using Content Patcher|alternatives using Content Patcher]].'''</div>
   −
An '''XNB mod''' replaces some of your game's <tt>.xnb</tt> files to change the game in some way.
+
An '''XNB mod''' replaces some of your game's <samp>.xnb</samp> files to change the game (unlike newer mods that go in your <samp>Mods</samp> folder).
    
==FAQs==
 
==FAQs==
 
===What are XNB mods?===
 
===What are XNB mods?===
XNB mods work by replacing your game's data files (which have a <tt>.xnb</tt> extension). For example, let's say you want to change Abigail's portraits; you can replace <tt>Content/Portraits/Abigail.xnb</tt> with a modded version to do it. (See [[Modding:Editing XNB files|editing XNB files]] for more info on the XNB format.)
+
XNB mods work by replacing your game's data files (which have a <samp>.xnb</samp> extension). For example, let's say you want to change Abigail's portraits; you can replace <samp>Content/Portraits/Abigail.xnb</samp> with a modded version to do it. (See [[Modding:Editing XNB files|editing XNB files]] for more info on the XNB format.)
    
===Why are they discouraged?===
 
===Why are they discouraged?===
 
XNB mods have a lot of limitations, often conflict with each other, usually break when the game updates, are hard to install and remove, etc.
 
XNB mods have a lot of limitations, often conflict with each other, usually break when the game updates, are hard to install and remove, etc.
   −
Consider only using [[Modding:Player Guide|SMAPI mods and content packs]]. These have several benefits over XNB mods:
+
Consider only using [[Modding:Player Guide/Getting Started|SMAPI mods and content packs]]. These have several benefits over XNB mods:
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
Line 22: Line 22:  
| ease of installation
 
| ease of installation
 
| ✘ different for every mod
 
| ✘ different for every mod
|colspan="2"| ✓ drop into <tt>Mods</tt>
+
|colspan="2"| ✓ drop into <samp>Mods</samp>
 
|-  
 
|-  
 
| ease of uninstallation
 
| ease of uninstallation
 
| ✘ manually restore original files
 
| ✘ manually restore original files
|colspan="2"| ✓ remove from <tt>Mods</tt>
+
|colspan="2"| ✓ remove from <samp>Mods</samp>
 
|-
 
|-
 
| update checks
 
| update checks
Line 34: Line 34:  
| compatibility checks
 
| compatibility checks
 
| ✘ none
 
| ✘ none
|colspan="2"| ✓ incompatible mods are disabled before they cause problem<br />✓ [[Modding:SMAPI compatibility|compatibility list]] is regularly updated with updates and workarounds
+
|colspan="2"| ✓ incompatible mods are disabled before they cause problems<br />✓ [[Modding:Mod compatibility|compatibility list]] is regularly updated with updates and workarounds
 
|-
 
|-
 
| mod compatibility
 
| mod compatibility
Line 48: Line 48:  
| game compatibility
 
| game compatibility
 
| ✘ broken by most game updates
 
| ✘ broken by most game updates
|colspan="2"| ✓ SMAPI automatically rewrites many mods for compatibility<br />✓ open-source mods are updated quickly
+
|colspan="2"| ✓ SMAPI automatically rewrites many mods for compatibility<br />✓ [[Modding:Open source|open-source]] mods are updated quickly
 
|}
 
|}
    
===Do they work on Linux, Mac, Windows, or consoles?===
 
===Do they work on Linux, Mac, Windows, or consoles?===
XNB mods work equally on Linux, Mac, and Windows. Consoles aren't supported.
+
XNB mods work equally on Linux, Mac, Windows, and Android. Consoles aren't supported.
    
===Can they corrupt my save?===
 
===Can they corrupt my save?===
Yes, but it's uncommon. Make sure you back up [[#Save files|your save files]] occasionally, and remove any custom content before uninstalling an XNB mod. In most cases, you can fix save corruption by [[Saves#Undo the last save|undoing the last save]].
+
Yes, but it's uncommon. Make sure you back up [[Saves#Finding_save_files|your save files]] occasionally, and remove any custom content before uninstalling an XNB mod. In most cases, you can fix save corruption by [[Saves#Undo the last save|undoing the last save]].
    
===Do they disable Steam achievements?===
 
===Do they disable Steam achievements?===
Line 61: Line 61:     
==Alternatives using Content Patcher==
 
==Alternatives using Content Patcher==
[https://www.nexusmods.com/stardewvalley/mods/1915 Content Patcher] is a SMAPI mod that makes XNB-like changes with all the benefits of [[Modding:Content packs|SMAPI content packs]]. Many XNB mods have a Content Patcher equivalent, or have been updated unofficially to use it. Consider using these instead where available.
+
{{nexus mod|1915|Content Patcher}} is a SMAPI mod that makes XNB-like changes with all the benefits of [[Modding:Content packs|SMAPI content packs]]. Many XNB mods have a Content Patcher equivalent, or have been updated unofficially to use it. Consider using these instead where available.
   −
'''Modders:''' when migrating XNB mods, only use <tt>Action: Load</tt> if you actually need to replace the whole file (e.g. portrait mods). Don't use <tt>Action: Load</tt> for dialogue mods or to change a small part of a file! Always check the official mod page to see if a conversion has been officially uploaded. This list excludes mods native to Content Patcher.
+
'''Modders:'''
 +
* When migrating XNB mods, only use <samp>Action: Load</samp> if you actually need to replace the whole file (''e.g.,'' portrait mods). Don't use <samp>Action: Load</samp> for dialogue mods or to change a small part of a file!
 +
* See ''[https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/ Migrating XNB mods to Content Patcher packs]'' on the official forums for more info about creating conversions.
    
{| class="wikitable plainlinks sortable"
 
{| class="wikitable plainlinks sortable"
 
|-
 
|-
! Mod Name
+
! style="position: sticky; top: 0;"|Mod Name
! Original Author
+
! style="position: sticky; top: 0;"|Original Author
! Content Patcher Equivalent
+
! style="position: sticky; top: 0;"|Content Patcher Equivalent
! Links
+
! style="position: sticky; top: 0;"|Links
 
|-
 
|-
{{/xnb
  −
  |original name  = 2CUTE FarmCave
  −
  |original author = taintedwheat
  −
  |original url    = https://community.playstarbound.com/threads/2cute-farmcave-w-legend-of-zelda-like-fairy-hotspring-also-an-underground-library-update-7-19.117897/
  −
  |update name    = unofficial update
  −
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-40#post-3299086
  −
  |update author  = Allayna
  −
  |update version  = 1.0
  −
}}
   
{{/xnb
 
{{/xnb
 
   |original name  = 15x15 Greenhouse
 
   |original name  = 15x15 Greenhouse
Line 89: Line 82:  
   |update author  = ChiiBee
 
   |update author  = ChiiBee
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = 19th Century Elliott
 +
  |original author = Messias Mummo
 +
  |original url    = {{nexus mod|81}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347504
 +
  |update author  = Marigolden
 +
  |update version  = 1.0-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = 2CUTE FarmCave
 +
  |original author = taintedwheat
 +
  |original url    = https://community.playstarbound.com/threads/2cute-farmcave-w-legend-of-zelda-like-fairy-hotspring-also-an-underground-library-update-7-19.117897/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/updating-mods-for-stardew-valley-1-3.142524/page-64#post-3331098
 +
  |update author  = Opalie
 +
  |update version  = 2.0.1-unofficial.1-opalie
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 97: Line 108:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-21#post-3284310
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-21#post-3284310
 
   |update author  = Allayna
 
   |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = 3D-Slime Hutch
 +
  |original author = anjarpsx
 +
  |original url    = {{nexus mod|737}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-91#post-3325452
 +
  |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 106: Line 126:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-29#post-3289904
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-29#post-3289904
 
   |update author  = paradigmnomad
 
   |update author  = paradigmnomad
  |update version  = 1.0
  −
}}
  −
{{/xnb
  −
  |original name  = Ace's Evelyn
  −
  |original author = Acerbicon
  −
  |original url    = {{nexus mod|933}}
  −
  |update name    = unofficial update
  −
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304585
  −
  |update author  = Aquilegia
   
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 134: Line 145:  
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.1
 
   |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = A Less Yellow Stardew
 +
  |original author = 19062scott and Lark the Brave
 +
  |original url    = {{nexus mod|1387}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-98#post-3330333
 +
  |update author  = minervamaga
 +
  |update version  = 1.4.1-unofficial.minervamaga
 +
}}
 +
{{/xnb
 +
  |original name  = Newly Added Sebastian Cutscene
 +
  |original author = GiosaurusStardew
 +
  |original url    = {{nexus mod|1172}}
 +
  |update name    = unofficial update
 +
  |update url      = http://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-14019
 +
  |update author  = LenneDalben
 +
  |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 154: Line 183:  
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Abigail Lewd Dialogue
+
  |original name  = A Toned Down Stardew Valley
 +
  |original author = LavendarLight
 +
  |original url    = {{nexus mod|1573}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|4080}}
 +
  |update author  = minervamaga
 +
  |update version  = 4.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Abigail Centaur Horse Replacement
 +
  |original author = zcsnightmare
 +
  |original url    = {{nexus mod|281}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-2#post-42820
 +
  |update author  = Kreeate
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Abigail Hair Dye Mod
 +
  |original author = prettykiller
 +
  |original url    = {{nexus mod|2104}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347412
 +
  |update author  = Marigolden
 +
  |update version  = 0.1-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
   |original name  = Abigail Lewd Dialogue
 
   |original author = Entity2004
 
   |original author = Entity2004
 
   |original url    = {{nexus mod|1542}}
 
   |original url    = {{nexus mod|1542}}
Line 179: Line 235:  
   |update author  = MouseyPounds
 
   |update author  = MouseyPounds
 
   |update version  = 1.1
 
   |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Ace's Evelyn
 +
  |original author = Acerbicon
 +
  |original url    = {{nexus mod|933}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304585
 +
  |update author  = Aquilegia
 +
  |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 188: Line 253:  
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Agumon - Dinosaur Replacer
 +
  |original author = Dragonyck
 +
  |original url    = {{nexus mod|2164}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|8976}}
 +
  |update author  = UlyanaLeyana
 +
  |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 196: Line 270:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302103
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302103
 
   |update author  = macaro0n
 
   |update author  = macaro0n
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Alicedafox's New Shirts and New Skirts (Shirts Only)
 +
  |original author = Alicedafox
 +
  |original url    = {{nexus mod|1128}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-88#post-3323500
 +
  |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 241: Line 324:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298392
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298392
 
   |update author  = Allayna
 
   |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Ali's Modern Farm Buildings
 +
  |original author = strawberrymilk95
 +
  |original url    = {{nexus mod|1125}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322076
 +
  |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 260: Line 352:  
   |update author  = acornfaerie
 
   |update author  = acornfaerie
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Ali's Overgrown Fairy Buildings RECOLOR
 +
  |original author = Kasuralixa
 +
  |original url    = {{nexus mod|1328}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-114#post-3342172
 +
  |update author  = pepoluan
 +
  |update version  = 1.0.0-unofficial2.pepoluan
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 280: Line 381:  
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Altaria (Pokemon) (horse replacer)
+
  |original name  = All About Maru
 +
  |original author = Maiz
 +
  |original url    = {{nexus mod|94}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3347131
 +
  |update author  = Marigolden
 +
  |update version  = 1.1.0-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
   |original name  = Altaria (Pokemon) (horse replacer)
 
   |original author = Zhuria
 
   |original author = Zhuria
 
   |original url    = {{nexus mod|145}}
 
   |original url    = {{nexus mod|145}}
Line 287: Line 397:  
   |update author  = Allayna
 
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Alternative Evelyn
 +
  |original author = StaticOpium
 +
  |original url    = {{nexus mod|688}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-5#post-66222
 +
  |update author  = NeutronPong
 +
  |update version  = 1.1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 303: Line 422:  
   |update name    = unofficial update
 
   |update name    = unofficial update
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3306010
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3306010
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Alternate Dino Colors
 +
  |original author = DarkKassanova
 +
  |original url    = {{nexus mod|186}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-93#post-3326211
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
Line 311: Line 439:  
   |original url    = {{nexus mod|377}}
 
   |original url    = {{nexus mod|377}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302687
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322545
   |update author  = SuperElement & Allayna
+
   |update author  = coldazrael, SuperElement & Allayna
 
   |update version  = 3.0
 
   |update version  = 3.0
 +
}}
 +
{{/xnb
 +
  |original name  = Alternate Sheep Colors
 +
  |original author = DarkKassanova
 +
  |original url    = {{nexus mod|184}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
 +
  |update author  = Marigolden
 +
  |update version  = 1.1-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Amaterasu Dog Replacement
 +
  |original author = carnage157
 +
  |original url    = https://community.playstarbound.com/threads/cals-pet-replacements-amaterasu-carbuncle-moogle-last-updated-5-12-16.109941/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-70#post-3307632
 +
  |update author  = Reppamon
 +
  |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 323: Line 469:  
   |update author  = MouseyPounds
 
   |update author  = MouseyPounds
 
   |update version  = 1.1
 
   |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Animal Onesies for Toddlers
 +
  |original author = pizza margherita
 +
  |original url    = https://community.playstarbound.com/threads/animal-onesies-for-toddlers-junimo-onesies-are-up.111041/
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/#post-36805
 +
  |update author  = DamnedxAngel
 +
  |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 332: Line 487:  
   |update author  = coldazrael & Fyn
 
   |update author  = coldazrael & Fyn
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Anthro Children- Cats
 +
  |original author = ninjakaami
 +
  |original url    = {{nexus mod|503}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-105#post-3335926
 +
  |update author  = SpringsSong
 +
  |update version  = 1.0.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 379: Line 543:  
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Bath House Hot Spring
+
   |original name  = Baechu's Portraits
   |original author = MiniPantsu
+
   |original author = Baechu
   |original url    = {{nexus mod|558}}
+
   |original url    = {{nexus mod|3218}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258917
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-88#post-3323500
   |update author  = paradigmnomad
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Bathroom After 2nd House Upgrade
+
   |original name  = Baechu's Portraits
   |original author = DevilBro
+
   |original author = Baechu
   |original url    = {{nexus mod|299}}
+
   |original url    = {{nexus mod|3218}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-20#post-3283861
+
  |update url      = {{nexus mod|8942}}
   |update author  = MouseyPounds
+
  |update author  = orientalmelon
   |update version  = 1.4.1
+
  |update version  = 1.0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Baechu's Portraits Seasonal SVO
 +
  |original author = Baechu
 +
  |original url    = {{nexus mod|3218}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-84#post-55753
 +
  |update author  = bunwangji
 +
  |update version  = 1.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Barfy's Furniture Replacements
 +
  |original author = barfyscorpion
 +
  |original url    = https://community.playstarbound.com/threads/barfys-fancy-farmhouses-and-other-addons-update-links-are-back-up.112984/
 +
  |update name    = Barfy's Home Decor
 +
  |update url      = {{nexus mod|3129}}
 +
  |update author  = sylveonne
 +
  |update version  = 1.1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Bath House Hot Spring
 +
  |original author = MiniPantsu
 +
  |original url    = {{nexus mod|558}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258917
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Bath House Hot Spring Mod
 +
  |original author = MiniPantsu
 +
  |original url    = {{nexus mod|558}}
 +
  |update name    = Bathhouse Hot Spring - Content Patcher
 +
  |update url      = {{nexus mod|3110}}
 +
  |update author  = Nanogamer7
 +
  |update version  = 1.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Bathhouse Shortcut
 +
  |original author = Plutey
 +
  |original url    = {{nexus mod|368}}
 +
  |update name    = unofficial update
 +
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-70#post-3307508
 +
  |update author  = Seyph
 +
  |update version  = 1.0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Bathroom After 2nd House Upgrade
 +
  |original author = DevilBro
 +
  |original url    = {{nexus mod|299}}
 +
  |update name    = unofficial update
 +
  |update url      = http://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-51298
 +
   |update author  = mouse
 +
   |update version  = 1.0.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 412: Line 630:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276212
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276212
 
   |update author  = waftwaffle
 
   |update author  = waftwaffle
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Bearish Harvey
 +
  |original author = Quart de Carton
 +
  |original url    = https://community.playstarbound.com/threads/old-post-in-new-thread-mod-list-modding-guides-and-general-modding-discussion.106868/page-8#post-2795746
 +
  |update name    = Official update
 +
  |update url      = {{nexus mod|4091}}
 +
  |update author  = annachibi
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 445: Line 672:  
   |original author = Lumisteria
 
   |original author = Lumisteria
 
   |original url    = {{nexus mod|361}}
 
   |original url    = {{nexus mod|361}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302144
+
   |update url      = {{nexus mod|361}}
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 0.1
 
   |update version  = 0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Befriend Marlon and Gunther
 +
  |original author = Yoshimax
 +
  |original url    = {{nexus mod|2569}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/updating-mods-for-stardew-valley-1-3-closed.142524/page-78#post-3343907
 +
  |update author  = Pathoschild
 +
  |update version  = 1.05
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 454: Line 690:  
   |original author = Gweniaczek
 
   |original author = Gweniaczek
 
   |original url    = {{nexus mod|1848}}
 
   |original url    = {{nexus mod|1848}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258738
+
   |update url      = {{nexus mod|1848}}
   |update author  = paradigmnomad
+
   |update author  = Gweniacsek
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 466: Line 702:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258840
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258840
 
   |update author  = ShneekeyTheLost
 
   |update author  = ShneekeyTheLost
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Better Crop Visibility
 +
  |original author = Kona
 +
  |original url    = {{nexus mod|7459}}
 +
  |update name    = Better Crop Visibility
 +
  |update url      = {{nexus mod|8839}}
 +
  |update author  = UlyanaLeyana
 +
  |update version  = 2.1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Better Dying Grandpa
 +
  |original author = MattytheMouse
 +
  |original url    = {{nexus mod|418}}
 +
  |update name    = Better Dying Grandpa Redux - CP
 +
  |update url      = {{nexus mod|8075}}
 +
  |update author  = Faedelity
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 476: Line 730:  
   |update author  = MouseyPounds
 
   |update author  = MouseyPounds
 
   |update version  = 1.1
 
   |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Better Harvey Character Sprite
 +
  |original author = Plutey/Androxilogin
 +
  |original url    = {{nexus mod|363}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-4#post-52324
 +
  |update author  = Kreeate
 +
  |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 482: Line 745:  
   |original url    = {{nexus mod|1421}}
 
   |original url    = {{nexus mod|1421}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3267340
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347640
   |update author  = jhunichi
+
   |update author  = Jnuchi & imany
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Better Pigs & Recolours (v1.0)
 +
  |original author = Zhuria
 +
  |original url    = https://community.playstarbound.com/threads/better-pigs-recolours.109883/
 +
  |update name    = unofficial update
 +
  |update url      = http://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-56060
 +
  |update author  = Farilar
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Better Pigs & Recolours
+
   |original name  = Better Pigs & Recolours (v2.1)
 
   |original author = Zhuria
 
   |original author = Zhuria
 
   |original url    = https://community.playstarbound.com/threads/better-pigs-recolours.109883/
 
   |original url    = https://community.playstarbound.com/threads/better-pigs-recolours.109883/
Line 494: Line 766:  
   |update author  = twixstix
 
   |update author  = twixstix
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Better Rain
 +
  |original author = Omnicorn
 +
  |original url    = {{nexus mod|146}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347504
 +
  |update author  = Marigolden
 +
  |update version  = 1.0.5-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 521: Line 802:  
   |update author  = minervamaga
 
   |update author  = minervamaga
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Bigger Cave
 +
  |original author = KingJoey
 +
  |original url    = https://community.playstarbound.com/threads/bigger-cave-now-with-2-floors-and-farmable.109636/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/bigger-cave-now-with-2-floors-and-farmable.109636/page-6#post-3328716
 +
  |update author  = XiNaru
 +
  |update version  = 1.0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Bigger Farm (Carpenter compatible)
 +
  |original author = KingJoey
 +
  |original url    = https://community.playstarbound.com/threads/no-api-required-bigger-farm-carpenter-compatible.110398/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-91#post-3325112
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Biker Jacket Sebastian
 +
  |original author = TheMainFlamingoose
 +
  |original url    = {{nexus mod|2291}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-40583
 +
  |update author  = Techy-Jaden
 +
  |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 538: Line 846:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278384
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278384
 
   |update author  = Pak_RT & paradigmnomad
 
   |update author  = Pak_RT & paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Black Cat
 +
  |original author = casildak
 +
  |original url    = {{nexus mod|286}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321024
 +
  |update author  = winterykite
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 598: Line 915:  
   |original author = hisameartwork
 
   |original author = hisameartwork
 
   |original url    = {{nexus mod|1856}}
 
   |original url    = {{nexus mod|1856}}
   |update name    = unofficial update
+
   |update name    = unofficial update  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-22#post-3284987
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-82#post-3318386
   |update author  = Allayna
+
   |update author  = Allayna (Corrected by SheiFoxy)
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Blue Community Center
 +
  |original author = Sabrina Pegasigh
 +
  |original url    = {{nexus mod|1279}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-130#post-3366621
 +
  |update author  = ExnoticE
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 620: Line 946:  
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Bootleg NES Chrono Trigger Frog
 +
  |original author = Plutey
 +
  |original url    = {{nexus mod|311}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348738
 +
  |update author  = Marigolden
 +
  |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 646: Line 981:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271817
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271817
 
   |update author  = D.Grey
 
   |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Brunette Penny
 +
  |original author = Lechet
 +
  |original url    = {{nexus mod|19}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-71#post-3308320
 +
  |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 674: Line 1,018:  
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Capsule Slime Incubator
 +
  |original author = hassan94935
 +
  |original url    = {{nexus mod|1226}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321936
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Carbuncle Cats
 +
  |original author = Cal
 +
  |original url    = {{nexus mod|303}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357233
 +
  |update author  = Allayna
 +
  |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 736: Line 1,098:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3261364
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3261364
 
   |update author  = arkoiris
 
   |update author  = arkoiris
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Catsine's Victorian Beehouses
 +
  |original author = Ernest/Catsine
 +
  |original url    = {{nexus mod|3297}}
 +
  |update name    = unofficial mod
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-115#post-3345858
 +
  |update author  = xbukimina
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Cel's Sheep
 +
  |original author = Celesty
 +
  |original url    = {{nexus mod|3027}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3321993
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Cerri's Walls and Floors
 +
  |original author = CerridwynMorgana
 +
  |original url    = {{nexus mod|1456}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321936
 +
  |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 761: Line 1,150:  
   |original url    = {{nexus mod|13}}
 
   |original url    = {{nexus mod|13}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272744
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-108#post-3338254
   |update author  = D.Grey
+
   |update author  = pepoluan
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 775: Line 1,164:  
}}
 
}}
 
{{/xnb
 
{{/xnb
  |original name  = Chic Cute Kitchen
+
   |original name  = Chicken Overhaul
  |original author = Mi/Campanulamis
  −
  |original url    = {{nexus mod|1018}}
  −
  |update name    = unofficial update
  −
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-14#post-3279168
  −
  |update author  = Kuriiyo
  −
  |update version  = 1.3
  −
}}
  −
{{/xnb
  −
   |original name  = Chicken Overhaul
   
   |original author = Minakie
 
   |original author = Minakie
 
   |original url    = {{nexus mod|918}}
 
   |original url    = {{nexus mod|918}}
Line 797: Line 1,177:  
   |original url    = {{nexus mod|1319}}
 
   |original url    = {{nexus mod|1319}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3261364
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259911
 
   |update author  = paradigmnomad
 
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Chickens to Parrots v2
 +
  |original author = gizomo
 +
  |original url    = https://community.playstarbound.com/threads/turns-all-your-chickens-into-parrots.135204/
 +
  |update name    = Tropical Birds
 +
  |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-98#post-73844
 +
  |update author  = Allayna
 +
  |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 811: Line 1,200:  
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Community Center Bundle Overhauls
+
   |original name  = Clean Shane's Room
   |original author = 7Yrs
+
   |original author = pandapants87 aka Ora
   |original url    = {{nexus mod|1062}}
+
   |original url    = {{nexus mod|575}}
 +
  |update name    = Official update
 +
  |update url      = {{nexus mod|575}}
 +
  |update author  = pandapants87 and minervamaga
 +
  |update version  = 2.0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Clean Shave Harvey
 +
  |original author = Gemma
 +
  |original url    = {{nexus mod|71}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275848
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347412
   |update author  = Kuriiyo
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Coordinated Crafting Bars
+
   |original name  = Cleaner Barns and Coops
   |original author = yifalchunbee
+
   |original author = Fuse
   |original url    = {{nexus mod|554}}
+
   |original url    = {{nexus mod|926}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-13#post-3278756
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-119#post-3351045
   |update author  = Shalassa & arkoiris
+
   |update author  = stevanihalim
   |update version  = 1.0
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = CRABBIT's new hair - combined
+
   |original name  = Cobblestone Path to Dark Grey Stone
   |original author = CRABBIT
+
   |original author = GoddessOfThieves
   |original url    = {{nexus mod|1368}}
+
   |original url    = {{nexus mod|165}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278197
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = Kuriiyo
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Crioulo horse
+
   |original name  = Cockatiel Chickens
   |original author = Loo
+
   |original author = VanillaTiel 
   |original url    = {{nexus mod|1059}}
+
   |original url    = {{nexus mod|149}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280497
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347504
   |update author  = Amx
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Custom Farm Buildings (Non-Seasonal)
+
   |original name  = Coii's Hair Sets Pack
   |original author = Billy0815
+
   |original author = Coii
   |original url    = {{nexus mod|1413}}
+
   |original url    = {{nexus mod|2869}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-69#post-47618
   |update author  = D.Grey
+
   |update author  = UlyanaLeyana
 +
  |update version  = 1.4.0-unofficial.3
 +
}}
 +
{{/xnb
 +
  |original name  = Cold Weather Haley
 +
  |original author = Sessurea
 +
  |original url    = {{nexus mod|429}}
 +
  |update name    = Cold Weather Haley - Content Patcher
 +
  |update url      = {{nexus mod|3091}}
 +
  |update author  = Nanogamer7
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Custom Farm Buildings (Seasonal)
+
   |original name  = Colorful Crystal Paths
   |original author = billy0815
+
   |original author = FoxyFullmoon
   |original url    = {{nexus mod|1451}}
+
   |original url    = {{nexus mod|549}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272444
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-115#post-3345549
   |update author  = hatmouse
+
   |update author  = k10_ftw/krissymarie
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Cute Cursor
+
   |original name  = Community Center Bundle Overhauls
   |original author = MissMochi
+
   |original author = 7Yrs
   |original url    = {{nexus mod|1727}}
+
   |original url    = {{nexus mod|1062}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3304011
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-125#post-3358330
   |update author  = kngermanotta
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.4.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Cute Shirts Mod
+
   |original name  = Compact Bathroom for your Farmhouse
   |original author = tacodevourer
+
   |original author = Prismuth
   |original url    = {{nexus mod|1362}}
+
   |original url    = {{nexus mod|1626}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-48#post-3300802
+
   |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-46#post-29354
   |update author  = macaro0n
+
   |update author  = Rmdhn
   |update version  = 1.0
+
   |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Cuter Fatter Cows
+
   |original name  = Coordinated Crafting Bars
   |original author = IdentityPollution
+
   |original author = yifalchunbee
   |original url    = {{nexus mod|348}}
+
   |original url    = {{nexus mod|554}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291433
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-13#post-3278756
   |update author  = mellowmallow
+
   |update author  = Shalassa & arkoiris
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dae's Marnie and Jas Character Redesgins
+
   |original name  = Cozy Fishing Farm
   |original author = daeranilen
+
   |original author = opalie
   |original url    = https://community.playstarbound.com/threads/daes-character-redesigns-jodi-vincent-kent-jas-marnie.127409/
+
   |original url    = {{nexus mod|1398}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-66#post-3306920
   |update author  = Ensifera
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Daisen Mod - Replacement
+
   |original name  = CRABBIT's new hair - combined
   |original author = saturn
+
   |original author = CRABBIT
   |original url    = {{nexus mod|1540}}
+
   |original url    = {{nexus mod|1368}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302894
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278197
   |update author  = coldazrael
+
   |update author  = Kuriiyo
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dangan Ronpa Trigger Happy Havoc Female Hair and Shirts
+
   |original name  = Crimson's Rock Crab Recolors
   |original author = ZeiaZeh
+
   |original author = nekoCrimson
   |original url    = {{nexus mod|163}}
+
   |original url    = {{nexus mod|1743}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-74#post-3310439
   |update author  = coldazrael
+
   |update author  = TheTearer
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dark Buildings
+
   |original name  = Crioulo horse
   |original author = StaticOpium
+
   |original author = Loo
   |original url    = {{nexus mod|668}}
+
   |original url    = {{nexus mod|1059}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280497
   |update author  = coldazrael
+
   |update author  = Amx
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dark Red Haired Leah
+
   |original name  = Custom Farm Buildings (Non-Seasonal)
   |original author = Satadoros
+
   |original author = Billy0815
   |original url    = {{nexus mod|124}}
+
   |original url    = {{nexus mod|1413}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277227
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
 
   |update author  = D.Grey
 
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Darker Wood and Gold Craftables
+
   |original name  = Custom Farm Buildings (Seasonal)
   |original author = Eemie
+
   |original author = billy0815
   |original url    = {{nexus mod|687}}
+
   |original url    = {{nexus mod|1451}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-14#post-3279235
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272444
   |update author  = Fyn
+
   |update author  = hatmouse
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dachshund (Dog Replacer)
+
   |original name  = Cute Cursor
   |original author = DarkKassanova
+
   |original author = MissMochi
   |original url    = {{nexus mod|156}}
+
   |original url    = {{nexus mod|1727}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274729
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3304011
   |update author  = tera415
+
   |update author  = kngermanotta
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dialogue Expansion - Eilliot (Doki Doki Compatible)
+
   |original name  = Cute Pink Albino Bunny Recolor
   |original author = Sabreene
+
   |original author = Jirachi
   |original url    = {{nexus mod|1648}}
+
   |original url    = {{nexus mod|1117}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271742
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-101#post-3332744
   |update author  = ayahimew
+
   |update author  = netish
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dino Velociraptor Reskin
+
   |original name  = Cute Shirts Mod
   |original author = Zynonia
+
   |original author = tacodevourer
   |original url    = {{nexus mod|825}}
+
   |original url    = {{nexus mod|1362}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-21#post-3284410
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-48#post-3300802
   |update author  = Sparrows
+
   |update author  = macaro0n
  |update version  = 1.1
  −
}}
  −
{{/xnb
  −
  |original name  = Dirty Talking Sam (18+)
  −
  |original author = Kagurahime
  −
  |original url    = {{nexus mod|862}}
  −
  |update name    = unofficial update
  −
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260520
  −
  |update author  = paradigmnomad
   
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Diverse Stardew Valley
+
   |original name  = Cuter Fatter Cows
   |original author = nonsnufffie & SarahSyna
+
   |original author = IdentityPollution
   |original url    = https://community.playstarbound.com/threads/diverse-stardew-unofficial-continuation-jas-kent-and-neat-shane-added-27-05-17.125163/
+
   |original url    = {{nexus mod|348}}
 
   |update name    = official update
 
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/diverse-stardew-unofficial-continuation-marnie-added-06-05-18.125163/
+
   |update url      = {{nexus mod|348}}
   |update author  = SarahSyna & Fyn
+
   |update author  = SoulOfSorin
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dizor's Wizard Redraw
+
   |original name  = dabsihao's bb GenderSwap
   |original author = Dizor
+
   |original author = dabsihao
   |original url    = {{nexus mod|74}}
+
   |original url    = https://bbs.3dmgame.com/thread-5052775-1-1.html
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275660
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/#post-28714
   |update author  = Pak_RT
+
   |update author  = Flyff
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dog Reskins Mod
+
   |original name  = Dae's Marnie and Jas Character Redesgins
   |original author = magimatica
+
   |original author = daeranilen
   |original url    = {{nexus mod|1098}}
+
   |original url    = https://community.playstarbound.com/threads/daes-character-redesigns-jodi-vincent-kent-jas-marnie.127409/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274843
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
   |update author  = D.Grey
+
   |update author  = Ensifera
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dog Bandana
+
   |original name  = Daisen Mod - Replacement
   |original author = JamieDepledge
+
   |original author = saturn
   |original url    = {{nexus mod|548}}
+
   |original url    = {{nexus mod|1540}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-43#post-3299873
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302894
   |update author  = farmerjack
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Doki Doki Dialogue - Elliot
+
   |original name  = Dangan Ronpa Trigger Happy Havoc Female Hair and Shirts
   |original author = Alistairweekend
+
   |original author = ZeiaZeh
   |original url    = {{nexus mod|1560}}
+
   |original url    = {{nexus mod|163}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271742
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
   |update author  = ayahimew
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dratini Shiny and Dratini Cat and Dog Replacement
+
   |original name  = Dark Buildings
   |original author = linasouls9
+
   |original author = StaticOpium
   |original url    = {{nexus mod|1508}}
+
   |original url    = {{nexus mod|668}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298392
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = Allayna
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Drapper Krobus
+
   |original name  = Dark-Haired Leah
   |original author = ProbablyAnonymous
+
   |original author = Jokerine
   |original url    = {{nexus mod|2459}}
+
   |original url    = {{nexus mod|200}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = coldazrael
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 2.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = DreamBurrow's Elliott Portrait
+
   |original name  = Dark Red Haired Leah
   |original author = DreamBurrow
+
   |original author = Satadoros
   |original url    = {{nexus mod|158}}
+
   |original url    = {{nexus mod|124}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276212
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277227
   |update author  = waftwaffle
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Early Open Shops v1.2
+
   |original name  = Darker Watered Soil
   |original author = mmanlapat
+
   |original author = Shardust
   |original url    = {{nexus mod|1091}}
+
   |original url    = {{nexus mod|1611}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278636
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-96#post-3329578
   |update author  = Shalassa
+
   |update author  = pandachinoman
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Easy Fishing 
+
   |original name  = Darker Wood and Gold Craftables
  |original author = mmanlapat
  −
  |original url    = {{nexus mod|1114}}
  −
  |update name    = Lazy Fish
  −
  |update url      = {{nexus mod|1971}}
  −
  |update author  = ShneekeyTheLost
  −
  |update version  = 1.1 or 1.2
  −
}}
  −
{{/xnb
  −
  |original name  = Eemie Animal Collection
   
   |original author = Eemie
 
   |original author = Eemie
   |original url    = {{nexus author|34984615}}
+
   |original url    = {{nexus mod|687}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277270
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
   |update author  = D.Grey & paradigmnomad
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie's Classy New Interior
+
   |original name  = Dachshund (Dog Replacer)
   |original author = Eemie
+
   |original author = DarkKassanova
   |original url    = {{nexus mod|854}}
+
   |original url    = {{nexus mod|156}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305827
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274729
   |update author  = coldazrael, littlesin21, Asher404, acornfaerie
+
   |update author  = tera415
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Cute Long Hairstyles
+
   |original name  = DCBurger's Portraits (Hi-Res Only)
   |original author = Eemie
+
   |original author = DCBurger
   |original url    = {{nexus mod|910}}
+
   |original url    = {{nexus mod|888}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3267152
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-89#post-3324251
   |update author  = jhunichi
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Dutch Farm Buildings
+
   |original name  = DD's Handsome Harvey
   |original author = Eemie
+
   |original author = DewdropDewdrop
   |original url    = {{nexus mod|1659}}
+
   |original url    = {{nexus mod|234}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271635
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = hatmouse
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Iron Stone Cemetery Fence
+
   |original name  = Deluxe Barn Fix and more Space
   |original author = Eemie
+
   |original author = dizarus
   |original url    = {{nexus mod|1033}}
+
   |original url    = {{nexus mod|305}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275040
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357649
   |update author  = Fyn
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Just Another Map Recolour
+
   |original name  = Derpy Pugs
   |original author = Eemie
+
   |original author = Slimberton
   |original url    = {{nexus mod|599}}
+
   |original url    = {{nexus mod|278}}
   |update name    = official update
+
   |update name    = unofficial update
   |update url      = {{nexus mod|2050}}
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-127#post-3360538
   |update author  = minervamaga
+
   |update author  = jenf
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie's English Lamp Posts
+
   |original name  = Dialogue Expansion - Eilliot (Doki Doki Compatible)
   |original author = Eemie
+
   |original author = Sabreene
   |original url    = {{nexus mod|473}}
+
   |original url    = {{nexus mod|1648}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303215
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271742
   |update author  = coldazrael, Kuriiyo & Pathoschild
+
   |update author  = ayahimew
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Medieval Modern Buildings
+
   |original name  = Dino Velociraptor Reskin
   |original author = Eemie
+
   |original author = Zynonia
   |original url    = {{nexus mod|419}}
+
   |original url    = {{nexus mod|825}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3267221
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-21#post-3284410
   |update author  = jhunichi
+
   |update author  = Sparrows
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie New paths
+
   |original name  = Dirty Talking Sam (18+)
   |original author = Eemie
+
   |original author = Kagurahime
   |original url    = {{nexus mod|607}}
+
   |original url    = {{nexus mod|862}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275040
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260520
   |update author  = Fyn
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Seasonal Victorian Buildings
+
   |original name  = Diverse Stardew Valley
   |original author = Eemie
+
   |original author = nonsnufffie & SarahSyna
   |original url    = {{nexus mod|891}}
+
   |original url    = https://community.playstarbound.com/threads/diverse-stardew-unofficial-continuation-jas-kent-and-neat-shane-added-27-05-17.125163/
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271635
+
   |update url      = https://community.playstarbound.com/threads/diverse-stardew-unofficial-continuation-marnie-added-06-05-18.125163/
   |update author  = hatmouse
+
   |update author  = SarahSyna & Fyn
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie's Squirrel
+
   |original name  = Dizor's Character Redraws
   |original author = Eemie
+
   |original author = Dizor
   |original url    = {{nexus mod|1658}}
+
   |original url    = {{nexus author|Dizor}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-99#post-3331859
   |update author  = coldazrael
+
   |update author  = minervamaga
   |update version  = 1.0
+
   |update version  = 1.0.0-unofficial.1-minervamaga
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Victorian Mailbox 
+
   |original name  = Dizor's Wizard Redraw
   |original author = mmanlapat
+
   |original author = Dizor
   |original url    = {{nexus mod|1069}}
+
   |original url    = {{nexus mod|74}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3261025
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275660
   |update author  = .lavender.
+
   |update author  = Pak_RT
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Wildflowers
+
   |original name  = Dog Reskins Mod
   |original author = Eemie
+
   |original author = magimatica
   |original url    = {{nexus mod|1235}}
+
   |original url    = {{nexus mod|1098}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273640
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274843
   |update author  = Seyph
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eggplant Horse (Toumato - Obon Horse)
+
   |original name  = Dog Bandana
   |original author = Toumato/kyubey777
+
   |original author = JamieDepledge
   |original url    = {{nexus mod|100}}
+
   |original url    = {{nexus mod|548}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273395
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-43#post-3299873
   |update author  = hatmouse
+
   |update author  = farmerjack
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Elle's Pig Replacements
+
   |original name  = Doki Doki Dialogue - Elliot
   |original author = junimods
+
   |original author = Alistairweekend
   |original url    = https://community.playstarbound.com/threads/elles-barn-and-coop-animal-replacements.126156/
+
   |original url    = {{nexus mod|1560}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271742
   |update author  = Ensifera
+
   |update author  = ayahimew
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Elle's Verata (Goat Replacement)
+
   |original name  = Dratini Shiny and Dratini Cat and Dog Replacement
   |original author = junimods
+
   |original author = linasouls9
   |original url    = https://community.playstarbound.com/threads/elles-barn-and-coop-animal-replacements.126156/
+
   |original url    = {{nexus mod|1508}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304718
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
   |update author  = Ches713
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Elle's White Rabbit
+
   |original name  = Drapper Krobus
   |original author = junimods
+
   |original author = ProbablyAnonymous
   |original url    = https://community.playstarbound.com/threads/elles-barn-and-coop-animal-replacements.126156/
+
   |original url    = {{nexus mod|2459}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
   |update author  = Ensifera
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Elliott Girl Portrait Ver
+
   |original name  = DreamBurrow's Elliott Portrait
   |original author = EX renkon
+
   |original author = DreamBurrow
   |original url    = {{nexus mod|1936}}
+
   |original url    = {{nexus mod|158}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276212
   |update author  = coldazrael
+
   |update author  = waftwaffle
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Elliott Portrait Mod
+
   |original name  = Dust Spirit Recolor- Susuwatari
   |original author = Lo0bo0
+
   |original author = FinalMantasyX
   |original url    = {{nexus mod|738}}
+
   |original url    = https://community.playstarbound.com/threads/dust-spirit-recolor-susuwatari-soot-spirits-from-spirited-away.107820/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-4#post-52216
   |update author  = coldazrael
+
   |update author  = Shaymin
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Elliot Replacer - Earlier Development Version
+
   |original name  = DW3 Agumon Dinosaur Replacer
   |original author = Thoroughly
+
   |original author = boofdawg
   |original url    = {{nexus mod|27}}
+
   |original url    = {{nexus mod|3276}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|8976}}
 +
  |update author  = UlyanaLeyana
 +
  |update version  = 1.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Dwarf Jawa
 +
  |original author = GreaterPorpoise
 +
  |original url    = https://community.playstarbound.com/threads/dwarf-jawa-sprite-portrait.110399/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
+
   |update url      = http://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-18001
   |update author  = coldazrael
+
   |update author  = mouse
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Elliot Spruced Up
+
   |original name  = Early Open Shops v1.2
   |original author = BlazingPug
+
   |original author = mmanlapat
   |original url    = {{nexus mod|1291}}
+
   |original url    = {{nexus mod|1091}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-125#post-3358433
   |update author  = coldazrael
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Emily Dialogue Reworked
+
   |original name  = Easy Bundles
   |original author = Scrambled1432
+
   |original author = Siddybear
   |original url    = {{nexus mod|1885}}
+
   |original url    = https://community.playstarbound.com/threads/super-easy-fishing-and-easy-bundles.109057/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-126#post-3358785
   |update author  = flameofthenight
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Emily Reimagined
+
   |original name  = Easy Fishing 
   |original author = Chisami
+
   |original author = mmanlapat
   |original url    = https://community.playstarbound.com/threads/emily-reimagined.135338/
+
   |original url    = {{nexus mod|1114}}
   |update name    = unofficial update
+
   |update name    = Lazy Fish
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3268878
+
   |update url      = {{nexus mod|1971}}
   |update author  = paradigmnomad
+
   |update author  = ShneekeyTheLost
   |update version  = 1.0
+
   |update version  = 1.1 or 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Emily Sprite and Portrait Overhaul
+
   |original name  = Eemie Animal Collection
   |original author = tolerdesigns
+
   |original author = Eemie
   |original url    = {{nexus mod|1004}}
+
   |original url    = {{nexus author|Eemiestardew}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277270
   |update author  = MouseyPounds
+
   |update author  = D.Grey & paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Emily Sprite Redux
+
   |original name  = Eemie's Classy New Interior
   |original author = The Mighty Palm
+
   |original author = Eemie
   |original url    = {{nexus mod|1800}}
+
   |original url    = {{nexus mod|854}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303215
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-66#post-3306821
   |update author  = coldazrael
+
   |update author  = coldazrael, littlesin21, Asher404, acornfaerie
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Enari's Portraits
+
   |original name  = Eemie's Cute Long Hairstyles
   |original author = Enari
+
   |original author = Eemie
   |original url    = {{nexus mod|137}}
+
   |original url    = {{nexus mod|910}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271282
+
   |update url      = {{nexus mod|4526}}
   |update author  = Techonrye
+
   |update author  = minervamaga
   |update version  = 1.0
+
   |update version  = 2.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Enhanced Dialogue Updated (not complete)
+
   |original name  = Eemie Dutch Farm Buildings
   |original author = joykiller91
+
   |original author = Eemie
   |original url    = {{nexus mod|925}}
+
   |original url    = {{nexus mod|1659}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271635
   |update author  = flameofthenight
+
   |update author  = hatmouse
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Espeon Cat
+
   |original name  = Eemie Iron Stone Cemetery Fence
   |original author = CassandraRose
+
   |original author = Eemie
   |original url    = {{nexus mod|1884}}
+
   |original url    = {{nexus mod|1033}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-44#post-3300021
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275040
   |update author  = Allayna
+
   |update author  = Fyn
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Everyone Likes Joja Cola
+
   |original name  = Eemie Just Another Map Recolour
   |original author = malcheese
+
   |original author = Eemie
   |original url    = https://community.playstarbound.com/threads/valuable-joja-cola.129375/#post-3101942
+
   |original url    = {{nexus mod|599}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|2050}}
 +
  |update author  = minervamaga
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Eemie's English Lamp Posts
 +
  |original author = Eemie
 +
  |original url    = {{nexus mod|473}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-49#post-3301076
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303215
   |update author  = Allayna
+
   |update author  = coldazrael, Kuriiyo & Pathoschild
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Expanded Access Maps
+
   |original name  = Eemie Medieval Modern Buildings
   |original author = Allayna
+
   |original author = Eemie
   |original url    = {{nexus mod|1504}}
+
   |original url    = {{nexus mod|419}}
  |update name    = official update
  −
  |update url      = {{nexus mod|1504}}
  −
  |update author  = Allayna
  −
  |update version  = 16.1
  −
}}
  −
{{/xnb
  −
  |original name  = Expanded Woods
  −
  |original author = Cylesburk
  −
  |original url    = {{nexus mod|1495}}
   
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271282
+
   |update url      = {{nexus mod|4519}}
   |update author  = Techonrye
+
   |update author  = minervamaga
   |update version  = 1.0
+
   |update version  = 2.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Explorer Timmy Made A Shane
+
   |original name  = Eemie New paths
   |original author = explorer_timmy
+
   |original author = Eemie
   |original url    = {{nexus mod|1921}}
+
   |original url    = {{nexus mod|607}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259170
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275040
   |update author  = paradigmnomad
+
   |update author  = Fyn
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Extended Dialogue for Jodi and Kent
+
   |original name  = Eemie Seasonal Victorian Buildings
   |original author = Seismothesaurus
+
   |original author = Eemie
   |original url    = {{nexus mod|1288}}
+
   |original url    = {{nexus mod|891}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271635
   |update author  = flameofthenight
+
   |update author  = hatmouse
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Fancy Lamps
+
   |original name  = Eemie's Squirrel
   |original author = Lita
+
   |original author = Eemie
   |original url    = {{nexus mod|1881}}
+
   |original url    = {{nexus mod|1658}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3274106
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = kaitekat
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Farmhouse Basement Mod
+
   |original name  = Eemie Victorian Buildings (Non-seasonal)
   |original author = MiniPantsu
+
   |original author = Eemie
   |original url    = {{nexus mod|524}}
+
   |original url    = {{nexus mod|682}}
   |update name    = unofficial update
+
   |update name    = Official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-24#post-3285327
+
   |update url      = {{nexus mod|3511}}
   |update author  = Moragaine, destroyerofsocks & Oak
+
   |update author  = minervamaga
   |update version  = 2.0
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Farmhouse Extended
+
   |original name  = Eemie Victorian Mailbox 
   |original author = QuantumConcious
+
   |original author = mmanlapat
   |original url    = {{nexus mod|192}}
+
   |original url    = {{nexus mod|1069}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-40#post-3299266
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3261025
   |update author  = Allayna
+
   |update author  = .Lavender.
   |update version  = 1.7
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Fastoso's Qute Animals
+
   |original name  = Eemie Wildflowers
   |original author = Fastoso
+
   |original author = Eemie
   |original url    = https://community.playstarbound.com/resources/qute-animals-cow-pig.3661/
+
   |original url    = {{nexus mod|1235}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275660
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273640
   |update author  = Pak_RT
+
   |update author  = Seyph
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Female Duck
+
   |original name  = Eggplant Horse (Toumato - Obon Horse)
   |original author = CaveSalamander
+
   |original author = Toumato/kyubey777
   |original url    = https://community.playstarbound.com/threads/biped-dinosaur-smaller-dino-egg-bonus-female-duck.110547/
+
   |original url    = {{nexus mod|100}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273395
   |update author  = twixstix
+
   |update author  = hatmouse
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Female Wizard - Sprite and Portrait
+
   |original name  = Elle's Barn and Coop Animal Replacements
   |original author = CreepyKat
+
   |original author = junimods
   |original url    = {{nexus mod|1011}}
+
   |original url    = https://community.playstarbound.com/threads/elles-barn-and-coop-animal-replacements.126156/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-48#post-3300793
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-85#post-3322731
   |update author  = Allayna and paradigmnomad
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Feminine Female Farmer
+
   |original name  = Elle's Pig Replacements
   |original author = HyperChicken01
+
   |original author = junimods
   |original url    = {{nexus mod|407}}
+
   |original url    = https://community.playstarbound.com/threads/elles-barn-and-coop-animal-replacements.126156/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273805
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
   |update author  = tenthousandcats
+
   |update author  = Ensifera
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Fence by Eemie
+
   |original name  = Elle's Verata (Goat Replacement)
   |original author = Eemie
+
   |original author = junimods
   |original url    = {{nexus mod|580}}
+
   |original url    = https://community.playstarbound.com/threads/elles-barn-and-coop-animal-replacements.126156/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-24#post-3286325
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304718
   |update author  = junali
+
   |update author  = Ches713
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Fish Tank Table
+
   |original name  = Elle's White Rabbit
   |original author = DarkKassanova
+
   |original author = junimods
   |original url    = {{nexus mod|205}}
+
   |original url    = https://community.playstarbound.com/threads/elles-barn-and-coop-animal-replacements.126156/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304980
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
   |update author  = coldazrael
+
   |update author  = Ensifera
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Fix Desert Bus Stop
+
   |original name  = Elliott Girl Portrait Ver
   |original author = DevilBro
+
   |original author = EX renkon
   |original url    = {{nexus mod|339}}
+
   |original url    = {{nexus mod|1936}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-33057653302020
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = Ensifera
+
   |update author  = coldazrael
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Flower Valley
+
   |original name  = Elliott Portrait Mod
   |original author = KAYA/jina2ya
+
   |original author = Lo0bo0
   |original url    = {{nexus mod|2030}}
+
   |original url    = {{nexus mod|738}}
   |update name    = official update
+
   |update name    = unofficial update
   |update url      = {{nexus mod|2064}}
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = paradigmnomad
+
   |update author  = coldazrael
   |update version  = 2.2
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Flowery Fences
+
   |original name  = Elliot Replacer - Earlier Development Version
   |original author = Maromidew
+
   |original author = Thoroughly
   |original url    = {{nexus mod|911}}
+
   |original url    = {{nexus mod|27}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278570
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
   |update author  = Shalassa
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Flowery Fences Recolored
+
   |original name  = Elliott Revised
   |original author = MixedBabe
+
   |original author = Saltnburn
   |original url    = {{nexus mod|1289}}
+
   |original url    = {{nexus mod|1910}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-32722928
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-71#post-3308486
   |update author  = Shalassa
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Fluffy Cows
+
   |original name  = Elliott Refined
   |original author = Maromidew
+
   |original author = Chrysanthe
   |original url    = {{nexus mod|922}}
+
   |original url    = {{nexus mod|818}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278570
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-86#post-3323191
   |update author  = Shalassa
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Fluffy Dogs & Other Alternative Dog Sprites! (Shiba Inu & Pomeranian)
+
   |original name  = Elliot Spruced Up
   |original author = Dawn
+
   |original author = BlazingPug
   |original url    = https://community.playstarbound.com/threads/fluffy-dogs-other-alternative-dog-sprites-update-8-pug-time.109948/
+
   |original url    = {{nexus mod|1291}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
   |update author  = twixstix
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Fluffykins' Furniture - Paintings Statues and Rugs
+
   |original name  = Emily Dialogue Reworked
   |original author = Fluffykins
+
   |original author = Scrambled1432
   |original url    = {{nexus mod|2003}}
+
   |original url    = {{nexus mod|1885}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304686
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
   |update author  = coldazrael
+
   |update author  = flameofthenight
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Fruit Trees Reshaped
+
   |original name  = Emily Reimagined
 
   |original author = Chisami
 
   |original author = Chisami
   |original url    = https://community.playstarbound.com/threads/fruit-trees-reshaped-v2-addition.114556/
+
   |original url    = https://community.playstarbound.com/threads/emily-reimagined.135338/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-3#post-3264457
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3268878
 
   |update author  = paradigmnomad
 
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Furniture Redone
+
   |original name  = Emily Sprite and Portrait Overhaul
   |original author = peachitto
+
   |original author = tolerdesigns
   |original url    = {{nexus mod|1058}}
+
   |original url    = {{nexus mod|1004}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-47#post-3300651
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
   |update author  = Allayna
+
   |update author  = MouseyPounds
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = F-SV No Bowlegs
+
   |original name  = Emily Sprite Redux
   |original author = Flumme
+
   |original author = The Mighty Palm
   |original url    = {{nexus mod|1500}}
+
   |original url    = {{nexus mod|1800}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3303842
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303215
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Garden Hedge
+
   |original name  = Emily Sprites Remastered
   |original author = ohrabbit
+
   |original author = Shadowfire1223
   |original url    = {{nexus mod|168}}
+
   |original url    = {{nexus mod|1551}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-57#post-3304232
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321936
   |update author  = Kuriiyo
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = German Shepard Bundle Mod (No Cursors)
+
   |original name  = Enari's Portraits
   |original author = Beroin/deadduch
+
   |original author = Enari
   |original url    = {{nexus mod|54}}
+
   |original url    = {{nexus mod|137}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274843
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271282
   |update author  = D.Grey
+
   |update author  = Techonrye
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = GhostyTea's Cute Hats
+
   |original name  = Enhanced Dialogue Updated (not complete)
   |original author = GhostyTea
+
   |original author = joykiller91
   |original url    = {{nexus mod|1754}}
+
   |original url    = {{nexus mod|925}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299595
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
   |update author  = Allayna
+
   |update author  = flameofthenight
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Glaceon Cat
+
   |original name  = Epona Horse Edit
   |original author = Halfwheat
+
   |original author = Zhuria
   |original url    = {{nexus mod|1788}}
+
   |original url    = https://community.playstarbound.com/threads/zhurias-horse-edits-recolours.108022/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-44#post-3300021
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-70#post-3307632
   |update author  = Allayna
+
   |update author  = Reppamon
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Glitched Burger - Furniture Overhaul
+
   |original name  = Espeon Cat
   |original author = Boneberry
+
   |original author = CassandraRose
   |original url    = https://community.playstarbound.com/threads/glitched-burger-furniture-overhaul.126892/
+
   |original url    = {{nexus mod|1884}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303283
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
   |update author  = coldazrael
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Gnome Hat's Recolor
+
   |original name  = Everyone Likes Joja Cola
   |original author = Oak
+
   |original author = malcheese
   |original url    = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
+
   |original url    = https://community.playstarbound.com/threads/valuable-joja-cola.129375/#post-3101942
   |update name    = official update
+
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-49#post-3301076
   |update author  = Oak
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Grass Path for Every Season
+
   |original name  = Expanded Access Maps
   |original author = MiaEmilia
+
   |original author = Allayna
   |original url    = https://community.playstarbound.com/threads/frauhaselmaus-workshop-many-many-retextures-example-grasspaths.109701/
+
   |original url    = {{nexus mod|1504}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = {{nexus mod|1504}}
   |update author  = D.Grey
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 16.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Green Community Center
+
   |original name  = Expanded Woods
   |original author = Opalie
+
   |original author = Cylesburk
   |original url    = {{nexus mod|1242}}
+
   |original url    = {{nexus mod|1495}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305939
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271282
   |update author  = Ensifera
+
   |update author  = Techonrye
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Gunther Recolour
+
   |original name  = Explorer Timmy Made A Shane
   |original author = Ylrien
+
   |original author = explorer_timmy
   |original url    = {{nexus mod|1637}}
+
   |original url    = {{nexus mod|1921}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259170
   |update author  = coldazrael
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Gus Refined
+
   |original name  = Extended Dialogue for Jodi and Kent
   |original author = saturn
+
   |original author = Seismothesaurus
   |original url    = {{nexus mod|1412}}
+
   |original url    = {{nexus mod|1288}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-63#post-3305524
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
   |update author  = coldazrael
+
   |update author  = flameofthenight
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hairstyles recolored and a new Hairstyle Update
+
   |original name  = Extended Slime Hutch
   |original author = Alicedafox
+
   |original author = QuantumConcious
   |original url    = {{nexus mod|1103}}
+
   |original url    = https://community.playstarbound.com/threads/extendedslimehutch-with-safe-zone-and-storage-area-updated-19-4-interior-only.112455/page-2#post-2877091
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278565
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3349511
   |update author  = ayahimew & Kuriiyo
+
   |update author  = Jhoulana
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Haley/Penny/Leah Expanded Dialogue
+
   |original name  = Fall Heirloom Crops Overlay
   |original author = KThxBye910
+
   |original author = makoace
   |original url    = https://community.playstarbound.com/resources/haley-penny-leah-expanded-dialogue.4697/
+
   |original url    = {{nexus mod|2954}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-103#post-3334306
   |update author  = flameofthenight
+
   |update author  = minervamaga
   |update version  = 1.0
+
   |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Haley Off-The-Shoulder Dress
+
   |original name  = Fancy Lamps
   |original author = Ahrimhan
+
   |original author = Lita
   |original url    = {{nexus mod|1007}}
+
   |original url    = {{nexus mod|1881}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280497
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3274106
   |update author  = Amx
+
   |update author  = kaitekat
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Haley Reskin
+
   |original name  = Farmer's Water Pipe
   |original author = magimatica
+
   |original author = Nectrus
   |original url    = {{nexus mod|1132}}
+
   |original url    = {{nexus mod|1195}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277868
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-127#post-3360590
   |update author  = paradigmnomad
+
   |update author  = nocato
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Handsome Mr. Qi
+
   |original name  = Farmhouse Basement Mod
   |original author = MomiChan
+
   |original author = MiniPantsu
   |original url    = {{nexus mod|1582}}
+
   |original url    = {{nexus mod|524}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287131
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-24#post-3285327
   |update author  = paradigmnomad
+
   |update author  = Moragaine, destroyerofsocks & Oak
   |update version  = 1.1
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Happier Pig with New Eyes
+
   |original name  = Farmhouse Extended
   |original author = Develsaa
+
   |original author = QuantumConcious
   |original url    = {{nexus mod|26}}
+
   |original url    = {{nexus mod|192}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-39#post-3298931
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-40#post-3299266
 
   |update author  = Allayna
 
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.7
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Harvey Personality Mod (Dialogue Only)
+
   |original name  = Fastoso's Qute Animals
   |original author = woosh0
+
   |original author = Fastoso
   |original url    = {{nexus mod|983}}
+
   |original url    = {{chucklefish mod|3661}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275660
   |update author  = flameofthenight
+
   |update author  = Pak_RT
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Harvey Refined
+
   |original name  = Fat Pony
   |original author = Chrysanthe
+
   |original author = Jeiel Aranal/ChemiKhazi
   |original url    = {{nexus mod|879}}
+
   |original url    = {{nexus mod|354}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-59#post-3304554
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-113#post-3340715
   |update author  = AquilegiaStardew
+
   |update author  = annachibi
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hay Silo
+
   |original name  = Female Bachelors Dialogue Overhaul
   |original author = Flor3nce2456
+
   |original author = Valoodx
   |original url    = {{nexus mod|1519}}
+
   |original url    = {{nexus mod|3042}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-36#post-3297356
+
   |update url      = {{nexus mod|3042}}
   |update author  = Allayna
+
   |update author  = Valoodx
   |update version  = 1.0
+
   |update version  = 0.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hill-Top Forest Map
+
   |original name  = Female Duck
   |original author = Minnue
+
   |original author = CaveSalamander
   |original url    = {{nexus mod|601}}
+
   |original url    = https://community.playstarbound.com/threads/biped-dinosaur-smaller-dino-egg-bonus-female-duck.110547/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275679
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
   |update author  = ChiiBee
+
   |update author  = twixstix
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hispanic Alex
+
   |original name  = Female Wizard - Sprite and Portrait
   |original author = AllegedMexican
+
   |original author = CreepyKat
   |original url    = {{nexus mod|846}}
+
   |original url    = {{nexus mod|1011}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305267
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-48#post-3300793
   |update author  = coldazrael
+
   |update author  = Allayna and paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hispanic George
+
   |original name  = Feminine Female Farmer
   |original author = AllegedMexican
+
   |original author = HyperChicken01
   |original url    = {{nexus mod|838}}
+
   |original url    = {{nexus mod|407}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305267
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273805
   |update author  = coldazrael
+
   |update author  = tenthousandcats
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hobbit Hole
+
   |original name  = Fence by Eemie
   |original author = LemonEX
+
   |original author = Eemie
   |original url    = https://community.playstarbound.com/threads/lemons-characters-more-update-clint.109961
+
   |original url    = {{nexus mod|580}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/lemons-characters-more-update-clint.109961/page-5#post-3268689
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-24#post-3286325
   |update author  = Pathoschild
+
   |update author  = junali
   |update version  = 1.0-unofficial.1-pathoschild
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = hojichas' Wallpaper and Flooring
+
   |original name  = Fish Tank Table
   |original author = hojichas
+
   |original author = DarkKassanova
   |original url    = {{nexus mod|912}}
+
   |original url    = {{nexus mod|205}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285313
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304980
   |update author  = Allayna & Mitchell
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = hojichas' Seaside Interior
+
   |original name  = Fix Desert Bus Stop
   |original author = hojichas
+
   |original author = DevilBro
   |original url    = {{nexus mod|1189}}
+
   |original url    = {{nexus mod|339}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-50#post-3301284
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305765
   |update author  = dreamsicl
+
   |update author  = Ensifera
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Holsteins (White Cow)
+
   |original name  = Flame Horses - 5 Colors
   |original author = Zhuria
+
   |original author = CreepyKat
   |original url    = {{nexus mod|45}}
+
   |original url    = {{nexus mod|1017}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278037
+
   |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-71#post-49210
   |update author  = D.Grey
+
   |update author  = UlyanaLeyana
   |update version  = 1.0
+
   |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hope's Farmer Customization Mods
+
   |original name  = Flo - New Custom NPC (Florence)
   |original author = HopeWasHere
+
   |original author = randomAnon123
   |original url    = {{nexus mod|1008}}
+
   |original url    = {{nexus mod|591}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291443
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-109#post-3338661
   |update author  = D.Grey
+
   |update author  = HeyItsDuke
   |update version  = 2.0
+
   |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hope's Secret Springs Cave
+
   |original name  = Flower Valley
   |original author = HopeWasHere
+
   |original author = KAYA/jina2ya
   |original url    = {{nexus mod|1155}}
+
   |original url    = {{nexus mod|2030}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
+
   |update url      = {{nexus mod|2064}}
   |update author  = coldazrael
+
   |update author  = paradigmnomad
   |update version  = 3.0
+
   |update version  = 2.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = (NSFW) Horny Bachelors
+
   |original name  = Flowery Fences
   |original author = Girafarig
+
   |original author = Maromidew
   |original url    = {{nexus mod|791}}
+
   |original url    = {{nexus mod|911}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-25#post-3286927
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278570
   |update author  = paradigmnomad & ShSammy
+
   |update author  = Shalassa
   |update version  = 1.0.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Horse Edits & Recolours
+
   |original name  = Flowery Fences Recolored
   |original author = Zhuria
+
   |original author = MixedBabe
   |original url    = https://community.playstarbound.com/threads/zhurias-horse-edits-recolours.108022/
+
   |original url    = {{nexus mod|1289}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272292
   |update author  = twixstix
+
   |update author  = Shalassa
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Horses to Dragons/Pegasi
+
   |original name  = Fluffy Cows
   |original author = Aternova
+
   |original author = Maromidew
   |original url    = https://community.playstarbound.com/threads/horses-to-dragons-pegasi-saddleless-steeds-and-hercules-pegasus.108539/
+
   |original url    = {{nexus mod|922}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-45#post-3300239
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278570
   |update author  = Allayna & brybryj
+
   |update author  = Shalassa
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Horse to Mule
+
   |original name  = Fluffy Dogs & Other Alternative Dog Sprites! (Shiba Inu & Pomeranian)
   |original author = magimatica
+
   |original author = Dawn
   |original url    = {{nexus mod|1181}}
+
   |original url    = https://community.playstarbound.com/threads/fluffy-dogs-other-alternative-dog-sprites-update-8-pug-time.109948/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277868
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
   |update author  = paradigmnomad
+
   |update author  = twixstix
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = House Remodel - Interior Design
+
   |original name  = Fluffy Tuxedo Cat
   |original author = Minakie
+
   |original author = osmiacyril
   |original url    = {{nexus mod|753}}
+
   |original url    = {{nexus mod|850}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-90#post-3324601
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hudson Valley Buildings
+
   |original name  = Fluffykins' Furniture - Paintings Statues and Rugs
   |original author = oomps62, magimatica and endohare
+
   |original author = Fluffykins
   |original url    = {{nexus mod|1478}}
+
   |original url    = {{nexus mod|2003}}
   |update name    = official update
+
   |update name    = unofficial update
   |update url      = {{nexus mod|2110}}
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304686
   |update author  = oomps62
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Immersive Marriage - Abigail
+
   |original name  = Four Crystal Paths Retextures
   |original author = robolink
+
   |original author = stupiddullahans
   |original url    = {{nexus mod|33}}
+
   |original url    = {{nexus mod|1305}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271485
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-125#post-3358525
   |update author  = D.Grey
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Improved Dirt and Recolored Grass for Fall (English Only)
+
   |original name  = Fruit Trees Reshaped
   |original author = Relenanator
+
   |original author = Chisami
   |original url    = {{nexus mod|1105}}
+
   |original url    = https://community.playstarbound.com/threads/fruit-trees-reshaped-v2-addition.114556/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-61#post-3305023
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-3#post-3264457
   |update author  = coldazrael
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Improved Penny Vanilla Portrait
+
   |original name  = Fruit Trees with Signs
   |original author = G The Generous
+
   |original author = Develsaa
   |original url    = {{nexus mod|1498}}
+
   |original url    = {{nexus mod|99}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3347131
   |update author  = coldazrael
+
   |update author  = Marigolden
   |update version  = 1.1
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Improved Shed Mod
+
   |original name  = Furniture Redone
   |original author = wintrparkgrl
+
   |original author = peachitto
   |original url    = https://www.reddit.com/r/StardewValley/comments/55x9hj/improved_shed_mod/
+
   |original url    = {{nexus mod|1058}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258682
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357809
   |update author  = ShneekeyTheLost
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Iridium Ore Galaxy Horse
+
   |original name  = F-SV No Bowlegs
   |original author = PecuniamArt
+
   |original author = Flumme
   |original url    = {{nexus mod|1006}}
+
   |original url    = {{nexus mod|1500}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-51#post-3301837
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3303842
   |update author  = Ches713
+
   |update author  = coldazrael
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Item Overhaul
+
   |original name  = F-SV Stable - Seasonal and White
   |original author = Boneberry
+
   |original author = Flumme
   |original url    = https://community.playstarbound.com/threads/taco-bones-item-crop-graphics-over-30-itens-done.126565/
+
   |original url    = {{nexus mod|1467}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-49#post-3300985
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-94#post-3326671
   |update author  = Allayna & paradigmnomad
+
   |update author  = minervamaga
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = JAC'd Greenhouse Extended
+
   |original name  = Garden Hedge
   |original author = Plutey/Androxilogin
+
   |original author = ohrabbit
   |original url    = {{nexus mod|739}}
+
   |original url    = {{nexus mod|168}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-57#post-3304232
   |update author  = D.Grey
+
   |update author  = Kuriiyo
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Jamie's Balanced Greenhouse
+
   |original name  = Genderbent Bachelorettes
   |original author = JamieMage2005
+
   |original author = Lechet AKA yuiidragon
   |original url    = {{nexus mod|1078}}
+
   |original url    = {{nexus mod|199}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272292
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348738
   |update author  = Shalassa
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Jersey Cow
+
   |original name  = German Shepard Bundle Mod (No Cursors)
   |original author = magimatica
+
   |original author = Beroin/deadduch
   |original url    = {{nexus mod|861}}
+
   |original url    = {{nexus mod|54}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304718
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274843
   |update author  = Ches713
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Jodi and Vincent - Sprites and Portraits Remastered Mod
+
   |original name  = GhostyTea's Cute Hats
   |original author = Shadowfire1223
+
   |original author = GhostyTea
   |original url    = {{nexus mod|1555}}
+
   |original url    = {{nexus mod|1754}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271817
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299595
   |update author  = D.Grey
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Jungle Temple
+
   |original name  = Gift of Gab - Marriage Candidate Edition
   |original author = UlithiumDragon
+
   |original author = SunnyBird
   |original url    = {{nexus mod|1014}}
+
   |original url    = {{nexus mod|3074}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299529
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-130#post-3366935
   |update author  = Allayna
+
   |update author  = uwuchiha
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Junimo Artifact Digspots
+
   |original name  = Glaceon Cat
   |original author = Seismothesaurus
+
   |original author = Halfwheat
   |original url    = {{nexus mod|1321}}
+
   |original url    = {{nexus mod|1788}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299520
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
 
   |update author  = Allayna
 
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Junimo Horse
+
   |original name  = Glitched Burger - Furniture Overhaul
   |original author = monteso
+
   |original author = Boneberry
   |original url    = {{nexus mod|700}}
+
   |original url    = https://community.playstarbound.com/threads/glitched-burger-furniture-overhaul.126892/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303283
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Junimos to Totoros
+
   |original name  = Gnarly's Farm Expansion
   |original author = magimatica
+
   |original author = GnarlyJaspian
   |original url    = {{nexus mod|867}}
+
   |original url    = {{nexus mod|1187}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-96#post-3329807
   |update author  = coldazrael
+
   |update author  = minervamaga
   |update version  = 1.0
+
   |update version  = 1.3.2-unofficial.minervamaga
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Karina's Long Hair
+
   |original name  = Gnome Hat's Recolor
   |original author = Karina
+
   |original author = Oak
   |original url    = {{nexus mod|512}}
+
   |original url    = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
   |update author  = coldazrael
+
   |update author  = Oak
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Karmylla's Cellar Edit
+
   |original name  = Goat Replacement
   |original author = Karmylla
+
   |original author = ApproachCautiously
   |original url    = {{nexus mod|1148}}
+
   |original url    = {{nexus mod|185}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-20#post-3283606
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = Allayna
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Karmylla's Spouse Room Edits
+
   |original name  = Goat with Horns
   |original author = Karmylla
+
   |original author = Develsaa
   |original url    = {{nexus mod|1356}}
+
   |original url    = {{nexus mod|25}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-31#post-3292434
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347412
   |update author  = squitz
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Kawaii Hats
+
   |original name  = Gold Star Portrait Overhaul
   |original author = yuikami
+
   |original author = Lorshar
   |original url    = {{nexus mod|64}}
+
   |original url    = {{nexus mod|2232}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3302982
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322170
 
   |update author  = coldazrael
 
   |update author  = coldazrael
   |update version  = 0.1  
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Kero Cat Replacement - Cardcaptor Sakura
+
   |original name  = gotama portraits
   |original author = Walpi-chan
+
   |original author = gotama
   |original url    = {{nexus mod|1028}}
+
   |original url    = {{nexus mod|975}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-75#post-3311351
   |update author  = coldazrael
+
   |update author  = Rubecula
   |update version  = 1.0
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Kitchen Nook for 1st Farmhouse
+
   |original name  = gotama's Portraits MOD 2
  |original author = Allayna
+
   |original author = gotama
  |original url    = {{nexus mod|1668}}
+
   |original url    = {{nexus mod|1221}}
  |update name    = official update
  −
  |update url      = {{nexus mod|1668}}
  −
  |update author  = Allayna
  −
  |update version  = 2.6
  −
}}
  −
{{/xnb
  −
  |original name  = Kitty Scarecrow Replacments
  −
   |original author = jinxiewinxie
  −
   |original url    = {{nexus mod|191}}
   
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-36#post-3297356
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-100#post-3332737
   |update author  = Allayna
+
   |update author  = netish
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Leafeon Retexture for Cat
+
   |original name  = Gotama's Scarecrow and Hats Mod
   |original author = ImXTooNinjaxX
+
   |original author = gomatamanyann
   |original url    = {{nexus mod|1673}}
+
   |original url    = {{nexus mod|1314}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298392
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-88#post-3323500
   |update author  = Allayna
+
   |update author  = coldazrael
   |update version  = 1.2
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Leah New Hair
+
   |original name  = Gothish Hat Recolors
   |original author = CoffeeBuns
+
   |original author = GoddessOfThieves
   |original url    = {{nexus mod|757}}
+
   |original url    = {{nexus mod|194}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304585
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-114#post-3343178
   |update author  = Aquilegia
+
   |update author  = Dede_Bug
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Less Creepy Marnie Sprite
+
   |original name  = Grass Path for Every Season
   |original author = CassandraRose
+
   |original author = MiaEmilia
   |original url    = {{nexus mod|1349}}
+
   |original url    = https://community.playstarbound.com/threads/frauhaselmaus-workshop-many-many-retextures-example-grasspaths.109701/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
Line 2,062: Line 2,451:  
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Lewd Bachelorettes
+
   |original name  = Gravel Path Fix Mod
   |original author = AirplaneRandy
+
   |original author = Yunix
   |original url    = https://community.playstarbound.com/threads/lewd-bachelorettes-portrait-mod-buxom-haley-added.108210/
+
   |original url    = {{nexus mod|51}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287084
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347412
   |update author  = paradigmnomad
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Linus With Clothes
+
   |original name  = Green Community Center
   |original author = Goodledoodoo
+
   |original author = Opalie
   |original url    = {{nexus mod|1512}}
+
   |original url    = {{nexus mod|1242}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259170
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305939
   |update author  = paradigmnomad
+
   |update author  = Ensifera
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Lolia Fashion Bachelorettes
+
   |original name  = Grumpy Cat
   |original author = Royalyspooky
+
   |original author = DarkKassanova
   |original url    = https://community.playstarbound.com/threads/lolita-fashion-bachelorettes.128214/
+
   |original url    = {{nexus mod|213}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3267529
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = paradigmnomad
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Longhair Cat Replacement
+
   |original name  = Gunther Recolour
   |original author = Korokos
+
   |original author = Ylrien
   |original url    = https://community.playstarbound.com/threads/longhair-cats-four-new-colors-4-15.111316/
+
   |original url    = {{nexus mod|1637}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-3#post-3263910
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
   |update author  = paradigmnomad
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Long Elf Ears Recolours
+
   |original name  = Gus into Wendy
   |original author = ScalesofGrey
+
   |original author = bajel
   |original url    = {{nexus mod|1088}}
+
   |original url    = {{nexus mod|2605}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-28#post-3289172
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-71#post-3308320
   |update author  = staarfruit
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Luna Cat
+
   |original name  = Gus Refined
   |original author = PoshPossum
+
   |original author = saturn
   |original url    = {{nexus mod|2157}}
+
   |original url    = {{nexus mod|1412}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3304011
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-63#post-3305524
   |update author  = kngermanotta
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Lunatic Farm Map
+
   |original name  = Hairstyles recolored and a new Hairstyle Update
   |original author = Lunatic
+
   |original author = Alicedafox
   |original url    = {{nexus mod|1408}}
+
   |original url    = {{nexus mod|1103}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302687
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278565
   |update author  = SuperElement & Allayna
+
   |update author  = ayahimew & Kuriiyo
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = LTTPBuildingsreplacer
+
   |original name  = Haley/Penny/Leah Expanded Dialogue
   |original author = JazzMinK
+
   |original author = KThxBye910
   |original url    = {{nexus mod|1284}}
+
   |original url    = {{chucklefish mod|4697}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-19#post-3283067
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
   |update author  = m2pt5/Emtu
+
   |update author  = flameofthenight
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Madeline's Farmhouse and Farm Building Recolors
+
   |original name  = Haley and Penny Universal Love
   |original author = Madeline
+
   |original author = LisaWolf
   |original url    = {{nexus mod|198}}
+
   |original url    = {{nexus mod|1600}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304980
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-113#post-3341274
   |update author  = coldazrael & Allayna
+
   |update author  = Dede_Bug
  |update version  = 5.0
  −
}}
  −
{{/xnb
  −
  |original name  = Magica Trees
  −
  |original author = ERRORcauser
  −
  |original url    = {{nexus mod|1211}}
  −
  |update name    = unofficial update
  −
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277227
  −
  |update author  = D.Grey
   
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Makeup as Accessories
+
   |original name  = Haley as Vampire Revamp
   |original author = Jinxiewinxie
+
   |original author = SextingWithSirens
   |original url    = {{nexus mod|183}}
+
   |original url    = {{nexus mod|1572}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-28#post-3289541
+
   |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-98#post-73276
   |update author  = junali
+
   |update author  = Allayna
 
   |update version  = 1.1
 
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Marriage Dialogue Expansion - Eilliot
+
   |original name  = Haley Off-The-Shoulder Dress
   |original author = Sabreene
+
   |original author = Ahrimhan
   |original url    = {{nexus mod|1595}}
+
   |original url    = {{nexus mod|1007}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271742
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280497
   |update author  = ayahimew
+
   |update author  = Amx
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Marriage Dialogue Mod for Haley
+
   |original name  = Haley Reskin
   |original author = shann713
+
   |original author = magimatica
   |original url    = {{nexus mod|1677}}
+
   |original url    = {{nexus mod|1132}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277868
   |update author  = flameofthenight
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Marshmallow Unicorn
+
   |original name  = Haley Skirt Recolour
   |original author = jigajang
+
   |original author = Nyxcat
   |original url    = https://community.playstarbound.com/resources/marshmallow-unicorn.3720/
+
   |original url    = {{nexus mod|1039}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302646
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3346589
   |update author  = Ches713
+
   |update author  = Dede_Bug
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Marshmallow Unicorn (Alternative)
+
   |original name  = Handsome Mr. Qi
   |original author = summonercat
+
   |original author = MomiChan
   |original url    = https://community.playstarbound.com/threads/marshmallow-unicorn.116854/#post-3134876
+
   |original url    = {{nexus mod|1582}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258738
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287131
 
   |update author  = paradigmnomad
 
   |update author  = paradigmnomad
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Maru Replacer - earlier development version
+
   |original name  = Happier Pig with New Eyes
   |original author = Thoroughly
+
   |original author = Develsaa
   |original url    = {{nexus mod|29}}
+
   |original url    = {{nexus mod|26}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-39#post-3298931
   |update author  = coldazrael & Allayna
+
   |update author  = Allayna
   |update version  = 1.2
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Maru Portrait's Retexture
+
   |original name  = Hardmode
   |original author = HarinBAE
+
   |original author = RamenYum
   |original url    = {{nexus mod|1578}}
+
   |original url    = {{nexus mod|714}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3346590
   |update author  = coldazrael
+
   |update author  = Dede_Bug
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Matching Maru Sprite (Villager Anime Portraits)
+
   |original name  = Harvest Moon Wizard Replacement
   |original author = CassandraRose
+
   |original author = TheMainFlamingoose
   |original url    = {{nexus mod|1453}}
+
   |original url    = {{nexus mod|4060}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-123#post-3354839
   |update author  = D.Grey
+
   |update author  = art17
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Matching Slime Hutch
+
   |original name  = Harvey Personality Mod (full)
   |original author = SlushieSlowpoke
+
   |original author = woosh0
   |original url    = {{nexus mod|111}}
+
   |original url    = {{nexus mod|983}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-130#post-3366935
   |update author  = MouseyPounds
+
   |update author  = uwuchiha
   |update version  = 1.0-Final
+
   |update version  = 2.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = MCMC's Portrait Mod
+
   |original name  = Harvey Refined
   |original author = MCMC
+
   |original author = Chrysanthe
   |original url    = https://community.playstarbound.com/threads/mcmc-portraits%EF%BC%88ver1-9%EF%BC%89.109112/
+
   |original url    = {{nexus mod|879}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/mcmc-portraits%EF%BC%88ver1-9%EF%BC%89.109112/page-11#post-3288717
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-86#post-3323257
   |update author  = keodau27
+
   |update author  = AquilegiaStardew
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Medieval Traditional Hats
+
   |original name  = Harvey Revised
   |original author = LemonEX
+
   |original author = Saltnburn
   |original url    = https://community.playstarbound.com/threads/medieval-traditional-hats-replacing.110803/
+
   |original url    = {{nexus mod|1918}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-51#post-3301734
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-86#post-3323222
   |update author  = Mopsy
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Melons to Watermelons
+
   |original name  = Hay Silo
   |original author = zynonia
+
   |original author = Flor3nce2456
   |original url    = {{nexus mod|1397}}
+
   |original url    = {{nexus mod|1519}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305179
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-36#post-3297356
  |update author  = Ensifera
  −
  |update version  = 1.0
  −
}}
  −
{{/xnb
  −
  |original name  = Mew - Cat Replacer
  −
  |original author = 00Strange00
  −
  |original url    = {{nexus mod|477}}
  −
  |update name    = unofficial update
  −
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-44#post-3300021
   
   |update author  = Allayna
 
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mimikyu - Cat Dog Replacer
+
   |original name  = Heyo! No Mayo!
   |original author = ChiChain and SihaRakhet
+
   |original author = ProperPunctuation
   |original url    = {{nexus mod|1246}}
+
   |original url    = https://community.playstarbound.com/threads/heyo-no-mayo.141686/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-44#post-3300021
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-72#post-3308973
   |update author  = Allayna
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mint Kiss Furniture
+
   |original name  = Highland Cattle
   |original author = Ribbonain
+
   |original author = ClockworkZombe
   |original url    = {{nexus mod|619}}
+
   |original url    = {{nexus mod|3157}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304686
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3321993
 
   |update author  = coldazrael
 
   |update author  = coldazrael
   |update version  = 1.3
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Missy's Shirts
+
   |original name  = Hill-Top Forest Map
   |original author = MissyDiabolical
+
   |original author = Minnue
   |original url    = {{nexus mod|1523}}
+
   |original url    = {{nexus mod|601}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3303956
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275679
   |update author  = Kuriiyo & mukamii
+
   |update author  = ChiiBee
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Missy's Walls and Floors
+
   |original name  = Hispanic Alex
   |original author = MissyDiabolical
+
   |original author = AllegedMexican
   |original url    = {{nexus mod|1579}}
+
   |original url    = {{nexus mod|846}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305267
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mi's and Eemie's Butterflies (1.3)
+
   |original name  = Hispanic George
   |original author = Mi/Campanulamis & Eemie
+
   |original author = AllegedMexican
   |original url    = {{nexus mod|1111}}
+
   |original url    = {{nexus mod|838}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305267
   |update author  = Oak
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mi's Bathroom Recolours
+
   |original name  = Hobbit Hole
   |original author = Mi/Campanulamis
+
   |original author = LemonEX
   |original url    = {{nexus mod|1036}}
+
   |original url    = https://community.playstarbound.com/threads/lemons-characters-more-update-clint.109961
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-24#post-3285521
+
   |update url      = https://community.playstarbound.com/threads/lemons-characters-more-update-clint.109961/page-5#post-3268689
   |update author  = MouseyPounds
+
   |update author  = Pathoschild
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-pathoschild
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mi's Fireplace (1.3)
+
   |original name  = hojichas' Wallpaper and Flooring
   |original author = Mi/Campanulamis
+
   |original author = hojichas
   |original url    = {{nexus mod|1024}}
+
   |original url    = {{nexus mod|912}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273636
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285313
   |update author  = Seyph
+
   |update author  = Allayna & Mitchell
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mi's Classy Victorian interior set inspired by eemie
+
   |original name  = hojichas' Seaside Interior
   |original author = Mi/Campanulamis
+
   |original author = hojichas
   |original url    = {{nexus mod|1074}}
+
   |original url    = {{nexus mod|1189}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275117
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-50#post-3301284
   |update author  = hwayunhae
+
   |update author  = dreamsicl
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Monster Valley
+
   |original name  = Holsteins (White Cow)
   |original author = Blizzriel
+
   |original author = Zhuria
   |original url    = {{nexus mod|2407}}
+
   |original url    = {{nexus mod|45}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-41#post-3299324
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278037
   |update author  = Allayna
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Moogle Cat Replacement
+
   |original name  = Hope's Farmer Customization Mods
   |original author = Cal
+
   |original author = HopeWasHere
   |original url    = {{nexus mod|382}}
+
   |original url    = {{nexus mod|1008}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291443
   |update author  = coldazrael
+
   |update author  = D.Grey
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = More Accessible Wilderness Farm
+
   |original name  = Hope's Farmer Customization Mods (hairstyles)
   |original author = gobbldygook
+
   |original author = HopeWasHere
   |original url    = {{nexus mod|603}}
+
   |original url    = {{nexus mod|1008}}
   |update name    = unofficial update
+
   |update name    = Hope's Hair Pack
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287303
+
   |update url      = https://community.playstarbound.com/threads/hopes-hair-pack.161149/
   |update author  = junali
+
   |update author  = just-sora
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = More Accurate Dwarf
+
   |original name  = Hope's Secret Springs Cave
   |original author = spacedoggity
+
   |original author = HopeWasHere
   |original url    = {{nexus mod|1470}}
+
   |original url    = {{nexus mod|1155}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
   |update author  = MouseyPounds
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 3.0
 +
}}
 +
{{/xnb
 +
  |original name  = (NSFW) Horny Bachelors
 +
  |original author = Girafarig
 +
  |original url    = {{nexus mod|791}}
 +
  |update name    = official update
 +
  |update url      = https://www.nexusmods.com/stardewvalley/mods/2564
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = More Galactic Galaxy Swords
+
   |original name  = Horse Edits & Recolours
   |original author = Alliehxxx
+
   |original author = Zhuria
   |original url    = {{nexus mod|2530}}
+
   |original url    = https://community.playstarbound.com/threads/zhurias-horse-edits-recolours.108022/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298188
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
   |update author  = Arkanto
+
   |update author  = twixstix
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = MunchItValency's Starter Pokemon
+
   |original name  = Horses to Dragons/Pegasi
   |original author = MunchItValency
+
   |original author = Aternova
   |original url    = {{nexus mod|2151}}
+
   |original url    = https://community.playstarbound.com/threads/horses-to-dragons-pegasi-saddleless-steeds-and-hercules-pegasus.108539/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-45#post-3300239
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-45#post-3300239
   |update author  = Allayna
+
   |update author  = Allayna & brybryj
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Munchkin Kitten Cat Replacement
+
   |original name  = Horse to Mule
   |original author = DaleighChronicle
+
   |original author = magimatica
   |original url    = {{nexus mod|2248}}
+
   |original url    = {{nexus mod|1181}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277868
   |update author  = coldazrael
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mushroom Tree Growth Re-Texture
+
   |original name  = Horse to Vespa Scooter + Garage
   |original author = burtron
+
   |original author = Pi.Curious
   |original url    = {{nexus mod|338}}
+
   |original url    = https://community.playstarbound.com/threads/horse-to-vespa-scooter-garage-joja-scooter-added.110212/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276146
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-6#post-75931
   |update author  = D.Grey
+
   |update author  = phomaique
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mushroom Tree Re-Texture
+
   |original name  = House (Final Upgrade) Color Mod
   |original author = allanbachti
+
   |original author = MrMcK
   |original url    = {{nexus mod|1729}}
+
   |original url    = {{nexus mod|334}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276146
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348738
   |update author  = D.Grey
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 0.2-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mutated Cows with 2 Heads
+
   |original name  = House Remodel - Interior Design
   |original author = StaticOpium
+
   |original author = Minakie
   |original url    = {{nexus mod|710}}
+
   |original url    = {{nexus mod|753}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = MysticTempest's Furniture Mod
+
   |original name  = Hudson Valley Buildings
   |original author = MysticTempest
+
   |original author = oomps62, magimatica and endohare
   |original url    = https://community.playstarbound.com/threads/mystictempests-furniture-mod-updated-for-v1-3-w-multi-language-support.117035/
+
   |original url    = {{nexus mod|1478}}
 
   |update name    = official update
 
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/mystictempests-furniture-mod-updated-for-v1-3-w-multi-language-support.117035/
+
   |update url      = {{nexus mod|2110}}
   |update author  = MysticTempest
+
   |update author  = oomps62
   |update version  = 1.3.0
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = MysticTempest's Tea Mod
+
   |original name  = Huge Sheds Redux
   |original author = MysticTempest
+
   |original author = Boldrin
   |original url    = https://community.playstarbound.com/threads/mystictempests-tea-mod-updated-for-v1-3-w-multi-language-support.129850/
+
   |original url    = {{nexus mod|1662}}
   |update name    = official update
+
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/mystictempests-tea-mod-updated-for-v1-3-w-multi-language-support.129850/
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321937
   |update author  = MysticTempest
+
   |update author  = coldazrael
   |update version  = 1.0.1
+
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Nerdy Hot Maru
+
   |original name  = Immersive (F) Marriage Candidate Overhaul
   |original author = tolerdesigns
+
   |original author = Chickenkila
   |original url    = {{nexus mod|1029}}
+
   |original url    = {{nexus mod|33}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347504
   |update author  = MouseyPounds
+
   |update author  = Marigolden
   |update version  = 1.2
+
   |update version  = 1.0-unofficial.1-Marigolden
}}
+
}}
 
{{/xnb
 
{{/xnb
   |original name  = New and Improved Hairstyles
+
   |original name  = Immersive Marriage - Abigail
   |original author = Chrysanthe
+
   |original author = robolink
   |original url    = https://community.playstarbound.com/threads/new-and-improved-hairstyles.112097/
+
   |original url    = {{nexus mod|33}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273781
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271485
 
   |update author  = D.Grey
 
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Cow Breeds
+
   |original name  = Improved Dirt and Recolored Grass for Fall (English Only)
   |original author = Zhuria
+
   |original author = Relenanator
   |original url    = https://community.playstarbound.com/threads/new-cow-breeds.110272/
+
   |original url    = {{nexus mod|1105}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303215
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-61#post-3305023
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Dogs
+
   |original name  = Improved Penny Vanilla Portrait
   |original author = Zhuria
+
   |original author = G The Generous
   |original url    = https://community.playstarbound.com/resources/new-dogs.3496/
+
   |original url    = {{nexus mod|1498}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Improved Shed Mod
 +
  |original author = wintrparkgrl
 +
  |original url    = https://www.reddit.com/r/StardewValley/comments/55x9hj/improved_shed_mod/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258682
 +
  |update author  = ShneekeyTheLost
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Handsome Elliott Portrait and Sprite
+
   |original name  = Introducing JojaMart and Shane: A Custom Cutscene Mod
   |original author = sabreene
+
   |original author = IronZelly
   |original url    = {{nexus mod|1676}}
+
   |original url    = https://community.playstarbound.com/threads/introducing-jojamart-and-shane-a-custom-cutscene-mod.129338/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285313
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-80#post-3317020
   |update author  = Allayna
+
   |update author  = springacres
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Portraits Mod aka 微调立绘美化2.0 (Portrait Mod)
+
   |original name  = Ira Yume100 - Harvey
   |original author = ???
+
   |original author = Minrisa
   |original url    = http://bbs.3dmgame.com/forum.php?mod=viewthread&tid=5058948
+
   |original url    = {{nexus mod|2254}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278020
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322224
   |update author  = Pak_RT & D.Grey
+
   |update author  = MouseyPounds
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}{{/xnb
 +
  |original name  = Iridium Ore Galaxy Horse
 +
  |original author = PecuniamArt
 +
  |original url    = {{nexus mod|1006}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-51#post-3301837
 +
  |update author  = Ches713
 +
  |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Rabbit Sprites and Recolours
+
   |original name  = Item Overhaul
   |original author = Zhuria
+
   |original author = Boneberry
   |original url    = {{nexus mod|112}}
+
   |original url    = https://community.playstarbound.com/threads/taco-bones-item-crop-graphics-over-30-itens-done.126565/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276223
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-49#post-3300985
   |update author  = D.Grey
+
   |update author  = Allayna & paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Skintones
+
   |original name  = JAC'd Greenhouse Extended
   |original author = prettypinktardis
+
   |original author = Plutey/Androxilogin
   |original url    = {{nexus mod|1231}}
+
   |original url    = {{nexus mod|739}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273805
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
   |update author  = tenthousandcats
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Spouse Rooms
+
   |original name  = JAC'd Sheds
   |original author = abra700
+
   |original author = Plutey/Androxilogin
   |original url    = {{nexus mod|713}}
+
   |original url    = {{nexus mod|681}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-40#post-3299266
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321936
   |update author  = Allayna
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Nicer Villagers, Flirty Bachelors
+
   |original name  = Jamie's Balanced Greenhouse
   |original author = Kagurahime
+
   |original author = JamieMage2005
   |original url    = {{nexus mod|872}}
+
   |original url    = {{nexus mod|1078}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260520
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272292
   |update author  = paradigmnomad
+
   |update author  = Shalassa
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Nightmare's Additional Weaponry
+
   |original name  = JG Demitrus in shipping box
   |original author = zcsnightmare
+
   |original author = Jeremiah Gottwald AKA JGottwald
   |original url    = {{nexus mod|393}}
+
   |original url    = {{nexus mod|65}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291443
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3347131
   |update author  = D.Grey
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Nintendo Furniture - Furniture Only
+
   |original name  = Jersey Cow
   |original author = MrFox420
+
   |original author = magimatica
   |original url    = {{nexus mod|1973}}
+
   |original url    = {{nexus mod|861}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304686
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304718
   |update author  = coldazrael
+
   |update author  = Ches713
   |update version  = 1.0.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = No Emo Hair Sebastian
+
   |original name  = Jodi and Vincent - Sprites and Portraits Remastered Mod
   |original author = hybridrainbow
+
   |original author = Shadowfire1223
   |original url    = {{nexus mod|716}}
+
   |original url    = {{nexus mod|1555}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271817
   |update author  = Ensifera
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = No Glasses and Mustache Harvey Sprite
+
   |original name  = JumJum Jr.
   |original author = BraveLittleTuna
+
   |original author = ProJared
   |original url    = {{nexus mod|1956}}
+
   |original url    = {{nexus mod|197}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = coldazrael
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = No More Bowlegs
+
   |original name  = Jungle Temple
   |original author = Chrysanthe
+
   |original author = UlithiumDragon
   |original url    = {{nexus mod|346}}
+
   |original url    = {{nexus mod|1014}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259723
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299529
   |update author  = f4iTh
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Non-Default Replacement Chickens
+
   |original name  = Junimo Artifact Digspots
   |original author = Lavapulse
+
   |original author = Seismothesaurus
   |original url    = https://community.playstarbound.com/threads/non-default-replacement-chickens-silkie-orpington-barred-rock.109826/
+
   |original url    = {{nexus mod|1321}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258738
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299520
   |update author  = paradigmnomad
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Norisu's Cuter Goats Mod
+
   |original name  = Junimo Horse
   |original author = norisu
+
   |original author = monteso
   |original url    = {{nexus mod|1135}}
+
   |original url    = {{nexus mod|700}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285285
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = Oak
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Nostalgia Abigail
+
   |original name  = Junimos to Totoros
   |original author = Cilbas
+
   |original author = magimatica
   |original url    = {{nexus mod|140}}
+
   |original url    = {{nexus mod|867}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304585
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
   |update author  = Aquilegia
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = NongDarn Mods Portraits
+
   |original name  = Kal's Marriage Candidates Portraits
   |original author = NongDarn
+
   |original author = kal621owo621_Snakebite
   |original url    = https://community.playstarbound.com/threads/mods-portraits-harvey-sam-sebastian-elliott-alex-by-nongdarn.111237/
+
   |original url    = {{nexus mod|2346}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-47#post-3300583
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/#post-28714
   |update author  = netish
+
   |update author  = Flyff
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Okami Chibiterasu Pet
+
   |original name  = Karina's Long Hair
   |original author = Dibjib
+
   |original author = Karina
   |original url    = {{nexus mod|152}}
+
   |original url    = {{nexus mod|512}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275462
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
   |update author  = Heroic Onion
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Owl Scarecrows
+
   |original name  = Karmylla's Cellar Edit
   |original author = Ankokou
+
   |original author = Karmylla
   |original url    = {{nexus mod|936}}
+
   |original url    = {{nexus mod|1148}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277776
+
   |update url      = {{nexus mod|1148}}
   |update author  = Kuriiyo
+
   |update author  = Karmylla
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Peacocks
+
   |original name  = Karmylla's Spouse Room Edits
   |original author = StarDoodle
+
   |original author = Karmylla
   |original url    = {{nexus mod|871}}
+
   |original url    = {{nexus mod|1356}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
+
   |update url      = {{nexus mod|1356}}
   |update author  = coldazrael
+
   |update author  = karmylla
   |update version  = 2.0
+
   |update version  = 3.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Pastel Furniture
+
   |original name  = Karna Fate - Sebastian
   |original author = BloodyJinxii
+
   |original author = Minrisa
   |original url    = {{nexus mod|1705}}
+
   |original url    = {{nexus mod|2292}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-47#post-3300651
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322224
   |update author  = Allayna
+
   |update author  = MouseyPounds
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Pencilstab's Portraits (ALL PORTRAITS COMPLETED)
+
   |original name  = Kawaii Hats
   |original author = Pencilstab
+
   |original author = yuikami
   |original url    = {{nexus mod|2351}}
+
   |original url    = {{nexus mod|64}}
   |update name    = official update
+
   |update name    = unofficial update
   |update url      = {{nexus mod|2351}}
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3302982
   |update author  = Pencilstab
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 0.1  
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Penny Expanded
+
   |original name  = Kero Cat Replacement - Cardcaptor Sakura
   |original author = Wolvenlight
+
   |original author = Walpi-chan
   |original url    = {{nexus mod|1372}}
+
   |original url    = {{nexus mod|1028}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275828
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
   |update author  = flameofthenight
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Penny Expanded Marriage Dialogue
+
   |original name  = Kimberly's witch kitchen.Bed.Bathroom.Crib.
   |original author = catacoon
+
   |original author = Kimberly
   |original url    = {{nexus mod|1275}}
+
   |original url    = {{nexus mod|1375}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-112#post-3340424
   |update author  = flameofthenight
+
   |update author  = mouseypounds
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Penny Relationship (Villager Part Only)
+
   |original name  = Kitchen Nook for 1st Farmhouse
   |original author = NicolasNSane
+
   |original author = Allayna
   |original url    = {{nexus mod|1568}}
+
   |original url    = {{nexus mod|1668}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|1668}}
 +
  |update author  = Allayna
 +
  |update version  = 2.6
 +
}}
 +
{{/xnb
 +
  |original name  = Kitty Scarecrow Replacments
 +
  |original author = jinxiewinxie
 +
  |original url    = {{nexus mod|191}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-36#post-3297356
   |update author  = flameofthenight
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Penny to Pryce Personality Overhaul (Gender Swap)
+
   |original name  = Kingdom Hearts Sea Salt Ice Cream
   |original author = Meevers
+
   |original author = Dom AKA domfred908
   |original url    = {{nexus mod|1253}}
+
   |original url    = {{nexus mod|315}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305863
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348738
   |update author  = coldazrael
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 0.9.2-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Penny's New Look
+
   |original name  = Korea Retro
   |original author = ARModding
+
   |original author = standlaid1
   |original url    = {{nexus mod|2610}}
+
   |original url    = {{nexus mod|5287}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
+
   |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-48#post-29801
   |update author  = coldazrael
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.0.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Pet Raven
+
   |original name  = Leafeon Retexture for Cat
   |original author = hassan94935
+
   |original author = ImXTooNinjaxX
   |original url    = {{nexus mod|1247}}
+
   |original url    = {{nexus mod|1673}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305939
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
   |update author  = Ensifera
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Pink Chickens
+
   |original name  = Leah New Hair
   |original author = bubblestormx
+
   |original author = CoffeeBuns
   |original url    = {{nexus mod|465}}
+
   |original url    = {{nexus mod|757}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-17#post-3280851
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304585
   |update author  = acornfaerie
+
   |update author  = Aquilegia
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Plastic Surgery for Your Goats
+
   |original name  = Less Creepy Marnie Sprite
   |original author = Eemie
+
   |original author = CassandraRose
   |original url    = {{nexus mod|502}}
+
   |original url    = {{nexus mod|1349}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
   |update author  = coldazrael
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Porcelaine's Wizard - Portrait and Sprite
+
   |original name  = let 's cafe
   |original author = Porcelaine
+
   |original author = momoki
   |original url    = {{nexus mod|1940}}
+
   |original url    = {{nexus mod|10546}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-33#post-3293999
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-5#post-70199
   |update author  = Mukamii
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Portrait Accurate Alex
+
   |original name  = Lewd Bachelorettes (Buxom)
   |original author = iKeychain
+
   |original author = AirplaneRandy
   |original url    = {{nexus mod|349}}
+
   |original url    = https://community.playstarbound.com/threads/lewd-bachelorettes-portrait-mod-buxom-haley-added.108210/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-39#post-3298931
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-131#post-3369629
   |update author  = Allayna & Amx
+
   |update author  = UberMann
   |update version  = 1.2
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Primitive Artisan Equipment
+
   |original name  = Lewis to Mayor Thomas Character Overhaul
   |original author = Ankokou
+
   |original author = Budzilla
   |original url    = {{nexus mod|940}}
+
   |original url    = {{nexus mod|73}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-57#post-3304133
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347504
   |update author  = kalikars & junali
+
   |update author  = Marigolden
   |update version  = 1.0.0
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Purple Museum Reward Furniture
+
   |original name  = Linus is a potato From minecraft
   |original author = Ariella
+
   |original author = laser5mw
   |original url    = {{nexus mod|767}}
+
   |original url    = {{nexus mod|491}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304686
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-6#post-73588
   |update author  = coldazrael
+
   |update author  = phomaique
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-phomaique
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rabbit's Foot to Usagi Mochi
+
   |original name  = Linus With Clothes
   |original author = gelatinveins
+
   |original author = Goodledoodoo
   |original url    = {{nexus mod|1108}}
+
   |original url    = {{nexus mod|1512}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299425
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259170
   |update author  = Allayna
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Ragdoll Cat Replacements
+
   |original name  = Lolia Fashion Bachelorettes
   |original author = peroxidewren
+
   |original author = Royalyspooky
   |original url    = https://community.playstarbound.com/threads/ragdoll-cats-pet-replacements.130437/
+
   |original url    = https://community.playstarbound.com/threads/lolita-fashion-bachelorettes.128214/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-3#post-3264159
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3267529
   |update author  = Kuriiyo
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Realistic Animal Replacements
+
   |original name  = Longhair Cat Replacement
   |original author = Crucifigo
+
   |original author = Korokos
   |original url    = https://community.playstarbound.com/threads/new-free-to-edit-wips-crucifigos-livestock-semi-realistic-animal-replacers.109480/
+
   |original url    = https://community.playstarbound.com/threads/longhair-cats-four-new-colors-4-15.111316/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259729
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-3#post-3263910
 
   |update author  = paradigmnomad
 
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Real Life Horses
+
   |original name  = Long Elf Ears Recolours
   |original author = Minakie
+
   |original author = ScalesofGrey
   |original url    = {{nexus mod|759}}
+
   |original url    = {{nexus mod|1088}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3267236
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-28#post-3289172
   |update author  = jhunichi
+
   |update author  = staarfruit
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Recolored Luau and Moonlight Jellies Candle Boats to match the Beach and Desert Recolors Mod - combined
+
   |original name  = Luna Cat
   |original author = Sabreene
+
   |original author = PoshPossum
   |original url    = {{nexus mod|1701}}
+
   |original url    = {{nexus mod|2157}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276212
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3304011
   |update author  = waftwaffle
+
   |update author  = kngermanotta
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Redesigned Horse Running Animation
+
   |original name  = Lunatic Farm Map
   |original author = avalitor
+
   |original author = Lunatic
   |original url    = {{nexus mod|261}}
+
   |original url    = {{nexus mod|1408}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305939
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302687
   |update author  = Ensifera
+
   |update author  = SuperElement & Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Red Holsteins (Brown Cow)
+
   |original name  = LTTPBuildingsreplacer
   |original author = Zhuria
+
   |original author = JazzMinK
   |original url    = {{nexus mod|47}}
+
   |original url    = {{nexus mod|1284}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278037
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-19#post-3283067
   |update author  = D.Grey
+
   |update author  = m2pt5/Emtu
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Refined Bachelors Portrait Mod
+
   |original name  = Madeline's Farmhouse and Farm Building Recolors
   |original author = Chrysanthe
+
   |original author = Madeline
   |original url    = {{nexus mod|938}}
+
   |original url    = {{nexus mod|198}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287131
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304980
   |update author  = paradigmnomad & D.Grey
+
   |update author  = coldazrael & Allayna
   |update version  = 1.0
+
   |update version  = 5.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Refined Abigail, Emily and Maru Portraits
+
   |original name  = Magica Trees
   |original author = Chrysanthe
+
   |original author = ERRORcauser
   |original url    = {{nexus mod|965}}
+
   |original url    = {{nexus mod|1211}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280497
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277227
   |update author  = Amx
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Remove That Damn Rock
+
   |original name  = Make Krobus Gaster
   |original author = Androxilogin
+
   |original author = DiStri
   |original url    = {{nexus mod|384}}
+
   |original url    = {{nexus mod|1201}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305769
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-2#post-39785
   |update author  = Moragaine
+
   |update author  = Techy-Jaden
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Ride Bear
+
   |original name  = Makeup as Accessories
   |original author = PenguinTuxedo
+
   |original author = Jinxiewinxie
   |original url    = {{nexus mod|793}}
+
   |original url    = {{nexus mod|183}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-28#post-3289541
   |update author  = coldazrael
+
   |update author  = junali
 
   |update version  = 1.1
 
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Ride-able Chocobo (FF14 style!)
+
   |original name  = Make Love With Shane (Works with Co-op Mode)
   |original author = Kitsutsune
+
   |original author = Kagurahime
   |original url    = https://community.playstarbound.com/threads/ride-able-chocobo-ff14-style-lavender-coral-pink-ect-added.112156/
+
   |original url    = {{nexus mod|917}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304796
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-129#post-3362721
   |update author  = Kuriiyo
+
   |update author  = SamelaG
   |update version  = 1.0
+
   |update version  = 1.0.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rikuo's Character Portrait
+
   |original name  = Marnie Edit
   |original author = Rikuo
+
   |original author = pipmimi
   |original url    = {{nexus mod|231}}
+
   |original url    = {{nexus mod|2455}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-25#post-3286931
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347432
   |update author  = paradigmnomad
+
   |update author  = Ches713
   |update version  = 4.0
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rocky Junimo Hut
+
   |original name  = Marnie Romance
   |original author = Gweniaczek
+
   |original author = MrValuable
   |original url    = {{nexus mod|1870}}
+
   |original url    = https://stardew-valley.org/marnie-romance-mod/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258738
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-114#post-3343163
   |update author  = paradigmnomad
+
   |update author  = vadie
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Roosters (Blue Chicken Replacement)
+
   |original name  = Marriage Dialogue Expansion - Eilliot
   |original author = Zhuria
+
   |original author = Sabreene
   |original url    = https://community.playstarbound.com/threads/roosters.125933/
+
   |original url    = {{nexus mod|1595}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262895
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271742
   |update author  = paradigmnomad
+
   |update author  = ayahimew
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rose's Interior
+
   |original name  = Marriage Dialogue Mod for Haley
   |original author = Roserish
+
   |original author = shann713
   |original url    = {{nexus mod|2715}}
+
   |original url    = {{nexus mod|1677}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-59#post-3304486
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
   |update author  = coldazrael
+
   |update author  = flameofthenight
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rue's Creepy Curios and Spooky Aesthetics (Trees Only)
+
   |original name  = Marshmallow Unicorn
   |original author = Ruevian
+
   |original author = jigajang
   |original url    = https://community.playstarbound.com/threads/rues-creepy-curios-and-spooky-aesthetics-updated-11-7.126419
+
   |original url    = {{chucklefish mod|3720}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3301953
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302646
   |update author  = sunnrock
+
   |update author  = Ches713
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rue's Creepy Curios and Spooky Aesthetics (Fences and Craftables)
+
   |original name  = Marshmallow Unicorn (Alternative)
   |original author = Ruevian
+
   |original author = summonercat
   |original url    = https://community.playstarbound.com/threads/rues-creepy-curios-and-spooky-aesthetics-updated-11-7.126419
+
   |original url    = https://community.playstarbound.com/threads/marshmallow-unicorn.116854/#post-3134876
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302300
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258738
   |update author  = coldazrael
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rusty Trough Fix
+
   |original name  = Maru Replacer - earlier development version
   |original author = Zhuria
+
   |original author = Thoroughly
   |original url    = {{nexus mod|37}}
+
   |original url    = {{nexus mod|29}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305765
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
   |update author  = Ensifera
+
   |update author  = coldazrael & Allayna
   |update version  = 1.0
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sailor Moon Wands
+
   |original name  = Maru Portrait's Retexture
   |original author = kumarisuchan
+
   |original author = HarinBAE
   |original url    = {{nexus mod|1687}}
+
   |original url    = {{nexus mod|1578}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-41#post-3299332
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
  |update author  = Allayna
  −
  |update version  = 1.1
  −
}}
  −
{{/xnb
  −
  |original name  = Sakura's Cat Girls
  −
  |original author = Sakurasflavor
  −
  |original url    = {{nexus mod|1245}}
  −
  |update name    = unofficial update
  −
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sam - New Hair and Jacket
+
   |original name  = Matching Maru Sprite (Villager Anime Portraits)
   |original author = ktruong
+
   |original author = CassandraRose
   |original url    = {{nexus mod|898}}
+
   |original url    = {{nexus mod|1453}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277589
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
 
   |update author  = D.Grey
 
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sam Gets a Makeover
+
   |original name  = Matching Slime Hutch
   |original author = Tyrian
+
   |original author = SlushieSlowpoke
   |original url    = {{nexus mod|1694}}
+
   |original url    = {{nexus mod|111}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-33#post-3293999
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
   |update author  = Mukamii
+
   |update author  = MouseyPounds
   |update version  = 1.0
+
   |update version  = 1.0-Final
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sam's Hair Makeover
+
   |original name  = MCMC's Portrait Mod
   |original author = Chrysanthe
+
   |original author = MCMC
   |original url    = {{nexus mod|360}}
+
   |original url    = https://community.playstarbound.com/threads/mcmc-portraits%EF%BC%88ver1-9%EF%BC%89.109112/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305765
+
   |update url      = https://community.playstarbound.com/threads/mcmc-portraits%EF%BC%88ver1-9%EF%BC%89.109112/page-11#post-3288717
   |update author  = Ensifera
+
   |update author  = keodau27
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Saturnspace's All Villagers Portraits Mod
+
   |original name  = Medieval Traditional Hats
   |original author = Saturnspace
+
   |original author = LemonEX
   |original url    = {{nexus mod|614}}
+
   |original url    = https://community.playstarbound.com/threads/medieval-traditional-hats-replacing.110803/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/attachments/cp-saturnspaces-all-villagers-portraits-mod-zip.206152/
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-51#post-3301734
   |update author  = aaronson2012
+
   |update author  = Mopsy
   |update version  = 1.0.0
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sebastian - New Hair and Moto Jacket
+
   |original name  = Melons to Watermelons
   |original author = ktruong
+
   |original author = zynonia
   |original url    = {{nexus mod|877}}
+
   |original url    = {{nexus mod|1397}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259170
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305179
   |update author  = paradigmnomad
+
   |update author  = Ensifera
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sebastian is a Ginger (Complete Edits Only)
+
   |original name  = Memory Farm - Farm Map Layouts
   |original author = melkat7
+
   |original author = Attitude Rains
   |original url    = {{nexus mod|561}}
+
   |original url    = {{nexus mod|1703}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-87#post-3323318
   |update author  = D.Grey
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Seasonal Foresty Farm Buildings
+
   |original name  = Metal Worm Bin
   |original author = miizuki1512
+
   |original author = vkunicorn
   |original url    = {{nexus mod|1502}}
+
   |original url    = {{nexus mod|2675}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272444
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-6#post-75923
   |update author  = hatmouse
+
   |update author  = phomaique
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Seasonal Vanilla Buildings
+
   |original name  = Mew - Cat Replacer
   |original author = magimatica
+
   |original author = 00Strange00
   |original url    = {{nexus mod|928}}
+
   |original url    = {{nexus mod|477}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
   |update author  = D.Grey
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Seasonal Gold Clock
+
   |original name  = Mimikyu - Cat Dog Replacer
   |original author = Endohare
+
   |original author = ChiChain and SihaRakhet
   |original url    = {{nexus mod|1771}}
+
   |original url    = {{nexus mod|1246}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299515
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
   |update author  = Arkanto
+
   |update author  = Allayna
   |update version  = 1.1
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sebastian Dialogue Overhaul
+
   |original name  = Minecraft Sword Styles
   |original author = casualkira
+
   |original author = DarkKassanova
   |original url    = {{nexus mod|1505}}
+
   |original url    = {{nexus mod|160}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287117
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = paradigmnomad
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Secret of Evermore Prehistoric Dog
+
   |original name  = Mint Kiss Furniture
   |original author = Skyhacker
+
   |original author = Ribbonain
   |original url    = {{nexus mod|347}}
+
   |original url    = {{nexus mod|619}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-43#post-3299931
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304686
   |update author  = Allayna
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Shaney-er Marriage Dialogue
+
   |original name  = Missy's Shirts
   |original author = Seismothesaurus
+
   |original author = MissyDiabolical
   |original url    = {{nexus mod|1186}}
+
   |original url    = {{nexus mod|1523}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306798
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3303956
   |update author  = Ensifera
+
   |update author  = Kuriiyo & mukamii
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Shirtless Alex
+
   |original name  = Missy's Walls and Floors
   |original author = bluestarkiller
+
   |original author = MissyDiabolical
   |original url    = {{nexus mod|1287}}
+
   |original url    = {{nexus mod|1579}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305765
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
   |update author  = Ensifera
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Shoe Color Replacement
+
   |original name  = Mi's and Eemie's Butterflies (1.3)
   |original author = irowirow
+
   |original author = Mi/Campanulamis & Eemie
   |original url    = {{nexus mod|330}}
+
   |original url    = {{nexus mod|1111}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
   |update author  = D.Grey, Oak
+
   |update author  = Oak
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Short Haired Haley
+
   |original name  = Mi's Bathroom Recolours
   |original author = Zoragonn101
+
   |original author = Mi/Campanulamis
   |original url    = {{nexus mod|1620}}
+
   |original url    = {{nexus mod|1036}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277227
+
   |update url      = http://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-51298
   |update author  = D.Grey
+
   |update author  = mouse
   |update version  = 1.0
+
   |update version  = 1.0.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Shorter Haired Sebastian
+
   |original name  = Mi's Classy Victorian interior set inspired by eemie
   |original author = Chrysanthe
+
   |original author = Mi/Campanulamis
   |original url    = {{nexus mod|159}}
+
   |original url    = {{nexus mod|1074}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305707
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275117
   |update author  = Ensifera
+
   |update author  = hwayunhae
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Shorts for Ladies
+
   |original name  = Mi's Elegant Victorian interior
   |original author = Meevers
+
   |original author = Mi/Campanulamis
   |original url    = {{nexus mod|225}}
+
   |original url    = {{nexus mod|1074}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-24#post-3286325
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-4#post-51572
   |update author  = junali
+
   |update author  = mouse
   |update version  = 1.0
+
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Slate Shed Recolor
+
   |original name  = Mi's Fireplace (1.3)
   |original author = Asunai
+
   |original author = Mi/Campanulamis
   |original url    = {{nexus mod|2540}}
+
   |original url    = {{nexus mod|1024}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298309
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273636
   |update author  = Arkanto
+
   |update author  = Seyph
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Siberian Huskey Dog Replacement
+
   |original name  = Mi's Framed Butterfly and Insect Displays
   |original author = Joules
+
   |original author = Mi/Campanulamis
   |original url    = {{nexus mod|1855}}
+
   |original url    = {{nexus mod|1065}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262682
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-126#post-3358847
   |update author  = TimeWandrer
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Silo Replacement
+
   |original name  = Modern kitchen
   |original author = ???
+
   |original author = Static Opium
   |original url    = ???
+
   |original url    = {{nexus mod|665}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/#post-7669
   |update author  = twixstix
+
   |update author  = Sofi52
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Skitty Cat Replacement
+
   |original name  = Monster Valley
   |original author = Kiakakash
+
  |original author = Blizzriel
   |original url    = {{nexus mod|264}}
+
  |original url    = {{nexus mod|2407}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-41#post-3299324
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Moogle Cat Replacement
 +
   |original author = Cal
 +
   |original url    = {{nexus mod|382}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
Line 3,151: Line 3,555:  
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Slightly Cuter Character Sprites
+
   |original name  = Moon Meteor 달 운석 리텍스쳐
   |original author = Poltergeister
+
   |original author = 이얏호 ssm4031
   |original url    = {{nexus mod|1437}}
+
   |original url    = https://blog.naver.com/ssm4031/221501552288
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = {{nexus mod|2194}}
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-5#post-70203
   |update author  = HanFox
+
   |update author  = Allayna
   |update version  = 1.8
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Slime Animals
+
   |original name  = More Accessible Wilderness Farm
   |original author = Sabishi1985
+
   |original author = gobbldygook
   |original url    = https://community.playstarbound.com/threads/slime-animals-last-update-09-10-2016.110931/
+
   |original url    = {{nexus mod|603}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258724
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287303
   |update author  = paradigmnomad
+
   |update author  = junali
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Slime Cute Kitty Cat Retexture
+
   |original name  = More Accurate Dwarf
   |original author = hisameartwork
+
   |original author = spacedoggity
   |original url    = {{nexus mod|2058}}
+
   |original url    = {{nexus mod|1470}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277759
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
   |update author  = Kuriiyo
+
   |update author  = MouseyPounds
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Skin Colours Tweaked
+
   |original name  = More Emo Sebastian
   |original author = MissyDiabolical
+
   |original author = Vienix
   |original url    = {{nexus mod|1506}}
+
   |original url    = {{nexus mod|3104}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-47#post-3300524
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3321993
   |update author  = Isalami
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Small Farm
+
   |original name  = More Galactic Galaxy Swords
   |original author = HelleboreHel
+
   |original author = Alliehxxx
   |original url    = {{nexus mod|1518}}
+
   |original url    = {{nexus mod|2530}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-35#post-3296405
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298188
   |update author  = Allayna
+
   |update author  = Arkanto
   |update version  = 1.2
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Smiling Krobus
+
   |original name  = Morst-CERBERUS and SUPI
   |original author = UpsetSaturn
+
   |original author = QuQii/songaoyuan
   |original url    = {{nexus mod|274}}
+
   |original url    = {{nexus mod|9904}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-5#post-56273
   |update author  = coldazrael
+
   |update author  = marshallharck
   |update version  = 1.0
+
   |update version  = 1.5.4
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Spooky Gothic Furniture
+
   |original name  = Mumps Mod
   |original author = Serpentwined
+
   |original author = KiraraLala
   |original url    = {{nexus mod|227}}
+
   |original url    = {{nexus mod|1730}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302537
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-90#post-3324601
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Spooky Gothic Kitchen, Bed and Fireplace
+
   |original name  = MunchItValency's Starter Pokemon
   |original author = Serpentwined
+
   |original author = MunchItValency
   |original url    = {{nexus mod|155}}
+
   |original url    = {{nexus mod|2151}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302537
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
   |update author  = coldazrael
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Spooky Gothic Wallpapers and Floorings
+
   |original name  = Munchkin Kitten Cat Replacement
   |original author = Serpentwined
+
   |original author = DaleighChronicle
   |original url    = {{nexus mod|171}}
+
   |original url    = {{nexus mod|2248}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302537
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Spooky Scary Creatures
+
   |original name  = Mushroom Tree Growth Re-Texture
   |original author = Petulinda
+
   |original author = burtron
   |original url    = {{nexus mod|1436}}
+
   |original url    = {{nexus mod|338}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306172
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276146
   |update author  = coldazrael
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Spouse Rooms Redesigned
+
   |original name  = Mushroom Tree Re-Texture
   |original author = endermaryn
+
   |original author = allanbachti
   |original url    = {{nexus mod|828}}
+
   |original url    = {{nexus mod|1729}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260091
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276146
   |update author  = Fyn
+
   |update author  = D.Grey
   |update version  = 6.0
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Stable Replacement
+
   |original name  = Mutated Cows with 2 Heads
   |original author = FrauHaselmaus
+
   |original author = StaticOpium
   |original url    = https://community.playstarbound.com/threads/frauhaselmaus-workshop-many-many-retextures-example-grasspaths.109701/
+
   |original url    = {{nexus mod|710}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3304011
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = kngermanotta
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Stardew Lottery Letters
+
   |original name  = My Little Valley - Farming is Magic - Mane Six Ponies
   |original author = Jokerine
+
   |original author = Salendola
   |original url    = {{nexus mod|335}}
+
   |original url    = {{nexus mod|206}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-44#post-3300144
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = brybryj
+
   |update author  = Marigolden
   |update version  = 2.0
+
   |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Stardew Shortcuts - Saloon and Hospital Bypass
+
   |original name  = MysticTempest's Furniture Mod
   |original author = scrptrx
+
   |original author = MysticTempest
   |original url    = {{nexus mod|510}}
+
   |original url    = https://community.playstarbound.com/threads/mystictempests-furniture-mod-updated-for-v1-3-w-multi-language-support.117035/
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305765
+
   |update url      = https://community.playstarbound.com/threads/mystictempests-furniture-mod-updated-for-v1-3-w-multi-language-support.117035/
   |update author  = Ensifera
+
   |update author  = MysticTempest
   |update version  = 1.0
+
   |update version  = 1.3.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Stardew Valley Ranch Lord Wind Portraits MOD
+
   |original name  = MysticTempest's Tea Mod
   |original author = MAKIKO
+
   |original author = MysticTempest
   |original url    = {{nexus mod|1827}}
+
   |original url    = https://community.playstarbound.com/threads/mystictempests-tea-mod-updated-for-v1-3-w-multi-language-support.129850/
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305863
+
   |update url      = https://community.playstarbound.com/threads/mystictempests-tea-mod-updated-for-v1-3-w-multi-language-support.129850/
   |update author  = coldazrael
+
   |update author  = MysticTempest
   |update version  = 1.11
+
   |update version  = 1.0.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Stardew Valley Senbby and Sam
+
   |original name  = Mythological Creatures: Horses
   |original author = Kikii_Saam
+
   |original author = MysticTempest
   |original url    = {{nexus mod|2538}}
+
   |original url    = https://community.playstarbound.com/threads/mythological-creatures-horses.109498/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302894
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-114#post-3342165
   |update author  = coldazrael
+
   |update author  = pepoluan
   |update version  = 1.3
+
   |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Stargrime - Visual Overhaul
+
   |original name  = Nerdy Hot Maru
   |original author = mudpuppy8
+
   |original author = tolerdesigns
   |original url    = {{nexus mod|848}}
+
   |original url    = {{nexus mod|1029}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306203
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
   |update author  = coldazrael
+
   |update author  = MouseyPounds
   |update version  = 1.0
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = StardewValley Anime Mods
+
   |original name  = New and Improved Hairstyles
   |original author = OhoDavi
+
   |original author = Chrysanthe
   |original url    = {{nexus mod|1839}}
+
   |original url    = https://community.playstarbound.com/threads/new-and-improved-hairstyles.112097/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302894
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273781
   |update author  = coldazrael
+
   |update author  = D.Grey
   |update version  = 0.3
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = StardewValley_Girl-byAdarin
+
   |original name  = New Cow Breeds
   |original author = AdarinSinner
+
   |original author = Zhuria
   |original url    = {{nexus mod|474}}
+
   |original url    = https://community.playstarbound.com/threads/new-cow-breeds.110272/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = {{nexus mod|2165}}
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303215
   |update author  = ZidanReign
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Starry Sky Interface
+
   |original name  = New Dogs
   |original author = Walpi-chan
+
   |original author = Zhuria
   |original url    = {{nexus mod|1310}}
+
   |original url    = {{chucklefish mod|3496}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273486
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
   |update author  = Rosalie
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Studio Ghibli Re-Textures (Scarecrows)
+
   |original name  = New Handsome Elliott Portrait and Sprite
   |original author = Crazy_Leen
+
   |original author = sabreene
   |original url    = https://community.playstarbound.com/threads/studio-ghibli-re-textures.109939/
+
   |original url    = {{nexus mod|1676}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275846
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285313
   |update author  = MitcheII
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Suffolk Sheep Recolor
+
   |original name  = New Portraits Mod aka 微调立绘美化2.0 (Portrait Mod)
   |original author = The13thBlackCat
+
   |original author = ???
   |original url    = {{nexus mod|1076}}
+
  |original url    = http://bbs.3dmgame.com/forum.php?mod=viewthread&tid=5058948
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278020
 +
  |update author  = Pak_RT & D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = New Rabbit Sprites and Recolours
 +
  |original author = Zhuria
 +
   |original url    = {{nexus mod|112}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277589
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276223
 
   |update author  = D.Grey
 
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Super Short Grass
+
   |original name  = New Shirts
   |original author = joyous1ariella
+
   |original author = FANTUANTAIKA BAIRE
   |original url    = {{nexus mod|768}}
+
   |original url    = {{nexus mod|2418}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305179
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-85#post-3322545
   |update author  = Ensifera
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 3.1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Swans and Dodos (excludes Aptonoth)
+
   |original name  = New Skintones
   |original author = Kitsutsune
+
   |original author = prettypinktardis
   |original url    = https://community.playstarbound.com/threads/swans-and-dodos-and-aptonoth.111758/
+
   |original url    = {{nexus mod|1231}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259911
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273805
   |update author  = paradigmnomad
+
   |update author  = tenthousandcats
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sweet Greenhouse
+
   |original name  = New Spouse Rooms
   |original author = Various
+
   |original author = abra700
   |original url    = https://community.playstarbound.com/threads/sweet-greenhouse-your-greenhouse-more-sweety.113426/
+
   |original url    = {{nexus mod|713}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-40#post-3299266
   |update author  = Oak
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sweet Talking Sam
+
   |original name  = Nicer Villagers, Flirty Bachelors
 
   |original author = Kagurahime
 
   |original author = Kagurahime
   |original url    = {{nexus mod|890}}
+
   |original url    = {{nexus mod|872}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260520
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260520
Line 3,385: Line 3,798:  
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sweet Talking Sebastian
+
   |original name  = Nightmare's Additional Weaponry
   |original author = Kagurahime
+
   |original author = zcsnightmare
   |original url    = {{nexus mod|929}}
+
   |original url    = {{nexus mod|393}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260520
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291443
   |update author  = paradigmnomad
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Taco Bones: Item+Crop graphics
+
   |original name  = Nightmare's Raptors
   |original author = Boneberry
+
   |original author = zcsnightmare
   |original url    = https://community.playstarbound.com/threads/taco-bones-item-crop-graphics-over-30-itens-done.126565/
+
   |original url    = https://community.playstarbound.com/threads/velociraptor-horse-replacements.112475/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-21#post-3284392
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-94#post-3326541
   |update author  = acornfaerie
+
   |update author  = minervamaga
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tan and Green Velociraptor
+
   |original name  = Nightmare's Tools Retextured
 +
  |original author = zcsnightmare
 +
  |original url    = {{nexus mod|296}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|7649}}
 +
  |update author  = RedxMoonxRose
 +
  |update version  = 1.3
 +
}}
 +
{{/xnb
 +
  |original name  = Nightmare's Weapon Retextures
 
   |original author = zcsnightmare
 
   |original author = zcsnightmare
   |original url    = {{nexus mod|251}}
+
   |original url    = {{nexus mod|287}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-43#post-3299950
+
   |update url      = {{nexus mod|7650}}
   |update author  = brybryj & Allayna
+
   |update author  = RedxMoonxRose
   |update version  = 1.0
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tank Mod
+
   |original name  = Nintendo Furniture - Furniture Only
   |original author = AllyJamy
+
   |original author = MrFox420
   |original url    = {{nexus mod|837}}
+
   |original url    = {{nexus mod|1973}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306239
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304686
 
   |update author  = coldazrael
 
   |update author  = coldazrael
   |update version  = 1.1
+
   |update version  = 1.0.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tego's Less Vibrant Grass and Dirt
+
   |original name  = No Emo Hair Sebastian
   |original author = Various
+
   |original author = hybridrainbow
   |original url    = https://www.nexusmods.com/stardewvalley/mods/244/
+
   |original url    = {{nexus mod|716}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = http://www.mediafire.com/file/7a270vd3ci08azz/%5BCP%5D+Less+Vibrant.zip
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
   |update author  = Oak
+
   |update author  = Ensifera
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Texas Longhorn
+
   |original name  = No Glasses and Mustache Harvey Sprite
   |original author = rlgenung
+
   |original author = BraveLittleTuna
   |original url    = {{nexus mod|490}}
+
   |original url    = {{nexus mod|1956}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3306010
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tiny Tree Tappers
+
   |original name  = No Kids Room Decor
   |original author = kallisto
+
   |original author = Plutey
   |original url    = {{nexus mod|1679}}
+
   |original url    = {{nexus mod|369}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303215
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-79#post-3315459
   |update author  = coldazrael
+
   |update author  = mouseypounds
   |update version  = 1.0
+
   |update version  = 1.12.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Togepi Cat Replacement
+
   |original name  = No More Bowlegs
   |original author = CrimsonY _Alreadytaken on this site apparently_
+
   |original author = Chrysanthe
   |original url    = {{nexus mod|1234}}
+
   |original url    = {{nexus mod|346}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-44#post-3300021
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-113#post-3341316
   |update author  = Allayna
+
   |update author  = pepoluan
   |update version  = 1.0
+
   |update version  = 1.0.0-unofficial.2-pepoluan
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tokiri's Pet Replacements - Cat (Red Panda)
+
   |original name  = Non-Default Replacement Chickens
   |original author = Tokiri
+
   |original author = Lavapulse
   |original url    = https://community.playstarbound.com/threads/tokiris-pet-replacements-fox-wolf-red-panda-update-red-panda-finished.110263/
+
   |original url    = https://community.playstarbound.com/threads/non-default-replacement-chickens-silkie-orpington-barred-rock.109826/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-35#post-3295747
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258738
   |update author  = Astartez
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tokiri's Pet Replacements - Dog (Fox)
+
   |original name  = Norisu's Cuter Goats Mod
   |original author = Tokiri
+
   |original author = norisu
   |original url    = https://community.playstarbound.com/threads/tokiris-pet-replacements-fox-wolf-red-panda-update-red-panda-finished.110263/
+
   |original url    = {{nexus mod|1135}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262199
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285285
   |update author  = magicalgirl44
+
   |update author  = Oak
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tokiri's Pet Replacements - Horse (Ridable wolf)
+
   |original name  = Norisu's Fire Chickens Mod
   |original author = Tokiri
+
   |original author = norisu
   |original url    = https://community.playstarbound.com/threads/tokiris-pet-replacements-fox-wolf-red-panda-update-red-panda-finished.110263/
+
   |original url    = {{nexus mod|1156}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262199
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-109#post-3338955
   |update author  = magicalgirl44
+
   |update author  = Bondzgurl
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tool Icon Replacement
+
   |original name  = Nostalgia Abigail
   |original author = workingorder
+
   |original author = Cilbas
   |original url    = {{nexus mod|401}}
+
   |original url    = {{nexus mod|140}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271817
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304585
   |update author  = D.Grey
+
   |update author  = Aquilegia
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Totoro Ghibli Anime Water Obelisk retexture
+
   |original name  = NongDarn Mods Portraits
   |original author = hisameartwork
+
   |original author = NongDarn
   |original url    = {{nexus mod|1843}}
+
   |original url    = https://community.playstarbound.com/threads/mods-portraits-harvey-sam-sebastian-elliott-alex-by-nongdarn.111237/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-63#post-3305648
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-101#post-3332738
   |update author  = coldazrael
+
   |update author  = netish
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Traditional Japanese Homes
+
   |original name  = NukaCola
   |original author = honochan
+
   |original author = GameVogue
   |original url    = {{nexus mod|2295}}
+
   |original url    = {{nexus mod|394}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287364/
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-113#post-3341519
   |update author  = f4iTh
+
   |update author  = a2937
   |update version  = 1.0.0
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tweaked Penny Portrait
+
   |original name  = Okami Chibiterasu Pet
   |original author = magimatica
+
   |original author = Dibjib
   |original url    = {{nexus mod|860}}
+
   |original url    = {{nexus mod|152}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280497
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275462
   |update author  = Amx
+
   |update author  = Heroic Onion
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Vanilla Child Recolors
+
   |original name  = Ori's Portraits(High resolution version)
   |original author = bitcrushpupp
+
   |original author = Ori
   |original url    = {{nexus mod|1914}}
+
   |original url    = {{nexus mod|2974}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304585
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-86#post-3323222
   |update author  = Aquilegia
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Variant Anime Portraits
+
   |original name  = Original Portraits ULTIMATE FIX
   |original author = Bunnihime
+
   |original author = Popori
   |original url    = {{nexus mod|48}}
+
   |original url    = {{nexus mod|801}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304778
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-128#post-3361673
   |update author  = coldazrael
+
   |update author  = springacres
   |update version  = 3.5
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Villagers Anime Portrait
+
   |original name  = Owl Scarecrows
   |original author = Bunnihime
+
   |original author = Ankokou
   |original url    = {{nexus mod|97}}
+
   |original url    = {{nexus mod|936}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304778
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277776
   |update author  = coldazrael, Fyn & f4iTh
+
   |update author  = Kuriiyo
   |update version  = 2.0
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Vintage Menu Interface
+
   |original name  = Pam's Recolored Buildings Add-Ons
   |original author = Mana
+
   |original author = Pam Collins AKA MatrexsVigil
   |original url    = {{nexus mod|1244}}
+
   |original url    = {{nexus mod|4313}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-50#post-3301284
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348428
   |update author  = dreamsicl
+
   |update author  = Marigolden
   |update version  = 1.4
+
   |update version  = 0.2-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Visual Crossing Sprite Overhaul
+
   |original name  = Pastel Furniture
   |original author = k2sync
+
   |original author = BloodyJinxii
   |original url    = https://community.playstarbound.com/threads/visual-crossing-sprite-overhaul-villager-farmer-edits.142549/
+
   |original url    = {{nexus mod|1705}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/visual-crossing-sprite-overhaul-villager-farmer-edits.142549/
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357809
   |update author  = paradigmnomad
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Vulpix as Cat (Alolan)
+
   |original name  = Pastel Pink Farmhouse
   |original author = Alola Vulpix Is Life
+
   |original author = midnightroar
   |original url    = {{nexus mod|2302}}
+
   |original url    = {{nexus mod|154}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-44#post-3300021
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = Allayna
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.2-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Wee Highland Coos
+
   |original name  = Peacocks
   |original author = telekineticyeti
+
   |original author = StarDoodle
   |original url    = {{nexus mod|60}}
+
   |original url    = {{nexus mod|871}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3306010
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = coldazrael & D.Grey
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Wedding Dresses and Red Shirts!
+
   |original name  = Pencilstab's Portraits (ALL PORTRAITS COMPLETED)
   |original author = Hitgirl911
+
   |original author = Pencilstab
   |original url    = https://community.playstarbound.com/resources/wedding-dresses-and-red-shirts.3725/
+
   |original url    = {{nexus mod|2351}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-59#post-3304457
+
   |update url      = {{nexus mod|2351}}
   |update author  = coldazrael
+
   |update author  = Pencilstab
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = White Ducks
+
   |original name  = Penny Expanded
   |original author = Merc931
+
   |original author = Wolvenlight
   |original url    = {{nexus mod|498}}
+
   |original url    = {{nexus mod|1372}}
   |update name    = unofficial update
+
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277589
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-130#post-3366935
   |update author  = D.Grey
+
   |update author  = uwuchiha
   |update version  = 1.0
+
   |update version  = 2.0
}}
+
}}
{{/xnb
+
{{/xnb
   |original name  = White Water Farm
+
   |original name  = Penny Expanded Marriage Dialogue
   |original author = Meevers
+
   |original author = catacoon
   |original url    = {{nexus mod|1293}}
+
   |original url    = {{nexus mod|1275}}
   |update name    = unofficial update
+
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275665
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
   |update author  = Pathoschild
+
   |update author  = flameofthenight
   |update version  = 1.1.1-unofficial.1-pathoschild
+
   |update version  = 1.0
}}
+
}}
{{/xnb
+
{{/xnb
   |original name  = Wild Doves - Brown Bird Replacement
+
   |original name  = Penny Relationship and Dialogue Overhaul
   |original author = Ebenaceae
+
   |original author = NicolasNSane
   |original url    = {{nexus mod|693}}
+
   |original url    = {{nexus mod|1568}}
   |update name    = unofficial update
+
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304980
+
   |update url      = {{nexus mod|4761}}
 +
  |update author  = NicolaiB92
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Penny Sprite Alternate Hairstyle
 +
  |original author = Kuujho
 +
  |original url    = {{nexus mod|3166}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3321993
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Penny to Pryce Personality Overhaul (Gender Swap)
 +
  |original author = Meevers
 +
  |original url    = {{nexus mod|1253}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305863
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Penny's New Look
 +
  |original author = ARModding
 +
  |original url    = {{nexus mod|2610}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Pet Raven
 +
  |original author = hassan94935
 +
  |original url    = {{nexus mod|1247}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305939
 +
  |update author  = Ensifera
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Pet Totoro
 +
  |original author = magimatica
 +
  |original url    = {{nexus mod|1271}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-88#post-3323500
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Piano
 +
  |original author = Jokerine
 +
  |original url    = {{nexus mod|465}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-108#post-3338258
 +
  |update author  = pepoluan
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Piebald horse
 +
  |original author = MysticJumbles
 +
  |original url    = {{nexus mod|2467}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-130#post-3365079
 +
  |update author  = cat9412
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Pink Chickens
 +
  |original author = bubblestormx
 +
  |original url    = {{nexus mod|658}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-17#post-3280851
 +
  |update author  = acornfaerie
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Plastic Surgery for Your Goats
 +
  |original author = Eemie
 +
  |original url    = {{nexus mod|502}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Player Home Detailed
 +
  |original author = PandoWooSetti AKA TheGeekyDead
 +
  |original url    = {{nexus mod|301}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348738
 +
  |update author  = Marigolden
 +
  |update version  = 1.3-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Plump Abigail
 +
  |original author = Dizor
 +
  |original url    = {{nexus mod|104}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-130#post-3364975
 +
  |update author  = cat9412
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Pochi's Portraits Mod
 +
  |original author = Pochi
 +
  |original url    = {{nexus mod|1684}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-112#post-3340148
 +
  |update author  = pepoluan
 +
  |update version  = 1.1.1-unofficial.1-pepoluan
 +
}}
 +
{{/xnb
 +
  |original name  = Porcelaine's Wizard - Portrait and Sprite
 +
  |original author = Porcelaine
 +
  |original url    = {{nexus mod|1940}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-33#post-3293999
 +
  |update author  = Mukamii
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Portrait Accurate Alex
 +
  |original author = iKeychain
 +
  |original url    = {{nexus mod|349}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-39#post-3298931
 +
  |update author  = Allayna & Amx
 +
  |update version  = 1.2
 +
}}
 +
{{/xnb
 +
  |original name  = Portraits 42 people
 +
  |original author = Fastoso
 +
  |original url    = {{nexus mod|616}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348345
 +
  |update author  = helenaneedshugs
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Prettier Small Farm
 +
  |original author = E_Wang aka Flor3nce2456
 +
  |original url    = {{nexus mod|1545}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-105#post-3335725
 +
  |update author  = minervamaga
 +
  |update version  = 1.0.0-unofficial.1-minervamaga
 +
}}
 +
{{/xnb
 +
  |original name  = Primitive Artisan Equipment
 +
  |original author = Ankokou
 +
  |original url    = {{nexus mod|940}}
 +
  |update name    = official update
 +
  |update url      = https://www.nexusmods.com/stardewvalley/mods/4005
 +
  |update author  = tlitookilakin
 +
  |update version  = 1.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Purple Museum Reward Furniture
 +
  |original author = Ariella
 +
  |original url    = {{nexus mod|767}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304686
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Rabbit In A Hat
 +
  |original author = PixelatedPicasso
 +
  |original url    = {{nexus mod|4681}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-120#post-3352297
 +
  |update author  = mouse
 +
  |update version  = 0.0.2-unofficial.1-mouse
 +
}}
 +
{{/xnb
 +
  |original name  = Rabbit's Foot to Usagi Mochi
 +
  |original author = gelatinveins
 +
  |original url    = {{nexus mod|1108}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299425
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Ragdoll Cat Replacements
 +
  |original author = peroxidewren
 +
  |original url    = https://community.playstarbound.com/threads/ragdoll-cats-pet-replacements.130437/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-3#post-3264159
 +
  |update author  = Kuriiyo
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Rainbow Galaxy Sword
 +
  |original author = Sirenity
 +
  |original url    = {{nexus mod|1204}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-3#post-44301
 +
  |update author  = UlyanaLeyana
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Ran's Fancy Farmer
 +
  |original author = Ran
 +
  |original url    = {{nexus mod|2718}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-73#post-50242
 +
  |update author  = wally32
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Realistic Animal Replacements
 +
  |original author = Crucifigo
 +
  |original url    = https://community.playstarbound.com/threads/new-free-to-edit-wips-crucifigos-livestock-semi-realistic-animal-replacers.109480/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259729
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Realistic Cellar Size
 +
  |original author = Cylesburk
 +
  |original url    = {{nexus mod|1474}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-129#post-3363816
 +
  |update author  = grapefruitcult
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Real Life Horses
 +
  |original author = Minakie
 +
  |original url    = {{nexus mod|759}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3267236
 +
  |update author  = jhunichi
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Recolored Buildings - Smaller Silos - Alt Brick House - Rainbow colors
 +
  |original author = Develsaa
 +
  |original url    = {{nexus mod|98}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348428
 +
  |update author  = Marigolden
 +
  |update version  = 0.1-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Recolored Luau and Moonlight Jellies Candle Boats to match the Beach and Desert Recolors Mod - combined
 +
  |original author = Sabreene
 +
  |original url    = {{nexus mod|1701}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276212
 +
  |update author  = waftwaffle
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Recolored stone paths
 +
  |original author = taintedwheat
 +
  |original url    = https://community.playstarbound.com/threads/recolored-stone-paths.117439/#post-2946389
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-3#post-44222
 +
  |update author  = Kreeate
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Redesigned Horse Running Animation
 +
  |original author = avalitor
 +
  |original url    = {{nexus mod|261}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305939
 +
  |update author  = Ensifera
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Red Holsteins (Brown Cow)
 +
  |original author = Zhuria
 +
  |original url    = {{nexus mod|47}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278037
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Redone Dialogue
 +
  |original author = prettypinktardis
 +
  |original url    = {{nexus mod|1447}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-114#post-3341805
 +
  |update author  = .Lavender.
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Refined Bachelors Portrait Mod
 +
  |original author = Chrysanthe
 +
  |original url    = {{nexus mod|938}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287131
 +
  |update author  = paradigmnomad & D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Refined Abigail, Emily and Maru Portraits
 +
  |original author = Chrysanthe
 +
  |original url    = {{nexus mod|965}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280497
 +
  |update author  = Amx
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Remove That Damn Rock
 +
  |original author = Androxilogin
 +
  |original url    = {{nexus mod|384}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/updating-mods-for-stardew-valley-1-4.156000/page-14#post-3353498
 +
  |update author  = minervamaga
 +
  |update version  = 1.1.1-unofficial.1-minervamaga
 +
}}
 +
{{/xnb
 +
  |original name  = Revised Alex Cutscene
 +
  |original author = IronZelly
 +
  |original url    = https://community.playstarbound.com/threads/revised-alex-8-heart-cutscene.130207/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357242
 +
  |update author  = Allayna
 +
  |update version  = 1.2
 +
}}
 +
{{/xnb
 +
  |original name  = Ride Bear
 +
  |original author = PenguinTuxedo
 +
  |original url    = {{nexus mod|793}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
 +
  |update author  = coldazrael
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Ride-able Chocobo (FF14 style!)
 +
  |original author = Kitsutsune
 +
  |original url    = https://community.playstarbound.com/threads/ride-able-chocobo-ff14-style-lavender-coral-pink-ect-added.112156/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304796
 +
  |update author  = Kuriiyo
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Rikuo's Character Portrait
 +
  |original author = Rikuo
 +
  |original url    = {{nexus mod|231}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-25#post-3286931
 +
  |update author  = paradigmnomad
 +
  |update version  = 4.0
 +
}}
 +
{{/xnb
 +
  |original name  = Rocky Junimo Hut
 +
  |original author = Gweniaczek
 +
  |original url    = {{nexus mod|1870}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258738
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Roman Bath House Retexture
 +
  |original author = Rauchschwalbe
 +
  |original url    = https://community.playstarbound.com/threads/bath-house-retexture.140922/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
 +
  |update author  = Marigolden
 +
  |update version  = 1.1-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Roosters (Blue Chicken Replacement)
 +
  |original author = Zhuria
 +
  |original url    = https://community.playstarbound.com/threads/roosters.125933/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262895
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Rose's Interior
 +
  |original author = Roserish
 +
  |original url    = {{nexus mod|2715}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-59#post-3304486
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Rue's Creepy Curios and Spooky Aesthetics (Trees Only)
 +
  |original author = Ruevian
 +
  |original url    = https://community.playstarbound.com/threads/rues-creepy-curios-and-spooky-aesthetics-updated-11-7.126419
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3301953
 +
  |update author  = sunnrock
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Rue's Creepy Curios and Spooky Aesthetics (Fences and Craftables)
 +
  |original author = Ruevian
 +
  |original url    = https://community.playstarbound.com/threads/rues-creepy-curios-and-spooky-aesthetics-updated-11-7.126419
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302300
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Rusty Trough Fix
 +
  |original author = Zhuria
 +
  |original url    = {{nexus mod|37}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305765
 +
  |update author  = Ensifera
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Safety Net Slime Hutch
 +
  |original author = Plutey
 +
  |original url    = {{nexus mod|621}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3349511
 +
  |update author  = Jhoulana
 +
  |update version  = 1.2
 +
}}
 +
{{/xnb
 +
  |original name  = Sailor Moon Wands
 +
  |original author = kumarisuchan
 +
  |original url    = {{nexus mod|1687}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-41#post-3299332
 +
  |update author  = Allayna
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Sakamoto san - Cat Replacer
 +
  |original author = RedHunter
 +
  |original url    = {{nexus mod|62}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-120#post-3352201
 +
  |update author  = ravenrakkuas
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Sakura's Cat Girls
 +
  |original author = Sakurasflavor
 +
  |original url    = {{nexus mod|1245}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Sam - New Hair and Jacket
 +
  |original author = ktruong
 +
  |original url    = {{nexus mod|898}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277589
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Sam Gets a Makeover
 +
  |original author = Tyrian
 +
  |original url    = {{nexus mod|1694}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-33#post-3293999
 +
  |update author  = Mukamii
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Sam's Hair Makeover
 +
  |original author = Chrysanthe
 +
  |original url    = {{nexus mod|360}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305765
 +
  |update author  = Ensifera
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Sam Short Hair
 +
  |original author = jessicasoosh
 +
  |original url    = {{nexus mod|1124}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-70#post-3307508
 +
  |update author  = Seyph
 +
  |update version  = 1.0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Sam/Sebastian Romance Mod Sambastian
 +
  |original author = Pixelated Farmhouse
 +
  |original url    = https://pixelatedfarmhouse.tumblr.com/post/190537323066/samsebastian-romance-mod
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-6#post-71693
 +
  |update author  = Allayna
 +
  |update version  = 1.4
 +
}}
 +
{{/xnb
 +
  |original name  = Saturnspace's All Villagers Portraits Mod
 +
  |original author = Saturnspace
 +
  |original url    = {{nexus mod|614}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/attachments/cp-saturnspaces-all-villagers-portraits-mod-zip.206152/
 +
  |update author  = aaronson2012
 +
  |update version  = 1.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Sebastian - New Hair and Moto Jacket
 +
  |original author = ktruong
 +
  |original url    = {{nexus mod|877}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259170
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Sebastian is a Ginger - All Edits
 +
  |original author = melkat7
 +
  |original url    = {{nexus mod|561}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-105#post-3335725
 +
  |update author  = minervamaga
 +
  |update version  = 1.0.0-unofficial.1-minervamaga
 +
}}
 +
{{/xnb
 +
  |original name  = Sebastian's Bong Restored
 +
  |original author = lakoria
 +
  |original url    = {{nexus mod|58}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3347131
 +
  |update author  = Marigolden
 +
  |update version  = 0.1.-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Seasonal Foresty Farm Buildings
 +
  |original author = miizuki1512
 +
  |original url    = {{nexus mod|1502}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272444
 +
  |update author  = hatmouse
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Seasonal Vanilla Buildings
 +
  |original author = magimatica
 +
  |original url    = {{nexus mod|928}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Seasonal Gold Clock
 +
  |original author = Endohare
 +
  |original url    = {{nexus mod|1771}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-108#post-3338248
 +
  |update author  = pepoluan
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Sebastian Dialogue Overhaul
 +
  |original author = casualkira
 +
  |original url    = {{nexus mod|1505}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287117
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Secret of Evermore Prehistoric Dog
 +
  |original author = Skyhacker
 +
  |original url    = {{nexus mod|347}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
 +
  |update author  = Allayna
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Shane - But with Pants
 +
  |original author = Gabreallia
 +
  |original url    = {{nexus mod|959}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-70#post-3307508
 +
  |update author  = Seyph
 +
  |update version  = 1.0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Shaney-er Marriage Dialogue
 +
  |original author = Seismothesaurus
 +
  |original url    = {{nexus mod|1287}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306798
 +
  |update author  = Ensifera
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Shiny Grandpa Shrines
 +
  |original author = Schrodingers Kit
 +
  |original url    = {{nexus mod|1954}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-112#post-3340106
 +
  |update author  = pepoluan
 +
  |update version  = 1.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Shirtless Alex
 +
  |original author = bluestarkiller
 +
  |original url    = {{nexus mod|1186}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305765
 +
  |update author  = Ensifera
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Shoe Color Replacement
 +
  |original author = irowirow
 +
  |original url    = {{nexus mod|330}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
 +
  |update author  = D.Grey, Oak
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Short Haired Haley
 +
  |original author = Zoragonn101
 +
  |original url    = {{nexus mod|1620}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277227
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Shorter Haired Sebastian
 +
  |original author = Chrysanthe
 +
  |original url    = {{nexus mod|159}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305707
 +
  |update author  = Ensifera
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Shorts for Ladies
 +
  |original author = Meevers
 +
  |original url    = {{nexus mod|225}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-24#post-3286325
 +
  |update author  = junali
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Siv's Marriage Mod
 +
  |original author = sivolobwho
 +
  |original url    = {{nexus mod|366}}
 +
  |update name    = Looking for Love
 +
  |update url      = {{nexus mod|3054}}
 +
  |update author  = foggywizard
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Siberian Husky Pet
 +
  |original author = Joules
 +
  |original url    = {{nexus mod|1855}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-40583
 +
  |update author  = Techy-Jaden
 +
  |update version  = 1.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Skater Sam
 +
  |original author = hot-fish
 +
  |original url    = {{nexus mod|2368}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322224
 +
  |update author  = MouseyPounds
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Slate Shed Recolor
 +
  |original author = Asunai
 +
  |original url    = {{nexus mod|2540}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298309
 +
  |update author  = Arkanto
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Siberian Huskey Dog Replacement
 +
  |original author = Joules
 +
  |original url    = {{nexus mod|1855}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262682
 +
  |update author  = TimeWandrer
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Silo Replacement
 +
  |original author = ???
 +
  |original url    = ???
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
 +
  |update author  = twixstix
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Skitty Cat Replacement
 +
  |original author = Kiakakash
 +
  |original url    = {{nexus mod|264}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Slightly Cuter Character Sprites
 +
  |original author = Poltergeister
 +
  |original url    = {{nexus mod|1437}}
 +
  |update name    = unofficial update
 +
  |update url      = {{nexus mod|2194}}
 +
  |update author  = HanFox
 +
  |update version  = 1.8
 +
}}
 +
{{/xnb
 +
  |original name  = Slime-Animals
 +
  |original author = Sabishi1985
 +
  |original url    = https://community.playstarbound.com/threads/slime-animals-last-update-09-10-2016.110931/
 +
  |update name    = Slime Rancher
 +
  |update url      = {{nexus mod|12654}}
 +
  |update author  = Eldritchdraaks
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Slime Cute Kitty Cat Retexture
 +
  |original author = hisameartwork
 +
  |original url    = {{nexus mod|2058}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277759
 +
  |update author  = Kuriiyo
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Skeletal-Undead Horse
 +
  |original author = zcsnightmare
 +
  |original url    = {{nexus mod|253}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348738
 +
  |update author  = Marigolden
 +
  |update version  = 2.1-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Skin Colours Tweaked
 +
  |original author = MissyDiabolical
 +
  |original url    = {{nexus mod|1506}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-47#post-3300524
 +
  |update author  = Isalami
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Small Farm
 +
  |original author = HelleboreHel
 +
  |original url    = {{nexus mod|1518}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-35#post-3296405
 +
  |update author  = Allayna
 +
  |update version  = 1.2
 +
}}
 +
{{/xnb
 +
  |original name  = Smiling Krobus
 +
  |original author = UpsetSaturn
 +
  |original url    = {{nexus mod|274}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Smoking BadAss Kittycat Overhaul Mod V1.0
 +
  |original author = LuvRam
 +
  |original url    = {{nexus mod|15}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3347131
 +
  |update author  = Marigolden
 +
  |update version  = 1.1-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Some Building Edits...
 +
  |original author = MourningStar
 +
  |original url    = {{nexus mod|3113}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3321993
 +
  |update author  = coldazrael
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Some Portraits and Character Sprites
 +
  |original author = Amhara Dracul
 +
  |original url    = {{nexus mod|4113}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-115#post-3343440
 +
  |update author  = pepoluan
 +
  |update version  = 1.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Spooky Gothic Furniture
 +
  |original author = Serpentwined
 +
  |original url    = {{nexus mod|227}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302537
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Spooky Gothic Kitchen, Bed and Fireplace
 +
  |original author = Serpentwined
 +
  |original url    = {{nexus mod|155}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302537
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Spooky Gothic Wallpapers and Floorings
 +
  |original author = Serpentwined
 +
  |original url    = {{nexus mod|171}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302537
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Spooky Scary Creatures
 +
  |original author = Petulinda
 +
  |original url    = {{nexus mod|1436}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306172
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Spouse Room Redesign
 +
  |original author = casualkira
 +
  |original url    = {{nexus mod|1550}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-85#post-3322575
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Spouse Rooms Redesigned
 +
  |original author = endermaryn
 +
  |original url    = {{nexus mod|828}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260091
 +
  |update author  = Fyn
 +
  |update version  = 6.0
 +
}}
 +
{{/xnb
 +
  |original name  = Stable Replacement
 +
  |original author = FrauHaselmaus
 +
  |original url    = https://community.playstarbound.com/threads/frauhaselmaus-workshop-many-many-retextures-example-grasspaths.109701/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3304011
 +
  |update author  = kngermanotta
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Standard Farm Map - South Pond Deleted
 +
  |original author = XaqNautilus
 +
  |original url    = {{nexus mod|1875}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-6#post-72444
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Stardew Lottery Letters
 +
  |original author = Jokerine
 +
  |original url    = {{nexus mod|335}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-44#post-3300144
 +
  |update author  = brybryj
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Stardew Shortcuts - Saloon and Hospital Bypass
 +
  |original author = scrptrx
 +
  |original url    = {{nexus mod|510}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305765
 +
  |update author  = Ensifera
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Stardew Valley Ranch Lord Wind Portraits MOD
 +
  |original author = MAKIKO
 +
  |original url    = {{nexus mod|1827}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305863
 +
  |update author  = coldazrael
 +
  |update version  = 1.11
 +
}}
 +
{{/xnb
 +
  |original name  = Stardew Valley Senbby and Sam
 +
  |original author = Kikii_Saam
 +
  |original url    = {{nexus mod|2538}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302894
 +
  |update author  = coldazrael
 +
  |update version  = 1.3
 +
}}
 +
{{/xnb
 +
  |original name  = Stargrime - Visual Overhaul
 +
  |original author = mudpuppy8
 +
  |original url    = {{nexus mod|848}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306203
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = StardewValley Anime Mods
 +
  |original author = OhoDavi
 +
  |original url    = {{nexus mod|1839}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302894
 +
  |update author  = coldazrael
 +
  |update version  = 0.3
 +
}}
 +
{{/xnb
 +
  |original name  = StardewValley Anime Mods - Robin Portrait with Robin Romance Support
 +
  |original author = OhoDavi
 +
  |original url    = {{nexus mod|1839}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-90#post-3324347
 +
  |update author  = coldazrael
 +
  |update version  = 0.3
 +
}}
 +
{{/xnb
 +
  |original name  = StardewValley_Girl-byAdarin
 +
  |original author = AdarinSinner
 +
  |original url    = {{nexus mod|474}}
 +
  |update name    = unofficial update
 +
  |update url      = {{nexus mod|2165}}
 +
  |update author  = ZidanReign
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Starry Sky Interface
 +
  |original author = Walpi-chan
 +
  |original url    = {{nexus mod|1310}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273486
 +
  |update author  = Rosalie
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Studio Ghibli Re-Textures (Scarecrows)
 +
  |original author = Crazy_Leen
 +
  |original url    = https://community.playstarbound.com/threads/studio-ghibli-re-textures.109939/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275846
 +
  |update author  = MitcheII
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Suffolk Sheep Recolor
 +
  |original author = The13thBlackCat
 +
  |original url    = {{nexus mod|1076}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277589
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Super Short Grass
 +
  |original author = joyous1ariella
 +
  |original url    = {{nexus mod|768}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305179
 +
  |update author  = Ensifera
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Swans and Dodos (excludes Aptonoth)
 +
  |original author = Kitsutsune
 +
  |original url    = https://community.playstarbound.com/threads/swans-and-dodos-and-aptonoth.111758/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259911
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Sweet Greenhouse
 +
  |original author = Various
 +
  |original url    = https://community.playstarbound.com/threads/sweet-greenhouse-your-greenhouse-more-sweety.113426/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
 +
  |update author  = Oak
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Sweet Talking Sam
 +
  |original author = Kagurahime
 +
  |original url    = {{nexus mod|890}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260520
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Sweet Talking Sebastian
 +
  |original author = Kagurahime
 +
  |original url    = {{nexus mod|929}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260520
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Swimsuits to Towel or Robes
 +
  |original author = Little Tea
 +
  |original url    = https://community.playstarbound.com/threads/swimsuits-to-towels-or-robes-update-5-1-16.113721/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321936
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Taco Bones: Item+Crop graphics
 +
  |original author = Boneberry
 +
  |original url    = https://community.playstarbound.com/threads/taco-bones-item-crop-graphics-over-30-itens-done.126565/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-21#post-3284392
 +
  |update author  = acornfaerie
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Tan and Green Velociraptor
 +
  |original author = zcsnightmare
 +
  |original url    = {{nexus mod|251}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-43#post-3299950
 +
  |update author  = brybryj & Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Tank Mod
 +
  |original author = AllyJamy
 +
  |original url    = {{nexus mod|837}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306239
 +
  |update author  = coldazrael
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Teal Sebastian
 +
  |original author = xhotfish
 +
  |original url    = {{nexus mod|2267}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-113#post-3341220
 +
  |update author  = Fippsie
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Teens to Mid Late 20's
 +
  |original author = elyneara
 +
  |original url    = https://community.playstarbound.com/threads/teens-to-mid-to-late-20s-elliot-added.110661/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-66#post-3306920
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Tego's Better Harvey
 +
  |original author = tegobash
 +
  |original url    = {{nexus mod|243}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
 +
  |update author  = Marigolden
 +
  |update version  = 0.3.0-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Texas Longhorn
 +
  |original author = rlgenung
 +
  |original url    = {{nexus mod|490}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3306010
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Tiny Tree Tappers
 +
  |original author = kallisto
 +
  |original url    = {{nexus mod|1679}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303215
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Togepi Cat Replacement
 +
  |original author = CrimsonY _Alreadytaken on this site apparently_
 +
  |original url    = {{nexus mod|1234}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
 +
  |update author  = Allayna
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Tokiri's Pet Replacements - Cat (Red Panda)
 +
  |original author = Tokiri
 +
  |original url    = https://community.playstarbound.com/threads/tokiris-pet-replacements-fox-wolf-red-panda-update-red-panda-finished.110263/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-35#post-3295747
 +
  |update author  = Astartez
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Tokiri's Pet Replacements - Dog (Fox)
 +
  |original author = Tokiri
 +
  |original url    = https://community.playstarbound.com/threads/tokiris-pet-replacements-fox-wolf-red-panda-update-red-panda-finished.110263/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262199
 +
  |update author  = magicalgirl44
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Tokiri's Pet Replacements - Horse (Ridable wolf)
 +
  |original author = Tokiri
 +
  |original url    = https://community.playstarbound.com/threads/tokiris-pet-replacements-fox-wolf-red-panda-update-red-panda-finished.110263/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262199
 +
  |update author  = magicalgirl44
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Tool Icon Replacement
 +
  |original author = workingorder
 +
  |original url    = {{nexus mod|401}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271817
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Tortoiseshell Cat
 +
  |original author = magemeows
 +
  |original url    = {{nexus mod|1434}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-101#post-3333216
 +
  |update author  = corrin/catstar8
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Totoro Ghibli Anime Water Obelisk retexture
 +
  |original author = hisameartwork
 +
  |original url    = {{nexus mod|1843}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-63#post-3305648
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Traditional Japanese Homes
 +
  |original author = honochan
 +
  |original url    = {{nexus mod|2295}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287364/
 +
  |update author  = f4iTh
 +
  |update version  = 1.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Truffle Fox
 +
  |original author = Hazelnut
 +
  |original url    = {{nexus mod|3099}}
 +
  |update name    = Truffle Fox - Content Patcher
 +
  |update url      = {{nexus mod|3100}}
 +
  |update author  = Nanogamer7
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Trump Lewis
 +
  |original author = Skullshades
 +
  |original url    = {{nexus mod|990}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-71#post-3308320
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Turn Abigail into chicken
 +
  |original author = zeroford
 +
  |original url    = {{nexus mod|3722}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-6#post-73593
 +
  |update author  = phomaique
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Tweaked Penny Portrait
 +
  |original author = magimatica
 +
  |original url    = {{nexus mod|860}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280497
 +
  |update author  = Amx
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Umbreon Cat Replacer
 +
  |original author = VDotV
 +
  |original url    = {{nexus mod|176}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-15#post-3280271
 +
  |update author  = Heroic Onion
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Vanilla Child Recolors
 +
  |original author = bitcrushpupp
 +
  |original url    = {{nexus mod|1914}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304585
 +
  |update author  = Aquilegia
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Vaporeon Normal and Vaporeon Shiny Cat and Dog Replacement
 +
  |original author = linasouls9
 +
  |original url    = {{nexus mod|3069}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321024
 +
  |update author  = winterykite
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Variant Anime Portraits
 +
  |original author = Bunnihime
 +
  |original url    = {{nexus mod|48}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304778
 +
  |update author  = coldazrael
 +
  |update version  = 3.5
 +
}}
 +
{{/xnb
 +
  |original name  = Velverette's Anime Portrait and Sprite Mod
 +
  |original author = Velverette
 +
  |original url    = {{nexus mod|645}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-108#post-3338445
 +
  |update author  = pepoluan
 +
  |update version  = 0.1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Villagers Anime Portrait
 +
  |original author = Bunnihime
 +
  |original url    = {{nexus mod|97}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304778
 +
  |update author  = coldazrael, Fyn & f4iTh
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Vintage Menu Interface
 +
  |original author = Mana
 +
  |original url    = {{nexus mod|1244}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-50#post-3301284
 +
  |update author  = dreamsicl
 +
  |update version  = 1.4
 +
}}
 +
{{/xnb
 +
  |original name  = Visual Crossing Sprite Overhaul
 +
  |original author = k2sync
 +
  |original url    = https://community.playstarbound.com/threads/visual-crossing-sprite-overhaul-villager-farmer-edits.142549/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/visual-crossing-sprite-overhaul-villager-farmer-edits.142549/
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Vivi from FF9 as Dwarf
 +
  |original author = clementckm92
 +
  |original url    = https://community.playstarbound.com/resources/vivi-from-ff9-as-dwarf.4436/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-120#post-3352358
 +
  |update author  = ravenrakkuas
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Vixxi's Mounts (Wolf)
 +
  |original author = Vixxi
 +
  |original url    = https://community.playstarbound.com/threads/vixxis-mounts-wolves-fox-and-horses-current-mount-wip-tiger.109290/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-119#post-3350511
 +
  |update author  = SpringsSong
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Void Dog
 +
  |original author = JertsukkaTheMan
 +
  |original url    = {{nexus mod|1854}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321024
 +
  |update author  = winterykite
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Vulpix as Cat (Alolan)
 +
  |original author = Alola Vulpix Is Life
 +
  |original url    = {{nexus mod|2302}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
 +
  |update author  = Allayna
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Vulpix Pokemon as Cat
 +
  |original author = Halfwheat
 +
  |original url    = {{nexus mod|1784}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
 +
  |update author  = Allayna
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Warm Cozy Fireplace
 +
  |original author = Mioudew
 +
  |original url    = {{nexus mod|1024}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-4#post-51317
 +
  |update author  = UlyanaLeyana
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Wee Highland Coos
 +
  |original author = telekineticyeti
 +
  |original url    = {{nexus mod|60}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3306010
 +
  |update author  = coldazrael & D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Wedding Dresses and Red Shirts!
 +
  |original author = Hitgirl911
 +
  |original url    = {{chucklefish mod|3725}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-59#post-3304457
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = White-Grey Bee House
 +
  |original author = Naru The Weirdo
 +
  |original url    = {{nexus mod|3133}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-130#post-3364975
 +
  |update author  = cat9412
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = WhiteBorder (only white border)
 +
  |original author = xblaid
 +
  |original url    = {{nexus mod|1925}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-103#post-3334602
 +
  |update author  = hatmouse
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = White Ducks
 +
  |original author = Merc931
 +
  |original url    = {{nexus mod|498}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277589
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = White Water Farm
 +
  |original author = Meevers
 +
  |original url    = {{nexus mod|1293}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/#post-26394
 +
  |update author  = Pathoschild
 +
  |update version  = 1.1.1-unofficial.3-pathoschild
 +
}}
 +
{{/xnb
 +
  |original name  = Wild Doves - Brown Bird Replacement
 +
  |original author = Ebenaceae
 +
  |original url    = {{nexus mod|693}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304980
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Wilderness Farm No Lake
 +
  |original author = hazel214
 +
  |original url    = {{nexus mod|2893}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-80#post-3316865
 +
  |update author  = Jessebot
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = WildSpirits Pet Replacements
 +
  |original author = WildSpirits
 +
  |original url    = https://community.playstarbound.com/threads/pet-replacements.107853/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271234
 +
  |update author  = Azrax
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Winery/Brewery Retexture Mod
 +
  |original author = Dentrala & sheetcakeghost
 +
  |original url    = https://community.playstarbound.com/threads/winery-brewery-retexture-mod-assets-completed.114143/page-7
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-27#post-3288848
 +
  |update author  = andiluxe
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Witch Broom and Hat
 +
  |original author = strawberrymilk95
 +
  |original url    = {{nexus mod|499}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-29#post-3290974
 +
  |update author  = junali
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Witch Hats
 +
  |original author = 7yrsofbadluck
 +
  |original url    = {{nexus mod|612}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-32#post-3293417
 +
  |update author  = mukamii
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Witch Stuff Pack
 +
  |original author = addy468
 +
  |original url    = https://community.playstarbound.com/threads/witch-stuff-pack.138571/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-72#post-3309083
 
   |update author  = coldazrael
 
   |update author  = coldazrael
  |update version  = 1.0
  −
}}
  −
{{/xnb
  −
  |original name  = WildSpirits Pet Replacements
  −
  |original author = WildSpirits
  −
  |original url    = https://community.playstarbound.com/threads/pet-replacements.107853/
  −
  |update name    = unofficial update
  −
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271234
  −
  |update author  = Azrax
  −
  |update version  = 1.0
  −
}}
  −
{{/xnb
  −
  |original name  = Winery/Brewery Retexture Mod
  −
  |original author = Dentrala & sheetcakeghost
  −
  |original url    = https://community.playstarbound.com/threads/winery-brewery-retexture-mod-assets-completed.114143/page-7
  −
  |update name    = unofficial update
  −
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-27#post-3288848
  −
  |update author  = andiluxe
  −
  |update version  = 1.0
  −
}}
  −
{{/xnb
  −
  |original name  = Witch Broom and Hat
  −
  |original author = strawberrymilk95
  −
  |original url    = {{nexus mod|499}}
  −
  |update name    = unofficial update
  −
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-29#post-3290974
  −
  |update author  = junali
  −
  |update version  = 1.0
  −
}}
  −
{{/xnb
  −
  |original name  = Witch Hats
  −
  |original author = 7yrsofbadluck
  −
  |original url    = {{nexus mod|612}}
  −
  |update name    = unofficial update
  −
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-32#post-3293417
  −
  |update author  = mukamii
   
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 3,680: Line 5,515:  
   |update author  = acornfaerie
 
   |update author  = acornfaerie
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = World Map for Eemie's Map Recolour
 +
  |original author = zanderb14
 +
  |original url    = {{nexus mod|1616}}
 +
  |update name    = Official update
 +
  |update url      = {{nexus mod|2050}}
 +
  |update author  = minervamaga
 +
  |update version  = 1.3.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 3,707: Line 5,551:  
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Yellow Dirt Removal
 +
  |original author = Ebeths
 +
  |original url    = {{nexus mod|766}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-125#post-3358277
 +
  |update author  = Allayna
 +
  |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 3,743: Line 5,596:  
   |update author  = staarfruit
 
   |update author  = staarfruit
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Yet Another Crystal Path Recolor
 +
  |original author = Lavendarjosh
 +
  |original url    = {{nexus mod|1717}}
 +
  |update name    = Yet Another Crystal Path Recolor (CP)
 +
  |update url      = {{nexus mod|8721}}
 +
  |update author  = UlyanaLeyana
 +
  |update version  = 2.1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 3,751: Line 5,613:  
   |update url      = {{nexus mod|1853}}
 
   |update url      = {{nexus mod|1853}}
 
   |update author  = Marilyst
 
   |update author  = Marilyst
   |update version  = 1.0
+
   |update version  = 1.3.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 3,779: Line 5,641:  
   |update author  = Ensifera
 
   |update author  = Ensifera
 
   |update version  = 0.1
 
   |update version  = 0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Zhuria's Horse Edits
 +
  |original author = Zhuria
 +
  |original url    = https://community.playstarbound.com/threads/zhurias-horse-edits-recolours.108022/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-22#post-3284987
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 3,811: Line 5,682:  
==Using XNB mods==
 
==Using XNB mods==
 
===Find mods===
 
===Find mods===
If you're looking for mods, the [http://www.nexusmods.com/stardewvalley/mods/topalltime/ most popular] are a good place to start.
  −
  −
You can find mods in a few places:
  −
{| class="wikitable"
  −
|-
  −
! site
  −
! description
  −
|-
  −
| '''[http://nexusmods.com/stardewvalley/ Nexus Mods]'''
  −
| Most mods are released here.<br /><small>(Registering an account is free, just don't choose a package when you register.)</small>
  −
|-
  −
| [http://community.playstarbound.com/resources/categories/stardew-valley.22/ Chucklefish mods]
  −
| Some mods are released here (most are also on Nexus).
  −
|-
  −
| [http://community.playstarbound.com/forums/mods.215/ Stardew Valley forums]
  −
| Some mods are posted directly in the forums. Some hidden gems are only here, but finding them can be a challenge.
  −
|}
     −
Before you download a mod...
+
See [[Modding:Player_Guide/Getting_Started#Find_mods|Find mods]] on the Getting Started page.
* Does it work with the latest version of the game? XNB mods may be outdated and cause problems. Try checking the mod description or comments. Generally avoid any XNB mod not updated after the last game update.
  −
* Don't download from stardewvalleymods.net. (Mods here are usually outdated, since the site republishes mods without permission for ad revenue.)
      
===Install mods===
 
===Install mods===
Line 3,837: Line 5,689:     
# Download the XNB mod and unzip it somewhere (not in your game folder!).
 
# Download the XNB mod and unzip it somewhere (not in your game folder!).
# It should contain some <tt>.xnb</tt> files.
+
# It should contain some <samp>.xnb</samp> files.
# Find your [[Modding:Game folder|game folder]].
+
# Find your [[Modding:Player Guide/Getting Started#Find your game folder|game folder]].
# Replace the existing <tt>.xnb</tt> files under <tt>Content</tt> with the ones from the mod. '''Make sure you replace the correct files!''' There are different files with the same name (like <tt>Content/Data/hats.xnb</tt> and <tt>Content/Characters/hats.xnb</tt>), and replacing the wrong file will cause in-game errors or crashes.
+
# Replace the existing <samp>.xnb</samp> files under <samp>Content</samp> with the ones from the mod. '''Make sure you replace the correct files!''' There are different files with the same name (like <samp>Content/Data/hats.xnb</samp> and <samp>Content/Characters/hats.xnb</samp>), and replacing the wrong file will cause in-game errors or crashes.
    
===Uninstall mods===
 
===Uninstall mods===
Line 3,857: Line 5,709:     
[[Category:Modding]]
 
[[Category:Modding]]
 +
 +
[[de:Modding:XNB Mods]]
 +
[[es:Modding:Uso de mods XNB]]
 +
[[pt:Modificações:Usando mods XNB]]
 +
[[ru:Модификации:Использование XNB модификаций]]
 +
[[zh:模组:使用 XNB 模组]]
translators
8,404

edits