Difference between revisions of "Modding:Using XNB mods"

From Stardew Valley Wiki
Jump to navigation Jump to search
(update links)
(→‎Alternatives using Content Patcher: update for new Nexus profile pages)
 
(282 intermediate revisions by 56 users not shown)
Line 1: Line 1:
 
←[[Modding:Index|Index]]
 
←[[Modding:Index|Index]]
  
<div style="border: 1px solid red; background: #FCC; padding: 1em;">'''XNB mods are an older type of mod and are no longer recommended. SMAPI cannot validate them for compatibility. Use XNB mods at your own risk.'''</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.
  
See [[Modding:SMAPI compatibility#XNB mods]].
+
'''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.
  
==Using XNB mods==
+
{| class="wikitable plainlinks sortable"
===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]
+
! style="position: sticky; top: 0;"|Mod Name
| Some mods are released here (most are also on Nexus).
+
! style="position: sticky; top: 0;"|Original Author
 +
! style="position: sticky; top: 0;"|Content Patcher Equivalent
 +
! style="position: sticky; top: 0;"|Links
 
|-
 
|-
| [http://community.playstarbound.com/forums/mods.215/ Stardew Valley forums]
+
{{/xnb
| Some mods are posted directly in the forums. Some hidden gems are only here, but finding them can be a challenge.
+
  |original name  = 15x15 Greenhouse
 +
  |original author = mmanlapat
 +
  |original url    = {{nexus mod|1090}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272072
 +
  |update author  = ChiiBee
 +
  |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
 +
  |original name  = 3D NPC Houses
 +
  |original author = anjarpsx
 +
  |original url    = {{nexus mod|763}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-21#post-3284310
 +
  |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
 +
}}
 +
{{/xnb
 +
  |original name  = 5 New Hair Styles for Penny
 +
  |original author = SarahKik
 +
  |original url    = https://community.playstarbound.com/threads/5-new-hair-styles-for-penny.113484/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-29#post-3289904
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = A Different Outfit for Shane
 +
  |original author = AnticAssassin
 +
  |original url    = {{nexus mod|1335}}
 +
  |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  = A House for Linus
 +
  |original author = bluestarkiller
 +
  |original url    = {{nexus mod|1177}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-63#post-3305480
 +
  |update author  = coldazrael
 +
  |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
 +
  |original name  = A More Interesting Sam
 +
  |original author = ssr66
 +
  |original url    = {{nexus mod|1581}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
 +
  |update author  = flameofthenight
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = A Shane Brown Jacket and Pants
 +
  |original author = GeminiBird
 +
  |original url    = {{nexus mod|1380}}
 +
  |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  = 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 url    = {{nexus mod|1542}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291350
 +
  |update author  = squitz
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Abigail to Lucina (Sprite only)
 +
  |original author = wolffang719
 +
  |original url    = {{nexus mod|2537}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-63#post-3305445
 +
  |update author  = Dayashi
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Abigail Portrait With Subtle Bow and More Accurate Bow Sprites
 +
  |original author = Androxilogin
 +
  |original url    = {{nexus mod|320}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
 +
  |update author  = MouseyPounds
 +
  |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
 +
  |original name  = ACNL Mermaid Set
 +
  |original author = Tanilon & Nini
 +
  |original url    = {{nexus mod|1888}}
 +
  |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  = 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
 +
  |original name  = Alex Reborn Overhaul
 +
  |original author = Harzelora
 +
  |original url    = {{nexus mod|748}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302103
 +
  |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
 +
}}
 +
{{/xnb
 +
  |original name  = Ali's Enchanted Garden Buildings
 +
  |original author = strawberrymilk95
 +
  |original url    = {{nexus mod|641}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-20#post-3283996
 +
  |update author  = acornfaerie
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Ali's Flower Farm Map
 +
  |original author = strawberrymilk95
 +
  |original url    = {{nexus mod|1266}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-57#post-3304121
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Ali's Flower Grass
 +
  |original author = strawberrymilk95
 +
  |original url    = {{nexus mod|816}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|2051}}
 +
  |update author  = minervamga
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Ali's Foraging Farm Map
 +
  |original author = strawberrymilk95
 +
  |original url    = {{nexus mod|1122}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272072
 +
  |update author  = ChiiBee
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Ali's Lattice Fence
 +
  |original author = strawberrymilk95
 +
  |original url    = {{nexus mod|1174}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298392
 +
  |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
 +
}}
 +
{{/xnb
 +
  |original name  = Ali's Mountain Farm
 +
  |original author = strawberrymilk95
 +
  |original url    = {{nexus mod|1095}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-47#post-3300640
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Ali's Overgrown Fairy Buildings
 +
  |original author = strawberrymilk95
 +
  |original url    = {{nexus mod|494}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-20#post-3283996
 +
  |update author  = acornfaerie
 +
  |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
 +
  |original name  = Ali's Picket Fence
 +
  |original author = strawberrymilk95
 +
  |original url    = {{nexus mod|404}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-47#post-3300640
 +
  |update author  = Allayna
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Ali's Secret Forest Map
 +
  |original author = strawberrymilk95
 +
  |original url    = https://community.playstarbound.com/threads/alis-secret-forest-farm-map-and-buildings.117561/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271282
 +
  |update author  = Techonrye
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |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 url    = {{nexus mod|145}}
 +
  |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 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
 +
  |original name  = AlterOphelie's Character Overhaul
 +
  |original author = AlterOphelie
 +
  |original url    = https://community.playstarbound.com/threads/alterophelies-character-overhaul-complete.138536/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262262
 +
  |update author  = Fyn
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Alternate Chicken Colors
 +
  |original author = DarkKassanova
 +
  |original url    = {{nexus mod|189}}
 +
  |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  = 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 version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Alternate Fences and Gates
 +
  |original author = spartangerousia
 +
  |original url    = {{nexus mod|377}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322545
 +
  |update author  = coldazrael, SuperElement & Allayna
 +
  |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
 +
  |original name  = Animal Crossing Digspot - Worm Replacement
 +
  |original author = yuiidragon
 +
  |original url    = {{nexus mod|18}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259191
 +
  |update author  = MouseyPounds
 +
  |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
 +
  |original name  = Anime Villagers (Portraits)
 +
  |original author = LumpySpace
 +
  |original url    = https://community.playstarbound.com/threads/anime-villagers-30-30-portraits-done.110415/
 +
  |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
 +
  |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
 +
  |original name  = Artifact Digspot Variations
 +
  |original author = vvillow
 +
  |original url    = {{nexus mod|1336}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299520
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Arvak - Horse Replacer
 +
  |original author = R99AZM
 +
  |original url    = {{nexus mod|290}}
 +
  |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  = Baby Deer
 +
  |original author = swiftfrost
 +
  |original url    = {{nexus mod|1660}}
 +
  |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  = Backwoods and Bus Stop Tweaks
 +
  |original author = Zander
 +
  |original url    = {{nexus mod|1320}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278075
 +
  |update author  = Shalassa
 +
  |update version  = 1.1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Badass Sam
 +
  |original author = Apogirl02
 +
  |original url    = {{nexus mod|1606}}
 +
  |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  = Baechu's Portraits
 +
  |original author = Baechu
 +
  |original url    = {{nexus mod|3218}}
 +
  |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  = Baechu's Portraits
 +
  |original author = Baechu
 +
  |original url    = {{nexus mod|3218}}
 +
  |update name    = unofficial update
 +
  |update url      = {{nexus mod|8942}}
 +
  |update author  = orientalmelon
 +
  |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
 +
  |original name  = Bearded D'uccle - Chaos's Chicken Breed Replacer
 +
  |original author = kichigaikikyokagome
 +
  |original url    = {{nexus mod|1785}}
 +
  |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  = Beach and Desert Recolors - combined
 +
  |original author = hojichas
 +
  |original url    = {{nexus mod|1346}}
 +
  |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  = 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
 +
}}
 +
{{/xnb
 +
  |original name  = Bearish Harvey
 +
  |original author = Untamed
 +
  |original url    = {{nexus mod|528}}
 +
  |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
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Bearded Clint Portrait
 +
  |original author = Cathysaurusrex
 +
  |original url    = {{nexus mod|409}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-63#post-3305524
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Bearded Clint Sprite
 +
  |original author = Cathysaurusrex
 +
  |original url    = {{nexus mod|408}}
 +
  |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  = Beds Recolor
 +
  |original author = Lumisteria
 +
  |original url    = {{nexus mod|361}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|361}}
 +
  |update author  = coldazrael
 +
  |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
 +
  |original name  = Bernese Mountain Dog
 +
  |original author = Gweniaczek
 +
  |original url    = {{nexus mod|1848}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|1848}}
 +
  |update author  = Gweniacsek
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Better Artifact Digspots
 +
  |original author = joyous1ariella
 +
  |original url    = {{nexus mod|774}}
 +
  |update name    = Bouncy Chests
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258840
 +
  |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
 +
}}
 +
{{/xnb
 +
  |original name  = Better Grass Visibility
 +
  |original author = mmanlapat
 +
  |original url    = {{nexus mod|1118}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
 +
  |update author  = MouseyPounds
 +
  |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
 +
  |original name  = Better Horses
 +
  |original author = SerialDollface
 +
  |original url    = {{nexus mod|1421}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347640
 +
  |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
 +
}}
 +
{{/xnb
 +
  |original name  = Better Pigs & Recolours (v2.1)
 +
  |original author = Zhuria
 +
  |original url    = https://community.playstarbound.com/threads/better-pigs-recolours.109883/
 +
  |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  = 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
 +
  |original name  = Better Void Chicken
 +
  |original author = vvillow
 +
  |original url    = {{nexus mod|1355}}
 +
  |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  = Big Garage
 +
  |original author = HopeWasHere
 +
  |original url    = {{nexus mod|906}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302042
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = BigCola's Better Hats
 +
  |original author = Big Cola
 +
  |original url    = {{nexus mod|1485}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|2043}}
 +
  |update author  = minervamaga
 +
  |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
 +
  |original name  = Bird Replacments for Babies and Toddlers
 +
  |original author = Ankokou
 +
  |original url    = {{nexus mod|309}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258948
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Biped Dinosaur
 +
  |original author = CaveSalamander
 +
  |original url    = https://community.playstarbound.com/threads/biped-dinosaur-smaller-dino-egg-bonus-female-duck.110547/
 +
  |update name    = unofficial update
 +
  |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 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
 +
}}
 +
{{/xnb
 +
  |original name  = Black Dog
 +
  |original author = Wernt0
 +
  |original url    = {{nexus mod|1802}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-36#post-3297259
 +
  |update author  = ColossusX13
 +
  |update version  = 0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Black Fire-Mane Horse
 +
  |original author = DarkKassanova
 +
  |original url    = {{nexus mod|150}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298392
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Black Goat
 +
  |original author = Loo
 +
  |original url    = {{nexus mod|1055}}
 +
  |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  = Black Sheep
 +
  |original author = Serpentwined
 +
  |original url    = {{nexus mod|153}}
 +
  |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  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Black-White-Tuxedo Cat Recolors
 +
  |original author = beachhotdog
 +
  |original url    = {{nexus mod|966}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274843
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Blonde or Brunette Leah with Blue Shirt
 +
  |original author = Fabledx
 +
  |original url    = {{nexus mod|1302}}
 +
  |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  = Blooming trees in spring with flowers
 +
  |original author = hisameartwork
 +
  |original url    = {{nexus mod|1856}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-82#post-3318386
 +
  |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
 +
}}
 +
{{/xnb
 +
  |original name  = Blue Iridium
 +
  |original author = Willow
 +
  |original url    = {{nexus mod|1359}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271660
 +
  |update author  = Shalassa
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Bondage Wooden Horse
 +
  |original author = 2tentacles
 +
  |original url    = {{nexus mod|142}}
 +
  |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  = 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
 +
  |original name  = Bregs Goats
 +
  |original author = Bregodon
 +
  |original url    = {{nexus mod|1173}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276223
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Brown and White Turkeys
 +
  |original author = Eemie
 +
  |original url    = {{nexus mod|579}}
 +
  |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  = Brown Haired Jas and blonde Vincent Update
 +
  |original author = forrpa
 +
  |original url    = {{nexus mod|345}}
 +
  |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  = 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
 +
}}
 +
{{/xnb
 +
  |original name  = Bufflehead Ducks
 +
  |original author = Esodra
 +
  |original url    = {{nexus mod|1739}}
 +
  |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  = Bunnies that actually hop
 +
  |original author = Feathercatch
 +
  |original url    = {{nexus mod|1013}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
 +
  |update author  = Ensifera
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Cactuar Pet Replace
 +
  |original author = DarkKassanova
 +
  |original url    = {{nexus mod|148}}
 +
  |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  = 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
 +
  |original name  = Cardcaptor Sakura Collection
 +
  |original author = walpi
 +
  |original url    = {{nexus mod|1035}}
 +
  |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.6
 +
}}
 +
{{/xnb
 +
  |original name  = Cardcaptor Sakura Collection (Configureable Hats)
 +
  |original author = walpi
 +
  |original url    = {{nexus mod|1035}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303120
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Caroline with Brown Hair
 +
  |original author = abra700
 +
  |original url    = {{nexus mod|712}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305267
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Carpenter Family Portrait Overhaul
 +
  |original author = Harzelora
 +
  |original url    = {{nexus mod|611}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272744
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Cat Recolor Mod
 +
  |original author = Rietaflame
 +
  |original url    = {{nexus mod|1041}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274843
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Cat to Rooster Mod
 +
  |original author = onlyhereforpendor
 +
  |original url    = {{nexus mod|398}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305837
 +
  |update author  = Ensifera
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Catcrows
 +
  |original author = DocSaturn
 +
  |original url    = {{nexus mod|1415}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3261364
 +
  |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
 +
}}
 +
{{/xnb
 +
  |original name  = Chaba's Portrait
 +
  |original author = Chaba
 +
  |original url    = {{nexus mod|1556}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-63#post-3305524
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Chaos's Blue Whio Duck
 +
  |original author = kichigaikikyokagome
 +
  |original url    = {{nexus mod|1786}}
 +
  |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  = Character Portrait Overhaul
 +
  |original author = Kamirose
 +
  |original url    = {{nexus mod|13}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-108#post-3338254
 +
  |update author  = pepoluan
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Chest Digspot (Natural Color)
 +
  |original author = MissMochi
 +
  |original url    = {{nexus mod|1728}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299520
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Chicken Overhaul
 +
  |original author = Minakie
 +
  |original url    = {{nexus mod|918}}
 +
  |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  = Chickens to Parrots
 +
  |original author = gizomo
 +
  |original url    = {{nexus mod|1319}}
 +
  |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  = 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
 +
  |original name  = Child Clothing Rework
 +
  |original author = earthdeep
 +
  |original url    = {{nexus mod|1961}}
 +
  |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.0
 +
}}
 +
{{/xnb
 +
  |original name  = Clean Shane's Room
 +
  |original author = pandapants87 aka Ora
 +
  |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 url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347412
 +
  |update author  = Marigolden
 +
  |update version  = 1.1-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Cleaner Barns and Coops
 +
  |original author = Fuse
 +
  |original url    = {{nexus mod|926}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-119#post-3351045
 +
  |update author  = stevanihalim
 +
  |update version  = 1.2
 +
}}
 +
{{/xnb
 +
  |original name  = Cobblestone Path to Dark Grey Stone
 +
  |original author = GoddessOfThieves
 +
  |original url    = {{nexus mod|165}}
 +
  |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.0-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Cockatiel Chickens
 +
  |original author = VanillaTiel 
 +
  |original url    = {{nexus mod|149}}
 +
  |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.1-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Coii's Hair Sets Pack
 +
  |original author = Coii
 +
  |original url    = {{nexus mod|2869}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-69#post-47618
 +
  |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
 +
}}
 +
{{/xnb
 +
  |original name  = Colorful Crystal Paths
 +
  |original author = FoxyFullmoon
 +
  |original url    = {{nexus mod|549}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-115#post-3345549
 +
  |update author  = k10_ftw/krissymarie
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Community Center Bundle Overhauls
 +
  |original author = 7Yrs
 +
  |original url    = {{nexus mod|1062}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-125#post-3358330
 +
  |update author  = Allayna
 +
  |update version  = 1.4.1
 +
}}
 +
{{/xnb
 +
  |original name  = Compact Bathroom for your Farmhouse
 +
  |original author = Prismuth
 +
  |original url    = {{nexus mod|1626}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-46#post-29354
 +
  |update author  = Rmdhn
 +
  |update version  = 1.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Coordinated Crafting Bars
 +
  |original author = yifalchunbee
 +
  |original url    = {{nexus mod|554}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-13#post-3278756
 +
  |update author  = Shalassa & arkoiris
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Cozy Fishing Farm
 +
  |original author = opalie
 +
  |original url    = {{nexus mod|1398}}
 +
  |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  = CRABBIT's new hair - combined
 +
  |original author = CRABBIT
 +
  |original url    = {{nexus mod|1368}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278197
 +
  |update author  = Kuriiyo
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Crimson's Rock Crab Recolors
 +
  |original author = nekoCrimson
 +
  |original url    = {{nexus mod|1743}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-74#post-3310439
 +
  |update author  = TheTearer
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Crioulo horse
 +
  |original author = Loo
 +
  |original url    = {{nexus mod|1059}}
 +
  |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  = Custom Farm Buildings (Non-Seasonal)
 +
  |original author = Billy0815
 +
  |original url    = {{nexus mod|1413}}
 +
  |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  = Custom Farm Buildings (Seasonal)
 +
  |original author = billy0815
 +
  |original url    = {{nexus mod|1451}}
 +
  |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  = Cute Cursor
 +
  |original author = MissMochi
 +
  |original url    = {{nexus mod|1727}}
 +
  |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  = Cute Pink Albino Bunny Recolor
 +
  |original author = Jirachi
 +
  |original url    = {{nexus mod|1117}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-101#post-3332744
 +
  |update author  = netish
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Cute Shirts Mod
 +
  |original author = tacodevourer
 +
  |original url    = {{nexus mod|1362}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-48#post-3300802
 +
  |update author  = macaro0n
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Cuter Fatter Cows
 +
  |original author = IdentityPollution
 +
  |original url    = {{nexus mod|348}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|348}}
 +
  |update author  = SoulOfSorin
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = dabsihao's bb GenderSwap
 +
  |original author = dabsihao
 +
  |original url    = https://bbs.3dmgame.com/thread-5052775-1-1.html
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/#post-28714
 +
  |update author  = Flyff
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Dae's Marnie and Jas Character Redesgins
 +
  |original author = daeranilen
 +
  |original url    = https://community.playstarbound.com/threads/daes-character-redesigns-jodi-vincent-kent-jas-marnie.127409/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
 +
  |update author  = Ensifera
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Daisen Mod - Replacement
 +
  |original author = saturn
 +
  |original url    = {{nexus mod|1540}}
 +
  |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.0
 +
}}
 +
{{/xnb
 +
  |original name  = Dangan Ronpa Trigger Happy Havoc Female Hair and Shirts
 +
  |original author = ZeiaZeh
 +
  |original url    = {{nexus mod|163}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Dark Buildings
 +
  |original author = StaticOpium
 +
  |original url    = {{nexus mod|668}}
 +
  |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  = Dark-Haired Leah
 +
  |original author = Jokerine
 +
  |original url    = {{nexus mod|200}}
 +
  |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  = 2.1-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Dark Red Haired Leah
 +
  |original author = Satadoros
 +
  |original url    = {{nexus mod|124}}
 +
  |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  = Darker Watered Soil
 +
  |original author = Shardust
 +
  |original url    = {{nexus mod|1611}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-96#post-3329578
 +
  |update author  = pandachinoman
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Darker Wood and Gold Craftables
 +
  |original author = Eemie
 +
  |original url    = {{nexus mod|687}}
 +
  |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.1
 +
}}
 +
{{/xnb
 +
  |original name  = Dachshund (Dog Replacer)
 +
  |original author = DarkKassanova
 +
  |original url    = {{nexus mod|156}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274729
 +
  |update author  = tera415
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = DCBurger's Portraits (Hi-Res Only)
 +
  |original author = DCBurger
 +
  |original url    = {{nexus mod|888}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-89#post-3324251
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = DD's Handsome Harvey
 +
  |original author = DewdropDewdrop
 +
  |original url    = {{nexus mod|234}}
 +
  |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.0-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Deluxe Barn Fix and more Space
 +
  |original author = dizarus
 +
  |original url    = {{nexus mod|305}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357649
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Derpy Pugs
 +
  |original author = Slimberton
 +
  |original url    = {{nexus mod|278}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-127#post-3360538
 +
  |update author  = jenf
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Dialogue Expansion - Eilliot (Doki Doki Compatible)
 +
  |original author = Sabreene
 +
  |original url    = {{nexus mod|1648}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271742
 +
  |update author  = ayahimew
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Dino Velociraptor Reskin
 +
  |original author = Zynonia
 +
  |original url    = {{nexus mod|825}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-21#post-3284410
 +
  |update author  = Sparrows
 +
  |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
 +
}}
 +
{{/xnb
 +
  |original name  = Diverse Stardew Valley
 +
  |original author = nonsnufffie & SarahSyna
 +
  |original url    = https://community.playstarbound.com/threads/diverse-stardew-unofficial-continuation-jas-kent-and-neat-shane-added-27-05-17.125163/
 +
  |update name    = official update
 +
  |update url      = https://community.playstarbound.com/threads/diverse-stardew-unofficial-continuation-marnie-added-06-05-18.125163/
 +
  |update author  = SarahSyna & Fyn
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Dizor's Character Redraws
 +
  |original author = Dizor
 +
  |original url    = {{nexus author|Dizor}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-99#post-3331859
 +
  |update author  = minervamaga
 +
  |update version  = 1.0.0-unofficial.1-minervamaga
 +
}}
 +
{{/xnb
 +
  |original name  = Dizor's Wizard Redraw
 +
  |original author = Dizor
 +
  |original url    = {{nexus mod|74}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275660
 +
  |update author  = Pak_RT
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Dog Reskins Mod
 +
  |original author = magimatica
 +
  |original url    = {{nexus mod|1098}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274843
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Dog Bandana
 +
  |original author = JamieDepledge
 +
  |original url    = {{nexus mod|548}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-43#post-3299873
 +
  |update author  = farmerjack
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Doki Doki Dialogue - Elliot
 +
  |original author = Alistairweekend
 +
  |original url    = {{nexus mod|1560}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271742
 +
  |update author  = ayahimew
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Dratini Shiny and Dratini Cat and Dog Replacement
 +
  |original author = linasouls9
 +
  |original url    = {{nexus mod|1508}}
 +
  |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  = 1.1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Drapper Krobus
 +
  |original author = ProbablyAnonymous
 +
  |original url    = {{nexus mod|2459}}
 +
  |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  = DreamBurrow's Elliott Portrait
 +
  |original author = DreamBurrow
 +
  |original url    = {{nexus mod|158}}
 +
  |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  = Dust Spirit Recolor- Susuwatari
 +
  |original author = FinalMantasyX
 +
  |original url    = https://community.playstarbound.com/threads/dust-spirit-recolor-susuwatari-soot-spirits-from-spirited-away.107820/
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-4#post-52216
 +
  |update author  = Shaymin
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = DW3 Agumon Dinosaur Replacer
 +
  |original author = boofdawg
 +
  |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 url      = http://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-18001
 +
  |update author  = mouse
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Early Open Shops v1.2
 +
  |original author = mmanlapat
 +
  |original url    = {{nexus mod|1091}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-125#post-3358433
 +
  |update author  = Allayna
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Easy Bundles
 +
  |original author = Siddybear
 +
  |original url    = https://community.playstarbound.com/threads/super-easy-fishing-and-easy-bundles.109057/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-126#post-3358785
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Easy Fishing 
 +
  |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 url    = {{nexus author|Eemiestardew}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277270
 +
  |update author  = D.Grey & paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Eemie's Classy New Interior
 +
  |original author = Eemie
 +
  |original url    = {{nexus mod|854}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-66#post-3306821
 +
  |update author  = coldazrael, littlesin21, Asher404, acornfaerie
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Eemie's Cute Long Hairstyles
 +
  |original author = Eemie
 +
  |original url    = {{nexus mod|910}}
 +
  |update name    = unofficial update
 +
  |update url      = {{nexus mod|4526}}
 +
  |update author  = minervamaga
 +
  |update version  = 2.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Eemie Dutch Farm Buildings
 +
  |original author = Eemie
 +
  |original url    = {{nexus mod|1659}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271635
 +
  |update author  = hatmouse
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Eemie Iron Stone Cemetery Fence
 +
  |original author = Eemie
 +
  |original url    = {{nexus mod|1033}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275040
 +
  |update author  = Fyn
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Eemie Just Another Map Recolour
 +
  |original author = Eemie
 +
  |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 url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303215
 +
  |update author  = coldazrael, Kuriiyo & Pathoschild
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Eemie Medieval Modern Buildings
 +
  |original author = Eemie
 +
  |original url    = {{nexus mod|419}}
 +
  |update name    = unofficial update
 +
  |update url      = {{nexus mod|4519}}
 +
  |update author  = minervamaga
 +
  |update version  = 2.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Eemie New paths
 +
  |original author = Eemie
 +
  |original url    = {{nexus mod|607}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275040
 +
  |update author  = Fyn
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Eemie Seasonal Victorian Buildings
 +
  |original author = Eemie
 +
  |original url    = {{nexus mod|891}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271635
 +
  |update author  = hatmouse
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Eemie's Squirrel
 +
  |original author = Eemie
 +
  |original url    = {{nexus mod|1658}}
 +
  |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  = Eemie Victorian Buildings (Non-seasonal)
 +
  |original author = Eemie
 +
  |original url    = {{nexus mod|682}}
 +
  |update name    = Official update
 +
  |update url      = {{nexus mod|3511}}
 +
  |update author  = minervamaga
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Eemie Victorian Mailbox 
 +
  |original author = mmanlapat
 +
  |original url    = {{nexus mod|1069}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3261025
 +
  |update author  = .Lavender.
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Eemie Wildflowers
 +
  |original author = Eemie
 +
  |original url    = {{nexus mod|1235}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273640
 +
  |update author  = Seyph
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Eggplant Horse (Toumato - Obon Horse)
 +
  |original author = Toumato/kyubey777
 +
  |original url    = {{nexus mod|100}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273395
 +
  |update author  = hatmouse
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Elle's Barn and Coop Animal Replacements
 +
  |original author = junimods
 +
  |original url    = https://community.playstarbound.com/threads/elles-barn-and-coop-animal-replacements.126156/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-85#post-3322731
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Elle's Pig Replacements
 +
  |original author = junimods
 +
  |original url    = https://community.playstarbound.com/threads/elles-barn-and-coop-animal-replacements.126156/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
 +
  |update author  = Ensifera
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Elle's Verata (Goat Replacement)
 +
  |original author = junimods
 +
  |original url    = https://community.playstarbound.com/threads/elles-barn-and-coop-animal-replacements.126156/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304718
 +
  |update author  = Ches713
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Elle's White Rabbit
 +
  |original author = junimods
 +
  |original url    = https://community.playstarbound.com/threads/elles-barn-and-coop-animal-replacements.126156/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
 +
  |update author  = Ensifera
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Elliott Girl Portrait Ver
 +
  |original author = EX renkon
 +
  |original url    = {{nexus mod|1936}}
 +
  |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  = Elliott Portrait Mod
 +
  |original author = Lo0bo0
 +
  |original url    = {{nexus mod|738}}
 +
  |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  = Elliot Replacer - Earlier Development Version
 +
  |original author = Thoroughly
 +
  |original url    = {{nexus mod|27}}
 +
  |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  = Elliott Revised
 +
  |original author = Saltnburn
 +
  |original url    = {{nexus mod|1910}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-71#post-3308486
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Elliott Refined
 +
  |original author = Chrysanthe
 +
  |original url    = {{nexus mod|818}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-86#post-3323191
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Elliot Spruced Up
 +
  |original author = BlazingPug
 +
  |original url    = {{nexus mod|1291}}
 +
  |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  = Emily Dialogue Reworked
 +
  |original author = Scrambled1432
 +
  |original url    = {{nexus mod|1885}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
 +
  |update author  = flameofthenight
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Emily Reimagined
 +
  |original author = Chisami
 +
  |original url    = https://community.playstarbound.com/threads/emily-reimagined.135338/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3268878
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Emily Sprite and Portrait Overhaul
 +
  |original author = tolerdesigns
 +
  |original url    = {{nexus mod|1004}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
 +
  |update author  = MouseyPounds
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Emily Sprite Redux
 +
  |original author = The Mighty Palm
 +
  |original url    = {{nexus mod|1800}}
 +
  |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  = Emily Sprites Remastered
 +
  |original author = Shadowfire1223
 +
  |original url    = {{nexus mod|1551}}
 +
  |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.1
 +
}}
 +
{{/xnb
 +
  |original name  = Enari's Portraits
 +
  |original author = Enari
 +
  |original url    = {{nexus mod|137}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271282
 +
  |update author  = Techonrye
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Enhanced Dialogue Updated (not complete)
 +
  |original author = joykiller91
 +
  |original url    = {{nexus mod|925}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
 +
  |update author  = flameofthenight
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Epona Horse Edit
 +
  |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-70#post-3307632
 +
  |update author  = Reppamon
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Espeon Cat
 +
  |original author = CassandraRose
 +
  |original url    = {{nexus mod|1884}}
 +
  |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  = Everyone Likes Joja Cola
 +
  |original author = malcheese
 +
  |original url    = https://community.playstarbound.com/threads/valuable-joja-cola.129375/#post-3101942
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-49#post-3301076
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Expanded Access Maps
 +
  |original author = Allayna
 +
  |original url    = {{nexus mod|1504}}
 +
  |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 url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271282
 +
  |update author  = Techonrye
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Explorer Timmy Made A Shane
 +
  |original author = explorer_timmy
 +
  |original url    = {{nexus mod|1921}}
 +
  |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  = Extended Dialogue for Jodi and Kent
 +
  |original author = Seismothesaurus
 +
  |original url    = {{nexus mod|1288}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
 +
  |update author  = flameofthenight
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Extended Slime Hutch
 +
  |original author = QuantumConcious
 +
  |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 url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3349511
 +
  |update author  = Jhoulana
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Fall Heirloom Crops Overlay
 +
  |original author = makoace
 +
  |original url    = {{nexus mod|2954}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-103#post-3334306
 +
  |update author  = minervamaga
 +
  |update version  = 1.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Fancy Lamps
 +
  |original author = Lita
 +
  |original url    = {{nexus mod|1881}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3274106
 +
  |update author  = kaitekat
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Farmer's Water Pipe
 +
  |original author = Nectrus
 +
  |original url    = {{nexus mod|1195}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-127#post-3360590
 +
  |update author  = nocato
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Farmhouse Basement Mod
 +
  |original author = MiniPantsu
 +
  |original url    = {{nexus mod|524}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-24#post-3285327
 +
  |update author  = Moragaine, destroyerofsocks & Oak
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Farmhouse Extended
 +
  |original author = QuantumConcious
 +
  |original url    = {{nexus mod|192}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-40#post-3299266
 +
  |update author  = Allayna
 +
  |update version  = 1.7
 +
}}
 +
{{/xnb
 +
  |original name  = Fastoso's Qute Animals
 +
  |original author = Fastoso
 +
  |original url    = {{chucklefish mod|3661}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275660
 +
  |update author  = Pak_RT
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Fat Pony
 +
  |original author = Jeiel Aranal/ChemiKhazi
 +
  |original url    = {{nexus mod|354}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-113#post-3340715
 +
  |update author  = annachibi
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Female Bachelors Dialogue Overhaul
 +
  |original author = Valoodx
 +
  |original url    = {{nexus mod|3042}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|3042}}
 +
  |update author  = Valoodx
 +
  |update version  = 0.3
 +
}}
 +
{{/xnb
 +
  |original name  = Female Duck
 +
  |original author = CaveSalamander
 +
  |original url    = https://community.playstarbound.com/threads/biped-dinosaur-smaller-dino-egg-bonus-female-duck.110547/
 +
  |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  = Female Wizard - Sprite and Portrait
 +
  |original author = CreepyKat
 +
  |original url    = {{nexus mod|1011}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-48#post-3300793
 +
  |update author  = Allayna and paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Feminine Female Farmer
 +
  |original author = HyperChicken01
 +
  |original url    = {{nexus mod|407}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273805
 +
  |update author  = tenthousandcats
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Fence by Eemie
 +
  |original author = Eemie
 +
  |original url    = {{nexus mod|580}}
 +
  |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  = Fish Tank Table
 +
  |original author = DarkKassanova
 +
  |original url    = {{nexus mod|205}}
 +
  |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  = Fix Desert Bus Stop
 +
  |original author = DevilBro
 +
  |original url    = {{nexus mod|339}}
 +
  |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.1
 +
}}
 +
{{/xnb
 +
  |original name  = Flame Horses - 5 Colors
 +
  |original author = CreepyKat
 +
  |original url    = {{nexus mod|1017}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-71#post-49210
 +
  |update author  = UlyanaLeyana
 +
  |update version  = 1.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Flo - New Custom NPC (Florence)
 +
  |original author = randomAnon123
 +
  |original url    = {{nexus mod|591}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-109#post-3338661
 +
  |update author  = HeyItsDuke
 +
  |update version  = 1.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Flower Valley
 +
  |original author = KAYA/jina2ya
 +
  |original url    = {{nexus mod|2030}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|2064}}
 +
  |update author  = paradigmnomad
 +
  |update version  = 2.2
 +
}}
 +
{{/xnb
 +
  |original name  = Flowery Fences
 +
  |original author = Maromidew
 +
  |original url    = {{nexus mod|911}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278570
 +
  |update author  = Shalassa
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Flowery Fences Recolored
 +
  |original author = MixedBabe
 +
  |original url    = {{nexus mod|1289}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272292
 +
  |update author  = Shalassa
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Fluffy Cows
 +
  |original author = Maromidew
 +
  |original url    = {{nexus mod|922}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278570
 +
  |update author  = Shalassa
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Fluffy Dogs & Other Alternative Dog Sprites! (Shiba Inu & Pomeranian)
 +
  |original author = Dawn
 +
  |original url    = https://community.playstarbound.com/threads/fluffy-dogs-other-alternative-dog-sprites-update-8-pug-time.109948/
 +
  |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  = Fluffy Tuxedo Cat
 +
  |original author = osmiacyril
 +
  |original url    = {{nexus mod|850}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-90#post-3324601
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Fluffykins' Furniture - Paintings Statues and Rugs
 +
  |original author = Fluffykins
 +
  |original url    = {{nexus mod|2003}}
 +
  |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.1
 +
}}
 +
{{/xnb
 +
  |original name  = Four Crystal Paths Retextures
 +
  |original author = stupiddullahans
 +
  |original url    = {{nexus mod|1305}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-125#post-3358525
 +
  |update author  = Allayna
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Fruit Trees Reshaped
 +
  |original author = Chisami
 +
  |original url    = https://community.playstarbound.com/threads/fruit-trees-reshaped-v2-addition.114556/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-3#post-3264457
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Fruit Trees with Signs
 +
  |original author = Develsaa
 +
  |original url    = {{nexus mod|99}}
 +
  |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.0-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Furniture Redone
 +
  |original author = peachitto
 +
  |original url    = {{nexus mod|1058}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357809
 +
  |update author  = Allayna
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = F-SV No Bowlegs
 +
  |original author = Flumme
 +
  |original url    = {{nexus mod|1500}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3303842
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = F-SV Stable - Seasonal and White
 +
  |original author = Flumme
 +
  |original url    = {{nexus mod|1467}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-94#post-3326671
 +
  |update author  = minervamaga
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Garden Hedge
 +
  |original author = ohrabbit
 +
  |original url    = {{nexus mod|168}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-57#post-3304232
 +
  |update author  = Kuriiyo
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Genderbent Bachelorettes
 +
  |original author = Lechet AKA yuiidragon
 +
  |original url    = {{nexus mod|199}}
 +
  |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
 +
  |original name  = German Shepard Bundle Mod (No Cursors)
 +
  |original author = Beroin/deadduch
 +
  |original url    = {{nexus mod|54}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274843
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = GhostyTea's Cute Hats
 +
  |original author = GhostyTea
 +
  |original url    = {{nexus mod|1754}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299595
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Gift of Gab - Marriage Candidate Edition
 +
  |original author = SunnyBird
 +
  |original url    = {{nexus mod|3074}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-130#post-3366935
 +
  |update author  = uwuchiha
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Glaceon Cat
 +
  |original author = Halfwheat
 +
  |original url    = {{nexus mod|1788}}
 +
  |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  = Glitched Burger - Furniture Overhaul
 +
  |original author = Boneberry
 +
  |original url    = https://community.playstarbound.com/threads/glitched-burger-furniture-overhaul.126892/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303283
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Gnarly's Farm Expansion
 +
  |original author = GnarlyJaspian
 +
  |original url    = {{nexus mod|1187}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-96#post-3329807
 +
  |update author  = minervamaga
 +
  |update version  = 1.3.2-unofficial.minervamaga
 +
}}
 +
{{/xnb
 +
  |original name  = Gnome Hat's Recolor
 +
  |original author = Oak
 +
  |original url    = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
 +
  |update name    = official 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  = Goat Replacement
 +
  |original author = ApproachCautiously
 +
  |original url    = {{nexus mod|185}}
 +
  |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.0.1-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Goat with Horns
 +
  |original author = Develsaa
 +
  |original url    = {{nexus mod|25}}
 +
  |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  = 1.0-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Gold Star Portrait Overhaul
 +
  |original author = Lorshar
 +
  |original url    = {{nexus mod|2232}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322170
 +
  |update author  = coldazrael
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = gotama portraits
 +
  |original author = gotama
 +
  |original url    = {{nexus mod|975}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-75#post-3311351
 +
  |update author  = Rubecula
 +
  |update version  = 1.2
 +
}}
 +
{{/xnb
 +
  |original name  = gotama's Portraits MOD 2
 +
  |original author = gotama
 +
  |original url    = {{nexus mod|1221}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-100#post-3332737
 +
  |update author  = netish
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Gotama's Scarecrow and Hats Mod
 +
  |original author = gomatamanyann
 +
  |original url    = {{nexus mod|1314}}
 +
  |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  = Gothish Hat Recolors
 +
  |original author = GoddessOfThieves
 +
  |original url    = {{nexus mod|194}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-114#post-3343178
 +
  |update author  = Dede_Bug
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Grass Path for Every Season
 +
  |original author = MiaEmilia
 +
  |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-6#post-3273575
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Gravel Path Fix Mod
 +
  |original author = Yunix
 +
  |original url    = {{nexus mod|51}}
 +
  |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  = 1.0-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Green Community Center
 +
  |original author = Opalie
 +
  |original url    = {{nexus mod|1242}}
 +
  |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  = Grumpy Cat
 +
  |original author = DarkKassanova
 +
  |original url    = {{nexus mod|213}}
 +
  |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.0-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Gunther Recolour
 +
  |original author = Ylrien
 +
  |original url    = {{nexus mod|1637}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Gus into Wendy
 +
  |original author = bajel
 +
  |original url    = {{nexus mod|2605}}
 +
  |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.3
 +
}}
 +
{{/xnb
 +
  |original name  = Gus Refined
 +
  |original author = saturn
 +
  |original url    = {{nexus mod|1412}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-63#post-3305524
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Hairstyles recolored and a new Hairstyle Update
 +
  |original author = Alicedafox
 +
  |original url    = {{nexus mod|1103}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278565
 +
  |update author  = ayahimew & Kuriiyo
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Haley/Penny/Leah Expanded Dialogue
 +
  |original author = KThxBye910
 +
  |original url    = {{chucklefish mod|4697}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
 +
  |update author  = flameofthenight
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Haley and Penny Universal Love
 +
  |original author = LisaWolf
 +
  |original url    = {{nexus mod|1600}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-113#post-3341274
 +
  |update author  = Dede_Bug
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Haley as Vampire Revamp
 +
  |original author = SextingWithSirens
 +
  |original url    = {{nexus mod|1572}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-98#post-73276
 +
  |update author  = Allayna
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Haley Off-The-Shoulder Dress
 +
  |original author = Ahrimhan
 +
  |original url    = {{nexus mod|1007}}
 +
  |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  = Haley Reskin
 +
  |original author = magimatica
 +
  |original url    = {{nexus mod|1132}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277868
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Haley Skirt Recolour
 +
  |original author = Nyxcat
 +
  |original url    = {{nexus mod|1039}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3346589
 +
  |update author  = Dede_Bug
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Handsome Mr. Qi
 +
  |original author = MomiChan
 +
  |original url    = {{nexus mod|1582}}
 +
  |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
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Happier Pig with New Eyes
 +
  |original author = Develsaa
 +
  |original url    = {{nexus mod|26}}
 +
  |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
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Hardmode
 +
  |original author = RamenYum
 +
  |original url    = {{nexus mod|714}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3346590
 +
  |update author  = Dede_Bug
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Harvest Moon Wizard Replacement
 +
  |original author = TheMainFlamingoose
 +
  |original url    = {{nexus mod|4060}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-123#post-3354839
 +
  |update author  = art17
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Harvey Personality Mod (full)
 +
  |original author = woosh0
 +
  |original url    = {{nexus mod|983}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-130#post-3366935
 +
  |update author  = uwuchiha
 +
  |update version  = 2.2
 +
}}
 +
{{/xnb
 +
  |original name  = Harvey Refined
 +
  |original author = Chrysanthe
 +
  |original url    = {{nexus mod|879}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-86#post-3323257
 +
  |update author  = AquilegiaStardew
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Harvey Revised
 +
  |original author = Saltnburn
 +
  |original url    = {{nexus mod|1918}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-86#post-3323222
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Hay Silo
 +
  |original author = Flor3nce2456
 +
  |original url    = {{nexus mod|1519}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-36#post-3297356
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Heyo! No Mayo!
 +
  |original author = ProperPunctuation
 +
  |original url    = https://community.playstarbound.com/threads/heyo-no-mayo.141686/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-72#post-3308973
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Highland Cattle
 +
  |original author = ClockworkZombe
 +
  |original url    = {{nexus mod|3157}}
 +
  |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  = Hill-Top Forest Map
 +
  |original author = Minnue
 +
  |original url    = {{nexus mod|601}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275679
 +
  |update author  = ChiiBee
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Hispanic Alex
 +
  |original author = AllegedMexican
 +
  |original url    = {{nexus mod|846}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305267
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Hispanic George
 +
  |original author = AllegedMexican
 +
  |original url    = {{nexus mod|838}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305267
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Hobbit Hole
 +
  |original author = LemonEX
 +
  |original url    = https://community.playstarbound.com/threads/lemons-characters-more-update-clint.109961
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/lemons-characters-more-update-clint.109961/page-5#post-3268689
 +
  |update author  = Pathoschild
 +
  |update version  = 1.0-unofficial.1-pathoschild
 +
}}
 +
{{/xnb
 +
  |original name  = hojichas' Wallpaper and Flooring
 +
  |original author = hojichas
 +
  |original url    = {{nexus mod|912}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285313
 +
  |update author  = Allayna & Mitchell
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = hojichas' Seaside Interior
 +
  |original author = hojichas
 +
  |original url    = {{nexus mod|1189}}
 +
  |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.0
 +
}}
 +
{{/xnb
 +
  |original name  = Holsteins (White Cow)
 +
  |original author = Zhuria
 +
  |original url    = {{nexus mod|45}}
 +
  |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  = Hope's Farmer Customization Mods
 +
  |original author = HopeWasHere
 +
  |original url    = {{nexus mod|1008}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291443
 +
  |update author  = D.Grey
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Hope's Farmer Customization Mods (hairstyles)
 +
  |original author = HopeWasHere
 +
  |original url    = {{nexus mod|1008}}
 +
  |update name    = Hope's Hair Pack
 +
  |update url      = https://community.playstarbound.com/threads/hopes-hair-pack.161149/
 +
  |update author  = just-sora
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Hope's Secret Springs Cave
 +
  |original author = HopeWasHere
 +
  |original url    = {{nexus mod|1155}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
 +
  |update author  = coldazrael
 +
  |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
 +
  |original name  = Horse Edits & Recolours
 +
  |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-9#post-3276044
 +
  |update author  = twixstix
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Horses to Dragons/Pegasi
 +
  |original author = Aternova
 +
  |original url    = https://community.playstarbound.com/threads/horses-to-dragons-pegasi-saddleless-steeds-and-hercules-pegasus.108539/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-45#post-3300239
 +
  |update author  = Allayna & brybryj
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Horse to Mule
 +
  |original author = magimatica
 +
  |original url    = {{nexus mod|1181}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277868
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Horse to Vespa Scooter + Garage
 +
  |original author = Pi.Curious
 +
  |original url    = https://community.playstarbound.com/threads/horse-to-vespa-scooter-garage-joja-scooter-added.110212/
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-6#post-75931
 +
  |update author  = phomaique
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = House (Final Upgrade) Color Mod
 +
  |original author = MrMcK
 +
  |original url    = {{nexus mod|334}}
 +
  |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  = 0.2-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = House Remodel - Interior Design
 +
  |original author = Minakie
 +
  |original url    = {{nexus mod|753}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Hudson Valley Buildings
 +
  |original author = oomps62, magimatica and endohare
 +
  |original url    = {{nexus mod|1478}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|2110}}
 +
  |update author  = oomps62
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Huge Sheds Redux
 +
  |original author = Boldrin
 +
  |original url    = {{nexus mod|1662}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321937
 +
  |update author  = coldazrael
 +
  |update version  = 1.3
 +
}}
 +
{{/xnb
 +
  |original name  = Immersive (F) Marriage Candidate Overhaul
 +
  |original author = Chickenkila
 +
  |original url    = {{nexus mod|33}}
 +
  |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  = Immersive Marriage - Abigail
 +
  |original author = robolink
 +
  |original url    = {{nexus mod|33}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271485
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Improved Dirt and Recolored Grass for Fall (English Only)
 +
  |original author = Relenanator
 +
  |original url    = {{nexus mod|1105}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-61#post-3305023
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Improved Penny Vanilla Portrait
 +
  |original author = G The Generous
 +
  |original url    = {{nexus mod|1498}}
 +
  |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.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
 +
}}
 +
{{/xnb
 +
  |original name  = Introducing JojaMart and Shane: A Custom Cutscene Mod
 +
  |original author = IronZelly
 +
  |original url    = https://community.playstarbound.com/threads/introducing-jojamart-and-shane-a-custom-cutscene-mod.129338/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-80#post-3317020
 +
  |update author  = springacres
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Ira Yume100 - Harvey
 +
  |original author = Minrisa
 +
  |original url    = {{nexus mod|2254}}
 +
  |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  = 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
 +
  |original name  = Item Overhaul
 +
  |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-49#post-3300985
 +
  |update author  = Allayna & paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = JAC'd Greenhouse Extended
 +
  |original author = Plutey/Androxilogin
 +
  |original url    = {{nexus mod|739}}
 +
  |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  = JAC'd Sheds
 +
  |original author = Plutey/Androxilogin
 +
  |original url    = {{nexus mod|681}}
 +
  |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  = Jamie's Balanced Greenhouse
 +
  |original author = JamieMage2005
 +
  |original url    = {{nexus mod|1078}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272292
 +
  |update author  = Shalassa
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = JG Demitrus in shipping box
 +
  |original author = Jeremiah Gottwald AKA JGottwald
 +
  |original url    = {{nexus mod|65}}
 +
  |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.0-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Jersey Cow
 +
  |original author = magimatica
 +
  |original url    = {{nexus mod|861}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304718
 +
  |update author  = Ches713
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Jodi and Vincent - Sprites and Portraits Remastered Mod
 +
  |original author = Shadowfire1223
 +
  |original url    = {{nexus mod|1555}}
 +
  |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  = JumJum Jr.
 +
  |original author = ProJared
 +
  |original url    = {{nexus mod|197}}
 +
  |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  = Jungle Temple
 +
  |original author = UlithiumDragon
 +
  |original url    = {{nexus mod|1014}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299529
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Junimo Artifact Digspots
 +
  |original author = Seismothesaurus
 +
  |original url    = {{nexus mod|1321}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299520
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Junimo Horse
 +
  |original author = monteso
 +
  |original url    = {{nexus mod|700}}
 +
  |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  = Junimos to Totoros
 +
  |original author = magimatica
 +
  |original url    = {{nexus mod|867}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Kal's Marriage Candidates Portraits
 +
  |original author = kal621owo621_Snakebite
 +
  |original url    = {{nexus mod|2346}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/#post-28714
 +
  |update author  = Flyff
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Karina's Long Hair
 +
  |original author = Karina
 +
  |original url    = {{nexus mod|512}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Karmylla's Cellar Edit
 +
  |original author = Karmylla
 +
  |original url    = {{nexus mod|1148}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|1148}}
 +
  |update author  = Karmylla
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Karmylla's Spouse Room Edits
 +
  |original author = Karmylla
 +
  |original url    = {{nexus mod|1356}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|1356}}
 +
  |update author  = karmylla
 +
  |update version  = 3.0
 +
}}
 +
{{/xnb
 +
  |original name  = Karna Fate - Sebastian
 +
  |original author = Minrisa
 +
  |original url    = {{nexus mod|2292}}
 +
  |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  = Kawaii Hats
 +
  |original author = yuikami
 +
  |original url    = {{nexus mod|64}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3302982
 +
  |update author  = coldazrael
 +
  |update version  = 0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Kero Cat Replacement - Cardcaptor Sakura
 +
  |original author = Walpi-chan
 +
  |original url    = {{nexus mod|1028}}
 +
  |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  = Kimberly's witch kitchen.Bed.Bathroom.Crib.
 +
  |original author = Kimberly
 +
  |original url    = {{nexus mod|1375}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-112#post-3340424
 +
  |update author  = mouseypounds
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Kitchen Nook for 1st Farmhouse
 +
  |original author = Allayna
 +
  |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 url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-36#post-3297356
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Kingdom Hearts Sea Salt Ice Cream
 +
  |original author = Dom AKA domfred908
 +
  |original url    = {{nexus mod|315}}
 +
  |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  = 0.9.2-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Korea Retro
 +
  |original author = standlaid1
 +
  |original url    = {{nexus mod|5287}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-48#post-29801
 +
  |update author  = Allayna
 +
  |update version  = 1.0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Leafeon Retexture for Cat
 +
  |original author = ImXTooNinjaxX
 +
  |original url    = {{nexus mod|1673}}
 +
  |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  = 1.3
 +
}}
 +
{{/xnb
 +
  |original name  = Leah New Hair
 +
  |original author = CoffeeBuns
 +
  |original url    = {{nexus mod|757}}
 +
  |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  = Less Creepy Marnie Sprite
 +
  |original author = CassandraRose
 +
  |original url    = {{nexus mod|1349}}
 +
  |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  = let 's cafe
 +
  |original author = momoki
 +
  |original url    = {{nexus mod|10546}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-5#post-70199
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Lewd Bachelorettes (Buxom)
 +
  |original author = AirplaneRandy
 +
  |original url    = https://community.playstarbound.com/threads/lewd-bachelorettes-portrait-mod-buxom-haley-added.108210/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-131#post-3369629
 +
  |update author  = UberMann
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Lewis to Mayor Thomas Character Overhaul
 +
  |original author = Budzilla
 +
  |original url    = {{nexus mod|73}}
 +
  |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  = Linus is a potato From minecraft
 +
  |original author = laser5mw
 +
  |original url    = {{nexus mod|491}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-6#post-73588
 +
  |update author  = phomaique
 +
  |update version  = 1.0-unofficial.1-phomaique
 +
}}
 +
{{/xnb
 +
  |original name  = Linus With Clothes
 +
  |original author = Goodledoodoo
 +
  |original url    = {{nexus mod|1512}}
 +
  |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  = Lolia Fashion Bachelorettes
 +
  |original author = Royalyspooky
 +
  |original url    = https://community.playstarbound.com/threads/lolita-fashion-bachelorettes.128214/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3267529
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Longhair Cat Replacement
 +
  |original author = Korokos
 +
  |original url    = https://community.playstarbound.com/threads/longhair-cats-four-new-colors-4-15.111316/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-3#post-3263910
 +
  |update author  = paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Long Elf Ears Recolours
 +
  |original author = ScalesofGrey
 +
  |original url    = {{nexus mod|1088}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-28#post-3289172
 +
  |update author  = staarfruit
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Luna Cat
 +
  |original author = PoshPossum
 +
  |original url    = {{nexus mod|2157}}
 +
  |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  = Lunatic Farm Map
 +
  |original author = Lunatic
 +
  |original url    = {{nexus mod|1408}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302687
 +
  |update author  = SuperElement & Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = LTTPBuildingsreplacer
 +
  |original author = JazzMinK
 +
  |original url    = {{nexus mod|1284}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-19#post-3283067
 +
  |update author  = m2pt5/Emtu
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Madeline's Farmhouse and Farm Building Recolors
 +
  |original author = Madeline
 +
  |original url    = {{nexus mod|198}}
 +
  |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 & Allayna
 +
  |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
 +
}}
 +
{{/xnb
 +
  |original name  = Make Krobus Gaster
 +
  |original author = DiStri
 +
  |original url    = {{nexus mod|1201}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-2#post-39785
 +
  |update author  = Techy-Jaden
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Makeup as Accessories
 +
  |original author = Jinxiewinxie
 +
  |original url    = {{nexus mod|183}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-28#post-3289541
 +
  |update author  = junali
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Make Love With Shane (Works with Co-op Mode)
 +
  |original author = Kagurahime
 +
  |original url    = {{nexus mod|917}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-129#post-3362721
 +
  |update author  = SamelaG
 +
  |update version  = 1.0.2
 +
}}
 +
{{/xnb
 +
  |original name  = Marnie Edit
 +
  |original author = pipmimi
 +
  |original url    = {{nexus mod|2455}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347432
 +
  |update author  = Ches713
 +
  |update version  = 1.2
 +
}}
 +
{{/xnb
 +
  |original name  = Marnie Romance
 +
  |original author = MrValuable
 +
  |original url    = https://stardew-valley.org/marnie-romance-mod/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-114#post-3343163
 +
  |update author  = vadie
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Marriage Dialogue Expansion - Eilliot
 +
  |original author = Sabreene
 +
  |original url    = {{nexus mod|1595}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271742
 +
  |update author  = ayahimew
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Marriage Dialogue Mod for Haley
 +
  |original author = shann713
 +
  |original url    = {{nexus mod|1677}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
 +
  |update author  = flameofthenight
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Marshmallow Unicorn
 +
  |original author = jigajang
 +
  |original url    = {{chucklefish mod|3720}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302646
 +
  |update author  = Ches713
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Marshmallow Unicorn (Alternative)
 +
  |original author = summonercat
 +
  |original url    = https://community.playstarbound.com/threads/marshmallow-unicorn.116854/#post-3134876
 +
  |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  = Maru Replacer - earlier development version
 +
  |original author = Thoroughly
 +
  |original url    = {{nexus mod|29}}
 +
  |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 & Allayna
 +
  |update version  = 1.2
 +
}}
 +
{{/xnb
 +
  |original name  = Maru Portrait's Retexture
 +
  |original author = HarinBAE
 +
  |original url    = {{nexus mod|1578}}
 +
  |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  = Matching Maru Sprite (Villager Anime Portraits)
 +
  |original author = CassandraRose
 +
  |original url    = {{nexus mod|1453}}
 +
  |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  = Matching Slime Hutch
 +
  |original author = SlushieSlowpoke
 +
  |original url    = {{nexus mod|111}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
 +
  |update author  = MouseyPounds
 +
  |update version  = 1.0-Final
 +
}}
 +
{{/xnb
 +
  |original name  = MCMC's Portrait Mod
 +
  |original author = MCMC
 +
  |original url    = https://community.playstarbound.com/threads/mcmc-portraits%EF%BC%88ver1-9%EF%BC%89.109112/
 +
  |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 author  = keodau27
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Medieval Traditional Hats
 +
  |original author = LemonEX
 +
  |original url    = https://community.playstarbound.com/threads/medieval-traditional-hats-replacing.110803/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-51#post-3301734
 +
  |update author  = Mopsy
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Melons to Watermelons
 +
  |original author = zynonia
 +
  |original url    = {{nexus mod|1397}}
 +
  |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  = Memory Farm - Farm Map Layouts
 +
  |original author = Attitude Rains
 +
  |original url    = {{nexus mod|1703}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-87#post-3323318
 +
  |update author  = coldazrael
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Metal Worm Bin
 +
  |original author = vkunicorn
 +
  |original url    = {{nexus mod|2675}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-6#post-75923
 +
  |update author  = phomaique
 +
  |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-124#post-3357348
 +
  |update author  = Allayna
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Mimikyu - Cat Dog Replacer
 +
  |original author = ChiChain and SihaRakhet
 +
  |original url    = {{nexus mod|1246}}
 +
  |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  = Minecraft Sword Styles
 +
  |original author = DarkKassanova
 +
  |original url    = {{nexus mod|160}}
 +
  |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  = Mint Kiss Furniture
 +
  |original author = Ribbonain
 +
  |original url    = {{nexus mod|619}}
 +
  |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.3
 +
}}
 +
{{/xnb
 +
  |original name  = Missy's Shirts
 +
  |original author = MissyDiabolical
 +
  |original url    = {{nexus mod|1523}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3303956
 +
  |update author  = Kuriiyo & mukamii
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Missy's Walls and Floors
 +
  |original author = MissyDiabolical
 +
  |original url    = {{nexus mod|1579}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Mi's and Eemie's Butterflies (1.3)
 +
  |original author = Mi/Campanulamis & Eemie
 +
  |original url    = {{nexus mod|1111}}
 +
  |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  = Mi's Bathroom Recolours
 +
  |original author = Mi/Campanulamis
 +
  |original url    = {{nexus mod|1036}}
 +
  |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
 +
  |original name  = Mi's Classy Victorian interior set inspired by eemie
 +
  |original author = Mi/Campanulamis
 +
  |original url    = {{nexus mod|1074}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275117
 +
  |update author  = hwayunhae
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Mi's Elegant Victorian interior
 +
  |original author = Mi/Campanulamis
 +
  |original url    = {{nexus mod|1074}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-4#post-51572
 +
  |update author  = mouse
 +
  |update version  = 1.3
 +
}}
 +
{{/xnb
 +
  |original name  = Mi's Fireplace (1.3)
 +
  |original author = Mi/Campanulamis
 +
  |original url    = {{nexus mod|1024}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273636
 +
  |update author  = Seyph
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Mi's Framed Butterfly and Insect Displays
 +
  |original author = Mi/Campanulamis
 +
  |original url    = {{nexus mod|1065}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-126#post-3358847
 +
  |update author  = Allayna
 +
  |update version  = 1.3
 +
}}
 +
{{/xnb
 +
  |original name  = Modern kitchen
 +
  |original author = Static Opium
 +
  |original url    = {{nexus mod|665}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/#post-7669
 +
  |update author  = Sofi52
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Monster Valley
 +
  |original author = Blizzriel
 +
  |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 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  = Moon Meteor 달 운석 리텍스쳐
 +
  |original author =  이얏호 ssm4031
 +
  |original url    = https://blog.naver.com/ssm4031/221501552288
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-5#post-70203
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = More Accessible Wilderness Farm
 +
  |original author = gobbldygook
 +
  |original url    = {{nexus mod|603}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287303
 +
  |update author  = junali
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = More Accurate Dwarf
 +
  |original author = spacedoggity
 +
  |original url    = {{nexus mod|1470}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
 +
  |update author  = MouseyPounds
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = More Emo Sebastian
 +
  |original author = Vienix
 +
  |original url    = {{nexus mod|3104}}
 +
  |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  = More Galactic Galaxy Swords
 +
  |original author = Alliehxxx
 +
  |original url    = {{nexus mod|2530}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298188
 +
  |update author  = Arkanto
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Morst-CERBERUS and SUPI
 +
  |original author = QuQii/songaoyuan
 +
  |original url    = {{nexus mod|9904}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-5#post-56273
 +
  |update author  = marshallharck
 +
  |update version  = 1.5.4
 +
}}
 +
{{/xnb
 +
  |original name  = Mumps Mod
 +
  |original author = KiraraLala
 +
  |original url    = {{nexus mod|1730}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-90#post-3324601
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = MunchItValency's Starter Pokemon
 +
  |original author = MunchItValency
 +
  |original url    = {{nexus mod|2151}}
 +
  |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  = Munchkin Kitten Cat Replacement
 +
  |original author = DaleighChronicle
 +
  |original url    = {{nexus mod|2248}}
 +
  |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  = Mushroom Tree Growth Re-Texture
 +
  |original author = burtron
 +
  |original url    = {{nexus mod|338}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276146
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Mushroom Tree Re-Texture
 +
  |original author = allanbachti
 +
  |original url    = {{nexus mod|1729}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276146
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Mutated Cows with 2 Heads
 +
  |original author = StaticOpium
 +
  |original url    = {{nexus mod|710}}
 +
  |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  = My Little Valley - Farming is Magic - Mane Six Ponies
 +
  |original author = Salendola
 +
  |original url    = {{nexus mod|206}}
 +
  |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  = MysticTempest's Furniture Mod
 +
  |original author = MysticTempest
 +
  |original url    = https://community.playstarbound.com/threads/mystictempests-furniture-mod-updated-for-v1-3-w-multi-language-support.117035/
 +
  |update name    = official update
 +
  |update url      = https://community.playstarbound.com/threads/mystictempests-furniture-mod-updated-for-v1-3-w-multi-language-support.117035/
 +
  |update author  = MysticTempest
 +
  |update version  = 1.3.0
 +
}}
 +
{{/xnb
 +
  |original name  = MysticTempest's Tea Mod
 +
  |original author = MysticTempest
 +
  |original url    = https://community.playstarbound.com/threads/mystictempests-tea-mod-updated-for-v1-3-w-multi-language-support.129850/
 +
  |update name    = official update
 +
  |update url      = https://community.playstarbound.com/threads/mystictempests-tea-mod-updated-for-v1-3-w-multi-language-support.129850/
 +
  |update author  = MysticTempest
 +
  |update version  = 1.0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Mythological Creatures: Horses
 +
  |original author = MysticTempest
 +
  |original url    = https://community.playstarbound.com/threads/mythological-creatures-horses.109498/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-114#post-3342165
 +
  |update author  = pepoluan
 +
  |update version  = 1.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Nerdy Hot Maru
 +
  |original author = tolerdesigns
 +
  |original url    = {{nexus mod|1029}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
 +
  |update author  = MouseyPounds
 +
  |update version  = 1.2
 +
}}
 +
{{/xnb
 +
  |original name  = New and Improved Hairstyles
 +
  |original author = Chrysanthe
 +
  |original url    = https://community.playstarbound.com/threads/new-and-improved-hairstyles.112097/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273781
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = New Cow Breeds
 +
  |original author = Zhuria
 +
  |original url    = https://community.playstarbound.com/threads/new-cow-breeds.110272/
 +
  |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  = New Dogs
 +
  |original author = Zhuria
 +
  |original url    = {{chucklefish mod|3496}}
 +
  |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  = New Handsome Elliott Portrait and Sprite
 +
  |original author = sabreene
 +
  |original url    = {{nexus mod|1676}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285313
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = New Portraits Mod aka 微调立绘美化2.0 (Portrait Mod)
 +
  |original author = ???
 +
  |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 url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276223
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = New Shirts
 +
  |original author = FANTUANTAIKA BAIRE
 +
  |original url    = {{nexus mod|2418}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-85#post-3322545
 +
  |update author  = coldazrael
 +
  |update version  = 3.1.3
 +
}}
 +
{{/xnb
 +
  |original name  = New Skintones
 +
  |original author = prettypinktardis
 +
  |original url    = {{nexus mod|1231}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273805
 +
  |update author  = tenthousandcats
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = New Spouse Rooms
 +
  |original author = abra700
 +
  |original url    = {{nexus mod|713}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-40#post-3299266
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Nicer Villagers, Flirty Bachelors
 +
  |original author = Kagurahime
 +
  |original url    = {{nexus mod|872}}
 +
  |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  = Nightmare's Additional Weaponry
 +
  |original author = zcsnightmare
 +
  |original url    = {{nexus mod|393}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291443
 +
  |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Nightmare's Raptors
 +
  |original author = zcsnightmare
 +
  |original url    = https://community.playstarbound.com/threads/velociraptor-horse-replacements.112475/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-94#post-3326541
 +
  |update author  = minervamaga
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |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 url    = {{nexus mod|287}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|7650}}
 +
  |update author  = RedxMoonxRose
 +
  |update version  = 1.2
 +
}}
 +
{{/xnb
 +
  |original name  = Nintendo Furniture - Furniture Only
 +
  |original author = MrFox420
 +
  |original url    = {{nexus mod|1973}}
 +
  |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.1
 +
}}
 +
{{/xnb
 +
  |original name  = No Emo Hair Sebastian
 +
  |original author = hybridrainbow
 +
  |original url    = {{nexus mod|716}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
 +
  |update author  = Ensifera
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = No Glasses and Mustache Harvey Sprite
 +
  |original author = BraveLittleTuna
 +
  |original url    = {{nexus mod|1956}}
 +
  |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  = No Kids Room Decor
 +
  |original author = Plutey
 +
  |original url    = {{nexus mod|369}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-79#post-3315459
 +
  |update author  = mouseypounds
 +
  |update version  = 1.12.1
 +
}}
 +
{{/xnb
 +
  |original name  = No More Bowlegs
 +
  |original author = Chrysanthe
 +
  |original url    = {{nexus mod|346}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-113#post-3341316
 +
  |update author  = pepoluan
 +
  |update version  = 1.0.0-unofficial.2-pepoluan
 +
}}
 +
{{/xnb
 +
  |original name  = Non-Default Replacement Chickens
 +
  |original author = Lavapulse
 +
  |original url    = https://community.playstarbound.com/threads/non-default-replacement-chickens-silkie-orpington-barred-rock.109826/
 +
  |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  = Norisu's Cuter Goats Mod
 +
  |original author = norisu
 +
  |original url    = {{nexus mod|1135}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285285
 +
  |update author  = Oak
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Norisu's Fire Chickens Mod
 +
  |original author = norisu
 +
  |original url    = {{nexus mod|1156}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-109#post-3338955
 +
  |update author  = Bondzgurl
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Nostalgia Abigail
 +
  |original author = Cilbas
 +
  |original url    = {{nexus mod|140}}
 +
  |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  = NongDarn Mods Portraits
 +
  |original author = NongDarn
 +
  |original url    = https://community.playstarbound.com/threads/mods-portraits-harvey-sam-sebastian-elliott-alex-by-nongdarn.111237/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-101#post-3332738
 +
  |update author  = netish
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = NukaCola
 +
  |original author = GameVogue
 +
  |original url    = {{nexus mod|394}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-113#post-3341519
 +
  |update author  = a2937
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Okami Chibiterasu Pet
 +
  |original author = Dibjib
 +
  |original url    = {{nexus mod|152}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275462
 +
  |update author  = Heroic Onion
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Ori's Portraits(High resolution version)
 +
  |original author = Ori
 +
  |original url    = {{nexus mod|2974}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-86#post-3323222
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Original Portraits ULTIMATE FIX
 +
  |original author = Popori
 +
  |original url    = {{nexus mod|801}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-128#post-3361673
 +
  |update author  = springacres
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Owl Scarecrows
 +
  |original author = Ankokou
 +
  |original url    = {{nexus mod|936}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277776
 +
  |update author  = Kuriiyo
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Pam's Recolored Buildings Add-Ons
 +
  |original author = Pam Collins AKA MatrexsVigil
 +
  |original url    = {{nexus mod|4313}}
 +
  |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.2-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Pastel Furniture
 +
  |original author = BloodyJinxii
 +
  |original url    = {{nexus mod|1705}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357809
 +
  |update author  = Allayna
 +
  |update version  = 2.0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Pastel Pink Farmhouse
 +
  |original author = midnightroar
 +
  |original url    = {{nexus mod|154}}
 +
  |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.2-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Peacocks
 +
  |original author = StarDoodle
 +
  |original url    = {{nexus mod|871}}
 +
  |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  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Pencilstab's Portraits (ALL PORTRAITS COMPLETED)
 +
  |original author = Pencilstab
 +
  |original url    = {{nexus mod|2351}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|2351}}
 +
  |update author  = Pencilstab
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Penny Expanded
 +
  |original author = Wolvenlight
 +
  |original url    = {{nexus mod|1372}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-130#post-3366935
 +
  |update author  = uwuchiha
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Penny Expanded Marriage Dialogue
 +
  |original author = catacoon
 +
  |original url    = {{nexus mod|1275}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
 +
  |update author  = flameofthenight
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Penny Relationship and Dialogue Overhaul
 +
  |original author = NicolasNSane
 +
  |original url    = {{nexus mod|1568}}
 +
  |update name    = unofficial update
 +
  |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 version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Witchy Decorations
 +
  |original author = ManaKirel
 +
  |original url    = {{nexus mod|1515}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-36#post-3297356
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Witchy-Gothic Buildings
 +
  |original author = strawberrymilk95
 +
  |original url    = {{nexus mod|420}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280803
 +
  |update author  = acornfaerie
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Witchy-Gothic Interior
 +
  |original author = strawberrymilk95
 +
  |original url    = {{nexus mod|432}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280803
 +
  |update author  = acornfaerie
 +
  |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
 +
  |original name  = Yellog's Dark Brown and Cream Colored Furniture
 +
  |original author = Yewon_Nam
 +
  |original url    = {{nexus mod|2190}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303093
 +
  |update author  = coldazrael, Kuriiyo & acornfaerie
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Yellog's Pink Colored Furniture
 +
  |original author = Yewon_Nam
 +
  |original url    = {{nexus mod|2041}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-59#post-3304470
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Yellog's Soft Colored Furniture
 +
  |original author = Yewon_Nam
 +
  |original url    = http://blog.naver.com/PostView.nhn?blogId=93_nyw&logNo=221239840686&categoryNo=22&parentCategoryNo=&from=thumbnailList
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304569
 +
  |update author  = coldazrael
 +
  |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
 +
  |original name  = Yoshi
 +
  |original author = StarDoodle
 +
  |original url    = {{nexus mod|885}}
 +
  |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  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Young Doctor
 +
  |original author = OLothoriaScrolls
 +
  |original url    = {{nexus mod|1576}}
 +
  |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.2
 +
}}
 +
{{/xnb
 +
  |original name  = Younger Linus without Beard
 +
  |original author = StaticOpium
 +
  |original url    = {{nexus mod|666}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-63#post-3305524
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Yuki's Expanded Greenhouse
 +
  |original author = YukiTsukihana
 +
  |original url    = https://community.playstarbound.com/threads/yukis-expanded-greenhouse.116536/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-36#post-3297797
 +
  |update author  = staarfruit
 +
  |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
 +
  |original name  = Yet Another Dog Mod
 +
  |original author = captain kaltz+/spacesheepcaptain
 +
  |original url    = {{nexus mod|1853}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|1853}}
 +
  |update author  = Marilyst
 +
  |update version  = 1.3.1
 +
}}
 +
{{/xnb
 +
  |original name  = ZeldaLTTPLifestockAnimals
 +
  |original author = JazzMinK
 +
  |original url    = {{nexus mod|1344}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-19#post-3283067
 +
  |update author  = m2pt5/Emtu
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Zero from the Nightmare Before Christmas
 +
  |original author = JamieDepledge
 +
  |original url    = {{nexus mod|610}}
 +
  |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  = Zen Garden Obelisk Replacer
 +
  |original author = monteso
 +
  |original url    = {{nexus mod|742}}
 +
  |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  = 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
 +
  |original name  = Zombie Cows
 +
  |original author = DarkKassanova
 +
  |original url    = {{nexus mod|195}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305253
 +
  |update author  = Dayashi
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = 코이 Girls Set (coII's Farmer Retexture)
 +
  |original author = s2co2
 +
  |original url    = https://blog.naver.com/s2co2/221221560909
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-58#post-3304352
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = 코이 hatSET
 +
  |original author = s2co2
 +
  |original url    = https://blog.naver.com/s2co2/221028511065
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-61#post-3305000
 +
  |update author  = Chill-T
 +
  |update version  = 1.0
 +
}}
 
|}
 
|}
  
Before you download a mod...
+
==Using XNB mods==
* 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.
+
===Find mods===
* Don't download from stardewvalleymods.net. (Mods here are usually outdated, since the site republishes mods without permission for ad revenue.)
+
 
 +
See [[Modding:Player_Guide/Getting_Started#Find_mods|Find mods]] on the Getting Started page.
  
 
===Install mods===
 
===Install mods===
Line 93: 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 113: 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 模组]]

Latest revision as of 18:38, 24 April 2024

Index

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.

An XNB mod replaces some of your game's .xnb files to change the game (unlike newer mods that go in your Mods folder).

FAQs

What are XNB mods?

XNB mods work by replacing your game's data files (which have a .xnb extension). For example, let's say you want to change Abigail's portraits; you can replace Content/Portraits/Abigail.xnb with a modded version to do it. (See editing XNB files for more info on the XNB format.)

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.

Consider only using SMAPI mods and content packs. These have several benefits over XNB mods:

feature XNB mods SMAPI mods SMAPI content packs
ease of installation ✘ different for every mod ✓ drop into Mods
ease of uninstallation ✘ manually restore original files ✓ remove from Mods
update checks ✘ none ✓ automatic alert in SMAPI console
compatibility checks ✘ none ✓ incompatible mods are disabled before they cause problems
compatibility list is regularly updated with updates and workarounds
mod compatibility ✘ each file can only be replaced once ✓ almost universal ✓ high
translation support ✘ difficult to translate ✓ built-in translation API (depends on the content pack)
game compatibility ✘ broken by most game updates ✓ SMAPI automatically rewrites many mods for compatibility
open-source mods are updated quickly

Do they work on Linux, Mac, Windows, or consoles?

XNB mods work equally on Linux, Mac, Windows, and Android. Consoles aren't supported.

Can they corrupt my save?

Yes, but it's uncommon. Make sure you back up your save files occasionally, and remove any custom content before uninstalling an XNB mod. In most cases, you can fix save corruption by undoing the last save.

Do they disable Steam achievements?

Nope.

Alternatives using Content Patcher

Content Patcher is a SMAPI mod that makes XNB-like changes with all the benefits of 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 Action: Load if you actually need to replace the whole file (e.g., portrait mods). Don't use Action: Load for dialogue mods or to change a small part of a file!
  • See Migrating XNB mods to Content Patcher packs on the official forums for more info about creating conversions.

Using XNB mods

Find mods

See Find mods on the Getting Started page.

Install mods

Installation is different for each mod; check its mod description for details. But in general:

  1. Download the XNB mod and unzip it somewhere (not in your game folder!).
  2. It should contain some .xnb files.
  3. Find your game folder.
  4. Replace the existing .xnb files under Content with the ones from the mod. Make sure you replace the correct files! There are different files with the same name (like Content/Data/hats.xnb and Content/Characters/hats.xnb), and replacing the wrong file will cause in-game errors or crashes.

Uninstall mods

Either restore the original files that mod replaced (hope you kept track!), or reset your game files.

Troubleshooting

Reset content files

If you know which mod caused the problem, uninstall it.

If you're not sure, the simplest option is:

  1. reset your game files;
  2. reinstall each XNB mod one by one;
  3. test after each install to make sure it didn't cause problems.

Other issues

See Modding:Player Guide/Troubleshooting for more suggestions.